@vellumai/plugin-api 0.10.7-dev.202607100051.bd9658e → 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 +2 -9
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -881,7 +881,6 @@ declare const AssistantConfigSchema: z.ZodObject<{
881
881
  heartbeatAgent: "heartbeatAgent";
882
882
  filingAgent: "filingAgent";
883
883
  compactionAgent: "compactionAgent";
884
- analyzeConversation: "analyzeConversation";
885
884
  callAgent: "callAgent";
886
885
  memoryExtraction: "memoryExtraction";
887
886
  memoryConsolidation: "memoryConsolidation";
@@ -1066,10 +1065,6 @@ declare const AssistantConfigSchema: z.ZodObject<{
1066
1065
  journal: z.ZodDefault<z.ZodObject<{
1067
1066
  contextWindowSize: z.ZodDefault<z.ZodNumber>;
1068
1067
  }, z.core.$strip>>;
1069
- analysis: z.ZodDefault<z.ZodObject<{
1070
- batchSize: z.ZodDefault<z.ZodNumber>;
1071
- idleTimeoutMs: z.ZodDefault<z.ZodNumber>;
1072
- }, z.core.$strip>>;
1073
1068
  backup: z.ZodDefault<z.ZodObject<{
1074
1069
  enabled: z.ZodDefault<z.ZodBoolean>;
1075
1070
  intervalHours: z.ZodDefault<z.ZodNumber>;
@@ -2350,7 +2345,6 @@ export declare interface ConversationRow {
2350
2345
  slackContextCompactionWatermarkAt: number | null;
2351
2346
  conversationType: string;
2352
2347
  source: string;
2353
- memoryScopeId: string;
2354
2348
  originChannel: string | null;
2355
2349
  originInterface: string | null;
2356
2350
  forkParentConversationId: string | null;
@@ -3640,7 +3634,6 @@ declare const LLMCallSiteEnum: z.ZodEnum<{
3640
3634
  heartbeatAgent: "heartbeatAgent";
3641
3635
  filingAgent: "filingAgent";
3642
3636
  compactionAgent: "compactionAgent";
3643
- analyzeConversation: "analyzeConversation";
3644
3637
  callAgent: "callAgent";
3645
3638
  memoryExtraction: "memoryExtraction";
3646
3639
  memoryConsolidation: "memoryConsolidation";
@@ -6428,8 +6421,8 @@ declare interface UserPromptSubmitInputContext {
6428
6421
  * `requestId` instead. Every path that starts an agent loop persists the
6429
6422
  * triggering user message under the turn's request ID before running, so
6430
6423
  * the message row id and the request's correlation ID are the same UUID.
6431
- * This holds for the standard submit, queue-drain, subagent, voice, wake,
6432
- * 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
6433
6426
  * future API version.
6434
6427
  */
6435
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.202607100051.bd9658e",
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",