@hyperdrive.bot/paseo-protocol 0.3.35 → 0.3.37
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-labels.d.ts +17 -0
- package/dist/agent-labels.js +42 -0
- package/dist/fleet/decisions.d.ts +178 -0
- package/dist/fleet/decisions.js +149 -0
- package/dist/fleet/params.d.ts +84 -0
- package/dist/fleet/params.js +142 -0
- package/dist/fleet/rpc-schemas.d.ts +792 -0
- package/dist/fleet/rpc-schemas.js +187 -0
- package/dist/fleet/types.d.ts +170 -0
- package/dist/fleet/types.js +80 -0
- package/dist/generated/validation/ws-outbound.aot.js +4061 -369
- package/dist/messages.d.ts +2332 -6
- package/dist/messages.js +31 -0
- package/dist/validation/ws-outbound-schema-metadata.d.ts +670 -1
- package/package.json +1 -1
package/dist/messages.js
CHANGED
|
@@ -9,6 +9,7 @@ import { FileBeginMetadataSchema } from "./binary-frames/file-transfer.js";
|
|
|
9
9
|
import { ChatCreateRequestSchema, ChatListRequestSchema, ChatInspectRequestSchema, ChatDeleteRequestSchema, ChatPostRequestSchema, ChatReadRequestSchema, ChatWaitRequestSchema, ChatCreateResponseSchema, ChatListResponseSchema, ChatInspectResponseSchema, ChatDeleteResponseSchema, ChatPostResponseSchema, ChatReadResponseSchema, ChatWaitResponseSchema, } from "./chat/rpc-schemas.js";
|
|
10
10
|
import { ScheduleCreateRequestSchema, ScheduleListRequestSchema, ScheduleInspectRequestSchema, ScheduleLogsRequestSchema, SchedulePauseRequestSchema, ScheduleResumeRequestSchema, ScheduleDeleteRequestSchema, ScheduleRunOnceRequestSchema, ScheduleUpdateRequestSchema, ScheduleCreateResponseSchema, ScheduleListResponseSchema, ScheduleInspectResponseSchema, ScheduleLogsResponseSchema, SchedulePauseResponseSchema, ScheduleResumeResponseSchema, ScheduleDeleteResponseSchema, ScheduleRunOnceResponseSchema, ScheduleUpdateResponseSchema, } from "./schedule/rpc-schemas.js";
|
|
11
11
|
import { LoopRunRequestSchema, LoopListRequestSchema, LoopInspectRequestSchema, LoopLogsRequestSchema, LoopStopRequestSchema, LoopRunResponseSchema, LoopListResponseSchema, LoopInspectResponseSchema, LoopLogsResponseSchema, LoopStopResponseSchema, } from "./loop/rpc-schemas.js";
|
|
12
|
+
import { FleetListRequestSchema, FleetInspectRequestSchema, FleetRunNowRequestSchema, FleetPauseRequestSchema, FleetResumeRequestSchema, FleetSetModeRequestSchema, FleetAskRequestSchema, FleetDecisionsRequestSchema, FleetResolveDecisionRequestSchema, FleetSetParamsRequestSchema, FleetCreateRequestSchema, FleetExecutionsRequestSchema, FleetListResponseSchema, FleetInspectResponseSchema, FleetRunNowResponseSchema, FleetPauseResponseSchema, FleetResumeResponseSchema, FleetSetModeResponseSchema, FleetAskResponseSchema, FleetDecisionsResponseSchema, FleetResolveDecisionResponseSchema, FleetSetParamsResponseSchema, FleetCreateResponseSchema, FleetExecutionsResponseSchema, } from "./fleet/rpc-schemas.js";
|
|
12
13
|
import { BrowserAutomationExecuteRequestSchema, BrowserAutomationExecuteResponseSchema, } from "./browser-automation/rpc-schemas.js";
|
|
13
14
|
import { BrowserAutomationHostCapabilitySchema } from "./browser-automation/capabilities.js";
|
|
14
15
|
import { PaseoConfigRawSchema, PaseoLifecycleCommandRawSchema, PaseoMetadataGenerationEntrySchema, PaseoMetadataGenerationSchema, PaseoScriptEntryRawSchema, PaseoWorktreeConfigRawSchema, PaseoConfigRevisionSchema, ProjectConfigRpcErrorSchema, } from "./paseo-config-schema.js";
|
|
@@ -2645,6 +2646,18 @@ export const SessionInboundMessageSchema = z.discriminatedUnion("type", [
|
|
|
2645
2646
|
LoopInspectRequestSchema,
|
|
2646
2647
|
LoopLogsRequestSchema,
|
|
2647
2648
|
LoopStopRequestSchema,
|
|
2649
|
+
FleetListRequestSchema,
|
|
2650
|
+
FleetInspectRequestSchema,
|
|
2651
|
+
FleetRunNowRequestSchema,
|
|
2652
|
+
FleetPauseRequestSchema,
|
|
2653
|
+
FleetResumeRequestSchema,
|
|
2654
|
+
FleetSetModeRequestSchema,
|
|
2655
|
+
FleetAskRequestSchema,
|
|
2656
|
+
FleetDecisionsRequestSchema,
|
|
2657
|
+
FleetResolveDecisionRequestSchema,
|
|
2658
|
+
FleetSetParamsRequestSchema,
|
|
2659
|
+
FleetCreateRequestSchema,
|
|
2660
|
+
FleetExecutionsRequestSchema,
|
|
2648
2661
|
WatchNotificationActionMessageSchema,
|
|
2649
2662
|
WatchSessionSearchMessageSchema,
|
|
2650
2663
|
WatchComposerDictateMessageSchema,
|
|
@@ -2811,6 +2824,12 @@ export const ServerInfoStatusPayloadSchema = z
|
|
|
2811
2824
|
// Daemon serves the global session list + recall FTS over WS (works
|
|
2812
2825
|
// over the relay); client falls back to HTTP when this flag is absent.
|
|
2813
2826
|
sessionsListRpc: z.boolean().optional(),
|
|
2827
|
+
// COMPAT(loopDecisions): added in v0.3.X, drop the gate when floor >= v0.3.X.
|
|
2828
|
+
// Daemon serves fleet/ask, fleet/decisions, fleet/resolve-decision and
|
|
2829
|
+
// fleet/set-params. Absent on older daemons; new clients then hide the
|
|
2830
|
+
// decision inbox and the parameters form rather than calling an RPC that
|
|
2831
|
+
// would come back as an unknown-message error.
|
|
2832
|
+
loopDecisions: z.boolean().optional(),
|
|
2814
2833
|
// COMPAT(workflows): added in v0.1.X, remove gate after 2026-12-17.
|
|
2815
2834
|
// Daemon exposes `workflow.list/get/cancel/events` over WS. Absent on
|
|
2816
2835
|
// older daemons; new clients then hide the workflows feature.
|
|
@@ -4725,6 +4744,18 @@ export const SessionOutboundMessageSchema = z.discriminatedUnion("type", [
|
|
|
4725
4744
|
LoopInspectResponseSchema,
|
|
4726
4745
|
LoopLogsResponseSchema,
|
|
4727
4746
|
LoopStopResponseSchema,
|
|
4747
|
+
FleetListResponseSchema,
|
|
4748
|
+
FleetInspectResponseSchema,
|
|
4749
|
+
FleetRunNowResponseSchema,
|
|
4750
|
+
FleetPauseResponseSchema,
|
|
4751
|
+
FleetResumeResponseSchema,
|
|
4752
|
+
FleetSetModeResponseSchema,
|
|
4753
|
+
FleetAskResponseSchema,
|
|
4754
|
+
FleetDecisionsResponseSchema,
|
|
4755
|
+
FleetResolveDecisionResponseSchema,
|
|
4756
|
+
FleetSetParamsResponseSchema,
|
|
4757
|
+
FleetCreateResponseSchema,
|
|
4758
|
+
FleetExecutionsResponseSchema,
|
|
4728
4759
|
RewindSessionResponseMessageSchema,
|
|
4729
4760
|
EditMessageResponseMessageSchema,
|
|
4730
4761
|
ListWorkspaceSessionsResponseMessageSchema,
|