@vellumai/plugin-api 0.10.7-dev.202607092332.9deedf4 → 0.10.7-dev.202607100313.fffdfea

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 -44
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -189,29 +189,6 @@ declare interface AppRestoreResponse {
189
189
  error?: string;
190
190
  }
191
191
 
192
- declare type ApprovalRequired = z.infer<typeof ApprovalRequiredSchema>;
193
-
194
- declare const ApprovalRequiredSchema: z.ZodObject<{
195
- proposal: z.ZodDiscriminatedUnion<[z.ZodObject<{
196
- type: z.ZodLiteral<"http">;
197
- credentialHandle: z.ZodString;
198
- method: z.ZodString;
199
- url: z.ZodString;
200
- purpose: z.ZodString;
201
- allowedUrlPatterns: z.ZodOptional<z.ZodArray<z.ZodString>>;
202
- }, z.core.$strip>, z.ZodObject<{
203
- type: z.ZodLiteral<"command">;
204
- credentialHandle: z.ZodString;
205
- command: z.ZodString;
206
- purpose: z.ZodString;
207
- allowedCommandPatterns: z.ZodOptional<z.ZodArray<z.ZodString>>;
208
- }, z.core.$strip>], "type">;
209
- proposalHash: z.ZodString;
210
- renderedProposal: z.ZodString;
211
- sessionId: z.ZodString;
212
- conversationId: z.ZodOptional<z.ZodString>;
213
- }, z.core.$strip>;
214
-
215
192
  declare interface AppsListResponse {
216
193
  type: "apps_list_response";
217
194
  apps: Array<{
@@ -904,7 +881,6 @@ declare const AssistantConfigSchema: z.ZodObject<{
904
881
  heartbeatAgent: "heartbeatAgent";
905
882
  filingAgent: "filingAgent";
906
883
  compactionAgent: "compactionAgent";
907
- analyzeConversation: "analyzeConversation";
908
884
  callAgent: "callAgent";
909
885
  memoryExtraction: "memoryExtraction";
910
886
  memoryConsolidation: "memoryConsolidation";
@@ -1089,10 +1065,6 @@ declare const AssistantConfigSchema: z.ZodObject<{
1089
1065
  journal: z.ZodDefault<z.ZodObject<{
1090
1066
  contextWindowSize: z.ZodDefault<z.ZodNumber>;
1091
1067
  }, z.core.$strip>>;
1092
- analysis: z.ZodDefault<z.ZodObject<{
1093
- batchSize: z.ZodDefault<z.ZodNumber>;
1094
- idleTimeoutMs: z.ZodDefault<z.ZodNumber>;
1095
- }, z.core.$strip>>;
1096
1068
  backup: z.ZodDefault<z.ZodObject<{
1097
1069
  enabled: z.ZodDefault<z.ZodBoolean>;
1098
1070
  intervalHours: z.ZodDefault<z.ZodNumber>;
@@ -2289,8 +2261,8 @@ declare type ConversationListInvalidatedEvent = z.infer<typeof ConversationListI
2289
2261
  declare const ConversationListInvalidatedEventSchema: z.ZodObject<{
2290
2262
  type: z.ZodLiteral<"conversation_list_invalidated">;
2291
2263
  reason: z.ZodEnum<{
2292
- deleted: "deleted";
2293
2264
  created: "created";
2265
+ deleted: "deleted";
2294
2266
  renamed: "renamed";
2295
2267
  reordered: "reordered";
2296
2268
  seen_changed: "seen_changed";
@@ -2373,7 +2345,6 @@ export declare interface ConversationRow {
2373
2345
  slackContextCompactionWatermarkAt: number | null;
2374
2346
  conversationType: string;
2375
2347
  source: string;
2376
- memoryScopeId: string;
2377
2348
  originChannel: string | null;
2378
2349
  originInterface: string | null;
2379
2350
  forkParentConversationId: string | null;
@@ -2479,8 +2450,8 @@ declare const DiskPressureStatusChangedEventSchema: z.ZodObject<{
2479
2450
  state: z.ZodEnum<{
2480
2451
  unknown: "unknown";
2481
2452
  disabled: "disabled";
2482
- ok: "ok";
2483
2453
  critical: "critical";
2454
+ ok: "ok";
2484
2455
  warning: "warning";
2485
2456
  }>;
2486
2457
  locked: z.ZodBoolean;
@@ -3575,9 +3546,9 @@ declare const InteractionResolvedEventSchema: z.ZodObject<{
3575
3546
  requestId: z.ZodString;
3576
3547
  conversationId: z.ZodString;
3577
3548
  state: z.ZodEnum<{
3578
- approved: "approved";
3579
3549
  cancelled: "cancelled";
3580
3550
  superseded: "superseded";
3551
+ approved: "approved";
3581
3552
  rejected: "rejected";
3582
3553
  answered: "answered";
3583
3554
  }>;
@@ -3663,7 +3634,6 @@ declare const LLMCallSiteEnum: z.ZodEnum<{
3663
3634
  heartbeatAgent: "heartbeatAgent";
3664
3635
  filingAgent: "filingAgent";
3665
3636
  compactionAgent: "compactionAgent";
3666
- analyzeConversation: "analyzeConversation";
3667
3637
  callAgent: "callAgent";
3668
3638
  memoryExtraction: "memoryExtraction";
3669
3639
  memoryConsolidation: "memoryConsolidation";
@@ -5967,15 +5937,6 @@ export declare interface ToolExecutionResult {
5967
5937
  scope: string;
5968
5938
  label: string;
5969
5939
  }>;
5970
- /**
5971
- * When present, indicates that a CES tool returned an `approval_required`
5972
- * response. The executor uses the approval bridge to prompt the guardian,
5973
- * commit the grant decision to CES, and retry the original tool invocation
5974
- * with the granted grantId. CES tools populate this field rather than
5975
- * returning a textual error so the executor can intercept and handle the
5976
- * approval flow transparently.
5977
- */
5978
- cesApprovalRequired?: ApprovalRequired;
5979
5940
  /** Structured activity metadata for client rendering (web search, web fetch, etc).
5980
5941
  * Populated by daemon-internal tools; plugins must not set this. */
5981
5942
  activityMetadata?: ToolActivityMetadata;
@@ -6460,8 +6421,8 @@ declare interface UserPromptSubmitInputContext {
6460
6421
  * `requestId` instead. Every path that starts an agent loop persists the
6461
6422
  * triggering user message under the turn's request ID before running, so
6462
6423
  * the message row id and the request's correlation ID are the same UUID.
6463
- * This holds for the standard submit, queue-drain, subagent, voice, wake,
6464
- * and conversation-analysis paths alike. This field will be removed in a
6424
+ * This holds for the standard submit, queue-drain, subagent, voice, and
6425
+ * wake paths alike. This field will be removed in a
6465
6426
  * future API version.
6466
6427
  */
6467
6428
  readonly userMessageId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.7-dev.202607092332.9deedf4",
3
+ "version": "0.10.7-dev.202607100313.fffdfea",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",