@getpaseo/protocol 0.5.0-beta.4 → 0.5.0
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/dist/messages.d.ts +4 -0
- package/dist/messages.js +1 -0
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -3240,6 +3240,7 @@ export declare const FileExplorerRequestSchema: z.ZodObject<{
|
|
|
3240
3240
|
}>;
|
|
3241
3241
|
requestId: z.ZodString;
|
|
3242
3242
|
acceptBinary: z.ZodOptional<z.ZodBoolean>;
|
|
3243
|
+
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
3243
3244
|
}, z.core.$strip>;
|
|
3244
3245
|
export declare const FileVersionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3245
3246
|
status: z.ZodLiteral<"ready">;
|
|
@@ -5427,6 +5428,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5427
5428
|
}>;
|
|
5428
5429
|
requestId: z.ZodString;
|
|
5429
5430
|
acceptBinary: z.ZodOptional<z.ZodBoolean>;
|
|
5431
|
+
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
5430
5432
|
}, z.core.$strip>, z.ZodObject<{
|
|
5431
5433
|
type: z.ZodLiteral<"fs.file.subscribe.request">;
|
|
5432
5434
|
cwd: z.ZodString;
|
|
@@ -25914,6 +25916,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
25914
25916
|
}>;
|
|
25915
25917
|
requestId: z.ZodString;
|
|
25916
25918
|
acceptBinary: z.ZodOptional<z.ZodBoolean>;
|
|
25919
|
+
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
25917
25920
|
}, z.core.$strip>, z.ZodObject<{
|
|
25918
25921
|
type: z.ZodLiteral<"fs.file.subscribe.request">;
|
|
25919
25922
|
cwd: z.ZodString;
|
|
@@ -36416,6 +36419,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
36416
36419
|
}>;
|
|
36417
36420
|
requestId: z.ZodString;
|
|
36418
36421
|
acceptBinary: z.ZodOptional<z.ZodBoolean>;
|
|
36422
|
+
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
36419
36423
|
}, z.core.$strip>, z.ZodObject<{
|
|
36420
36424
|
type: z.ZodLiteral<"fs.file.subscribe.request">;
|
|
36421
36425
|
cwd: z.ZodString;
|
package/dist/messages.js
CHANGED
|
@@ -2147,6 +2147,7 @@ export const FileExplorerRequestSchema = z.object({
|
|
|
2147
2147
|
mode: z.enum(["list", "file"]),
|
|
2148
2148
|
requestId: z.string(),
|
|
2149
2149
|
acceptBinary: z.boolean().optional(),
|
|
2150
|
+
maxBytes: z.number().int().positive().optional(),
|
|
2150
2151
|
});
|
|
2151
2152
|
export const FileVersionSchema = z.discriminatedUnion("status", [
|
|
2152
2153
|
z.object({
|