@getpaseo/protocol 0.1.110 → 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 +2 -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/forge-manifest.d.ts +66 -0
- package/dist/forge-manifest.js +92 -0
- package/dist/generated/validation/ws-outbound.aot.js +40705 -30038
- package/dist/git-remote.js +2 -1
- package/dist/messages.d.ts +4430 -125
- package/dist/messages.js +618 -22
- package/dist/paseo-config-schema.d.ts +21 -0
- package/dist/paseo-config-schema.js +19 -0
- package/dist/provider-manifest.d.ts +1 -0
- package/dist/provider-manifest.js +23 -6
- package/dist/schedule/cadence.d.ts +6 -0
- package/dist/schedule/cadence.js +28 -0
- package/dist/validation/ws-outbound-schema-metadata.d.ts +673 -16
- package/package.json +1 -1
|
@@ -4,6 +4,209 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4
4
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5
5
|
type: import("zod").ZodLiteral<"session">;
|
|
6
6
|
message: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7
|
+
type: import("zod").ZodLiteral<"hub.execution.agent.create.response">;
|
|
8
|
+
payload: import("zod").ZodObject<{
|
|
9
|
+
requestId: import("zod").ZodString;
|
|
10
|
+
executionId: import("zod").ZodString;
|
|
11
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12
|
+
agent: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
13
|
+
id: import("zod").ZodString;
|
|
14
|
+
provider: import("zod").ZodString;
|
|
15
|
+
cwd: import("zod").ZodString;
|
|
16
|
+
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17
|
+
model: import("zod").ZodNullable<import("zod").ZodString>;
|
|
18
|
+
features: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
19
|
+
type: import("zod").ZodLiteral<"toggle">;
|
|
20
|
+
id: import("zod").ZodString;
|
|
21
|
+
label: import("zod").ZodString;
|
|
22
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
23
|
+
tooltip: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24
|
+
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
25
|
+
value: import("zod").ZodBoolean;
|
|
26
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
27
|
+
type: import("zod").ZodLiteral<"select">;
|
|
28
|
+
id: import("zod").ZodString;
|
|
29
|
+
label: import("zod").ZodString;
|
|
30
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
31
|
+
tooltip: import("zod").ZodOptional<import("zod").ZodString>;
|
|
32
|
+
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
33
|
+
value: import("zod").ZodNullable<import("zod").ZodString>;
|
|
34
|
+
options: import("zod").ZodArray<import("zod").ZodObject<{
|
|
35
|
+
id: import("zod").ZodString;
|
|
36
|
+
label: import("zod").ZodString;
|
|
37
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
38
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
39
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
40
|
+
}, import("zod/v4/core").$strip>>;
|
|
41
|
+
}, import("zod/v4/core").$strip>], "type">>>;
|
|
42
|
+
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
43
|
+
effectiveThinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
44
|
+
createdAt: import("zod").ZodString;
|
|
45
|
+
updatedAt: import("zod").ZodString;
|
|
46
|
+
lastUserMessageAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
47
|
+
status: import("zod").ZodEnum<{
|
|
48
|
+
error: "error";
|
|
49
|
+
initializing: "initializing";
|
|
50
|
+
idle: "idle";
|
|
51
|
+
running: "running";
|
|
52
|
+
closed: "closed";
|
|
53
|
+
}>;
|
|
54
|
+
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
55
|
+
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
56
|
+
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
57
|
+
pendingPermissions: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentPermissionRequest, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPermissionRequest, unknown>>>;
|
|
58
|
+
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
59
|
+
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
60
|
+
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
61
|
+
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
62
|
+
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
63
|
+
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
64
|
+
requiresAttention: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
65
|
+
attentionReason: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
66
|
+
finished: "finished";
|
|
67
|
+
error: "error";
|
|
68
|
+
permission: "permission";
|
|
69
|
+
}>>>;
|
|
70
|
+
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
71
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
72
|
+
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
73
|
+
}, import("zod/v4/core").$strip>>;
|
|
74
|
+
success: import("zod").ZodBoolean;
|
|
75
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
76
|
+
}, import("zod/v4/core").$strip>;
|
|
77
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
78
|
+
type: import("zod").ZodLiteral<"hub.execution.agent.update">;
|
|
79
|
+
payload: import("zod").ZodObject<{
|
|
80
|
+
executionId: import("zod").ZodString;
|
|
81
|
+
agentId: import("zod").ZodString;
|
|
82
|
+
agent: import("zod").ZodObject<{
|
|
83
|
+
id: import("zod").ZodString;
|
|
84
|
+
provider: import("zod").ZodString;
|
|
85
|
+
cwd: import("zod").ZodString;
|
|
86
|
+
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
87
|
+
model: import("zod").ZodNullable<import("zod").ZodString>;
|
|
88
|
+
features: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
89
|
+
type: import("zod").ZodLiteral<"toggle">;
|
|
90
|
+
id: import("zod").ZodString;
|
|
91
|
+
label: import("zod").ZodString;
|
|
92
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
93
|
+
tooltip: import("zod").ZodOptional<import("zod").ZodString>;
|
|
94
|
+
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
95
|
+
value: import("zod").ZodBoolean;
|
|
96
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
97
|
+
type: import("zod").ZodLiteral<"select">;
|
|
98
|
+
id: import("zod").ZodString;
|
|
99
|
+
label: import("zod").ZodString;
|
|
100
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
101
|
+
tooltip: import("zod").ZodOptional<import("zod").ZodString>;
|
|
102
|
+
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
103
|
+
value: import("zod").ZodNullable<import("zod").ZodString>;
|
|
104
|
+
options: import("zod").ZodArray<import("zod").ZodObject<{
|
|
105
|
+
id: import("zod").ZodString;
|
|
106
|
+
label: import("zod").ZodString;
|
|
107
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
108
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
109
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
110
|
+
}, import("zod/v4/core").$strip>>;
|
|
111
|
+
}, import("zod/v4/core").$strip>], "type">>>;
|
|
112
|
+
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
113
|
+
effectiveThinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
114
|
+
createdAt: import("zod").ZodString;
|
|
115
|
+
updatedAt: import("zod").ZodString;
|
|
116
|
+
lastUserMessageAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
117
|
+
status: import("zod").ZodEnum<{
|
|
118
|
+
error: "error";
|
|
119
|
+
initializing: "initializing";
|
|
120
|
+
idle: "idle";
|
|
121
|
+
running: "running";
|
|
122
|
+
closed: "closed";
|
|
123
|
+
}>;
|
|
124
|
+
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
125
|
+
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
126
|
+
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
127
|
+
pendingPermissions: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentPermissionRequest, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPermissionRequest, unknown>>>;
|
|
128
|
+
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
129
|
+
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
130
|
+
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
131
|
+
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
132
|
+
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
133
|
+
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
134
|
+
requiresAttention: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
135
|
+
attentionReason: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
136
|
+
finished: "finished";
|
|
137
|
+
error: "error";
|
|
138
|
+
permission: "permission";
|
|
139
|
+
}>>>;
|
|
140
|
+
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
141
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
142
|
+
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
143
|
+
}, import("zod/v4/core").$strip>;
|
|
144
|
+
}, import("zod/v4/core").$strip>;
|
|
145
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
146
|
+
type: import("zod").ZodLiteral<"hub.execution.agent.stream">;
|
|
147
|
+
payload: import("zod").ZodObject<{
|
|
148
|
+
executionId: import("zod").ZodString;
|
|
149
|
+
agentId: import("zod").ZodString;
|
|
150
|
+
event: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
151
|
+
type: import("zod").ZodLiteral<"thread_started">;
|
|
152
|
+
sessionId: import("zod").ZodString;
|
|
153
|
+
provider: import("zod").ZodString;
|
|
154
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
155
|
+
type: import("zod").ZodLiteral<"turn_started">;
|
|
156
|
+
provider: import("zod").ZodString;
|
|
157
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
158
|
+
type: import("zod").ZodLiteral<"turn_completed">;
|
|
159
|
+
provider: import("zod").ZodString;
|
|
160
|
+
usage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
161
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
162
|
+
type: import("zod").ZodLiteral<"turn_failed">;
|
|
163
|
+
provider: import("zod").ZodString;
|
|
164
|
+
error: import("zod").ZodString;
|
|
165
|
+
code: import("zod").ZodOptional<import("zod").ZodString>;
|
|
166
|
+
diagnostic: import("zod").ZodOptional<import("zod").ZodString>;
|
|
167
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
168
|
+
type: import("zod").ZodLiteral<"turn_canceled">;
|
|
169
|
+
provider: import("zod").ZodString;
|
|
170
|
+
reason: import("zod").ZodString;
|
|
171
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
172
|
+
type: import("zod").ZodLiteral<"timeline">;
|
|
173
|
+
provider: import("zod").ZodString;
|
|
174
|
+
item: import("zod").ZodType<import("../agent-types.js").AgentTimelineItem, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentTimelineItem, unknown>>;
|
|
175
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
176
|
+
type: import("zod").ZodLiteral<"permission_requested">;
|
|
177
|
+
provider: import("zod").ZodString;
|
|
178
|
+
request: import("zod").ZodType<import("../agent-types.js").AgentPermissionRequest, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPermissionRequest, unknown>>;
|
|
179
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
180
|
+
type: import("zod").ZodLiteral<"permission_resolved">;
|
|
181
|
+
provider: import("zod").ZodString;
|
|
182
|
+
requestId: import("zod").ZodString;
|
|
183
|
+
resolution: import("zod").ZodType<import("../agent-types.js").AgentPermissionResponse, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPermissionResponse, unknown>>;
|
|
184
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
185
|
+
type: import("zod").ZodLiteral<"attention_required">;
|
|
186
|
+
provider: import("zod").ZodString;
|
|
187
|
+
reason: import("zod").ZodEnum<{
|
|
188
|
+
finished: "finished";
|
|
189
|
+
error: "error";
|
|
190
|
+
permission: "permission";
|
|
191
|
+
}>;
|
|
192
|
+
timestamp: import("zod").ZodString;
|
|
193
|
+
shouldNotify: import("zod").ZodBoolean;
|
|
194
|
+
notification: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
195
|
+
title: import("zod").ZodString;
|
|
196
|
+
body: import("zod").ZodString;
|
|
197
|
+
data: import("zod").ZodObject<{
|
|
198
|
+
serverId: import("zod").ZodString;
|
|
199
|
+
agentId: import("zod").ZodString;
|
|
200
|
+
reason: import("zod").ZodEnum<{
|
|
201
|
+
finished: "finished";
|
|
202
|
+
error: "error";
|
|
203
|
+
permission: "permission";
|
|
204
|
+
}>;
|
|
205
|
+
}, import("zod/v4/core").$strip>;
|
|
206
|
+
}, import("zod/v4/core").$strip>>;
|
|
207
|
+
}, import("zod/v4/core").$strip>], "type">;
|
|
208
|
+
}, import("zod/v4/core").$strip>;
|
|
209
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7
210
|
type: import("zod").ZodLiteral<"browser.automation.execute.request">;
|
|
8
211
|
requestId: import("zod").ZodString;
|
|
9
212
|
agentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -547,6 +750,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
547
750
|
}, import("zod/v4/core").$strip>>>;
|
|
548
751
|
refreshedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
549
752
|
}, import("zod/v4/core").$strip>>>;
|
|
753
|
+
forge: import("zod").ZodOptional<import("zod").ZodString>;
|
|
550
754
|
project: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
551
755
|
projectKey: import("zod").ZodString;
|
|
552
756
|
projectName: import("zod").ZodString;
|
|
@@ -700,6 +904,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
700
904
|
} | null | undefined;
|
|
701
905
|
refreshedAt?: string | null | undefined;
|
|
702
906
|
} | null | undefined;
|
|
907
|
+
forge?: string | undefined;
|
|
703
908
|
project?: {
|
|
704
909
|
projectKey: string;
|
|
705
910
|
projectName: string;
|
|
@@ -805,6 +1010,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
805
1010
|
} | null | undefined;
|
|
806
1011
|
refreshedAt?: string | null | undefined;
|
|
807
1012
|
} | null | undefined;
|
|
1013
|
+
forge?: string | undefined;
|
|
808
1014
|
project?: {
|
|
809
1015
|
projectKey: string;
|
|
810
1016
|
projectName: string;
|
|
@@ -852,6 +1058,25 @@ export declare const WSOutboundMessageSchema: {
|
|
|
852
1058
|
}, import("zod/v4/core").$strip>>;
|
|
853
1059
|
removedProjectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
854
1060
|
}, import("zod/v4/core").$strip>], "kind">;
|
|
1061
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1062
|
+
type: import("zod").ZodLiteral<"project.update">;
|
|
1063
|
+
payload: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
1064
|
+
kind: import("zod").ZodLiteral<"upsert">;
|
|
1065
|
+
project: import("zod").ZodObject<{
|
|
1066
|
+
projectId: import("zod").ZodString;
|
|
1067
|
+
projectDisplayName: import("zod").ZodString;
|
|
1068
|
+
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1069
|
+
projectRootPath: import("zod").ZodString;
|
|
1070
|
+
projectKind: import("zod").ZodEnum<{
|
|
1071
|
+
git: "git";
|
|
1072
|
+
directory: "directory";
|
|
1073
|
+
non_git: "non_git";
|
|
1074
|
+
}>;
|
|
1075
|
+
}, import("zod/v4/core").$strip>;
|
|
1076
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1077
|
+
kind: import("zod").ZodLiteral<"remove">;
|
|
1078
|
+
projectId: import("zod").ZodString;
|
|
1079
|
+
}, import("zod/v4/core").$strip>], "kind">;
|
|
855
1080
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
856
1081
|
type: import("zod").ZodLiteral<"script_status_update">;
|
|
857
1082
|
payload: import("zod").ZodObject<{
|
|
@@ -1522,6 +1747,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1522
1747
|
}, import("zod/v4/core").$strip>>>;
|
|
1523
1748
|
refreshedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1524
1749
|
}, import("zod/v4/core").$strip>>>;
|
|
1750
|
+
forge: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1525
1751
|
project: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1526
1752
|
projectKey: import("zod").ZodString;
|
|
1527
1753
|
projectName: import("zod").ZodString;
|
|
@@ -1675,6 +1901,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1675
1901
|
} | null | undefined;
|
|
1676
1902
|
refreshedAt?: string | null | undefined;
|
|
1677
1903
|
} | null | undefined;
|
|
1904
|
+
forge?: string | undefined;
|
|
1678
1905
|
project?: {
|
|
1679
1906
|
projectKey: string;
|
|
1680
1907
|
projectName: string;
|
|
@@ -1780,6 +2007,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1780
2007
|
} | null | undefined;
|
|
1781
2008
|
refreshedAt?: string | null | undefined;
|
|
1782
2009
|
} | null | undefined;
|
|
2010
|
+
forge?: string | undefined;
|
|
1783
2011
|
project?: {
|
|
1784
2012
|
projectKey: string;
|
|
1785
2013
|
projectName: string;
|
|
@@ -1989,6 +2217,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1989
2217
|
}, import("zod/v4/core").$strip>>>;
|
|
1990
2218
|
refreshedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1991
2219
|
}, import("zod/v4/core").$strip>>>;
|
|
2220
|
+
forge: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1992
2221
|
project: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1993
2222
|
projectKey: import("zod").ZodString;
|
|
1994
2223
|
projectName: import("zod").ZodString;
|
|
@@ -2142,6 +2371,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2142
2371
|
} | null | undefined;
|
|
2143
2372
|
refreshedAt?: string | null | undefined;
|
|
2144
2373
|
} | null | undefined;
|
|
2374
|
+
forge?: string | undefined;
|
|
2145
2375
|
project?: {
|
|
2146
2376
|
projectKey: string;
|
|
2147
2377
|
projectName: string;
|
|
@@ -2247,6 +2477,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2247
2477
|
} | null | undefined;
|
|
2248
2478
|
refreshedAt?: string | null | undefined;
|
|
2249
2479
|
} | null | undefined;
|
|
2480
|
+
forge?: string | undefined;
|
|
2250
2481
|
project?: {
|
|
2251
2482
|
projectKey: string;
|
|
2252
2483
|
projectName: string;
|
|
@@ -2759,6 +2990,37 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2759
2990
|
parentAgentId: import("zod").ZodString;
|
|
2760
2991
|
subagentId: import("zod").ZodString;
|
|
2761
2992
|
}, import("zod/v4/core").$strip>], "kind">;
|
|
2993
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2994
|
+
type: import("zod").ZodLiteral<"agent.timeline.set_subscription.response">;
|
|
2995
|
+
payload: import("zod").ZodObject<{
|
|
2996
|
+
agentIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2997
|
+
requestId: import("zod").ZodString;
|
|
2998
|
+
}, import("zod/v4/core").$strip>;
|
|
2999
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3000
|
+
type: import("zod").ZodLiteral<"agent_attention_required">;
|
|
3001
|
+
payload: import("zod").ZodObject<{
|
|
3002
|
+
agentId: import("zod").ZodString;
|
|
3003
|
+
reason: import("zod").ZodEnum<{
|
|
3004
|
+
finished: "finished";
|
|
3005
|
+
error: "error";
|
|
3006
|
+
permission: "permission";
|
|
3007
|
+
}>;
|
|
3008
|
+
timestamp: import("zod").ZodString;
|
|
3009
|
+
shouldNotify: import("zod").ZodBoolean;
|
|
3010
|
+
notification: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3011
|
+
title: import("zod").ZodString;
|
|
3012
|
+
body: import("zod").ZodString;
|
|
3013
|
+
data: import("zod").ZodObject<{
|
|
3014
|
+
serverId: import("zod").ZodString;
|
|
3015
|
+
agentId: import("zod").ZodString;
|
|
3016
|
+
reason: import("zod").ZodEnum<{
|
|
3017
|
+
finished: "finished";
|
|
3018
|
+
error: "error";
|
|
3019
|
+
permission: "permission";
|
|
3020
|
+
}>;
|
|
3021
|
+
}, import("zod/v4/core").$strip>;
|
|
3022
|
+
}, import("zod/v4/core").$strip>>;
|
|
3023
|
+
}, import("zod/v4/core").$strip>;
|
|
2762
3024
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2763
3025
|
type: import("zod").ZodLiteral<"agent.fork_context.response">;
|
|
2764
3026
|
payload: import("zod").ZodObject<{
|
|
@@ -3049,6 +3311,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3049
3311
|
}, import("zod/v4/core").$strip>>>;
|
|
3050
3312
|
refreshedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3051
3313
|
}, import("zod/v4/core").$strip>>>;
|
|
3314
|
+
forge: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3052
3315
|
project: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3053
3316
|
projectKey: import("zod").ZodString;
|
|
3054
3317
|
projectName: import("zod").ZodString;
|
|
@@ -3202,6 +3465,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3202
3465
|
} | null | undefined;
|
|
3203
3466
|
refreshedAt?: string | null | undefined;
|
|
3204
3467
|
} | null | undefined;
|
|
3468
|
+
forge?: string | undefined;
|
|
3205
3469
|
project?: {
|
|
3206
3470
|
projectKey: string;
|
|
3207
3471
|
projectName: string;
|
|
@@ -3307,6 +3571,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3307
3571
|
} | null | undefined;
|
|
3308
3572
|
refreshedAt?: string | null | undefined;
|
|
3309
3573
|
} | null | undefined;
|
|
3574
|
+
forge?: string | undefined;
|
|
3310
3575
|
project?: {
|
|
3311
3576
|
projectKey: string;
|
|
3312
3577
|
projectName: string;
|
|
@@ -3409,6 +3674,67 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3409
3674
|
qr: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3410
3675
|
relayEnabled: import("zod").ZodBoolean;
|
|
3411
3676
|
}, import("zod/v4/core").$loose>;
|
|
3677
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3678
|
+
type: import("zod").ZodLiteral<"hub.management.daemon.connect.response">;
|
|
3679
|
+
payload: import("zod").ZodObject<{
|
|
3680
|
+
requestId: import("zod").ZodString;
|
|
3681
|
+
status: import("zod").ZodObject<{
|
|
3682
|
+
state: import("zod").ZodEnum<{
|
|
3683
|
+
not_connected: "not_connected";
|
|
3684
|
+
connecting: "connecting";
|
|
3685
|
+
connected: "connected";
|
|
3686
|
+
reconnecting: "reconnecting";
|
|
3687
|
+
disconnecting: "disconnecting";
|
|
3688
|
+
revoked: "revoked";
|
|
3689
|
+
}>;
|
|
3690
|
+
daemonId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3691
|
+
hubOrigin: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3692
|
+
scopes: import("zod").ZodArray<import("zod").ZodString>;
|
|
3693
|
+
connectedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3694
|
+
lastError: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3695
|
+
}, import("zod/v4/core").$strip>;
|
|
3696
|
+
}, import("zod/v4/core").$strip>;
|
|
3697
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3698
|
+
type: import("zod").ZodLiteral<"hub.management.daemon.get_status.response">;
|
|
3699
|
+
payload: import("zod").ZodObject<{
|
|
3700
|
+
requestId: import("zod").ZodString;
|
|
3701
|
+
status: import("zod").ZodObject<{
|
|
3702
|
+
state: import("zod").ZodEnum<{
|
|
3703
|
+
not_connected: "not_connected";
|
|
3704
|
+
connecting: "connecting";
|
|
3705
|
+
connected: "connected";
|
|
3706
|
+
reconnecting: "reconnecting";
|
|
3707
|
+
disconnecting: "disconnecting";
|
|
3708
|
+
revoked: "revoked";
|
|
3709
|
+
}>;
|
|
3710
|
+
daemonId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3711
|
+
hubOrigin: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3712
|
+
scopes: import("zod").ZodArray<import("zod").ZodString>;
|
|
3713
|
+
connectedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3714
|
+
lastError: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3715
|
+
}, import("zod/v4/core").$strip>;
|
|
3716
|
+
}, import("zod/v4/core").$strip>;
|
|
3717
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3718
|
+
type: import("zod").ZodLiteral<"hub.management.daemon.disconnect.response">;
|
|
3719
|
+
payload: import("zod").ZodObject<{
|
|
3720
|
+
requestId: import("zod").ZodString;
|
|
3721
|
+
status: import("zod").ZodObject<{
|
|
3722
|
+
state: import("zod").ZodEnum<{
|
|
3723
|
+
not_connected: "not_connected";
|
|
3724
|
+
connecting: "connecting";
|
|
3725
|
+
connected: "connected";
|
|
3726
|
+
reconnecting: "reconnecting";
|
|
3727
|
+
disconnecting: "disconnecting";
|
|
3728
|
+
revoked: "revoked";
|
|
3729
|
+
}>;
|
|
3730
|
+
daemonId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3731
|
+
hubOrigin: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3732
|
+
scopes: import("zod").ZodArray<import("zod").ZodString>;
|
|
3733
|
+
connectedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3734
|
+
lastError: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3735
|
+
}, import("zod/v4/core").$strip>;
|
|
3736
|
+
warning: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3737
|
+
}, import("zod/v4/core").$strip>;
|
|
3412
3738
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3413
3739
|
type: import("zod").ZodLiteral<"diagnostics.response">;
|
|
3414
3740
|
payload: import("zod").ZodObject<{
|
|
@@ -3504,6 +3830,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3504
3830
|
setup: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString>]>>;
|
|
3505
3831
|
teardown: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString>]>>;
|
|
3506
3832
|
terminals: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
3833
|
+
servicePorts: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3834
|
+
range: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3835
|
+
portScript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3836
|
+
}, import("zod/v4/core").$strict>>;
|
|
3507
3837
|
}, import("zod/v4/core").$loose>>;
|
|
3508
3838
|
scripts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
3509
3839
|
type: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
@@ -3558,6 +3888,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3558
3888
|
setup: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString>]>>;
|
|
3559
3889
|
teardown: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString>]>>;
|
|
3560
3890
|
terminals: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
3891
|
+
servicePorts: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3892
|
+
range: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3893
|
+
portScript: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3894
|
+
}, import("zod/v4/core").$strict>>;
|
|
3561
3895
|
}, import("zod/v4/core").$loose>>;
|
|
3562
3896
|
scripts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
3563
3897
|
type: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
@@ -3699,6 +4033,31 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3699
4033
|
pinnedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3700
4034
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3701
4035
|
}, import("zod/v4/core").$strip>;
|
|
4036
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4037
|
+
type: import("zod").ZodLiteral<"workspace.recovery.inspect.response">;
|
|
4038
|
+
payload: import("zod").ZodObject<{
|
|
4039
|
+
requestId: import("zod").ZodString;
|
|
4040
|
+
state: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
4041
|
+
kind: import("zod").ZodLiteral<"recoverable">;
|
|
4042
|
+
workspaceId: import("zod").ZodString;
|
|
4043
|
+
workspaceName: import("zod").ZodString;
|
|
4044
|
+
action: import("zod").ZodString;
|
|
4045
|
+
branch: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4046
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4047
|
+
kind: import("zod").ZodLiteral<"unavailable">;
|
|
4048
|
+
workspaceId: import("zod").ZodString;
|
|
4049
|
+
reason: import("zod").ZodString;
|
|
4050
|
+
message: import("zod").ZodString;
|
|
4051
|
+
}, import("zod/v4/core").$strip>], "kind">;
|
|
4052
|
+
}, import("zod/v4/core").$strip>;
|
|
4053
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4054
|
+
type: import("zod").ZodLiteral<"workspace.recovery.restore.response">;
|
|
4055
|
+
payload: import("zod").ZodObject<{
|
|
4056
|
+
requestId: import("zod").ZodString;
|
|
4057
|
+
workspaceId: import("zod").ZodString;
|
|
4058
|
+
accepted: import("zod").ZodBoolean;
|
|
4059
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4060
|
+
}, import("zod/v4/core").$strip>;
|
|
3702
4061
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3703
4062
|
type: import("zod").ZodLiteral<"wait_for_finish_response">;
|
|
3704
4063
|
payload: import("zod").ZodObject<{
|
|
@@ -3976,6 +4335,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3976
4335
|
prStatus: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3977
4336
|
cwd: import("zod").ZodString;
|
|
3978
4337
|
status: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4338
|
+
forge: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
4339
|
+
projectPath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3979
4340
|
number: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3980
4341
|
url: import("zod").ZodString;
|
|
3981
4342
|
title: import("zod").ZodString;
|
|
@@ -4023,8 +4384,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4023
4384
|
isMergeQueueEnabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4024
4385
|
isInMergeQueue: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4025
4386
|
}, import("zod/v4/core").$strip>>;
|
|
4387
|
+
forgeSpecific: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
4026
4388
|
}, import("zod/v4/core").$strip>>;
|
|
4027
4389
|
githubFeaturesEnabled: import("zod").ZodBoolean;
|
|
4390
|
+
authState: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
4391
|
+
forge: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
4028
4392
|
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4029
4393
|
code: import("zod").ZodEnum<{
|
|
4030
4394
|
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
@@ -4259,6 +4623,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4259
4623
|
}, import("zod/v4/core").$strip>>;
|
|
4260
4624
|
requestId: import("zod").ZodString;
|
|
4261
4625
|
}, import("zod/v4/core").$strip>;
|
|
4626
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4627
|
+
type: import("zod").ZodLiteral<"checkout.forge.set_auto_merge.response">;
|
|
4628
|
+
payload: import("zod").ZodObject<{
|
|
4629
|
+
cwd: import("zod").ZodString;
|
|
4630
|
+
enabled: import("zod").ZodBoolean;
|
|
4631
|
+
success: import("zod").ZodBoolean;
|
|
4632
|
+
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4633
|
+
code: import("zod").ZodEnum<{
|
|
4634
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
4635
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
4636
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
4637
|
+
UNKNOWN: "UNKNOWN";
|
|
4638
|
+
}>;
|
|
4639
|
+
message: import("zod").ZodString;
|
|
4640
|
+
}, import("zod/v4/core").$strip>>;
|
|
4641
|
+
requestId: import("zod").ZodString;
|
|
4642
|
+
}, import("zod/v4/core").$strip>;
|
|
4262
4643
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4263
4644
|
type: import("zod").ZodLiteral<"checkout.github.set_auto_merge.response">;
|
|
4264
4645
|
payload: import("zod").ZodObject<{
|
|
@@ -4276,6 +4657,160 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4276
4657
|
}, import("zod/v4/core").$strip>>;
|
|
4277
4658
|
requestId: import("zod").ZodString;
|
|
4278
4659
|
}, import("zod/v4/core").$strip>;
|
|
4660
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4661
|
+
type: import("zod").ZodLiteral<"checkout.commits.list.response">;
|
|
4662
|
+
payload: import("zod").ZodObject<{
|
|
4663
|
+
cwd: import("zod").ZodString;
|
|
4664
|
+
baseRef: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4665
|
+
commits: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4666
|
+
sha: import("zod").ZodString;
|
|
4667
|
+
shortSha: import("zod").ZodString;
|
|
4668
|
+
subject: import("zod").ZodString;
|
|
4669
|
+
authorName: import("zod").ZodString;
|
|
4670
|
+
authorDate: import("zod").ZodString;
|
|
4671
|
+
isOnRemote: import("zod").ZodBoolean;
|
|
4672
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4673
|
+
path: import("zod").ZodString;
|
|
4674
|
+
additions: import("zod").ZodNumber;
|
|
4675
|
+
deletions: import("zod").ZodNumber;
|
|
4676
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4677
|
+
added: "added";
|
|
4678
|
+
modified: "modified";
|
|
4679
|
+
deleted: "deleted";
|
|
4680
|
+
renamed: "renamed";
|
|
4681
|
+
}>>;
|
|
4682
|
+
}, import("zod/v4/core").$strip>>;
|
|
4683
|
+
}, import("zod/v4/core").$strip>>;
|
|
4684
|
+
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4685
|
+
code: import("zod").ZodEnum<{
|
|
4686
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
4687
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
4688
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
4689
|
+
UNKNOWN: "UNKNOWN";
|
|
4690
|
+
}>;
|
|
4691
|
+
message: import("zod").ZodString;
|
|
4692
|
+
}, import("zod/v4/core").$strip>>;
|
|
4693
|
+
requestId: import("zod").ZodString;
|
|
4694
|
+
}, import("zod/v4/core").$strip>;
|
|
4695
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4696
|
+
type: import("zod").ZodLiteral<"checkout.commits.file_diff.response">;
|
|
4697
|
+
payload: import("zod").ZodObject<{
|
|
4698
|
+
cwd: import("zod").ZodString;
|
|
4699
|
+
sha: import("zod").ZodString;
|
|
4700
|
+
path: import("zod").ZodString;
|
|
4701
|
+
file: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4702
|
+
path: import("zod").ZodString;
|
|
4703
|
+
isNew: import("zod").ZodBoolean;
|
|
4704
|
+
isDeleted: import("zod").ZodBoolean;
|
|
4705
|
+
additions: import("zod").ZodNumber;
|
|
4706
|
+
deletions: import("zod").ZodNumber;
|
|
4707
|
+
hunks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4708
|
+
oldStart: import("zod").ZodNumber;
|
|
4709
|
+
oldCount: import("zod").ZodNumber;
|
|
4710
|
+
newStart: import("zod").ZodNumber;
|
|
4711
|
+
newCount: import("zod").ZodNumber;
|
|
4712
|
+
lines: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4713
|
+
type: import("zod").ZodEnum<{
|
|
4714
|
+
context: "context";
|
|
4715
|
+
add: "add";
|
|
4716
|
+
remove: "remove";
|
|
4717
|
+
header: "header";
|
|
4718
|
+
}>;
|
|
4719
|
+
content: import("zod").ZodString;
|
|
4720
|
+
tokens: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4721
|
+
text: import("zod").ZodString;
|
|
4722
|
+
style: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4723
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4724
|
+
}, import("zod/v4/core").$strip>>;
|
|
4725
|
+
}, import("zod/v4/core").$strip>>;
|
|
4726
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4727
|
+
ok: "ok";
|
|
4728
|
+
too_large: "too_large";
|
|
4729
|
+
binary: "binary";
|
|
4730
|
+
}>>;
|
|
4731
|
+
}, import("zod/v4/core").$strip>>;
|
|
4732
|
+
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4733
|
+
code: import("zod").ZodEnum<{
|
|
4734
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
4735
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
4736
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
4737
|
+
UNKNOWN: "UNKNOWN";
|
|
4738
|
+
}>;
|
|
4739
|
+
message: import("zod").ZodString;
|
|
4740
|
+
}, import("zod/v4/core").$strip>>;
|
|
4741
|
+
requestId: import("zod").ZodString;
|
|
4742
|
+
}, import("zod/v4/core").$strip>;
|
|
4743
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4744
|
+
type: import("zod").ZodLiteral<"checkout.forge.get_check_details.response">;
|
|
4745
|
+
payload: import("zod").ZodObject<{
|
|
4746
|
+
cwd: import("zod").ZodString;
|
|
4747
|
+
success: import("zod").ZodBoolean;
|
|
4748
|
+
details: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4749
|
+
checkRunId: import("zod").ZodNumber;
|
|
4750
|
+
workflowRunId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
4751
|
+
name: import("zod").ZodString;
|
|
4752
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4753
|
+
conclusion: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4754
|
+
url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4755
|
+
detailsUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4756
|
+
output: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4757
|
+
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4758
|
+
summary: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4759
|
+
text: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4760
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4761
|
+
annotations: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4762
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4763
|
+
startLine: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4764
|
+
endLine: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4765
|
+
annotationLevel: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4766
|
+
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4767
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4768
|
+
rawDetails: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4769
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4770
|
+
failedJobs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4771
|
+
jobId: import("zod").ZodNumber;
|
|
4772
|
+
name: import("zod").ZodString;
|
|
4773
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4774
|
+
conclusion: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4775
|
+
url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4776
|
+
logTail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4777
|
+
logTruncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4778
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4779
|
+
truncated: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4780
|
+
pipeline: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4781
|
+
id: import("zod").ZodNumber;
|
|
4782
|
+
status: import("zod").ZodString;
|
|
4783
|
+
rawStatus: import("zod").ZodString;
|
|
4784
|
+
url: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4785
|
+
ref: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4786
|
+
sha: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4787
|
+
stages: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4788
|
+
name: import("zod").ZodString;
|
|
4789
|
+
status: import("zod").ZodString;
|
|
4790
|
+
jobs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4791
|
+
id: import("zod").ZodNumber;
|
|
4792
|
+
name: import("zod").ZodString;
|
|
4793
|
+
stage: import("zod").ZodString;
|
|
4794
|
+
status: import("zod").ZodString;
|
|
4795
|
+
rawStatus: import("zod").ZodString;
|
|
4796
|
+
url: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4797
|
+
allowFailure: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4798
|
+
durationSeconds: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>>;
|
|
4799
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4800
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4801
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4802
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4803
|
+
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4804
|
+
code: import("zod").ZodEnum<{
|
|
4805
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
4806
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
4807
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
4808
|
+
UNKNOWN: "UNKNOWN";
|
|
4809
|
+
}>;
|
|
4810
|
+
message: import("zod").ZodString;
|
|
4811
|
+
}, import("zod/v4/core").$strip>>;
|
|
4812
|
+
requestId: import("zod").ZodString;
|
|
4813
|
+
}, import("zod/v4/core").$strip>;
|
|
4279
4814
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4280
4815
|
type: import("zod").ZodLiteral<"checkout.github.get_check_details.response">;
|
|
4281
4816
|
payload: import("zod").ZodObject<{
|
|
@@ -4313,6 +4848,28 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4313
4848
|
logTruncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4314
4849
|
}, import("zod/v4/core").$strip>>>>;
|
|
4315
4850
|
truncated: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4851
|
+
pipeline: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4852
|
+
id: import("zod").ZodNumber;
|
|
4853
|
+
status: import("zod").ZodString;
|
|
4854
|
+
rawStatus: import("zod").ZodString;
|
|
4855
|
+
url: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4856
|
+
ref: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4857
|
+
sha: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4858
|
+
stages: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4859
|
+
name: import("zod").ZodString;
|
|
4860
|
+
status: import("zod").ZodString;
|
|
4861
|
+
jobs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4862
|
+
id: import("zod").ZodNumber;
|
|
4863
|
+
name: import("zod").ZodString;
|
|
4864
|
+
stage: import("zod").ZodString;
|
|
4865
|
+
status: import("zod").ZodString;
|
|
4866
|
+
rawStatus: import("zod").ZodString;
|
|
4867
|
+
url: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4868
|
+
allowFailure: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4869
|
+
durationSeconds: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>>;
|
|
4870
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4871
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4872
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4316
4873
|
}, import("zod/v4/core").$strip>>>>;
|
|
4317
4874
|
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4318
4875
|
code: import("zod").ZodEnum<{
|
|
@@ -4330,6 +4887,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4330
4887
|
payload: import("zod").ZodObject<{
|
|
4331
4888
|
cwd: import("zod").ZodString;
|
|
4332
4889
|
status: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4890
|
+
forge: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
4891
|
+
projectPath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4333
4892
|
number: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4334
4893
|
url: import("zod").ZodString;
|
|
4335
4894
|
title: import("zod").ZodString;
|
|
@@ -4377,8 +4936,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4377
4936
|
isMergeQueueEnabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4378
4937
|
isInMergeQueue: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4379
4938
|
}, import("zod/v4/core").$strip>>;
|
|
4939
|
+
forgeSpecific: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
4380
4940
|
}, import("zod/v4/core").$strip>>;
|
|
4381
4941
|
githubFeaturesEnabled: import("zod").ZodBoolean;
|
|
4942
|
+
authState: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
4943
|
+
forge: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
4382
4944
|
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4383
4945
|
code: import("zod").ZodEnum<{
|
|
4384
4946
|
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
@@ -4419,6 +4981,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4419
4981
|
createdAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
4420
4982
|
url: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
4421
4983
|
reviewId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4984
|
+
threadId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4985
|
+
threadIsResolved: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4422
4986
|
location: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4423
4987
|
path: import("zod").ZodString;
|
|
4424
4988
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4441,6 +5005,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4441
5005
|
}, import("zod/v4/core").$strip>], "kind">>>>>;
|
|
4442
5006
|
requestId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
4443
5007
|
githubFeaturesEnabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5008
|
+
authState: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
4444
5009
|
}, import("zod/v4/core").$strip>>>;
|
|
4445
5010
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4446
5011
|
type: import("zod").ZodLiteral<"checkout_switch_branch_response">;
|
|
@@ -4555,25 +5120,21 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4555
5120
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4556
5121
|
requestId: import("zod").ZodString;
|
|
4557
5122
|
}, import("zod/v4/core").$strip>;
|
|
5123
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5124
|
+
type: import("zod").ZodLiteral<"forge.search.response">;
|
|
5125
|
+
payload: import("zod").ZodObject<{
|
|
5126
|
+
items: import("zod").ZodArray<import("zod").ZodUnknown>;
|
|
5127
|
+
authState: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
5128
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5129
|
+
requestId: import("zod").ZodString;
|
|
5130
|
+
}, import("zod/v4/core").$strip>;
|
|
4558
5131
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4559
5132
|
type: import("zod").ZodLiteral<"github_search_response">;
|
|
4560
5133
|
payload: import("zod").ZodObject<{
|
|
4561
|
-
items: import("zod").ZodArray<import("zod").
|
|
4562
|
-
|
|
4563
|
-
|
|
4564
|
-
|
|
4565
|
-
}>;
|
|
4566
|
-
number: import("zod").ZodNumber;
|
|
4567
|
-
title: import("zod").ZodString;
|
|
4568
|
-
url: import("zod").ZodString;
|
|
4569
|
-
state: import("zod").ZodString;
|
|
4570
|
-
body: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4571
|
-
labels: import("zod").ZodArray<import("zod").ZodString>;
|
|
4572
|
-
baseRefName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4573
|
-
headRefName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4574
|
-
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4575
|
-
}, import("zod/v4/core").$strip>>;
|
|
4576
|
-
githubFeaturesEnabled: import("zod").ZodBoolean;
|
|
5134
|
+
items: import("zod").ZodArray<import("zod").ZodUnknown>;
|
|
5135
|
+
featuresEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5136
|
+
authState: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
5137
|
+
githubFeaturesEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4577
5138
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4578
5139
|
requestId: import("zod").ZodString;
|
|
4579
5140
|
}, import("zod/v4/core").$strip>;
|
|
@@ -4748,6 +5309,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4748
5309
|
}, import("zod/v4/core").$strip>>>;
|
|
4749
5310
|
refreshedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4750
5311
|
}, import("zod/v4/core").$strip>>>;
|
|
5312
|
+
forge: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4751
5313
|
project: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4752
5314
|
projectKey: import("zod").ZodString;
|
|
4753
5315
|
projectName: import("zod").ZodString;
|
|
@@ -4901,6 +5463,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4901
5463
|
} | null | undefined;
|
|
4902
5464
|
refreshedAt?: string | null | undefined;
|
|
4903
5465
|
} | null | undefined;
|
|
5466
|
+
forge?: string | undefined;
|
|
4904
5467
|
project?: {
|
|
4905
5468
|
projectKey: string;
|
|
4906
5469
|
projectName: string;
|
|
@@ -5006,6 +5569,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5006
5569
|
} | null | undefined;
|
|
5007
5570
|
refreshedAt?: string | null | undefined;
|
|
5008
5571
|
} | null | undefined;
|
|
5572
|
+
forge?: string | undefined;
|
|
5009
5573
|
project?: {
|
|
5010
5574
|
projectKey: string;
|
|
5011
5575
|
projectName: string;
|
|
@@ -5080,10 +5644,95 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5080
5644
|
mimeType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5081
5645
|
size: import("zod").ZodNumber;
|
|
5082
5646
|
modifiedAt: import("zod").ZodString;
|
|
5647
|
+
revision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5083
5648
|
}, import("zod/v4/core").$strip>>;
|
|
5084
5649
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5085
5650
|
requestId: import("zod").ZodString;
|
|
5086
5651
|
}, import("zod/v4/core").$strip>;
|
|
5652
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5653
|
+
type: import("zod").ZodLiteral<"fs.file.subscribe.response">;
|
|
5654
|
+
payload: import("zod").ZodObject<{
|
|
5655
|
+
subscriptionId: import("zod").ZodString;
|
|
5656
|
+
initial: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
5657
|
+
status: import("zod").ZodLiteral<"ready">;
|
|
5658
|
+
cwd: import("zod").ZodString;
|
|
5659
|
+
path: import("zod").ZodString;
|
|
5660
|
+
size: import("zod").ZodNumber;
|
|
5661
|
+
modifiedAt: import("zod").ZodString;
|
|
5662
|
+
revision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5663
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5664
|
+
status: import("zod").ZodLiteral<"missing">;
|
|
5665
|
+
cwd: import("zod").ZodString;
|
|
5666
|
+
path: import("zod").ZodString;
|
|
5667
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5668
|
+
status: import("zod").ZodLiteral<"error">;
|
|
5669
|
+
cwd: import("zod").ZodString;
|
|
5670
|
+
path: import("zod").ZodString;
|
|
5671
|
+
error: import("zod").ZodString;
|
|
5672
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
5673
|
+
requestId: import("zod").ZodString;
|
|
5674
|
+
}, import("zod/v4/core").$strip>;
|
|
5675
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5676
|
+
type: import("zod").ZodLiteral<"fs.file.unsubscribe.response">;
|
|
5677
|
+
payload: import("zod").ZodObject<{
|
|
5678
|
+
subscriptionId: import("zod").ZodString;
|
|
5679
|
+
requestId: import("zod").ZodString;
|
|
5680
|
+
}, import("zod/v4/core").$strip>;
|
|
5681
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5682
|
+
type: import("zod").ZodLiteral<"fs.file.write.response">;
|
|
5683
|
+
payload: import("zod").ZodObject<{
|
|
5684
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
5685
|
+
status: import("zod").ZodLiteral<"written">;
|
|
5686
|
+
modifiedAt: import("zod").ZodString;
|
|
5687
|
+
size: import("zod").ZodNumber;
|
|
5688
|
+
revision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5689
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5690
|
+
status: import("zod").ZodLiteral<"conflict">;
|
|
5691
|
+
version: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
5692
|
+
status: import("zod").ZodLiteral<"ready">;
|
|
5693
|
+
cwd: import("zod").ZodString;
|
|
5694
|
+
path: import("zod").ZodString;
|
|
5695
|
+
size: import("zod").ZodNumber;
|
|
5696
|
+
modifiedAt: import("zod").ZodString;
|
|
5697
|
+
revision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5698
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5699
|
+
status: import("zod").ZodLiteral<"missing">;
|
|
5700
|
+
cwd: import("zod").ZodString;
|
|
5701
|
+
path: import("zod").ZodString;
|
|
5702
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5703
|
+
status: import("zod").ZodLiteral<"error">;
|
|
5704
|
+
cwd: import("zod").ZodString;
|
|
5705
|
+
path: import("zod").ZodString;
|
|
5706
|
+
error: import("zod").ZodString;
|
|
5707
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
5708
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5709
|
+
status: import("zod").ZodLiteral<"error">;
|
|
5710
|
+
error: import("zod").ZodString;
|
|
5711
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
5712
|
+
requestId: import("zod").ZodString;
|
|
5713
|
+
}, import("zod/v4/core").$strip>;
|
|
5714
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5715
|
+
type: import("zod").ZodLiteral<"fs.file.update">;
|
|
5716
|
+
payload: import("zod").ZodObject<{
|
|
5717
|
+
subscriptionId: import("zod").ZodString;
|
|
5718
|
+
version: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
5719
|
+
status: import("zod").ZodLiteral<"ready">;
|
|
5720
|
+
cwd: import("zod").ZodString;
|
|
5721
|
+
path: import("zod").ZodString;
|
|
5722
|
+
size: import("zod").ZodNumber;
|
|
5723
|
+
modifiedAt: import("zod").ZodString;
|
|
5724
|
+
revision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5725
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5726
|
+
status: import("zod").ZodLiteral<"missing">;
|
|
5727
|
+
cwd: import("zod").ZodString;
|
|
5728
|
+
path: import("zod").ZodString;
|
|
5729
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5730
|
+
status: import("zod").ZodLiteral<"error">;
|
|
5731
|
+
cwd: import("zod").ZodString;
|
|
5732
|
+
path: import("zod").ZodString;
|
|
5733
|
+
error: import("zod").ZodString;
|
|
5734
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
5735
|
+
}, import("zod/v4/core").$strip>;
|
|
5087
5736
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5088
5737
|
type: import("zod").ZodLiteral<"project_icon_response">;
|
|
5089
5738
|
payload: import("zod").ZodObject<{
|
|
@@ -5190,6 +5839,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5190
5839
|
provider: import("zod").ZodString;
|
|
5191
5840
|
status: import("zod").ZodType<import("../agent-types.js").ProviderStatus, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ProviderStatus, unknown>>;
|
|
5192
5841
|
enabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5842
|
+
source: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5843
|
+
builtin: "builtin";
|
|
5844
|
+
custom: "custom";
|
|
5845
|
+
}>>;
|
|
5193
5846
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5194
5847
|
models: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentModelDefinition, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentModelDefinition, unknown>>>>;
|
|
5195
5848
|
modes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>>;
|
|
@@ -5209,6 +5862,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5209
5862
|
provider: import("zod").ZodString;
|
|
5210
5863
|
status: import("zod").ZodType<import("../agent-types.js").ProviderStatus, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ProviderStatus, unknown>>;
|
|
5211
5864
|
enabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5865
|
+
source: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5866
|
+
builtin: "builtin";
|
|
5867
|
+
custom: "custom";
|
|
5868
|
+
}>>;
|
|
5212
5869
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5213
5870
|
models: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentModelDefinition, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentModelDefinition, unknown>>>>;
|
|
5214
5871
|
modes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>>;
|