@vellumai/plugin-api 0.10.6-dev.202607070915.00663ad → 0.10.6-dev.202607071257.f3dae96

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 +1 -38
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -2569,7 +2569,7 @@ declare const MessageRequestCompleteEventSchema: z.ZodObject<{
2569
2569
  runStillActive: z.ZodOptional<z.ZodBoolean>;
2570
2570
  }, z.core.$strip>;
2571
2571
 
2572
- declare type _MessagesServerMessages = UserMessageEchoEvent | AssistantTurnStartEvent | AssistantTextDeltaEvent | AssistantThinkingDeltaEvent | ToolUseStartEvent | ToolUsePreviewStartEvent | ToolOutputChunkEvent | ToolInputDelta | ToolResultEvent | ConfirmationRequestEvent | SecretRequestEvent | QuestionRequestEvent | MessageCompleteEvent | ErrorEvent_2 | MessageQueuedEvent | MessageDequeuedEvent | MessageRequestCompleteEvent | MessageQueuedDeletedEvent | MessageSteered | SuggestionResponse | TraceEvent | ConfirmationStateChanged | AssistantActivityStateEvent | ConversationInferenceProfileUpdated | InteractionResolvedEvent;
2572
+ declare type _MessagesServerMessages = UserMessageEchoEvent | AssistantTurnStartEvent | AssistantTextDeltaEvent | AssistantThinkingDeltaEvent | ToolUseStartEvent | ToolUsePreviewStartEvent | ToolOutputChunkEvent | ToolInputDelta | ToolResultEvent | ConfirmationRequestEvent | SecretRequestEvent | QuestionRequestEvent | MessageCompleteEvent | ErrorEvent_2 | MessageQueuedEvent | MessageDequeuedEvent | MessageRequestCompleteEvent | MessageQueuedDeletedEvent | MessageSteered | SuggestionResponse | ConfirmationStateChanged | AssistantActivityStateEvent | ConversationInferenceProfileUpdated | InteractionResolvedEvent;
2573
2573
 
2574
2574
  declare interface MessageSteered {
2575
2575
  type: "message_steered";
@@ -4707,43 +4707,6 @@ declare const ToolUseStartEventSchema: z.ZodObject<{
4707
4707
  previewStartedAt: z.ZodOptional<z.ZodNumber>;
4708
4708
  }, z.core.$strip>;
4709
4709
 
4710
- declare type TraceEvent = z.infer<typeof TraceEventSchema>;
4711
-
4712
- declare const TraceEventSchema: z.ZodObject<{
4713
- type: z.ZodLiteral<"trace_event">;
4714
- eventId: z.ZodString;
4715
- conversationId: z.ZodString;
4716
- requestId: z.ZodOptional<z.ZodString>;
4717
- timestampMs: z.ZodNumber;
4718
- sequence: z.ZodNumber;
4719
- kind: z.ZodEnum<{
4720
- generation_cancelled: "generation_cancelled";
4721
- generation_handoff: "generation_handoff";
4722
- message_complete: "message_complete";
4723
- request_received: "request_received";
4724
- request_queued: "request_queued";
4725
- request_dequeued: "request_dequeued";
4726
- llm_call_started: "llm_call_started";
4727
- llm_call_finished: "llm_call_finished";
4728
- assistant_message: "assistant_message";
4729
- tool_started: "tool_started";
4730
- tool_permission_requested: "tool_permission_requested";
4731
- tool_permission_decided: "tool_permission_decided";
4732
- tool_finished: "tool_finished";
4733
- tool_failed: "tool_failed";
4734
- request_error: "request_error";
4735
- tool_profiling_summary: "tool_profiling_summary";
4736
- }>;
4737
- status: z.ZodOptional<z.ZodEnum<{
4738
- error: "error";
4739
- success: "success";
4740
- warning: "warning";
4741
- info: "info";
4742
- }>>;
4743
- summary: z.ZodString;
4744
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
4745
- }, z.core.$strip>;
4746
-
4747
4710
  declare type TrustClass = z.infer<typeof trustClassSchema>;
4748
4711
 
4749
4712
  declare const trustClassSchema: z.ZodEnum<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.6-dev.202607070915.00663ad",
3
+ "version": "0.10.6-dev.202607071257.f3dae96",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",