@getpaseo/protocol 0.5.0-beta.2 → 0.5.0-beta.4
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 +3 -0
- package/dist/messages.js +4 -0
- package/dist/provider-icon-names.js +1 -0
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -5976,6 +5976,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5976
5976
|
plugins: z.ZodOptional<z.ZodBoolean>;
|
|
5977
5977
|
pluginManagement: z.ZodOptional<z.ZodBoolean>;
|
|
5978
5978
|
pluginLogs: z.ZodOptional<z.ZodBoolean>;
|
|
5979
|
+
pluginThemes: z.ZodOptional<z.ZodBoolean>;
|
|
5979
5980
|
skillManagement: z.ZodOptional<z.ZodBoolean>;
|
|
5980
5981
|
"terminal-restore-modes": z.ZodOptional<z.ZodBoolean>;
|
|
5981
5982
|
"terminal-input-mode-replay": z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6057,6 +6058,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6057
6058
|
plugins?: boolean | undefined;
|
|
6058
6059
|
pluginManagement?: boolean | undefined;
|
|
6059
6060
|
pluginLogs?: boolean | undefined;
|
|
6061
|
+
pluginThemes?: boolean | undefined;
|
|
6060
6062
|
skillManagement?: boolean | undefined;
|
|
6061
6063
|
"terminal-restore-modes"?: boolean | undefined;
|
|
6062
6064
|
"terminal-input-mode-replay"?: boolean | undefined;
|
|
@@ -6139,6 +6141,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6139
6141
|
plugins?: boolean | undefined;
|
|
6140
6142
|
pluginManagement?: boolean | undefined;
|
|
6141
6143
|
pluginLogs?: boolean | undefined;
|
|
6144
|
+
pluginThemes?: boolean | undefined;
|
|
6142
6145
|
skillManagement?: boolean | undefined;
|
|
6143
6146
|
"terminal-restore-modes"?: boolean | undefined;
|
|
6144
6147
|
"terminal-input-mode-replay"?: boolean | undefined;
|
package/dist/messages.js
CHANGED
|
@@ -2839,6 +2839,10 @@ export const ServerInfoStatusPayloadSchema = z
|
|
|
2839
2839
|
pluginManagement: z.boolean().optional(),
|
|
2840
2840
|
// COMPAT(pluginLogs): added in v0.4.0, remove gate after 2027-08-16.
|
|
2841
2841
|
pluginLogs: z.boolean().optional(),
|
|
2842
|
+
// COMPAT(pluginThemes): added in v0.5.0, remove gate after 2027-08-20.
|
|
2843
|
+
// A daemon that predates this flag keeps `addTheme` in the server bundle it compiles,
|
|
2844
|
+
// so a theme plugin cannot start there at all.
|
|
2845
|
+
pluginThemes: z.boolean().optional(),
|
|
2842
2846
|
// COMPAT(skillManagement): added in v0.4.0, remove gate after 2027-08-16.
|
|
2843
2847
|
skillManagement: z.boolean().optional(),
|
|
2844
2848
|
// COMPAT(terminalRestoreModes): added in v0.1.81, remove gate after 2026-11-23.
|