@vellumai/plugin-api 0.10.8-dev.202607111823.3c66378 → 0.10.8-dev.202607111928.8412f93

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 +5 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -304,8 +304,12 @@ declare const AssistantConfigSchema: z.ZodObject<{
304
304
  }>>;
305
305
  }, z.core.$strip>>;
306
306
  stt: z.ZodDefault<z.ZodObject<{
307
- mode: z.ZodDefault<z.ZodLiteral<"your-own">>;
307
+ mode: z.ZodDefault<z.ZodEnum<{
308
+ managed: "managed";
309
+ "your-own": "your-own";
310
+ }>>;
308
311
  provider: z.ZodEnum<{
312
+ vellum: "vellum";
309
313
  deepgram: "deepgram";
310
314
  "google-gemini": "google-gemini";
311
315
  "openai-whisper": "openai-whisper";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.8-dev.202607111823.3c66378",
3
+ "version": "0.10.8-dev.202607111928.8412f93",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",