@vellumai/plugin-api 0.10.10-dev.202607201635.61498a8 → 0.10.10-dev.202607201810.d417cba

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.
Files changed (2) hide show
  1. package/index.d.ts +10 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -829,6 +829,7 @@ declare const AssistantConfigSchema: z.ZodObject<{
829
829
  skillCategoryInference: "skillCategoryInference";
830
830
  inference: "inference";
831
831
  vision: "vision";
832
+ voiceFrontDecision: "voiceFrontDecision";
832
833
  trustRuleSuggestion: "trustRuleSuggestion";
833
834
  homeGreeting: "homeGreeting";
834
835
  homeSuggestedPrompts: "homeSuggestedPrompts";
@@ -1170,6 +1171,14 @@ declare const AssistantConfigSchema: z.ZodObject<{
1170
1171
  maxTurnDurationMs: z.ZodDefault<z.ZodNumber>;
1171
1172
  bargeInMinSpeechMs: z.ZodDefault<z.ZodNumber>;
1172
1173
  }, z.core.$strip>>;
1174
+ frontModel: z.ZodDefault<z.ZodObject<{
1175
+ endpointDecisionTimeoutMs: z.ZodDefault<z.ZodNumber>;
1176
+ endpointExtensionMs: z.ZodDefault<z.ZodNumber>;
1177
+ endpointMaxExtensions: z.ZodDefault<z.ZodNumber>;
1178
+ ackFirstDeltaTimeoutMs: z.ZodDefault<z.ZodNumber>;
1179
+ ackGenerationTimeoutMs: z.ZodDefault<z.ZodNumber>;
1180
+ llmAckText: z.ZodDefault<z.ZodBoolean>;
1181
+ }, z.core.$strip>>;
1173
1182
  maxSessionDurationSeconds: z.ZodDefault<z.ZodNumber>;
1174
1183
  archiveAudio: z.ZodDefault<z.ZodBoolean>;
1175
1184
  }, z.core.$strip>>;
@@ -3750,6 +3759,7 @@ declare const LLMCallSiteEnum: z.ZodEnum<{
3750
3759
  skillCategoryInference: "skillCategoryInference";
3751
3760
  inference: "inference";
3752
3761
  vision: "vision";
3762
+ voiceFrontDecision: "voiceFrontDecision";
3753
3763
  trustRuleSuggestion: "trustRuleSuggestion";
3754
3764
  homeGreeting: "homeGreeting";
3755
3765
  homeSuggestedPrompts: "homeSuggestedPrompts";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.10-dev.202607201635.61498a8",
3
+ "version": "0.10.10-dev.202607201810.d417cba",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",