@getpaseo/protocol 0.5.0-beta.3 → 0.5.0-beta.5

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.
@@ -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;
@@ -5976,6 +5978,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
5976
5978
  plugins: z.ZodOptional<z.ZodBoolean>;
5977
5979
  pluginManagement: z.ZodOptional<z.ZodBoolean>;
5978
5980
  pluginLogs: z.ZodOptional<z.ZodBoolean>;
5981
+ pluginThemes: z.ZodOptional<z.ZodBoolean>;
5979
5982
  skillManagement: z.ZodOptional<z.ZodBoolean>;
5980
5983
  "terminal-restore-modes": z.ZodOptional<z.ZodBoolean>;
5981
5984
  "terminal-input-mode-replay": z.ZodOptional<z.ZodBoolean>;
@@ -6057,6 +6060,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
6057
6060
  plugins?: boolean | undefined;
6058
6061
  pluginManagement?: boolean | undefined;
6059
6062
  pluginLogs?: boolean | undefined;
6063
+ pluginThemes?: boolean | undefined;
6060
6064
  skillManagement?: boolean | undefined;
6061
6065
  "terminal-restore-modes"?: boolean | undefined;
6062
6066
  "terminal-input-mode-replay"?: boolean | undefined;
@@ -6139,6 +6143,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
6139
6143
  plugins?: boolean | undefined;
6140
6144
  pluginManagement?: boolean | undefined;
6141
6145
  pluginLogs?: boolean | undefined;
6146
+ pluginThemes?: boolean | undefined;
6142
6147
  skillManagement?: boolean | undefined;
6143
6148
  "terminal-restore-modes"?: boolean | undefined;
6144
6149
  "terminal-input-mode-replay"?: boolean | undefined;
@@ -25911,6 +25916,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
25911
25916
  }>;
25912
25917
  requestId: z.ZodString;
25913
25918
  acceptBinary: z.ZodOptional<z.ZodBoolean>;
25919
+ maxBytes: z.ZodOptional<z.ZodNumber>;
25914
25920
  }, z.core.$strip>, z.ZodObject<{
25915
25921
  type: z.ZodLiteral<"fs.file.subscribe.request">;
25916
25922
  cwd: z.ZodString;
@@ -36413,6 +36419,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
36413
36419
  }>;
36414
36420
  requestId: z.ZodString;
36415
36421
  acceptBinary: z.ZodOptional<z.ZodBoolean>;
36422
+ maxBytes: z.ZodOptional<z.ZodNumber>;
36416
36423
  }, z.core.$strip>, z.ZodObject<{
36417
36424
  type: z.ZodLiteral<"fs.file.subscribe.request">;
36418
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({
@@ -2839,6 +2840,10 @@ export const ServerInfoStatusPayloadSchema = z
2839
2840
  pluginManagement: z.boolean().optional(),
2840
2841
  // COMPAT(pluginLogs): added in v0.4.0, remove gate after 2027-08-16.
2841
2842
  pluginLogs: z.boolean().optional(),
2843
+ // COMPAT(pluginThemes): added in v0.5.0, remove gate after 2027-08-20.
2844
+ // A daemon that predates this flag keeps `addTheme` in the server bundle it compiles,
2845
+ // so a theme plugin cannot start there at all.
2846
+ pluginThemes: z.boolean().optional(),
2842
2847
  // COMPAT(skillManagement): added in v0.4.0, remove gate after 2027-08-16.
2843
2848
  skillManagement: z.boolean().optional(),
2844
2849
  // COMPAT(terminalRestoreModes): added in v0.1.81, remove gate after 2026-11-23.
@@ -32,6 +32,7 @@ export const ACP_PROVIDER_ICON_NAMES = [
32
32
  "junie",
33
33
  "kilo",
34
34
  "kimi",
35
+ "minimax-code",
35
36
  "minion-code",
36
37
  "mistral-vibe",
37
38
  "nova",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpaseo/protocol",
3
- "version": "0.5.0-beta.3",
3
+ "version": "0.5.0-beta.5",
4
4
  "description": "Paseo shared protocol schemas and wire types",
5
5
  "files": [
6
6
  "dist",