Type Alias: VoiceSessionStartResponse
Makaio Framework / contracts / VoiceSessionStartResponse
Type Alias: VoiceSessionStartResponse
Section titled “Type Alias: VoiceSessionStartResponse”VoiceSessionStartResponse =
z.infer<typeofVoiceSchemas["session.start"]["response"]>
Defined in: ../../../packages/contracts/src/capabilities/voice/schemas.ts:191
Discriminated response payload for the voice.session.start RPC.
Type Composition
Section titled “Type Composition”VoiceSessionStartResponsez.infer<(typeof VoiceSchemas)['session.start']['response']>(typeof VoiceSchemas)['session.start']['response']
Resolved Shape
Section titled “Resolved Shape”type VoiceSessionStartResponse = { audioTransport: 'none' | 'ws'; strategy: { stt: { runtime: 'client' | 'server'; providerId: string; providerName: string; }; tts: { runtime: 'client' | 'server'; providerId: string; providerName: string; }; };};