@vellumai/plugin-api 0.10.3-dev.202606290949.0cf8e08 → 0.10.3-dev.202606291342.c7a83ea
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.
- package/index.d.ts +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4618,6 +4618,7 @@ declare const ToolUsePreviewStartEventSchema: z.ZodObject<{
|
|
|
4618
4618
|
toolName: z.ZodString;
|
|
4619
4619
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
4620
4620
|
messageId: z.ZodOptional<z.ZodString>;
|
|
4621
|
+
previewStartedAt: z.ZodOptional<z.ZodNumber>;
|
|
4621
4622
|
}, z.core.$strip>;
|
|
4622
4623
|
|
|
4623
4624
|
declare type ToolUseStartEvent = z.infer<typeof ToolUseStartEventSchema>;
|
|
@@ -4630,6 +4631,7 @@ declare const ToolUseStartEventSchema: z.ZodObject<{
|
|
|
4630
4631
|
messageId: z.ZodOptional<z.ZodString>;
|
|
4631
4632
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
4632
4633
|
startedAt: z.ZodOptional<z.ZodNumber>;
|
|
4634
|
+
previewStartedAt: z.ZodOptional<z.ZodNumber>;
|
|
4633
4635
|
}, z.core.$strip>;
|
|
4634
4636
|
|
|
4635
4637
|
declare type TraceEvent = z.infer<typeof TraceEventSchema>;
|
package/package.json
CHANGED