@vellumai/plugin-api 0.10.11-dev.202607212222.fe33210 → 0.10.11-dev.202607212323.c5c49c0

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 +4 -4
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -245,15 +245,15 @@ declare const AssistantActivityStateEventSchema: z.ZodObject<{
245
245
  reason: z.ZodEnum<{
246
246
  thinking_delta: "thinking_delta";
247
247
  generation_cancelled: "generation_cancelled";
248
- tool_use_start: "tool_use_start";
249
- message_complete: "message_complete";
250
248
  message_dequeued: "message_dequeued";
251
249
  first_text_delta: "first_text_delta";
250
+ tool_use_start: "tool_use_start";
252
251
  preview_start: "preview_start";
253
252
  tool_result_received: "tool_result_received";
254
253
  confirmation_requested: "confirmation_requested";
255
254
  confirmation_resolved: "confirmation_resolved";
256
255
  context_compacting: "context_compacting";
256
+ message_complete: "message_complete";
257
257
  error_terminal: "error_terminal";
258
258
  }>;
259
259
  requestId: z.ZodOptional<z.ZodString>;
@@ -4142,9 +4142,9 @@ declare const messageMetadataSchema: z.ZodObject<{
4142
4142
  subagentId: z.ZodString;
4143
4143
  label: z.ZodString;
4144
4144
  status: z.ZodEnum<{
4145
- completed: "completed";
4146
4145
  failed: "failed";
4147
4146
  aborted: "aborted";
4147
+ completed: "completed";
4148
4148
  running: "running";
4149
4149
  }>;
4150
4150
  error: z.ZodOptional<z.ZodString>;
@@ -4185,8 +4185,8 @@ declare const messageMetadataSchema: z.ZodObject<{
4185
4185
  startedAt: z.ZodNumber;
4186
4186
  status: z.ZodEnum<{
4187
4187
  cancelled: "cancelled";
4188
- completed: "completed";
4189
4188
  failed: "failed";
4189
+ completed: "completed";
4190
4190
  }>;
4191
4191
  exitCode: z.ZodNullable<z.ZodNumber>;
4192
4192
  output: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.11-dev.202607212222.fe33210",
3
+ "version": "0.10.11-dev.202607212323.c5c49c0",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",