@vellumai/plugin-api 0.10.7-dev.202607100720.fba456e → 0.10.7-dev.202607101106.c87f4e3

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 +7 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1016,16 +1016,18 @@ declare const AssistantConfigSchema: z.ZodObject<{
1016
1016
  outputPer1M: z.ZodNumber;
1017
1017
  }, z.core.$strip>>>;
1018
1018
  }, z.core.$strip>>;
1019
- llmRequestLogs: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
1019
+ llmRequestLogs: z.ZodDefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
1020
+ enabled: z.ZodDefault<z.ZodBoolean>;
1020
1021
  readSource: z.ZodLiteral<"local">;
1021
1022
  }, z.core.$strip>, z.ZodObject<{
1023
+ enabled: z.ZodDefault<z.ZodBoolean>;
1022
1024
  readSource: z.ZodLiteral<"clickhouse">;
1023
1025
  clickhouse: z.ZodDefault<z.ZodObject<{
1024
1026
  database: z.ZodDefault<z.ZodString>;
1025
1027
  table: z.ZodDefault<z.ZodString>;
1026
1028
  user: z.ZodDefault<z.ZodString>;
1027
1029
  }, z.core.$strip>>;
1028
- }, z.core.$strip>], "readSource">>;
1030
+ }, z.core.$strip>], "readSource">>>;
1029
1031
  filing: z.ZodDefault<z.ZodObject<{
1030
1032
  enabled: z.ZodDefault<z.ZodBoolean>;
1031
1033
  intervalMs: z.ZodDefault<z.ZodNumber>;
@@ -3921,10 +3923,13 @@ declare interface MessageRow {
3921
3923
  id: string;
3922
3924
  conversationId: string;
3923
3925
  role: string;
3926
+ /** Resolved content — always inline JSON, never a raw `{ ref }`. */
3924
3927
  content: string;
3925
3928
  createdAt: number;
3926
3929
  metadata: string | null;
3927
3930
  clientMessageId: string | null;
3931
+ /** 1 = content is complete; 0 = message is still streaming. */
3932
+ finalized: number;
3928
3933
  }
3929
3934
 
3930
3935
  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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.7-dev.202607100720.fba456e",
3
+ "version": "0.10.7-dev.202607101106.c87f4e3",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",