@agentstorm/platform-protocol 0.2.7 → 0.2.8
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 +2 -0
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -5050,6 +5050,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5050
5050
|
forgeSearch: z.ZodOptional<z.ZodBoolean>;
|
|
5051
5051
|
daemonStatusRpc: z.ZodOptional<z.ZodBoolean>;
|
|
5052
5052
|
relayConfig: z.ZodOptional<z.ZodBoolean>;
|
|
5053
|
+
sharedLibrary: z.ZodOptional<z.ZodBoolean>;
|
|
5053
5054
|
"terminal-restore-modes": z.ZodOptional<z.ZodBoolean>;
|
|
5054
5055
|
"terminal-input-mode-replay": z.ZodOptional<z.ZodBoolean>;
|
|
5055
5056
|
"terminal-size-ownership": z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5118,6 +5119,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5118
5119
|
forgeSearch?: boolean | undefined;
|
|
5119
5120
|
daemonStatusRpc?: boolean | undefined;
|
|
5120
5121
|
relayConfig?: boolean | undefined;
|
|
5122
|
+
sharedLibrary?: boolean | undefined;
|
|
5121
5123
|
"terminal-restore-modes"?: boolean | undefined;
|
|
5122
5124
|
"terminal-input-mode-replay"?: boolean | undefined;
|
|
5123
5125
|
"terminal-size-ownership"?: boolean | undefined;
|
|
@@ -5187,6 +5189,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5187
5189
|
forgeSearch?: boolean | undefined;
|
|
5188
5190
|
daemonStatusRpc?: boolean | undefined;
|
|
5189
5191
|
relayConfig?: boolean | undefined;
|
|
5192
|
+
sharedLibrary?: boolean | undefined;
|
|
5190
5193
|
"terminal-restore-modes"?: boolean | undefined;
|
|
5191
5194
|
"terminal-input-mode-replay"?: boolean | undefined;
|
|
5192
5195
|
"terminal-size-ownership"?: boolean | undefined;
|
package/dist/messages.js
CHANGED
|
@@ -2479,6 +2479,8 @@ export const ServerInfoStatusPayloadSchema = z
|
|
|
2479
2479
|
daemonStatusRpc: z.boolean().optional(),
|
|
2480
2480
|
// COMPAT(relayConfig): added in v0.2.6, remove gate after 2027-01-31.
|
|
2481
2481
|
relayConfig: z.boolean().optional(),
|
|
2482
|
+
// COMPAT(sharedLibrary): added in v0.2.7, remove gate after 2027-02-19.
|
|
2483
|
+
sharedLibrary: z.boolean().optional(),
|
|
2482
2484
|
// COMPAT(terminalRestoreModes): added in v0.1.81, remove gate after 2026-11-23.
|
|
2483
2485
|
"terminal-restore-modes": z.boolean().optional(),
|
|
2484
2486
|
// COMPAT(terminalInputModeReplay): added in v0.2.6, remove gate after 2027-02-02.
|