OpenAIAuth type

Authentication for OpenAI Realtime

Signature:

export type OpenAIAuth = {
    authType: "apiKey";
    apiKey: string;
};