@getpaseo/protocol 0.6.1 → 0.7.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/check-traits.d.ts +11 -0
- package/dist/check-traits.js +10 -0
- package/dist/client-capabilities.d.ts +1 -0
- package/dist/client-capabilities.js +3 -0
- package/dist/generated/validation/ws-outbound.aot.js +33775 -33330
- package/dist/gitea-status.d.ts +10 -0
- package/dist/gitea-status.js +23 -0
- package/dist/gitlab-pipeline.d.ts +10 -0
- package/dist/gitlab-pipeline.js +17 -0
- package/dist/messages.d.ts +579 -24
- package/dist/messages.js +150 -40
- package/dist/ssh-transport.d.ts +11 -0
- package/dist/ssh-transport.js +72 -0
- package/dist/validation/ws-outbound-schema-metadata.d.ts +116 -4
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -1457,6 +1457,24 @@ export declare const PluginDirectoryInspectRequestSchema: z.ZodObject<{
|
|
|
1457
1457
|
requestId: z.ZodString;
|
|
1458
1458
|
path: z.ZodString;
|
|
1459
1459
|
}, z.core.$strip>;
|
|
1460
|
+
export declare const PluginSourceInstallRequestSchema: z.ZodObject<{
|
|
1461
|
+
type: z.ZodLiteral<"plugin.source.install.request">;
|
|
1462
|
+
requestId: z.ZodString;
|
|
1463
|
+
source: z.ZodString;
|
|
1464
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1465
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
1466
|
+
pluginPath: z.ZodOptional<z.ZodString>;
|
|
1467
|
+
}, z.core.$strip>;
|
|
1468
|
+
export declare const PluginSourceStatusRequestSchema: z.ZodObject<{
|
|
1469
|
+
type: z.ZodLiteral<"plugin.source.status.request">;
|
|
1470
|
+
requestId: z.ZodString;
|
|
1471
|
+
pluginId: z.ZodOptional<z.ZodString>;
|
|
1472
|
+
}, z.core.$strip>;
|
|
1473
|
+
export declare const PluginSourceUpdateRequestSchema: z.ZodObject<{
|
|
1474
|
+
type: z.ZodLiteral<"plugin.source.update.request">;
|
|
1475
|
+
requestId: z.ZodString;
|
|
1476
|
+
pluginId: z.ZodOptional<z.ZodString>;
|
|
1477
|
+
}, z.core.$strip>;
|
|
1460
1478
|
export declare const PluginReloadRequestSchema: z.ZodObject<{
|
|
1461
1479
|
type: z.ZodLiteral<"plugin.reload.request">;
|
|
1462
1480
|
requestId: z.ZodString;
|
|
@@ -4279,6 +4297,21 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
4279
4297
|
type: z.ZodLiteral<"plugin.directory.inspect.request">;
|
|
4280
4298
|
requestId: z.ZodString;
|
|
4281
4299
|
path: z.ZodString;
|
|
4300
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4301
|
+
type: z.ZodLiteral<"plugin.source.install.request">;
|
|
4302
|
+
requestId: z.ZodString;
|
|
4303
|
+
source: z.ZodString;
|
|
4304
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4305
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
4306
|
+
pluginPath: z.ZodOptional<z.ZodString>;
|
|
4307
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4308
|
+
type: z.ZodLiteral<"plugin.source.status.request">;
|
|
4309
|
+
requestId: z.ZodString;
|
|
4310
|
+
pluginId: z.ZodOptional<z.ZodString>;
|
|
4311
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4312
|
+
type: z.ZodLiteral<"plugin.source.update.request">;
|
|
4313
|
+
requestId: z.ZodString;
|
|
4314
|
+
pluginId: z.ZodOptional<z.ZodString>;
|
|
4282
4315
|
}, z.core.$strip>, z.ZodObject<{
|
|
4283
4316
|
type: z.ZodLiteral<"plugin.reload.request">;
|
|
4284
4317
|
requestId: z.ZodString;
|
|
@@ -5978,6 +6011,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5978
6011
|
plugins: z.ZodOptional<z.ZodBoolean>;
|
|
5979
6012
|
pluginManagement: z.ZodOptional<z.ZodBoolean>;
|
|
5980
6013
|
pluginLogs: z.ZodOptional<z.ZodBoolean>;
|
|
6014
|
+
pluginGitManagement: z.ZodOptional<z.ZodBoolean>;
|
|
5981
6015
|
pluginThemes: z.ZodOptional<z.ZodBoolean>;
|
|
5982
6016
|
skillManagement: z.ZodOptional<z.ZodBoolean>;
|
|
5983
6017
|
"terminal-restore-modes": z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6060,6 +6094,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6060
6094
|
plugins?: boolean | undefined;
|
|
6061
6095
|
pluginManagement?: boolean | undefined;
|
|
6062
6096
|
pluginLogs?: boolean | undefined;
|
|
6097
|
+
pluginGitManagement?: boolean | undefined;
|
|
6063
6098
|
pluginThemes?: boolean | undefined;
|
|
6064
6099
|
skillManagement?: boolean | undefined;
|
|
6065
6100
|
"terminal-restore-modes"?: boolean | undefined;
|
|
@@ -6143,6 +6178,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6143
6178
|
plugins?: boolean | undefined;
|
|
6144
6179
|
pluginManagement?: boolean | undefined;
|
|
6145
6180
|
pluginLogs?: boolean | undefined;
|
|
6181
|
+
pluginGitManagement?: boolean | undefined;
|
|
6146
6182
|
pluginThemes?: boolean | undefined;
|
|
6147
6183
|
skillManagement?: boolean | undefined;
|
|
6148
6184
|
"terminal-restore-modes"?: boolean | undefined;
|
|
@@ -7007,6 +7043,7 @@ export declare const WorkspaceGitHubRuntimePayloadSchema: z.ZodNullable<z.ZodOpt
|
|
|
7007
7043
|
url: z.ZodNullable<z.ZodString>;
|
|
7008
7044
|
workflow: z.ZodOptional<z.ZodString>;
|
|
7009
7045
|
duration: z.ZodOptional<z.ZodString>;
|
|
7046
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7010
7047
|
}, z.core.$strip>>>;
|
|
7011
7048
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
7012
7049
|
success: "success";
|
|
@@ -7128,6 +7165,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
7128
7165
|
url: z.ZodNullable<z.ZodString>;
|
|
7129
7166
|
workflow: z.ZodOptional<z.ZodString>;
|
|
7130
7167
|
duration: z.ZodOptional<z.ZodString>;
|
|
7168
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7131
7169
|
}, z.core.$strip>>>;
|
|
7132
7170
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
7133
7171
|
success: "success";
|
|
@@ -7295,6 +7333,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
7295
7333
|
url: string | null;
|
|
7296
7334
|
workflow?: string | undefined;
|
|
7297
7335
|
duration?: string | undefined;
|
|
7336
|
+
traits?: string[] | undefined;
|
|
7298
7337
|
}[] | undefined;
|
|
7299
7338
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
7300
7339
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -7405,6 +7444,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
7405
7444
|
url: string | null;
|
|
7406
7445
|
workflow?: string | undefined;
|
|
7407
7446
|
duration?: string | undefined;
|
|
7447
|
+
traits?: string[] | undefined;
|
|
7408
7448
|
}[] | undefined;
|
|
7409
7449
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
7410
7450
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -8342,6 +8382,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
8342
8382
|
url: z.ZodNullable<z.ZodString>;
|
|
8343
8383
|
workflow: z.ZodOptional<z.ZodString>;
|
|
8344
8384
|
duration: z.ZodOptional<z.ZodString>;
|
|
8385
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8345
8386
|
}, z.core.$strip>>>;
|
|
8346
8387
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
8347
8388
|
success: "success";
|
|
@@ -8509,6 +8550,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
8509
8550
|
url: string | null;
|
|
8510
8551
|
workflow?: string | undefined;
|
|
8511
8552
|
duration?: string | undefined;
|
|
8553
|
+
traits?: string[] | undefined;
|
|
8512
8554
|
}[] | undefined;
|
|
8513
8555
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
8514
8556
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -8619,6 +8661,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
8619
8661
|
url: string | null;
|
|
8620
8662
|
workflow?: string | undefined;
|
|
8621
8663
|
duration?: string | undefined;
|
|
8664
|
+
traits?: string[] | undefined;
|
|
8622
8665
|
}[] | undefined;
|
|
8623
8666
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
8624
8667
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -8808,6 +8851,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
8808
8851
|
url: z.ZodNullable<z.ZodString>;
|
|
8809
8852
|
workflow: z.ZodOptional<z.ZodString>;
|
|
8810
8853
|
duration: z.ZodOptional<z.ZodString>;
|
|
8854
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8811
8855
|
}, z.core.$strip>>>;
|
|
8812
8856
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
8813
8857
|
success: "success";
|
|
@@ -8975,6 +9019,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
8975
9019
|
url: string | null;
|
|
8976
9020
|
workflow?: string | undefined;
|
|
8977
9021
|
duration?: string | undefined;
|
|
9022
|
+
traits?: string[] | undefined;
|
|
8978
9023
|
}[] | undefined;
|
|
8979
9024
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
8980
9025
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -9085,6 +9130,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
9085
9130
|
url: string | null;
|
|
9086
9131
|
workflow?: string | undefined;
|
|
9087
9132
|
duration?: string | undefined;
|
|
9133
|
+
traits?: string[] | undefined;
|
|
9088
9134
|
}[] | undefined;
|
|
9089
9135
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
9090
9136
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -9569,6 +9615,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
9569
9615
|
url: z.ZodNullable<z.ZodString>;
|
|
9570
9616
|
workflow: z.ZodOptional<z.ZodString>;
|
|
9571
9617
|
duration: z.ZodOptional<z.ZodString>;
|
|
9618
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9572
9619
|
}, z.core.$strip>>>;
|
|
9573
9620
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
9574
9621
|
success: "success";
|
|
@@ -9736,6 +9783,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
9736
9783
|
url: string | null;
|
|
9737
9784
|
workflow?: string | undefined;
|
|
9738
9785
|
duration?: string | undefined;
|
|
9786
|
+
traits?: string[] | undefined;
|
|
9739
9787
|
}[] | undefined;
|
|
9740
9788
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
9741
9789
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -9846,6 +9894,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
9846
9894
|
url: string | null;
|
|
9847
9895
|
workflow?: string | undefined;
|
|
9848
9896
|
duration?: string | undefined;
|
|
9897
|
+
traits?: string[] | undefined;
|
|
9849
9898
|
}[] | undefined;
|
|
9850
9899
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
9851
9900
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -10539,6 +10588,13 @@ export declare const FetchAgentTimelineResponseMessageSchema: z.ZodObject<{
|
|
|
10539
10588
|
error: z.ZodNullable<z.ZodString>;
|
|
10540
10589
|
}, z.core.$strip>;
|
|
10541
10590
|
}, z.core.$strip>;
|
|
10591
|
+
export declare const AgentTimelineReplacementMessageSchema: z.ZodObject<{
|
|
10592
|
+
type: z.ZodLiteral<"agent.timeline.replacement">;
|
|
10593
|
+
payload: z.ZodObject<{
|
|
10594
|
+
agentId: z.ZodString;
|
|
10595
|
+
epoch: z.ZodString;
|
|
10596
|
+
}, z.core.$strip>;
|
|
10597
|
+
}, z.core.$strip>;
|
|
10542
10598
|
export declare const AgentTimelineListPromptsResponseMessageSchema: z.ZodObject<{
|
|
10543
10599
|
type: z.ZodLiteral<"agent.timeline.list_prompts.response">;
|
|
10544
10600
|
payload: z.ZodObject<{
|
|
@@ -11010,6 +11066,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
11010
11066
|
url: z.ZodNullable<z.ZodString>;
|
|
11011
11067
|
workflow: z.ZodOptional<z.ZodString>;
|
|
11012
11068
|
duration: z.ZodOptional<z.ZodString>;
|
|
11069
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11013
11070
|
}, z.core.$strip>>>;
|
|
11014
11071
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
11015
11072
|
success: "success";
|
|
@@ -11177,6 +11234,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
11177
11234
|
url: string | null;
|
|
11178
11235
|
workflow?: string | undefined;
|
|
11179
11236
|
duration?: string | undefined;
|
|
11237
|
+
traits?: string[] | undefined;
|
|
11180
11238
|
}[] | undefined;
|
|
11181
11239
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
11182
11240
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -11287,6 +11345,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
11287
11345
|
url: string | null;
|
|
11288
11346
|
workflow?: string | undefined;
|
|
11289
11347
|
duration?: string | undefined;
|
|
11348
|
+
traits?: string[] | undefined;
|
|
11290
11349
|
}[] | undefined;
|
|
11291
11350
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
11292
11351
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -12009,6 +12068,7 @@ export declare const CheckoutPrStatusSchema: z.ZodObject<{
|
|
|
12009
12068
|
duration: z.ZodOptional<z.ZodString>;
|
|
12010
12069
|
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
12011
12070
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
12071
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12012
12072
|
}, z.core.$strip>>>>;
|
|
12013
12073
|
checksStatus: z.ZodOptional<z.ZodString>;
|
|
12014
12074
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -12148,6 +12208,7 @@ export declare const CheckoutStatusUpdateSchema: z.ZodObject<{
|
|
|
12148
12208
|
duration: z.ZodOptional<z.ZodString>;
|
|
12149
12209
|
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
12150
12210
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
12211
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12151
12212
|
}, z.core.$strip>>>>;
|
|
12152
12213
|
checksStatus: z.ZodOptional<z.ZodString>;
|
|
12153
12214
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -12573,7 +12634,7 @@ declare const CheckoutPipelineJobSchema: z.ZodObject<{
|
|
|
12573
12634
|
name: z.ZodString;
|
|
12574
12635
|
stage: z.ZodString;
|
|
12575
12636
|
status: z.ZodString;
|
|
12576
|
-
rawStatus: z.ZodString
|
|
12637
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12577
12638
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12578
12639
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12579
12640
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -12586,7 +12647,7 @@ declare const CheckoutPipelineStageSchema: z.ZodObject<{
|
|
|
12586
12647
|
name: z.ZodString;
|
|
12587
12648
|
stage: z.ZodString;
|
|
12588
12649
|
status: z.ZodString;
|
|
12589
|
-
rawStatus: z.ZodString
|
|
12650
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12590
12651
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12591
12652
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12592
12653
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -12595,7 +12656,7 @@ declare const CheckoutPipelineStageSchema: z.ZodObject<{
|
|
|
12595
12656
|
declare const CheckoutPipelineSchema: z.ZodObject<{
|
|
12596
12657
|
id: z.ZodNumber;
|
|
12597
12658
|
status: z.ZodString;
|
|
12598
|
-
rawStatus: z.ZodString
|
|
12659
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12599
12660
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12600
12661
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12601
12662
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -12607,7 +12668,7 @@ declare const CheckoutPipelineSchema: z.ZodObject<{
|
|
|
12607
12668
|
name: z.ZodString;
|
|
12608
12669
|
stage: z.ZodString;
|
|
12609
12670
|
status: z.ZodString;
|
|
12610
|
-
rawStatus: z.ZodString
|
|
12671
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12611
12672
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12612
12673
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12613
12674
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -12649,7 +12710,7 @@ export declare const CheckoutGithubCheckDetailsSchema: z.ZodObject<{
|
|
|
12649
12710
|
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
12650
12711
|
id: z.ZodNumber;
|
|
12651
12712
|
status: z.ZodString;
|
|
12652
|
-
rawStatus: z.ZodString
|
|
12713
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12653
12714
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12654
12715
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12655
12716
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -12661,7 +12722,7 @@ export declare const CheckoutGithubCheckDetailsSchema: z.ZodObject<{
|
|
|
12661
12722
|
name: z.ZodString;
|
|
12662
12723
|
stage: z.ZodString;
|
|
12663
12724
|
status: z.ZodString;
|
|
12664
|
-
rawStatus: z.ZodString
|
|
12725
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12665
12726
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12666
12727
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12667
12728
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -12704,7 +12765,7 @@ export declare const CheckoutCheckDetailsSchema: z.ZodObject<{
|
|
|
12704
12765
|
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
12705
12766
|
id: z.ZodNumber;
|
|
12706
12767
|
status: z.ZodString;
|
|
12707
|
-
rawStatus: z.ZodString
|
|
12768
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12708
12769
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12709
12770
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12710
12771
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -12716,7 +12777,7 @@ export declare const CheckoutCheckDetailsSchema: z.ZodObject<{
|
|
|
12716
12777
|
name: z.ZodString;
|
|
12717
12778
|
stage: z.ZodString;
|
|
12718
12779
|
status: z.ZodString;
|
|
12719
|
-
rawStatus: z.ZodString
|
|
12780
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12720
12781
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12721
12782
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12722
12783
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -12764,7 +12825,7 @@ export declare const CheckoutForgeGetCheckDetailsResponseSchema: z.ZodObject<{
|
|
|
12764
12825
|
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
12765
12826
|
id: z.ZodNumber;
|
|
12766
12827
|
status: z.ZodString;
|
|
12767
|
-
rawStatus: z.ZodString
|
|
12828
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12768
12829
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12769
12830
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12770
12831
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -12776,7 +12837,7 @@ export declare const CheckoutForgeGetCheckDetailsResponseSchema: z.ZodObject<{
|
|
|
12776
12837
|
name: z.ZodString;
|
|
12777
12838
|
stage: z.ZodString;
|
|
12778
12839
|
status: z.ZodString;
|
|
12779
|
-
rawStatus: z.ZodString
|
|
12840
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12780
12841
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12781
12842
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12782
12843
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -12836,7 +12897,7 @@ export declare const CheckoutGithubGetCheckDetailsResponseSchema: z.ZodObject<{
|
|
|
12836
12897
|
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
12837
12898
|
id: z.ZodNumber;
|
|
12838
12899
|
status: z.ZodString;
|
|
12839
|
-
rawStatus: z.ZodString
|
|
12900
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12840
12901
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12841
12902
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12842
12903
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -12848,7 +12909,7 @@ export declare const CheckoutGithubGetCheckDetailsResponseSchema: z.ZodObject<{
|
|
|
12848
12909
|
name: z.ZodString;
|
|
12849
12910
|
stage: z.ZodString;
|
|
12850
12911
|
status: z.ZodString;
|
|
12851
|
-
rawStatus: z.ZodString
|
|
12912
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
12852
12913
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12853
12914
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12854
12915
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -12896,6 +12957,7 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
|
12896
12957
|
duration: z.ZodOptional<z.ZodString>;
|
|
12897
12958
|
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
12898
12959
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
12960
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12899
12961
|
}, z.core.$strip>>>>;
|
|
12900
12962
|
checksStatus: z.ZodOptional<z.ZodString>;
|
|
12901
12963
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -13334,6 +13396,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
13334
13396
|
url: z.ZodNullable<z.ZodString>;
|
|
13335
13397
|
workflow: z.ZodOptional<z.ZodString>;
|
|
13336
13398
|
duration: z.ZodOptional<z.ZodString>;
|
|
13399
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13337
13400
|
}, z.core.$strip>>>;
|
|
13338
13401
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
13339
13402
|
success: "success";
|
|
@@ -13501,6 +13564,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
13501
13564
|
url: string | null;
|
|
13502
13565
|
workflow?: string | undefined;
|
|
13503
13566
|
duration?: string | undefined;
|
|
13567
|
+
traits?: string[] | undefined;
|
|
13504
13568
|
}[] | undefined;
|
|
13505
13569
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
13506
13570
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -13611,6 +13675,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
13611
13675
|
url: string | null;
|
|
13612
13676
|
workflow?: string | undefined;
|
|
13613
13677
|
duration?: string | undefined;
|
|
13678
|
+
traits?: string[] | undefined;
|
|
13614
13679
|
}[] | undefined;
|
|
13615
13680
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
13616
13681
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -15175,6 +15240,13 @@ export declare const PluginListItemSchema: z.ZodObject<{
|
|
|
15175
15240
|
failed: "failed";
|
|
15176
15241
|
disabled: "disabled";
|
|
15177
15242
|
}>;
|
|
15243
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
15244
|
+
directory: "directory";
|
|
15245
|
+
git: "git";
|
|
15246
|
+
}>>;
|
|
15247
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
15248
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
15249
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15178
15250
|
error: z.ZodOptional<z.ZodString>;
|
|
15179
15251
|
}, z.core.$strip>;
|
|
15180
15252
|
export type PluginListItem = z.infer<typeof PluginListItemSchema>;
|
|
@@ -15201,6 +15273,13 @@ export declare const PluginListResponseSchema: z.ZodObject<{
|
|
|
15201
15273
|
failed: "failed";
|
|
15202
15274
|
disabled: "disabled";
|
|
15203
15275
|
}>;
|
|
15276
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
15277
|
+
directory: "directory";
|
|
15278
|
+
git: "git";
|
|
15279
|
+
}>>;
|
|
15280
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
15281
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
15282
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15204
15283
|
error: z.ZodOptional<z.ZodString>;
|
|
15205
15284
|
}, z.core.$strip>>;
|
|
15206
15285
|
}, z.core.$strip>;
|
|
@@ -15234,6 +15313,13 @@ export declare const PluginDirectoryInstallResponseSchema: z.ZodObject<{
|
|
|
15234
15313
|
failed: "failed";
|
|
15235
15314
|
disabled: "disabled";
|
|
15236
15315
|
}>;
|
|
15316
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
15317
|
+
directory: "directory";
|
|
15318
|
+
git: "git";
|
|
15319
|
+
}>>;
|
|
15320
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
15321
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
15322
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15237
15323
|
error: z.ZodOptional<z.ZodString>;
|
|
15238
15324
|
}, z.core.$strip>;
|
|
15239
15325
|
}, z.core.$strip>;
|
|
@@ -15245,6 +15331,86 @@ export declare const PluginDirectoryInspectResponseSchema: z.ZodObject<{
|
|
|
15245
15331
|
id: z.ZodString;
|
|
15246
15332
|
}, z.core.$strip>;
|
|
15247
15333
|
}, z.core.$strip>;
|
|
15334
|
+
export declare const PluginSourceInstallResponseSchema: z.ZodObject<{
|
|
15335
|
+
type: z.ZodLiteral<"plugin.source.install.response">;
|
|
15336
|
+
payload: z.ZodObject<{
|
|
15337
|
+
requestId: z.ZodString;
|
|
15338
|
+
plugin: z.ZodObject<{
|
|
15339
|
+
id: z.ZodString;
|
|
15340
|
+
path: z.ZodString;
|
|
15341
|
+
enabled: z.ZodBoolean;
|
|
15342
|
+
status: z.ZodEnum<{
|
|
15343
|
+
running: "running";
|
|
15344
|
+
failed: "failed";
|
|
15345
|
+
disabled: "disabled";
|
|
15346
|
+
}>;
|
|
15347
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
15348
|
+
directory: "directory";
|
|
15349
|
+
git: "git";
|
|
15350
|
+
}>>;
|
|
15351
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
15352
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
15353
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15354
|
+
error: z.ZodOptional<z.ZodString>;
|
|
15355
|
+
}, z.core.$strip>;
|
|
15356
|
+
}, z.core.$strip>;
|
|
15357
|
+
}, z.core.$strip>;
|
|
15358
|
+
export declare const PluginSourceStatusItemSchema: z.ZodObject<{
|
|
15359
|
+
id: z.ZodString;
|
|
15360
|
+
source: z.ZodEnum<{
|
|
15361
|
+
directory: "directory";
|
|
15362
|
+
git: "git";
|
|
15363
|
+
}>;
|
|
15364
|
+
path: z.ZodString;
|
|
15365
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
15366
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
15367
|
+
currentCommit: z.ZodOptional<z.ZodString>;
|
|
15368
|
+
latestCommit: z.ZodOptional<z.ZodString>;
|
|
15369
|
+
commitsBehind: z.ZodOptional<z.ZodNumber>;
|
|
15370
|
+
updateAvailable: z.ZodOptional<z.ZodBoolean>;
|
|
15371
|
+
}, z.core.$strip>;
|
|
15372
|
+
export type PluginSourceStatusItem = z.infer<typeof PluginSourceStatusItemSchema>;
|
|
15373
|
+
export declare const PluginSourceStatusResponseSchema: z.ZodObject<{
|
|
15374
|
+
type: z.ZodLiteral<"plugin.source.status.response">;
|
|
15375
|
+
payload: z.ZodObject<{
|
|
15376
|
+
requestId: z.ZodString;
|
|
15377
|
+
plugins: z.ZodArray<z.ZodObject<{
|
|
15378
|
+
id: z.ZodString;
|
|
15379
|
+
source: z.ZodEnum<{
|
|
15380
|
+
directory: "directory";
|
|
15381
|
+
git: "git";
|
|
15382
|
+
}>;
|
|
15383
|
+
path: z.ZodString;
|
|
15384
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
15385
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
15386
|
+
currentCommit: z.ZodOptional<z.ZodString>;
|
|
15387
|
+
latestCommit: z.ZodOptional<z.ZodString>;
|
|
15388
|
+
commitsBehind: z.ZodOptional<z.ZodNumber>;
|
|
15389
|
+
updateAvailable: z.ZodOptional<z.ZodBoolean>;
|
|
15390
|
+
}, z.core.$strip>>;
|
|
15391
|
+
}, z.core.$strip>;
|
|
15392
|
+
}, z.core.$strip>;
|
|
15393
|
+
export declare const PluginSourceUpdateItemSchema: z.ZodObject<{
|
|
15394
|
+
id: z.ZodString;
|
|
15395
|
+
previousCommit: z.ZodString;
|
|
15396
|
+
currentCommit: z.ZodString;
|
|
15397
|
+
commits: z.ZodNumber;
|
|
15398
|
+
updated: z.ZodBoolean;
|
|
15399
|
+
}, z.core.$strip>;
|
|
15400
|
+
export type PluginSourceUpdateItem = z.infer<typeof PluginSourceUpdateItemSchema>;
|
|
15401
|
+
export declare const PluginSourceUpdateResponseSchema: z.ZodObject<{
|
|
15402
|
+
type: z.ZodLiteral<"plugin.source.update.response">;
|
|
15403
|
+
payload: z.ZodObject<{
|
|
15404
|
+
requestId: z.ZodString;
|
|
15405
|
+
plugins: z.ZodArray<z.ZodObject<{
|
|
15406
|
+
id: z.ZodString;
|
|
15407
|
+
previousCommit: z.ZodString;
|
|
15408
|
+
currentCommit: z.ZodString;
|
|
15409
|
+
commits: z.ZodNumber;
|
|
15410
|
+
updated: z.ZodBoolean;
|
|
15411
|
+
}, z.core.$strip>>;
|
|
15412
|
+
}, z.core.$strip>;
|
|
15413
|
+
}, z.core.$strip>;
|
|
15248
15414
|
export declare const PluginReloadResponseSchema: z.ZodObject<{
|
|
15249
15415
|
type: z.ZodLiteral<"plugin.reload.response">;
|
|
15250
15416
|
payload: z.ZodObject<{
|
|
@@ -15258,6 +15424,13 @@ export declare const PluginReloadResponseSchema: z.ZodObject<{
|
|
|
15258
15424
|
failed: "failed";
|
|
15259
15425
|
disabled: "disabled";
|
|
15260
15426
|
}>;
|
|
15427
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
15428
|
+
directory: "directory";
|
|
15429
|
+
git: "git";
|
|
15430
|
+
}>>;
|
|
15431
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
15432
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
15433
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15261
15434
|
error: z.ZodOptional<z.ZodString>;
|
|
15262
15435
|
}, z.core.$strip>;
|
|
15263
15436
|
}, z.core.$strip>;
|
|
@@ -15275,6 +15448,13 @@ export declare const PluginEnableResponseSchema: z.ZodObject<{
|
|
|
15275
15448
|
failed: "failed";
|
|
15276
15449
|
disabled: "disabled";
|
|
15277
15450
|
}>;
|
|
15451
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
15452
|
+
directory: "directory";
|
|
15453
|
+
git: "git";
|
|
15454
|
+
}>>;
|
|
15455
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
15456
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
15457
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15278
15458
|
error: z.ZodOptional<z.ZodString>;
|
|
15279
15459
|
}, z.core.$strip>;
|
|
15280
15460
|
}, z.core.$strip>;
|
|
@@ -15292,6 +15472,13 @@ export declare const PluginDisableResponseSchema: z.ZodObject<{
|
|
|
15292
15472
|
failed: "failed";
|
|
15293
15473
|
disabled: "disabled";
|
|
15294
15474
|
}>;
|
|
15475
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
15476
|
+
directory: "directory";
|
|
15477
|
+
git: "git";
|
|
15478
|
+
}>>;
|
|
15479
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
15480
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
15481
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15295
15482
|
error: z.ZodOptional<z.ZodString>;
|
|
15296
15483
|
}, z.core.$strip>;
|
|
15297
15484
|
}, z.core.$strip>;
|
|
@@ -15873,6 +16060,13 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15873
16060
|
failed: "failed";
|
|
15874
16061
|
disabled: "disabled";
|
|
15875
16062
|
}>;
|
|
16063
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
16064
|
+
directory: "directory";
|
|
16065
|
+
git: "git";
|
|
16066
|
+
}>>;
|
|
16067
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
16068
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
16069
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15876
16070
|
error: z.ZodOptional<z.ZodString>;
|
|
15877
16071
|
}, z.core.$strip>>;
|
|
15878
16072
|
}, z.core.$strip>;
|
|
@@ -15904,6 +16098,13 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15904
16098
|
failed: "failed";
|
|
15905
16099
|
disabled: "disabled";
|
|
15906
16100
|
}>;
|
|
16101
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
16102
|
+
directory: "directory";
|
|
16103
|
+
git: "git";
|
|
16104
|
+
}>>;
|
|
16105
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
16106
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
16107
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15907
16108
|
error: z.ZodOptional<z.ZodString>;
|
|
15908
16109
|
}, z.core.$strip>;
|
|
15909
16110
|
}, z.core.$strip>;
|
|
@@ -15913,6 +16114,60 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15913
16114
|
requestId: z.ZodString;
|
|
15914
16115
|
id: z.ZodString;
|
|
15915
16116
|
}, z.core.$strip>;
|
|
16117
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16118
|
+
type: z.ZodLiteral<"plugin.source.install.response">;
|
|
16119
|
+
payload: z.ZodObject<{
|
|
16120
|
+
requestId: z.ZodString;
|
|
16121
|
+
plugin: z.ZodObject<{
|
|
16122
|
+
id: z.ZodString;
|
|
16123
|
+
path: z.ZodString;
|
|
16124
|
+
enabled: z.ZodBoolean;
|
|
16125
|
+
status: z.ZodEnum<{
|
|
16126
|
+
running: "running";
|
|
16127
|
+
failed: "failed";
|
|
16128
|
+
disabled: "disabled";
|
|
16129
|
+
}>;
|
|
16130
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
16131
|
+
directory: "directory";
|
|
16132
|
+
git: "git";
|
|
16133
|
+
}>>;
|
|
16134
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
16135
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
16136
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
16137
|
+
error: z.ZodOptional<z.ZodString>;
|
|
16138
|
+
}, z.core.$strip>;
|
|
16139
|
+
}, z.core.$strip>;
|
|
16140
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16141
|
+
type: z.ZodLiteral<"plugin.source.status.response">;
|
|
16142
|
+
payload: z.ZodObject<{
|
|
16143
|
+
requestId: z.ZodString;
|
|
16144
|
+
plugins: z.ZodArray<z.ZodObject<{
|
|
16145
|
+
id: z.ZodString;
|
|
16146
|
+
source: z.ZodEnum<{
|
|
16147
|
+
directory: "directory";
|
|
16148
|
+
git: "git";
|
|
16149
|
+
}>;
|
|
16150
|
+
path: z.ZodString;
|
|
16151
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
16152
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
16153
|
+
currentCommit: z.ZodOptional<z.ZodString>;
|
|
16154
|
+
latestCommit: z.ZodOptional<z.ZodString>;
|
|
16155
|
+
commitsBehind: z.ZodOptional<z.ZodNumber>;
|
|
16156
|
+
updateAvailable: z.ZodOptional<z.ZodBoolean>;
|
|
16157
|
+
}, z.core.$strip>>;
|
|
16158
|
+
}, z.core.$strip>;
|
|
16159
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16160
|
+
type: z.ZodLiteral<"plugin.source.update.response">;
|
|
16161
|
+
payload: z.ZodObject<{
|
|
16162
|
+
requestId: z.ZodString;
|
|
16163
|
+
plugins: z.ZodArray<z.ZodObject<{
|
|
16164
|
+
id: z.ZodString;
|
|
16165
|
+
previousCommit: z.ZodString;
|
|
16166
|
+
currentCommit: z.ZodString;
|
|
16167
|
+
commits: z.ZodNumber;
|
|
16168
|
+
updated: z.ZodBoolean;
|
|
16169
|
+
}, z.core.$strip>>;
|
|
16170
|
+
}, z.core.$strip>;
|
|
15916
16171
|
}, z.core.$strip>, z.ZodObject<{
|
|
15917
16172
|
type: z.ZodLiteral<"plugin.reload.response">;
|
|
15918
16173
|
payload: z.ZodObject<{
|
|
@@ -15926,6 +16181,13 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15926
16181
|
failed: "failed";
|
|
15927
16182
|
disabled: "disabled";
|
|
15928
16183
|
}>;
|
|
16184
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
16185
|
+
directory: "directory";
|
|
16186
|
+
git: "git";
|
|
16187
|
+
}>>;
|
|
16188
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
16189
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
16190
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15929
16191
|
error: z.ZodOptional<z.ZodString>;
|
|
15930
16192
|
}, z.core.$strip>;
|
|
15931
16193
|
}, z.core.$strip>;
|
|
@@ -15942,6 +16204,13 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15942
16204
|
failed: "failed";
|
|
15943
16205
|
disabled: "disabled";
|
|
15944
16206
|
}>;
|
|
16207
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
16208
|
+
directory: "directory";
|
|
16209
|
+
git: "git";
|
|
16210
|
+
}>>;
|
|
16211
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
16212
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
16213
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15945
16214
|
error: z.ZodOptional<z.ZodString>;
|
|
15946
16215
|
}, z.core.$strip>;
|
|
15947
16216
|
}, z.core.$strip>;
|
|
@@ -15958,6 +16227,13 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15958
16227
|
failed: "failed";
|
|
15959
16228
|
disabled: "disabled";
|
|
15960
16229
|
}>;
|
|
16230
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
16231
|
+
directory: "directory";
|
|
16232
|
+
git: "git";
|
|
16233
|
+
}>>;
|
|
16234
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
16235
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
16236
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
15961
16237
|
error: z.ZodOptional<z.ZodString>;
|
|
15962
16238
|
}, z.core.$strip>;
|
|
15963
16239
|
}, z.core.$strip>;
|
|
@@ -16484,6 +16760,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
16484
16760
|
url: z.ZodNullable<z.ZodString>;
|
|
16485
16761
|
workflow: z.ZodOptional<z.ZodString>;
|
|
16486
16762
|
duration: z.ZodOptional<z.ZodString>;
|
|
16763
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16487
16764
|
}, z.core.$strip>>>;
|
|
16488
16765
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
16489
16766
|
success: "success";
|
|
@@ -16651,6 +16928,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
16651
16928
|
url: string | null;
|
|
16652
16929
|
workflow?: string | undefined;
|
|
16653
16930
|
duration?: string | undefined;
|
|
16931
|
+
traits?: string[] | undefined;
|
|
16654
16932
|
}[] | undefined;
|
|
16655
16933
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
16656
16934
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -16761,6 +17039,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
16761
17039
|
url: string | null;
|
|
16762
17040
|
workflow?: string | undefined;
|
|
16763
17041
|
duration?: string | undefined;
|
|
17042
|
+
traits?: string[] | undefined;
|
|
16764
17043
|
}[] | undefined;
|
|
16765
17044
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
16766
17045
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -17726,6 +18005,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17726
18005
|
url: z.ZodNullable<z.ZodString>;
|
|
17727
18006
|
workflow: z.ZodOptional<z.ZodString>;
|
|
17728
18007
|
duration: z.ZodOptional<z.ZodString>;
|
|
18008
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
17729
18009
|
}, z.core.$strip>>>;
|
|
17730
18010
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
17731
18011
|
success: "success";
|
|
@@ -17893,6 +18173,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17893
18173
|
url: string | null;
|
|
17894
18174
|
workflow?: string | undefined;
|
|
17895
18175
|
duration?: string | undefined;
|
|
18176
|
+
traits?: string[] | undefined;
|
|
17896
18177
|
}[] | undefined;
|
|
17897
18178
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
17898
18179
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -18003,6 +18284,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
18003
18284
|
url: string | null;
|
|
18004
18285
|
workflow?: string | undefined;
|
|
18005
18286
|
duration?: string | undefined;
|
|
18287
|
+
traits?: string[] | undefined;
|
|
18006
18288
|
}[] | undefined;
|
|
18007
18289
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
18008
18290
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -18238,6 +18520,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
18238
18520
|
url: z.ZodNullable<z.ZodString>;
|
|
18239
18521
|
workflow: z.ZodOptional<z.ZodString>;
|
|
18240
18522
|
duration: z.ZodOptional<z.ZodString>;
|
|
18523
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18241
18524
|
}, z.core.$strip>>>;
|
|
18242
18525
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
18243
18526
|
success: "success";
|
|
@@ -18405,6 +18688,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
18405
18688
|
url: string | null;
|
|
18406
18689
|
workflow?: string | undefined;
|
|
18407
18690
|
duration?: string | undefined;
|
|
18691
|
+
traits?: string[] | undefined;
|
|
18408
18692
|
}[] | undefined;
|
|
18409
18693
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
18410
18694
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -18515,6 +18799,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
18515
18799
|
url: string | null;
|
|
18516
18800
|
workflow?: string | undefined;
|
|
18517
18801
|
duration?: string | undefined;
|
|
18802
|
+
traits?: string[] | undefined;
|
|
18518
18803
|
}[] | undefined;
|
|
18519
18804
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
18520
18805
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -19122,6 +19407,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19122
19407
|
}, z.core.$strip>>;
|
|
19123
19408
|
error: z.ZodNullable<z.ZodString>;
|
|
19124
19409
|
}, z.core.$strip>;
|
|
19410
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19411
|
+
type: z.ZodLiteral<"agent.timeline.replacement">;
|
|
19412
|
+
payload: z.ZodObject<{
|
|
19413
|
+
agentId: z.ZodString;
|
|
19414
|
+
epoch: z.ZodString;
|
|
19415
|
+
}, z.core.$strip>;
|
|
19125
19416
|
}, z.core.$strip>, z.ZodObject<{
|
|
19126
19417
|
type: z.ZodLiteral<"agent.timeline.list_prompts.response">;
|
|
19127
19418
|
payload: z.ZodObject<{
|
|
@@ -19565,6 +19856,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19565
19856
|
url: z.ZodNullable<z.ZodString>;
|
|
19566
19857
|
workflow: z.ZodOptional<z.ZodString>;
|
|
19567
19858
|
duration: z.ZodOptional<z.ZodString>;
|
|
19859
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
19568
19860
|
}, z.core.$strip>>>;
|
|
19569
19861
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
19570
19862
|
success: "success";
|
|
@@ -19732,6 +20024,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19732
20024
|
url: string | null;
|
|
19733
20025
|
workflow?: string | undefined;
|
|
19734
20026
|
duration?: string | undefined;
|
|
20027
|
+
traits?: string[] | undefined;
|
|
19735
20028
|
}[] | undefined;
|
|
19736
20029
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
19737
20030
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -19842,6 +20135,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19842
20135
|
url: string | null;
|
|
19843
20136
|
workflow?: string | undefined;
|
|
19844
20137
|
duration?: string | undefined;
|
|
20138
|
+
traits?: string[] | undefined;
|
|
19845
20139
|
}[] | undefined;
|
|
19846
20140
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
19847
20141
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -20765,6 +21059,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
20765
21059
|
duration: z.ZodOptional<z.ZodString>;
|
|
20766
21060
|
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
20767
21061
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
21062
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20768
21063
|
}, z.core.$strip>>>>;
|
|
20769
21064
|
checksStatus: z.ZodOptional<z.ZodString>;
|
|
20770
21065
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -21209,7 +21504,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
21209
21504
|
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21210
21505
|
id: z.ZodNumber;
|
|
21211
21506
|
status: z.ZodString;
|
|
21212
|
-
rawStatus: z.ZodString
|
|
21507
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
21213
21508
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21214
21509
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21215
21510
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -21221,7 +21516,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
21221
21516
|
name: z.ZodString;
|
|
21222
21517
|
stage: z.ZodString;
|
|
21223
21518
|
status: z.ZodString;
|
|
21224
|
-
rawStatus: z.ZodString
|
|
21519
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
21225
21520
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21226
21521
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
21227
21522
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -21280,7 +21575,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
21280
21575
|
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21281
21576
|
id: z.ZodNumber;
|
|
21282
21577
|
status: z.ZodString;
|
|
21283
|
-
rawStatus: z.ZodString
|
|
21578
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
21284
21579
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21285
21580
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21286
21581
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -21292,7 +21587,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
21292
21587
|
name: z.ZodString;
|
|
21293
21588
|
stage: z.ZodString;
|
|
21294
21589
|
status: z.ZodString;
|
|
21295
|
-
rawStatus: z.ZodString
|
|
21590
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
21296
21591
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21297
21592
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
21298
21593
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -21339,6 +21634,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
21339
21634
|
duration: z.ZodOptional<z.ZodString>;
|
|
21340
21635
|
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
21341
21636
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
21637
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21342
21638
|
}, z.core.$strip>>>>;
|
|
21343
21639
|
checksStatus: z.ZodOptional<z.ZodString>;
|
|
21344
21640
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -21722,6 +22018,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
21722
22018
|
url: z.ZodNullable<z.ZodString>;
|
|
21723
22019
|
workflow: z.ZodOptional<z.ZodString>;
|
|
21724
22020
|
duration: z.ZodOptional<z.ZodString>;
|
|
22021
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21725
22022
|
}, z.core.$strip>>>;
|
|
21726
22023
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
21727
22024
|
success: "success";
|
|
@@ -21889,6 +22186,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
21889
22186
|
url: string | null;
|
|
21890
22187
|
workflow?: string | undefined;
|
|
21891
22188
|
duration?: string | undefined;
|
|
22189
|
+
traits?: string[] | undefined;
|
|
21892
22190
|
}[] | undefined;
|
|
21893
22191
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
21894
22192
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -21999,6 +22297,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
21999
22297
|
url: string | null;
|
|
22000
22298
|
workflow?: string | undefined;
|
|
22001
22299
|
duration?: string | undefined;
|
|
22300
|
+
traits?: string[] | undefined;
|
|
22002
22301
|
}[] | undefined;
|
|
22003
22302
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
22004
22303
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -24084,6 +24383,7 @@ export declare const WSHelloMessageSchema: z.ZodObject<{
|
|
|
24084
24383
|
provider_subagents: z.ZodOptional<z.ZodBoolean>;
|
|
24085
24384
|
project_updates: z.ZodOptional<z.ZodBoolean>;
|
|
24086
24385
|
compact_provider_snapshots: z.ZodOptional<z.ZodBoolean>;
|
|
24386
|
+
timeline_replacement_invalidation: z.ZodOptional<z.ZodBoolean>;
|
|
24087
24387
|
browser_host: z.ZodOptional<z.ZodObject<{
|
|
24088
24388
|
supportedCommands: z.ZodPipe<z.ZodArray<z.ZodString>, z.ZodTransform<("select" | "type" | "fill" | "logs" | "list_tabs" | "new_tab" | "snapshot" | "click" | "wait" | "keypress" | "navigate" | "back" | "forward" | "reload" | "screenshot" | "upload" | "hover" | "drag" | "evaluate" | "scroll" | "resize" | "close_tab")[], string[]>>;
|
|
24089
24389
|
hostKind: z.ZodDefault<z.ZodString>;
|
|
@@ -24767,6 +25067,21 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
24767
25067
|
type: z.ZodLiteral<"plugin.directory.inspect.request">;
|
|
24768
25068
|
requestId: z.ZodString;
|
|
24769
25069
|
path: z.ZodString;
|
|
25070
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25071
|
+
type: z.ZodLiteral<"plugin.source.install.request">;
|
|
25072
|
+
requestId: z.ZodString;
|
|
25073
|
+
source: z.ZodString;
|
|
25074
|
+
id: z.ZodOptional<z.ZodString>;
|
|
25075
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
25076
|
+
pluginPath: z.ZodOptional<z.ZodString>;
|
|
25077
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25078
|
+
type: z.ZodLiteral<"plugin.source.status.request">;
|
|
25079
|
+
requestId: z.ZodString;
|
|
25080
|
+
pluginId: z.ZodOptional<z.ZodString>;
|
|
25081
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25082
|
+
type: z.ZodLiteral<"plugin.source.update.request">;
|
|
25083
|
+
requestId: z.ZodString;
|
|
25084
|
+
pluginId: z.ZodOptional<z.ZodString>;
|
|
24770
25085
|
}, z.core.$strip>, z.ZodObject<{
|
|
24771
25086
|
type: z.ZodLiteral<"plugin.reload.request">;
|
|
24772
25087
|
requestId: z.ZodString;
|
|
@@ -26729,6 +27044,13 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
26729
27044
|
failed: "failed";
|
|
26730
27045
|
disabled: "disabled";
|
|
26731
27046
|
}>;
|
|
27047
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
27048
|
+
directory: "directory";
|
|
27049
|
+
git: "git";
|
|
27050
|
+
}>>;
|
|
27051
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
27052
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
27053
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
26732
27054
|
error: z.ZodOptional<z.ZodString>;
|
|
26733
27055
|
}, z.core.$strip>>;
|
|
26734
27056
|
}, z.core.$strip>;
|
|
@@ -26760,6 +27082,13 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
26760
27082
|
failed: "failed";
|
|
26761
27083
|
disabled: "disabled";
|
|
26762
27084
|
}>;
|
|
27085
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
27086
|
+
directory: "directory";
|
|
27087
|
+
git: "git";
|
|
27088
|
+
}>>;
|
|
27089
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
27090
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
27091
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
26763
27092
|
error: z.ZodOptional<z.ZodString>;
|
|
26764
27093
|
}, z.core.$strip>;
|
|
26765
27094
|
}, z.core.$strip>;
|
|
@@ -26769,6 +27098,60 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
26769
27098
|
requestId: z.ZodString;
|
|
26770
27099
|
id: z.ZodString;
|
|
26771
27100
|
}, z.core.$strip>;
|
|
27101
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27102
|
+
type: z.ZodLiteral<"plugin.source.install.response">;
|
|
27103
|
+
payload: z.ZodObject<{
|
|
27104
|
+
requestId: z.ZodString;
|
|
27105
|
+
plugin: z.ZodObject<{
|
|
27106
|
+
id: z.ZodString;
|
|
27107
|
+
path: z.ZodString;
|
|
27108
|
+
enabled: z.ZodBoolean;
|
|
27109
|
+
status: z.ZodEnum<{
|
|
27110
|
+
running: "running";
|
|
27111
|
+
failed: "failed";
|
|
27112
|
+
disabled: "disabled";
|
|
27113
|
+
}>;
|
|
27114
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
27115
|
+
directory: "directory";
|
|
27116
|
+
git: "git";
|
|
27117
|
+
}>>;
|
|
27118
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
27119
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
27120
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
27121
|
+
error: z.ZodOptional<z.ZodString>;
|
|
27122
|
+
}, z.core.$strip>;
|
|
27123
|
+
}, z.core.$strip>;
|
|
27124
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27125
|
+
type: z.ZodLiteral<"plugin.source.status.response">;
|
|
27126
|
+
payload: z.ZodObject<{
|
|
27127
|
+
requestId: z.ZodString;
|
|
27128
|
+
plugins: z.ZodArray<z.ZodObject<{
|
|
27129
|
+
id: z.ZodString;
|
|
27130
|
+
source: z.ZodEnum<{
|
|
27131
|
+
directory: "directory";
|
|
27132
|
+
git: "git";
|
|
27133
|
+
}>;
|
|
27134
|
+
path: z.ZodString;
|
|
27135
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
27136
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
27137
|
+
currentCommit: z.ZodOptional<z.ZodString>;
|
|
27138
|
+
latestCommit: z.ZodOptional<z.ZodString>;
|
|
27139
|
+
commitsBehind: z.ZodOptional<z.ZodNumber>;
|
|
27140
|
+
updateAvailable: z.ZodOptional<z.ZodBoolean>;
|
|
27141
|
+
}, z.core.$strip>>;
|
|
27142
|
+
}, z.core.$strip>;
|
|
27143
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27144
|
+
type: z.ZodLiteral<"plugin.source.update.response">;
|
|
27145
|
+
payload: z.ZodObject<{
|
|
27146
|
+
requestId: z.ZodString;
|
|
27147
|
+
plugins: z.ZodArray<z.ZodObject<{
|
|
27148
|
+
id: z.ZodString;
|
|
27149
|
+
previousCommit: z.ZodString;
|
|
27150
|
+
currentCommit: z.ZodString;
|
|
27151
|
+
commits: z.ZodNumber;
|
|
27152
|
+
updated: z.ZodBoolean;
|
|
27153
|
+
}, z.core.$strip>>;
|
|
27154
|
+
}, z.core.$strip>;
|
|
26772
27155
|
}, z.core.$strip>, z.ZodObject<{
|
|
26773
27156
|
type: z.ZodLiteral<"plugin.reload.response">;
|
|
26774
27157
|
payload: z.ZodObject<{
|
|
@@ -26782,6 +27165,13 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
26782
27165
|
failed: "failed";
|
|
26783
27166
|
disabled: "disabled";
|
|
26784
27167
|
}>;
|
|
27168
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
27169
|
+
directory: "directory";
|
|
27170
|
+
git: "git";
|
|
27171
|
+
}>>;
|
|
27172
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
27173
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
27174
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
26785
27175
|
error: z.ZodOptional<z.ZodString>;
|
|
26786
27176
|
}, z.core.$strip>;
|
|
26787
27177
|
}, z.core.$strip>;
|
|
@@ -26798,6 +27188,13 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
26798
27188
|
failed: "failed";
|
|
26799
27189
|
disabled: "disabled";
|
|
26800
27190
|
}>;
|
|
27191
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
27192
|
+
directory: "directory";
|
|
27193
|
+
git: "git";
|
|
27194
|
+
}>>;
|
|
27195
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
27196
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
27197
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
26801
27198
|
error: z.ZodOptional<z.ZodString>;
|
|
26802
27199
|
}, z.core.$strip>;
|
|
26803
27200
|
}, z.core.$strip>;
|
|
@@ -26814,6 +27211,13 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
26814
27211
|
failed: "failed";
|
|
26815
27212
|
disabled: "disabled";
|
|
26816
27213
|
}>;
|
|
27214
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
27215
|
+
directory: "directory";
|
|
27216
|
+
git: "git";
|
|
27217
|
+
}>>;
|
|
27218
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
27219
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
27220
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
26817
27221
|
error: z.ZodOptional<z.ZodString>;
|
|
26818
27222
|
}, z.core.$strip>;
|
|
26819
27223
|
}, z.core.$strip>;
|
|
@@ -27340,6 +27744,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27340
27744
|
url: z.ZodNullable<z.ZodString>;
|
|
27341
27745
|
workflow: z.ZodOptional<z.ZodString>;
|
|
27342
27746
|
duration: z.ZodOptional<z.ZodString>;
|
|
27747
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
27343
27748
|
}, z.core.$strip>>>;
|
|
27344
27749
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
27345
27750
|
success: "success";
|
|
@@ -27507,6 +27912,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27507
27912
|
url: string | null;
|
|
27508
27913
|
workflow?: string | undefined;
|
|
27509
27914
|
duration?: string | undefined;
|
|
27915
|
+
traits?: string[] | undefined;
|
|
27510
27916
|
}[] | undefined;
|
|
27511
27917
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
27512
27918
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -27617,6 +28023,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27617
28023
|
url: string | null;
|
|
27618
28024
|
workflow?: string | undefined;
|
|
27619
28025
|
duration?: string | undefined;
|
|
28026
|
+
traits?: string[] | undefined;
|
|
27620
28027
|
}[] | undefined;
|
|
27621
28028
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
27622
28029
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -28582,6 +28989,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28582
28989
|
url: z.ZodNullable<z.ZodString>;
|
|
28583
28990
|
workflow: z.ZodOptional<z.ZodString>;
|
|
28584
28991
|
duration: z.ZodOptional<z.ZodString>;
|
|
28992
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
28585
28993
|
}, z.core.$strip>>>;
|
|
28586
28994
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
28587
28995
|
success: "success";
|
|
@@ -28749,6 +29157,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28749
29157
|
url: string | null;
|
|
28750
29158
|
workflow?: string | undefined;
|
|
28751
29159
|
duration?: string | undefined;
|
|
29160
|
+
traits?: string[] | undefined;
|
|
28752
29161
|
}[] | undefined;
|
|
28753
29162
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
28754
29163
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -28859,6 +29268,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28859
29268
|
url: string | null;
|
|
28860
29269
|
workflow?: string | undefined;
|
|
28861
29270
|
duration?: string | undefined;
|
|
29271
|
+
traits?: string[] | undefined;
|
|
28862
29272
|
}[] | undefined;
|
|
28863
29273
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
28864
29274
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -29094,6 +29504,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29094
29504
|
url: z.ZodNullable<z.ZodString>;
|
|
29095
29505
|
workflow: z.ZodOptional<z.ZodString>;
|
|
29096
29506
|
duration: z.ZodOptional<z.ZodString>;
|
|
29507
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
29097
29508
|
}, z.core.$strip>>>;
|
|
29098
29509
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
29099
29510
|
success: "success";
|
|
@@ -29261,6 +29672,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29261
29672
|
url: string | null;
|
|
29262
29673
|
workflow?: string | undefined;
|
|
29263
29674
|
duration?: string | undefined;
|
|
29675
|
+
traits?: string[] | undefined;
|
|
29264
29676
|
}[] | undefined;
|
|
29265
29677
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
29266
29678
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -29371,6 +29783,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29371
29783
|
url: string | null;
|
|
29372
29784
|
workflow?: string | undefined;
|
|
29373
29785
|
duration?: string | undefined;
|
|
29786
|
+
traits?: string[] | undefined;
|
|
29374
29787
|
}[] | undefined;
|
|
29375
29788
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
29376
29789
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -29978,6 +30391,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29978
30391
|
}, z.core.$strip>>;
|
|
29979
30392
|
error: z.ZodNullable<z.ZodString>;
|
|
29980
30393
|
}, z.core.$strip>;
|
|
30394
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30395
|
+
type: z.ZodLiteral<"agent.timeline.replacement">;
|
|
30396
|
+
payload: z.ZodObject<{
|
|
30397
|
+
agentId: z.ZodString;
|
|
30398
|
+
epoch: z.ZodString;
|
|
30399
|
+
}, z.core.$strip>;
|
|
29981
30400
|
}, z.core.$strip>, z.ZodObject<{
|
|
29982
30401
|
type: z.ZodLiteral<"agent.timeline.list_prompts.response">;
|
|
29983
30402
|
payload: z.ZodObject<{
|
|
@@ -30421,6 +30840,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30421
30840
|
url: z.ZodNullable<z.ZodString>;
|
|
30422
30841
|
workflow: z.ZodOptional<z.ZodString>;
|
|
30423
30842
|
duration: z.ZodOptional<z.ZodString>;
|
|
30843
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
30424
30844
|
}, z.core.$strip>>>;
|
|
30425
30845
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
30426
30846
|
success: "success";
|
|
@@ -30588,6 +31008,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30588
31008
|
url: string | null;
|
|
30589
31009
|
workflow?: string | undefined;
|
|
30590
31010
|
duration?: string | undefined;
|
|
31011
|
+
traits?: string[] | undefined;
|
|
30591
31012
|
}[] | undefined;
|
|
30592
31013
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
30593
31014
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -30698,6 +31119,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30698
31119
|
url: string | null;
|
|
30699
31120
|
workflow?: string | undefined;
|
|
30700
31121
|
duration?: string | undefined;
|
|
31122
|
+
traits?: string[] | undefined;
|
|
30701
31123
|
}[] | undefined;
|
|
30702
31124
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
30703
31125
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -31621,6 +32043,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
31621
32043
|
duration: z.ZodOptional<z.ZodString>;
|
|
31622
32044
|
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
31623
32045
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
32046
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
31624
32047
|
}, z.core.$strip>>>>;
|
|
31625
32048
|
checksStatus: z.ZodOptional<z.ZodString>;
|
|
31626
32049
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -32065,7 +32488,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
32065
32488
|
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32066
32489
|
id: z.ZodNumber;
|
|
32067
32490
|
status: z.ZodString;
|
|
32068
|
-
rawStatus: z.ZodString
|
|
32491
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
32069
32492
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
32070
32493
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
32071
32494
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -32077,7 +32500,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
32077
32500
|
name: z.ZodString;
|
|
32078
32501
|
stage: z.ZodString;
|
|
32079
32502
|
status: z.ZodString;
|
|
32080
|
-
rawStatus: z.ZodString
|
|
32503
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
32081
32504
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
32082
32505
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
32083
32506
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -32136,7 +32559,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
32136
32559
|
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32137
32560
|
id: z.ZodNumber;
|
|
32138
32561
|
status: z.ZodString;
|
|
32139
|
-
rawStatus: z.ZodString
|
|
32562
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
32140
32563
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
32141
32564
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
32142
32565
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -32148,7 +32571,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
32148
32571
|
name: z.ZodString;
|
|
32149
32572
|
stage: z.ZodString;
|
|
32150
32573
|
status: z.ZodString;
|
|
32151
|
-
rawStatus: z.ZodString
|
|
32574
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
32152
32575
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
32153
32576
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
32154
32577
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -32195,6 +32618,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
32195
32618
|
duration: z.ZodOptional<z.ZodString>;
|
|
32196
32619
|
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
32197
32620
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
32621
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
32198
32622
|
}, z.core.$strip>>>>;
|
|
32199
32623
|
checksStatus: z.ZodOptional<z.ZodString>;
|
|
32200
32624
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -32578,6 +33002,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
32578
33002
|
url: z.ZodNullable<z.ZodString>;
|
|
32579
33003
|
workflow: z.ZodOptional<z.ZodString>;
|
|
32580
33004
|
duration: z.ZodOptional<z.ZodString>;
|
|
33005
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
32581
33006
|
}, z.core.$strip>>>;
|
|
32582
33007
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
32583
33008
|
success: "success";
|
|
@@ -32745,6 +33170,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
32745
33170
|
url: string | null;
|
|
32746
33171
|
workflow?: string | undefined;
|
|
32747
33172
|
duration?: string | undefined;
|
|
33173
|
+
traits?: string[] | undefined;
|
|
32748
33174
|
}[] | undefined;
|
|
32749
33175
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
32750
33176
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -32855,6 +33281,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
32855
33281
|
url: string | null;
|
|
32856
33282
|
workflow?: string | undefined;
|
|
32857
33283
|
duration?: string | undefined;
|
|
33284
|
+
traits?: string[] | undefined;
|
|
32858
33285
|
}[] | undefined;
|
|
32859
33286
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
32860
33287
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -34589,6 +35016,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
34589
35016
|
provider_subagents: z.ZodOptional<z.ZodBoolean>;
|
|
34590
35017
|
project_updates: z.ZodOptional<z.ZodBoolean>;
|
|
34591
35018
|
compact_provider_snapshots: z.ZodOptional<z.ZodBoolean>;
|
|
35019
|
+
timeline_replacement_invalidation: z.ZodOptional<z.ZodBoolean>;
|
|
34592
35020
|
browser_host: z.ZodOptional<z.ZodObject<{
|
|
34593
35021
|
supportedCommands: z.ZodPipe<z.ZodArray<z.ZodString>, z.ZodTransform<("select" | "type" | "fill" | "logs" | "list_tabs" | "new_tab" | "snapshot" | "click" | "wait" | "keypress" | "navigate" | "back" | "forward" | "reload" | "screenshot" | "upload" | "hover" | "drag" | "evaluate" | "scroll" | "resize" | "close_tab")[], string[]>>;
|
|
34594
35022
|
hostKind: z.ZodDefault<z.ZodString>;
|
|
@@ -35270,6 +35698,21 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
35270
35698
|
type: z.ZodLiteral<"plugin.directory.inspect.request">;
|
|
35271
35699
|
requestId: z.ZodString;
|
|
35272
35700
|
path: z.ZodString;
|
|
35701
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35702
|
+
type: z.ZodLiteral<"plugin.source.install.request">;
|
|
35703
|
+
requestId: z.ZodString;
|
|
35704
|
+
source: z.ZodString;
|
|
35705
|
+
id: z.ZodOptional<z.ZodString>;
|
|
35706
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
35707
|
+
pluginPath: z.ZodOptional<z.ZodString>;
|
|
35708
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35709
|
+
type: z.ZodLiteral<"plugin.source.status.request">;
|
|
35710
|
+
requestId: z.ZodString;
|
|
35711
|
+
pluginId: z.ZodOptional<z.ZodString>;
|
|
35712
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35713
|
+
type: z.ZodLiteral<"plugin.source.update.request">;
|
|
35714
|
+
requestId: z.ZodString;
|
|
35715
|
+
pluginId: z.ZodOptional<z.ZodString>;
|
|
35273
35716
|
}, z.core.$strip>, z.ZodObject<{
|
|
35274
35717
|
type: z.ZodLiteral<"plugin.reload.request">;
|
|
35275
35718
|
requestId: z.ZodString;
|
|
@@ -37234,6 +37677,13 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37234
37677
|
failed: "failed";
|
|
37235
37678
|
disabled: "disabled";
|
|
37236
37679
|
}>;
|
|
37680
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
37681
|
+
directory: "directory";
|
|
37682
|
+
git: "git";
|
|
37683
|
+
}>>;
|
|
37684
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
37685
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
37686
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
37237
37687
|
error: z.ZodOptional<z.ZodString>;
|
|
37238
37688
|
}, z.core.$strip>>;
|
|
37239
37689
|
}, z.core.$strip>;
|
|
@@ -37265,6 +37715,13 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37265
37715
|
failed: "failed";
|
|
37266
37716
|
disabled: "disabled";
|
|
37267
37717
|
}>;
|
|
37718
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
37719
|
+
directory: "directory";
|
|
37720
|
+
git: "git";
|
|
37721
|
+
}>>;
|
|
37722
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
37723
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
37724
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
37268
37725
|
error: z.ZodOptional<z.ZodString>;
|
|
37269
37726
|
}, z.core.$strip>;
|
|
37270
37727
|
}, z.core.$strip>;
|
|
@@ -37274,6 +37731,60 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37274
37731
|
requestId: z.ZodString;
|
|
37275
37732
|
id: z.ZodString;
|
|
37276
37733
|
}, z.core.$strip>;
|
|
37734
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37735
|
+
type: z.ZodLiteral<"plugin.source.install.response">;
|
|
37736
|
+
payload: z.ZodObject<{
|
|
37737
|
+
requestId: z.ZodString;
|
|
37738
|
+
plugin: z.ZodObject<{
|
|
37739
|
+
id: z.ZodString;
|
|
37740
|
+
path: z.ZodString;
|
|
37741
|
+
enabled: z.ZodBoolean;
|
|
37742
|
+
status: z.ZodEnum<{
|
|
37743
|
+
running: "running";
|
|
37744
|
+
failed: "failed";
|
|
37745
|
+
disabled: "disabled";
|
|
37746
|
+
}>;
|
|
37747
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
37748
|
+
directory: "directory";
|
|
37749
|
+
git: "git";
|
|
37750
|
+
}>>;
|
|
37751
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
37752
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
37753
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
37754
|
+
error: z.ZodOptional<z.ZodString>;
|
|
37755
|
+
}, z.core.$strip>;
|
|
37756
|
+
}, z.core.$strip>;
|
|
37757
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37758
|
+
type: z.ZodLiteral<"plugin.source.status.response">;
|
|
37759
|
+
payload: z.ZodObject<{
|
|
37760
|
+
requestId: z.ZodString;
|
|
37761
|
+
plugins: z.ZodArray<z.ZodObject<{
|
|
37762
|
+
id: z.ZodString;
|
|
37763
|
+
source: z.ZodEnum<{
|
|
37764
|
+
directory: "directory";
|
|
37765
|
+
git: "git";
|
|
37766
|
+
}>;
|
|
37767
|
+
path: z.ZodString;
|
|
37768
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
37769
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
37770
|
+
currentCommit: z.ZodOptional<z.ZodString>;
|
|
37771
|
+
latestCommit: z.ZodOptional<z.ZodString>;
|
|
37772
|
+
commitsBehind: z.ZodOptional<z.ZodNumber>;
|
|
37773
|
+
updateAvailable: z.ZodOptional<z.ZodBoolean>;
|
|
37774
|
+
}, z.core.$strip>>;
|
|
37775
|
+
}, z.core.$strip>;
|
|
37776
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37777
|
+
type: z.ZodLiteral<"plugin.source.update.response">;
|
|
37778
|
+
payload: z.ZodObject<{
|
|
37779
|
+
requestId: z.ZodString;
|
|
37780
|
+
plugins: z.ZodArray<z.ZodObject<{
|
|
37781
|
+
id: z.ZodString;
|
|
37782
|
+
previousCommit: z.ZodString;
|
|
37783
|
+
currentCommit: z.ZodString;
|
|
37784
|
+
commits: z.ZodNumber;
|
|
37785
|
+
updated: z.ZodBoolean;
|
|
37786
|
+
}, z.core.$strip>>;
|
|
37787
|
+
}, z.core.$strip>;
|
|
37277
37788
|
}, z.core.$strip>, z.ZodObject<{
|
|
37278
37789
|
type: z.ZodLiteral<"plugin.reload.response">;
|
|
37279
37790
|
payload: z.ZodObject<{
|
|
@@ -37287,6 +37798,13 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37287
37798
|
failed: "failed";
|
|
37288
37799
|
disabled: "disabled";
|
|
37289
37800
|
}>;
|
|
37801
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
37802
|
+
directory: "directory";
|
|
37803
|
+
git: "git";
|
|
37804
|
+
}>>;
|
|
37805
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
37806
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
37807
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
37290
37808
|
error: z.ZodOptional<z.ZodString>;
|
|
37291
37809
|
}, z.core.$strip>;
|
|
37292
37810
|
}, z.core.$strip>;
|
|
@@ -37303,6 +37821,13 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37303
37821
|
failed: "failed";
|
|
37304
37822
|
disabled: "disabled";
|
|
37305
37823
|
}>;
|
|
37824
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
37825
|
+
directory: "directory";
|
|
37826
|
+
git: "git";
|
|
37827
|
+
}>>;
|
|
37828
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
37829
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
37830
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
37306
37831
|
error: z.ZodOptional<z.ZodString>;
|
|
37307
37832
|
}, z.core.$strip>;
|
|
37308
37833
|
}, z.core.$strip>;
|
|
@@ -37319,6 +37844,13 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37319
37844
|
failed: "failed";
|
|
37320
37845
|
disabled: "disabled";
|
|
37321
37846
|
}>;
|
|
37847
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
37848
|
+
directory: "directory";
|
|
37849
|
+
git: "git";
|
|
37850
|
+
}>>;
|
|
37851
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
37852
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
37853
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
37322
37854
|
error: z.ZodOptional<z.ZodString>;
|
|
37323
37855
|
}, z.core.$strip>;
|
|
37324
37856
|
}, z.core.$strip>;
|
|
@@ -37845,6 +38377,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37845
38377
|
url: z.ZodNullable<z.ZodString>;
|
|
37846
38378
|
workflow: z.ZodOptional<z.ZodString>;
|
|
37847
38379
|
duration: z.ZodOptional<z.ZodString>;
|
|
38380
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
37848
38381
|
}, z.core.$strip>>>;
|
|
37849
38382
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
37850
38383
|
success: "success";
|
|
@@ -38012,6 +38545,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
38012
38545
|
url: string | null;
|
|
38013
38546
|
workflow?: string | undefined;
|
|
38014
38547
|
duration?: string | undefined;
|
|
38548
|
+
traits?: string[] | undefined;
|
|
38015
38549
|
}[] | undefined;
|
|
38016
38550
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
38017
38551
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -38122,6 +38656,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
38122
38656
|
url: string | null;
|
|
38123
38657
|
workflow?: string | undefined;
|
|
38124
38658
|
duration?: string | undefined;
|
|
38659
|
+
traits?: string[] | undefined;
|
|
38125
38660
|
}[] | undefined;
|
|
38126
38661
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
38127
38662
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -39087,6 +39622,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39087
39622
|
url: z.ZodNullable<z.ZodString>;
|
|
39088
39623
|
workflow: z.ZodOptional<z.ZodString>;
|
|
39089
39624
|
duration: z.ZodOptional<z.ZodString>;
|
|
39625
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
39090
39626
|
}, z.core.$strip>>>;
|
|
39091
39627
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
39092
39628
|
success: "success";
|
|
@@ -39254,6 +39790,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39254
39790
|
url: string | null;
|
|
39255
39791
|
workflow?: string | undefined;
|
|
39256
39792
|
duration?: string | undefined;
|
|
39793
|
+
traits?: string[] | undefined;
|
|
39257
39794
|
}[] | undefined;
|
|
39258
39795
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
39259
39796
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -39364,6 +39901,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39364
39901
|
url: string | null;
|
|
39365
39902
|
workflow?: string | undefined;
|
|
39366
39903
|
duration?: string | undefined;
|
|
39904
|
+
traits?: string[] | undefined;
|
|
39367
39905
|
}[] | undefined;
|
|
39368
39906
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
39369
39907
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -39599,6 +40137,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39599
40137
|
url: z.ZodNullable<z.ZodString>;
|
|
39600
40138
|
workflow: z.ZodOptional<z.ZodString>;
|
|
39601
40139
|
duration: z.ZodOptional<z.ZodString>;
|
|
40140
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
39602
40141
|
}, z.core.$strip>>>;
|
|
39603
40142
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
39604
40143
|
success: "success";
|
|
@@ -39766,6 +40305,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39766
40305
|
url: string | null;
|
|
39767
40306
|
workflow?: string | undefined;
|
|
39768
40307
|
duration?: string | undefined;
|
|
40308
|
+
traits?: string[] | undefined;
|
|
39769
40309
|
}[] | undefined;
|
|
39770
40310
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
39771
40311
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -39876,6 +40416,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
39876
40416
|
url: string | null;
|
|
39877
40417
|
workflow?: string | undefined;
|
|
39878
40418
|
duration?: string | undefined;
|
|
40419
|
+
traits?: string[] | undefined;
|
|
39879
40420
|
}[] | undefined;
|
|
39880
40421
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
39881
40422
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -40483,6 +41024,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
40483
41024
|
}, z.core.$strip>>;
|
|
40484
41025
|
error: z.ZodNullable<z.ZodString>;
|
|
40485
41026
|
}, z.core.$strip>;
|
|
41027
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41028
|
+
type: z.ZodLiteral<"agent.timeline.replacement">;
|
|
41029
|
+
payload: z.ZodObject<{
|
|
41030
|
+
agentId: z.ZodString;
|
|
41031
|
+
epoch: z.ZodString;
|
|
41032
|
+
}, z.core.$strip>;
|
|
40486
41033
|
}, z.core.$strip>, z.ZodObject<{
|
|
40487
41034
|
type: z.ZodLiteral<"agent.timeline.list_prompts.response">;
|
|
40488
41035
|
payload: z.ZodObject<{
|
|
@@ -40926,6 +41473,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
40926
41473
|
url: z.ZodNullable<z.ZodString>;
|
|
40927
41474
|
workflow: z.ZodOptional<z.ZodString>;
|
|
40928
41475
|
duration: z.ZodOptional<z.ZodString>;
|
|
41476
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
40929
41477
|
}, z.core.$strip>>>;
|
|
40930
41478
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
40931
41479
|
success: "success";
|
|
@@ -41093,6 +41641,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
41093
41641
|
url: string | null;
|
|
41094
41642
|
workflow?: string | undefined;
|
|
41095
41643
|
duration?: string | undefined;
|
|
41644
|
+
traits?: string[] | undefined;
|
|
41096
41645
|
}[] | undefined;
|
|
41097
41646
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
41098
41647
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -41203,6 +41752,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
41203
41752
|
url: string | null;
|
|
41204
41753
|
workflow?: string | undefined;
|
|
41205
41754
|
duration?: string | undefined;
|
|
41755
|
+
traits?: string[] | undefined;
|
|
41206
41756
|
}[] | undefined;
|
|
41207
41757
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
41208
41758
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -42126,6 +42676,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
42126
42676
|
duration: z.ZodOptional<z.ZodString>;
|
|
42127
42677
|
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
42128
42678
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
42679
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
42129
42680
|
}, z.core.$strip>>>>;
|
|
42130
42681
|
checksStatus: z.ZodOptional<z.ZodString>;
|
|
42131
42682
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -42570,7 +43121,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
42570
43121
|
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
42571
43122
|
id: z.ZodNumber;
|
|
42572
43123
|
status: z.ZodString;
|
|
42573
|
-
rawStatus: z.ZodString
|
|
43124
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
42574
43125
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
42575
43126
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
42576
43127
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -42582,7 +43133,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
42582
43133
|
name: z.ZodString;
|
|
42583
43134
|
stage: z.ZodString;
|
|
42584
43135
|
status: z.ZodString;
|
|
42585
|
-
rawStatus: z.ZodString
|
|
43136
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
42586
43137
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
42587
43138
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
42588
43139
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -42641,7 +43192,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
42641
43192
|
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
42642
43193
|
id: z.ZodNumber;
|
|
42643
43194
|
status: z.ZodString;
|
|
42644
|
-
rawStatus: z.ZodString
|
|
43195
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
42645
43196
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
42646
43197
|
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
42647
43198
|
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -42653,7 +43204,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
42653
43204
|
name: z.ZodString;
|
|
42654
43205
|
stage: z.ZodString;
|
|
42655
43206
|
status: z.ZodString;
|
|
42656
|
-
rawStatus: z.ZodString
|
|
43207
|
+
rawStatus: z.ZodOptional<z.ZodString>;
|
|
42657
43208
|
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
42658
43209
|
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
42659
43210
|
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
@@ -42700,6 +43251,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
42700
43251
|
duration: z.ZodOptional<z.ZodString>;
|
|
42701
43252
|
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
42702
43253
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
43254
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
42703
43255
|
}, z.core.$strip>>>>;
|
|
42704
43256
|
checksStatus: z.ZodOptional<z.ZodString>;
|
|
42705
43257
|
reviewDecision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -43083,6 +43635,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
43083
43635
|
url: z.ZodNullable<z.ZodString>;
|
|
43084
43636
|
workflow: z.ZodOptional<z.ZodString>;
|
|
43085
43637
|
duration: z.ZodOptional<z.ZodString>;
|
|
43638
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
43086
43639
|
}, z.core.$strip>>>;
|
|
43087
43640
|
checksStatus: z.ZodOptional<z.ZodEnum<{
|
|
43088
43641
|
success: "success";
|
|
@@ -43250,6 +43803,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
43250
43803
|
url: string | null;
|
|
43251
43804
|
workflow?: string | undefined;
|
|
43252
43805
|
duration?: string | undefined;
|
|
43806
|
+
traits?: string[] | undefined;
|
|
43253
43807
|
}[] | undefined;
|
|
43254
43808
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
43255
43809
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
@@ -43360,6 +43914,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
43360
43914
|
url: string | null;
|
|
43361
43915
|
workflow?: string | undefined;
|
|
43362
43916
|
duration?: string | undefined;
|
|
43917
|
+
traits?: string[] | undefined;
|
|
43363
43918
|
}[] | undefined;
|
|
43364
43919
|
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
43365
43920
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|