@getpaseo/protocol 0.2.0-beta.1 → 0.2.0-beta.2
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/agent-types.d.ts +1 -0
- package/dist/binary-frames/file-transfer.d.ts +1 -0
- package/dist/binary-frames/file-transfer.js +1 -0
- package/dist/client-capabilities.d.ts +2 -0
- package/dist/client-capabilities.js +6 -0
- package/dist/generated/validation/ws-outbound.aot.js +40177 -30652
- package/dist/messages.d.ts +2221 -14
- package/dist/messages.js +275 -5
- package/dist/paseo-config-schema.d.ts +21 -0
- package/dist/paseo-config-schema.js +19 -0
- package/dist/provider-manifest.js +2 -2
- package/dist/schedule/cadence.d.ts +6 -0
- package/dist/schedule/cadence.js +28 -0
- package/dist/validation/ws-outbound-schema-metadata.d.ts +407 -0
- package/package.json +1 -1
package/dist/agent-types.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export const FileBeginMetadataSchema = z.object({
|
|
|
10
10
|
size: z.number().int().nonnegative(),
|
|
11
11
|
encoding: z.enum(["utf-8", "binary"]),
|
|
12
12
|
modifiedAt: z.string(),
|
|
13
|
+
revision: z.string().optional(),
|
|
13
14
|
fileName: z.string().optional(),
|
|
14
15
|
});
|
|
15
16
|
export function encodeFileTransferFrame(input) {
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export declare const CLIENT_CAPS: {
|
|
2
|
+
readonly selectiveAgentTimeline: "selective_agent_timeline";
|
|
2
3
|
readonly reasoningMergeEnum: "reasoning_merge_enum";
|
|
3
4
|
readonly customModeIcons: "custom_mode_icons";
|
|
4
5
|
readonly terminalReflowableSnapshot: "terminal_reflowable_snapshot";
|
|
5
6
|
readonly providerSubagents: "provider_subagents";
|
|
7
|
+
readonly projectUpdates: "project_updates";
|
|
6
8
|
readonly browserHost: "browser_host";
|
|
7
9
|
};
|
|
8
10
|
export type ClientCapability = (typeof CLIENT_CAPS)[keyof typeof CLIENT_CAPS];
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export const CLIENT_CAPS = {
|
|
2
|
+
// COMPAT(selectiveAgentTimeline): added in v0.1.106. Capable clients receive
|
|
3
|
+
// agent streams only for their explicit viewed set. Remove after 2027-01-12
|
|
4
|
+
// once the supported client floor is >= v0.1.106.
|
|
5
|
+
selectiveAgentTimeline: "selective_agent_timeline",
|
|
2
6
|
reasoningMergeEnum: "reasoning_merge_enum",
|
|
3
7
|
// COMPAT(customModeIcons): added in v0.1.84. Old clients pin AgentModeIcon to
|
|
4
8
|
// a closed enum and crash rendering unknown values; daemon downgrades icons
|
|
@@ -14,6 +18,8 @@ export const CLIENT_CAPS = {
|
|
|
14
18
|
// COMPAT(providerSubagents): added in v0.1.107. The daemon emits provider-owned
|
|
15
19
|
// child descriptors and timelines only to clients that understand the new messages.
|
|
16
20
|
providerSubagents: "provider_subagents",
|
|
21
|
+
// COMPAT(projectUpdates): added in v0.1.109, remove gate after 2027-01-15.
|
|
22
|
+
projectUpdates: "project_updates",
|
|
17
23
|
browserHost: "browser_host",
|
|
18
24
|
};
|
|
19
25
|
//# sourceMappingURL=client-capabilities.js.map
|