@getpaseo/protocol 0.3.0 → 0.4.0-beta.1
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 +22 -12
- package/dist/chat/rpc-schemas.js +1 -0
- package/dist/chat/types.js +1 -0
- package/dist/generated/validation/ws-outbound.aot.js +38983 -37493
- package/dist/host-connection-schema.d.ts +0 -1
- package/dist/host-connection-schema.js +0 -1
- package/dist/loop/rpc-schemas.js +1 -0
- package/dist/messages.d.ts +1193 -382
- package/dist/messages.js +252 -11
- package/dist/schedule/rpc-schemas.d.ts +8 -64
- package/dist/schedule/types.d.ts +3 -24
- package/dist/schedule/types.js +1 -11
- package/dist/validation/ws-outbound-schema-metadata.d.ts +161 -86
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -12,6 +12,28 @@ export declare const TerminalProfileSchema: z.ZodObject<{
|
|
|
12
12
|
icon: z.ZodOptional<z.ZodString>;
|
|
13
13
|
}, z.core.$loose>;
|
|
14
14
|
export type TerminalProfile = z.infer<typeof TerminalProfileSchema>;
|
|
15
|
+
/**
|
|
16
|
+
* A named launch bundle: a provider plus the agent-config values a client would
|
|
17
|
+
* otherwise set one control at a time. Field names mirror `AgentSessionConfig`
|
|
18
|
+
* so applying a profile is a copy rather than a translation table.
|
|
19
|
+
*
|
|
20
|
+
* There is deliberately no system prompt here. `AgentSessionConfig.systemPrompt`
|
|
21
|
+
* is creation-only, so a profile carrying one would apply when starting a new
|
|
22
|
+
* agent and silently do nothing when applied to a running one.
|
|
23
|
+
*/
|
|
24
|
+
export declare const AgentProfileSchema: z.ZodObject<{
|
|
25
|
+
id: z.ZodString;
|
|
26
|
+
name: z.ZodString;
|
|
27
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
28
|
+
color: z.ZodOptional<z.ZodString>;
|
|
29
|
+
provider: z.ZodString;
|
|
30
|
+
model: z.ZodOptional<z.ZodString>;
|
|
31
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
32
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
33
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
34
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
35
|
+
}, z.core.$loose>;
|
|
36
|
+
export type AgentProfile = z.infer<typeof AgentProfileSchema>;
|
|
15
37
|
export declare const MutableDaemonConfigSchema: z.ZodObject<{
|
|
16
38
|
relay: z.ZodOptional<z.ZodObject<{
|
|
17
39
|
enabled: z.ZodBoolean;
|
|
@@ -48,6 +70,18 @@ export declare const MutableDaemonConfigSchema: z.ZodObject<{
|
|
|
48
70
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
49
71
|
icon: z.ZodOptional<z.ZodString>;
|
|
50
72
|
}, z.core.$loose>>>;
|
|
73
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
74
|
+
id: z.ZodString;
|
|
75
|
+
name: z.ZodString;
|
|
76
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
77
|
+
color: z.ZodOptional<z.ZodString>;
|
|
78
|
+
provider: z.ZodString;
|
|
79
|
+
model: z.ZodOptional<z.ZodString>;
|
|
80
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
81
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
82
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
83
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
84
|
+
}, z.core.$loose>>>;
|
|
51
85
|
}, z.core.$loose>;
|
|
52
86
|
export declare const MutableDaemonConfigPatchSchema: z.ZodObject<{
|
|
53
87
|
relay: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -86,6 +120,18 @@ export declare const MutableDaemonConfigPatchSchema: z.ZodObject<{
|
|
|
86
120
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
87
121
|
icon: z.ZodOptional<z.ZodString>;
|
|
88
122
|
}, z.core.$loose>>>>;
|
|
123
|
+
agentProfiles: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
124
|
+
id: z.ZodString;
|
|
125
|
+
name: z.ZodString;
|
|
126
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
127
|
+
color: z.ZodOptional<z.ZodString>;
|
|
128
|
+
provider: z.ZodString;
|
|
129
|
+
model: z.ZodOptional<z.ZodString>;
|
|
130
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
131
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
132
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
133
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
134
|
+
}, z.core.$loose>>>>;
|
|
89
135
|
}, z.core.$loose>;
|
|
90
136
|
export type MutableDaemonConfig = z.infer<typeof MutableDaemonConfigSchema>;
|
|
91
137
|
export type MutableDaemonConfigPatch = z.infer<typeof MutableDaemonConfigPatchSchema>;
|
|
@@ -1175,6 +1221,18 @@ export declare const SetDaemonConfigRequestMessageSchema: z.ZodObject<{
|
|
|
1175
1221
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1176
1222
|
icon: z.ZodOptional<z.ZodString>;
|
|
1177
1223
|
}, z.core.$loose>>>>;
|
|
1224
|
+
agentProfiles: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1225
|
+
id: z.ZodString;
|
|
1226
|
+
name: z.ZodString;
|
|
1227
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1228
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1229
|
+
provider: z.ZodString;
|
|
1230
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1231
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
1232
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
1233
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1234
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
1235
|
+
}, z.core.$loose>>>>;
|
|
1178
1236
|
}, z.core.$loose>;
|
|
1179
1237
|
}, z.core.$strip>;
|
|
1180
1238
|
export declare const ReadProjectConfigRequestMessageSchema: z.ZodObject<{
|
|
@@ -1284,14 +1342,14 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
|
|
|
1284
1342
|
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
1285
1343
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1286
1344
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
}, z.core.$
|
|
1345
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
1346
|
+
toolPolicy: z.ZodOptional<z.ZodObject<{
|
|
1347
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
1348
|
+
kind: z.ZodLiteral<"mcp">;
|
|
1349
|
+
server: z.ZodString;
|
|
1350
|
+
tool: z.ZodString;
|
|
1351
|
+
}, z.core.$strict>>;
|
|
1352
|
+
}, z.core.$strict>>;
|
|
1295
1353
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
1296
1354
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1297
1355
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -1481,14 +1539,14 @@ export declare const ResumeAgentRequestMessageSchema: z.ZodObject<{
|
|
|
1481
1539
|
thinkingOptionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1482
1540
|
featureValues: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1483
1541
|
title: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
}, z.core.$
|
|
1542
|
+
providerOptions: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>>;
|
|
1543
|
+
toolPolicy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1544
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
1545
|
+
kind: z.ZodLiteral<"mcp">;
|
|
1546
|
+
server: z.ZodString;
|
|
1547
|
+
tool: z.ZodString;
|
|
1548
|
+
}, z.core.$strict>>;
|
|
1549
|
+
}, z.core.$strict>>>;
|
|
1492
1550
|
systemPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1493
1551
|
mcpServers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1494
1552
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -1674,6 +1732,45 @@ export declare const SetAgentFeatureResponseMessageSchema: z.ZodObject<{
|
|
|
1674
1732
|
notice: z.ZodOptional<z.ZodNullable<z.ZodType<AgentProviderNotice, unknown, z.core.$ZodTypeInternals<AgentProviderNotice, unknown>>>>;
|
|
1675
1733
|
}, z.core.$strip>;
|
|
1676
1734
|
}, z.core.$strip>;
|
|
1735
|
+
/**
|
|
1736
|
+
* Every agent-config value a client can change in one shot. Each field is
|
|
1737
|
+
* optional and an omitted field is left alone; `null` on model and thinking
|
|
1738
|
+
* clears them, matching the single-field RPCs above.
|
|
1739
|
+
*/
|
|
1740
|
+
export declare const AgentConfigApplySchema: z.ZodObject<{
|
|
1741
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1742
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
1743
|
+
thinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1744
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1745
|
+
}, z.core.$strip>;
|
|
1746
|
+
export type AgentConfigApply = z.infer<typeof AgentConfigApplySchema>;
|
|
1747
|
+
/**
|
|
1748
|
+
* Applies a whole config bundle to one agent. The four single-field RPCs above
|
|
1749
|
+
* stay for individual control edits. One request prevents client interruption
|
|
1750
|
+
* and other mutations from interleaving between bundle steps; provider-level
|
|
1751
|
+
* rejection can still leave earlier steps applied.
|
|
1752
|
+
*/
|
|
1753
|
+
export declare const AgentConfigApplyRequestMessageSchema: z.ZodObject<{
|
|
1754
|
+
type: z.ZodLiteral<"agent.config.apply.request">;
|
|
1755
|
+
agentId: z.ZodString;
|
|
1756
|
+
config: z.ZodObject<{
|
|
1757
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1758
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
1759
|
+
thinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1760
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1761
|
+
}, z.core.$strip>;
|
|
1762
|
+
requestId: z.ZodString;
|
|
1763
|
+
}, z.core.$strip>;
|
|
1764
|
+
export declare const AgentConfigApplyResponseMessageSchema: z.ZodObject<{
|
|
1765
|
+
type: z.ZodLiteral<"agent.config.apply.response">;
|
|
1766
|
+
payload: z.ZodObject<{
|
|
1767
|
+
requestId: z.ZodString;
|
|
1768
|
+
agentId: z.ZodString;
|
|
1769
|
+
accepted: z.ZodBoolean;
|
|
1770
|
+
error: z.ZodNullable<z.ZodString>;
|
|
1771
|
+
notice: z.ZodOptional<z.ZodNullable<z.ZodType<AgentProviderNotice, unknown, z.core.$ZodTypeInternals<AgentProviderNotice, unknown>>>>;
|
|
1772
|
+
}, z.core.$strip>;
|
|
1773
|
+
}, z.core.$strip>;
|
|
1677
1774
|
export declare const AgentDetachRequestMessageSchema: z.ZodObject<{
|
|
1678
1775
|
type: z.ZodLiteral<"agent.detach.request">;
|
|
1679
1776
|
agentId: z.ZodString;
|
|
@@ -1922,6 +2019,12 @@ export declare const CheckoutRefreshRequestSchema: z.ZodObject<{
|
|
|
1922
2019
|
cwd: z.ZodString;
|
|
1923
2020
|
requestId: z.ZodString;
|
|
1924
2021
|
}, z.core.$strip>;
|
|
2022
|
+
export declare const CheckoutDiscardChangesRequestSchema: z.ZodObject<{
|
|
2023
|
+
type: z.ZodLiteral<"checkout.discard_changes.request">;
|
|
2024
|
+
cwd: z.ZodString;
|
|
2025
|
+
paths: z.ZodArray<z.ZodString>;
|
|
2026
|
+
requestId: z.ZodString;
|
|
2027
|
+
}, z.core.$strip>;
|
|
1925
2028
|
export declare const CheckoutPrCreateRequestSchema: z.ZodObject<{
|
|
1926
2029
|
type: z.ZodLiteral<"checkout_pr_create_request">;
|
|
1927
2030
|
cwd: z.ZodString;
|
|
@@ -2636,6 +2739,7 @@ export declare const WorkspaceClearAttentionRequestSchema: z.ZodObject<{
|
|
|
2636
2739
|
}, z.core.$strip>;
|
|
2637
2740
|
declare const ParsedDiffFileSchema: z.ZodObject<{
|
|
2638
2741
|
path: z.ZodString;
|
|
2742
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
2639
2743
|
isNew: z.ZodBoolean;
|
|
2640
2744
|
isDeleted: z.ZodBoolean;
|
|
2641
2745
|
additions: z.ZodNumber;
|
|
@@ -2714,6 +2818,36 @@ export declare const FileWriteRequestSchema: z.ZodObject<{
|
|
|
2714
2818
|
expectedRevision: z.ZodOptional<z.ZodString>;
|
|
2715
2819
|
requestId: z.ZodString;
|
|
2716
2820
|
}, z.core.$strip>;
|
|
2821
|
+
export declare const FileEntryCreateRequestSchema: z.ZodObject<{
|
|
2822
|
+
type: z.ZodLiteral<"fs.entry.create.request">;
|
|
2823
|
+
cwd: z.ZodString;
|
|
2824
|
+
parentPath: z.ZodString;
|
|
2825
|
+
name: z.ZodString;
|
|
2826
|
+
kind: z.ZodEnum<{
|
|
2827
|
+
file: "file";
|
|
2828
|
+
directory: "directory";
|
|
2829
|
+
}>;
|
|
2830
|
+
requestId: z.ZodString;
|
|
2831
|
+
}, z.core.$strip>;
|
|
2832
|
+
export declare const FileEntryRenameRequestSchema: z.ZodObject<{
|
|
2833
|
+
type: z.ZodLiteral<"fs.entry.rename.request">;
|
|
2834
|
+
cwd: z.ZodString;
|
|
2835
|
+
path: z.ZodString;
|
|
2836
|
+
name: z.ZodString;
|
|
2837
|
+
requestId: z.ZodString;
|
|
2838
|
+
}, z.core.$strip>;
|
|
2839
|
+
export declare const FileEntryDuplicateRequestSchema: z.ZodObject<{
|
|
2840
|
+
type: z.ZodLiteral<"fs.entry.duplicate.request">;
|
|
2841
|
+
cwd: z.ZodString;
|
|
2842
|
+
path: z.ZodString;
|
|
2843
|
+
requestId: z.ZodString;
|
|
2844
|
+
}, z.core.$strip>;
|
|
2845
|
+
export declare const FileEntryDeleteRequestSchema: z.ZodObject<{
|
|
2846
|
+
type: z.ZodLiteral<"fs.entry.delete.request">;
|
|
2847
|
+
cwd: z.ZodString;
|
|
2848
|
+
path: z.ZodString;
|
|
2849
|
+
requestId: z.ZodString;
|
|
2850
|
+
}, z.core.$strip>;
|
|
2717
2851
|
export declare const ProjectIconRequestSchema: z.ZodObject<{
|
|
2718
2852
|
type: z.ZodLiteral<"project_icon_request">;
|
|
2719
2853
|
cwd: z.ZodString;
|
|
@@ -2789,6 +2923,17 @@ export declare const RegisterPushTokenMessageSchema: z.ZodObject<{
|
|
|
2789
2923
|
type: z.ZodLiteral<"register_push_token">;
|
|
2790
2924
|
token: z.ZodString;
|
|
2791
2925
|
}, z.core.$strip>;
|
|
2926
|
+
export declare const PushUnregisterRequestSchema: z.ZodObject<{
|
|
2927
|
+
type: z.ZodLiteral<"push.unregister.request">;
|
|
2928
|
+
token: z.ZodString;
|
|
2929
|
+
requestId: z.ZodString;
|
|
2930
|
+
}, z.core.$strip>;
|
|
2931
|
+
export declare const PushUnregisterResponseSchema: z.ZodObject<{
|
|
2932
|
+
type: z.ZodLiteral<"push.unregister.response">;
|
|
2933
|
+
payload: z.ZodObject<{
|
|
2934
|
+
requestId: z.ZodString;
|
|
2935
|
+
}, z.core.$strip>;
|
|
2936
|
+
}, z.core.$strip>;
|
|
2792
2937
|
export declare const ListTerminalsRequestSchema: z.ZodObject<{
|
|
2793
2938
|
type: z.ZodLiteral<"list_terminals_request">;
|
|
2794
2939
|
cwd: z.ZodOptional<z.ZodString>;
|
|
@@ -2920,6 +3065,14 @@ export declare const HubExecutionAgentCreateRequestSchema: z.ZodObject<{
|
|
|
2920
3065
|
modeId: z.ZodOptional<z.ZodString>;
|
|
2921
3066
|
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
2922
3067
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3068
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
3069
|
+
toolPolicy: z.ZodOptional<z.ZodObject<{
|
|
3070
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
3071
|
+
kind: z.ZodLiteral<"mcp">;
|
|
3072
|
+
server: z.ZodString;
|
|
3073
|
+
tool: z.ZodString;
|
|
3074
|
+
}, z.core.$strict>>;
|
|
3075
|
+
}, z.core.$strict>>;
|
|
2923
3076
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2924
3077
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2925
3078
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -2951,6 +3104,33 @@ export declare const HubExecutionAgentCreateRequestSchema: z.ZodObject<{
|
|
|
2951
3104
|
}, z.core.$strip>], "mode">>;
|
|
2952
3105
|
}, z.core.$strip>;
|
|
2953
3106
|
export type HubExecutionAgentCreateRequest = z.infer<typeof HubExecutionAgentCreateRequestSchema>;
|
|
3107
|
+
export declare const HubExecutionAgentValidateRequestSchema: z.ZodObject<{
|
|
3108
|
+
type: z.ZodLiteral<"hub.execution.agent.validate.request">;
|
|
3109
|
+
requestId: z.ZodString;
|
|
3110
|
+
provider: z.ZodString;
|
|
3111
|
+
model: z.ZodOptional<z.ZodString>;
|
|
3112
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
3113
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
3114
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
3115
|
+
}, z.core.$strip>;
|
|
3116
|
+
export type HubExecutionAgentValidateRequest = z.infer<typeof HubExecutionAgentValidateRequestSchema>;
|
|
3117
|
+
declare const HubExecutionAgentCreateErrorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3118
|
+
code: z.ZodLiteral<"provider_options_invalid">;
|
|
3119
|
+
provider: z.ZodString;
|
|
3120
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
3121
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
3122
|
+
message: z.ZodString;
|
|
3123
|
+
}, z.core.$strip>>;
|
|
3124
|
+
message: z.ZodString;
|
|
3125
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3126
|
+
code: z.ZodLiteral<"tool_policy_unsupported">;
|
|
3127
|
+
provider: z.ZodString;
|
|
3128
|
+
message: z.ZodString;
|
|
3129
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3130
|
+
code: z.ZodLiteral<"create_failed">;
|
|
3131
|
+
message: z.ZodString;
|
|
3132
|
+
}, z.core.$strip>], "code">;
|
|
3133
|
+
export type HubExecutionAgentCreateError = z.infer<typeof HubExecutionAgentCreateErrorSchema>;
|
|
2954
3134
|
export declare const HubExecutionControlActionSchema: z.ZodEnum<{
|
|
2955
3135
|
archive: "archive";
|
|
2956
3136
|
interrupt: "interrupt";
|
|
@@ -2978,6 +3158,14 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2978
3158
|
modeId: z.ZodOptional<z.ZodString>;
|
|
2979
3159
|
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
2980
3160
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3161
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
3162
|
+
toolPolicy: z.ZodOptional<z.ZodObject<{
|
|
3163
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
3164
|
+
kind: z.ZodLiteral<"mcp">;
|
|
3165
|
+
server: z.ZodString;
|
|
3166
|
+
tool: z.ZodString;
|
|
3167
|
+
}, z.core.$strict>>;
|
|
3168
|
+
}, z.core.$strict>>;
|
|
2981
3169
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2982
3170
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2983
3171
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -3007,6 +3195,14 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3007
3195
|
mode: z.ZodLiteral<"checkout-pr">;
|
|
3008
3196
|
prNumber: z.ZodNumber;
|
|
3009
3197
|
}, z.core.$strip>], "mode">>;
|
|
3198
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3199
|
+
type: z.ZodLiteral<"hub.execution.agent.validate.request">;
|
|
3200
|
+
requestId: z.ZodString;
|
|
3201
|
+
provider: z.ZodString;
|
|
3202
|
+
model: z.ZodOptional<z.ZodString>;
|
|
3203
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
3204
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
3205
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
3010
3206
|
}, z.core.$strip>, z.ZodObject<{
|
|
3011
3207
|
type: z.ZodLiteral<"hub.execution.control.request">;
|
|
3012
3208
|
requestId: z.ZodString;
|
|
@@ -3562,6 +3758,18 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3562
3758
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3563
3759
|
icon: z.ZodOptional<z.ZodString>;
|
|
3564
3760
|
}, z.core.$loose>>>>;
|
|
3761
|
+
agentProfiles: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3762
|
+
id: z.ZodString;
|
|
3763
|
+
name: z.ZodString;
|
|
3764
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
3765
|
+
color: z.ZodOptional<z.ZodString>;
|
|
3766
|
+
provider: z.ZodString;
|
|
3767
|
+
model: z.ZodOptional<z.ZodString>;
|
|
3768
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
3769
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
3770
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3771
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
3772
|
+
}, z.core.$loose>>>>;
|
|
3565
3773
|
}, z.core.$loose>;
|
|
3566
3774
|
}, z.core.$strip>, z.ZodObject<{
|
|
3567
3775
|
type: z.ZodLiteral<"read_project_config_request">;
|
|
@@ -3632,14 +3840,14 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3632
3840
|
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
3633
3841
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3634
3842
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
}, z.core.$
|
|
3843
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
3844
|
+
toolPolicy: z.ZodOptional<z.ZodObject<{
|
|
3845
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
3846
|
+
kind: z.ZodLiteral<"mcp">;
|
|
3847
|
+
server: z.ZodString;
|
|
3848
|
+
tool: z.ZodString;
|
|
3849
|
+
}, z.core.$strict>>;
|
|
3850
|
+
}, z.core.$strict>>;
|
|
3643
3851
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
3644
3852
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3645
3853
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -3832,14 +4040,14 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3832
4040
|
thinkingOptionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3833
4041
|
featureValues: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
3834
4042
|
title: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
}, z.core.$
|
|
4043
|
+
providerOptions: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>>;
|
|
4044
|
+
toolPolicy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
4045
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
4046
|
+
kind: z.ZodLiteral<"mcp">;
|
|
4047
|
+
server: z.ZodString;
|
|
4048
|
+
tool: z.ZodString;
|
|
4049
|
+
}, z.core.$strict>>;
|
|
4050
|
+
}, z.core.$strict>>>;
|
|
3843
4051
|
systemPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3844
4052
|
mcpServers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3845
4053
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -3964,6 +4172,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3964
4172
|
featureId: z.ZodString;
|
|
3965
4173
|
value: z.ZodUnknown;
|
|
3966
4174
|
requestId: z.ZodString;
|
|
4175
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4176
|
+
type: z.ZodLiteral<"agent.config.apply.request">;
|
|
4177
|
+
agentId: z.ZodString;
|
|
4178
|
+
config: z.ZodObject<{
|
|
4179
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4180
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
4181
|
+
thinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4182
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4183
|
+
}, z.core.$strip>;
|
|
4184
|
+
requestId: z.ZodString;
|
|
3967
4185
|
}, z.core.$strip>, z.ZodObject<{
|
|
3968
4186
|
type: z.ZodLiteral<"agent.detach.request">;
|
|
3969
4187
|
agentId: z.ZodString;
|
|
@@ -4037,6 +4255,11 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
4037
4255
|
type: z.ZodLiteral<"checkout.refresh.request">;
|
|
4038
4256
|
cwd: z.ZodString;
|
|
4039
4257
|
requestId: z.ZodString;
|
|
4258
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4259
|
+
type: z.ZodLiteral<"checkout.discard_changes.request">;
|
|
4260
|
+
cwd: z.ZodString;
|
|
4261
|
+
paths: z.ZodArray<z.ZodString>;
|
|
4262
|
+
requestId: z.ZodString;
|
|
4040
4263
|
}, z.core.$strip>, z.ZodObject<{
|
|
4041
4264
|
type: z.ZodLiteral<"checkout_pr_create_request">;
|
|
4042
4265
|
cwd: z.ZodString;
|
|
@@ -4567,6 +4790,32 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
4567
4790
|
expectedModifiedAt: z.ZodString;
|
|
4568
4791
|
expectedRevision: z.ZodOptional<z.ZodString>;
|
|
4569
4792
|
requestId: z.ZodString;
|
|
4793
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4794
|
+
type: z.ZodLiteral<"fs.entry.create.request">;
|
|
4795
|
+
cwd: z.ZodString;
|
|
4796
|
+
parentPath: z.ZodString;
|
|
4797
|
+
name: z.ZodString;
|
|
4798
|
+
kind: z.ZodEnum<{
|
|
4799
|
+
file: "file";
|
|
4800
|
+
directory: "directory";
|
|
4801
|
+
}>;
|
|
4802
|
+
requestId: z.ZodString;
|
|
4803
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4804
|
+
type: z.ZodLiteral<"fs.entry.rename.request">;
|
|
4805
|
+
cwd: z.ZodString;
|
|
4806
|
+
path: z.ZodString;
|
|
4807
|
+
name: z.ZodString;
|
|
4808
|
+
requestId: z.ZodString;
|
|
4809
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4810
|
+
type: z.ZodLiteral<"fs.entry.duplicate.request">;
|
|
4811
|
+
cwd: z.ZodString;
|
|
4812
|
+
path: z.ZodString;
|
|
4813
|
+
requestId: z.ZodString;
|
|
4814
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4815
|
+
type: z.ZodLiteral<"fs.entry.delete.request">;
|
|
4816
|
+
cwd: z.ZodString;
|
|
4817
|
+
path: z.ZodString;
|
|
4818
|
+
requestId: z.ZodString;
|
|
4570
4819
|
}, z.core.$strip>, z.ZodObject<{
|
|
4571
4820
|
type: z.ZodLiteral<"project_icon_request">;
|
|
4572
4821
|
cwd: z.ZodString;
|
|
@@ -4621,6 +4870,10 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
4621
4870
|
}, z.core.$strip>, z.ZodObject<{
|
|
4622
4871
|
type: z.ZodLiteral<"register_push_token">;
|
|
4623
4872
|
token: z.ZodString;
|
|
4873
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4874
|
+
type: z.ZodLiteral<"push.unregister.request">;
|
|
4875
|
+
token: z.ZodString;
|
|
4876
|
+
requestId: z.ZodString;
|
|
4624
4877
|
}, z.core.$strip>, z.ZodObject<{
|
|
4625
4878
|
type: z.ZodLiteral<"list_terminals_request">;
|
|
4626
4879
|
cwd: z.ZodOptional<z.ZodString>;
|
|
@@ -4795,15 +5048,8 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
4795
5048
|
worktree: "worktree";
|
|
4796
5049
|
}>>;
|
|
4797
5050
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4798
|
-
|
|
4799
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
4800
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
4801
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
5051
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
4802
5052
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4803
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
4804
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
4805
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
4806
|
-
}, z.core.$strip>>;
|
|
4807
5053
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
4808
5054
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4809
5055
|
}, z.core.$strip>;
|
|
@@ -5060,6 +5306,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5060
5306
|
} | undefined, unknown>>>;
|
|
5061
5307
|
features: z.ZodOptional<z.ZodObject<{
|
|
5062
5308
|
providersSnapshot: z.ZodOptional<z.ZodBoolean>;
|
|
5309
|
+
providersSnapshotCwd: z.ZodOptional<z.ZodBoolean>;
|
|
5063
5310
|
checkoutForgeSetAutoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
5064
5311
|
checkoutGithubSetAutoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
5065
5312
|
githubCheckDetails: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5067,6 +5314,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5067
5314
|
forgeSearch: z.ZodOptional<z.ZodBoolean>;
|
|
5068
5315
|
daemonStatusRpc: z.ZodOptional<z.ZodBoolean>;
|
|
5069
5316
|
relayConfig: z.ZodOptional<z.ZodBoolean>;
|
|
5317
|
+
pushTokenRevocation: z.ZodOptional<z.ZodBoolean>;
|
|
5070
5318
|
"terminal-restore-modes": z.ZodOptional<z.ZodBoolean>;
|
|
5071
5319
|
"terminal-input-mode-replay": z.ZodOptional<z.ZodBoolean>;
|
|
5072
5320
|
"terminal-size-ownership": z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5105,6 +5353,11 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5105
5353
|
stableProjectIdentity: z.ZodOptional<z.ZodBoolean>;
|
|
5106
5354
|
workspaceScriptManagement: z.ZodOptional<z.ZodBoolean>;
|
|
5107
5355
|
projectCustomIcon: z.ZodOptional<z.ZodBoolean>;
|
|
5356
|
+
fsEntryOps: z.ZodOptional<z.ZodBoolean>;
|
|
5357
|
+
fsEntryDuplicate: z.ZodOptional<z.ZodBoolean>;
|
|
5358
|
+
checkoutDiscardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
5359
|
+
agentProfiles: z.ZodOptional<z.ZodBoolean>;
|
|
5360
|
+
agentConfigApply: z.ZodOptional<z.ZodBoolean>;
|
|
5108
5361
|
}, z.core.$strip>>;
|
|
5109
5362
|
}, z.core.$loose>, z.ZodTransform<{
|
|
5110
5363
|
hostname: string | null;
|
|
@@ -5127,6 +5380,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5127
5380
|
} | undefined;
|
|
5128
5381
|
features?: {
|
|
5129
5382
|
providersSnapshot?: boolean | undefined;
|
|
5383
|
+
providersSnapshotCwd?: boolean | undefined;
|
|
5130
5384
|
checkoutForgeSetAutoMerge?: boolean | undefined;
|
|
5131
5385
|
checkoutGithubSetAutoMerge?: boolean | undefined;
|
|
5132
5386
|
githubCheckDetails?: boolean | undefined;
|
|
@@ -5134,6 +5388,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5134
5388
|
forgeSearch?: boolean | undefined;
|
|
5135
5389
|
daemonStatusRpc?: boolean | undefined;
|
|
5136
5390
|
relayConfig?: boolean | undefined;
|
|
5391
|
+
pushTokenRevocation?: boolean | undefined;
|
|
5137
5392
|
"terminal-restore-modes"?: boolean | undefined;
|
|
5138
5393
|
"terminal-input-mode-replay"?: boolean | undefined;
|
|
5139
5394
|
"terminal-size-ownership"?: boolean | undefined;
|
|
@@ -5172,6 +5427,11 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5172
5427
|
stableProjectIdentity?: boolean | undefined;
|
|
5173
5428
|
workspaceScriptManagement?: boolean | undefined;
|
|
5174
5429
|
projectCustomIcon?: boolean | undefined;
|
|
5430
|
+
fsEntryOps?: boolean | undefined;
|
|
5431
|
+
fsEntryDuplicate?: boolean | undefined;
|
|
5432
|
+
checkoutDiscardChanges?: boolean | undefined;
|
|
5433
|
+
agentProfiles?: boolean | undefined;
|
|
5434
|
+
agentConfigApply?: boolean | undefined;
|
|
5175
5435
|
} | undefined;
|
|
5176
5436
|
}, {
|
|
5177
5437
|
[x: string]: unknown;
|
|
@@ -5195,6 +5455,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5195
5455
|
} | undefined;
|
|
5196
5456
|
features?: {
|
|
5197
5457
|
providersSnapshot?: boolean | undefined;
|
|
5458
|
+
providersSnapshotCwd?: boolean | undefined;
|
|
5198
5459
|
checkoutForgeSetAutoMerge?: boolean | undefined;
|
|
5199
5460
|
checkoutGithubSetAutoMerge?: boolean | undefined;
|
|
5200
5461
|
githubCheckDetails?: boolean | undefined;
|
|
@@ -5202,6 +5463,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5202
5463
|
forgeSearch?: boolean | undefined;
|
|
5203
5464
|
daemonStatusRpc?: boolean | undefined;
|
|
5204
5465
|
relayConfig?: boolean | undefined;
|
|
5466
|
+
pushTokenRevocation?: boolean | undefined;
|
|
5205
5467
|
"terminal-restore-modes"?: boolean | undefined;
|
|
5206
5468
|
"terminal-input-mode-replay"?: boolean | undefined;
|
|
5207
5469
|
"terminal-size-ownership"?: boolean | undefined;
|
|
@@ -5240,6 +5502,11 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5240
5502
|
stableProjectIdentity?: boolean | undefined;
|
|
5241
5503
|
workspaceScriptManagement?: boolean | undefined;
|
|
5242
5504
|
projectCustomIcon?: boolean | undefined;
|
|
5505
|
+
fsEntryOps?: boolean | undefined;
|
|
5506
|
+
fsEntryDuplicate?: boolean | undefined;
|
|
5507
|
+
checkoutDiscardChanges?: boolean | undefined;
|
|
5508
|
+
agentProfiles?: boolean | undefined;
|
|
5509
|
+
agentConfigApply?: boolean | undefined;
|
|
5243
5510
|
} | undefined;
|
|
5244
5511
|
}>>;
|
|
5245
5512
|
export declare const StatusMessageSchema: z.ZodObject<{
|
|
@@ -5470,6 +5737,18 @@ export declare const DaemonConfigChangedStatusPayloadSchema: z.ZodObject<{
|
|
|
5470
5737
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5471
5738
|
icon: z.ZodOptional<z.ZodString>;
|
|
5472
5739
|
}, z.core.$loose>>>;
|
|
5740
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5741
|
+
id: z.ZodString;
|
|
5742
|
+
name: z.ZodString;
|
|
5743
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
5744
|
+
color: z.ZodOptional<z.ZodString>;
|
|
5745
|
+
provider: z.ZodString;
|
|
5746
|
+
model: z.ZodOptional<z.ZodString>;
|
|
5747
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
5748
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
5749
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5750
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
5751
|
+
}, z.core.$loose>>>;
|
|
5473
5752
|
}, z.core.$loose>;
|
|
5474
5753
|
}, z.core.$loose>;
|
|
5475
5754
|
export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -5670,6 +5949,18 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
5670
5949
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5671
5950
|
icon: z.ZodOptional<z.ZodString>;
|
|
5672
5951
|
}, z.core.$loose>>>;
|
|
5952
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5953
|
+
id: z.ZodString;
|
|
5954
|
+
name: z.ZodString;
|
|
5955
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
5956
|
+
color: z.ZodOptional<z.ZodString>;
|
|
5957
|
+
provider: z.ZodString;
|
|
5958
|
+
model: z.ZodOptional<z.ZodString>;
|
|
5959
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
5960
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
5961
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5962
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
5963
|
+
}, z.core.$loose>>>;
|
|
5673
5964
|
}, z.core.$loose>;
|
|
5674
5965
|
}, z.core.$loose>], "status">;
|
|
5675
5966
|
export type KnownStatusPayload = z.infer<typeof KnownStatusPayloadSchema>;
|
|
@@ -6035,8 +6326,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6035
6326
|
name: z.ZodString;
|
|
6036
6327
|
status: z.ZodEnum<{
|
|
6037
6328
|
success: "success";
|
|
6038
|
-
failure: "failure";
|
|
6039
6329
|
pending: "pending";
|
|
6330
|
+
failure: "failure";
|
|
6040
6331
|
skipped: "skipped";
|
|
6041
6332
|
cancelled: "cancelled";
|
|
6042
6333
|
}>;
|
|
@@ -6046,9 +6337,9 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6046
6337
|
}, z.core.$strip>>>;
|
|
6047
6338
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
6048
6339
|
success: "success";
|
|
6340
|
+
pending: "pending";
|
|
6049
6341
|
none: "none";
|
|
6050
6342
|
failure: "failure";
|
|
6051
|
-
pending: "pending";
|
|
6052
6343
|
}>>;
|
|
6053
6344
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
6054
6345
|
pending: "pending";
|
|
@@ -6204,12 +6495,12 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6204
6495
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
6205
6496
|
checks?: {
|
|
6206
6497
|
name: string;
|
|
6207
|
-
status: "success" | "
|
|
6498
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
6208
6499
|
url: string | null;
|
|
6209
6500
|
workflow?: string | undefined;
|
|
6210
6501
|
duration?: string | undefined;
|
|
6211
6502
|
}[] | undefined;
|
|
6212
|
-
checksStatus?: "success" | "
|
|
6503
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
6213
6504
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
6214
6505
|
repoOwner?: string | undefined;
|
|
6215
6506
|
repoName?: string | undefined;
|
|
@@ -6312,12 +6603,12 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6312
6603
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
6313
6604
|
checks?: {
|
|
6314
6605
|
name: string;
|
|
6315
|
-
status: "success" | "
|
|
6606
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
6316
6607
|
url: string | null;
|
|
6317
6608
|
workflow?: string | undefined;
|
|
6318
6609
|
duration?: string | undefined;
|
|
6319
6610
|
}[] | undefined;
|
|
6320
|
-
checksStatus?: "success" | "
|
|
6611
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
6321
6612
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
6322
6613
|
repoOwner?: string | undefined;
|
|
6323
6614
|
repoName?: string | undefined;
|
|
@@ -7216,8 +7507,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
7216
7507
|
name: z.ZodString;
|
|
7217
7508
|
status: z.ZodEnum<{
|
|
7218
7509
|
success: "success";
|
|
7219
|
-
failure: "failure";
|
|
7220
7510
|
pending: "pending";
|
|
7511
|
+
failure: "failure";
|
|
7221
7512
|
skipped: "skipped";
|
|
7222
7513
|
cancelled: "cancelled";
|
|
7223
7514
|
}>;
|
|
@@ -7227,9 +7518,9 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
7227
7518
|
}, z.core.$strip>>>;
|
|
7228
7519
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
7229
7520
|
success: "success";
|
|
7521
|
+
pending: "pending";
|
|
7230
7522
|
none: "none";
|
|
7231
7523
|
failure: "failure";
|
|
7232
|
-
pending: "pending";
|
|
7233
7524
|
}>>;
|
|
7234
7525
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
7235
7526
|
pending: "pending";
|
|
@@ -7385,12 +7676,12 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
7385
7676
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
7386
7677
|
checks?: {
|
|
7387
7678
|
name: string;
|
|
7388
|
-
status: "success" | "
|
|
7679
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
7389
7680
|
url: string | null;
|
|
7390
7681
|
workflow?: string | undefined;
|
|
7391
7682
|
duration?: string | undefined;
|
|
7392
7683
|
}[] | undefined;
|
|
7393
|
-
checksStatus?: "success" | "
|
|
7684
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
7394
7685
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
7395
7686
|
repoOwner?: string | undefined;
|
|
7396
7687
|
repoName?: string | undefined;
|
|
@@ -7493,12 +7784,12 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
7493
7784
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
7494
7785
|
checks?: {
|
|
7495
7786
|
name: string;
|
|
7496
|
-
status: "success" | "
|
|
7787
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
7497
7788
|
url: string | null;
|
|
7498
7789
|
workflow?: string | undefined;
|
|
7499
7790
|
duration?: string | undefined;
|
|
7500
7791
|
}[] | undefined;
|
|
7501
|
-
checksStatus?: "success" | "
|
|
7792
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
7502
7793
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
7503
7794
|
repoOwner?: string | undefined;
|
|
7504
7795
|
repoName?: string | undefined;
|
|
@@ -7656,8 +7947,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
7656
7947
|
name: z.ZodString;
|
|
7657
7948
|
status: z.ZodEnum<{
|
|
7658
7949
|
success: "success";
|
|
7659
|
-
failure: "failure";
|
|
7660
7950
|
pending: "pending";
|
|
7951
|
+
failure: "failure";
|
|
7661
7952
|
skipped: "skipped";
|
|
7662
7953
|
cancelled: "cancelled";
|
|
7663
7954
|
}>;
|
|
@@ -7667,9 +7958,9 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
7667
7958
|
}, z.core.$strip>>>;
|
|
7668
7959
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
7669
7960
|
success: "success";
|
|
7961
|
+
pending: "pending";
|
|
7670
7962
|
none: "none";
|
|
7671
7963
|
failure: "failure";
|
|
7672
|
-
pending: "pending";
|
|
7673
7964
|
}>>;
|
|
7674
7965
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
7675
7966
|
pending: "pending";
|
|
@@ -7825,12 +8116,12 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
7825
8116
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
7826
8117
|
checks?: {
|
|
7827
8118
|
name: string;
|
|
7828
|
-
status: "success" | "
|
|
8119
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
7829
8120
|
url: string | null;
|
|
7830
8121
|
workflow?: string | undefined;
|
|
7831
8122
|
duration?: string | undefined;
|
|
7832
8123
|
}[] | undefined;
|
|
7833
|
-
checksStatus?: "success" | "
|
|
8124
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
7834
8125
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
7835
8126
|
repoOwner?: string | undefined;
|
|
7836
8127
|
repoName?: string | undefined;
|
|
@@ -7933,12 +8224,12 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
7933
8224
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
7934
8225
|
checks?: {
|
|
7935
8226
|
name: string;
|
|
7936
|
-
status: "success" | "
|
|
8227
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
7937
8228
|
url: string | null;
|
|
7938
8229
|
workflow?: string | undefined;
|
|
7939
8230
|
duration?: string | undefined;
|
|
7940
8231
|
}[] | undefined;
|
|
7941
|
-
checksStatus?: "success" | "
|
|
8232
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
7942
8233
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
7943
8234
|
repoOwner?: string | undefined;
|
|
7944
8235
|
repoName?: string | undefined;
|
|
@@ -8259,8 +8550,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
8259
8550
|
name: z.ZodString;
|
|
8260
8551
|
status: z.ZodEnum<{
|
|
8261
8552
|
success: "success";
|
|
8262
|
-
failure: "failure";
|
|
8263
8553
|
pending: "pending";
|
|
8554
|
+
failure: "failure";
|
|
8264
8555
|
skipped: "skipped";
|
|
8265
8556
|
cancelled: "cancelled";
|
|
8266
8557
|
}>;
|
|
@@ -8270,9 +8561,9 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
8270
8561
|
}, z.core.$strip>>>;
|
|
8271
8562
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
8272
8563
|
success: "success";
|
|
8564
|
+
pending: "pending";
|
|
8273
8565
|
none: "none";
|
|
8274
8566
|
failure: "failure";
|
|
8275
|
-
pending: "pending";
|
|
8276
8567
|
}>>;
|
|
8277
8568
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
8278
8569
|
pending: "pending";
|
|
@@ -8428,12 +8719,12 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
8428
8719
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
8429
8720
|
checks?: {
|
|
8430
8721
|
name: string;
|
|
8431
|
-
status: "success" | "
|
|
8722
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
8432
8723
|
url: string | null;
|
|
8433
8724
|
workflow?: string | undefined;
|
|
8434
8725
|
duration?: string | undefined;
|
|
8435
8726
|
}[] | undefined;
|
|
8436
|
-
checksStatus?: "success" | "
|
|
8727
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
8437
8728
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
8438
8729
|
repoOwner?: string | undefined;
|
|
8439
8730
|
repoName?: string | undefined;
|
|
@@ -8536,12 +8827,12 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
8536
8827
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
8537
8828
|
checks?: {
|
|
8538
8829
|
name: string;
|
|
8539
|
-
status: "success" | "
|
|
8830
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
8540
8831
|
url: string | null;
|
|
8541
8832
|
workflow?: string | undefined;
|
|
8542
8833
|
duration?: string | undefined;
|
|
8543
8834
|
}[] | undefined;
|
|
8544
|
-
checksStatus?: "success" | "
|
|
8835
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
8545
8836
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
8546
8837
|
repoOwner?: string | undefined;
|
|
8547
8838
|
repoName?: string | undefined;
|
|
@@ -9659,8 +9950,8 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
9659
9950
|
name: z.ZodString;
|
|
9660
9951
|
status: z.ZodEnum<{
|
|
9661
9952
|
success: "success";
|
|
9662
|
-
failure: "failure";
|
|
9663
9953
|
pending: "pending";
|
|
9954
|
+
failure: "failure";
|
|
9664
9955
|
skipped: "skipped";
|
|
9665
9956
|
cancelled: "cancelled";
|
|
9666
9957
|
}>;
|
|
@@ -9670,9 +9961,9 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
9670
9961
|
}, z.core.$strip>>>;
|
|
9671
9962
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
9672
9963
|
success: "success";
|
|
9964
|
+
pending: "pending";
|
|
9673
9965
|
none: "none";
|
|
9674
9966
|
failure: "failure";
|
|
9675
|
-
pending: "pending";
|
|
9676
9967
|
}>>;
|
|
9677
9968
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
9678
9969
|
pending: "pending";
|
|
@@ -9828,12 +10119,12 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
9828
10119
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
9829
10120
|
checks?: {
|
|
9830
10121
|
name: string;
|
|
9831
|
-
status: "success" | "
|
|
10122
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
9832
10123
|
url: string | null;
|
|
9833
10124
|
workflow?: string | undefined;
|
|
9834
10125
|
duration?: string | undefined;
|
|
9835
10126
|
}[] | undefined;
|
|
9836
|
-
checksStatus?: "success" | "
|
|
10127
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
9837
10128
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
9838
10129
|
repoOwner?: string | undefined;
|
|
9839
10130
|
repoName?: string | undefined;
|
|
@@ -9936,12 +10227,12 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
9936
10227
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
9937
10228
|
checks?: {
|
|
9938
10229
|
name: string;
|
|
9939
|
-
status: "success" | "
|
|
10230
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
9940
10231
|
url: string | null;
|
|
9941
10232
|
workflow?: string | undefined;
|
|
9942
10233
|
duration?: string | undefined;
|
|
9943
10234
|
}[] | undefined;
|
|
9944
|
-
checksStatus?: "success" | "
|
|
10235
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
9945
10236
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
9946
10237
|
repoOwner?: string | undefined;
|
|
9947
10238
|
repoName?: string | undefined;
|
|
@@ -10135,6 +10426,18 @@ export declare const GetDaemonConfigResponseMessageSchema: z.ZodObject<{
|
|
|
10135
10426
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10136
10427
|
icon: z.ZodOptional<z.ZodString>;
|
|
10137
10428
|
}, z.core.$loose>>>;
|
|
10429
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10430
|
+
id: z.ZodString;
|
|
10431
|
+
name: z.ZodString;
|
|
10432
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
10433
|
+
color: z.ZodOptional<z.ZodString>;
|
|
10434
|
+
provider: z.ZodString;
|
|
10435
|
+
model: z.ZodOptional<z.ZodString>;
|
|
10436
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
10437
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
10438
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10439
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
10440
|
+
}, z.core.$loose>>>;
|
|
10138
10441
|
}, z.core.$loose>;
|
|
10139
10442
|
}, z.core.$loose>;
|
|
10140
10443
|
}, z.core.$strip>;
|
|
@@ -10297,6 +10600,18 @@ export declare const SetDaemonConfigResponseMessageSchema: z.ZodObject<{
|
|
|
10297
10600
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10298
10601
|
icon: z.ZodOptional<z.ZodString>;
|
|
10299
10602
|
}, z.core.$loose>>>;
|
|
10603
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10604
|
+
id: z.ZodString;
|
|
10605
|
+
name: z.ZodString;
|
|
10606
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
10607
|
+
color: z.ZodOptional<z.ZodString>;
|
|
10608
|
+
provider: z.ZodString;
|
|
10609
|
+
model: z.ZodOptional<z.ZodString>;
|
|
10610
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
10611
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
10612
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10613
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
10614
|
+
}, z.core.$loose>>>;
|
|
10300
10615
|
}, z.core.$loose>;
|
|
10301
10616
|
}, z.core.$loose>;
|
|
10302
10617
|
}, z.core.$strip>;
|
|
@@ -10760,6 +11075,7 @@ export declare const SubscribeCheckoutDiffResponseSchema: z.ZodObject<{
|
|
|
10760
11075
|
cwd: z.ZodString;
|
|
10761
11076
|
files: z.ZodArray<z.ZodObject<{
|
|
10762
11077
|
path: z.ZodString;
|
|
11078
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
10763
11079
|
isNew: z.ZodBoolean;
|
|
10764
11080
|
isDeleted: z.ZodBoolean;
|
|
10765
11081
|
additions: z.ZodNumber;
|
|
@@ -10809,6 +11125,7 @@ export declare const CheckoutDiffUpdateSchema: z.ZodObject<{
|
|
|
10809
11125
|
cwd: z.ZodString;
|
|
10810
11126
|
files: z.ZodArray<z.ZodObject<{
|
|
10811
11127
|
path: z.ZodString;
|
|
11128
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
10812
11129
|
isNew: z.ZodBoolean;
|
|
10813
11130
|
isDeleted: z.ZodBoolean;
|
|
10814
11131
|
additions: z.ZodNumber;
|
|
@@ -11023,6 +11340,23 @@ export declare const CheckoutGithubSetAutoMergeResponseSchema: z.ZodObject<{
|
|
|
11023
11340
|
requestId: z.ZodString;
|
|
11024
11341
|
}, z.core.$strip>;
|
|
11025
11342
|
}, z.core.$strip>;
|
|
11343
|
+
export declare const CheckoutDiscardChangesResponseSchema: z.ZodObject<{
|
|
11344
|
+
type: z.ZodLiteral<"checkout.discard_changes.response">;
|
|
11345
|
+
payload: z.ZodObject<{
|
|
11346
|
+
cwd: z.ZodString;
|
|
11347
|
+
success: z.ZodBoolean;
|
|
11348
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
11349
|
+
code: z.ZodEnum<{
|
|
11350
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
11351
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
11352
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
11353
|
+
UNKNOWN: "UNKNOWN";
|
|
11354
|
+
}>;
|
|
11355
|
+
message: z.ZodString;
|
|
11356
|
+
}, z.core.$strip>>;
|
|
11357
|
+
requestId: z.ZodString;
|
|
11358
|
+
}, z.core.$strip>;
|
|
11359
|
+
}, z.core.$strip>;
|
|
11026
11360
|
export declare const CheckoutCommitsListResponseSchema: z.ZodObject<{
|
|
11027
11361
|
type: z.ZodLiteral<"checkout.commits.list.response">;
|
|
11028
11362
|
payload: z.ZodObject<{
|
|
@@ -11068,6 +11402,7 @@ export declare const CheckoutCommitFileDiffResponseSchema: z.ZodObject<{
|
|
|
11068
11402
|
path: z.ZodString;
|
|
11069
11403
|
file: z.ZodNullable<z.ZodObject<{
|
|
11070
11404
|
path: z.ZodString;
|
|
11405
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
11071
11406
|
isNew: z.ZodBoolean;
|
|
11072
11407
|
isDeleted: z.ZodBoolean;
|
|
11073
11408
|
additions: z.ZodNumber;
|
|
@@ -11866,8 +12201,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
11866
12201
|
name: z.ZodString;
|
|
11867
12202
|
status: z.ZodEnum<{
|
|
11868
12203
|
success: "success";
|
|
11869
|
-
failure: "failure";
|
|
11870
12204
|
pending: "pending";
|
|
12205
|
+
failure: "failure";
|
|
11871
12206
|
skipped: "skipped";
|
|
11872
12207
|
cancelled: "cancelled";
|
|
11873
12208
|
}>;
|
|
@@ -11877,9 +12212,9 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
11877
12212
|
}, z.core.$strip>>>;
|
|
11878
12213
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
11879
12214
|
success: "success";
|
|
12215
|
+
pending: "pending";
|
|
11880
12216
|
none: "none";
|
|
11881
12217
|
failure: "failure";
|
|
11882
|
-
pending: "pending";
|
|
11883
12218
|
}>>;
|
|
11884
12219
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
11885
12220
|
pending: "pending";
|
|
@@ -12035,12 +12370,12 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
12035
12370
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
12036
12371
|
checks?: {
|
|
12037
12372
|
name: string;
|
|
12038
|
-
status: "success" | "
|
|
12373
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
12039
12374
|
url: string | null;
|
|
12040
12375
|
workflow?: string | undefined;
|
|
12041
12376
|
duration?: string | undefined;
|
|
12042
12377
|
}[] | undefined;
|
|
12043
|
-
checksStatus?: "success" | "
|
|
12378
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
12044
12379
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
12045
12380
|
repoOwner?: string | undefined;
|
|
12046
12381
|
repoName?: string | undefined;
|
|
@@ -12143,12 +12478,12 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
12143
12478
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
12144
12479
|
checks?: {
|
|
12145
12480
|
name: string;
|
|
12146
|
-
status: "success" | "
|
|
12481
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
12147
12482
|
url: string | null;
|
|
12148
12483
|
workflow?: string | undefined;
|
|
12149
12484
|
duration?: string | undefined;
|
|
12150
12485
|
}[] | undefined;
|
|
12151
|
-
checksStatus?: "success" | "
|
|
12486
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
12152
12487
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
12153
12488
|
repoOwner?: string | undefined;
|
|
12154
12489
|
repoName?: string | undefined;
|
|
@@ -12334,6 +12669,49 @@ export declare const FileWriteResponseSchema: z.ZodObject<{
|
|
|
12334
12669
|
requestId: z.ZodString;
|
|
12335
12670
|
}, z.core.$strip>;
|
|
12336
12671
|
}, z.core.$strip>;
|
|
12672
|
+
export declare const FileEntryCreateResponseSchema: z.ZodObject<{
|
|
12673
|
+
type: z.ZodLiteral<"fs.entry.create.response">;
|
|
12674
|
+
payload: z.ZodObject<{
|
|
12675
|
+
cwd: z.ZodString;
|
|
12676
|
+
parentPath: z.ZodString;
|
|
12677
|
+
path: z.ZodNullable<z.ZodString>;
|
|
12678
|
+
success: z.ZodBoolean;
|
|
12679
|
+
error: z.ZodNullable<z.ZodString>;
|
|
12680
|
+
requestId: z.ZodString;
|
|
12681
|
+
}, z.core.$strip>;
|
|
12682
|
+
}, z.core.$strip>;
|
|
12683
|
+
export declare const FileEntryRenameResponseSchema: z.ZodObject<{
|
|
12684
|
+
type: z.ZodLiteral<"fs.entry.rename.response">;
|
|
12685
|
+
payload: z.ZodObject<{
|
|
12686
|
+
cwd: z.ZodString;
|
|
12687
|
+
path: z.ZodString;
|
|
12688
|
+
renamedPath: z.ZodNullable<z.ZodString>;
|
|
12689
|
+
success: z.ZodBoolean;
|
|
12690
|
+
error: z.ZodNullable<z.ZodString>;
|
|
12691
|
+
requestId: z.ZodString;
|
|
12692
|
+
}, z.core.$strip>;
|
|
12693
|
+
}, z.core.$strip>;
|
|
12694
|
+
export declare const FileEntryDuplicateResponseSchema: z.ZodObject<{
|
|
12695
|
+
type: z.ZodLiteral<"fs.entry.duplicate.response">;
|
|
12696
|
+
payload: z.ZodObject<{
|
|
12697
|
+
cwd: z.ZodString;
|
|
12698
|
+
path: z.ZodString;
|
|
12699
|
+
duplicatedPath: z.ZodNullable<z.ZodString>;
|
|
12700
|
+
success: z.ZodBoolean;
|
|
12701
|
+
error: z.ZodNullable<z.ZodString>;
|
|
12702
|
+
requestId: z.ZodString;
|
|
12703
|
+
}, z.core.$strip>;
|
|
12704
|
+
}, z.core.$strip>;
|
|
12705
|
+
export declare const FileEntryDeleteResponseSchema: z.ZodObject<{
|
|
12706
|
+
type: z.ZodLiteral<"fs.entry.delete.response">;
|
|
12707
|
+
payload: z.ZodObject<{
|
|
12708
|
+
cwd: z.ZodString;
|
|
12709
|
+
path: z.ZodString;
|
|
12710
|
+
success: z.ZodBoolean;
|
|
12711
|
+
error: z.ZodNullable<z.ZodString>;
|
|
12712
|
+
requestId: z.ZodString;
|
|
12713
|
+
}, z.core.$strip>;
|
|
12714
|
+
}, z.core.$strip>;
|
|
12337
12715
|
export declare const FileUpdateSchema: z.ZodObject<{
|
|
12338
12716
|
type: z.ZodLiteral<"fs.file.update">;
|
|
12339
12717
|
payload: z.ZodObject<{
|
|
@@ -12500,6 +12878,7 @@ export declare const ListAvailableProvidersResponseSchema: z.ZodObject<{
|
|
|
12500
12878
|
export declare const GetProvidersSnapshotResponseMessageSchema: z.ZodObject<{
|
|
12501
12879
|
type: z.ZodLiteral<"get_providers_snapshot_response">;
|
|
12502
12880
|
payload: z.ZodObject<{
|
|
12881
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
12503
12882
|
entries: z.ZodArray<z.ZodObject<{
|
|
12504
12883
|
provider: z.ZodString;
|
|
12505
12884
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
@@ -13180,6 +13559,39 @@ export declare const HubExecutionAgentCreateResponseSchema: z.ZodObject<{
|
|
|
13180
13559
|
providerUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
13181
13560
|
}, z.core.$strip>>;
|
|
13182
13561
|
success: z.ZodBoolean;
|
|
13562
|
+
toolPolicyApplied: z.ZodOptional<z.ZodLiteral<true>>;
|
|
13563
|
+
error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13564
|
+
code: z.ZodLiteral<"provider_options_invalid">;
|
|
13565
|
+
provider: z.ZodString;
|
|
13566
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
13567
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
13568
|
+
message: z.ZodString;
|
|
13569
|
+
}, z.core.$strip>>;
|
|
13570
|
+
message: z.ZodString;
|
|
13571
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13572
|
+
code: z.ZodLiteral<"tool_policy_unsupported">;
|
|
13573
|
+
provider: z.ZodString;
|
|
13574
|
+
message: z.ZodString;
|
|
13575
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13576
|
+
code: z.ZodLiteral<"create_failed">;
|
|
13577
|
+
message: z.ZodString;
|
|
13578
|
+
}, z.core.$strip>], "code">>;
|
|
13579
|
+
}, z.core.$strip>;
|
|
13580
|
+
}, z.core.$strip>;
|
|
13581
|
+
export declare const HubExecutionAgentValidationIssueSchema: z.ZodObject<{
|
|
13582
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
13583
|
+
message: z.ZodString;
|
|
13584
|
+
}, z.core.$strip>;
|
|
13585
|
+
export type HubExecutionAgentValidationIssue = z.infer<typeof HubExecutionAgentValidationIssueSchema>;
|
|
13586
|
+
export declare const HubExecutionAgentValidateResponseSchema: z.ZodObject<{
|
|
13587
|
+
type: z.ZodLiteral<"hub.execution.agent.validate.response">;
|
|
13588
|
+
payload: z.ZodObject<{
|
|
13589
|
+
requestId: z.ZodString;
|
|
13590
|
+
valid: z.ZodBoolean;
|
|
13591
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
13592
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
13593
|
+
message: z.ZodString;
|
|
13594
|
+
}, z.core.$strip>>;
|
|
13183
13595
|
error: z.ZodNullable<z.ZodString>;
|
|
13184
13596
|
}, z.core.$strip>;
|
|
13185
13597
|
}, z.core.$strip>;
|
|
@@ -13340,6 +13752,7 @@ export declare const HubExecutionAgentStreamSchema: z.ZodObject<{
|
|
|
13340
13752
|
}, z.core.$strip>;
|
|
13341
13753
|
}, z.core.$strip>;
|
|
13342
13754
|
export type HubExecutionAgentCreateResponse = z.infer<typeof HubExecutionAgentCreateResponseSchema>;
|
|
13755
|
+
export type HubExecutionAgentValidateResponse = z.infer<typeof HubExecutionAgentValidateResponseSchema>;
|
|
13343
13756
|
export type HubExecutionControlResponse = z.infer<typeof HubExecutionControlResponseSchema>;
|
|
13344
13757
|
export type HubExecutionAgentUpdate = z.infer<typeof HubExecutionAgentUpdateSchema>;
|
|
13345
13758
|
export type HubExecutionAgentStream = z.infer<typeof HubExecutionAgentStreamSchema>;
|
|
@@ -13416,6 +13829,33 @@ export declare const HubExecutionOutboundMessageSchema: z.ZodDiscriminatedUnion<
|
|
|
13416
13829
|
providerUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
13417
13830
|
}, z.core.$strip>>;
|
|
13418
13831
|
success: z.ZodBoolean;
|
|
13832
|
+
toolPolicyApplied: z.ZodOptional<z.ZodLiteral<true>>;
|
|
13833
|
+
error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13834
|
+
code: z.ZodLiteral<"provider_options_invalid">;
|
|
13835
|
+
provider: z.ZodString;
|
|
13836
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
13837
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
13838
|
+
message: z.ZodString;
|
|
13839
|
+
}, z.core.$strip>>;
|
|
13840
|
+
message: z.ZodString;
|
|
13841
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13842
|
+
code: z.ZodLiteral<"tool_policy_unsupported">;
|
|
13843
|
+
provider: z.ZodString;
|
|
13844
|
+
message: z.ZodString;
|
|
13845
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13846
|
+
code: z.ZodLiteral<"create_failed">;
|
|
13847
|
+
message: z.ZodString;
|
|
13848
|
+
}, z.core.$strip>], "code">>;
|
|
13849
|
+
}, z.core.$strip>;
|
|
13850
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13851
|
+
type: z.ZodLiteral<"hub.execution.agent.validate.response">;
|
|
13852
|
+
payload: z.ZodObject<{
|
|
13853
|
+
requestId: z.ZodString;
|
|
13854
|
+
valid: z.ZodBoolean;
|
|
13855
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
13856
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
13857
|
+
message: z.ZodString;
|
|
13858
|
+
}, z.core.$strip>>;
|
|
13419
13859
|
error: z.ZodNullable<z.ZodString>;
|
|
13420
13860
|
}, z.core.$strip>;
|
|
13421
13861
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -13651,6 +14091,33 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13651
14091
|
providerUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
13652
14092
|
}, z.core.$strip>>;
|
|
13653
14093
|
success: z.ZodBoolean;
|
|
14094
|
+
toolPolicyApplied: z.ZodOptional<z.ZodLiteral<true>>;
|
|
14095
|
+
error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
14096
|
+
code: z.ZodLiteral<"provider_options_invalid">;
|
|
14097
|
+
provider: z.ZodString;
|
|
14098
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
14099
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
14100
|
+
message: z.ZodString;
|
|
14101
|
+
}, z.core.$strip>>;
|
|
14102
|
+
message: z.ZodString;
|
|
14103
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
14104
|
+
code: z.ZodLiteral<"tool_policy_unsupported">;
|
|
14105
|
+
provider: z.ZodString;
|
|
14106
|
+
message: z.ZodString;
|
|
14107
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
14108
|
+
code: z.ZodLiteral<"create_failed">;
|
|
14109
|
+
message: z.ZodString;
|
|
14110
|
+
}, z.core.$strip>], "code">>;
|
|
14111
|
+
}, z.core.$strip>;
|
|
14112
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
14113
|
+
type: z.ZodLiteral<"hub.execution.agent.validate.response">;
|
|
14114
|
+
payload: z.ZodObject<{
|
|
14115
|
+
requestId: z.ZodString;
|
|
14116
|
+
valid: z.ZodBoolean;
|
|
14117
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
14118
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
14119
|
+
message: z.ZodString;
|
|
14120
|
+
}, z.core.$strip>>;
|
|
13654
14121
|
error: z.ZodNullable<z.ZodString>;
|
|
13655
14122
|
}, z.core.$strip>;
|
|
13656
14123
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -14058,6 +14525,11 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14058
14525
|
serverReceivedAt: z.ZodNumber;
|
|
14059
14526
|
serverSentAt: z.ZodNumber;
|
|
14060
14527
|
}, z.core.$strip>;
|
|
14528
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
14529
|
+
type: z.ZodLiteral<"push.unregister.response">;
|
|
14530
|
+
payload: z.ZodObject<{
|
|
14531
|
+
requestId: z.ZodString;
|
|
14532
|
+
}, z.core.$strip>;
|
|
14061
14533
|
}, z.core.$strip>, z.ZodObject<{
|
|
14062
14534
|
type: z.ZodLiteral<"rpc_error">;
|
|
14063
14535
|
payload: z.ZodObject<{
|
|
@@ -14327,8 +14799,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14327
14799
|
name: z.ZodString;
|
|
14328
14800
|
status: z.ZodEnum<{
|
|
14329
14801
|
success: "success";
|
|
14330
|
-
failure: "failure";
|
|
14331
14802
|
pending: "pending";
|
|
14803
|
+
failure: "failure";
|
|
14332
14804
|
skipped: "skipped";
|
|
14333
14805
|
cancelled: "cancelled";
|
|
14334
14806
|
}>;
|
|
@@ -14338,9 +14810,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14338
14810
|
}, z.core.$strip>>>;
|
|
14339
14811
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
14340
14812
|
success: "success";
|
|
14813
|
+
pending: "pending";
|
|
14341
14814
|
none: "none";
|
|
14342
14815
|
failure: "failure";
|
|
14343
|
-
pending: "pending";
|
|
14344
14816
|
}>>;
|
|
14345
14817
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
14346
14818
|
pending: "pending";
|
|
@@ -14496,12 +14968,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14496
14968
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
14497
14969
|
checks?: {
|
|
14498
14970
|
name: string;
|
|
14499
|
-
status: "success" | "
|
|
14971
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
14500
14972
|
url: string | null;
|
|
14501
14973
|
workflow?: string | undefined;
|
|
14502
14974
|
duration?: string | undefined;
|
|
14503
14975
|
}[] | undefined;
|
|
14504
|
-
checksStatus?: "success" | "
|
|
14976
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
14505
14977
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
14506
14978
|
repoOwner?: string | undefined;
|
|
14507
14979
|
repoName?: string | undefined;
|
|
@@ -14604,12 +15076,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14604
15076
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
14605
15077
|
checks?: {
|
|
14606
15078
|
name: string;
|
|
14607
|
-
status: "success" | "
|
|
15079
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
14608
15080
|
url: string | null;
|
|
14609
15081
|
workflow?: string | undefined;
|
|
14610
15082
|
duration?: string | undefined;
|
|
14611
15083
|
}[] | undefined;
|
|
14612
|
-
checksStatus?: "success" | "
|
|
15084
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
14613
15085
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
14614
15086
|
repoOwner?: string | undefined;
|
|
14615
15087
|
repoName?: string | undefined;
|
|
@@ -15396,8 +15868,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15396
15868
|
name: z.ZodString;
|
|
15397
15869
|
status: z.ZodEnum<{
|
|
15398
15870
|
success: "success";
|
|
15399
|
-
failure: "failure";
|
|
15400
15871
|
pending: "pending";
|
|
15872
|
+
failure: "failure";
|
|
15401
15873
|
skipped: "skipped";
|
|
15402
15874
|
cancelled: "cancelled";
|
|
15403
15875
|
}>;
|
|
@@ -15407,9 +15879,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15407
15879
|
}, z.core.$strip>>>;
|
|
15408
15880
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
15409
15881
|
success: "success";
|
|
15882
|
+
pending: "pending";
|
|
15410
15883
|
none: "none";
|
|
15411
15884
|
failure: "failure";
|
|
15412
|
-
pending: "pending";
|
|
15413
15885
|
}>>;
|
|
15414
15886
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
15415
15887
|
pending: "pending";
|
|
@@ -15565,12 +16037,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15565
16037
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
15566
16038
|
checks?: {
|
|
15567
16039
|
name: string;
|
|
15568
|
-
status: "success" | "
|
|
16040
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
15569
16041
|
url: string | null;
|
|
15570
16042
|
workflow?: string | undefined;
|
|
15571
16043
|
duration?: string | undefined;
|
|
15572
16044
|
}[] | undefined;
|
|
15573
|
-
checksStatus?: "success" | "
|
|
16045
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
15574
16046
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
15575
16047
|
repoOwner?: string | undefined;
|
|
15576
16048
|
repoName?: string | undefined;
|
|
@@ -15673,12 +16145,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15673
16145
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
15674
16146
|
checks?: {
|
|
15675
16147
|
name: string;
|
|
15676
|
-
status: "success" | "
|
|
16148
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
15677
16149
|
url: string | null;
|
|
15678
16150
|
workflow?: string | undefined;
|
|
15679
16151
|
duration?: string | undefined;
|
|
15680
16152
|
}[] | undefined;
|
|
15681
|
-
checksStatus?: "success" | "
|
|
16153
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
15682
16154
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
15683
16155
|
repoOwner?: string | undefined;
|
|
15684
16156
|
repoName?: string | undefined;
|
|
@@ -15878,8 +16350,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15878
16350
|
name: z.ZodString;
|
|
15879
16351
|
status: z.ZodEnum<{
|
|
15880
16352
|
success: "success";
|
|
15881
|
-
failure: "failure";
|
|
15882
16353
|
pending: "pending";
|
|
16354
|
+
failure: "failure";
|
|
15883
16355
|
skipped: "skipped";
|
|
15884
16356
|
cancelled: "cancelled";
|
|
15885
16357
|
}>;
|
|
@@ -15889,9 +16361,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15889
16361
|
}, z.core.$strip>>>;
|
|
15890
16362
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
15891
16363
|
success: "success";
|
|
16364
|
+
pending: "pending";
|
|
15892
16365
|
none: "none";
|
|
15893
16366
|
failure: "failure";
|
|
15894
|
-
pending: "pending";
|
|
15895
16367
|
}>>;
|
|
15896
16368
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
15897
16369
|
pending: "pending";
|
|
@@ -16047,12 +16519,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
16047
16519
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
16048
16520
|
checks?: {
|
|
16049
16521
|
name: string;
|
|
16050
|
-
status: "success" | "
|
|
16522
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
16051
16523
|
url: string | null;
|
|
16052
16524
|
workflow?: string | undefined;
|
|
16053
16525
|
duration?: string | undefined;
|
|
16054
16526
|
}[] | undefined;
|
|
16055
|
-
checksStatus?: "success" | "
|
|
16527
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
16056
16528
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
16057
16529
|
repoOwner?: string | undefined;
|
|
16058
16530
|
repoName?: string | undefined;
|
|
@@ -16155,12 +16627,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
16155
16627
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
16156
16628
|
checks?: {
|
|
16157
16629
|
name: string;
|
|
16158
|
-
status: "success" | "
|
|
16630
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
16159
16631
|
url: string | null;
|
|
16160
16632
|
workflow?: string | undefined;
|
|
16161
16633
|
duration?: string | undefined;
|
|
16162
16634
|
}[] | undefined;
|
|
16163
|
-
checksStatus?: "success" | "
|
|
16635
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
16164
16636
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
16165
16637
|
repoOwner?: string | undefined;
|
|
16166
16638
|
repoName?: string | undefined;
|
|
@@ -17169,8 +17641,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17169
17641
|
name: z.ZodString;
|
|
17170
17642
|
status: z.ZodEnum<{
|
|
17171
17643
|
success: "success";
|
|
17172
|
-
failure: "failure";
|
|
17173
17644
|
pending: "pending";
|
|
17645
|
+
failure: "failure";
|
|
17174
17646
|
skipped: "skipped";
|
|
17175
17647
|
cancelled: "cancelled";
|
|
17176
17648
|
}>;
|
|
@@ -17180,9 +17652,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17180
17652
|
}, z.core.$strip>>>;
|
|
17181
17653
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
17182
17654
|
success: "success";
|
|
17655
|
+
pending: "pending";
|
|
17183
17656
|
none: "none";
|
|
17184
17657
|
failure: "failure";
|
|
17185
|
-
pending: "pending";
|
|
17186
17658
|
}>>;
|
|
17187
17659
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
17188
17660
|
pending: "pending";
|
|
@@ -17338,12 +17810,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17338
17810
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
17339
17811
|
checks?: {
|
|
17340
17812
|
name: string;
|
|
17341
|
-
status: "success" | "
|
|
17813
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
17342
17814
|
url: string | null;
|
|
17343
17815
|
workflow?: string | undefined;
|
|
17344
17816
|
duration?: string | undefined;
|
|
17345
17817
|
}[] | undefined;
|
|
17346
|
-
checksStatus?: "success" | "
|
|
17818
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
17347
17819
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
17348
17820
|
repoOwner?: string | undefined;
|
|
17349
17821
|
repoName?: string | undefined;
|
|
@@ -17446,12 +17918,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17446
17918
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
17447
17919
|
checks?: {
|
|
17448
17920
|
name: string;
|
|
17449
|
-
status: "success" | "
|
|
17921
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
17450
17922
|
url: string | null;
|
|
17451
17923
|
workflow?: string | undefined;
|
|
17452
17924
|
duration?: string | undefined;
|
|
17453
17925
|
}[] | undefined;
|
|
17454
|
-
checksStatus?: "success" | "
|
|
17926
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
17455
17927
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
17456
17928
|
repoOwner?: string | undefined;
|
|
17457
17929
|
repoName?: string | undefined;
|
|
@@ -17672,6 +18144,18 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17672
18144
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
17673
18145
|
icon: z.ZodOptional<z.ZodString>;
|
|
17674
18146
|
}, z.core.$loose>>>;
|
|
18147
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18148
|
+
id: z.ZodString;
|
|
18149
|
+
name: z.ZodString;
|
|
18150
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
18151
|
+
color: z.ZodOptional<z.ZodString>;
|
|
18152
|
+
provider: z.ZodString;
|
|
18153
|
+
model: z.ZodOptional<z.ZodString>;
|
|
18154
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
18155
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
18156
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18157
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
18158
|
+
}, z.core.$loose>>>;
|
|
17675
18159
|
}, z.core.$loose>;
|
|
17676
18160
|
}, z.core.$loose>;
|
|
17677
18161
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -17714,6 +18198,18 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17714
18198
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
17715
18199
|
icon: z.ZodOptional<z.ZodString>;
|
|
17716
18200
|
}, z.core.$loose>>>;
|
|
18201
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18202
|
+
id: z.ZodString;
|
|
18203
|
+
name: z.ZodString;
|
|
18204
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
18205
|
+
color: z.ZodOptional<z.ZodString>;
|
|
18206
|
+
provider: z.ZodString;
|
|
18207
|
+
model: z.ZodOptional<z.ZodString>;
|
|
18208
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
18209
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
18210
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18211
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
18212
|
+
}, z.core.$loose>>>;
|
|
17717
18213
|
}, z.core.$loose>;
|
|
17718
18214
|
}, z.core.$loose>;
|
|
17719
18215
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -17868,6 +18364,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17868
18364
|
error: z.ZodNullable<z.ZodString>;
|
|
17869
18365
|
notice: z.ZodOptional<z.ZodNullable<z.ZodType<AgentProviderNotice, unknown, z.core.$ZodTypeInternals<AgentProviderNotice, unknown>>>>;
|
|
17870
18366
|
}, z.core.$strip>;
|
|
18367
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18368
|
+
type: z.ZodLiteral<"agent.config.apply.response">;
|
|
18369
|
+
payload: z.ZodObject<{
|
|
18370
|
+
requestId: z.ZodString;
|
|
18371
|
+
agentId: z.ZodString;
|
|
18372
|
+
accepted: z.ZodBoolean;
|
|
18373
|
+
error: z.ZodNullable<z.ZodString>;
|
|
18374
|
+
notice: z.ZodOptional<z.ZodNullable<z.ZodType<AgentProviderNotice, unknown, z.core.$ZodTypeInternals<AgentProviderNotice, unknown>>>>;
|
|
18375
|
+
}, z.core.$strip>;
|
|
17871
18376
|
}, z.core.$strip>, z.ZodObject<{
|
|
17872
18377
|
type: z.ZodLiteral<"agent.detach.response">;
|
|
17873
18378
|
payload: z.ZodObject<{
|
|
@@ -18323,6 +18828,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
18323
18828
|
cwd: z.ZodString;
|
|
18324
18829
|
files: z.ZodArray<z.ZodObject<{
|
|
18325
18830
|
path: z.ZodString;
|
|
18831
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
18326
18832
|
isNew: z.ZodBoolean;
|
|
18327
18833
|
isDeleted: z.ZodBoolean;
|
|
18328
18834
|
additions: z.ZodNumber;
|
|
@@ -18371,6 +18877,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
18371
18877
|
cwd: z.ZodString;
|
|
18372
18878
|
files: z.ZodArray<z.ZodObject<{
|
|
18373
18879
|
path: z.ZodString;
|
|
18880
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
18374
18881
|
isNew: z.ZodBoolean;
|
|
18375
18882
|
isDeleted: z.ZodBoolean;
|
|
18376
18883
|
additions: z.ZodNumber;
|
|
@@ -18507,6 +19014,22 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
18507
19014
|
}, z.core.$strip>>;
|
|
18508
19015
|
requestId: z.ZodString;
|
|
18509
19016
|
}, z.core.$strip>;
|
|
19017
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19018
|
+
type: z.ZodLiteral<"checkout.discard_changes.response">;
|
|
19019
|
+
payload: z.ZodObject<{
|
|
19020
|
+
cwd: z.ZodString;
|
|
19021
|
+
success: z.ZodBoolean;
|
|
19022
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
19023
|
+
code: z.ZodEnum<{
|
|
19024
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
19025
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
19026
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
19027
|
+
UNKNOWN: "UNKNOWN";
|
|
19028
|
+
}>;
|
|
19029
|
+
message: z.ZodString;
|
|
19030
|
+
}, z.core.$strip>>;
|
|
19031
|
+
requestId: z.ZodString;
|
|
19032
|
+
}, z.core.$strip>;
|
|
18510
19033
|
}, z.core.$strip>, z.ZodObject<{
|
|
18511
19034
|
type: z.ZodLiteral<"checkout_pr_create_response">;
|
|
18512
19035
|
payload: z.ZodObject<{
|
|
@@ -18618,6 +19141,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
18618
19141
|
path: z.ZodString;
|
|
18619
19142
|
file: z.ZodNullable<z.ZodObject<{
|
|
18620
19143
|
path: z.ZodString;
|
|
19144
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
18621
19145
|
isNew: z.ZodBoolean;
|
|
18622
19146
|
isDeleted: z.ZodBoolean;
|
|
18623
19147
|
additions: z.ZodNumber;
|
|
@@ -19202,8 +19726,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19202
19726
|
name: z.ZodString;
|
|
19203
19727
|
status: z.ZodEnum<{
|
|
19204
19728
|
success: "success";
|
|
19205
|
-
failure: "failure";
|
|
19206
19729
|
pending: "pending";
|
|
19730
|
+
failure: "failure";
|
|
19207
19731
|
skipped: "skipped";
|
|
19208
19732
|
cancelled: "cancelled";
|
|
19209
19733
|
}>;
|
|
@@ -19213,9 +19737,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19213
19737
|
}, z.core.$strip>>>;
|
|
19214
19738
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
19215
19739
|
success: "success";
|
|
19740
|
+
pending: "pending";
|
|
19216
19741
|
none: "none";
|
|
19217
19742
|
failure: "failure";
|
|
19218
|
-
pending: "pending";
|
|
19219
19743
|
}>>;
|
|
19220
19744
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
19221
19745
|
pending: "pending";
|
|
@@ -19371,12 +19895,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19371
19895
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
19372
19896
|
checks?: {
|
|
19373
19897
|
name: string;
|
|
19374
|
-
status: "success" | "
|
|
19898
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
19375
19899
|
url: string | null;
|
|
19376
19900
|
workflow?: string | undefined;
|
|
19377
19901
|
duration?: string | undefined;
|
|
19378
19902
|
}[] | undefined;
|
|
19379
|
-
checksStatus?: "success" | "
|
|
19903
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
19380
19904
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
19381
19905
|
repoOwner?: string | undefined;
|
|
19382
19906
|
repoName?: string | undefined;
|
|
@@ -19479,12 +20003,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19479
20003
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
19480
20004
|
checks?: {
|
|
19481
20005
|
name: string;
|
|
19482
|
-
status: "success" | "
|
|
20006
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
19483
20007
|
url: string | null;
|
|
19484
20008
|
workflow?: string | undefined;
|
|
19485
20009
|
duration?: string | undefined;
|
|
19486
20010
|
}[] | undefined;
|
|
19487
|
-
checksStatus?: "success" | "
|
|
20011
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
19488
20012
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
19489
20013
|
repoOwner?: string | undefined;
|
|
19490
20014
|
repoName?: string | undefined;
|
|
@@ -19637,6 +20161,45 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19637
20161
|
}, z.core.$strip>], "status">;
|
|
19638
20162
|
requestId: z.ZodString;
|
|
19639
20163
|
}, z.core.$strip>;
|
|
20164
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20165
|
+
type: z.ZodLiteral<"fs.entry.create.response">;
|
|
20166
|
+
payload: z.ZodObject<{
|
|
20167
|
+
cwd: z.ZodString;
|
|
20168
|
+
parentPath: z.ZodString;
|
|
20169
|
+
path: z.ZodNullable<z.ZodString>;
|
|
20170
|
+
success: z.ZodBoolean;
|
|
20171
|
+
error: z.ZodNullable<z.ZodString>;
|
|
20172
|
+
requestId: z.ZodString;
|
|
20173
|
+
}, z.core.$strip>;
|
|
20174
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20175
|
+
type: z.ZodLiteral<"fs.entry.rename.response">;
|
|
20176
|
+
payload: z.ZodObject<{
|
|
20177
|
+
cwd: z.ZodString;
|
|
20178
|
+
path: z.ZodString;
|
|
20179
|
+
renamedPath: z.ZodNullable<z.ZodString>;
|
|
20180
|
+
success: z.ZodBoolean;
|
|
20181
|
+
error: z.ZodNullable<z.ZodString>;
|
|
20182
|
+
requestId: z.ZodString;
|
|
20183
|
+
}, z.core.$strip>;
|
|
20184
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20185
|
+
type: z.ZodLiteral<"fs.entry.duplicate.response">;
|
|
20186
|
+
payload: z.ZodObject<{
|
|
20187
|
+
cwd: z.ZodString;
|
|
20188
|
+
path: z.ZodString;
|
|
20189
|
+
duplicatedPath: z.ZodNullable<z.ZodString>;
|
|
20190
|
+
success: z.ZodBoolean;
|
|
20191
|
+
error: z.ZodNullable<z.ZodString>;
|
|
20192
|
+
requestId: z.ZodString;
|
|
20193
|
+
}, z.core.$strip>;
|
|
20194
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20195
|
+
type: z.ZodLiteral<"fs.entry.delete.response">;
|
|
20196
|
+
payload: z.ZodObject<{
|
|
20197
|
+
cwd: z.ZodString;
|
|
20198
|
+
path: z.ZodString;
|
|
20199
|
+
success: z.ZodBoolean;
|
|
20200
|
+
error: z.ZodNullable<z.ZodString>;
|
|
20201
|
+
requestId: z.ZodString;
|
|
20202
|
+
}, z.core.$strip>;
|
|
19640
20203
|
}, z.core.$strip>, z.ZodObject<{
|
|
19641
20204
|
type: z.ZodLiteral<"fs.file.update">;
|
|
19642
20205
|
payload: z.ZodObject<{
|
|
@@ -19790,6 +20353,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19790
20353
|
}, z.core.$strip>, z.ZodObject<{
|
|
19791
20354
|
type: z.ZodLiteral<"get_providers_snapshot_response">;
|
|
19792
20355
|
payload: z.ZodObject<{
|
|
20356
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
19793
20357
|
entries: z.ZodArray<z.ZodObject<{
|
|
19794
20358
|
provider: z.ZodString;
|
|
19795
20359
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
@@ -20314,15 +20878,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
20314
20878
|
worktree: "worktree";
|
|
20315
20879
|
}>>;
|
|
20316
20880
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20317
|
-
|
|
20318
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
20319
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
20320
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
20881
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
20321
20882
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20322
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
20323
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20324
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20325
|
-
}, z.core.$strip>>;
|
|
20326
20883
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
20327
20884
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20328
20885
|
}, z.core.$strip>;
|
|
@@ -20375,15 +20932,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
20375
20932
|
worktree: "worktree";
|
|
20376
20933
|
}>>;
|
|
20377
20934
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20378
|
-
|
|
20379
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
20380
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
20381
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
20935
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
20382
20936
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20383
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
20384
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20385
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20386
|
-
}, z.core.$strip>>;
|
|
20387
20937
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
20388
20938
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20389
20939
|
}, z.core.$strip>;
|
|
@@ -20430,15 +20980,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
20430
20980
|
worktree: "worktree";
|
|
20431
20981
|
}>>;
|
|
20432
20982
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20433
|
-
|
|
20434
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
20435
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
20436
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
20983
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
20437
20984
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20438
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
20439
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20440
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20441
|
-
}, z.core.$strip>>;
|
|
20442
20985
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
20443
20986
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20444
20987
|
}, z.core.$strip>;
|
|
@@ -20533,15 +21076,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
20533
21076
|
worktree: "worktree";
|
|
20534
21077
|
}>>;
|
|
20535
21078
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20536
|
-
|
|
20537
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
20538
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
20539
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
21079
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
20540
21080
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20541
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
20542
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20543
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20544
|
-
}, z.core.$strip>>;
|
|
20545
21081
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
20546
21082
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20547
21083
|
}, z.core.$strip>;
|
|
@@ -20594,15 +21130,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
20594
21130
|
worktree: "worktree";
|
|
20595
21131
|
}>>;
|
|
20596
21132
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20597
|
-
|
|
20598
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
20599
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
20600
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
21133
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
20601
21134
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20602
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
20603
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20604
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20605
|
-
}, z.core.$strip>>;
|
|
20606
21135
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
20607
21136
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20608
21137
|
}, z.core.$strip>;
|
|
@@ -20656,15 +21185,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
20656
21185
|
worktree: "worktree";
|
|
20657
21186
|
}>>;
|
|
20658
21187
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20659
|
-
|
|
20660
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
20661
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
20662
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
21188
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
20663
21189
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20664
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
20665
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20666
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20667
|
-
}, z.core.$strip>>;
|
|
20668
21190
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
20669
21191
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20670
21192
|
}, z.core.$strip>;
|
|
@@ -20732,15 +21254,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
20732
21254
|
worktree: "worktree";
|
|
20733
21255
|
}>>;
|
|
20734
21256
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20735
|
-
|
|
20736
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
20737
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
20738
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
21257
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
20739
21258
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20740
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
20741
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20742
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20743
|
-
}, z.core.$strip>>;
|
|
20744
21259
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
20745
21260
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20746
21261
|
}, z.core.$strip>;
|
|
@@ -21260,6 +21775,7 @@ export type SetAgentModeResponseMessage = z.infer<typeof SetAgentModeResponseMes
|
|
|
21260
21775
|
export type SetAgentModelResponseMessage = z.infer<typeof SetAgentModelResponseMessageSchema>;
|
|
21261
21776
|
export type SetAgentThinkingResponseMessage = z.infer<typeof SetAgentThinkingResponseMessageSchema>;
|
|
21262
21777
|
export type SetAgentFeatureResponseMessage = z.infer<typeof SetAgentFeatureResponseMessageSchema>;
|
|
21778
|
+
export type AgentConfigApplyResponseMessage = z.infer<typeof AgentConfigApplyResponseMessageSchema>;
|
|
21263
21779
|
export type AgentDetachResponseMessage = z.infer<typeof AgentDetachResponseMessageSchema>;
|
|
21264
21780
|
export type AgentRewindResponseMessage = z.infer<typeof AgentRewindResponseMessageSchema>;
|
|
21265
21781
|
export type UpdateAgentResponseMessage = z.infer<typeof UpdateAgentResponseMessageSchema>;
|
|
@@ -21385,6 +21901,7 @@ export type SetAgentModeRequestMessage = z.infer<typeof SetAgentModeRequestMessa
|
|
|
21385
21901
|
export type SetAgentModelRequestMessage = z.infer<typeof SetAgentModelRequestMessageSchema>;
|
|
21386
21902
|
export type SetAgentThinkingRequestMessage = z.infer<typeof SetAgentThinkingRequestMessageSchema>;
|
|
21387
21903
|
export type SetAgentFeatureRequestMessage = z.infer<typeof SetAgentFeatureRequestMessageSchema>;
|
|
21904
|
+
export type AgentConfigApplyRequestMessage = z.infer<typeof AgentConfigApplyRequestMessageSchema>;
|
|
21388
21905
|
export type AgentDetachRequestMessage = z.infer<typeof AgentDetachRequestMessageSchema>;
|
|
21389
21906
|
export type AgentPermissionResponseMessage = z.infer<typeof AgentPermissionResponseMessageSchema>;
|
|
21390
21907
|
export type CheckoutStatusRequest = z.infer<typeof CheckoutStatusRequestSchema>;
|
|
@@ -21406,6 +21923,8 @@ export type CheckoutPushRequest = z.infer<typeof CheckoutPushRequestSchema>;
|
|
|
21406
21923
|
export type CheckoutPushResponse = z.infer<typeof CheckoutPushResponseSchema>;
|
|
21407
21924
|
export type CheckoutRefreshRequest = z.infer<typeof CheckoutRefreshRequestSchema>;
|
|
21408
21925
|
export type CheckoutRefreshResponse = z.infer<typeof CheckoutRefreshResponseSchema>;
|
|
21926
|
+
export type CheckoutDiscardChangesRequest = z.infer<typeof CheckoutDiscardChangesRequestSchema>;
|
|
21927
|
+
export type CheckoutDiscardChangesResponse = z.infer<typeof CheckoutDiscardChangesResponseSchema>;
|
|
21409
21928
|
export type CheckoutCommitFile = z.infer<typeof CheckoutCommitFileSchema>;
|
|
21410
21929
|
export type CheckoutCommit = z.infer<typeof CheckoutCommitSchema>;
|
|
21411
21930
|
export type CheckoutCommitsListRequest = z.infer<typeof CheckoutCommitsListRequestSchema>;
|
|
@@ -21489,6 +22008,14 @@ export type FileUnsubscribeRequest = z.infer<typeof FileUnsubscribeRequestSchema
|
|
|
21489
22008
|
export type FileUnsubscribeResponse = z.infer<typeof FileUnsubscribeResponseSchema>;
|
|
21490
22009
|
export type FileWriteRequest = z.infer<typeof FileWriteRequestSchema>;
|
|
21491
22010
|
export type FileWriteResponse = z.infer<typeof FileWriteResponseSchema>;
|
|
22011
|
+
export type FileEntryCreateRequest = z.infer<typeof FileEntryCreateRequestSchema>;
|
|
22012
|
+
export type FileEntryCreateResponse = z.infer<typeof FileEntryCreateResponseSchema>;
|
|
22013
|
+
export type FileEntryRenameRequest = z.infer<typeof FileEntryRenameRequestSchema>;
|
|
22014
|
+
export type FileEntryRenameResponse = z.infer<typeof FileEntryRenameResponseSchema>;
|
|
22015
|
+
export type FileEntryDuplicateRequest = z.infer<typeof FileEntryDuplicateRequestSchema>;
|
|
22016
|
+
export type FileEntryDuplicateResponse = z.infer<typeof FileEntryDuplicateResponseSchema>;
|
|
22017
|
+
export type FileEntryDeleteRequest = z.infer<typeof FileEntryDeleteRequestSchema>;
|
|
22018
|
+
export type FileEntryDeleteResponse = z.infer<typeof FileEntryDeleteResponseSchema>;
|
|
21492
22019
|
export type FileWriteResult = z.infer<typeof FileWriteResultSchema>;
|
|
21493
22020
|
export type FileUpdate = z.infer<typeof FileUpdateSchema>;
|
|
21494
22021
|
export type ProjectIconRequest = z.infer<typeof ProjectIconRequestSchema>;
|
|
@@ -21508,6 +22035,8 @@ export type ClientHeartbeatMessage = z.infer<typeof ClientHeartbeatMessageSchema
|
|
|
21508
22035
|
export type ListCommandsRequest = z.infer<typeof ListCommandsRequestSchema>;
|
|
21509
22036
|
export type ListCommandsResponse = z.infer<typeof ListCommandsResponseSchema>;
|
|
21510
22037
|
export type RegisterPushTokenMessage = z.infer<typeof RegisterPushTokenMessageSchema>;
|
|
22038
|
+
export type PushUnregisterRequest = z.infer<typeof PushUnregisterRequestSchema>;
|
|
22039
|
+
export type PushUnregisterResponse = z.infer<typeof PushUnregisterResponseSchema>;
|
|
21511
22040
|
export type ListTerminalsRequest = z.infer<typeof ListTerminalsRequestSchema>;
|
|
21512
22041
|
export type ListTerminalsResponse = z.infer<typeof ListTerminalsResponseSchema>;
|
|
21513
22042
|
export type SubscribeTerminalsRequest = z.infer<typeof SubscribeTerminalsRequestSchema>;
|
|
@@ -21585,6 +22114,14 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21585
22114
|
modeId: z.ZodOptional<z.ZodString>;
|
|
21586
22115
|
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
21587
22116
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
22117
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
22118
|
+
toolPolicy: z.ZodOptional<z.ZodObject<{
|
|
22119
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
22120
|
+
kind: z.ZodLiteral<"mcp">;
|
|
22121
|
+
server: z.ZodString;
|
|
22122
|
+
tool: z.ZodString;
|
|
22123
|
+
}, z.core.$strict>>;
|
|
22124
|
+
}, z.core.$strict>>;
|
|
21588
22125
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
21589
22126
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
21590
22127
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -21614,6 +22151,14 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21614
22151
|
mode: z.ZodLiteral<"checkout-pr">;
|
|
21615
22152
|
prNumber: z.ZodNumber;
|
|
21616
22153
|
}, z.core.$strip>], "mode">>;
|
|
22154
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22155
|
+
type: z.ZodLiteral<"hub.execution.agent.validate.request">;
|
|
22156
|
+
requestId: z.ZodString;
|
|
22157
|
+
provider: z.ZodString;
|
|
22158
|
+
model: z.ZodOptional<z.ZodString>;
|
|
22159
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
22160
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
22161
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
21617
22162
|
}, z.core.$strip>, z.ZodObject<{
|
|
21618
22163
|
type: z.ZodLiteral<"hub.execution.control.request">;
|
|
21619
22164
|
requestId: z.ZodString;
|
|
@@ -22169,6 +22714,18 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
22169
22714
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22170
22715
|
icon: z.ZodOptional<z.ZodString>;
|
|
22171
22716
|
}, z.core.$loose>>>>;
|
|
22717
|
+
agentProfiles: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22718
|
+
id: z.ZodString;
|
|
22719
|
+
name: z.ZodString;
|
|
22720
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
22721
|
+
color: z.ZodOptional<z.ZodString>;
|
|
22722
|
+
provider: z.ZodString;
|
|
22723
|
+
model: z.ZodOptional<z.ZodString>;
|
|
22724
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
22725
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
22726
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
22727
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
22728
|
+
}, z.core.$loose>>>>;
|
|
22172
22729
|
}, z.core.$loose>;
|
|
22173
22730
|
}, z.core.$strip>, z.ZodObject<{
|
|
22174
22731
|
type: z.ZodLiteral<"read_project_config_request">;
|
|
@@ -22239,14 +22796,14 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
22239
22796
|
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
22240
22797
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
22241
22798
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
22242
|
-
|
|
22243
|
-
|
|
22244
|
-
|
|
22245
|
-
|
|
22246
|
-
|
|
22247
|
-
|
|
22248
|
-
|
|
22249
|
-
}, z.core.$
|
|
22799
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
22800
|
+
toolPolicy: z.ZodOptional<z.ZodObject<{
|
|
22801
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
22802
|
+
kind: z.ZodLiteral<"mcp">;
|
|
22803
|
+
server: z.ZodString;
|
|
22804
|
+
tool: z.ZodString;
|
|
22805
|
+
}, z.core.$strict>>;
|
|
22806
|
+
}, z.core.$strict>>;
|
|
22250
22807
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
22251
22808
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
22252
22809
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -22439,14 +22996,14 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
22439
22996
|
thinkingOptionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22440
22997
|
featureValues: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22441
22998
|
title: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
22442
|
-
|
|
22443
|
-
|
|
22444
|
-
|
|
22445
|
-
|
|
22446
|
-
|
|
22447
|
-
|
|
22448
|
-
|
|
22449
|
-
}, z.core.$
|
|
22999
|
+
providerOptions: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>>;
|
|
23000
|
+
toolPolicy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
23001
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
23002
|
+
kind: z.ZodLiteral<"mcp">;
|
|
23003
|
+
server: z.ZodString;
|
|
23004
|
+
tool: z.ZodString;
|
|
23005
|
+
}, z.core.$strict>>;
|
|
23006
|
+
}, z.core.$strict>>>;
|
|
22450
23007
|
systemPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22451
23008
|
mcpServers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
22452
23009
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -22571,6 +23128,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
22571
23128
|
featureId: z.ZodString;
|
|
22572
23129
|
value: z.ZodUnknown;
|
|
22573
23130
|
requestId: z.ZodString;
|
|
23131
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23132
|
+
type: z.ZodLiteral<"agent.config.apply.request">;
|
|
23133
|
+
agentId: z.ZodString;
|
|
23134
|
+
config: z.ZodObject<{
|
|
23135
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23136
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
23137
|
+
thinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23138
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
23139
|
+
}, z.core.$strip>;
|
|
23140
|
+
requestId: z.ZodString;
|
|
22574
23141
|
}, z.core.$strip>, z.ZodObject<{
|
|
22575
23142
|
type: z.ZodLiteral<"agent.detach.request">;
|
|
22576
23143
|
agentId: z.ZodString;
|
|
@@ -22644,6 +23211,11 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
22644
23211
|
type: z.ZodLiteral<"checkout.refresh.request">;
|
|
22645
23212
|
cwd: z.ZodString;
|
|
22646
23213
|
requestId: z.ZodString;
|
|
23214
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23215
|
+
type: z.ZodLiteral<"checkout.discard_changes.request">;
|
|
23216
|
+
cwd: z.ZodString;
|
|
23217
|
+
paths: z.ZodArray<z.ZodString>;
|
|
23218
|
+
requestId: z.ZodString;
|
|
22647
23219
|
}, z.core.$strip>, z.ZodObject<{
|
|
22648
23220
|
type: z.ZodLiteral<"checkout_pr_create_request">;
|
|
22649
23221
|
cwd: z.ZodString;
|
|
@@ -23174,6 +23746,32 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
23174
23746
|
expectedModifiedAt: z.ZodString;
|
|
23175
23747
|
expectedRevision: z.ZodOptional<z.ZodString>;
|
|
23176
23748
|
requestId: z.ZodString;
|
|
23749
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23750
|
+
type: z.ZodLiteral<"fs.entry.create.request">;
|
|
23751
|
+
cwd: z.ZodString;
|
|
23752
|
+
parentPath: z.ZodString;
|
|
23753
|
+
name: z.ZodString;
|
|
23754
|
+
kind: z.ZodEnum<{
|
|
23755
|
+
file: "file";
|
|
23756
|
+
directory: "directory";
|
|
23757
|
+
}>;
|
|
23758
|
+
requestId: z.ZodString;
|
|
23759
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23760
|
+
type: z.ZodLiteral<"fs.entry.rename.request">;
|
|
23761
|
+
cwd: z.ZodString;
|
|
23762
|
+
path: z.ZodString;
|
|
23763
|
+
name: z.ZodString;
|
|
23764
|
+
requestId: z.ZodString;
|
|
23765
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23766
|
+
type: z.ZodLiteral<"fs.entry.duplicate.request">;
|
|
23767
|
+
cwd: z.ZodString;
|
|
23768
|
+
path: z.ZodString;
|
|
23769
|
+
requestId: z.ZodString;
|
|
23770
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23771
|
+
type: z.ZodLiteral<"fs.entry.delete.request">;
|
|
23772
|
+
cwd: z.ZodString;
|
|
23773
|
+
path: z.ZodString;
|
|
23774
|
+
requestId: z.ZodString;
|
|
23177
23775
|
}, z.core.$strip>, z.ZodObject<{
|
|
23178
23776
|
type: z.ZodLiteral<"project_icon_request">;
|
|
23179
23777
|
cwd: z.ZodString;
|
|
@@ -23228,6 +23826,10 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
23228
23826
|
}, z.core.$strip>, z.ZodObject<{
|
|
23229
23827
|
type: z.ZodLiteral<"register_push_token">;
|
|
23230
23828
|
token: z.ZodString;
|
|
23829
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23830
|
+
type: z.ZodLiteral<"push.unregister.request">;
|
|
23831
|
+
token: z.ZodString;
|
|
23832
|
+
requestId: z.ZodString;
|
|
23231
23833
|
}, z.core.$strip>, z.ZodObject<{
|
|
23232
23834
|
type: z.ZodLiteral<"list_terminals_request">;
|
|
23233
23835
|
cwd: z.ZodOptional<z.ZodString>;
|
|
@@ -23402,15 +24004,8 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
23402
24004
|
worktree: "worktree";
|
|
23403
24005
|
}>>;
|
|
23404
24006
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23405
|
-
|
|
23406
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
23407
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
23408
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
24007
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
23409
24008
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
23410
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
23411
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
23412
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
23413
|
-
}, z.core.$strip>>;
|
|
23414
24009
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
23415
24010
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
23416
24011
|
}, z.core.$strip>;
|
|
@@ -23586,6 +24181,33 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23586
24181
|
providerUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
23587
24182
|
}, z.core.$strip>>;
|
|
23588
24183
|
success: z.ZodBoolean;
|
|
24184
|
+
toolPolicyApplied: z.ZodOptional<z.ZodLiteral<true>>;
|
|
24185
|
+
error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
24186
|
+
code: z.ZodLiteral<"provider_options_invalid">;
|
|
24187
|
+
provider: z.ZodString;
|
|
24188
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
24189
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
24190
|
+
message: z.ZodString;
|
|
24191
|
+
}, z.core.$strip>>;
|
|
24192
|
+
message: z.ZodString;
|
|
24193
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24194
|
+
code: z.ZodLiteral<"tool_policy_unsupported">;
|
|
24195
|
+
provider: z.ZodString;
|
|
24196
|
+
message: z.ZodString;
|
|
24197
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24198
|
+
code: z.ZodLiteral<"create_failed">;
|
|
24199
|
+
message: z.ZodString;
|
|
24200
|
+
}, z.core.$strip>], "code">>;
|
|
24201
|
+
}, z.core.$strip>;
|
|
24202
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24203
|
+
type: z.ZodLiteral<"hub.execution.agent.validate.response">;
|
|
24204
|
+
payload: z.ZodObject<{
|
|
24205
|
+
requestId: z.ZodString;
|
|
24206
|
+
valid: z.ZodBoolean;
|
|
24207
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
24208
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
24209
|
+
message: z.ZodString;
|
|
24210
|
+
}, z.core.$strip>>;
|
|
23589
24211
|
error: z.ZodNullable<z.ZodString>;
|
|
23590
24212
|
}, z.core.$strip>;
|
|
23591
24213
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -23993,6 +24615,11 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23993
24615
|
serverReceivedAt: z.ZodNumber;
|
|
23994
24616
|
serverSentAt: z.ZodNumber;
|
|
23995
24617
|
}, z.core.$strip>;
|
|
24618
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24619
|
+
type: z.ZodLiteral<"push.unregister.response">;
|
|
24620
|
+
payload: z.ZodObject<{
|
|
24621
|
+
requestId: z.ZodString;
|
|
24622
|
+
}, z.core.$strip>;
|
|
23996
24623
|
}, z.core.$strip>, z.ZodObject<{
|
|
23997
24624
|
type: z.ZodLiteral<"rpc_error">;
|
|
23998
24625
|
payload: z.ZodObject<{
|
|
@@ -24262,8 +24889,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24262
24889
|
name: z.ZodString;
|
|
24263
24890
|
status: z.ZodEnum<{
|
|
24264
24891
|
success: "success";
|
|
24265
|
-
failure: "failure";
|
|
24266
24892
|
pending: "pending";
|
|
24893
|
+
failure: "failure";
|
|
24267
24894
|
skipped: "skipped";
|
|
24268
24895
|
cancelled: "cancelled";
|
|
24269
24896
|
}>;
|
|
@@ -24273,9 +24900,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24273
24900
|
}, z.core.$strip>>>;
|
|
24274
24901
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
24275
24902
|
success: "success";
|
|
24903
|
+
pending: "pending";
|
|
24276
24904
|
none: "none";
|
|
24277
24905
|
failure: "failure";
|
|
24278
|
-
pending: "pending";
|
|
24279
24906
|
}>>;
|
|
24280
24907
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
24281
24908
|
pending: "pending";
|
|
@@ -24431,12 +25058,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24431
25058
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
24432
25059
|
checks?: {
|
|
24433
25060
|
name: string;
|
|
24434
|
-
status: "success" | "
|
|
25061
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
24435
25062
|
url: string | null;
|
|
24436
25063
|
workflow?: string | undefined;
|
|
24437
25064
|
duration?: string | undefined;
|
|
24438
25065
|
}[] | undefined;
|
|
24439
|
-
checksStatus?: "success" | "
|
|
25066
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
24440
25067
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
24441
25068
|
repoOwner?: string | undefined;
|
|
24442
25069
|
repoName?: string | undefined;
|
|
@@ -24539,12 +25166,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24539
25166
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
24540
25167
|
checks?: {
|
|
24541
25168
|
name: string;
|
|
24542
|
-
status: "success" | "
|
|
25169
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
24543
25170
|
url: string | null;
|
|
24544
25171
|
workflow?: string | undefined;
|
|
24545
25172
|
duration?: string | undefined;
|
|
24546
25173
|
}[] | undefined;
|
|
24547
|
-
checksStatus?: "success" | "
|
|
25174
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
24548
25175
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
24549
25176
|
repoOwner?: string | undefined;
|
|
24550
25177
|
repoName?: string | undefined;
|
|
@@ -25331,8 +25958,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25331
25958
|
name: z.ZodString;
|
|
25332
25959
|
status: z.ZodEnum<{
|
|
25333
25960
|
success: "success";
|
|
25334
|
-
failure: "failure";
|
|
25335
25961
|
pending: "pending";
|
|
25962
|
+
failure: "failure";
|
|
25336
25963
|
skipped: "skipped";
|
|
25337
25964
|
cancelled: "cancelled";
|
|
25338
25965
|
}>;
|
|
@@ -25342,9 +25969,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25342
25969
|
}, z.core.$strip>>>;
|
|
25343
25970
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
25344
25971
|
success: "success";
|
|
25972
|
+
pending: "pending";
|
|
25345
25973
|
none: "none";
|
|
25346
25974
|
failure: "failure";
|
|
25347
|
-
pending: "pending";
|
|
25348
25975
|
}>>;
|
|
25349
25976
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
25350
25977
|
pending: "pending";
|
|
@@ -25500,12 +26127,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25500
26127
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
25501
26128
|
checks?: {
|
|
25502
26129
|
name: string;
|
|
25503
|
-
status: "success" | "
|
|
26130
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
25504
26131
|
url: string | null;
|
|
25505
26132
|
workflow?: string | undefined;
|
|
25506
26133
|
duration?: string | undefined;
|
|
25507
26134
|
}[] | undefined;
|
|
25508
|
-
checksStatus?: "success" | "
|
|
26135
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
25509
26136
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
25510
26137
|
repoOwner?: string | undefined;
|
|
25511
26138
|
repoName?: string | undefined;
|
|
@@ -25608,12 +26235,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25608
26235
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
25609
26236
|
checks?: {
|
|
25610
26237
|
name: string;
|
|
25611
|
-
status: "success" | "
|
|
26238
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
25612
26239
|
url: string | null;
|
|
25613
26240
|
workflow?: string | undefined;
|
|
25614
26241
|
duration?: string | undefined;
|
|
25615
26242
|
}[] | undefined;
|
|
25616
|
-
checksStatus?: "success" | "
|
|
26243
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
25617
26244
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
25618
26245
|
repoOwner?: string | undefined;
|
|
25619
26246
|
repoName?: string | undefined;
|
|
@@ -25813,8 +26440,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25813
26440
|
name: z.ZodString;
|
|
25814
26441
|
status: z.ZodEnum<{
|
|
25815
26442
|
success: "success";
|
|
25816
|
-
failure: "failure";
|
|
25817
26443
|
pending: "pending";
|
|
26444
|
+
failure: "failure";
|
|
25818
26445
|
skipped: "skipped";
|
|
25819
26446
|
cancelled: "cancelled";
|
|
25820
26447
|
}>;
|
|
@@ -25824,9 +26451,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25824
26451
|
}, z.core.$strip>>>;
|
|
25825
26452
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
25826
26453
|
success: "success";
|
|
26454
|
+
pending: "pending";
|
|
25827
26455
|
none: "none";
|
|
25828
26456
|
failure: "failure";
|
|
25829
|
-
pending: "pending";
|
|
25830
26457
|
}>>;
|
|
25831
26458
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
25832
26459
|
pending: "pending";
|
|
@@ -25982,12 +26609,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25982
26609
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
25983
26610
|
checks?: {
|
|
25984
26611
|
name: string;
|
|
25985
|
-
status: "success" | "
|
|
26612
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
25986
26613
|
url: string | null;
|
|
25987
26614
|
workflow?: string | undefined;
|
|
25988
26615
|
duration?: string | undefined;
|
|
25989
26616
|
}[] | undefined;
|
|
25990
|
-
checksStatus?: "success" | "
|
|
26617
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
25991
26618
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
25992
26619
|
repoOwner?: string | undefined;
|
|
25993
26620
|
repoName?: string | undefined;
|
|
@@ -26090,12 +26717,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
26090
26717
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
26091
26718
|
checks?: {
|
|
26092
26719
|
name: string;
|
|
26093
|
-
status: "success" | "
|
|
26720
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
26094
26721
|
url: string | null;
|
|
26095
26722
|
workflow?: string | undefined;
|
|
26096
26723
|
duration?: string | undefined;
|
|
26097
26724
|
}[] | undefined;
|
|
26098
|
-
checksStatus?: "success" | "
|
|
26725
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
26099
26726
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
26100
26727
|
repoOwner?: string | undefined;
|
|
26101
26728
|
repoName?: string | undefined;
|
|
@@ -27104,8 +27731,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27104
27731
|
name: z.ZodString;
|
|
27105
27732
|
status: z.ZodEnum<{
|
|
27106
27733
|
success: "success";
|
|
27107
|
-
failure: "failure";
|
|
27108
27734
|
pending: "pending";
|
|
27735
|
+
failure: "failure";
|
|
27109
27736
|
skipped: "skipped";
|
|
27110
27737
|
cancelled: "cancelled";
|
|
27111
27738
|
}>;
|
|
@@ -27115,9 +27742,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27115
27742
|
}, z.core.$strip>>>;
|
|
27116
27743
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
27117
27744
|
success: "success";
|
|
27745
|
+
pending: "pending";
|
|
27118
27746
|
none: "none";
|
|
27119
27747
|
failure: "failure";
|
|
27120
|
-
pending: "pending";
|
|
27121
27748
|
}>>;
|
|
27122
27749
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
27123
27750
|
pending: "pending";
|
|
@@ -27273,12 +27900,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27273
27900
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
27274
27901
|
checks?: {
|
|
27275
27902
|
name: string;
|
|
27276
|
-
status: "success" | "
|
|
27903
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
27277
27904
|
url: string | null;
|
|
27278
27905
|
workflow?: string | undefined;
|
|
27279
27906
|
duration?: string | undefined;
|
|
27280
27907
|
}[] | undefined;
|
|
27281
|
-
checksStatus?: "success" | "
|
|
27908
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
27282
27909
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
27283
27910
|
repoOwner?: string | undefined;
|
|
27284
27911
|
repoName?: string | undefined;
|
|
@@ -27381,12 +28008,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27381
28008
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
27382
28009
|
checks?: {
|
|
27383
28010
|
name: string;
|
|
27384
|
-
status: "success" | "
|
|
28011
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
27385
28012
|
url: string | null;
|
|
27386
28013
|
workflow?: string | undefined;
|
|
27387
28014
|
duration?: string | undefined;
|
|
27388
28015
|
}[] | undefined;
|
|
27389
|
-
checksStatus?: "success" | "
|
|
28016
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
27390
28017
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
27391
28018
|
repoOwner?: string | undefined;
|
|
27392
28019
|
repoName?: string | undefined;
|
|
@@ -27607,6 +28234,18 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27607
28234
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
27608
28235
|
icon: z.ZodOptional<z.ZodString>;
|
|
27609
28236
|
}, z.core.$loose>>>;
|
|
28237
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
28238
|
+
id: z.ZodString;
|
|
28239
|
+
name: z.ZodString;
|
|
28240
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
28241
|
+
color: z.ZodOptional<z.ZodString>;
|
|
28242
|
+
provider: z.ZodString;
|
|
28243
|
+
model: z.ZodOptional<z.ZodString>;
|
|
28244
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
28245
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
28246
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
28247
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
28248
|
+
}, z.core.$loose>>>;
|
|
27610
28249
|
}, z.core.$loose>;
|
|
27611
28250
|
}, z.core.$loose>;
|
|
27612
28251
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -27649,6 +28288,18 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27649
28288
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
27650
28289
|
icon: z.ZodOptional<z.ZodString>;
|
|
27651
28290
|
}, z.core.$loose>>>;
|
|
28291
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
28292
|
+
id: z.ZodString;
|
|
28293
|
+
name: z.ZodString;
|
|
28294
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
28295
|
+
color: z.ZodOptional<z.ZodString>;
|
|
28296
|
+
provider: z.ZodString;
|
|
28297
|
+
model: z.ZodOptional<z.ZodString>;
|
|
28298
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
28299
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
28300
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
28301
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
28302
|
+
}, z.core.$loose>>>;
|
|
27652
28303
|
}, z.core.$loose>;
|
|
27653
28304
|
}, z.core.$loose>;
|
|
27654
28305
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -27803,6 +28454,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27803
28454
|
error: z.ZodNullable<z.ZodString>;
|
|
27804
28455
|
notice: z.ZodOptional<z.ZodNullable<z.ZodType<AgentProviderNotice, unknown, z.core.$ZodTypeInternals<AgentProviderNotice, unknown>>>>;
|
|
27805
28456
|
}, z.core.$strip>;
|
|
28457
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28458
|
+
type: z.ZodLiteral<"agent.config.apply.response">;
|
|
28459
|
+
payload: z.ZodObject<{
|
|
28460
|
+
requestId: z.ZodString;
|
|
28461
|
+
agentId: z.ZodString;
|
|
28462
|
+
accepted: z.ZodBoolean;
|
|
28463
|
+
error: z.ZodNullable<z.ZodString>;
|
|
28464
|
+
notice: z.ZodOptional<z.ZodNullable<z.ZodType<AgentProviderNotice, unknown, z.core.$ZodTypeInternals<AgentProviderNotice, unknown>>>>;
|
|
28465
|
+
}, z.core.$strip>;
|
|
27806
28466
|
}, z.core.$strip>, z.ZodObject<{
|
|
27807
28467
|
type: z.ZodLiteral<"agent.detach.response">;
|
|
27808
28468
|
payload: z.ZodObject<{
|
|
@@ -28258,6 +28918,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28258
28918
|
cwd: z.ZodString;
|
|
28259
28919
|
files: z.ZodArray<z.ZodObject<{
|
|
28260
28920
|
path: z.ZodString;
|
|
28921
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
28261
28922
|
isNew: z.ZodBoolean;
|
|
28262
28923
|
isDeleted: z.ZodBoolean;
|
|
28263
28924
|
additions: z.ZodNumber;
|
|
@@ -28306,6 +28967,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28306
28967
|
cwd: z.ZodString;
|
|
28307
28968
|
files: z.ZodArray<z.ZodObject<{
|
|
28308
28969
|
path: z.ZodString;
|
|
28970
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
28309
28971
|
isNew: z.ZodBoolean;
|
|
28310
28972
|
isDeleted: z.ZodBoolean;
|
|
28311
28973
|
additions: z.ZodNumber;
|
|
@@ -28442,6 +29104,22 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28442
29104
|
}, z.core.$strip>>;
|
|
28443
29105
|
requestId: z.ZodString;
|
|
28444
29106
|
}, z.core.$strip>;
|
|
29107
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29108
|
+
type: z.ZodLiteral<"checkout.discard_changes.response">;
|
|
29109
|
+
payload: z.ZodObject<{
|
|
29110
|
+
cwd: z.ZodString;
|
|
29111
|
+
success: z.ZodBoolean;
|
|
29112
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
29113
|
+
code: z.ZodEnum<{
|
|
29114
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
29115
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
29116
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
29117
|
+
UNKNOWN: "UNKNOWN";
|
|
29118
|
+
}>;
|
|
29119
|
+
message: z.ZodString;
|
|
29120
|
+
}, z.core.$strip>>;
|
|
29121
|
+
requestId: z.ZodString;
|
|
29122
|
+
}, z.core.$strip>;
|
|
28445
29123
|
}, z.core.$strip>, z.ZodObject<{
|
|
28446
29124
|
type: z.ZodLiteral<"checkout_pr_create_response">;
|
|
28447
29125
|
payload: z.ZodObject<{
|
|
@@ -28553,6 +29231,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28553
29231
|
path: z.ZodString;
|
|
28554
29232
|
file: z.ZodNullable<z.ZodObject<{
|
|
28555
29233
|
path: z.ZodString;
|
|
29234
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
28556
29235
|
isNew: z.ZodBoolean;
|
|
28557
29236
|
isDeleted: z.ZodBoolean;
|
|
28558
29237
|
additions: z.ZodNumber;
|
|
@@ -29137,8 +29816,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29137
29816
|
name: z.ZodString;
|
|
29138
29817
|
status: z.ZodEnum<{
|
|
29139
29818
|
success: "success";
|
|
29140
|
-
failure: "failure";
|
|
29141
29819
|
pending: "pending";
|
|
29820
|
+
failure: "failure";
|
|
29142
29821
|
skipped: "skipped";
|
|
29143
29822
|
cancelled: "cancelled";
|
|
29144
29823
|
}>;
|
|
@@ -29148,9 +29827,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29148
29827
|
}, z.core.$strip>>>;
|
|
29149
29828
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
29150
29829
|
success: "success";
|
|
29830
|
+
pending: "pending";
|
|
29151
29831
|
none: "none";
|
|
29152
29832
|
failure: "failure";
|
|
29153
|
-
pending: "pending";
|
|
29154
29833
|
}>>;
|
|
29155
29834
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
29156
29835
|
pending: "pending";
|
|
@@ -29306,12 +29985,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29306
29985
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
29307
29986
|
checks?: {
|
|
29308
29987
|
name: string;
|
|
29309
|
-
status: "success" | "
|
|
29988
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
29310
29989
|
url: string | null;
|
|
29311
29990
|
workflow?: string | undefined;
|
|
29312
29991
|
duration?: string | undefined;
|
|
29313
29992
|
}[] | undefined;
|
|
29314
|
-
checksStatus?: "success" | "
|
|
29993
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
29315
29994
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
29316
29995
|
repoOwner?: string | undefined;
|
|
29317
29996
|
repoName?: string | undefined;
|
|
@@ -29414,12 +30093,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29414
30093
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
29415
30094
|
checks?: {
|
|
29416
30095
|
name: string;
|
|
29417
|
-
status: "success" | "
|
|
30096
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
29418
30097
|
url: string | null;
|
|
29419
30098
|
workflow?: string | undefined;
|
|
29420
30099
|
duration?: string | undefined;
|
|
29421
30100
|
}[] | undefined;
|
|
29422
|
-
checksStatus?: "success" | "
|
|
30101
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
29423
30102
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
29424
30103
|
repoOwner?: string | undefined;
|
|
29425
30104
|
repoName?: string | undefined;
|
|
@@ -29572,6 +30251,45 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29572
30251
|
}, z.core.$strip>], "status">;
|
|
29573
30252
|
requestId: z.ZodString;
|
|
29574
30253
|
}, z.core.$strip>;
|
|
30254
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30255
|
+
type: z.ZodLiteral<"fs.entry.create.response">;
|
|
30256
|
+
payload: z.ZodObject<{
|
|
30257
|
+
cwd: z.ZodString;
|
|
30258
|
+
parentPath: z.ZodString;
|
|
30259
|
+
path: z.ZodNullable<z.ZodString>;
|
|
30260
|
+
success: z.ZodBoolean;
|
|
30261
|
+
error: z.ZodNullable<z.ZodString>;
|
|
30262
|
+
requestId: z.ZodString;
|
|
30263
|
+
}, z.core.$strip>;
|
|
30264
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30265
|
+
type: z.ZodLiteral<"fs.entry.rename.response">;
|
|
30266
|
+
payload: z.ZodObject<{
|
|
30267
|
+
cwd: z.ZodString;
|
|
30268
|
+
path: z.ZodString;
|
|
30269
|
+
renamedPath: z.ZodNullable<z.ZodString>;
|
|
30270
|
+
success: z.ZodBoolean;
|
|
30271
|
+
error: z.ZodNullable<z.ZodString>;
|
|
30272
|
+
requestId: z.ZodString;
|
|
30273
|
+
}, z.core.$strip>;
|
|
30274
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30275
|
+
type: z.ZodLiteral<"fs.entry.duplicate.response">;
|
|
30276
|
+
payload: z.ZodObject<{
|
|
30277
|
+
cwd: z.ZodString;
|
|
30278
|
+
path: z.ZodString;
|
|
30279
|
+
duplicatedPath: z.ZodNullable<z.ZodString>;
|
|
30280
|
+
success: z.ZodBoolean;
|
|
30281
|
+
error: z.ZodNullable<z.ZodString>;
|
|
30282
|
+
requestId: z.ZodString;
|
|
30283
|
+
}, z.core.$strip>;
|
|
30284
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30285
|
+
type: z.ZodLiteral<"fs.entry.delete.response">;
|
|
30286
|
+
payload: z.ZodObject<{
|
|
30287
|
+
cwd: z.ZodString;
|
|
30288
|
+
path: z.ZodString;
|
|
30289
|
+
success: z.ZodBoolean;
|
|
30290
|
+
error: z.ZodNullable<z.ZodString>;
|
|
30291
|
+
requestId: z.ZodString;
|
|
30292
|
+
}, z.core.$strip>;
|
|
29575
30293
|
}, z.core.$strip>, z.ZodObject<{
|
|
29576
30294
|
type: z.ZodLiteral<"fs.file.update">;
|
|
29577
30295
|
payload: z.ZodObject<{
|
|
@@ -29725,6 +30443,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29725
30443
|
}, z.core.$strip>, z.ZodObject<{
|
|
29726
30444
|
type: z.ZodLiteral<"get_providers_snapshot_response">;
|
|
29727
30445
|
payload: z.ZodObject<{
|
|
30446
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
29728
30447
|
entries: z.ZodArray<z.ZodObject<{
|
|
29729
30448
|
provider: z.ZodString;
|
|
29730
30449
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
@@ -30249,15 +30968,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30249
30968
|
worktree: "worktree";
|
|
30250
30969
|
}>>;
|
|
30251
30970
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30252
|
-
|
|
30253
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
30254
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
30255
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
30971
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
30256
30972
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30257
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
30258
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30259
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30260
|
-
}, z.core.$strip>>;
|
|
30261
30973
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
30262
30974
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30263
30975
|
}, z.core.$strip>;
|
|
@@ -30310,15 +31022,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30310
31022
|
worktree: "worktree";
|
|
30311
31023
|
}>>;
|
|
30312
31024
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30313
|
-
|
|
30314
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
30315
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
30316
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
31025
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
30317
31026
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30318
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
30319
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30320
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30321
|
-
}, z.core.$strip>>;
|
|
30322
31027
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
30323
31028
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30324
31029
|
}, z.core.$strip>;
|
|
@@ -30365,15 +31070,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30365
31070
|
worktree: "worktree";
|
|
30366
31071
|
}>>;
|
|
30367
31072
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30368
|
-
|
|
30369
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
30370
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
30371
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
31073
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
30372
31074
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30373
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
30374
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30375
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30376
|
-
}, z.core.$strip>>;
|
|
30377
31075
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
30378
31076
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30379
31077
|
}, z.core.$strip>;
|
|
@@ -30468,15 +31166,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30468
31166
|
worktree: "worktree";
|
|
30469
31167
|
}>>;
|
|
30470
31168
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30471
|
-
|
|
30472
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
30473
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
30474
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
31169
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
30475
31170
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30476
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
30477
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30478
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30479
|
-
}, z.core.$strip>>;
|
|
30480
31171
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
30481
31172
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30482
31173
|
}, z.core.$strip>;
|
|
@@ -30529,15 +31220,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30529
31220
|
worktree: "worktree";
|
|
30530
31221
|
}>>;
|
|
30531
31222
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30532
|
-
|
|
30533
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
30534
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
30535
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
31223
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
30536
31224
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30537
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
30538
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30539
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30540
|
-
}, z.core.$strip>>;
|
|
30541
31225
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
30542
31226
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30543
31227
|
}, z.core.$strip>;
|
|
@@ -30591,15 +31275,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30591
31275
|
worktree: "worktree";
|
|
30592
31276
|
}>>;
|
|
30593
31277
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30594
|
-
|
|
30595
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
30596
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
30597
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
31278
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
30598
31279
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30599
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
30600
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30601
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30602
|
-
}, z.core.$strip>>;
|
|
30603
31280
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
30604
31281
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30605
31282
|
}, z.core.$strip>;
|
|
@@ -30667,15 +31344,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30667
31344
|
worktree: "worktree";
|
|
30668
31345
|
}>>;
|
|
30669
31346
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30670
|
-
|
|
30671
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
30672
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
30673
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
31347
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
30674
31348
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30675
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
30676
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30677
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30678
|
-
}, z.core.$strip>>;
|
|
30679
31349
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
30680
31350
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30681
31351
|
}, z.core.$strip>;
|
|
@@ -31182,6 +31852,14 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
31182
31852
|
modeId: z.ZodOptional<z.ZodString>;
|
|
31183
31853
|
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
31184
31854
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
31855
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
31856
|
+
toolPolicy: z.ZodOptional<z.ZodObject<{
|
|
31857
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
31858
|
+
kind: z.ZodLiteral<"mcp">;
|
|
31859
|
+
server: z.ZodString;
|
|
31860
|
+
tool: z.ZodString;
|
|
31861
|
+
}, z.core.$strict>>;
|
|
31862
|
+
}, z.core.$strict>>;
|
|
31185
31863
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
31186
31864
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
31187
31865
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -31211,6 +31889,14 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
31211
31889
|
mode: z.ZodLiteral<"checkout-pr">;
|
|
31212
31890
|
prNumber: z.ZodNumber;
|
|
31213
31891
|
}, z.core.$strip>], "mode">>;
|
|
31892
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31893
|
+
type: z.ZodLiteral<"hub.execution.agent.validate.request">;
|
|
31894
|
+
requestId: z.ZodString;
|
|
31895
|
+
provider: z.ZodString;
|
|
31896
|
+
model: z.ZodOptional<z.ZodString>;
|
|
31897
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
31898
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
31899
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
31214
31900
|
}, z.core.$strip>, z.ZodObject<{
|
|
31215
31901
|
type: z.ZodLiteral<"hub.execution.control.request">;
|
|
31216
31902
|
requestId: z.ZodString;
|
|
@@ -31766,6 +32452,18 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
31766
32452
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
31767
32453
|
icon: z.ZodOptional<z.ZodString>;
|
|
31768
32454
|
}, z.core.$loose>>>>;
|
|
32455
|
+
agentProfiles: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
32456
|
+
id: z.ZodString;
|
|
32457
|
+
name: z.ZodString;
|
|
32458
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
32459
|
+
color: z.ZodOptional<z.ZodString>;
|
|
32460
|
+
provider: z.ZodString;
|
|
32461
|
+
model: z.ZodOptional<z.ZodString>;
|
|
32462
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
32463
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
32464
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
32465
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
32466
|
+
}, z.core.$loose>>>>;
|
|
31769
32467
|
}, z.core.$loose>;
|
|
31770
32468
|
}, z.core.$strip>, z.ZodObject<{
|
|
31771
32469
|
type: z.ZodLiteral<"read_project_config_request">;
|
|
@@ -31836,14 +32534,14 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
31836
32534
|
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
31837
32535
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
31838
32536
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
31839
|
-
|
|
31840
|
-
|
|
31841
|
-
|
|
31842
|
-
|
|
31843
|
-
|
|
31844
|
-
|
|
31845
|
-
|
|
31846
|
-
}, z.core.$
|
|
32537
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
32538
|
+
toolPolicy: z.ZodOptional<z.ZodObject<{
|
|
32539
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
32540
|
+
kind: z.ZodLiteral<"mcp">;
|
|
32541
|
+
server: z.ZodString;
|
|
32542
|
+
tool: z.ZodString;
|
|
32543
|
+
}, z.core.$strict>>;
|
|
32544
|
+
}, z.core.$strict>>;
|
|
31847
32545
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
31848
32546
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
31849
32547
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -32036,14 +32734,14 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
32036
32734
|
thinkingOptionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
32037
32735
|
featureValues: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32038
32736
|
title: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
32039
|
-
|
|
32040
|
-
|
|
32041
|
-
|
|
32042
|
-
|
|
32043
|
-
|
|
32044
|
-
|
|
32045
|
-
|
|
32046
|
-
}, z.core.$
|
|
32737
|
+
providerOptions: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>>;
|
|
32738
|
+
toolPolicy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
32739
|
+
preapproved: z.ZodArray<z.ZodObject<{
|
|
32740
|
+
kind: z.ZodLiteral<"mcp">;
|
|
32741
|
+
server: z.ZodString;
|
|
32742
|
+
tool: z.ZodString;
|
|
32743
|
+
}, z.core.$strict>>;
|
|
32744
|
+
}, z.core.$strict>>>;
|
|
32047
32745
|
systemPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
32048
32746
|
mcpServers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
32049
32747
|
type: z.ZodLiteral<"stdio">;
|
|
@@ -32168,6 +32866,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
32168
32866
|
featureId: z.ZodString;
|
|
32169
32867
|
value: z.ZodUnknown;
|
|
32170
32868
|
requestId: z.ZodString;
|
|
32869
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32870
|
+
type: z.ZodLiteral<"agent.config.apply.request">;
|
|
32871
|
+
agentId: z.ZodString;
|
|
32872
|
+
config: z.ZodObject<{
|
|
32873
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32874
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
32875
|
+
thinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32876
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
32877
|
+
}, z.core.$strip>;
|
|
32878
|
+
requestId: z.ZodString;
|
|
32171
32879
|
}, z.core.$strip>, z.ZodObject<{
|
|
32172
32880
|
type: z.ZodLiteral<"agent.detach.request">;
|
|
32173
32881
|
agentId: z.ZodString;
|
|
@@ -32241,6 +32949,11 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
32241
32949
|
type: z.ZodLiteral<"checkout.refresh.request">;
|
|
32242
32950
|
cwd: z.ZodString;
|
|
32243
32951
|
requestId: z.ZodString;
|
|
32952
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32953
|
+
type: z.ZodLiteral<"checkout.discard_changes.request">;
|
|
32954
|
+
cwd: z.ZodString;
|
|
32955
|
+
paths: z.ZodArray<z.ZodString>;
|
|
32956
|
+
requestId: z.ZodString;
|
|
32244
32957
|
}, z.core.$strip>, z.ZodObject<{
|
|
32245
32958
|
type: z.ZodLiteral<"checkout_pr_create_request">;
|
|
32246
32959
|
cwd: z.ZodString;
|
|
@@ -32771,6 +33484,32 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
32771
33484
|
expectedModifiedAt: z.ZodString;
|
|
32772
33485
|
expectedRevision: z.ZodOptional<z.ZodString>;
|
|
32773
33486
|
requestId: z.ZodString;
|
|
33487
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33488
|
+
type: z.ZodLiteral<"fs.entry.create.request">;
|
|
33489
|
+
cwd: z.ZodString;
|
|
33490
|
+
parentPath: z.ZodString;
|
|
33491
|
+
name: z.ZodString;
|
|
33492
|
+
kind: z.ZodEnum<{
|
|
33493
|
+
file: "file";
|
|
33494
|
+
directory: "directory";
|
|
33495
|
+
}>;
|
|
33496
|
+
requestId: z.ZodString;
|
|
33497
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33498
|
+
type: z.ZodLiteral<"fs.entry.rename.request">;
|
|
33499
|
+
cwd: z.ZodString;
|
|
33500
|
+
path: z.ZodString;
|
|
33501
|
+
name: z.ZodString;
|
|
33502
|
+
requestId: z.ZodString;
|
|
33503
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33504
|
+
type: z.ZodLiteral<"fs.entry.duplicate.request">;
|
|
33505
|
+
cwd: z.ZodString;
|
|
33506
|
+
path: z.ZodString;
|
|
33507
|
+
requestId: z.ZodString;
|
|
33508
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33509
|
+
type: z.ZodLiteral<"fs.entry.delete.request">;
|
|
33510
|
+
cwd: z.ZodString;
|
|
33511
|
+
path: z.ZodString;
|
|
33512
|
+
requestId: z.ZodString;
|
|
32774
33513
|
}, z.core.$strip>, z.ZodObject<{
|
|
32775
33514
|
type: z.ZodLiteral<"project_icon_request">;
|
|
32776
33515
|
cwd: z.ZodString;
|
|
@@ -32825,6 +33564,10 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
32825
33564
|
}, z.core.$strip>, z.ZodObject<{
|
|
32826
33565
|
type: z.ZodLiteral<"register_push_token">;
|
|
32827
33566
|
token: z.ZodString;
|
|
33567
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33568
|
+
type: z.ZodLiteral<"push.unregister.request">;
|
|
33569
|
+
token: z.ZodString;
|
|
33570
|
+
requestId: z.ZodString;
|
|
32828
33571
|
}, z.core.$strip>, z.ZodObject<{
|
|
32829
33572
|
type: z.ZodLiteral<"list_terminals_request">;
|
|
32830
33573
|
cwd: z.ZodOptional<z.ZodString>;
|
|
@@ -32999,15 +33742,8 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
32999
33742
|
worktree: "worktree";
|
|
33000
33743
|
}>>;
|
|
33001
33744
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33002
|
-
|
|
33003
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
33004
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
33005
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
33745
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
33006
33746
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
33007
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
33008
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
33009
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
33010
|
-
}, z.core.$strip>>;
|
|
33011
33747
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
33012
33748
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
33013
33749
|
}, z.core.$strip>;
|
|
@@ -33185,6 +33921,33 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
33185
33921
|
providerUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
33186
33922
|
}, z.core.$strip>>;
|
|
33187
33923
|
success: z.ZodBoolean;
|
|
33924
|
+
toolPolicyApplied: z.ZodOptional<z.ZodLiteral<true>>;
|
|
33925
|
+
error: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
33926
|
+
code: z.ZodLiteral<"provider_options_invalid">;
|
|
33927
|
+
provider: z.ZodString;
|
|
33928
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
33929
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
33930
|
+
message: z.ZodString;
|
|
33931
|
+
}, z.core.$strip>>;
|
|
33932
|
+
message: z.ZodString;
|
|
33933
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33934
|
+
code: z.ZodLiteral<"tool_policy_unsupported">;
|
|
33935
|
+
provider: z.ZodString;
|
|
33936
|
+
message: z.ZodString;
|
|
33937
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33938
|
+
code: z.ZodLiteral<"create_failed">;
|
|
33939
|
+
message: z.ZodString;
|
|
33940
|
+
}, z.core.$strip>], "code">>;
|
|
33941
|
+
}, z.core.$strip>;
|
|
33942
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33943
|
+
type: z.ZodLiteral<"hub.execution.agent.validate.response">;
|
|
33944
|
+
payload: z.ZodObject<{
|
|
33945
|
+
requestId: z.ZodString;
|
|
33946
|
+
valid: z.ZodBoolean;
|
|
33947
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
33948
|
+
path: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
33949
|
+
message: z.ZodString;
|
|
33950
|
+
}, z.core.$strip>>;
|
|
33188
33951
|
error: z.ZodNullable<z.ZodString>;
|
|
33189
33952
|
}, z.core.$strip>;
|
|
33190
33953
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -33592,6 +34355,11 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
33592
34355
|
serverReceivedAt: z.ZodNumber;
|
|
33593
34356
|
serverSentAt: z.ZodNumber;
|
|
33594
34357
|
}, z.core.$strip>;
|
|
34358
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34359
|
+
type: z.ZodLiteral<"push.unregister.response">;
|
|
34360
|
+
payload: z.ZodObject<{
|
|
34361
|
+
requestId: z.ZodString;
|
|
34362
|
+
}, z.core.$strip>;
|
|
33595
34363
|
}, z.core.$strip>, z.ZodObject<{
|
|
33596
34364
|
type: z.ZodLiteral<"rpc_error">;
|
|
33597
34365
|
payload: z.ZodObject<{
|
|
@@ -33861,8 +34629,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
33861
34629
|
name: z.ZodString;
|
|
33862
34630
|
status: z.ZodEnum<{
|
|
33863
34631
|
success: "success";
|
|
33864
|
-
failure: "failure";
|
|
33865
34632
|
pending: "pending";
|
|
34633
|
+
failure: "failure";
|
|
33866
34634
|
skipped: "skipped";
|
|
33867
34635
|
cancelled: "cancelled";
|
|
33868
34636
|
}>;
|
|
@@ -33872,9 +34640,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
33872
34640
|
}, z.core.$strip>>>;
|
|
33873
34641
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
33874
34642
|
success: "success";
|
|
34643
|
+
pending: "pending";
|
|
33875
34644
|
none: "none";
|
|
33876
34645
|
failure: "failure";
|
|
33877
|
-
pending: "pending";
|
|
33878
34646
|
}>>;
|
|
33879
34647
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
33880
34648
|
pending: "pending";
|
|
@@ -34030,12 +34798,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
34030
34798
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
34031
34799
|
checks?: {
|
|
34032
34800
|
name: string;
|
|
34033
|
-
status: "success" | "
|
|
34801
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
34034
34802
|
url: string | null;
|
|
34035
34803
|
workflow?: string | undefined;
|
|
34036
34804
|
duration?: string | undefined;
|
|
34037
34805
|
}[] | undefined;
|
|
34038
|
-
checksStatus?: "success" | "
|
|
34806
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
34039
34807
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
34040
34808
|
repoOwner?: string | undefined;
|
|
34041
34809
|
repoName?: string | undefined;
|
|
@@ -34138,12 +34906,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
34138
34906
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
34139
34907
|
checks?: {
|
|
34140
34908
|
name: string;
|
|
34141
|
-
status: "success" | "
|
|
34909
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
34142
34910
|
url: string | null;
|
|
34143
34911
|
workflow?: string | undefined;
|
|
34144
34912
|
duration?: string | undefined;
|
|
34145
34913
|
}[] | undefined;
|
|
34146
|
-
checksStatus?: "success" | "
|
|
34914
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
34147
34915
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
34148
34916
|
repoOwner?: string | undefined;
|
|
34149
34917
|
repoName?: string | undefined;
|
|
@@ -34930,8 +35698,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
34930
35698
|
name: z.ZodString;
|
|
34931
35699
|
status: z.ZodEnum<{
|
|
34932
35700
|
success: "success";
|
|
34933
|
-
failure: "failure";
|
|
34934
35701
|
pending: "pending";
|
|
35702
|
+
failure: "failure";
|
|
34935
35703
|
skipped: "skipped";
|
|
34936
35704
|
cancelled: "cancelled";
|
|
34937
35705
|
}>;
|
|
@@ -34941,9 +35709,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
34941
35709
|
}, z.core.$strip>>>;
|
|
34942
35710
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
34943
35711
|
success: "success";
|
|
35712
|
+
pending: "pending";
|
|
34944
35713
|
none: "none";
|
|
34945
35714
|
failure: "failure";
|
|
34946
|
-
pending: "pending";
|
|
34947
35715
|
}>>;
|
|
34948
35716
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
34949
35717
|
pending: "pending";
|
|
@@ -35099,12 +35867,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35099
35867
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
35100
35868
|
checks?: {
|
|
35101
35869
|
name: string;
|
|
35102
|
-
status: "success" | "
|
|
35870
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
35103
35871
|
url: string | null;
|
|
35104
35872
|
workflow?: string | undefined;
|
|
35105
35873
|
duration?: string | undefined;
|
|
35106
35874
|
}[] | undefined;
|
|
35107
|
-
checksStatus?: "success" | "
|
|
35875
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
35108
35876
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
35109
35877
|
repoOwner?: string | undefined;
|
|
35110
35878
|
repoName?: string | undefined;
|
|
@@ -35207,12 +35975,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35207
35975
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
35208
35976
|
checks?: {
|
|
35209
35977
|
name: string;
|
|
35210
|
-
status: "success" | "
|
|
35978
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
35211
35979
|
url: string | null;
|
|
35212
35980
|
workflow?: string | undefined;
|
|
35213
35981
|
duration?: string | undefined;
|
|
35214
35982
|
}[] | undefined;
|
|
35215
|
-
checksStatus?: "success" | "
|
|
35983
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
35216
35984
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
35217
35985
|
repoOwner?: string | undefined;
|
|
35218
35986
|
repoName?: string | undefined;
|
|
@@ -35412,8 +36180,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35412
36180
|
name: z.ZodString;
|
|
35413
36181
|
status: z.ZodEnum<{
|
|
35414
36182
|
success: "success";
|
|
35415
|
-
failure: "failure";
|
|
35416
36183
|
pending: "pending";
|
|
36184
|
+
failure: "failure";
|
|
35417
36185
|
skipped: "skipped";
|
|
35418
36186
|
cancelled: "cancelled";
|
|
35419
36187
|
}>;
|
|
@@ -35423,9 +36191,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35423
36191
|
}, z.core.$strip>>>;
|
|
35424
36192
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
35425
36193
|
success: "success";
|
|
36194
|
+
pending: "pending";
|
|
35426
36195
|
none: "none";
|
|
35427
36196
|
failure: "failure";
|
|
35428
|
-
pending: "pending";
|
|
35429
36197
|
}>>;
|
|
35430
36198
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
35431
36199
|
pending: "pending";
|
|
@@ -35581,12 +36349,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35581
36349
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
35582
36350
|
checks?: {
|
|
35583
36351
|
name: string;
|
|
35584
|
-
status: "success" | "
|
|
36352
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
35585
36353
|
url: string | null;
|
|
35586
36354
|
workflow?: string | undefined;
|
|
35587
36355
|
duration?: string | undefined;
|
|
35588
36356
|
}[] | undefined;
|
|
35589
|
-
checksStatus?: "success" | "
|
|
36357
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
35590
36358
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
35591
36359
|
repoOwner?: string | undefined;
|
|
35592
36360
|
repoName?: string | undefined;
|
|
@@ -35689,12 +36457,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35689
36457
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
35690
36458
|
checks?: {
|
|
35691
36459
|
name: string;
|
|
35692
|
-
status: "success" | "
|
|
36460
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
35693
36461
|
url: string | null;
|
|
35694
36462
|
workflow?: string | undefined;
|
|
35695
36463
|
duration?: string | undefined;
|
|
35696
36464
|
}[] | undefined;
|
|
35697
|
-
checksStatus?: "success" | "
|
|
36465
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
35698
36466
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
35699
36467
|
repoOwner?: string | undefined;
|
|
35700
36468
|
repoName?: string | undefined;
|
|
@@ -36703,8 +37471,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
36703
37471
|
name: z.ZodString;
|
|
36704
37472
|
status: z.ZodEnum<{
|
|
36705
37473
|
success: "success";
|
|
36706
|
-
failure: "failure";
|
|
36707
37474
|
pending: "pending";
|
|
37475
|
+
failure: "failure";
|
|
36708
37476
|
skipped: "skipped";
|
|
36709
37477
|
cancelled: "cancelled";
|
|
36710
37478
|
}>;
|
|
@@ -36714,9 +37482,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
36714
37482
|
}, z.core.$strip>>>;
|
|
36715
37483
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
36716
37484
|
success: "success";
|
|
37485
|
+
pending: "pending";
|
|
36717
37486
|
none: "none";
|
|
36718
37487
|
failure: "failure";
|
|
36719
|
-
pending: "pending";
|
|
36720
37488
|
}>>;
|
|
36721
37489
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
36722
37490
|
pending: "pending";
|
|
@@ -36872,12 +37640,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
36872
37640
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
36873
37641
|
checks?: {
|
|
36874
37642
|
name: string;
|
|
36875
|
-
status: "success" | "
|
|
37643
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
36876
37644
|
url: string | null;
|
|
36877
37645
|
workflow?: string | undefined;
|
|
36878
37646
|
duration?: string | undefined;
|
|
36879
37647
|
}[] | undefined;
|
|
36880
|
-
checksStatus?: "success" | "
|
|
37648
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
36881
37649
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
36882
37650
|
repoOwner?: string | undefined;
|
|
36883
37651
|
repoName?: string | undefined;
|
|
@@ -36980,12 +37748,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
36980
37748
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
36981
37749
|
checks?: {
|
|
36982
37750
|
name: string;
|
|
36983
|
-
status: "success" | "
|
|
37751
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
36984
37752
|
url: string | null;
|
|
36985
37753
|
workflow?: string | undefined;
|
|
36986
37754
|
duration?: string | undefined;
|
|
36987
37755
|
}[] | undefined;
|
|
36988
|
-
checksStatus?: "success" | "
|
|
37756
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
36989
37757
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
36990
37758
|
repoOwner?: string | undefined;
|
|
36991
37759
|
repoName?: string | undefined;
|
|
@@ -37206,6 +37974,18 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37206
37974
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
37207
37975
|
icon: z.ZodOptional<z.ZodString>;
|
|
37208
37976
|
}, z.core.$loose>>>;
|
|
37977
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
37978
|
+
id: z.ZodString;
|
|
37979
|
+
name: z.ZodString;
|
|
37980
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
37981
|
+
color: z.ZodOptional<z.ZodString>;
|
|
37982
|
+
provider: z.ZodString;
|
|
37983
|
+
model: z.ZodOptional<z.ZodString>;
|
|
37984
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
37985
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
37986
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
37987
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
37988
|
+
}, z.core.$loose>>>;
|
|
37209
37989
|
}, z.core.$loose>;
|
|
37210
37990
|
}, z.core.$loose>;
|
|
37211
37991
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -37248,6 +38028,18 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37248
38028
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
37249
38029
|
icon: z.ZodOptional<z.ZodString>;
|
|
37250
38030
|
}, z.core.$loose>>>;
|
|
38031
|
+
agentProfiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
38032
|
+
id: z.ZodString;
|
|
38033
|
+
name: z.ZodString;
|
|
38034
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
38035
|
+
color: z.ZodOptional<z.ZodString>;
|
|
38036
|
+
provider: z.ZodString;
|
|
38037
|
+
model: z.ZodOptional<z.ZodString>;
|
|
38038
|
+
modeId: z.ZodOptional<z.ZodString>;
|
|
38039
|
+
thinkingOptionId: z.ZodOptional<z.ZodString>;
|
|
38040
|
+
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
38041
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
38042
|
+
}, z.core.$loose>>>;
|
|
37251
38043
|
}, z.core.$loose>;
|
|
37252
38044
|
}, z.core.$loose>;
|
|
37253
38045
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -37402,6 +38194,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37402
38194
|
error: z.ZodNullable<z.ZodString>;
|
|
37403
38195
|
notice: z.ZodOptional<z.ZodNullable<z.ZodType<AgentProviderNotice, unknown, z.core.$ZodTypeInternals<AgentProviderNotice, unknown>>>>;
|
|
37404
38196
|
}, z.core.$strip>;
|
|
38197
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38198
|
+
type: z.ZodLiteral<"agent.config.apply.response">;
|
|
38199
|
+
payload: z.ZodObject<{
|
|
38200
|
+
requestId: z.ZodString;
|
|
38201
|
+
agentId: z.ZodString;
|
|
38202
|
+
accepted: z.ZodBoolean;
|
|
38203
|
+
error: z.ZodNullable<z.ZodString>;
|
|
38204
|
+
notice: z.ZodOptional<z.ZodNullable<z.ZodType<AgentProviderNotice, unknown, z.core.$ZodTypeInternals<AgentProviderNotice, unknown>>>>;
|
|
38205
|
+
}, z.core.$strip>;
|
|
37405
38206
|
}, z.core.$strip>, z.ZodObject<{
|
|
37406
38207
|
type: z.ZodLiteral<"agent.detach.response">;
|
|
37407
38208
|
payload: z.ZodObject<{
|
|
@@ -37857,6 +38658,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37857
38658
|
cwd: z.ZodString;
|
|
37858
38659
|
files: z.ZodArray<z.ZodObject<{
|
|
37859
38660
|
path: z.ZodString;
|
|
38661
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
37860
38662
|
isNew: z.ZodBoolean;
|
|
37861
38663
|
isDeleted: z.ZodBoolean;
|
|
37862
38664
|
additions: z.ZodNumber;
|
|
@@ -37905,6 +38707,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37905
38707
|
cwd: z.ZodString;
|
|
37906
38708
|
files: z.ZodArray<z.ZodObject<{
|
|
37907
38709
|
path: z.ZodString;
|
|
38710
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
37908
38711
|
isNew: z.ZodBoolean;
|
|
37909
38712
|
isDeleted: z.ZodBoolean;
|
|
37910
38713
|
additions: z.ZodNumber;
|
|
@@ -38041,6 +38844,22 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
38041
38844
|
}, z.core.$strip>>;
|
|
38042
38845
|
requestId: z.ZodString;
|
|
38043
38846
|
}, z.core.$strip>;
|
|
38847
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38848
|
+
type: z.ZodLiteral<"checkout.discard_changes.response">;
|
|
38849
|
+
payload: z.ZodObject<{
|
|
38850
|
+
cwd: z.ZodString;
|
|
38851
|
+
success: z.ZodBoolean;
|
|
38852
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
38853
|
+
code: z.ZodEnum<{
|
|
38854
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
38855
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
38856
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
38857
|
+
UNKNOWN: "UNKNOWN";
|
|
38858
|
+
}>;
|
|
38859
|
+
message: z.ZodString;
|
|
38860
|
+
}, z.core.$strip>>;
|
|
38861
|
+
requestId: z.ZodString;
|
|
38862
|
+
}, z.core.$strip>;
|
|
38044
38863
|
}, z.core.$strip>, z.ZodObject<{
|
|
38045
38864
|
type: z.ZodLiteral<"checkout_pr_create_response">;
|
|
38046
38865
|
payload: z.ZodObject<{
|
|
@@ -38152,6 +38971,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
38152
38971
|
path: z.ZodString;
|
|
38153
38972
|
file: z.ZodNullable<z.ZodObject<{
|
|
38154
38973
|
path: z.ZodString;
|
|
38974
|
+
oldPath: z.ZodOptional<z.ZodString>;
|
|
38155
38975
|
isNew: z.ZodBoolean;
|
|
38156
38976
|
isDeleted: z.ZodBoolean;
|
|
38157
38977
|
additions: z.ZodNumber;
|
|
@@ -38736,8 +39556,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
38736
39556
|
name: z.ZodString;
|
|
38737
39557
|
status: z.ZodEnum<{
|
|
38738
39558
|
success: "success";
|
|
38739
|
-
failure: "failure";
|
|
38740
39559
|
pending: "pending";
|
|
39560
|
+
failure: "failure";
|
|
38741
39561
|
skipped: "skipped";
|
|
38742
39562
|
cancelled: "cancelled";
|
|
38743
39563
|
}>;
|
|
@@ -38747,9 +39567,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
38747
39567
|
}, z.core.$strip>>>;
|
|
38748
39568
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
38749
39569
|
success: "success";
|
|
39570
|
+
pending: "pending";
|
|
38750
39571
|
none: "none";
|
|
38751
39572
|
failure: "failure";
|
|
38752
|
-
pending: "pending";
|
|
38753
39573
|
}>>;
|
|
38754
39574
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
38755
39575
|
pending: "pending";
|
|
@@ -38905,12 +39725,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
38905
39725
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
38906
39726
|
checks?: {
|
|
38907
39727
|
name: string;
|
|
38908
|
-
status: "success" | "
|
|
39728
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
38909
39729
|
url: string | null;
|
|
38910
39730
|
workflow?: string | undefined;
|
|
38911
39731
|
duration?: string | undefined;
|
|
38912
39732
|
}[] | undefined;
|
|
38913
|
-
checksStatus?: "success" | "
|
|
39733
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
38914
39734
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
38915
39735
|
repoOwner?: string | undefined;
|
|
38916
39736
|
repoName?: string | undefined;
|
|
@@ -39013,12 +39833,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39013
39833
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
39014
39834
|
checks?: {
|
|
39015
39835
|
name: string;
|
|
39016
|
-
status: "success" | "
|
|
39836
|
+
status: "success" | "pending" | "failure" | "skipped" | "cancelled";
|
|
39017
39837
|
url: string | null;
|
|
39018
39838
|
workflow?: string | undefined;
|
|
39019
39839
|
duration?: string | undefined;
|
|
39020
39840
|
}[] | undefined;
|
|
39021
|
-
checksStatus?: "success" | "
|
|
39841
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
39022
39842
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
39023
39843
|
repoOwner?: string | undefined;
|
|
39024
39844
|
repoName?: string | undefined;
|
|
@@ -39171,6 +39991,45 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39171
39991
|
}, z.core.$strip>], "status">;
|
|
39172
39992
|
requestId: z.ZodString;
|
|
39173
39993
|
}, z.core.$strip>;
|
|
39994
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
39995
|
+
type: z.ZodLiteral<"fs.entry.create.response">;
|
|
39996
|
+
payload: z.ZodObject<{
|
|
39997
|
+
cwd: z.ZodString;
|
|
39998
|
+
parentPath: z.ZodString;
|
|
39999
|
+
path: z.ZodNullable<z.ZodString>;
|
|
40000
|
+
success: z.ZodBoolean;
|
|
40001
|
+
error: z.ZodNullable<z.ZodString>;
|
|
40002
|
+
requestId: z.ZodString;
|
|
40003
|
+
}, z.core.$strip>;
|
|
40004
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40005
|
+
type: z.ZodLiteral<"fs.entry.rename.response">;
|
|
40006
|
+
payload: z.ZodObject<{
|
|
40007
|
+
cwd: z.ZodString;
|
|
40008
|
+
path: z.ZodString;
|
|
40009
|
+
renamedPath: z.ZodNullable<z.ZodString>;
|
|
40010
|
+
success: z.ZodBoolean;
|
|
40011
|
+
error: z.ZodNullable<z.ZodString>;
|
|
40012
|
+
requestId: z.ZodString;
|
|
40013
|
+
}, z.core.$strip>;
|
|
40014
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40015
|
+
type: z.ZodLiteral<"fs.entry.duplicate.response">;
|
|
40016
|
+
payload: z.ZodObject<{
|
|
40017
|
+
cwd: z.ZodString;
|
|
40018
|
+
path: z.ZodString;
|
|
40019
|
+
duplicatedPath: z.ZodNullable<z.ZodString>;
|
|
40020
|
+
success: z.ZodBoolean;
|
|
40021
|
+
error: z.ZodNullable<z.ZodString>;
|
|
40022
|
+
requestId: z.ZodString;
|
|
40023
|
+
}, z.core.$strip>;
|
|
40024
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40025
|
+
type: z.ZodLiteral<"fs.entry.delete.response">;
|
|
40026
|
+
payload: z.ZodObject<{
|
|
40027
|
+
cwd: z.ZodString;
|
|
40028
|
+
path: z.ZodString;
|
|
40029
|
+
success: z.ZodBoolean;
|
|
40030
|
+
error: z.ZodNullable<z.ZodString>;
|
|
40031
|
+
requestId: z.ZodString;
|
|
40032
|
+
}, z.core.$strip>;
|
|
39174
40033
|
}, z.core.$strip>, z.ZodObject<{
|
|
39175
40034
|
type: z.ZodLiteral<"fs.file.update">;
|
|
39176
40035
|
payload: z.ZodObject<{
|
|
@@ -39324,6 +40183,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39324
40183
|
}, z.core.$strip>, z.ZodObject<{
|
|
39325
40184
|
type: z.ZodLiteral<"get_providers_snapshot_response">;
|
|
39326
40185
|
payload: z.ZodObject<{
|
|
40186
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
39327
40187
|
entries: z.ZodArray<z.ZodObject<{
|
|
39328
40188
|
provider: z.ZodString;
|
|
39329
40189
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
@@ -39848,15 +40708,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39848
40708
|
worktree: "worktree";
|
|
39849
40709
|
}>>;
|
|
39850
40710
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39851
|
-
|
|
39852
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
39853
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
39854
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
40711
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
39855
40712
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
39856
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
39857
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
39858
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
39859
|
-
}, z.core.$strip>>;
|
|
39860
40713
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
39861
40714
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
39862
40715
|
}, z.core.$strip>;
|
|
@@ -39909,15 +40762,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39909
40762
|
worktree: "worktree";
|
|
39910
40763
|
}>>;
|
|
39911
40764
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39912
|
-
|
|
39913
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
39914
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
39915
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
40765
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
39916
40766
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
39917
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
39918
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
39919
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
39920
|
-
}, z.core.$strip>>;
|
|
39921
40767
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
39922
40768
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
39923
40769
|
}, z.core.$strip>;
|
|
@@ -39964,15 +40810,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39964
40810
|
worktree: "worktree";
|
|
39965
40811
|
}>>;
|
|
39966
40812
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39967
|
-
|
|
39968
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
39969
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
39970
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
40813
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
39971
40814
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
39972
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
39973
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
39974
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
39975
|
-
}, z.core.$strip>>;
|
|
39976
40815
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
39977
40816
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
39978
40817
|
}, z.core.$strip>;
|
|
@@ -40067,15 +40906,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
40067
40906
|
worktree: "worktree";
|
|
40068
40907
|
}>>;
|
|
40069
40908
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
40070
|
-
|
|
40071
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
40072
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
40073
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
40909
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
40074
40910
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40075
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
40076
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
40077
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
40078
|
-
}, z.core.$strip>>;
|
|
40079
40911
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
40080
40912
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40081
40913
|
}, z.core.$strip>;
|
|
@@ -40128,15 +40960,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
40128
40960
|
worktree: "worktree";
|
|
40129
40961
|
}>>;
|
|
40130
40962
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
40131
|
-
|
|
40132
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
40133
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
40134
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
40963
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
40135
40964
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40136
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
40137
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
40138
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
40139
|
-
}, z.core.$strip>>;
|
|
40140
40965
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
40141
40966
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40142
40967
|
}, z.core.$strip>;
|
|
@@ -40190,15 +41015,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
40190
41015
|
worktree: "worktree";
|
|
40191
41016
|
}>>;
|
|
40192
41017
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
40193
|
-
|
|
40194
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
40195
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
40196
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
41018
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
40197
41019
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40198
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
40199
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
40200
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
40201
|
-
}, z.core.$strip>>;
|
|
40202
41020
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
40203
41021
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40204
41022
|
}, z.core.$strip>;
|
|
@@ -40266,15 +41084,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
40266
41084
|
worktree: "worktree";
|
|
40267
41085
|
}>>;
|
|
40268
41086
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
40269
|
-
|
|
40270
|
-
sandboxMode: z.ZodOptional<z.ZodString>;
|
|
40271
|
-
networkAccess: z.ZodOptional<z.ZodBoolean>;
|
|
40272
|
-
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
41087
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodJSONSchema>>;
|
|
40273
41088
|
featureValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40274
|
-
extra: z.ZodOptional<z.ZodObject<{
|
|
40275
|
-
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
40276
|
-
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
40277
|
-
}, z.core.$strip>>;
|
|
40278
41089
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
40279
41090
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40280
41091
|
}, z.core.$strip>;
|