@avallon-labs/sdk 22.1.0 → 22.2.0-staging.492
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -241,6 +241,8 @@ interface VoiceAgent {
|
|
|
241
241
|
fallback_tts_model: "eleven_flash_v2_5" | "eleven_turbo_v2_5" | "sonic-3" | "chirp_3" | "polly-neural" | null;
|
|
242
242
|
fallback_tts_voice_id: string | null;
|
|
243
243
|
fallback_stt_model: "DEEPGRAM-NOVA-2-GENERAL" | "DEEPGRAM-NOVA-3-GENERAL" | "AWS-TRANSCRIBE" | "ELEVENLABS-SCRIBE-V2-REALTIME" | null;
|
|
244
|
+
/** Inactivity timeout in seconds. null disables the feature. */
|
|
245
|
+
inactivity_timeout_seconds: number | null;
|
|
244
246
|
}
|
|
245
247
|
|
|
246
248
|
/**
|
|
@@ -1677,6 +1679,8 @@ type CreateVoiceAgentBody = {
|
|
|
1677
1679
|
call_processor_id?: string | null;
|
|
1678
1680
|
/** Type of processor: extractor or worker */
|
|
1679
1681
|
call_processor_type?: CreateVoiceAgentBodyCallProcessorType;
|
|
1682
|
+
/** Inactivity timeout in seconds. null disables the feature. Minimum 5. Defaults to 7 if omitted. */
|
|
1683
|
+
inactivity_timeout_seconds?: number | null;
|
|
1680
1684
|
};
|
|
1681
1685
|
|
|
1682
1686
|
/**
|
|
@@ -4321,6 +4325,8 @@ type UpdateVoiceAgentBody = {
|
|
|
4321
4325
|
name?: string;
|
|
4322
4326
|
call_processor_id?: string | null;
|
|
4323
4327
|
call_processor_type?: UpdateVoiceAgentBodyCallProcessorType;
|
|
4328
|
+
/** Inactivity timeout in seconds. null disables the feature. Minimum 5. Omit to leave unchanged. */
|
|
4329
|
+
inactivity_timeout_seconds?: number | null;
|
|
4324
4330
|
};
|
|
4325
4331
|
|
|
4326
4332
|
/**
|