@getpaseo/protocol 0.1.106 → 0.1.108
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/client-capabilities.d.ts +1 -0
- package/dist/client-capabilities.js +3 -0
- package/dist/generated/validation/ws-outbound.aot.js +24464 -16009
- package/dist/git-remote.d.ts +10 -0
- package/dist/git-remote.js +12 -0
- package/dist/messages.d.ts +1241 -11
- package/dist/messages.js +239 -0
- package/dist/provider-manifest.js +25 -22
- package/dist/validation/ws-outbound-schema-metadata.d.ts +232 -0
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ export declare const CLIENT_CAPS: {
|
|
|
2
2
|
readonly reasoningMergeEnum: "reasoning_merge_enum";
|
|
3
3
|
readonly customModeIcons: "custom_mode_icons";
|
|
4
4
|
readonly terminalReflowableSnapshot: "terminal_reflowable_snapshot";
|
|
5
|
+
readonly providerSubagents: "provider_subagents";
|
|
5
6
|
readonly browserHost: "browser_host";
|
|
6
7
|
};
|
|
7
8
|
export type ClientCapability = (typeof CLIENT_CAPS)[keyof typeof CLIENT_CAPS];
|
|
@@ -11,6 +11,9 @@ export const CLIENT_CAPS = {
|
|
|
11
11
|
// Old clients use a strict TerminalState schema and would reject the extra fields.
|
|
12
12
|
// Drop the gate (always send the flags) when floor >= v0.1.88.
|
|
13
13
|
terminalReflowableSnapshot: "terminal_reflowable_snapshot",
|
|
14
|
+
// COMPAT(providerSubagents): added in v0.1.107. The daemon emits provider-owned
|
|
15
|
+
// child descriptors and timelines only to clients that understand the new messages.
|
|
16
|
+
providerSubagents: "provider_subagents",
|
|
14
17
|
browserHost: "browser_host",
|
|
15
18
|
};
|
|
16
19
|
//# sourceMappingURL=client-capabilities.js.map
|