@vellumai/plugin-api 0.11.3-dev.202608181709.1f85a67 → 0.11.3-dev.202608181811.60ef9e5
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 +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1798,8 +1798,8 @@ declare const AssistantEventEnvelopeSchema: z.ZodObject<{
|
|
|
1798
1798
|
targetClientId: z.ZodOptional<z.ZodString>;
|
|
1799
1799
|
operation: z.ZodLiteral<"read">;
|
|
1800
1800
|
path: z.ZodString;
|
|
1801
|
-
|
|
1802
|
-
|
|
1801
|
+
startIndex: z.ZodOptional<z.ZodNumber>;
|
|
1802
|
+
maxChars: z.ZodOptional<z.ZodNumber>;
|
|
1803
1803
|
}, z.core.$strip>, z.ZodObject<{
|
|
1804
1804
|
type: z.ZodLiteral<"host_file_request">;
|
|
1805
1805
|
requestId: z.ZodString;
|
|
@@ -3256,8 +3256,8 @@ declare const AssistantEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3256
3256
|
targetClientId: z.ZodOptional<z.ZodString>;
|
|
3257
3257
|
operation: z.ZodLiteral<"read">;
|
|
3258
3258
|
path: z.ZodString;
|
|
3259
|
-
|
|
3260
|
-
|
|
3259
|
+
startIndex: z.ZodOptional<z.ZodNumber>;
|
|
3260
|
+
maxChars: z.ZodOptional<z.ZodNumber>;
|
|
3261
3261
|
}, z.core.$strip>, z.ZodObject<{
|
|
3262
3262
|
type: z.ZodLiteral<"host_file_request">;
|
|
3263
3263
|
requestId: z.ZodString;
|
package/package.json
CHANGED