@orga-ai/node
Version:
OrgaAI backend SDK for Node.js - simplifies API integration
21 lines • 468 B
TypeScript
export interface OrgaAIConfig {
apiKey: string;
userEmail: string;
baseUrl?: string;
debug?: boolean;
timeout?: number;
}
export interface SessionConfig {
ephemeralToken: string;
iceServers: IceServer[];
}
export interface IceServer {
urls: string | string[];
username?: string;
credential?: string;
}
export interface OrgaAIErrorType extends Error {
status?: number;
code?: string;
}
//# sourceMappingURL=types.d.ts.map