@getpaseo/protocol 0.1.109 → 0.2.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 +1 -0
- package/dist/forge-manifest.d.ts +66 -0
- package/dist/forge-manifest.js +92 -0
- package/dist/generated/validation/ws-outbound.aot.js +9001 -7859
- package/dist/git-remote.js +2 -1
- package/dist/messages.d.ts +2178 -80
- package/dist/messages.js +347 -21
- package/dist/provider-manifest.d.ts +1 -0
- package/dist/provider-manifest.js +21 -4
- package/dist/validation/ws-outbound-schema-metadata.d.ts +266 -16
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export declare const MutableDaemonConfigPatchSchema: z.ZodObject<{
|
|
|
62
62
|
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
63
63
|
}, z.core.$loose>>>>;
|
|
64
64
|
}, z.core.$loose>>>>;
|
|
65
|
+
removeProviders: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
65
66
|
metadataGeneration: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
66
67
|
providers: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
67
68
|
provider: z.ZodString;
|
|
@@ -143,6 +144,10 @@ export declare const ProviderSnapshotEntrySchema: z.ZodObject<{
|
|
|
143
144
|
provider: z.ZodString;
|
|
144
145
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
145
146
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
147
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
148
|
+
builtin: "builtin";
|
|
149
|
+
custom: "custom";
|
|
150
|
+
}>>;
|
|
146
151
|
error: z.ZodOptional<z.ZodString>;
|
|
147
152
|
models: z.ZodOptional<z.ZodArray<z.ZodType<AgentModelDefinition, unknown, z.core.$ZodTypeInternals<AgentModelDefinition, unknown>>>>;
|
|
148
153
|
modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, unknown, z.core.$ZodTypeInternals<AgentMode, unknown>>>>;
|
|
@@ -377,6 +382,16 @@ export declare const WorkspacePinSetRequestSchema: z.ZodObject<{
|
|
|
377
382
|
pinned: z.ZodBoolean;
|
|
378
383
|
requestId: z.ZodString;
|
|
379
384
|
}, z.core.$strip>;
|
|
385
|
+
export declare const WorkspaceRecoveryInspectRequestSchema: z.ZodObject<{
|
|
386
|
+
type: z.ZodLiteral<"workspace.recovery.inspect.request">;
|
|
387
|
+
workspaceId: z.ZodString;
|
|
388
|
+
requestId: z.ZodString;
|
|
389
|
+
}, z.core.$strip>;
|
|
390
|
+
export declare const WorkspaceRecoveryRestoreRequestSchema: z.ZodObject<{
|
|
391
|
+
type: z.ZodLiteral<"workspace.recovery.restore.request">;
|
|
392
|
+
workspaceId: z.ZodString;
|
|
393
|
+
requestId: z.ZodString;
|
|
394
|
+
}, z.core.$strip>;
|
|
380
395
|
export declare const SetVoiceModeMessageSchema: z.ZodObject<{
|
|
381
396
|
type: z.ZodLiteral<"set_voice_mode">;
|
|
382
397
|
enabled: z.ZodBoolean;
|
|
@@ -393,6 +408,18 @@ export declare const GitHubPrAttachmentSchema: z.ZodObject<{
|
|
|
393
408
|
baseRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
394
409
|
headRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
395
410
|
}, z.core.$strip>;
|
|
411
|
+
export declare const ForgeChangeRequestAttachmentSchema: z.ZodObject<{
|
|
412
|
+
type: z.ZodLiteral<"forge_change_request">;
|
|
413
|
+
mimeType: z.ZodLiteral<"application/paseo-forge-change-request">;
|
|
414
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
415
|
+
number: z.ZodNumber;
|
|
416
|
+
title: z.ZodString;
|
|
417
|
+
url: z.ZodString;
|
|
418
|
+
body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
419
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
420
|
+
baseRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
421
|
+
headRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
422
|
+
}, z.core.$strip>;
|
|
396
423
|
export declare const GitHubIssueAttachmentSchema: z.ZodObject<{
|
|
397
424
|
type: z.ZodLiteral<"github_issue">;
|
|
398
425
|
mimeType: z.ZodLiteral<"application/github-issue">;
|
|
@@ -401,6 +428,16 @@ export declare const GitHubIssueAttachmentSchema: z.ZodObject<{
|
|
|
401
428
|
url: z.ZodString;
|
|
402
429
|
body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
403
430
|
}, z.core.$strip>;
|
|
431
|
+
export declare const ForgeIssueAttachmentSchema: z.ZodObject<{
|
|
432
|
+
type: z.ZodLiteral<"forge_issue">;
|
|
433
|
+
mimeType: z.ZodLiteral<"application/paseo-forge-issue">;
|
|
434
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
435
|
+
number: z.ZodNumber;
|
|
436
|
+
title: z.ZodString;
|
|
437
|
+
url: z.ZodString;
|
|
438
|
+
body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
439
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
440
|
+
}, z.core.$strip>;
|
|
404
441
|
export declare const TextAttachmentSchema: z.ZodPipe<z.ZodObject<{
|
|
405
442
|
type: z.ZodLiteral<"text">;
|
|
406
443
|
mimeType: z.ZodLiteral<"text/plain">;
|
|
@@ -513,6 +550,26 @@ export declare const UploadedFileAttachmentSchema: z.ZodObject<{
|
|
|
513
550
|
path: z.ZodString;
|
|
514
551
|
}, z.core.$strip>;
|
|
515
552
|
export declare const AgentAttachmentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
553
|
+
type: z.ZodLiteral<"forge_change_request">;
|
|
554
|
+
mimeType: z.ZodLiteral<"application/paseo-forge-change-request">;
|
|
555
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
556
|
+
number: z.ZodNumber;
|
|
557
|
+
title: z.ZodString;
|
|
558
|
+
url: z.ZodString;
|
|
559
|
+
body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
560
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
561
|
+
baseRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
562
|
+
headRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
563
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
564
|
+
type: z.ZodLiteral<"forge_issue">;
|
|
565
|
+
mimeType: z.ZodLiteral<"application/paseo-forge-issue">;
|
|
566
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
567
|
+
number: z.ZodNumber;
|
|
568
|
+
title: z.ZodString;
|
|
569
|
+
url: z.ZodString;
|
|
570
|
+
body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
571
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
572
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
516
573
|
type: z.ZodLiteral<"github_pr">;
|
|
517
574
|
mimeType: z.ZodLiteral<"application/github-pr">;
|
|
518
575
|
number: z.ZodNumber;
|
|
@@ -595,6 +652,12 @@ export declare const AgentAttachmentSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
595
652
|
size: z.ZodNumber;
|
|
596
653
|
path: z.ZodString;
|
|
597
654
|
}, z.core.$strip>], "type">;
|
|
655
|
+
export declare const ChangeRequestCheckoutSourceSchema: z.ZodObject<{
|
|
656
|
+
kind: z.ZodLiteral<"change_request">;
|
|
657
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
658
|
+
number: z.ZodNumber;
|
|
659
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
660
|
+
}, z.core.$strip>;
|
|
598
661
|
export declare const SendAgentMessageSchema: z.ZodObject<{
|
|
599
662
|
type: z.ZodLiteral<"send_agent_message">;
|
|
600
663
|
agentId: z.ZodString;
|
|
@@ -610,6 +673,26 @@ export declare const SendAgentMessageSchema: z.ZodObject<{
|
|
|
610
673
|
mimeType: "text/plain";
|
|
611
674
|
text: string;
|
|
612
675
|
title?: string | null | undefined;
|
|
676
|
+
} | {
|
|
677
|
+
type: "forge_change_request";
|
|
678
|
+
mimeType: "application/paseo-forge-change-request";
|
|
679
|
+
forge: string;
|
|
680
|
+
number: number;
|
|
681
|
+
title: string;
|
|
682
|
+
url: string;
|
|
683
|
+
body?: string | null | undefined;
|
|
684
|
+
projectPath?: string | undefined;
|
|
685
|
+
baseRefName?: string | null | undefined;
|
|
686
|
+
headRefName?: string | null | undefined;
|
|
687
|
+
} | {
|
|
688
|
+
type: "forge_issue";
|
|
689
|
+
mimeType: "application/paseo-forge-issue";
|
|
690
|
+
forge: string;
|
|
691
|
+
number: number;
|
|
692
|
+
title: string;
|
|
693
|
+
url: string;
|
|
694
|
+
body?: string | null | undefined;
|
|
695
|
+
projectPath?: string | undefined;
|
|
613
696
|
} | {
|
|
614
697
|
type: "github_pr";
|
|
615
698
|
mimeType: "application/github-pr";
|
|
@@ -800,6 +883,26 @@ export declare const SendAgentMessageRequestSchema: z.ZodObject<{
|
|
|
800
883
|
mimeType: "text/plain";
|
|
801
884
|
text: string;
|
|
802
885
|
title?: string | null | undefined;
|
|
886
|
+
} | {
|
|
887
|
+
type: "forge_change_request";
|
|
888
|
+
mimeType: "application/paseo-forge-change-request";
|
|
889
|
+
forge: string;
|
|
890
|
+
number: number;
|
|
891
|
+
title: string;
|
|
892
|
+
url: string;
|
|
893
|
+
body?: string | null | undefined;
|
|
894
|
+
projectPath?: string | undefined;
|
|
895
|
+
baseRefName?: string | null | undefined;
|
|
896
|
+
headRefName?: string | null | undefined;
|
|
897
|
+
} | {
|
|
898
|
+
type: "forge_issue";
|
|
899
|
+
mimeType: "application/paseo-forge-issue";
|
|
900
|
+
forge: string;
|
|
901
|
+
number: number;
|
|
902
|
+
title: string;
|
|
903
|
+
url: string;
|
|
904
|
+
body?: string | null | undefined;
|
|
905
|
+
projectPath?: string | undefined;
|
|
803
906
|
} | {
|
|
804
907
|
type: "github_pr";
|
|
805
908
|
mimeType: "application/github-pr";
|
|
@@ -893,6 +996,7 @@ export declare const SetDaemonConfigRequestMessageSchema: z.ZodObject<{
|
|
|
893
996
|
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
894
997
|
}, z.core.$loose>>>>;
|
|
895
998
|
}, z.core.$loose>>>>;
|
|
999
|
+
removeProviders: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
896
1000
|
metadataGeneration: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
897
1001
|
providers: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
898
1002
|
provider: z.ZodString;
|
|
@@ -984,6 +1088,12 @@ declare const GitSetupOptionsSchema: z.ZodObject<{
|
|
|
984
1088
|
"branch-off": "branch-off";
|
|
985
1089
|
checkout: "checkout";
|
|
986
1090
|
}>>;
|
|
1091
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
1092
|
+
kind: z.ZodLiteral<"change_request">;
|
|
1093
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1094
|
+
number: z.ZodNumber;
|
|
1095
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
1096
|
+
}, z.core.$strip>>;
|
|
987
1097
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
988
1098
|
}, z.core.$strip>;
|
|
989
1099
|
export type GitSetupOptions = z.infer<typeof GitSetupOptionsSchema>;
|
|
@@ -1052,6 +1162,26 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
|
|
|
1052
1162
|
mimeType: "text/plain";
|
|
1053
1163
|
text: string;
|
|
1054
1164
|
title?: string | null | undefined;
|
|
1165
|
+
} | {
|
|
1166
|
+
type: "forge_change_request";
|
|
1167
|
+
mimeType: "application/paseo-forge-change-request";
|
|
1168
|
+
forge: string;
|
|
1169
|
+
number: number;
|
|
1170
|
+
title: string;
|
|
1171
|
+
url: string;
|
|
1172
|
+
body?: string | null | undefined;
|
|
1173
|
+
projectPath?: string | undefined;
|
|
1174
|
+
baseRefName?: string | null | undefined;
|
|
1175
|
+
headRefName?: string | null | undefined;
|
|
1176
|
+
} | {
|
|
1177
|
+
type: "forge_issue";
|
|
1178
|
+
mimeType: "application/paseo-forge-issue";
|
|
1179
|
+
forge: string;
|
|
1180
|
+
number: number;
|
|
1181
|
+
title: string;
|
|
1182
|
+
url: string;
|
|
1183
|
+
body?: string | null | undefined;
|
|
1184
|
+
projectPath?: string | undefined;
|
|
1055
1185
|
} | {
|
|
1056
1186
|
type: "github_pr";
|
|
1057
1187
|
mimeType: "application/github-pr";
|
|
@@ -1114,6 +1244,12 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
|
|
|
1114
1244
|
"branch-off": "branch-off";
|
|
1115
1245
|
checkout: "checkout";
|
|
1116
1246
|
}>>;
|
|
1247
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
1248
|
+
kind: z.ZodLiteral<"change_request">;
|
|
1249
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1250
|
+
number: z.ZodNumber;
|
|
1251
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
1252
|
+
}, z.core.$strip>>;
|
|
1117
1253
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
1118
1254
|
}, z.core.$strip>>;
|
|
1119
1255
|
worktree: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -1214,6 +1350,7 @@ export declare const ImportAgentRequestMessageSchema: z.ZodObject<{
|
|
|
1214
1350
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
1215
1351
|
providerHandleId: z.ZodOptional<z.ZodString>;
|
|
1216
1352
|
cwd: z.ZodOptional<z.ZodString>;
|
|
1353
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
1217
1354
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1218
1355
|
requestId: z.ZodString;
|
|
1219
1356
|
}, z.core.$strip>;
|
|
@@ -1477,6 +1614,45 @@ export declare const WorkspacePinSetResponseSchema: z.ZodObject<{
|
|
|
1477
1614
|
error: z.ZodNullable<z.ZodString>;
|
|
1478
1615
|
}, z.core.$strip>;
|
|
1479
1616
|
}, z.core.$strip>;
|
|
1617
|
+
export declare const WorkspaceRecoveryStateSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1618
|
+
kind: z.ZodLiteral<"recoverable">;
|
|
1619
|
+
workspaceId: z.ZodString;
|
|
1620
|
+
workspaceName: z.ZodString;
|
|
1621
|
+
action: z.ZodString;
|
|
1622
|
+
branch: z.ZodNullable<z.ZodString>;
|
|
1623
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1624
|
+
kind: z.ZodLiteral<"unavailable">;
|
|
1625
|
+
workspaceId: z.ZodString;
|
|
1626
|
+
reason: z.ZodString;
|
|
1627
|
+
message: z.ZodString;
|
|
1628
|
+
}, z.core.$strip>], "kind">;
|
|
1629
|
+
export declare const WorkspaceRecoveryInspectResponseSchema: z.ZodObject<{
|
|
1630
|
+
type: z.ZodLiteral<"workspace.recovery.inspect.response">;
|
|
1631
|
+
payload: z.ZodObject<{
|
|
1632
|
+
requestId: z.ZodString;
|
|
1633
|
+
state: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1634
|
+
kind: z.ZodLiteral<"recoverable">;
|
|
1635
|
+
workspaceId: z.ZodString;
|
|
1636
|
+
workspaceName: z.ZodString;
|
|
1637
|
+
action: z.ZodString;
|
|
1638
|
+
branch: z.ZodNullable<z.ZodString>;
|
|
1639
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1640
|
+
kind: z.ZodLiteral<"unavailable">;
|
|
1641
|
+
workspaceId: z.ZodString;
|
|
1642
|
+
reason: z.ZodString;
|
|
1643
|
+
message: z.ZodString;
|
|
1644
|
+
}, z.core.$strip>], "kind">;
|
|
1645
|
+
}, z.core.$strip>;
|
|
1646
|
+
}, z.core.$strip>;
|
|
1647
|
+
export declare const WorkspaceRecoveryRestoreResponseSchema: z.ZodObject<{
|
|
1648
|
+
type: z.ZodLiteral<"workspace.recovery.restore.response">;
|
|
1649
|
+
payload: z.ZodObject<{
|
|
1650
|
+
requestId: z.ZodString;
|
|
1651
|
+
workspaceId: z.ZodString;
|
|
1652
|
+
accepted: z.ZodBoolean;
|
|
1653
|
+
error: z.ZodNullable<z.ZodString>;
|
|
1654
|
+
}, z.core.$strip>;
|
|
1655
|
+
}, z.core.$strip>;
|
|
1480
1656
|
export declare const SetVoiceModeResponseMessageSchema: z.ZodObject<{
|
|
1481
1657
|
type: z.ZodLiteral<"set_voice_mode_response">;
|
|
1482
1658
|
payload: z.ZodObject<{
|
|
@@ -1577,6 +1753,17 @@ export declare const CheckoutPrMergeRequestSchema: z.ZodObject<{
|
|
|
1577
1753
|
}>;
|
|
1578
1754
|
requestId: z.ZodString;
|
|
1579
1755
|
}, z.core.$strip>;
|
|
1756
|
+
export declare const CheckoutForgeSetAutoMergeRequestSchema: z.ZodObject<{
|
|
1757
|
+
type: z.ZodLiteral<"checkout.forge.set_auto_merge.request">;
|
|
1758
|
+
cwd: z.ZodString;
|
|
1759
|
+
enabled: z.ZodBoolean;
|
|
1760
|
+
mergeMethod: z.ZodOptional<z.ZodEnum<{
|
|
1761
|
+
merge: "merge";
|
|
1762
|
+
squash: "squash";
|
|
1763
|
+
rebase: "rebase";
|
|
1764
|
+
}>>;
|
|
1765
|
+
requestId: z.ZodString;
|
|
1766
|
+
}, z.core.$strip>;
|
|
1580
1767
|
export declare const CheckoutGithubSetAutoMergeRequestSchema: z.ZodObject<{
|
|
1581
1768
|
type: z.ZodLiteral<"checkout.github.set_auto_merge.request">;
|
|
1582
1769
|
cwd: z.ZodString;
|
|
@@ -1588,14 +1775,67 @@ export declare const CheckoutGithubSetAutoMergeRequestSchema: z.ZodObject<{
|
|
|
1588
1775
|
}>>;
|
|
1589
1776
|
requestId: z.ZodString;
|
|
1590
1777
|
}, z.core.$strip>;
|
|
1778
|
+
declare const CheckoutCommitFileSchema: z.ZodObject<{
|
|
1779
|
+
path: z.ZodString;
|
|
1780
|
+
additions: z.ZodNumber;
|
|
1781
|
+
deletions: z.ZodNumber;
|
|
1782
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1783
|
+
added: "added";
|
|
1784
|
+
modified: "modified";
|
|
1785
|
+
deleted: "deleted";
|
|
1786
|
+
renamed: "renamed";
|
|
1787
|
+
}>>;
|
|
1788
|
+
}, z.core.$strip>;
|
|
1789
|
+
declare const CheckoutCommitSchema: z.ZodObject<{
|
|
1790
|
+
sha: z.ZodString;
|
|
1791
|
+
shortSha: z.ZodString;
|
|
1792
|
+
subject: z.ZodString;
|
|
1793
|
+
authorName: z.ZodString;
|
|
1794
|
+
authorDate: z.ZodString;
|
|
1795
|
+
isOnRemote: z.ZodBoolean;
|
|
1796
|
+
files: z.ZodArray<z.ZodObject<{
|
|
1797
|
+
path: z.ZodString;
|
|
1798
|
+
additions: z.ZodNumber;
|
|
1799
|
+
deletions: z.ZodNumber;
|
|
1800
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1801
|
+
added: "added";
|
|
1802
|
+
modified: "modified";
|
|
1803
|
+
deleted: "deleted";
|
|
1804
|
+
renamed: "renamed";
|
|
1805
|
+
}>>;
|
|
1806
|
+
}, z.core.$strip>>;
|
|
1807
|
+
}, z.core.$strip>;
|
|
1808
|
+
export declare const CheckoutCommitsListRequestSchema: z.ZodObject<{
|
|
1809
|
+
type: z.ZodLiteral<"checkout.commits.list.request">;
|
|
1810
|
+
cwd: z.ZodString;
|
|
1811
|
+
requestId: z.ZodString;
|
|
1812
|
+
}, z.core.$strip>;
|
|
1813
|
+
export declare const CheckoutCommitFileDiffRequestSchema: z.ZodObject<{
|
|
1814
|
+
type: z.ZodLiteral<"checkout.commits.file_diff.request">;
|
|
1815
|
+
cwd: z.ZodString;
|
|
1816
|
+
sha: z.ZodString;
|
|
1817
|
+
path: z.ZodString;
|
|
1818
|
+
requestId: z.ZodString;
|
|
1819
|
+
}, z.core.$strip>;
|
|
1820
|
+
export declare const CheckoutForgeGetCheckDetailsRequestSchema: z.ZodObject<{
|
|
1821
|
+
cwd: z.ZodString;
|
|
1822
|
+
repoOwner: z.ZodOptional<z.ZodString>;
|
|
1823
|
+
repoName: z.ZodOptional<z.ZodString>;
|
|
1824
|
+
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
1825
|
+
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
1826
|
+
changeRequestNumber: z.ZodOptional<z.ZodNumber>;
|
|
1827
|
+
requestId: z.ZodString;
|
|
1828
|
+
type: z.ZodLiteral<"checkout.forge.get_check_details.request">;
|
|
1829
|
+
}, z.core.$strip>;
|
|
1591
1830
|
export declare const CheckoutGithubGetCheckDetailsRequestSchema: z.ZodObject<{
|
|
1592
|
-
type: z.ZodLiteral<"checkout.github.get_check_details.request">;
|
|
1593
1831
|
cwd: z.ZodString;
|
|
1594
|
-
repoOwner: z.ZodString
|
|
1595
|
-
repoName: z.ZodString
|
|
1596
|
-
checkRunId: z.ZodNumber
|
|
1832
|
+
repoOwner: z.ZodOptional<z.ZodString>;
|
|
1833
|
+
repoName: z.ZodOptional<z.ZodString>;
|
|
1834
|
+
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
1597
1835
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
1836
|
+
changeRequestNumber: z.ZodOptional<z.ZodNumber>;
|
|
1598
1837
|
requestId: z.ZodString;
|
|
1838
|
+
type: z.ZodLiteral<"checkout.github.get_check_details.request">;
|
|
1599
1839
|
}, z.core.$strip>;
|
|
1600
1840
|
export declare const CheckoutPrStatusRequestSchema: z.ZodObject<{
|
|
1601
1841
|
type: z.ZodLiteral<"checkout_pr_status_request">;
|
|
@@ -1658,26 +1898,72 @@ export declare const GitHubSearchItemSchema: z.ZodObject<{
|
|
|
1658
1898
|
issue: "issue";
|
|
1659
1899
|
pr: "pr";
|
|
1660
1900
|
}>;
|
|
1901
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
1661
1902
|
number: z.ZodNumber;
|
|
1662
1903
|
title: z.ZodString;
|
|
1663
1904
|
url: z.ZodString;
|
|
1664
1905
|
state: z.ZodString;
|
|
1665
1906
|
body: z.ZodNullable<z.ZodString>;
|
|
1666
1907
|
labels: z.ZodArray<z.ZodString>;
|
|
1908
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
1667
1909
|
baseRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1668
1910
|
headRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1669
1911
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1670
1912
|
}, z.core.$strip>;
|
|
1913
|
+
export declare const ForgeSearchItemSchema: z.ZodObject<{
|
|
1914
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
1915
|
+
number: z.ZodNumber;
|
|
1916
|
+
title: z.ZodString;
|
|
1917
|
+
url: z.ZodString;
|
|
1918
|
+
state: z.ZodString;
|
|
1919
|
+
body: z.ZodNullable<z.ZodString>;
|
|
1920
|
+
labels: z.ZodArray<z.ZodString>;
|
|
1921
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
1922
|
+
baseRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1923
|
+
headRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1924
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1925
|
+
kind: z.ZodEnum<{
|
|
1926
|
+
change_request: "change_request";
|
|
1927
|
+
issue: "issue";
|
|
1928
|
+
}>;
|
|
1929
|
+
}, z.core.$strip>;
|
|
1930
|
+
export declare const ForgeSearchKindSchema: z.ZodEnum<{
|
|
1931
|
+
change_request: "change_request";
|
|
1932
|
+
issue: "issue";
|
|
1933
|
+
pr: "pr";
|
|
1934
|
+
"github-issue": "github-issue";
|
|
1935
|
+
"github-pr": "github-pr";
|
|
1936
|
+
}>;
|
|
1671
1937
|
export declare const GitHubSearchKindSchema: z.ZodEnum<{
|
|
1938
|
+
change_request: "change_request";
|
|
1939
|
+
issue: "issue";
|
|
1940
|
+
pr: "pr";
|
|
1672
1941
|
"github-issue": "github-issue";
|
|
1673
1942
|
"github-pr": "github-pr";
|
|
1674
1943
|
}>;
|
|
1944
|
+
export declare const ForgeSearchRequestSchema: z.ZodObject<{
|
|
1945
|
+
type: z.ZodLiteral<"forge.search.request">;
|
|
1946
|
+
cwd: z.ZodString;
|
|
1947
|
+
query: z.ZodString;
|
|
1948
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
1949
|
+
kinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1950
|
+
change_request: "change_request";
|
|
1951
|
+
issue: "issue";
|
|
1952
|
+
pr: "pr";
|
|
1953
|
+
"github-issue": "github-issue";
|
|
1954
|
+
"github-pr": "github-pr";
|
|
1955
|
+
}>>>;
|
|
1956
|
+
requestId: z.ZodString;
|
|
1957
|
+
}, z.core.$strip>;
|
|
1675
1958
|
export declare const GitHubSearchRequestSchema: z.ZodObject<{
|
|
1676
1959
|
type: z.ZodLiteral<"github_search_request">;
|
|
1677
1960
|
cwd: z.ZodString;
|
|
1678
1961
|
query: z.ZodString;
|
|
1679
1962
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
1680
1963
|
kinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1964
|
+
change_request: "change_request";
|
|
1965
|
+
issue: "issue";
|
|
1966
|
+
pr: "pr";
|
|
1681
1967
|
"github-issue": "github-issue";
|
|
1682
1968
|
"github-pr": "github-pr";
|
|
1683
1969
|
}>>>;
|
|
@@ -1723,6 +2009,26 @@ export declare const FirstAgentContextSchema: z.ZodObject<{
|
|
|
1723
2009
|
mimeType: "text/plain";
|
|
1724
2010
|
text: string;
|
|
1725
2011
|
title?: string | null | undefined;
|
|
2012
|
+
} | {
|
|
2013
|
+
type: "forge_change_request";
|
|
2014
|
+
mimeType: "application/paseo-forge-change-request";
|
|
2015
|
+
forge: string;
|
|
2016
|
+
number: number;
|
|
2017
|
+
title: string;
|
|
2018
|
+
url: string;
|
|
2019
|
+
body?: string | null | undefined;
|
|
2020
|
+
projectPath?: string | undefined;
|
|
2021
|
+
baseRefName?: string | null | undefined;
|
|
2022
|
+
headRefName?: string | null | undefined;
|
|
2023
|
+
} | {
|
|
2024
|
+
type: "forge_issue";
|
|
2025
|
+
mimeType: "application/paseo-forge-issue";
|
|
2026
|
+
forge: string;
|
|
2027
|
+
number: number;
|
|
2028
|
+
title: string;
|
|
2029
|
+
url: string;
|
|
2030
|
+
body?: string | null | undefined;
|
|
2031
|
+
projectPath?: string | undefined;
|
|
1726
2032
|
} | {
|
|
1727
2033
|
type: "github_pr";
|
|
1728
2034
|
mimeType: "application/github-pr";
|
|
@@ -1787,6 +2093,26 @@ export declare const CreatePaseoWorktreeRequestSchema: z.ZodObject<{
|
|
|
1787
2093
|
mimeType: "text/plain";
|
|
1788
2094
|
text: string;
|
|
1789
2095
|
title?: string | null | undefined;
|
|
2096
|
+
} | {
|
|
2097
|
+
type: "forge_change_request";
|
|
2098
|
+
mimeType: "application/paseo-forge-change-request";
|
|
2099
|
+
forge: string;
|
|
2100
|
+
number: number;
|
|
2101
|
+
title: string;
|
|
2102
|
+
url: string;
|
|
2103
|
+
body?: string | null | undefined;
|
|
2104
|
+
projectPath?: string | undefined;
|
|
2105
|
+
baseRefName?: string | null | undefined;
|
|
2106
|
+
headRefName?: string | null | undefined;
|
|
2107
|
+
} | {
|
|
2108
|
+
type: "forge_issue";
|
|
2109
|
+
mimeType: "application/paseo-forge-issue";
|
|
2110
|
+
forge: string;
|
|
2111
|
+
number: number;
|
|
2112
|
+
title: string;
|
|
2113
|
+
url: string;
|
|
2114
|
+
body?: string | null | undefined;
|
|
2115
|
+
projectPath?: string | undefined;
|
|
1790
2116
|
} | {
|
|
1791
2117
|
type: "github_pr";
|
|
1792
2118
|
mimeType: "application/github-pr";
|
|
@@ -1846,6 +2172,26 @@ export declare const CreatePaseoWorktreeRequestSchema: z.ZodObject<{
|
|
|
1846
2172
|
mimeType: "text/plain";
|
|
1847
2173
|
text: string;
|
|
1848
2174
|
title?: string | null | undefined;
|
|
2175
|
+
} | {
|
|
2176
|
+
type: "forge_change_request";
|
|
2177
|
+
mimeType: "application/paseo-forge-change-request";
|
|
2178
|
+
forge: string;
|
|
2179
|
+
number: number;
|
|
2180
|
+
title: string;
|
|
2181
|
+
url: string;
|
|
2182
|
+
body?: string | null | undefined;
|
|
2183
|
+
projectPath?: string | undefined;
|
|
2184
|
+
baseRefName?: string | null | undefined;
|
|
2185
|
+
headRefName?: string | null | undefined;
|
|
2186
|
+
} | {
|
|
2187
|
+
type: "forge_issue";
|
|
2188
|
+
mimeType: "application/paseo-forge-issue";
|
|
2189
|
+
forge: string;
|
|
2190
|
+
number: number;
|
|
2191
|
+
title: string;
|
|
2192
|
+
url: string;
|
|
2193
|
+
body?: string | null | undefined;
|
|
2194
|
+
projectPath?: string | undefined;
|
|
1849
2195
|
} | {
|
|
1850
2196
|
type: "github_pr";
|
|
1851
2197
|
mimeType: "application/github-pr";
|
|
@@ -1903,6 +2249,12 @@ export declare const CreatePaseoWorktreeRequestSchema: z.ZodObject<{
|
|
|
1903
2249
|
"branch-off": "branch-off";
|
|
1904
2250
|
checkout: "checkout";
|
|
1905
2251
|
}>>;
|
|
2252
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
2253
|
+
kind: z.ZodLiteral<"change_request">;
|
|
2254
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2255
|
+
number: z.ZodNumber;
|
|
2256
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
2257
|
+
}, z.core.$strip>>;
|
|
1906
2258
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
1907
2259
|
requestId: z.ZodString;
|
|
1908
2260
|
}, z.core.$strip>;
|
|
@@ -1992,6 +2344,26 @@ export declare const WorkspaceCreateRequestSchema: z.ZodObject<{
|
|
|
1992
2344
|
mimeType: "text/plain";
|
|
1993
2345
|
text: string;
|
|
1994
2346
|
title?: string | null | undefined;
|
|
2347
|
+
} | {
|
|
2348
|
+
type: "forge_change_request";
|
|
2349
|
+
mimeType: "application/paseo-forge-change-request";
|
|
2350
|
+
forge: string;
|
|
2351
|
+
number: number;
|
|
2352
|
+
title: string;
|
|
2353
|
+
url: string;
|
|
2354
|
+
body?: string | null | undefined;
|
|
2355
|
+
projectPath?: string | undefined;
|
|
2356
|
+
baseRefName?: string | null | undefined;
|
|
2357
|
+
headRefName?: string | null | undefined;
|
|
2358
|
+
} | {
|
|
2359
|
+
type: "forge_issue";
|
|
2360
|
+
mimeType: "application/paseo-forge-issue";
|
|
2361
|
+
forge: string;
|
|
2362
|
+
number: number;
|
|
2363
|
+
title: string;
|
|
2364
|
+
url: string;
|
|
2365
|
+
body?: string | null | undefined;
|
|
2366
|
+
projectPath?: string | undefined;
|
|
1995
2367
|
} | {
|
|
1996
2368
|
type: "github_pr";
|
|
1997
2369
|
mimeType: "application/github-pr";
|
|
@@ -2058,6 +2430,12 @@ export declare const WorkspaceCreateRequestSchema: z.ZodObject<{
|
|
|
2058
2430
|
}>>;
|
|
2059
2431
|
refName: z.ZodOptional<z.ZodString>;
|
|
2060
2432
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
2433
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
2434
|
+
kind: z.ZodLiteral<"change_request">;
|
|
2435
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2436
|
+
number: z.ZodNumber;
|
|
2437
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
2438
|
+
}, z.core.$strip>>;
|
|
2061
2439
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
2062
2440
|
worktreeSlug: z.ZodOptional<z.ZodString>;
|
|
2063
2441
|
}, z.core.$strip>], "kind">;
|
|
@@ -2067,6 +2445,37 @@ export declare const WorkspaceClearAttentionRequestSchema: z.ZodObject<{
|
|
|
2067
2445
|
workspaceId: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
|
|
2068
2446
|
requestId: z.ZodString;
|
|
2069
2447
|
}, z.core.$strip>;
|
|
2448
|
+
declare const ParsedDiffFileSchema: z.ZodObject<{
|
|
2449
|
+
path: z.ZodString;
|
|
2450
|
+
isNew: z.ZodBoolean;
|
|
2451
|
+
isDeleted: z.ZodBoolean;
|
|
2452
|
+
additions: z.ZodNumber;
|
|
2453
|
+
deletions: z.ZodNumber;
|
|
2454
|
+
hunks: z.ZodArray<z.ZodObject<{
|
|
2455
|
+
oldStart: z.ZodNumber;
|
|
2456
|
+
oldCount: z.ZodNumber;
|
|
2457
|
+
newStart: z.ZodNumber;
|
|
2458
|
+
newCount: z.ZodNumber;
|
|
2459
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
2460
|
+
type: z.ZodEnum<{
|
|
2461
|
+
context: "context";
|
|
2462
|
+
add: "add";
|
|
2463
|
+
remove: "remove";
|
|
2464
|
+
header: "header";
|
|
2465
|
+
}>;
|
|
2466
|
+
content: z.ZodString;
|
|
2467
|
+
tokens: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2468
|
+
text: z.ZodString;
|
|
2469
|
+
style: z.ZodNullable<z.ZodString>;
|
|
2470
|
+
}, z.core.$strip>>>;
|
|
2471
|
+
}, z.core.$strip>>;
|
|
2472
|
+
}, z.core.$strip>>;
|
|
2473
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
2474
|
+
ok: "ok";
|
|
2475
|
+
too_large: "too_large";
|
|
2476
|
+
binary: "binary";
|
|
2477
|
+
}>>;
|
|
2478
|
+
}, z.core.$strip>;
|
|
2070
2479
|
export declare const FileExplorerRequestSchema: z.ZodObject<{
|
|
2071
2480
|
type: z.ZodLiteral<"file_explorer_request">;
|
|
2072
2481
|
cwd: z.ZodString;
|
|
@@ -2610,6 +3019,14 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2610
3019
|
workspaceId: z.ZodString;
|
|
2611
3020
|
pinned: z.ZodBoolean;
|
|
2612
3021
|
requestId: z.ZodString;
|
|
3022
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3023
|
+
type: z.ZodLiteral<"workspace.recovery.inspect.request">;
|
|
3024
|
+
workspaceId: z.ZodString;
|
|
3025
|
+
requestId: z.ZodString;
|
|
3026
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3027
|
+
type: z.ZodLiteral<"workspace.recovery.restore.request">;
|
|
3028
|
+
workspaceId: z.ZodString;
|
|
3029
|
+
requestId: z.ZodString;
|
|
2613
3030
|
}, z.core.$strip>, z.ZodObject<{
|
|
2614
3031
|
type: z.ZodLiteral<"set_voice_mode">;
|
|
2615
3032
|
enabled: z.ZodBoolean;
|
|
@@ -2631,6 +3048,26 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2631
3048
|
mimeType: "text/plain";
|
|
2632
3049
|
text: string;
|
|
2633
3050
|
title?: string | null | undefined;
|
|
3051
|
+
} | {
|
|
3052
|
+
type: "forge_change_request";
|
|
3053
|
+
mimeType: "application/paseo-forge-change-request";
|
|
3054
|
+
forge: string;
|
|
3055
|
+
number: number;
|
|
3056
|
+
title: string;
|
|
3057
|
+
url: string;
|
|
3058
|
+
body?: string | null | undefined;
|
|
3059
|
+
projectPath?: string | undefined;
|
|
3060
|
+
baseRefName?: string | null | undefined;
|
|
3061
|
+
headRefName?: string | null | undefined;
|
|
3062
|
+
} | {
|
|
3063
|
+
type: "forge_issue";
|
|
3064
|
+
mimeType: "application/paseo-forge-issue";
|
|
3065
|
+
forge: string;
|
|
3066
|
+
number: number;
|
|
3067
|
+
title: string;
|
|
3068
|
+
url: string;
|
|
3069
|
+
body?: string | null | undefined;
|
|
3070
|
+
projectPath?: string | undefined;
|
|
2634
3071
|
} | {
|
|
2635
3072
|
type: "github_pr";
|
|
2636
3073
|
mimeType: "application/github-pr";
|
|
@@ -2718,6 +3155,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2718
3155
|
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
2719
3156
|
}, z.core.$loose>>>>;
|
|
2720
3157
|
}, z.core.$loose>>>>;
|
|
3158
|
+
removeProviders: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2721
3159
|
metadataGeneration: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
2722
3160
|
providers: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2723
3161
|
provider: z.ZodString;
|
|
@@ -2844,6 +3282,26 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2844
3282
|
mimeType: "text/plain";
|
|
2845
3283
|
text: string;
|
|
2846
3284
|
title?: string | null | undefined;
|
|
3285
|
+
} | {
|
|
3286
|
+
type: "forge_change_request";
|
|
3287
|
+
mimeType: "application/paseo-forge-change-request";
|
|
3288
|
+
forge: string;
|
|
3289
|
+
number: number;
|
|
3290
|
+
title: string;
|
|
3291
|
+
url: string;
|
|
3292
|
+
body?: string | null | undefined;
|
|
3293
|
+
projectPath?: string | undefined;
|
|
3294
|
+
baseRefName?: string | null | undefined;
|
|
3295
|
+
headRefName?: string | null | undefined;
|
|
3296
|
+
} | {
|
|
3297
|
+
type: "forge_issue";
|
|
3298
|
+
mimeType: "application/paseo-forge-issue";
|
|
3299
|
+
forge: string;
|
|
3300
|
+
number: number;
|
|
3301
|
+
title: string;
|
|
3302
|
+
url: string;
|
|
3303
|
+
body?: string | null | undefined;
|
|
3304
|
+
projectPath?: string | undefined;
|
|
2847
3305
|
} | {
|
|
2848
3306
|
type: "github_pr";
|
|
2849
3307
|
mimeType: "application/github-pr";
|
|
@@ -2906,6 +3364,12 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2906
3364
|
"branch-off": "branch-off";
|
|
2907
3365
|
checkout: "checkout";
|
|
2908
3366
|
}>>;
|
|
3367
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
3368
|
+
kind: z.ZodLiteral<"change_request">;
|
|
3369
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3370
|
+
number: z.ZodNumber;
|
|
3371
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
3372
|
+
}, z.core.$strip>>;
|
|
2909
3373
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
2910
3374
|
}, z.core.$strip>>;
|
|
2911
3375
|
worktree: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -3008,6 +3472,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3008
3472
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
3009
3473
|
providerHandleId: z.ZodOptional<z.ZodString>;
|
|
3010
3474
|
cwd: z.ZodOptional<z.ZodString>;
|
|
3475
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
3011
3476
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3012
3477
|
requestId: z.ZodString;
|
|
3013
3478
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3184,6 +3649,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3184
3649
|
rebase: "rebase";
|
|
3185
3650
|
}>;
|
|
3186
3651
|
requestId: z.ZodString;
|
|
3652
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3653
|
+
type: z.ZodLiteral<"checkout.forge.set_auto_merge.request">;
|
|
3654
|
+
cwd: z.ZodString;
|
|
3655
|
+
enabled: z.ZodBoolean;
|
|
3656
|
+
mergeMethod: z.ZodOptional<z.ZodEnum<{
|
|
3657
|
+
merge: "merge";
|
|
3658
|
+
squash: "squash";
|
|
3659
|
+
rebase: "rebase";
|
|
3660
|
+
}>>;
|
|
3661
|
+
requestId: z.ZodString;
|
|
3187
3662
|
}, z.core.$strip>, z.ZodObject<{
|
|
3188
3663
|
type: z.ZodLiteral<"checkout.github.set_auto_merge.request">;
|
|
3189
3664
|
cwd: z.ZodString;
|
|
@@ -3195,13 +3670,33 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3195
3670
|
}>>;
|
|
3196
3671
|
requestId: z.ZodString;
|
|
3197
3672
|
}, z.core.$strip>, z.ZodObject<{
|
|
3198
|
-
type: z.ZodLiteral<"checkout.
|
|
3673
|
+
type: z.ZodLiteral<"checkout.commits.list.request">;
|
|
3199
3674
|
cwd: z.ZodString;
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3675
|
+
requestId: z.ZodString;
|
|
3676
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3677
|
+
type: z.ZodLiteral<"checkout.commits.file_diff.request">;
|
|
3678
|
+
cwd: z.ZodString;
|
|
3679
|
+
sha: z.ZodString;
|
|
3680
|
+
path: z.ZodString;
|
|
3681
|
+
requestId: z.ZodString;
|
|
3682
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3683
|
+
cwd: z.ZodString;
|
|
3684
|
+
repoOwner: z.ZodOptional<z.ZodString>;
|
|
3685
|
+
repoName: z.ZodOptional<z.ZodString>;
|
|
3686
|
+
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
3203
3687
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
3688
|
+
changeRequestNumber: z.ZodOptional<z.ZodNumber>;
|
|
3204
3689
|
requestId: z.ZodString;
|
|
3690
|
+
type: z.ZodLiteral<"checkout.forge.get_check_details.request">;
|
|
3691
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3692
|
+
cwd: z.ZodString;
|
|
3693
|
+
repoOwner: z.ZodOptional<z.ZodString>;
|
|
3694
|
+
repoName: z.ZodOptional<z.ZodString>;
|
|
3695
|
+
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
3696
|
+
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
3697
|
+
changeRequestNumber: z.ZodOptional<z.ZodNumber>;
|
|
3698
|
+
requestId: z.ZodString;
|
|
3699
|
+
type: z.ZodLiteral<"checkout.github.get_check_details.request">;
|
|
3205
3700
|
}, z.core.$strip>, z.ZodObject<{
|
|
3206
3701
|
type: z.ZodLiteral<"checkout_pr_status_request">;
|
|
3207
3702
|
cwd: z.ZodString;
|
|
@@ -3249,12 +3744,28 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3249
3744
|
query: z.ZodOptional<z.ZodString>;
|
|
3250
3745
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
3251
3746
|
requestId: z.ZodString;
|
|
3747
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3748
|
+
type: z.ZodLiteral<"forge.search.request">;
|
|
3749
|
+
cwd: z.ZodString;
|
|
3750
|
+
query: z.ZodString;
|
|
3751
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
3752
|
+
kinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3753
|
+
change_request: "change_request";
|
|
3754
|
+
issue: "issue";
|
|
3755
|
+
pr: "pr";
|
|
3756
|
+
"github-issue": "github-issue";
|
|
3757
|
+
"github-pr": "github-pr";
|
|
3758
|
+
}>>>;
|
|
3759
|
+
requestId: z.ZodString;
|
|
3252
3760
|
}, z.core.$strip>, z.ZodObject<{
|
|
3253
3761
|
type: z.ZodLiteral<"github_search_request">;
|
|
3254
3762
|
cwd: z.ZodString;
|
|
3255
3763
|
query: z.ZodString;
|
|
3256
3764
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
3257
3765
|
kinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3766
|
+
change_request: "change_request";
|
|
3767
|
+
issue: "issue";
|
|
3768
|
+
pr: "pr";
|
|
3258
3769
|
"github-issue": "github-issue";
|
|
3259
3770
|
"github-pr": "github-pr";
|
|
3260
3771
|
}>>>;
|
|
@@ -3300,6 +3811,26 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3300
3811
|
mimeType: "text/plain";
|
|
3301
3812
|
text: string;
|
|
3302
3813
|
title?: string | null | undefined;
|
|
3814
|
+
} | {
|
|
3815
|
+
type: "forge_change_request";
|
|
3816
|
+
mimeType: "application/paseo-forge-change-request";
|
|
3817
|
+
forge: string;
|
|
3818
|
+
number: number;
|
|
3819
|
+
title: string;
|
|
3820
|
+
url: string;
|
|
3821
|
+
body?: string | null | undefined;
|
|
3822
|
+
projectPath?: string | undefined;
|
|
3823
|
+
baseRefName?: string | null | undefined;
|
|
3824
|
+
headRefName?: string | null | undefined;
|
|
3825
|
+
} | {
|
|
3826
|
+
type: "forge_issue";
|
|
3827
|
+
mimeType: "application/paseo-forge-issue";
|
|
3828
|
+
forge: string;
|
|
3829
|
+
number: number;
|
|
3830
|
+
title: string;
|
|
3831
|
+
url: string;
|
|
3832
|
+
body?: string | null | undefined;
|
|
3833
|
+
projectPath?: string | undefined;
|
|
3303
3834
|
} | {
|
|
3304
3835
|
type: "github_pr";
|
|
3305
3836
|
mimeType: "application/github-pr";
|
|
@@ -3359,6 +3890,26 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3359
3890
|
mimeType: "text/plain";
|
|
3360
3891
|
text: string;
|
|
3361
3892
|
title?: string | null | undefined;
|
|
3893
|
+
} | {
|
|
3894
|
+
type: "forge_change_request";
|
|
3895
|
+
mimeType: "application/paseo-forge-change-request";
|
|
3896
|
+
forge: string;
|
|
3897
|
+
number: number;
|
|
3898
|
+
title: string;
|
|
3899
|
+
url: string;
|
|
3900
|
+
body?: string | null | undefined;
|
|
3901
|
+
projectPath?: string | undefined;
|
|
3902
|
+
baseRefName?: string | null | undefined;
|
|
3903
|
+
headRefName?: string | null | undefined;
|
|
3904
|
+
} | {
|
|
3905
|
+
type: "forge_issue";
|
|
3906
|
+
mimeType: "application/paseo-forge-issue";
|
|
3907
|
+
forge: string;
|
|
3908
|
+
number: number;
|
|
3909
|
+
title: string;
|
|
3910
|
+
url: string;
|
|
3911
|
+
body?: string | null | undefined;
|
|
3912
|
+
projectPath?: string | undefined;
|
|
3362
3913
|
} | {
|
|
3363
3914
|
type: "github_pr";
|
|
3364
3915
|
mimeType: "application/github-pr";
|
|
@@ -3416,6 +3967,12 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3416
3967
|
"branch-off": "branch-off";
|
|
3417
3968
|
checkout: "checkout";
|
|
3418
3969
|
}>>;
|
|
3970
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
3971
|
+
kind: z.ZodLiteral<"change_request">;
|
|
3972
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3973
|
+
number: z.ZodNumber;
|
|
3974
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
3975
|
+
}, z.core.$strip>>;
|
|
3419
3976
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
3420
3977
|
requestId: z.ZodString;
|
|
3421
3978
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3478,6 +4035,26 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3478
4035
|
mimeType: "text/plain";
|
|
3479
4036
|
text: string;
|
|
3480
4037
|
title?: string | null | undefined;
|
|
4038
|
+
} | {
|
|
4039
|
+
type: "forge_change_request";
|
|
4040
|
+
mimeType: "application/paseo-forge-change-request";
|
|
4041
|
+
forge: string;
|
|
4042
|
+
number: number;
|
|
4043
|
+
title: string;
|
|
4044
|
+
url: string;
|
|
4045
|
+
body?: string | null | undefined;
|
|
4046
|
+
projectPath?: string | undefined;
|
|
4047
|
+
baseRefName?: string | null | undefined;
|
|
4048
|
+
headRefName?: string | null | undefined;
|
|
4049
|
+
} | {
|
|
4050
|
+
type: "forge_issue";
|
|
4051
|
+
mimeType: "application/paseo-forge-issue";
|
|
4052
|
+
forge: string;
|
|
4053
|
+
number: number;
|
|
4054
|
+
title: string;
|
|
4055
|
+
url: string;
|
|
4056
|
+
body?: string | null | undefined;
|
|
4057
|
+
projectPath?: string | undefined;
|
|
3481
4058
|
} | {
|
|
3482
4059
|
type: "github_pr";
|
|
3483
4060
|
mimeType: "application/github-pr";
|
|
@@ -3544,6 +4121,12 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3544
4121
|
}>>;
|
|
3545
4122
|
refName: z.ZodOptional<z.ZodString>;
|
|
3546
4123
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
4124
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
4125
|
+
kind: z.ZodLiteral<"change_request">;
|
|
4126
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4127
|
+
number: z.ZodNumber;
|
|
4128
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
4129
|
+
}, z.core.$strip>>;
|
|
3547
4130
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
3548
4131
|
worktreeSlug: z.ZodOptional<z.ZodString>;
|
|
3549
4132
|
}, z.core.$strip>], "kind">;
|
|
@@ -4016,6 +4599,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4016
4599
|
serverId: z.ZodString;
|
|
4017
4600
|
hostname: z.ZodOptional<z.ZodPipe<z.ZodUnknown, z.ZodTransform<string | null, unknown>>>;
|
|
4018
4601
|
version: z.ZodOptional<z.ZodPipe<z.ZodUnknown, z.ZodTransform<string | null, unknown>>>;
|
|
4602
|
+
desktopManaged: z.ZodOptional<z.ZodBoolean>;
|
|
4019
4603
|
capabilities: z.ZodOptional<z.ZodPipe<z.ZodOptional<z.ZodUnknown>, z.ZodTransform<{
|
|
4020
4604
|
[x: string]: unknown;
|
|
4021
4605
|
voice?: {
|
|
@@ -4031,8 +4615,11 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4031
4615
|
} | undefined, unknown>>>;
|
|
4032
4616
|
features: z.ZodOptional<z.ZodObject<{
|
|
4033
4617
|
providersSnapshot: z.ZodOptional<z.ZodBoolean>;
|
|
4618
|
+
checkoutForgeSetAutoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
4034
4619
|
checkoutGithubSetAutoMerge: z.ZodOptional<z.ZodBoolean>;
|
|
4035
4620
|
githubCheckDetails: z.ZodOptional<z.ZodBoolean>;
|
|
4621
|
+
forgeCheckDetails: z.ZodOptional<z.ZodBoolean>;
|
|
4622
|
+
forgeSearch: z.ZodOptional<z.ZodBoolean>;
|
|
4036
4623
|
daemonStatusRpc: z.ZodOptional<z.ZodBoolean>;
|
|
4037
4624
|
"terminal-restore-modes": z.ZodOptional<z.ZodBoolean>;
|
|
4038
4625
|
rewind: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4041,6 +4628,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4041
4628
|
projectRemove: z.ZodOptional<z.ZodBoolean>;
|
|
4042
4629
|
projectAdd: z.ZodOptional<z.ZodBoolean>;
|
|
4043
4630
|
worktreeRestore: z.ZodOptional<z.ZodBoolean>;
|
|
4631
|
+
workspaceRecovery: z.ZodOptional<z.ZodBoolean>;
|
|
4044
4632
|
providerUsageList: z.ZodOptional<z.ZodBoolean>;
|
|
4045
4633
|
agentDetach: z.ZodOptional<z.ZodBoolean>;
|
|
4046
4634
|
daemonDiagnostics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4052,12 +4640,17 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4052
4640
|
projectGithubClone: z.ZodOptional<z.ZodBoolean>;
|
|
4053
4641
|
workspaceGithubRepositorySearch: z.ZodOptional<z.ZodBoolean>;
|
|
4054
4642
|
projectCreateDirectory: z.ZodOptional<z.ZodBoolean>;
|
|
4643
|
+
commitsList: z.ZodOptional<z.ZodBoolean>;
|
|
4644
|
+
providerRemoval: z.ZodOptional<z.ZodBoolean>;
|
|
4645
|
+
importSessionWorkspaceTarget: z.ZodOptional<z.ZodBoolean>;
|
|
4646
|
+
forgeProviders: z.ZodOptional<z.ZodBoolean>;
|
|
4055
4647
|
}, z.core.$strip>>;
|
|
4056
4648
|
}, z.core.$loose>, z.ZodTransform<{
|
|
4057
4649
|
hostname: string | null;
|
|
4058
4650
|
version: string | null;
|
|
4059
4651
|
status: "server_info";
|
|
4060
4652
|
serverId: string;
|
|
4653
|
+
desktopManaged?: boolean | undefined;
|
|
4061
4654
|
capabilities?: {
|
|
4062
4655
|
[x: string]: unknown;
|
|
4063
4656
|
voice?: {
|
|
@@ -4073,8 +4666,11 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4073
4666
|
} | undefined;
|
|
4074
4667
|
features?: {
|
|
4075
4668
|
providersSnapshot?: boolean | undefined;
|
|
4669
|
+
checkoutForgeSetAutoMerge?: boolean | undefined;
|
|
4076
4670
|
checkoutGithubSetAutoMerge?: boolean | undefined;
|
|
4077
4671
|
githubCheckDetails?: boolean | undefined;
|
|
4672
|
+
forgeCheckDetails?: boolean | undefined;
|
|
4673
|
+
forgeSearch?: boolean | undefined;
|
|
4078
4674
|
daemonStatusRpc?: boolean | undefined;
|
|
4079
4675
|
"terminal-restore-modes"?: boolean | undefined;
|
|
4080
4676
|
rewind?: boolean | undefined;
|
|
@@ -4083,6 +4679,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4083
4679
|
projectRemove?: boolean | undefined;
|
|
4084
4680
|
projectAdd?: boolean | undefined;
|
|
4085
4681
|
worktreeRestore?: boolean | undefined;
|
|
4682
|
+
workspaceRecovery?: boolean | undefined;
|
|
4086
4683
|
providerUsageList?: boolean | undefined;
|
|
4087
4684
|
agentDetach?: boolean | undefined;
|
|
4088
4685
|
daemonDiagnostics?: boolean | undefined;
|
|
@@ -4094,6 +4691,10 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4094
4691
|
projectGithubClone?: boolean | undefined;
|
|
4095
4692
|
workspaceGithubRepositorySearch?: boolean | undefined;
|
|
4096
4693
|
projectCreateDirectory?: boolean | undefined;
|
|
4694
|
+
commitsList?: boolean | undefined;
|
|
4695
|
+
providerRemoval?: boolean | undefined;
|
|
4696
|
+
importSessionWorkspaceTarget?: boolean | undefined;
|
|
4697
|
+
forgeProviders?: boolean | undefined;
|
|
4097
4698
|
} | undefined;
|
|
4098
4699
|
}, {
|
|
4099
4700
|
[x: string]: unknown;
|
|
@@ -4101,6 +4702,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4101
4702
|
serverId: string;
|
|
4102
4703
|
hostname?: string | null | undefined;
|
|
4103
4704
|
version?: string | null | undefined;
|
|
4705
|
+
desktopManaged?: boolean | undefined;
|
|
4104
4706
|
capabilities?: {
|
|
4105
4707
|
[x: string]: unknown;
|
|
4106
4708
|
voice?: {
|
|
@@ -4116,8 +4718,11 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4116
4718
|
} | undefined;
|
|
4117
4719
|
features?: {
|
|
4118
4720
|
providersSnapshot?: boolean | undefined;
|
|
4721
|
+
checkoutForgeSetAutoMerge?: boolean | undefined;
|
|
4119
4722
|
checkoutGithubSetAutoMerge?: boolean | undefined;
|
|
4120
4723
|
githubCheckDetails?: boolean | undefined;
|
|
4724
|
+
forgeCheckDetails?: boolean | undefined;
|
|
4725
|
+
forgeSearch?: boolean | undefined;
|
|
4121
4726
|
daemonStatusRpc?: boolean | undefined;
|
|
4122
4727
|
"terminal-restore-modes"?: boolean | undefined;
|
|
4123
4728
|
rewind?: boolean | undefined;
|
|
@@ -4126,6 +4731,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4126
4731
|
projectRemove?: boolean | undefined;
|
|
4127
4732
|
projectAdd?: boolean | undefined;
|
|
4128
4733
|
worktreeRestore?: boolean | undefined;
|
|
4734
|
+
workspaceRecovery?: boolean | undefined;
|
|
4129
4735
|
providerUsageList?: boolean | undefined;
|
|
4130
4736
|
agentDetach?: boolean | undefined;
|
|
4131
4737
|
daemonDiagnostics?: boolean | undefined;
|
|
@@ -4137,6 +4743,10 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4137
4743
|
projectGithubClone?: boolean | undefined;
|
|
4138
4744
|
workspaceGithubRepositorySearch?: boolean | undefined;
|
|
4139
4745
|
projectCreateDirectory?: boolean | undefined;
|
|
4746
|
+
commitsList?: boolean | undefined;
|
|
4747
|
+
providerRemoval?: boolean | undefined;
|
|
4748
|
+
importSessionWorkspaceTarget?: boolean | undefined;
|
|
4749
|
+
forgeProviders?: boolean | undefined;
|
|
4140
4750
|
} | undefined;
|
|
4141
4751
|
}>>;
|
|
4142
4752
|
export declare const StatusMessageSchema: z.ZodObject<{
|
|
@@ -4937,6 +5547,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4937
5547
|
}, z.core.$strip>>>;
|
|
4938
5548
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4939
5549
|
}, z.core.$strip>>>;
|
|
5550
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
4940
5551
|
project: z.ZodOptional<z.ZodObject<{
|
|
4941
5552
|
projectKey: z.ZodString;
|
|
4942
5553
|
projectName: z.ZodString;
|
|
@@ -5090,6 +5701,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5090
5701
|
} | null | undefined;
|
|
5091
5702
|
refreshedAt?: string | null | undefined;
|
|
5092
5703
|
} | null | undefined;
|
|
5704
|
+
forge?: string | undefined;
|
|
5093
5705
|
project?: {
|
|
5094
5706
|
projectKey: string;
|
|
5095
5707
|
projectName: string;
|
|
@@ -5195,6 +5807,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5195
5807
|
} | null | undefined;
|
|
5196
5808
|
refreshedAt?: string | null | undefined;
|
|
5197
5809
|
} | null | undefined;
|
|
5810
|
+
forge?: string | undefined;
|
|
5198
5811
|
project?: {
|
|
5199
5812
|
projectKey: string;
|
|
5200
5813
|
projectName: string;
|
|
@@ -6036,6 +6649,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
6036
6649
|
}, z.core.$strip>>>;
|
|
6037
6650
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6038
6651
|
}, z.core.$strip>>>;
|
|
6652
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
6039
6653
|
project: z.ZodOptional<z.ZodObject<{
|
|
6040
6654
|
projectKey: z.ZodString;
|
|
6041
6655
|
projectName: z.ZodString;
|
|
@@ -6189,6 +6803,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
6189
6803
|
} | null | undefined;
|
|
6190
6804
|
refreshedAt?: string | null | undefined;
|
|
6191
6805
|
} | null | undefined;
|
|
6806
|
+
forge?: string | undefined;
|
|
6192
6807
|
project?: {
|
|
6193
6808
|
projectKey: string;
|
|
6194
6809
|
projectName: string;
|
|
@@ -6294,6 +6909,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
6294
6909
|
} | null | undefined;
|
|
6295
6910
|
refreshedAt?: string | null | undefined;
|
|
6296
6911
|
} | null | undefined;
|
|
6912
|
+
forge?: string | undefined;
|
|
6297
6913
|
project?: {
|
|
6298
6914
|
projectKey: string;
|
|
6299
6915
|
projectName: string;
|
|
@@ -6465,6 +7081,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
6465
7081
|
}, z.core.$strip>>>;
|
|
6466
7082
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6467
7083
|
}, z.core.$strip>>>;
|
|
7084
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
6468
7085
|
project: z.ZodOptional<z.ZodObject<{
|
|
6469
7086
|
projectKey: z.ZodString;
|
|
6470
7087
|
projectName: z.ZodString;
|
|
@@ -6618,6 +7235,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
6618
7235
|
} | null | undefined;
|
|
6619
7236
|
refreshedAt?: string | null | undefined;
|
|
6620
7237
|
} | null | undefined;
|
|
7238
|
+
forge?: string | undefined;
|
|
6621
7239
|
project?: {
|
|
6622
7240
|
projectKey: string;
|
|
6623
7241
|
projectName: string;
|
|
@@ -6723,6 +7341,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
6723
7341
|
} | null | undefined;
|
|
6724
7342
|
refreshedAt?: string | null | undefined;
|
|
6725
7343
|
} | null | undefined;
|
|
7344
|
+
forge?: string | undefined;
|
|
6726
7345
|
project?: {
|
|
6727
7346
|
projectKey: string;
|
|
6728
7347
|
projectName: string;
|
|
@@ -7016,6 +7635,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
7016
7635
|
}, z.core.$strip>>>;
|
|
7017
7636
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7018
7637
|
}, z.core.$strip>>>;
|
|
7638
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
7019
7639
|
project: z.ZodOptional<z.ZodObject<{
|
|
7020
7640
|
projectKey: z.ZodString;
|
|
7021
7641
|
projectName: z.ZodString;
|
|
@@ -7169,6 +7789,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
7169
7789
|
} | null | undefined;
|
|
7170
7790
|
refreshedAt?: string | null | undefined;
|
|
7171
7791
|
} | null | undefined;
|
|
7792
|
+
forge?: string | undefined;
|
|
7172
7793
|
project?: {
|
|
7173
7794
|
projectKey: string;
|
|
7174
7795
|
projectName: string;
|
|
@@ -7274,6 +7895,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
7274
7895
|
} | null | undefined;
|
|
7275
7896
|
refreshedAt?: string | null | undefined;
|
|
7276
7897
|
} | null | undefined;
|
|
7898
|
+
forge?: string | undefined;
|
|
7277
7899
|
project?: {
|
|
7278
7900
|
projectKey: string;
|
|
7279
7901
|
projectName: string;
|
|
@@ -8174,6 +8796,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
8174
8796
|
}, z.core.$strip>>>;
|
|
8175
8797
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8176
8798
|
}, z.core.$strip>>>;
|
|
8799
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
8177
8800
|
project: z.ZodOptional<z.ZodObject<{
|
|
8178
8801
|
projectKey: z.ZodString;
|
|
8179
8802
|
projectName: z.ZodString;
|
|
@@ -8327,6 +8950,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
8327
8950
|
} | null | undefined;
|
|
8328
8951
|
refreshedAt?: string | null | undefined;
|
|
8329
8952
|
} | null | undefined;
|
|
8953
|
+
forge?: string | undefined;
|
|
8330
8954
|
project?: {
|
|
8331
8955
|
projectKey: string;
|
|
8332
8956
|
projectName: string;
|
|
@@ -8432,6 +9056,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
8432
9056
|
} | null | undefined;
|
|
8433
9057
|
refreshedAt?: string | null | undefined;
|
|
8434
9058
|
} | null | undefined;
|
|
9059
|
+
forge?: string | undefined;
|
|
8435
9060
|
project?: {
|
|
8436
9061
|
projectKey: string;
|
|
8437
9062
|
projectName: string;
|
|
@@ -8926,6 +9551,8 @@ export declare const CheckoutStatusResponseSchema: z.ZodObject<{
|
|
|
8926
9551
|
}, z.core.$strip>]>;
|
|
8927
9552
|
}, z.core.$strip>;
|
|
8928
9553
|
export declare const CheckoutPrStatusSchema: z.ZodObject<{
|
|
9554
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9555
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
8929
9556
|
number: z.ZodOptional<z.ZodNumber>;
|
|
8930
9557
|
url: z.ZodString;
|
|
8931
9558
|
title: z.ZodString;
|
|
@@ -8973,7 +9600,10 @@ export declare const CheckoutPrStatusSchema: z.ZodObject<{
|
|
|
8973
9600
|
isMergeQueueEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8974
9601
|
isInMergeQueue: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8975
9602
|
}, z.core.$strip>>;
|
|
9603
|
+
forgeSpecific: z.ZodOptional<z.ZodUnknown>;
|
|
8976
9604
|
}, z.core.$strip>;
|
|
9605
|
+
export type ForgeAuthState = "authenticated" | "unauthenticated" | "cli_missing" | "no_remote" | "error";
|
|
9606
|
+
export declare const ForgeAuthStateSchema: z.ZodOptional<z.ZodUnknown>;
|
|
8977
9607
|
export declare const CheckoutStatusUpdateSchema: z.ZodObject<{
|
|
8978
9608
|
type: z.ZodLiteral<"checkout_status_update">;
|
|
8979
9609
|
payload: z.ZodIntersection<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -9057,6 +9687,8 @@ export declare const CheckoutStatusUpdateSchema: z.ZodObject<{
|
|
|
9057
9687
|
prStatus: z.ZodOptional<z.ZodObject<{
|
|
9058
9688
|
cwd: z.ZodString;
|
|
9059
9689
|
status: z.ZodNullable<z.ZodObject<{
|
|
9690
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9691
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
9060
9692
|
number: z.ZodOptional<z.ZodNumber>;
|
|
9061
9693
|
url: z.ZodString;
|
|
9062
9694
|
title: z.ZodString;
|
|
@@ -9104,8 +9736,11 @@ export declare const CheckoutStatusUpdateSchema: z.ZodObject<{
|
|
|
9104
9736
|
isMergeQueueEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9105
9737
|
isInMergeQueue: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9106
9738
|
}, z.core.$strip>>;
|
|
9739
|
+
forgeSpecific: z.ZodOptional<z.ZodUnknown>;
|
|
9107
9740
|
}, z.core.$strip>>;
|
|
9108
9741
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
9742
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
9743
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9109
9744
|
error: z.ZodNullable<z.ZodObject<{
|
|
9110
9745
|
code: z.ZodEnum<{
|
|
9111
9746
|
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
@@ -9351,6 +9986,24 @@ export declare const CheckoutPrMergeResponseSchema: z.ZodObject<{
|
|
|
9351
9986
|
requestId: z.ZodString;
|
|
9352
9987
|
}, z.core.$strip>;
|
|
9353
9988
|
}, z.core.$strip>;
|
|
9989
|
+
export declare const CheckoutForgeSetAutoMergeResponseSchema: z.ZodObject<{
|
|
9990
|
+
type: z.ZodLiteral<"checkout.forge.set_auto_merge.response">;
|
|
9991
|
+
payload: z.ZodObject<{
|
|
9992
|
+
cwd: z.ZodString;
|
|
9993
|
+
enabled: z.ZodBoolean;
|
|
9994
|
+
success: z.ZodBoolean;
|
|
9995
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
9996
|
+
code: z.ZodEnum<{
|
|
9997
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
9998
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
9999
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
10000
|
+
UNKNOWN: "UNKNOWN";
|
|
10001
|
+
}>;
|
|
10002
|
+
message: z.ZodString;
|
|
10003
|
+
}, z.core.$strip>>;
|
|
10004
|
+
requestId: z.ZodString;
|
|
10005
|
+
}, z.core.$strip>;
|
|
10006
|
+
}, z.core.$strip>;
|
|
9354
10007
|
export declare const CheckoutGithubSetAutoMergeResponseSchema: z.ZodObject<{
|
|
9355
10008
|
type: z.ZodLiteral<"checkout.github.set_auto_merge.response">;
|
|
9356
10009
|
payload: z.ZodObject<{
|
|
@@ -9369,6 +10022,137 @@ export declare const CheckoutGithubSetAutoMergeResponseSchema: z.ZodObject<{
|
|
|
9369
10022
|
requestId: z.ZodString;
|
|
9370
10023
|
}, z.core.$strip>;
|
|
9371
10024
|
}, z.core.$strip>;
|
|
10025
|
+
export declare const CheckoutCommitsListResponseSchema: z.ZodObject<{
|
|
10026
|
+
type: z.ZodLiteral<"checkout.commits.list.response">;
|
|
10027
|
+
payload: z.ZodObject<{
|
|
10028
|
+
cwd: z.ZodString;
|
|
10029
|
+
baseRef: z.ZodNullable<z.ZodString>;
|
|
10030
|
+
commits: z.ZodArray<z.ZodObject<{
|
|
10031
|
+
sha: z.ZodString;
|
|
10032
|
+
shortSha: z.ZodString;
|
|
10033
|
+
subject: z.ZodString;
|
|
10034
|
+
authorName: z.ZodString;
|
|
10035
|
+
authorDate: z.ZodString;
|
|
10036
|
+
isOnRemote: z.ZodBoolean;
|
|
10037
|
+
files: z.ZodArray<z.ZodObject<{
|
|
10038
|
+
path: z.ZodString;
|
|
10039
|
+
additions: z.ZodNumber;
|
|
10040
|
+
deletions: z.ZodNumber;
|
|
10041
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
10042
|
+
added: "added";
|
|
10043
|
+
modified: "modified";
|
|
10044
|
+
deleted: "deleted";
|
|
10045
|
+
renamed: "renamed";
|
|
10046
|
+
}>>;
|
|
10047
|
+
}, z.core.$strip>>;
|
|
10048
|
+
}, z.core.$strip>>;
|
|
10049
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
10050
|
+
code: z.ZodEnum<{
|
|
10051
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
10052
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
10053
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
10054
|
+
UNKNOWN: "UNKNOWN";
|
|
10055
|
+
}>;
|
|
10056
|
+
message: z.ZodString;
|
|
10057
|
+
}, z.core.$strip>>;
|
|
10058
|
+
requestId: z.ZodString;
|
|
10059
|
+
}, z.core.$strip>;
|
|
10060
|
+
}, z.core.$strip>;
|
|
10061
|
+
export declare const CheckoutCommitFileDiffResponseSchema: z.ZodObject<{
|
|
10062
|
+
type: z.ZodLiteral<"checkout.commits.file_diff.response">;
|
|
10063
|
+
payload: z.ZodObject<{
|
|
10064
|
+
cwd: z.ZodString;
|
|
10065
|
+
sha: z.ZodString;
|
|
10066
|
+
path: z.ZodString;
|
|
10067
|
+
file: z.ZodNullable<z.ZodObject<{
|
|
10068
|
+
path: z.ZodString;
|
|
10069
|
+
isNew: z.ZodBoolean;
|
|
10070
|
+
isDeleted: z.ZodBoolean;
|
|
10071
|
+
additions: z.ZodNumber;
|
|
10072
|
+
deletions: z.ZodNumber;
|
|
10073
|
+
hunks: z.ZodArray<z.ZodObject<{
|
|
10074
|
+
oldStart: z.ZodNumber;
|
|
10075
|
+
oldCount: z.ZodNumber;
|
|
10076
|
+
newStart: z.ZodNumber;
|
|
10077
|
+
newCount: z.ZodNumber;
|
|
10078
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
10079
|
+
type: z.ZodEnum<{
|
|
10080
|
+
context: "context";
|
|
10081
|
+
add: "add";
|
|
10082
|
+
remove: "remove";
|
|
10083
|
+
header: "header";
|
|
10084
|
+
}>;
|
|
10085
|
+
content: z.ZodString;
|
|
10086
|
+
tokens: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10087
|
+
text: z.ZodString;
|
|
10088
|
+
style: z.ZodNullable<z.ZodString>;
|
|
10089
|
+
}, z.core.$strip>>>;
|
|
10090
|
+
}, z.core.$strip>>;
|
|
10091
|
+
}, z.core.$strip>>;
|
|
10092
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
10093
|
+
ok: "ok";
|
|
10094
|
+
too_large: "too_large";
|
|
10095
|
+
binary: "binary";
|
|
10096
|
+
}>>;
|
|
10097
|
+
}, z.core.$strip>>;
|
|
10098
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
10099
|
+
code: z.ZodEnum<{
|
|
10100
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
10101
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
10102
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
10103
|
+
UNKNOWN: "UNKNOWN";
|
|
10104
|
+
}>;
|
|
10105
|
+
message: z.ZodString;
|
|
10106
|
+
}, z.core.$strip>>;
|
|
10107
|
+
requestId: z.ZodString;
|
|
10108
|
+
}, z.core.$strip>;
|
|
10109
|
+
}, z.core.$strip>;
|
|
10110
|
+
declare const CheckoutPipelineJobSchema: z.ZodObject<{
|
|
10111
|
+
id: z.ZodNumber;
|
|
10112
|
+
name: z.ZodString;
|
|
10113
|
+
stage: z.ZodString;
|
|
10114
|
+
status: z.ZodString;
|
|
10115
|
+
rawStatus: z.ZodString;
|
|
10116
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10117
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10118
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
10119
|
+
}, z.core.$strip>;
|
|
10120
|
+
declare const CheckoutPipelineStageSchema: z.ZodObject<{
|
|
10121
|
+
name: z.ZodString;
|
|
10122
|
+
status: z.ZodString;
|
|
10123
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10124
|
+
id: z.ZodNumber;
|
|
10125
|
+
name: z.ZodString;
|
|
10126
|
+
stage: z.ZodString;
|
|
10127
|
+
status: z.ZodString;
|
|
10128
|
+
rawStatus: z.ZodString;
|
|
10129
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10130
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10131
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
10132
|
+
}, z.core.$strip>>>>;
|
|
10133
|
+
}, z.core.$strip>;
|
|
10134
|
+
declare const CheckoutPipelineSchema: z.ZodObject<{
|
|
10135
|
+
id: z.ZodNumber;
|
|
10136
|
+
status: z.ZodString;
|
|
10137
|
+
rawStatus: z.ZodString;
|
|
10138
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10139
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10140
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10141
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10142
|
+
name: z.ZodString;
|
|
10143
|
+
status: z.ZodString;
|
|
10144
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10145
|
+
id: z.ZodNumber;
|
|
10146
|
+
name: z.ZodString;
|
|
10147
|
+
stage: z.ZodString;
|
|
10148
|
+
status: z.ZodString;
|
|
10149
|
+
rawStatus: z.ZodString;
|
|
10150
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10151
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10152
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
10153
|
+
}, z.core.$strip>>>>;
|
|
10154
|
+
}, z.core.$strip>>>>;
|
|
10155
|
+
}, z.core.$strip>;
|
|
9372
10156
|
export declare const CheckoutGithubCheckDetailsSchema: z.ZodObject<{
|
|
9373
10157
|
checkRunId: z.ZodNumber;
|
|
9374
10158
|
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -9401,6 +10185,155 @@ export declare const CheckoutGithubCheckDetailsSchema: z.ZodObject<{
|
|
|
9401
10185
|
logTruncated: z.ZodOptional<z.ZodBoolean>;
|
|
9402
10186
|
}, z.core.$strip>>>>;
|
|
9403
10187
|
truncated: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10188
|
+
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10189
|
+
id: z.ZodNumber;
|
|
10190
|
+
status: z.ZodString;
|
|
10191
|
+
rawStatus: z.ZodString;
|
|
10192
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10193
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10194
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10195
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10196
|
+
name: z.ZodString;
|
|
10197
|
+
status: z.ZodString;
|
|
10198
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10199
|
+
id: z.ZodNumber;
|
|
10200
|
+
name: z.ZodString;
|
|
10201
|
+
stage: z.ZodString;
|
|
10202
|
+
status: z.ZodString;
|
|
10203
|
+
rawStatus: z.ZodString;
|
|
10204
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10205
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10206
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
10207
|
+
}, z.core.$strip>>>>;
|
|
10208
|
+
}, z.core.$strip>>>>;
|
|
10209
|
+
}, z.core.$strip>>>;
|
|
10210
|
+
}, z.core.$strip>;
|
|
10211
|
+
export declare const CheckoutCheckDetailsSchema: z.ZodObject<{
|
|
10212
|
+
checkRunId: z.ZodNumber;
|
|
10213
|
+
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10214
|
+
name: z.ZodString;
|
|
10215
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10216
|
+
conclusion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10217
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10218
|
+
detailsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10219
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10220
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10221
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10222
|
+
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10223
|
+
}, z.core.$strip>>>;
|
|
10224
|
+
annotations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10225
|
+
path: z.ZodOptional<z.ZodString>;
|
|
10226
|
+
startLine: z.ZodOptional<z.ZodNumber>;
|
|
10227
|
+
endLine: z.ZodOptional<z.ZodNumber>;
|
|
10228
|
+
annotationLevel: z.ZodOptional<z.ZodString>;
|
|
10229
|
+
message: z.ZodOptional<z.ZodString>;
|
|
10230
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10231
|
+
rawDetails: z.ZodOptional<z.ZodString>;
|
|
10232
|
+
}, z.core.$strip>>>>;
|
|
10233
|
+
failedJobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10234
|
+
jobId: z.ZodNumber;
|
|
10235
|
+
name: z.ZodString;
|
|
10236
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10237
|
+
conclusion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10238
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10239
|
+
logTail: z.ZodOptional<z.ZodString>;
|
|
10240
|
+
logTruncated: z.ZodOptional<z.ZodBoolean>;
|
|
10241
|
+
}, z.core.$strip>>>>;
|
|
10242
|
+
truncated: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10243
|
+
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10244
|
+
id: z.ZodNumber;
|
|
10245
|
+
status: z.ZodString;
|
|
10246
|
+
rawStatus: z.ZodString;
|
|
10247
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10248
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10249
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10250
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10251
|
+
name: z.ZodString;
|
|
10252
|
+
status: z.ZodString;
|
|
10253
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10254
|
+
id: z.ZodNumber;
|
|
10255
|
+
name: z.ZodString;
|
|
10256
|
+
stage: z.ZodString;
|
|
10257
|
+
status: z.ZodString;
|
|
10258
|
+
rawStatus: z.ZodString;
|
|
10259
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10260
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10261
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
10262
|
+
}, z.core.$strip>>>>;
|
|
10263
|
+
}, z.core.$strip>>>>;
|
|
10264
|
+
}, z.core.$strip>>>;
|
|
10265
|
+
}, z.core.$strip>;
|
|
10266
|
+
export declare const CheckoutForgeGetCheckDetailsResponseSchema: z.ZodObject<{
|
|
10267
|
+
type: z.ZodLiteral<"checkout.forge.get_check_details.response">;
|
|
10268
|
+
payload: z.ZodObject<{
|
|
10269
|
+
cwd: z.ZodString;
|
|
10270
|
+
success: z.ZodBoolean;
|
|
10271
|
+
details: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10272
|
+
checkRunId: z.ZodNumber;
|
|
10273
|
+
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10274
|
+
name: z.ZodString;
|
|
10275
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10276
|
+
conclusion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10277
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10278
|
+
detailsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10279
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10280
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10281
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10282
|
+
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10283
|
+
}, z.core.$strip>>>;
|
|
10284
|
+
annotations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10285
|
+
path: z.ZodOptional<z.ZodString>;
|
|
10286
|
+
startLine: z.ZodOptional<z.ZodNumber>;
|
|
10287
|
+
endLine: z.ZodOptional<z.ZodNumber>;
|
|
10288
|
+
annotationLevel: z.ZodOptional<z.ZodString>;
|
|
10289
|
+
message: z.ZodOptional<z.ZodString>;
|
|
10290
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10291
|
+
rawDetails: z.ZodOptional<z.ZodString>;
|
|
10292
|
+
}, z.core.$strip>>>>;
|
|
10293
|
+
failedJobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10294
|
+
jobId: z.ZodNumber;
|
|
10295
|
+
name: z.ZodString;
|
|
10296
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10297
|
+
conclusion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10298
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10299
|
+
logTail: z.ZodOptional<z.ZodString>;
|
|
10300
|
+
logTruncated: z.ZodOptional<z.ZodBoolean>;
|
|
10301
|
+
}, z.core.$strip>>>>;
|
|
10302
|
+
truncated: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10303
|
+
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10304
|
+
id: z.ZodNumber;
|
|
10305
|
+
status: z.ZodString;
|
|
10306
|
+
rawStatus: z.ZodString;
|
|
10307
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10308
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10309
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10310
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10311
|
+
name: z.ZodString;
|
|
10312
|
+
status: z.ZodString;
|
|
10313
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10314
|
+
id: z.ZodNumber;
|
|
10315
|
+
name: z.ZodString;
|
|
10316
|
+
stage: z.ZodString;
|
|
10317
|
+
status: z.ZodString;
|
|
10318
|
+
rawStatus: z.ZodString;
|
|
10319
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10320
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10321
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
10322
|
+
}, z.core.$strip>>>>;
|
|
10323
|
+
}, z.core.$strip>>>>;
|
|
10324
|
+
}, z.core.$strip>>>;
|
|
10325
|
+
}, z.core.$strip>>>>;
|
|
10326
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
10327
|
+
code: z.ZodEnum<{
|
|
10328
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
10329
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
10330
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
10331
|
+
UNKNOWN: "UNKNOWN";
|
|
10332
|
+
}>;
|
|
10333
|
+
message: z.ZodString;
|
|
10334
|
+
}, z.core.$strip>>;
|
|
10335
|
+
requestId: z.ZodString;
|
|
10336
|
+
}, z.core.$strip>;
|
|
9404
10337
|
}, z.core.$strip>;
|
|
9405
10338
|
export declare const CheckoutGithubGetCheckDetailsResponseSchema: z.ZodObject<{
|
|
9406
10339
|
type: z.ZodLiteral<"checkout.github.get_check_details.response">;
|
|
@@ -9439,6 +10372,28 @@ export declare const CheckoutGithubGetCheckDetailsResponseSchema: z.ZodObject<{
|
|
|
9439
10372
|
logTruncated: z.ZodOptional<z.ZodBoolean>;
|
|
9440
10373
|
}, z.core.$strip>>>>;
|
|
9441
10374
|
truncated: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10375
|
+
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10376
|
+
id: z.ZodNumber;
|
|
10377
|
+
status: z.ZodString;
|
|
10378
|
+
rawStatus: z.ZodString;
|
|
10379
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10380
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10381
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10382
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10383
|
+
name: z.ZodString;
|
|
10384
|
+
status: z.ZodString;
|
|
10385
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10386
|
+
id: z.ZodNumber;
|
|
10387
|
+
name: z.ZodString;
|
|
10388
|
+
stage: z.ZodString;
|
|
10389
|
+
status: z.ZodString;
|
|
10390
|
+
rawStatus: z.ZodString;
|
|
10391
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
10392
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10393
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
10394
|
+
}, z.core.$strip>>>>;
|
|
10395
|
+
}, z.core.$strip>>>>;
|
|
10396
|
+
}, z.core.$strip>>>;
|
|
9442
10397
|
}, z.core.$strip>>>>;
|
|
9443
10398
|
error: z.ZodNullable<z.ZodObject<{
|
|
9444
10399
|
code: z.ZodEnum<{
|
|
@@ -9457,6 +10412,8 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
|
9457
10412
|
payload: z.ZodObject<{
|
|
9458
10413
|
cwd: z.ZodString;
|
|
9459
10414
|
status: z.ZodNullable<z.ZodObject<{
|
|
10415
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10416
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
9460
10417
|
number: z.ZodOptional<z.ZodNumber>;
|
|
9461
10418
|
url: z.ZodString;
|
|
9462
10419
|
title: z.ZodString;
|
|
@@ -9504,8 +10461,11 @@ export declare const CheckoutPrStatusResponseSchema: z.ZodObject<{
|
|
|
9504
10461
|
isMergeQueueEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9505
10462
|
isInMergeQueue: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9506
10463
|
}, z.core.$strip>>;
|
|
10464
|
+
forgeSpecific: z.ZodOptional<z.ZodUnknown>;
|
|
9507
10465
|
}, z.core.$strip>>;
|
|
9508
10466
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
10467
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
10468
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9509
10469
|
error: z.ZodNullable<z.ZodObject<{
|
|
9510
10470
|
code: z.ZodEnum<{
|
|
9511
10471
|
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
@@ -9542,6 +10502,8 @@ export declare const PullRequestTimelineItemSchema: z.ZodPreprocess<z.ZodDiscrim
|
|
|
9542
10502
|
createdAt: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
9543
10503
|
url: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9544
10504
|
reviewId: z.ZodOptional<z.ZodString>;
|
|
10505
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
10506
|
+
threadIsResolved: z.ZodOptional<z.ZodBoolean>;
|
|
9545
10507
|
location: z.ZodOptional<z.ZodObject<{
|
|
9546
10508
|
path: z.ZodString;
|
|
9547
10509
|
line: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9580,6 +10542,8 @@ export declare const PullRequestTimelineResponseSchema: z.ZodObject<{
|
|
|
9580
10542
|
createdAt: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
9581
10543
|
url: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9582
10544
|
reviewId: z.ZodOptional<z.ZodString>;
|
|
10545
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
10546
|
+
threadIsResolved: z.ZodOptional<z.ZodBoolean>;
|
|
9583
10547
|
location: z.ZodOptional<z.ZodObject<{
|
|
9584
10548
|
path: z.ZodString;
|
|
9585
10549
|
line: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9602,6 +10566,7 @@ export declare const PullRequestTimelineResponseSchema: z.ZodObject<{
|
|
|
9602
10566
|
}, z.core.$strip>], "kind">>>>>;
|
|
9603
10567
|
requestId: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9604
10568
|
githubFeaturesEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10569
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
9605
10570
|
}, z.core.$strip>>>;
|
|
9606
10571
|
}, z.core.$strip>;
|
|
9607
10572
|
export declare const CheckoutSwitchBranchResponseSchema: z.ZodObject<{
|
|
@@ -9730,25 +10695,22 @@ export declare const BranchSuggestionsResponseSchema: z.ZodObject<{
|
|
|
9730
10695
|
requestId: z.ZodString;
|
|
9731
10696
|
}, z.core.$strip>;
|
|
9732
10697
|
}, z.core.$strip>;
|
|
10698
|
+
export declare const ForgeSearchResponseSchema: z.ZodObject<{
|
|
10699
|
+
type: z.ZodLiteral<"forge.search.response">;
|
|
10700
|
+
payload: z.ZodObject<{
|
|
10701
|
+
items: z.ZodArray<z.ZodUnknown>;
|
|
10702
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
10703
|
+
error: z.ZodNullable<z.ZodString>;
|
|
10704
|
+
requestId: z.ZodString;
|
|
10705
|
+
}, z.core.$strip>;
|
|
10706
|
+
}, z.core.$strip>;
|
|
9733
10707
|
export declare const GitHubSearchResponseSchema: z.ZodObject<{
|
|
9734
10708
|
type: z.ZodLiteral<"github_search_response">;
|
|
9735
10709
|
payload: z.ZodObject<{
|
|
9736
|
-
items: z.ZodArray<z.
|
|
9737
|
-
|
|
9738
|
-
|
|
9739
|
-
|
|
9740
|
-
}>;
|
|
9741
|
-
number: z.ZodNumber;
|
|
9742
|
-
title: z.ZodString;
|
|
9743
|
-
url: z.ZodString;
|
|
9744
|
-
state: z.ZodString;
|
|
9745
|
-
body: z.ZodNullable<z.ZodString>;
|
|
9746
|
-
labels: z.ZodArray<z.ZodString>;
|
|
9747
|
-
baseRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9748
|
-
headRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9749
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9750
|
-
}, z.core.$strip>>;
|
|
9751
|
-
githubFeaturesEnabled: z.ZodBoolean;
|
|
10710
|
+
items: z.ZodArray<z.ZodUnknown>;
|
|
10711
|
+
featuresEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10712
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
10713
|
+
githubFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9752
10714
|
error: z.ZodNullable<z.ZodString>;
|
|
9753
10715
|
requestId: z.ZodString;
|
|
9754
10716
|
}, z.core.$strip>;
|
|
@@ -9927,6 +10889,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
9927
10889
|
}, z.core.$strip>>>;
|
|
9928
10890
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9929
10891
|
}, z.core.$strip>>>;
|
|
10892
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
9930
10893
|
project: z.ZodOptional<z.ZodObject<{
|
|
9931
10894
|
projectKey: z.ZodString;
|
|
9932
10895
|
projectName: z.ZodString;
|
|
@@ -10080,6 +11043,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
10080
11043
|
} | null | undefined;
|
|
10081
11044
|
refreshedAt?: string | null | undefined;
|
|
10082
11045
|
} | null | undefined;
|
|
11046
|
+
forge?: string | undefined;
|
|
10083
11047
|
project?: {
|
|
10084
11048
|
projectKey: string;
|
|
10085
11049
|
projectName: string;
|
|
@@ -10185,6 +11149,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
10185
11149
|
} | null | undefined;
|
|
10186
11150
|
refreshedAt?: string | null | undefined;
|
|
10187
11151
|
} | null | undefined;
|
|
11152
|
+
forge?: string | undefined;
|
|
10188
11153
|
project?: {
|
|
10189
11154
|
projectKey: string;
|
|
10190
11155
|
projectName: string;
|
|
@@ -10382,6 +11347,10 @@ export declare const GetProvidersSnapshotResponseMessageSchema: z.ZodObject<{
|
|
|
10382
11347
|
provider: z.ZodString;
|
|
10383
11348
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
10384
11349
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11350
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
11351
|
+
builtin: "builtin";
|
|
11352
|
+
custom: "custom";
|
|
11353
|
+
}>>;
|
|
10385
11354
|
error: z.ZodOptional<z.ZodString>;
|
|
10386
11355
|
models: z.ZodOptional<z.ZodArray<z.ZodType<AgentModelDefinition, unknown, z.core.$ZodTypeInternals<AgentModelDefinition, unknown>>>>;
|
|
10387
11356
|
modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, unknown, z.core.$ZodTypeInternals<AgentMode, unknown>>>>;
|
|
@@ -10402,6 +11371,10 @@ export declare const ProvidersSnapshotUpdateMessageSchema: z.ZodObject<{
|
|
|
10402
11371
|
provider: z.ZodString;
|
|
10403
11372
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
10404
11373
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11374
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
11375
|
+
builtin: "builtin";
|
|
11376
|
+
custom: "custom";
|
|
11377
|
+
}>>;
|
|
10405
11378
|
error: z.ZodOptional<z.ZodString>;
|
|
10406
11379
|
models: z.ZodOptional<z.ZodArray<z.ZodType<AgentModelDefinition, unknown, z.core.$ZodTypeInternals<AgentModelDefinition, unknown>>>>;
|
|
10407
11380
|
modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, unknown, z.core.$ZodTypeInternals<AgentMode, unknown>>>>;
|
|
@@ -11405,6 +12378,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
11405
12378
|
}, z.core.$strip>>>;
|
|
11406
12379
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11407
12380
|
}, z.core.$strip>>>;
|
|
12381
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
11408
12382
|
project: z.ZodOptional<z.ZodObject<{
|
|
11409
12383
|
projectKey: z.ZodString;
|
|
11410
12384
|
projectName: z.ZodString;
|
|
@@ -11558,6 +12532,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
11558
12532
|
} | null | undefined;
|
|
11559
12533
|
refreshedAt?: string | null | undefined;
|
|
11560
12534
|
} | null | undefined;
|
|
12535
|
+
forge?: string | undefined;
|
|
11561
12536
|
project?: {
|
|
11562
12537
|
projectKey: string;
|
|
11563
12538
|
projectName: string;
|
|
@@ -11663,6 +12638,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
11663
12638
|
} | null | undefined;
|
|
11664
12639
|
refreshedAt?: string | null | undefined;
|
|
11665
12640
|
} | null | undefined;
|
|
12641
|
+
forge?: string | undefined;
|
|
11666
12642
|
project?: {
|
|
11667
12643
|
projectKey: string;
|
|
11668
12644
|
projectName: string;
|
|
@@ -12380,6 +13356,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12380
13356
|
}, z.core.$strip>>>;
|
|
12381
13357
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12382
13358
|
}, z.core.$strip>>>;
|
|
13359
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
12383
13360
|
project: z.ZodOptional<z.ZodObject<{
|
|
12384
13361
|
projectKey: z.ZodString;
|
|
12385
13362
|
projectName: z.ZodString;
|
|
@@ -12533,6 +13510,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12533
13510
|
} | null | undefined;
|
|
12534
13511
|
refreshedAt?: string | null | undefined;
|
|
12535
13512
|
} | null | undefined;
|
|
13513
|
+
forge?: string | undefined;
|
|
12536
13514
|
project?: {
|
|
12537
13515
|
projectKey: string;
|
|
12538
13516
|
projectName: string;
|
|
@@ -12638,6 +13616,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12638
13616
|
} | null | undefined;
|
|
12639
13617
|
refreshedAt?: string | null | undefined;
|
|
12640
13618
|
} | null | undefined;
|
|
13619
|
+
forge?: string | undefined;
|
|
12641
13620
|
project?: {
|
|
12642
13621
|
projectKey: string;
|
|
12643
13622
|
projectName: string;
|
|
@@ -12847,6 +13826,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12847
13826
|
}, z.core.$strip>>>;
|
|
12848
13827
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12849
13828
|
}, z.core.$strip>>>;
|
|
13829
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
12850
13830
|
project: z.ZodOptional<z.ZodObject<{
|
|
12851
13831
|
projectKey: z.ZodString;
|
|
12852
13832
|
projectName: z.ZodString;
|
|
@@ -13000,6 +13980,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13000
13980
|
} | null | undefined;
|
|
13001
13981
|
refreshedAt?: string | null | undefined;
|
|
13002
13982
|
} | null | undefined;
|
|
13983
|
+
forge?: string | undefined;
|
|
13003
13984
|
project?: {
|
|
13004
13985
|
projectKey: string;
|
|
13005
13986
|
projectName: string;
|
|
@@ -13105,6 +14086,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13105
14086
|
} | null | undefined;
|
|
13106
14087
|
refreshedAt?: string | null | undefined;
|
|
13107
14088
|
} | null | undefined;
|
|
14089
|
+
forge?: string | undefined;
|
|
13108
14090
|
project?: {
|
|
13109
14091
|
projectKey: string;
|
|
13110
14092
|
projectName: string;
|
|
@@ -13907,6 +14889,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13907
14889
|
}, z.core.$strip>>>;
|
|
13908
14890
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13909
14891
|
}, z.core.$strip>>>;
|
|
14892
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
13910
14893
|
project: z.ZodOptional<z.ZodObject<{
|
|
13911
14894
|
projectKey: z.ZodString;
|
|
13912
14895
|
projectName: z.ZodString;
|
|
@@ -14060,6 +15043,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14060
15043
|
} | null | undefined;
|
|
14061
15044
|
refreshedAt?: string | null | undefined;
|
|
14062
15045
|
} | null | undefined;
|
|
15046
|
+
forge?: string | undefined;
|
|
14063
15047
|
project?: {
|
|
14064
15048
|
projectKey: string;
|
|
14065
15049
|
projectName: string;
|
|
@@ -14165,6 +15149,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14165
15149
|
} | null | undefined;
|
|
14166
15150
|
refreshedAt?: string | null | undefined;
|
|
14167
15151
|
} | null | undefined;
|
|
15152
|
+
forge?: string | undefined;
|
|
14168
15153
|
project?: {
|
|
14169
15154
|
projectKey: string;
|
|
14170
15155
|
projectName: string;
|
|
@@ -14557,6 +15542,31 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14557
15542
|
pinnedAt: z.ZodNullable<z.ZodString>;
|
|
14558
15543
|
error: z.ZodNullable<z.ZodString>;
|
|
14559
15544
|
}, z.core.$strip>;
|
|
15545
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15546
|
+
type: z.ZodLiteral<"workspace.recovery.inspect.response">;
|
|
15547
|
+
payload: z.ZodObject<{
|
|
15548
|
+
requestId: z.ZodString;
|
|
15549
|
+
state: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15550
|
+
kind: z.ZodLiteral<"recoverable">;
|
|
15551
|
+
workspaceId: z.ZodString;
|
|
15552
|
+
workspaceName: z.ZodString;
|
|
15553
|
+
action: z.ZodString;
|
|
15554
|
+
branch: z.ZodNullable<z.ZodString>;
|
|
15555
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15556
|
+
kind: z.ZodLiteral<"unavailable">;
|
|
15557
|
+
workspaceId: z.ZodString;
|
|
15558
|
+
reason: z.ZodString;
|
|
15559
|
+
message: z.ZodString;
|
|
15560
|
+
}, z.core.$strip>], "kind">;
|
|
15561
|
+
}, z.core.$strip>;
|
|
15562
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15563
|
+
type: z.ZodLiteral<"workspace.recovery.restore.response">;
|
|
15564
|
+
payload: z.ZodObject<{
|
|
15565
|
+
requestId: z.ZodString;
|
|
15566
|
+
workspaceId: z.ZodString;
|
|
15567
|
+
accepted: z.ZodBoolean;
|
|
15568
|
+
error: z.ZodNullable<z.ZodString>;
|
|
15569
|
+
}, z.core.$strip>;
|
|
14560
15570
|
}, z.core.$strip>, z.ZodObject<{
|
|
14561
15571
|
type: z.ZodLiteral<"wait_for_finish_response">;
|
|
14562
15572
|
payload: z.ZodObject<{
|
|
@@ -14834,6 +15844,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14834
15844
|
prStatus: z.ZodOptional<z.ZodObject<{
|
|
14835
15845
|
cwd: z.ZodString;
|
|
14836
15846
|
status: z.ZodNullable<z.ZodObject<{
|
|
15847
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15848
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
14837
15849
|
number: z.ZodOptional<z.ZodNumber>;
|
|
14838
15850
|
url: z.ZodString;
|
|
14839
15851
|
title: z.ZodString;
|
|
@@ -14881,8 +15893,11 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14881
15893
|
isMergeQueueEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
14882
15894
|
isInMergeQueue: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
14883
15895
|
}, z.core.$strip>>;
|
|
15896
|
+
forgeSpecific: z.ZodOptional<z.ZodUnknown>;
|
|
14884
15897
|
}, z.core.$strip>>;
|
|
14885
15898
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
15899
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
15900
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
14886
15901
|
error: z.ZodNullable<z.ZodObject<{
|
|
14887
15902
|
code: z.ZodEnum<{
|
|
14888
15903
|
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
@@ -15117,6 +16132,23 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15117
16132
|
}, z.core.$strip>>;
|
|
15118
16133
|
requestId: z.ZodString;
|
|
15119
16134
|
}, z.core.$strip>;
|
|
16135
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16136
|
+
type: z.ZodLiteral<"checkout.forge.set_auto_merge.response">;
|
|
16137
|
+
payload: z.ZodObject<{
|
|
16138
|
+
cwd: z.ZodString;
|
|
16139
|
+
enabled: z.ZodBoolean;
|
|
16140
|
+
success: z.ZodBoolean;
|
|
16141
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
16142
|
+
code: z.ZodEnum<{
|
|
16143
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
16144
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
16145
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
16146
|
+
UNKNOWN: "UNKNOWN";
|
|
16147
|
+
}>;
|
|
16148
|
+
message: z.ZodString;
|
|
16149
|
+
}, z.core.$strip>>;
|
|
16150
|
+
requestId: z.ZodString;
|
|
16151
|
+
}, z.core.$strip>;
|
|
15120
16152
|
}, z.core.$strip>, z.ZodObject<{
|
|
15121
16153
|
type: z.ZodLiteral<"checkout.github.set_auto_merge.response">;
|
|
15122
16154
|
payload: z.ZodObject<{
|
|
@@ -15134,6 +16166,160 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15134
16166
|
}, z.core.$strip>>;
|
|
15135
16167
|
requestId: z.ZodString;
|
|
15136
16168
|
}, z.core.$strip>;
|
|
16169
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16170
|
+
type: z.ZodLiteral<"checkout.commits.list.response">;
|
|
16171
|
+
payload: z.ZodObject<{
|
|
16172
|
+
cwd: z.ZodString;
|
|
16173
|
+
baseRef: z.ZodNullable<z.ZodString>;
|
|
16174
|
+
commits: z.ZodArray<z.ZodObject<{
|
|
16175
|
+
sha: z.ZodString;
|
|
16176
|
+
shortSha: z.ZodString;
|
|
16177
|
+
subject: z.ZodString;
|
|
16178
|
+
authorName: z.ZodString;
|
|
16179
|
+
authorDate: z.ZodString;
|
|
16180
|
+
isOnRemote: z.ZodBoolean;
|
|
16181
|
+
files: z.ZodArray<z.ZodObject<{
|
|
16182
|
+
path: z.ZodString;
|
|
16183
|
+
additions: z.ZodNumber;
|
|
16184
|
+
deletions: z.ZodNumber;
|
|
16185
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
16186
|
+
added: "added";
|
|
16187
|
+
modified: "modified";
|
|
16188
|
+
deleted: "deleted";
|
|
16189
|
+
renamed: "renamed";
|
|
16190
|
+
}>>;
|
|
16191
|
+
}, z.core.$strip>>;
|
|
16192
|
+
}, z.core.$strip>>;
|
|
16193
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
16194
|
+
code: z.ZodEnum<{
|
|
16195
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
16196
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
16197
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
16198
|
+
UNKNOWN: "UNKNOWN";
|
|
16199
|
+
}>;
|
|
16200
|
+
message: z.ZodString;
|
|
16201
|
+
}, z.core.$strip>>;
|
|
16202
|
+
requestId: z.ZodString;
|
|
16203
|
+
}, z.core.$strip>;
|
|
16204
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16205
|
+
type: z.ZodLiteral<"checkout.commits.file_diff.response">;
|
|
16206
|
+
payload: z.ZodObject<{
|
|
16207
|
+
cwd: z.ZodString;
|
|
16208
|
+
sha: z.ZodString;
|
|
16209
|
+
path: z.ZodString;
|
|
16210
|
+
file: z.ZodNullable<z.ZodObject<{
|
|
16211
|
+
path: z.ZodString;
|
|
16212
|
+
isNew: z.ZodBoolean;
|
|
16213
|
+
isDeleted: z.ZodBoolean;
|
|
16214
|
+
additions: z.ZodNumber;
|
|
16215
|
+
deletions: z.ZodNumber;
|
|
16216
|
+
hunks: z.ZodArray<z.ZodObject<{
|
|
16217
|
+
oldStart: z.ZodNumber;
|
|
16218
|
+
oldCount: z.ZodNumber;
|
|
16219
|
+
newStart: z.ZodNumber;
|
|
16220
|
+
newCount: z.ZodNumber;
|
|
16221
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
16222
|
+
type: z.ZodEnum<{
|
|
16223
|
+
context: "context";
|
|
16224
|
+
add: "add";
|
|
16225
|
+
remove: "remove";
|
|
16226
|
+
header: "header";
|
|
16227
|
+
}>;
|
|
16228
|
+
content: z.ZodString;
|
|
16229
|
+
tokens: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16230
|
+
text: z.ZodString;
|
|
16231
|
+
style: z.ZodNullable<z.ZodString>;
|
|
16232
|
+
}, z.core.$strip>>>;
|
|
16233
|
+
}, z.core.$strip>>;
|
|
16234
|
+
}, z.core.$strip>>;
|
|
16235
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
16236
|
+
ok: "ok";
|
|
16237
|
+
too_large: "too_large";
|
|
16238
|
+
binary: "binary";
|
|
16239
|
+
}>>;
|
|
16240
|
+
}, z.core.$strip>>;
|
|
16241
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
16242
|
+
code: z.ZodEnum<{
|
|
16243
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
16244
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
16245
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
16246
|
+
UNKNOWN: "UNKNOWN";
|
|
16247
|
+
}>;
|
|
16248
|
+
message: z.ZodString;
|
|
16249
|
+
}, z.core.$strip>>;
|
|
16250
|
+
requestId: z.ZodString;
|
|
16251
|
+
}, z.core.$strip>;
|
|
16252
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16253
|
+
type: z.ZodLiteral<"checkout.forge.get_check_details.response">;
|
|
16254
|
+
payload: z.ZodObject<{
|
|
16255
|
+
cwd: z.ZodString;
|
|
16256
|
+
success: z.ZodBoolean;
|
|
16257
|
+
details: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16258
|
+
checkRunId: z.ZodNumber;
|
|
16259
|
+
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
16260
|
+
name: z.ZodString;
|
|
16261
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16262
|
+
conclusion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16263
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16264
|
+
detailsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16265
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16266
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16267
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16268
|
+
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16269
|
+
}, z.core.$strip>>>;
|
|
16270
|
+
annotations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16271
|
+
path: z.ZodOptional<z.ZodString>;
|
|
16272
|
+
startLine: z.ZodOptional<z.ZodNumber>;
|
|
16273
|
+
endLine: z.ZodOptional<z.ZodNumber>;
|
|
16274
|
+
annotationLevel: z.ZodOptional<z.ZodString>;
|
|
16275
|
+
message: z.ZodOptional<z.ZodString>;
|
|
16276
|
+
title: z.ZodOptional<z.ZodString>;
|
|
16277
|
+
rawDetails: z.ZodOptional<z.ZodString>;
|
|
16278
|
+
}, z.core.$strip>>>>;
|
|
16279
|
+
failedJobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16280
|
+
jobId: z.ZodNumber;
|
|
16281
|
+
name: z.ZodString;
|
|
16282
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16283
|
+
conclusion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16284
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16285
|
+
logTail: z.ZodOptional<z.ZodString>;
|
|
16286
|
+
logTruncated: z.ZodOptional<z.ZodBoolean>;
|
|
16287
|
+
}, z.core.$strip>>>>;
|
|
16288
|
+
truncated: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16289
|
+
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16290
|
+
id: z.ZodNumber;
|
|
16291
|
+
status: z.ZodString;
|
|
16292
|
+
rawStatus: z.ZodString;
|
|
16293
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16294
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16295
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16296
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16297
|
+
name: z.ZodString;
|
|
16298
|
+
status: z.ZodString;
|
|
16299
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16300
|
+
id: z.ZodNumber;
|
|
16301
|
+
name: z.ZodString;
|
|
16302
|
+
stage: z.ZodString;
|
|
16303
|
+
status: z.ZodString;
|
|
16304
|
+
rawStatus: z.ZodString;
|
|
16305
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16306
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16307
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
16308
|
+
}, z.core.$strip>>>>;
|
|
16309
|
+
}, z.core.$strip>>>>;
|
|
16310
|
+
}, z.core.$strip>>>;
|
|
16311
|
+
}, z.core.$strip>>>>;
|
|
16312
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
16313
|
+
code: z.ZodEnum<{
|
|
16314
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
16315
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
16316
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
16317
|
+
UNKNOWN: "UNKNOWN";
|
|
16318
|
+
}>;
|
|
16319
|
+
message: z.ZodString;
|
|
16320
|
+
}, z.core.$strip>>;
|
|
16321
|
+
requestId: z.ZodString;
|
|
16322
|
+
}, z.core.$strip>;
|
|
15137
16323
|
}, z.core.$strip>, z.ZodObject<{
|
|
15138
16324
|
type: z.ZodLiteral<"checkout.github.get_check_details.response">;
|
|
15139
16325
|
payload: z.ZodObject<{
|
|
@@ -15171,6 +16357,28 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15171
16357
|
logTruncated: z.ZodOptional<z.ZodBoolean>;
|
|
15172
16358
|
}, z.core.$strip>>>>;
|
|
15173
16359
|
truncated: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16360
|
+
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16361
|
+
id: z.ZodNumber;
|
|
16362
|
+
status: z.ZodString;
|
|
16363
|
+
rawStatus: z.ZodString;
|
|
16364
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16365
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16366
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16367
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16368
|
+
name: z.ZodString;
|
|
16369
|
+
status: z.ZodString;
|
|
16370
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16371
|
+
id: z.ZodNumber;
|
|
16372
|
+
name: z.ZodString;
|
|
16373
|
+
stage: z.ZodString;
|
|
16374
|
+
status: z.ZodString;
|
|
16375
|
+
rawStatus: z.ZodString;
|
|
16376
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16377
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16378
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
16379
|
+
}, z.core.$strip>>>>;
|
|
16380
|
+
}, z.core.$strip>>>>;
|
|
16381
|
+
}, z.core.$strip>>>;
|
|
15174
16382
|
}, z.core.$strip>>>>;
|
|
15175
16383
|
error: z.ZodNullable<z.ZodObject<{
|
|
15176
16384
|
code: z.ZodEnum<{
|
|
@@ -15188,6 +16396,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15188
16396
|
payload: z.ZodObject<{
|
|
15189
16397
|
cwd: z.ZodString;
|
|
15190
16398
|
status: z.ZodNullable<z.ZodObject<{
|
|
16399
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16400
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
15191
16401
|
number: z.ZodOptional<z.ZodNumber>;
|
|
15192
16402
|
url: z.ZodString;
|
|
15193
16403
|
title: z.ZodString;
|
|
@@ -15235,8 +16445,11 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15235
16445
|
isMergeQueueEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
15236
16446
|
isInMergeQueue: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
15237
16447
|
}, z.core.$strip>>;
|
|
16448
|
+
forgeSpecific: z.ZodOptional<z.ZodUnknown>;
|
|
15238
16449
|
}, z.core.$strip>>;
|
|
15239
16450
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
16451
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
16452
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15240
16453
|
error: z.ZodNullable<z.ZodObject<{
|
|
15241
16454
|
code: z.ZodEnum<{
|
|
15242
16455
|
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
@@ -15277,6 +16490,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15277
16490
|
createdAt: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
15278
16491
|
url: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15279
16492
|
reviewId: z.ZodOptional<z.ZodString>;
|
|
16493
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
16494
|
+
threadIsResolved: z.ZodOptional<z.ZodBoolean>;
|
|
15280
16495
|
location: z.ZodOptional<z.ZodObject<{
|
|
15281
16496
|
path: z.ZodString;
|
|
15282
16497
|
line: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15299,6 +16514,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15299
16514
|
}, z.core.$strip>], "kind">>>>>;
|
|
15300
16515
|
requestId: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15301
16516
|
githubFeaturesEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16517
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
15302
16518
|
}, z.core.$strip>>>;
|
|
15303
16519
|
}, z.core.$strip>, z.ZodObject<{
|
|
15304
16520
|
type: z.ZodLiteral<"checkout_switch_branch_response">;
|
|
@@ -15413,25 +16629,21 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15413
16629
|
error: z.ZodNullable<z.ZodString>;
|
|
15414
16630
|
requestId: z.ZodString;
|
|
15415
16631
|
}, z.core.$strip>;
|
|
16632
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16633
|
+
type: z.ZodLiteral<"forge.search.response">;
|
|
16634
|
+
payload: z.ZodObject<{
|
|
16635
|
+
items: z.ZodArray<z.ZodUnknown>;
|
|
16636
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
16637
|
+
error: z.ZodNullable<z.ZodString>;
|
|
16638
|
+
requestId: z.ZodString;
|
|
16639
|
+
}, z.core.$strip>;
|
|
15416
16640
|
}, z.core.$strip>, z.ZodObject<{
|
|
15417
16641
|
type: z.ZodLiteral<"github_search_response">;
|
|
15418
16642
|
payload: z.ZodObject<{
|
|
15419
|
-
items: z.ZodArray<z.
|
|
15420
|
-
|
|
15421
|
-
|
|
15422
|
-
|
|
15423
|
-
}>;
|
|
15424
|
-
number: z.ZodNumber;
|
|
15425
|
-
title: z.ZodString;
|
|
15426
|
-
url: z.ZodString;
|
|
15427
|
-
state: z.ZodString;
|
|
15428
|
-
body: z.ZodNullable<z.ZodString>;
|
|
15429
|
-
labels: z.ZodArray<z.ZodString>;
|
|
15430
|
-
baseRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15431
|
-
headRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15432
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15433
|
-
}, z.core.$strip>>;
|
|
15434
|
-
githubFeaturesEnabled: z.ZodBoolean;
|
|
16643
|
+
items: z.ZodArray<z.ZodUnknown>;
|
|
16644
|
+
featuresEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
16645
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
16646
|
+
githubFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
15435
16647
|
error: z.ZodNullable<z.ZodString>;
|
|
15436
16648
|
requestId: z.ZodString;
|
|
15437
16649
|
}, z.core.$strip>;
|
|
@@ -15606,6 +16818,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15606
16818
|
}, z.core.$strip>>>;
|
|
15607
16819
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15608
16820
|
}, z.core.$strip>>>;
|
|
16821
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
15609
16822
|
project: z.ZodOptional<z.ZodObject<{
|
|
15610
16823
|
projectKey: z.ZodString;
|
|
15611
16824
|
projectName: z.ZodString;
|
|
@@ -15759,6 +16972,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15759
16972
|
} | null | undefined;
|
|
15760
16973
|
refreshedAt?: string | null | undefined;
|
|
15761
16974
|
} | null | undefined;
|
|
16975
|
+
forge?: string | undefined;
|
|
15762
16976
|
project?: {
|
|
15763
16977
|
projectKey: string;
|
|
15764
16978
|
projectName: string;
|
|
@@ -15864,6 +17078,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15864
17078
|
} | null | undefined;
|
|
15865
17079
|
refreshedAt?: string | null | undefined;
|
|
15866
17080
|
} | null | undefined;
|
|
17081
|
+
forge?: string | undefined;
|
|
15867
17082
|
project?: {
|
|
15868
17083
|
projectKey: string;
|
|
15869
17084
|
projectName: string;
|
|
@@ -16048,6 +17263,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
16048
17263
|
provider: z.ZodString;
|
|
16049
17264
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
16050
17265
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17266
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
17267
|
+
builtin: "builtin";
|
|
17268
|
+
custom: "custom";
|
|
17269
|
+
}>>;
|
|
16051
17270
|
error: z.ZodOptional<z.ZodString>;
|
|
16052
17271
|
models: z.ZodOptional<z.ZodArray<z.ZodType<AgentModelDefinition, unknown, z.core.$ZodTypeInternals<AgentModelDefinition, unknown>>>>;
|
|
16053
17272
|
modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, unknown, z.core.$ZodTypeInternals<AgentMode, unknown>>>>;
|
|
@@ -16067,6 +17286,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
16067
17286
|
provider: z.ZodString;
|
|
16068
17287
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
16069
17288
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17289
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
17290
|
+
builtin: "builtin";
|
|
17291
|
+
custom: "custom";
|
|
17292
|
+
}>>;
|
|
16070
17293
|
error: z.ZodOptional<z.ZodString>;
|
|
16071
17294
|
models: z.ZodOptional<z.ZodArray<z.ZodType<AgentModelDefinition, unknown, z.core.$ZodTypeInternals<AgentModelDefinition, unknown>>>>;
|
|
16072
17295
|
modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, unknown, z.core.$ZodTypeInternals<AgentMode, unknown>>>>;
|
|
@@ -17390,6 +18613,9 @@ export type WorkspaceTitleSetResponse = z.infer<typeof WorkspaceTitleSetResponse
|
|
|
17390
18613
|
export type WorkspaceTitleSetResponsePayload = z.infer<typeof WorkspaceTitleSetResponsePayloadSchema>;
|
|
17391
18614
|
export type WorkspacePinSetResponse = z.infer<typeof WorkspacePinSetResponseSchema>;
|
|
17392
18615
|
export type WorkspacePinSetResponsePayload = z.infer<typeof WorkspacePinSetResponsePayloadSchema>;
|
|
18616
|
+
export type WorkspaceRecoveryState = z.infer<typeof WorkspaceRecoveryStateSchema>;
|
|
18617
|
+
export type WorkspaceRecoveryInspectResponse = z.infer<typeof WorkspaceRecoveryInspectResponseSchema>;
|
|
18618
|
+
export type WorkspaceRecoveryRestoreResponse = z.infer<typeof WorkspaceRecoveryRestoreResponseSchema>;
|
|
17393
18619
|
export type WorkspaceCreateRequest = z.infer<typeof WorkspaceCreateRequestSchema>;
|
|
17394
18620
|
export type WorkspaceCreateResponse = z.infer<typeof WorkspaceCreateResponseSchema>;
|
|
17395
18621
|
export type ProjectRenameResponsePayload = z.infer<typeof ProjectRenameResponsePayloadSchema>;
|
|
@@ -17453,6 +18679,8 @@ export type DictationStreamFinishMessage = z.infer<typeof DictationStreamFinishM
|
|
|
17453
18679
|
export type DictationStreamCancelMessage = z.infer<typeof DictationStreamCancelMessageSchema>;
|
|
17454
18680
|
export type CreateAgentRequestMessage = z.infer<typeof CreateAgentRequestMessageSchema>;
|
|
17455
18681
|
export type AgentAttachment = z.infer<typeof AgentAttachmentSchema>;
|
|
18682
|
+
export type ForgeChangeRequestAttachment = z.infer<typeof ForgeChangeRequestAttachmentSchema>;
|
|
18683
|
+
export type ForgeIssueAttachment = z.infer<typeof ForgeIssueAttachmentSchema>;
|
|
17456
18684
|
export type UploadedFileAttachment = z.infer<typeof UploadedFileAttachmentSchema>;
|
|
17457
18685
|
export type FirstAgentContext = z.infer<typeof FirstAgentContextSchema>;
|
|
17458
18686
|
export type ReviewAttachment = z.infer<typeof ReviewAttachmentSchema>;
|
|
@@ -17491,6 +18719,8 @@ export type ProjectRenameRequest = z.infer<typeof ProjectRenameRequestSchema>;
|
|
|
17491
18719
|
export type ProjectRemoveRequest = z.infer<typeof ProjectRemoveRequestSchema>;
|
|
17492
18720
|
export type WorkspaceTitleSetRequest = z.infer<typeof WorkspaceTitleSetRequestSchema>;
|
|
17493
18721
|
export type WorkspacePinSetRequest = z.infer<typeof WorkspacePinSetRequestSchema>;
|
|
18722
|
+
export type WorkspaceRecoveryInspectRequest = z.infer<typeof WorkspaceRecoveryInspectRequestSchema>;
|
|
18723
|
+
export type WorkspaceRecoveryRestoreRequest = z.infer<typeof WorkspaceRecoveryRestoreRequestSchema>;
|
|
17494
18724
|
export type SetAgentModeRequestMessage = z.infer<typeof SetAgentModeRequestMessageSchema>;
|
|
17495
18725
|
export type SetAgentModelRequestMessage = z.infer<typeof SetAgentModelRequestMessageSchema>;
|
|
17496
18726
|
export type SetAgentThinkingRequestMessage = z.infer<typeof SetAgentThinkingRequestMessageSchema>;
|
|
@@ -17516,15 +18746,30 @@ export type CheckoutPushRequest = z.infer<typeof CheckoutPushRequestSchema>;
|
|
|
17516
18746
|
export type CheckoutPushResponse = z.infer<typeof CheckoutPushResponseSchema>;
|
|
17517
18747
|
export type CheckoutRefreshRequest = z.infer<typeof CheckoutRefreshRequestSchema>;
|
|
17518
18748
|
export type CheckoutRefreshResponse = z.infer<typeof CheckoutRefreshResponseSchema>;
|
|
18749
|
+
export type CheckoutCommitFile = z.infer<typeof CheckoutCommitFileSchema>;
|
|
18750
|
+
export type CheckoutCommit = z.infer<typeof CheckoutCommitSchema>;
|
|
18751
|
+
export type CheckoutCommitsListRequest = z.infer<typeof CheckoutCommitsListRequestSchema>;
|
|
18752
|
+
export type CheckoutCommitsListResponse = z.infer<typeof CheckoutCommitsListResponseSchema>;
|
|
18753
|
+
export type CheckoutCommitFileDiffRequest = z.infer<typeof CheckoutCommitFileDiffRequestSchema>;
|
|
18754
|
+
export type CheckoutCommitFileDiffResponse = z.infer<typeof CheckoutCommitFileDiffResponseSchema>;
|
|
18755
|
+
export type ParsedDiffFile = z.infer<typeof ParsedDiffFileSchema>;
|
|
17519
18756
|
export type CheckoutPrCreateRequest = z.infer<typeof CheckoutPrCreateRequestSchema>;
|
|
17520
18757
|
export type CheckoutPrCreateResponse = z.infer<typeof CheckoutPrCreateResponseSchema>;
|
|
17521
18758
|
export type CheckoutPrMergeRequest = z.infer<typeof CheckoutPrMergeRequestSchema>;
|
|
17522
18759
|
export type CheckoutPrMergeResponse = z.infer<typeof CheckoutPrMergeResponseSchema>;
|
|
17523
18760
|
export type CheckoutPrMergeMethod = z.infer<typeof CheckoutPrMergeRequestSchema>["mergeMethod"];
|
|
18761
|
+
export type CheckoutForgeSetAutoMergeRequest = z.infer<typeof CheckoutForgeSetAutoMergeRequestSchema>;
|
|
18762
|
+
export type CheckoutForgeSetAutoMergeResponse = z.infer<typeof CheckoutForgeSetAutoMergeResponseSchema>;
|
|
17524
18763
|
export type CheckoutGithubSetAutoMergeRequest = z.infer<typeof CheckoutGithubSetAutoMergeRequestSchema>;
|
|
17525
18764
|
export type CheckoutGithubSetAutoMergeResponse = z.infer<typeof CheckoutGithubSetAutoMergeResponseSchema>;
|
|
18765
|
+
export type CheckoutForgeGetCheckDetailsRequest = z.infer<typeof CheckoutForgeGetCheckDetailsRequestSchema>;
|
|
17526
18766
|
export type CheckoutGithubGetCheckDetailsRequest = z.infer<typeof CheckoutGithubGetCheckDetailsRequestSchema>;
|
|
18767
|
+
export type CheckoutCheckDetails = z.infer<typeof CheckoutCheckDetailsSchema>;
|
|
17527
18768
|
export type CheckoutGithubCheckDetails = z.infer<typeof CheckoutGithubCheckDetailsSchema>;
|
|
18769
|
+
export type CheckoutPipeline = z.infer<typeof CheckoutPipelineSchema>;
|
|
18770
|
+
export type CheckoutPipelineStage = z.infer<typeof CheckoutPipelineStageSchema>;
|
|
18771
|
+
export type CheckoutPipelineJob = z.infer<typeof CheckoutPipelineJobSchema>;
|
|
18772
|
+
export type CheckoutForgeGetCheckDetailsResponse = z.infer<typeof CheckoutForgeGetCheckDetailsResponseSchema>;
|
|
17528
18773
|
export type CheckoutGithubGetCheckDetailsResponse = z.infer<typeof CheckoutGithubGetCheckDetailsResponseSchema>;
|
|
17529
18774
|
export type PullRequestMergeable = z.infer<typeof CheckoutPrStatusSchema>["mergeable"];
|
|
17530
18775
|
export type CheckoutPrStatusRequest = z.infer<typeof CheckoutPrStatusRequestSchema>;
|
|
@@ -17547,10 +18792,15 @@ export type ValidateBranchRequest = z.infer<typeof ValidateBranchRequestSchema>;
|
|
|
17547
18792
|
export type ValidateBranchResponse = z.infer<typeof ValidateBranchResponseSchema>;
|
|
17548
18793
|
export type BranchSuggestionsRequest = z.infer<typeof BranchSuggestionsRequestSchema>;
|
|
17549
18794
|
export type BranchSuggestionsResponse = z.infer<typeof BranchSuggestionsResponseSchema>;
|
|
18795
|
+
export type ForgeSearchItem = z.infer<typeof ForgeSearchItemSchema>;
|
|
18796
|
+
export type ForgeSearchKind = "issue" | "change_request";
|
|
18797
|
+
export type ForgeSearchRequest = z.infer<typeof ForgeSearchRequestSchema>;
|
|
18798
|
+
export type ForgeSearchResponse = z.infer<typeof ForgeSearchResponseSchema>;
|
|
17550
18799
|
export type GitHubSearchItem = z.infer<typeof GitHubSearchItemSchema>;
|
|
17551
18800
|
export type GitHubSearchKind = z.infer<typeof GitHubSearchKindSchema>;
|
|
17552
18801
|
export type GitHubSearchRequest = z.infer<typeof GitHubSearchRequestSchema>;
|
|
17553
18802
|
export type GitHubSearchResponse = z.infer<typeof GitHubSearchResponseSchema>;
|
|
18803
|
+
export type ChangeRequestCheckoutSource = z.infer<typeof ChangeRequestCheckoutSourceSchema>;
|
|
17554
18804
|
export type CreatePaseoWorktreeRequest = z.infer<typeof CreatePaseoWorktreeRequestSchema>;
|
|
17555
18805
|
export type DirectorySuggestionsRequest = z.infer<typeof DirectorySuggestionsRequestSchema>;
|
|
17556
18806
|
export type DirectorySuggestionsResponse = z.infer<typeof DirectorySuggestionsResponseSchema>;
|
|
@@ -18013,6 +19263,14 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18013
19263
|
workspaceId: z.ZodString;
|
|
18014
19264
|
pinned: z.ZodBoolean;
|
|
18015
19265
|
requestId: z.ZodString;
|
|
19266
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19267
|
+
type: z.ZodLiteral<"workspace.recovery.inspect.request">;
|
|
19268
|
+
workspaceId: z.ZodString;
|
|
19269
|
+
requestId: z.ZodString;
|
|
19270
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19271
|
+
type: z.ZodLiteral<"workspace.recovery.restore.request">;
|
|
19272
|
+
workspaceId: z.ZodString;
|
|
19273
|
+
requestId: z.ZodString;
|
|
18016
19274
|
}, z.core.$strip>, z.ZodObject<{
|
|
18017
19275
|
type: z.ZodLiteral<"set_voice_mode">;
|
|
18018
19276
|
enabled: z.ZodBoolean;
|
|
@@ -18034,6 +19292,26 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18034
19292
|
mimeType: "text/plain";
|
|
18035
19293
|
text: string;
|
|
18036
19294
|
title?: string | null | undefined;
|
|
19295
|
+
} | {
|
|
19296
|
+
type: "forge_change_request";
|
|
19297
|
+
mimeType: "application/paseo-forge-change-request";
|
|
19298
|
+
forge: string;
|
|
19299
|
+
number: number;
|
|
19300
|
+
title: string;
|
|
19301
|
+
url: string;
|
|
19302
|
+
body?: string | null | undefined;
|
|
19303
|
+
projectPath?: string | undefined;
|
|
19304
|
+
baseRefName?: string | null | undefined;
|
|
19305
|
+
headRefName?: string | null | undefined;
|
|
19306
|
+
} | {
|
|
19307
|
+
type: "forge_issue";
|
|
19308
|
+
mimeType: "application/paseo-forge-issue";
|
|
19309
|
+
forge: string;
|
|
19310
|
+
number: number;
|
|
19311
|
+
title: string;
|
|
19312
|
+
url: string;
|
|
19313
|
+
body?: string | null | undefined;
|
|
19314
|
+
projectPath?: string | undefined;
|
|
18037
19315
|
} | {
|
|
18038
19316
|
type: "github_pr";
|
|
18039
19317
|
mimeType: "application/github-pr";
|
|
@@ -18121,6 +19399,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18121
19399
|
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
18122
19400
|
}, z.core.$loose>>>>;
|
|
18123
19401
|
}, z.core.$loose>>>>;
|
|
19402
|
+
removeProviders: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
18124
19403
|
metadataGeneration: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
18125
19404
|
providers: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
18126
19405
|
provider: z.ZodString;
|
|
@@ -18247,6 +19526,26 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18247
19526
|
mimeType: "text/plain";
|
|
18248
19527
|
text: string;
|
|
18249
19528
|
title?: string | null | undefined;
|
|
19529
|
+
} | {
|
|
19530
|
+
type: "forge_change_request";
|
|
19531
|
+
mimeType: "application/paseo-forge-change-request";
|
|
19532
|
+
forge: string;
|
|
19533
|
+
number: number;
|
|
19534
|
+
title: string;
|
|
19535
|
+
url: string;
|
|
19536
|
+
body?: string | null | undefined;
|
|
19537
|
+
projectPath?: string | undefined;
|
|
19538
|
+
baseRefName?: string | null | undefined;
|
|
19539
|
+
headRefName?: string | null | undefined;
|
|
19540
|
+
} | {
|
|
19541
|
+
type: "forge_issue";
|
|
19542
|
+
mimeType: "application/paseo-forge-issue";
|
|
19543
|
+
forge: string;
|
|
19544
|
+
number: number;
|
|
19545
|
+
title: string;
|
|
19546
|
+
url: string;
|
|
19547
|
+
body?: string | null | undefined;
|
|
19548
|
+
projectPath?: string | undefined;
|
|
18250
19549
|
} | {
|
|
18251
19550
|
type: "github_pr";
|
|
18252
19551
|
mimeType: "application/github-pr";
|
|
@@ -18309,6 +19608,12 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18309
19608
|
"branch-off": "branch-off";
|
|
18310
19609
|
checkout: "checkout";
|
|
18311
19610
|
}>>;
|
|
19611
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
19612
|
+
kind: z.ZodLiteral<"change_request">;
|
|
19613
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19614
|
+
number: z.ZodNumber;
|
|
19615
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
19616
|
+
}, z.core.$strip>>;
|
|
18312
19617
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
18313
19618
|
}, z.core.$strip>>;
|
|
18314
19619
|
worktree: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -18411,6 +19716,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18411
19716
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
18412
19717
|
providerHandleId: z.ZodOptional<z.ZodString>;
|
|
18413
19718
|
cwd: z.ZodOptional<z.ZodString>;
|
|
19719
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
18414
19720
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
18415
19721
|
requestId: z.ZodString;
|
|
18416
19722
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -18587,6 +19893,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18587
19893
|
rebase: "rebase";
|
|
18588
19894
|
}>;
|
|
18589
19895
|
requestId: z.ZodString;
|
|
19896
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19897
|
+
type: z.ZodLiteral<"checkout.forge.set_auto_merge.request">;
|
|
19898
|
+
cwd: z.ZodString;
|
|
19899
|
+
enabled: z.ZodBoolean;
|
|
19900
|
+
mergeMethod: z.ZodOptional<z.ZodEnum<{
|
|
19901
|
+
merge: "merge";
|
|
19902
|
+
squash: "squash";
|
|
19903
|
+
rebase: "rebase";
|
|
19904
|
+
}>>;
|
|
19905
|
+
requestId: z.ZodString;
|
|
18590
19906
|
}, z.core.$strip>, z.ZodObject<{
|
|
18591
19907
|
type: z.ZodLiteral<"checkout.github.set_auto_merge.request">;
|
|
18592
19908
|
cwd: z.ZodString;
|
|
@@ -18598,13 +19914,33 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18598
19914
|
}>>;
|
|
18599
19915
|
requestId: z.ZodString;
|
|
18600
19916
|
}, z.core.$strip>, z.ZodObject<{
|
|
18601
|
-
type: z.ZodLiteral<"checkout.
|
|
19917
|
+
type: z.ZodLiteral<"checkout.commits.list.request">;
|
|
18602
19918
|
cwd: z.ZodString;
|
|
18603
|
-
|
|
18604
|
-
|
|
18605
|
-
|
|
19919
|
+
requestId: z.ZodString;
|
|
19920
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19921
|
+
type: z.ZodLiteral<"checkout.commits.file_diff.request">;
|
|
19922
|
+
cwd: z.ZodString;
|
|
19923
|
+
sha: z.ZodString;
|
|
19924
|
+
path: z.ZodString;
|
|
19925
|
+
requestId: z.ZodString;
|
|
19926
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19927
|
+
cwd: z.ZodString;
|
|
19928
|
+
repoOwner: z.ZodOptional<z.ZodString>;
|
|
19929
|
+
repoName: z.ZodOptional<z.ZodString>;
|
|
19930
|
+
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
18606
19931
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
19932
|
+
changeRequestNumber: z.ZodOptional<z.ZodNumber>;
|
|
18607
19933
|
requestId: z.ZodString;
|
|
19934
|
+
type: z.ZodLiteral<"checkout.forge.get_check_details.request">;
|
|
19935
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19936
|
+
cwd: z.ZodString;
|
|
19937
|
+
repoOwner: z.ZodOptional<z.ZodString>;
|
|
19938
|
+
repoName: z.ZodOptional<z.ZodString>;
|
|
19939
|
+
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
19940
|
+
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
19941
|
+
changeRequestNumber: z.ZodOptional<z.ZodNumber>;
|
|
19942
|
+
requestId: z.ZodString;
|
|
19943
|
+
type: z.ZodLiteral<"checkout.github.get_check_details.request">;
|
|
18608
19944
|
}, z.core.$strip>, z.ZodObject<{
|
|
18609
19945
|
type: z.ZodLiteral<"checkout_pr_status_request">;
|
|
18610
19946
|
cwd: z.ZodString;
|
|
@@ -18652,12 +19988,28 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18652
19988
|
query: z.ZodOptional<z.ZodString>;
|
|
18653
19989
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
18654
19990
|
requestId: z.ZodString;
|
|
19991
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19992
|
+
type: z.ZodLiteral<"forge.search.request">;
|
|
19993
|
+
cwd: z.ZodString;
|
|
19994
|
+
query: z.ZodString;
|
|
19995
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
19996
|
+
kinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
19997
|
+
change_request: "change_request";
|
|
19998
|
+
issue: "issue";
|
|
19999
|
+
pr: "pr";
|
|
20000
|
+
"github-issue": "github-issue";
|
|
20001
|
+
"github-pr": "github-pr";
|
|
20002
|
+
}>>>;
|
|
20003
|
+
requestId: z.ZodString;
|
|
18655
20004
|
}, z.core.$strip>, z.ZodObject<{
|
|
18656
20005
|
type: z.ZodLiteral<"github_search_request">;
|
|
18657
20006
|
cwd: z.ZodString;
|
|
18658
20007
|
query: z.ZodString;
|
|
18659
20008
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
18660
20009
|
kinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
20010
|
+
change_request: "change_request";
|
|
20011
|
+
issue: "issue";
|
|
20012
|
+
pr: "pr";
|
|
18661
20013
|
"github-issue": "github-issue";
|
|
18662
20014
|
"github-pr": "github-pr";
|
|
18663
20015
|
}>>>;
|
|
@@ -18703,6 +20055,26 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18703
20055
|
mimeType: "text/plain";
|
|
18704
20056
|
text: string;
|
|
18705
20057
|
title?: string | null | undefined;
|
|
20058
|
+
} | {
|
|
20059
|
+
type: "forge_change_request";
|
|
20060
|
+
mimeType: "application/paseo-forge-change-request";
|
|
20061
|
+
forge: string;
|
|
20062
|
+
number: number;
|
|
20063
|
+
title: string;
|
|
20064
|
+
url: string;
|
|
20065
|
+
body?: string | null | undefined;
|
|
20066
|
+
projectPath?: string | undefined;
|
|
20067
|
+
baseRefName?: string | null | undefined;
|
|
20068
|
+
headRefName?: string | null | undefined;
|
|
20069
|
+
} | {
|
|
20070
|
+
type: "forge_issue";
|
|
20071
|
+
mimeType: "application/paseo-forge-issue";
|
|
20072
|
+
forge: string;
|
|
20073
|
+
number: number;
|
|
20074
|
+
title: string;
|
|
20075
|
+
url: string;
|
|
20076
|
+
body?: string | null | undefined;
|
|
20077
|
+
projectPath?: string | undefined;
|
|
18706
20078
|
} | {
|
|
18707
20079
|
type: "github_pr";
|
|
18708
20080
|
mimeType: "application/github-pr";
|
|
@@ -18762,6 +20134,26 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18762
20134
|
mimeType: "text/plain";
|
|
18763
20135
|
text: string;
|
|
18764
20136
|
title?: string | null | undefined;
|
|
20137
|
+
} | {
|
|
20138
|
+
type: "forge_change_request";
|
|
20139
|
+
mimeType: "application/paseo-forge-change-request";
|
|
20140
|
+
forge: string;
|
|
20141
|
+
number: number;
|
|
20142
|
+
title: string;
|
|
20143
|
+
url: string;
|
|
20144
|
+
body?: string | null | undefined;
|
|
20145
|
+
projectPath?: string | undefined;
|
|
20146
|
+
baseRefName?: string | null | undefined;
|
|
20147
|
+
headRefName?: string | null | undefined;
|
|
20148
|
+
} | {
|
|
20149
|
+
type: "forge_issue";
|
|
20150
|
+
mimeType: "application/paseo-forge-issue";
|
|
20151
|
+
forge: string;
|
|
20152
|
+
number: number;
|
|
20153
|
+
title: string;
|
|
20154
|
+
url: string;
|
|
20155
|
+
body?: string | null | undefined;
|
|
20156
|
+
projectPath?: string | undefined;
|
|
18765
20157
|
} | {
|
|
18766
20158
|
type: "github_pr";
|
|
18767
20159
|
mimeType: "application/github-pr";
|
|
@@ -18819,6 +20211,12 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18819
20211
|
"branch-off": "branch-off";
|
|
18820
20212
|
checkout: "checkout";
|
|
18821
20213
|
}>>;
|
|
20214
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
20215
|
+
kind: z.ZodLiteral<"change_request">;
|
|
20216
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20217
|
+
number: z.ZodNumber;
|
|
20218
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
20219
|
+
}, z.core.$strip>>;
|
|
18822
20220
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
18823
20221
|
requestId: z.ZodString;
|
|
18824
20222
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -18881,6 +20279,26 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18881
20279
|
mimeType: "text/plain";
|
|
18882
20280
|
text: string;
|
|
18883
20281
|
title?: string | null | undefined;
|
|
20282
|
+
} | {
|
|
20283
|
+
type: "forge_change_request";
|
|
20284
|
+
mimeType: "application/paseo-forge-change-request";
|
|
20285
|
+
forge: string;
|
|
20286
|
+
number: number;
|
|
20287
|
+
title: string;
|
|
20288
|
+
url: string;
|
|
20289
|
+
body?: string | null | undefined;
|
|
20290
|
+
projectPath?: string | undefined;
|
|
20291
|
+
baseRefName?: string | null | undefined;
|
|
20292
|
+
headRefName?: string | null | undefined;
|
|
20293
|
+
} | {
|
|
20294
|
+
type: "forge_issue";
|
|
20295
|
+
mimeType: "application/paseo-forge-issue";
|
|
20296
|
+
forge: string;
|
|
20297
|
+
number: number;
|
|
20298
|
+
title: string;
|
|
20299
|
+
url: string;
|
|
20300
|
+
body?: string | null | undefined;
|
|
20301
|
+
projectPath?: string | undefined;
|
|
18884
20302
|
} | {
|
|
18885
20303
|
type: "github_pr";
|
|
18886
20304
|
mimeType: "application/github-pr";
|
|
@@ -18947,6 +20365,12 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18947
20365
|
}>>;
|
|
18948
20366
|
refName: z.ZodOptional<z.ZodString>;
|
|
18949
20367
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
20368
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
20369
|
+
kind: z.ZodLiteral<"change_request">;
|
|
20370
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20371
|
+
number: z.ZodNumber;
|
|
20372
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
20373
|
+
}, z.core.$strip>>;
|
|
18950
20374
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
18951
20375
|
worktreeSlug: z.ZodOptional<z.ZodString>;
|
|
18952
20376
|
}, z.core.$strip>], "kind">;
|
|
@@ -19825,6 +21249,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
19825
21249
|
}, z.core.$strip>>>;
|
|
19826
21250
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19827
21251
|
}, z.core.$strip>>>;
|
|
21252
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
19828
21253
|
project: z.ZodOptional<z.ZodObject<{
|
|
19829
21254
|
projectKey: z.ZodString;
|
|
19830
21255
|
projectName: z.ZodString;
|
|
@@ -19978,6 +21403,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
19978
21403
|
} | null | undefined;
|
|
19979
21404
|
refreshedAt?: string | null | undefined;
|
|
19980
21405
|
} | null | undefined;
|
|
21406
|
+
forge?: string | undefined;
|
|
19981
21407
|
project?: {
|
|
19982
21408
|
projectKey: string;
|
|
19983
21409
|
projectName: string;
|
|
@@ -20083,6 +21509,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
20083
21509
|
} | null | undefined;
|
|
20084
21510
|
refreshedAt?: string | null | undefined;
|
|
20085
21511
|
} | null | undefined;
|
|
21512
|
+
forge?: string | undefined;
|
|
20086
21513
|
project?: {
|
|
20087
21514
|
projectKey: string;
|
|
20088
21515
|
projectName: string;
|
|
@@ -20800,6 +22227,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
20800
22227
|
}, z.core.$strip>>>;
|
|
20801
22228
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20802
22229
|
}, z.core.$strip>>>;
|
|
22230
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
20803
22231
|
project: z.ZodOptional<z.ZodObject<{
|
|
20804
22232
|
projectKey: z.ZodString;
|
|
20805
22233
|
projectName: z.ZodString;
|
|
@@ -20953,6 +22381,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
20953
22381
|
} | null | undefined;
|
|
20954
22382
|
refreshedAt?: string | null | undefined;
|
|
20955
22383
|
} | null | undefined;
|
|
22384
|
+
forge?: string | undefined;
|
|
20956
22385
|
project?: {
|
|
20957
22386
|
projectKey: string;
|
|
20958
22387
|
projectName: string;
|
|
@@ -21058,6 +22487,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21058
22487
|
} | null | undefined;
|
|
21059
22488
|
refreshedAt?: string | null | undefined;
|
|
21060
22489
|
} | null | undefined;
|
|
22490
|
+
forge?: string | undefined;
|
|
21061
22491
|
project?: {
|
|
21062
22492
|
projectKey: string;
|
|
21063
22493
|
projectName: string;
|
|
@@ -21267,6 +22697,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21267
22697
|
}, z.core.$strip>>>;
|
|
21268
22698
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21269
22699
|
}, z.core.$strip>>>;
|
|
22700
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
21270
22701
|
project: z.ZodOptional<z.ZodObject<{
|
|
21271
22702
|
projectKey: z.ZodString;
|
|
21272
22703
|
projectName: z.ZodString;
|
|
@@ -21420,6 +22851,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21420
22851
|
} | null | undefined;
|
|
21421
22852
|
refreshedAt?: string | null | undefined;
|
|
21422
22853
|
} | null | undefined;
|
|
22854
|
+
forge?: string | undefined;
|
|
21423
22855
|
project?: {
|
|
21424
22856
|
projectKey: string;
|
|
21425
22857
|
projectName: string;
|
|
@@ -21525,6 +22957,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21525
22957
|
} | null | undefined;
|
|
21526
22958
|
refreshedAt?: string | null | undefined;
|
|
21527
22959
|
} | null | undefined;
|
|
22960
|
+
forge?: string | undefined;
|
|
21528
22961
|
project?: {
|
|
21529
22962
|
projectKey: string;
|
|
21530
22963
|
projectName: string;
|
|
@@ -22327,6 +23760,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22327
23760
|
}, z.core.$strip>>>;
|
|
22328
23761
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22329
23762
|
}, z.core.$strip>>>;
|
|
23763
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
22330
23764
|
project: z.ZodOptional<z.ZodObject<{
|
|
22331
23765
|
projectKey: z.ZodString;
|
|
22332
23766
|
projectName: z.ZodString;
|
|
@@ -22480,6 +23914,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22480
23914
|
} | null | undefined;
|
|
22481
23915
|
refreshedAt?: string | null | undefined;
|
|
22482
23916
|
} | null | undefined;
|
|
23917
|
+
forge?: string | undefined;
|
|
22483
23918
|
project?: {
|
|
22484
23919
|
projectKey: string;
|
|
22485
23920
|
projectName: string;
|
|
@@ -22585,6 +24020,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22585
24020
|
} | null | undefined;
|
|
22586
24021
|
refreshedAt?: string | null | undefined;
|
|
22587
24022
|
} | null | undefined;
|
|
24023
|
+
forge?: string | undefined;
|
|
22588
24024
|
project?: {
|
|
22589
24025
|
projectKey: string;
|
|
22590
24026
|
projectName: string;
|
|
@@ -22977,6 +24413,31 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22977
24413
|
pinnedAt: z.ZodNullable<z.ZodString>;
|
|
22978
24414
|
error: z.ZodNullable<z.ZodString>;
|
|
22979
24415
|
}, z.core.$strip>;
|
|
24416
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24417
|
+
type: z.ZodLiteral<"workspace.recovery.inspect.response">;
|
|
24418
|
+
payload: z.ZodObject<{
|
|
24419
|
+
requestId: z.ZodString;
|
|
24420
|
+
state: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
24421
|
+
kind: z.ZodLiteral<"recoverable">;
|
|
24422
|
+
workspaceId: z.ZodString;
|
|
24423
|
+
workspaceName: z.ZodString;
|
|
24424
|
+
action: z.ZodString;
|
|
24425
|
+
branch: z.ZodNullable<z.ZodString>;
|
|
24426
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24427
|
+
kind: z.ZodLiteral<"unavailable">;
|
|
24428
|
+
workspaceId: z.ZodString;
|
|
24429
|
+
reason: z.ZodString;
|
|
24430
|
+
message: z.ZodString;
|
|
24431
|
+
}, z.core.$strip>], "kind">;
|
|
24432
|
+
}, z.core.$strip>;
|
|
24433
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24434
|
+
type: z.ZodLiteral<"workspace.recovery.restore.response">;
|
|
24435
|
+
payload: z.ZodObject<{
|
|
24436
|
+
requestId: z.ZodString;
|
|
24437
|
+
workspaceId: z.ZodString;
|
|
24438
|
+
accepted: z.ZodBoolean;
|
|
24439
|
+
error: z.ZodNullable<z.ZodString>;
|
|
24440
|
+
}, z.core.$strip>;
|
|
22980
24441
|
}, z.core.$strip>, z.ZodObject<{
|
|
22981
24442
|
type: z.ZodLiteral<"wait_for_finish_response">;
|
|
22982
24443
|
payload: z.ZodObject<{
|
|
@@ -23254,6 +24715,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23254
24715
|
prStatus: z.ZodOptional<z.ZodObject<{
|
|
23255
24716
|
cwd: z.ZodString;
|
|
23256
24717
|
status: z.ZodNullable<z.ZodObject<{
|
|
24718
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24719
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
23257
24720
|
number: z.ZodOptional<z.ZodNumber>;
|
|
23258
24721
|
url: z.ZodString;
|
|
23259
24722
|
title: z.ZodString;
|
|
@@ -23301,8 +24764,11 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23301
24764
|
isMergeQueueEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
23302
24765
|
isInMergeQueue: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
23303
24766
|
}, z.core.$strip>>;
|
|
24767
|
+
forgeSpecific: z.ZodOptional<z.ZodUnknown>;
|
|
23304
24768
|
}, z.core.$strip>>;
|
|
23305
24769
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
24770
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
24771
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23306
24772
|
error: z.ZodNullable<z.ZodObject<{
|
|
23307
24773
|
code: z.ZodEnum<{
|
|
23308
24774
|
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
@@ -23537,6 +25003,23 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23537
25003
|
}, z.core.$strip>>;
|
|
23538
25004
|
requestId: z.ZodString;
|
|
23539
25005
|
}, z.core.$strip>;
|
|
25006
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25007
|
+
type: z.ZodLiteral<"checkout.forge.set_auto_merge.response">;
|
|
25008
|
+
payload: z.ZodObject<{
|
|
25009
|
+
cwd: z.ZodString;
|
|
25010
|
+
enabled: z.ZodBoolean;
|
|
25011
|
+
success: z.ZodBoolean;
|
|
25012
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
25013
|
+
code: z.ZodEnum<{
|
|
25014
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
25015
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
25016
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
25017
|
+
UNKNOWN: "UNKNOWN";
|
|
25018
|
+
}>;
|
|
25019
|
+
message: z.ZodString;
|
|
25020
|
+
}, z.core.$strip>>;
|
|
25021
|
+
requestId: z.ZodString;
|
|
25022
|
+
}, z.core.$strip>;
|
|
23540
25023
|
}, z.core.$strip>, z.ZodObject<{
|
|
23541
25024
|
type: z.ZodLiteral<"checkout.github.set_auto_merge.response">;
|
|
23542
25025
|
payload: z.ZodObject<{
|
|
@@ -23554,6 +25037,160 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23554
25037
|
}, z.core.$strip>>;
|
|
23555
25038
|
requestId: z.ZodString;
|
|
23556
25039
|
}, z.core.$strip>;
|
|
25040
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25041
|
+
type: z.ZodLiteral<"checkout.commits.list.response">;
|
|
25042
|
+
payload: z.ZodObject<{
|
|
25043
|
+
cwd: z.ZodString;
|
|
25044
|
+
baseRef: z.ZodNullable<z.ZodString>;
|
|
25045
|
+
commits: z.ZodArray<z.ZodObject<{
|
|
25046
|
+
sha: z.ZodString;
|
|
25047
|
+
shortSha: z.ZodString;
|
|
25048
|
+
subject: z.ZodString;
|
|
25049
|
+
authorName: z.ZodString;
|
|
25050
|
+
authorDate: z.ZodString;
|
|
25051
|
+
isOnRemote: z.ZodBoolean;
|
|
25052
|
+
files: z.ZodArray<z.ZodObject<{
|
|
25053
|
+
path: z.ZodString;
|
|
25054
|
+
additions: z.ZodNumber;
|
|
25055
|
+
deletions: z.ZodNumber;
|
|
25056
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
25057
|
+
added: "added";
|
|
25058
|
+
modified: "modified";
|
|
25059
|
+
deleted: "deleted";
|
|
25060
|
+
renamed: "renamed";
|
|
25061
|
+
}>>;
|
|
25062
|
+
}, z.core.$strip>>;
|
|
25063
|
+
}, z.core.$strip>>;
|
|
25064
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
25065
|
+
code: z.ZodEnum<{
|
|
25066
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
25067
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
25068
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
25069
|
+
UNKNOWN: "UNKNOWN";
|
|
25070
|
+
}>;
|
|
25071
|
+
message: z.ZodString;
|
|
25072
|
+
}, z.core.$strip>>;
|
|
25073
|
+
requestId: z.ZodString;
|
|
25074
|
+
}, z.core.$strip>;
|
|
25075
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25076
|
+
type: z.ZodLiteral<"checkout.commits.file_diff.response">;
|
|
25077
|
+
payload: z.ZodObject<{
|
|
25078
|
+
cwd: z.ZodString;
|
|
25079
|
+
sha: z.ZodString;
|
|
25080
|
+
path: z.ZodString;
|
|
25081
|
+
file: z.ZodNullable<z.ZodObject<{
|
|
25082
|
+
path: z.ZodString;
|
|
25083
|
+
isNew: z.ZodBoolean;
|
|
25084
|
+
isDeleted: z.ZodBoolean;
|
|
25085
|
+
additions: z.ZodNumber;
|
|
25086
|
+
deletions: z.ZodNumber;
|
|
25087
|
+
hunks: z.ZodArray<z.ZodObject<{
|
|
25088
|
+
oldStart: z.ZodNumber;
|
|
25089
|
+
oldCount: z.ZodNumber;
|
|
25090
|
+
newStart: z.ZodNumber;
|
|
25091
|
+
newCount: z.ZodNumber;
|
|
25092
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
25093
|
+
type: z.ZodEnum<{
|
|
25094
|
+
context: "context";
|
|
25095
|
+
add: "add";
|
|
25096
|
+
remove: "remove";
|
|
25097
|
+
header: "header";
|
|
25098
|
+
}>;
|
|
25099
|
+
content: z.ZodString;
|
|
25100
|
+
tokens: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25101
|
+
text: z.ZodString;
|
|
25102
|
+
style: z.ZodNullable<z.ZodString>;
|
|
25103
|
+
}, z.core.$strip>>>;
|
|
25104
|
+
}, z.core.$strip>>;
|
|
25105
|
+
}, z.core.$strip>>;
|
|
25106
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
25107
|
+
ok: "ok";
|
|
25108
|
+
too_large: "too_large";
|
|
25109
|
+
binary: "binary";
|
|
25110
|
+
}>>;
|
|
25111
|
+
}, z.core.$strip>>;
|
|
25112
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
25113
|
+
code: z.ZodEnum<{
|
|
25114
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
25115
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
25116
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
25117
|
+
UNKNOWN: "UNKNOWN";
|
|
25118
|
+
}>;
|
|
25119
|
+
message: z.ZodString;
|
|
25120
|
+
}, z.core.$strip>>;
|
|
25121
|
+
requestId: z.ZodString;
|
|
25122
|
+
}, z.core.$strip>;
|
|
25123
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25124
|
+
type: z.ZodLiteral<"checkout.forge.get_check_details.response">;
|
|
25125
|
+
payload: z.ZodObject<{
|
|
25126
|
+
cwd: z.ZodString;
|
|
25127
|
+
success: z.ZodBoolean;
|
|
25128
|
+
details: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
25129
|
+
checkRunId: z.ZodNumber;
|
|
25130
|
+
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
25131
|
+
name: z.ZodString;
|
|
25132
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25133
|
+
conclusion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25134
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25135
|
+
detailsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25136
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
25137
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25138
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25139
|
+
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25140
|
+
}, z.core.$strip>>>;
|
|
25141
|
+
annotations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25142
|
+
path: z.ZodOptional<z.ZodString>;
|
|
25143
|
+
startLine: z.ZodOptional<z.ZodNumber>;
|
|
25144
|
+
endLine: z.ZodOptional<z.ZodNumber>;
|
|
25145
|
+
annotationLevel: z.ZodOptional<z.ZodString>;
|
|
25146
|
+
message: z.ZodOptional<z.ZodString>;
|
|
25147
|
+
title: z.ZodOptional<z.ZodString>;
|
|
25148
|
+
rawDetails: z.ZodOptional<z.ZodString>;
|
|
25149
|
+
}, z.core.$strip>>>>;
|
|
25150
|
+
failedJobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25151
|
+
jobId: z.ZodNumber;
|
|
25152
|
+
name: z.ZodString;
|
|
25153
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25154
|
+
conclusion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25155
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25156
|
+
logTail: z.ZodOptional<z.ZodString>;
|
|
25157
|
+
logTruncated: z.ZodOptional<z.ZodBoolean>;
|
|
25158
|
+
}, z.core.$strip>>>>;
|
|
25159
|
+
truncated: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
25160
|
+
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
25161
|
+
id: z.ZodNumber;
|
|
25162
|
+
status: z.ZodString;
|
|
25163
|
+
rawStatus: z.ZodString;
|
|
25164
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25165
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25166
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25167
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25168
|
+
name: z.ZodString;
|
|
25169
|
+
status: z.ZodString;
|
|
25170
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25171
|
+
id: z.ZodNumber;
|
|
25172
|
+
name: z.ZodString;
|
|
25173
|
+
stage: z.ZodString;
|
|
25174
|
+
status: z.ZodString;
|
|
25175
|
+
rawStatus: z.ZodString;
|
|
25176
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25177
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
25178
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
25179
|
+
}, z.core.$strip>>>>;
|
|
25180
|
+
}, z.core.$strip>>>>;
|
|
25181
|
+
}, z.core.$strip>>>;
|
|
25182
|
+
}, z.core.$strip>>>>;
|
|
25183
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
25184
|
+
code: z.ZodEnum<{
|
|
25185
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
25186
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
25187
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
25188
|
+
UNKNOWN: "UNKNOWN";
|
|
25189
|
+
}>;
|
|
25190
|
+
message: z.ZodString;
|
|
25191
|
+
}, z.core.$strip>>;
|
|
25192
|
+
requestId: z.ZodString;
|
|
25193
|
+
}, z.core.$strip>;
|
|
23557
25194
|
}, z.core.$strip>, z.ZodObject<{
|
|
23558
25195
|
type: z.ZodLiteral<"checkout.github.get_check_details.response">;
|
|
23559
25196
|
payload: z.ZodObject<{
|
|
@@ -23591,6 +25228,28 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23591
25228
|
logTruncated: z.ZodOptional<z.ZodBoolean>;
|
|
23592
25229
|
}, z.core.$strip>>>>;
|
|
23593
25230
|
truncated: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
25231
|
+
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
25232
|
+
id: z.ZodNumber;
|
|
25233
|
+
status: z.ZodString;
|
|
25234
|
+
rawStatus: z.ZodString;
|
|
25235
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25236
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25237
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25238
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25239
|
+
name: z.ZodString;
|
|
25240
|
+
status: z.ZodString;
|
|
25241
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25242
|
+
id: z.ZodNumber;
|
|
25243
|
+
name: z.ZodString;
|
|
25244
|
+
stage: z.ZodString;
|
|
25245
|
+
status: z.ZodString;
|
|
25246
|
+
rawStatus: z.ZodString;
|
|
25247
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25248
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
25249
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
25250
|
+
}, z.core.$strip>>>>;
|
|
25251
|
+
}, z.core.$strip>>>>;
|
|
25252
|
+
}, z.core.$strip>>>;
|
|
23594
25253
|
}, z.core.$strip>>>>;
|
|
23595
25254
|
error: z.ZodNullable<z.ZodObject<{
|
|
23596
25255
|
code: z.ZodEnum<{
|
|
@@ -23608,6 +25267,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23608
25267
|
payload: z.ZodObject<{
|
|
23609
25268
|
cwd: z.ZodString;
|
|
23610
25269
|
status: z.ZodNullable<z.ZodObject<{
|
|
25270
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25271
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
23611
25272
|
number: z.ZodOptional<z.ZodNumber>;
|
|
23612
25273
|
url: z.ZodString;
|
|
23613
25274
|
title: z.ZodString;
|
|
@@ -23655,8 +25316,11 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23655
25316
|
isMergeQueueEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
23656
25317
|
isInMergeQueue: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
23657
25318
|
}, z.core.$strip>>;
|
|
25319
|
+
forgeSpecific: z.ZodOptional<z.ZodUnknown>;
|
|
23658
25320
|
}, z.core.$strip>>;
|
|
23659
25321
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
25322
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
25323
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23660
25324
|
error: z.ZodNullable<z.ZodObject<{
|
|
23661
25325
|
code: z.ZodEnum<{
|
|
23662
25326
|
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
@@ -23697,6 +25361,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23697
25361
|
createdAt: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
23698
25362
|
url: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23699
25363
|
reviewId: z.ZodOptional<z.ZodString>;
|
|
25364
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
25365
|
+
threadIsResolved: z.ZodOptional<z.ZodBoolean>;
|
|
23700
25366
|
location: z.ZodOptional<z.ZodObject<{
|
|
23701
25367
|
path: z.ZodString;
|
|
23702
25368
|
line: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23719,6 +25385,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23719
25385
|
}, z.core.$strip>], "kind">>>>>;
|
|
23720
25386
|
requestId: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23721
25387
|
githubFeaturesEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
25388
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
23722
25389
|
}, z.core.$strip>>>;
|
|
23723
25390
|
}, z.core.$strip>, z.ZodObject<{
|
|
23724
25391
|
type: z.ZodLiteral<"checkout_switch_branch_response">;
|
|
@@ -23833,25 +25500,21 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23833
25500
|
error: z.ZodNullable<z.ZodString>;
|
|
23834
25501
|
requestId: z.ZodString;
|
|
23835
25502
|
}, z.core.$strip>;
|
|
25503
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25504
|
+
type: z.ZodLiteral<"forge.search.response">;
|
|
25505
|
+
payload: z.ZodObject<{
|
|
25506
|
+
items: z.ZodArray<z.ZodUnknown>;
|
|
25507
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
25508
|
+
error: z.ZodNullable<z.ZodString>;
|
|
25509
|
+
requestId: z.ZodString;
|
|
25510
|
+
}, z.core.$strip>;
|
|
23836
25511
|
}, z.core.$strip>, z.ZodObject<{
|
|
23837
25512
|
type: z.ZodLiteral<"github_search_response">;
|
|
23838
25513
|
payload: z.ZodObject<{
|
|
23839
|
-
items: z.ZodArray<z.
|
|
23840
|
-
|
|
23841
|
-
|
|
23842
|
-
|
|
23843
|
-
}>;
|
|
23844
|
-
number: z.ZodNumber;
|
|
23845
|
-
title: z.ZodString;
|
|
23846
|
-
url: z.ZodString;
|
|
23847
|
-
state: z.ZodString;
|
|
23848
|
-
body: z.ZodNullable<z.ZodString>;
|
|
23849
|
-
labels: z.ZodArray<z.ZodString>;
|
|
23850
|
-
baseRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23851
|
-
headRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23852
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23853
|
-
}, z.core.$strip>>;
|
|
23854
|
-
githubFeaturesEnabled: z.ZodBoolean;
|
|
25514
|
+
items: z.ZodArray<z.ZodUnknown>;
|
|
25515
|
+
featuresEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
25516
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
25517
|
+
githubFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
23855
25518
|
error: z.ZodNullable<z.ZodString>;
|
|
23856
25519
|
requestId: z.ZodString;
|
|
23857
25520
|
}, z.core.$strip>;
|
|
@@ -24026,6 +25689,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24026
25689
|
}, z.core.$strip>>>;
|
|
24027
25690
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24028
25691
|
}, z.core.$strip>>>;
|
|
25692
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
24029
25693
|
project: z.ZodOptional<z.ZodObject<{
|
|
24030
25694
|
projectKey: z.ZodString;
|
|
24031
25695
|
projectName: z.ZodString;
|
|
@@ -24179,6 +25843,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24179
25843
|
} | null | undefined;
|
|
24180
25844
|
refreshedAt?: string | null | undefined;
|
|
24181
25845
|
} | null | undefined;
|
|
25846
|
+
forge?: string | undefined;
|
|
24182
25847
|
project?: {
|
|
24183
25848
|
projectKey: string;
|
|
24184
25849
|
projectName: string;
|
|
@@ -24284,6 +25949,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24284
25949
|
} | null | undefined;
|
|
24285
25950
|
refreshedAt?: string | null | undefined;
|
|
24286
25951
|
} | null | undefined;
|
|
25952
|
+
forge?: string | undefined;
|
|
24287
25953
|
project?: {
|
|
24288
25954
|
projectKey: string;
|
|
24289
25955
|
projectName: string;
|
|
@@ -24468,6 +26134,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24468
26134
|
provider: z.ZodString;
|
|
24469
26135
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
24470
26136
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
26137
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
26138
|
+
builtin: "builtin";
|
|
26139
|
+
custom: "custom";
|
|
26140
|
+
}>>;
|
|
24471
26141
|
error: z.ZodOptional<z.ZodString>;
|
|
24472
26142
|
models: z.ZodOptional<z.ZodArray<z.ZodType<AgentModelDefinition, unknown, z.core.$ZodTypeInternals<AgentModelDefinition, unknown>>>>;
|
|
24473
26143
|
modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, unknown, z.core.$ZodTypeInternals<AgentMode, unknown>>>>;
|
|
@@ -24487,6 +26157,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24487
26157
|
provider: z.ZodString;
|
|
24488
26158
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
24489
26159
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
26160
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
26161
|
+
builtin: "builtin";
|
|
26162
|
+
custom: "custom";
|
|
26163
|
+
}>>;
|
|
24490
26164
|
error: z.ZodOptional<z.ZodString>;
|
|
24491
26165
|
models: z.ZodOptional<z.ZodArray<z.ZodType<AgentModelDefinition, unknown, z.core.$ZodTypeInternals<AgentModelDefinition, unknown>>>>;
|
|
24492
26166
|
modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, unknown, z.core.$ZodTypeInternals<AgentMode, unknown>>>>;
|
|
@@ -26145,6 +27819,14 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26145
27819
|
workspaceId: z.ZodString;
|
|
26146
27820
|
pinned: z.ZodBoolean;
|
|
26147
27821
|
requestId: z.ZodString;
|
|
27822
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27823
|
+
type: z.ZodLiteral<"workspace.recovery.inspect.request">;
|
|
27824
|
+
workspaceId: z.ZodString;
|
|
27825
|
+
requestId: z.ZodString;
|
|
27826
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27827
|
+
type: z.ZodLiteral<"workspace.recovery.restore.request">;
|
|
27828
|
+
workspaceId: z.ZodString;
|
|
27829
|
+
requestId: z.ZodString;
|
|
26148
27830
|
}, z.core.$strip>, z.ZodObject<{
|
|
26149
27831
|
type: z.ZodLiteral<"set_voice_mode">;
|
|
26150
27832
|
enabled: z.ZodBoolean;
|
|
@@ -26166,6 +27848,26 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26166
27848
|
mimeType: "text/plain";
|
|
26167
27849
|
text: string;
|
|
26168
27850
|
title?: string | null | undefined;
|
|
27851
|
+
} | {
|
|
27852
|
+
type: "forge_change_request";
|
|
27853
|
+
mimeType: "application/paseo-forge-change-request";
|
|
27854
|
+
forge: string;
|
|
27855
|
+
number: number;
|
|
27856
|
+
title: string;
|
|
27857
|
+
url: string;
|
|
27858
|
+
body?: string | null | undefined;
|
|
27859
|
+
projectPath?: string | undefined;
|
|
27860
|
+
baseRefName?: string | null | undefined;
|
|
27861
|
+
headRefName?: string | null | undefined;
|
|
27862
|
+
} | {
|
|
27863
|
+
type: "forge_issue";
|
|
27864
|
+
mimeType: "application/paseo-forge-issue";
|
|
27865
|
+
forge: string;
|
|
27866
|
+
number: number;
|
|
27867
|
+
title: string;
|
|
27868
|
+
url: string;
|
|
27869
|
+
body?: string | null | undefined;
|
|
27870
|
+
projectPath?: string | undefined;
|
|
26169
27871
|
} | {
|
|
26170
27872
|
type: "github_pr";
|
|
26171
27873
|
mimeType: "application/github-pr";
|
|
@@ -26253,6 +27955,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26253
27955
|
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
26254
27956
|
}, z.core.$loose>>>>;
|
|
26255
27957
|
}, z.core.$loose>>>>;
|
|
27958
|
+
removeProviders: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
26256
27959
|
metadataGeneration: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
26257
27960
|
providers: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
26258
27961
|
provider: z.ZodString;
|
|
@@ -26379,6 +28082,26 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26379
28082
|
mimeType: "text/plain";
|
|
26380
28083
|
text: string;
|
|
26381
28084
|
title?: string | null | undefined;
|
|
28085
|
+
} | {
|
|
28086
|
+
type: "forge_change_request";
|
|
28087
|
+
mimeType: "application/paseo-forge-change-request";
|
|
28088
|
+
forge: string;
|
|
28089
|
+
number: number;
|
|
28090
|
+
title: string;
|
|
28091
|
+
url: string;
|
|
28092
|
+
body?: string | null | undefined;
|
|
28093
|
+
projectPath?: string | undefined;
|
|
28094
|
+
baseRefName?: string | null | undefined;
|
|
28095
|
+
headRefName?: string | null | undefined;
|
|
28096
|
+
} | {
|
|
28097
|
+
type: "forge_issue";
|
|
28098
|
+
mimeType: "application/paseo-forge-issue";
|
|
28099
|
+
forge: string;
|
|
28100
|
+
number: number;
|
|
28101
|
+
title: string;
|
|
28102
|
+
url: string;
|
|
28103
|
+
body?: string | null | undefined;
|
|
28104
|
+
projectPath?: string | undefined;
|
|
26382
28105
|
} | {
|
|
26383
28106
|
type: "github_pr";
|
|
26384
28107
|
mimeType: "application/github-pr";
|
|
@@ -26441,6 +28164,12 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26441
28164
|
"branch-off": "branch-off";
|
|
26442
28165
|
checkout: "checkout";
|
|
26443
28166
|
}>>;
|
|
28167
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
28168
|
+
kind: z.ZodLiteral<"change_request">;
|
|
28169
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28170
|
+
number: z.ZodNumber;
|
|
28171
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
28172
|
+
}, z.core.$strip>>;
|
|
26444
28173
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
26445
28174
|
}, z.core.$strip>>;
|
|
26446
28175
|
worktree: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -26543,6 +28272,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26543
28272
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
26544
28273
|
providerHandleId: z.ZodOptional<z.ZodString>;
|
|
26545
28274
|
cwd: z.ZodOptional<z.ZodString>;
|
|
28275
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
26546
28276
|
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
26547
28277
|
requestId: z.ZodString;
|
|
26548
28278
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -26719,6 +28449,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26719
28449
|
rebase: "rebase";
|
|
26720
28450
|
}>;
|
|
26721
28451
|
requestId: z.ZodString;
|
|
28452
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28453
|
+
type: z.ZodLiteral<"checkout.forge.set_auto_merge.request">;
|
|
28454
|
+
cwd: z.ZodString;
|
|
28455
|
+
enabled: z.ZodBoolean;
|
|
28456
|
+
mergeMethod: z.ZodOptional<z.ZodEnum<{
|
|
28457
|
+
merge: "merge";
|
|
28458
|
+
squash: "squash";
|
|
28459
|
+
rebase: "rebase";
|
|
28460
|
+
}>>;
|
|
28461
|
+
requestId: z.ZodString;
|
|
26722
28462
|
}, z.core.$strip>, z.ZodObject<{
|
|
26723
28463
|
type: z.ZodLiteral<"checkout.github.set_auto_merge.request">;
|
|
26724
28464
|
cwd: z.ZodString;
|
|
@@ -26730,13 +28470,33 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26730
28470
|
}>>;
|
|
26731
28471
|
requestId: z.ZodString;
|
|
26732
28472
|
}, z.core.$strip>, z.ZodObject<{
|
|
26733
|
-
type: z.ZodLiteral<"checkout.
|
|
28473
|
+
type: z.ZodLiteral<"checkout.commits.list.request">;
|
|
26734
28474
|
cwd: z.ZodString;
|
|
26735
|
-
|
|
26736
|
-
|
|
26737
|
-
|
|
28475
|
+
requestId: z.ZodString;
|
|
28476
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28477
|
+
type: z.ZodLiteral<"checkout.commits.file_diff.request">;
|
|
28478
|
+
cwd: z.ZodString;
|
|
28479
|
+
sha: z.ZodString;
|
|
28480
|
+
path: z.ZodString;
|
|
28481
|
+
requestId: z.ZodString;
|
|
28482
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28483
|
+
cwd: z.ZodString;
|
|
28484
|
+
repoOwner: z.ZodOptional<z.ZodString>;
|
|
28485
|
+
repoName: z.ZodOptional<z.ZodString>;
|
|
28486
|
+
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
26738
28487
|
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
28488
|
+
changeRequestNumber: z.ZodOptional<z.ZodNumber>;
|
|
26739
28489
|
requestId: z.ZodString;
|
|
28490
|
+
type: z.ZodLiteral<"checkout.forge.get_check_details.request">;
|
|
28491
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28492
|
+
cwd: z.ZodString;
|
|
28493
|
+
repoOwner: z.ZodOptional<z.ZodString>;
|
|
28494
|
+
repoName: z.ZodOptional<z.ZodString>;
|
|
28495
|
+
checkRunId: z.ZodOptional<z.ZodNumber>;
|
|
28496
|
+
workflowRunId: z.ZodOptional<z.ZodNumber>;
|
|
28497
|
+
changeRequestNumber: z.ZodOptional<z.ZodNumber>;
|
|
28498
|
+
requestId: z.ZodString;
|
|
28499
|
+
type: z.ZodLiteral<"checkout.github.get_check_details.request">;
|
|
26740
28500
|
}, z.core.$strip>, z.ZodObject<{
|
|
26741
28501
|
type: z.ZodLiteral<"checkout_pr_status_request">;
|
|
26742
28502
|
cwd: z.ZodString;
|
|
@@ -26784,12 +28544,28 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26784
28544
|
query: z.ZodOptional<z.ZodString>;
|
|
26785
28545
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
26786
28546
|
requestId: z.ZodString;
|
|
28547
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28548
|
+
type: z.ZodLiteral<"forge.search.request">;
|
|
28549
|
+
cwd: z.ZodString;
|
|
28550
|
+
query: z.ZodString;
|
|
28551
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
28552
|
+
kinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
28553
|
+
change_request: "change_request";
|
|
28554
|
+
issue: "issue";
|
|
28555
|
+
pr: "pr";
|
|
28556
|
+
"github-issue": "github-issue";
|
|
28557
|
+
"github-pr": "github-pr";
|
|
28558
|
+
}>>>;
|
|
28559
|
+
requestId: z.ZodString;
|
|
26787
28560
|
}, z.core.$strip>, z.ZodObject<{
|
|
26788
28561
|
type: z.ZodLiteral<"github_search_request">;
|
|
26789
28562
|
cwd: z.ZodString;
|
|
26790
28563
|
query: z.ZodString;
|
|
26791
28564
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
26792
28565
|
kinds: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
28566
|
+
change_request: "change_request";
|
|
28567
|
+
issue: "issue";
|
|
28568
|
+
pr: "pr";
|
|
26793
28569
|
"github-issue": "github-issue";
|
|
26794
28570
|
"github-pr": "github-pr";
|
|
26795
28571
|
}>>>;
|
|
@@ -26835,6 +28611,26 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26835
28611
|
mimeType: "text/plain";
|
|
26836
28612
|
text: string;
|
|
26837
28613
|
title?: string | null | undefined;
|
|
28614
|
+
} | {
|
|
28615
|
+
type: "forge_change_request";
|
|
28616
|
+
mimeType: "application/paseo-forge-change-request";
|
|
28617
|
+
forge: string;
|
|
28618
|
+
number: number;
|
|
28619
|
+
title: string;
|
|
28620
|
+
url: string;
|
|
28621
|
+
body?: string | null | undefined;
|
|
28622
|
+
projectPath?: string | undefined;
|
|
28623
|
+
baseRefName?: string | null | undefined;
|
|
28624
|
+
headRefName?: string | null | undefined;
|
|
28625
|
+
} | {
|
|
28626
|
+
type: "forge_issue";
|
|
28627
|
+
mimeType: "application/paseo-forge-issue";
|
|
28628
|
+
forge: string;
|
|
28629
|
+
number: number;
|
|
28630
|
+
title: string;
|
|
28631
|
+
url: string;
|
|
28632
|
+
body?: string | null | undefined;
|
|
28633
|
+
projectPath?: string | undefined;
|
|
26838
28634
|
} | {
|
|
26839
28635
|
type: "github_pr";
|
|
26840
28636
|
mimeType: "application/github-pr";
|
|
@@ -26894,6 +28690,26 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26894
28690
|
mimeType: "text/plain";
|
|
26895
28691
|
text: string;
|
|
26896
28692
|
title?: string | null | undefined;
|
|
28693
|
+
} | {
|
|
28694
|
+
type: "forge_change_request";
|
|
28695
|
+
mimeType: "application/paseo-forge-change-request";
|
|
28696
|
+
forge: string;
|
|
28697
|
+
number: number;
|
|
28698
|
+
title: string;
|
|
28699
|
+
url: string;
|
|
28700
|
+
body?: string | null | undefined;
|
|
28701
|
+
projectPath?: string | undefined;
|
|
28702
|
+
baseRefName?: string | null | undefined;
|
|
28703
|
+
headRefName?: string | null | undefined;
|
|
28704
|
+
} | {
|
|
28705
|
+
type: "forge_issue";
|
|
28706
|
+
mimeType: "application/paseo-forge-issue";
|
|
28707
|
+
forge: string;
|
|
28708
|
+
number: number;
|
|
28709
|
+
title: string;
|
|
28710
|
+
url: string;
|
|
28711
|
+
body?: string | null | undefined;
|
|
28712
|
+
projectPath?: string | undefined;
|
|
26897
28713
|
} | {
|
|
26898
28714
|
type: "github_pr";
|
|
26899
28715
|
mimeType: "application/github-pr";
|
|
@@ -26951,6 +28767,12 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26951
28767
|
"branch-off": "branch-off";
|
|
26952
28768
|
checkout: "checkout";
|
|
26953
28769
|
}>>;
|
|
28770
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
28771
|
+
kind: z.ZodLiteral<"change_request">;
|
|
28772
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28773
|
+
number: z.ZodNumber;
|
|
28774
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
28775
|
+
}, z.core.$strip>>;
|
|
26954
28776
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
26955
28777
|
requestId: z.ZodString;
|
|
26956
28778
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -27013,6 +28835,26 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
27013
28835
|
mimeType: "text/plain";
|
|
27014
28836
|
text: string;
|
|
27015
28837
|
title?: string | null | undefined;
|
|
28838
|
+
} | {
|
|
28839
|
+
type: "forge_change_request";
|
|
28840
|
+
mimeType: "application/paseo-forge-change-request";
|
|
28841
|
+
forge: string;
|
|
28842
|
+
number: number;
|
|
28843
|
+
title: string;
|
|
28844
|
+
url: string;
|
|
28845
|
+
body?: string | null | undefined;
|
|
28846
|
+
projectPath?: string | undefined;
|
|
28847
|
+
baseRefName?: string | null | undefined;
|
|
28848
|
+
headRefName?: string | null | undefined;
|
|
28849
|
+
} | {
|
|
28850
|
+
type: "forge_issue";
|
|
28851
|
+
mimeType: "application/paseo-forge-issue";
|
|
28852
|
+
forge: string;
|
|
28853
|
+
number: number;
|
|
28854
|
+
title: string;
|
|
28855
|
+
url: string;
|
|
28856
|
+
body?: string | null | undefined;
|
|
28857
|
+
projectPath?: string | undefined;
|
|
27016
28858
|
} | {
|
|
27017
28859
|
type: "github_pr";
|
|
27018
28860
|
mimeType: "application/github-pr";
|
|
@@ -27079,6 +28921,12 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
27079
28921
|
}>>;
|
|
27080
28922
|
refName: z.ZodOptional<z.ZodString>;
|
|
27081
28923
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
28924
|
+
checkoutSource: z.ZodOptional<z.ZodObject<{
|
|
28925
|
+
kind: z.ZodLiteral<"change_request">;
|
|
28926
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28927
|
+
number: z.ZodNumber;
|
|
28928
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
28929
|
+
}, z.core.$strip>>;
|
|
27082
28930
|
githubPrNumber: z.ZodOptional<z.ZodNumber>;
|
|
27083
28931
|
worktreeSlug: z.ZodOptional<z.ZodString>;
|
|
27084
28932
|
}, z.core.$strip>], "kind">;
|
|
@@ -27959,6 +29807,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
27959
29807
|
}, z.core.$strip>>>;
|
|
27960
29808
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27961
29809
|
}, z.core.$strip>>>;
|
|
29810
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
27962
29811
|
project: z.ZodOptional<z.ZodObject<{
|
|
27963
29812
|
projectKey: z.ZodString;
|
|
27964
29813
|
projectName: z.ZodString;
|
|
@@ -28112,6 +29961,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
28112
29961
|
} | null | undefined;
|
|
28113
29962
|
refreshedAt?: string | null | undefined;
|
|
28114
29963
|
} | null | undefined;
|
|
29964
|
+
forge?: string | undefined;
|
|
28115
29965
|
project?: {
|
|
28116
29966
|
projectKey: string;
|
|
28117
29967
|
projectName: string;
|
|
@@ -28217,6 +30067,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
28217
30067
|
} | null | undefined;
|
|
28218
30068
|
refreshedAt?: string | null | undefined;
|
|
28219
30069
|
} | null | undefined;
|
|
30070
|
+
forge?: string | undefined;
|
|
28220
30071
|
project?: {
|
|
28221
30072
|
projectKey: string;
|
|
28222
30073
|
projectName: string;
|
|
@@ -28934,6 +30785,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
28934
30785
|
}, z.core.$strip>>>;
|
|
28935
30786
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28936
30787
|
}, z.core.$strip>>>;
|
|
30788
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
28937
30789
|
project: z.ZodOptional<z.ZodObject<{
|
|
28938
30790
|
projectKey: z.ZodString;
|
|
28939
30791
|
projectName: z.ZodString;
|
|
@@ -29087,6 +30939,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29087
30939
|
} | null | undefined;
|
|
29088
30940
|
refreshedAt?: string | null | undefined;
|
|
29089
30941
|
} | null | undefined;
|
|
30942
|
+
forge?: string | undefined;
|
|
29090
30943
|
project?: {
|
|
29091
30944
|
projectKey: string;
|
|
29092
30945
|
projectName: string;
|
|
@@ -29192,6 +31045,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29192
31045
|
} | null | undefined;
|
|
29193
31046
|
refreshedAt?: string | null | undefined;
|
|
29194
31047
|
} | null | undefined;
|
|
31048
|
+
forge?: string | undefined;
|
|
29195
31049
|
project?: {
|
|
29196
31050
|
projectKey: string;
|
|
29197
31051
|
projectName: string;
|
|
@@ -29401,6 +31255,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29401
31255
|
}, z.core.$strip>>>;
|
|
29402
31256
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29403
31257
|
}, z.core.$strip>>>;
|
|
31258
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
29404
31259
|
project: z.ZodOptional<z.ZodObject<{
|
|
29405
31260
|
projectKey: z.ZodString;
|
|
29406
31261
|
projectName: z.ZodString;
|
|
@@ -29554,6 +31409,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29554
31409
|
} | null | undefined;
|
|
29555
31410
|
refreshedAt?: string | null | undefined;
|
|
29556
31411
|
} | null | undefined;
|
|
31412
|
+
forge?: string | undefined;
|
|
29557
31413
|
project?: {
|
|
29558
31414
|
projectKey: string;
|
|
29559
31415
|
projectName: string;
|
|
@@ -29659,6 +31515,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29659
31515
|
} | null | undefined;
|
|
29660
31516
|
refreshedAt?: string | null | undefined;
|
|
29661
31517
|
} | null | undefined;
|
|
31518
|
+
forge?: string | undefined;
|
|
29662
31519
|
project?: {
|
|
29663
31520
|
projectKey: string;
|
|
29664
31521
|
projectName: string;
|
|
@@ -30461,6 +32318,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
30461
32318
|
}, z.core.$strip>>>;
|
|
30462
32319
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30463
32320
|
}, z.core.$strip>>>;
|
|
32321
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
30464
32322
|
project: z.ZodOptional<z.ZodObject<{
|
|
30465
32323
|
projectKey: z.ZodString;
|
|
30466
32324
|
projectName: z.ZodString;
|
|
@@ -30614,6 +32472,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
30614
32472
|
} | null | undefined;
|
|
30615
32473
|
refreshedAt?: string | null | undefined;
|
|
30616
32474
|
} | null | undefined;
|
|
32475
|
+
forge?: string | undefined;
|
|
30617
32476
|
project?: {
|
|
30618
32477
|
projectKey: string;
|
|
30619
32478
|
projectName: string;
|
|
@@ -30719,6 +32578,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
30719
32578
|
} | null | undefined;
|
|
30720
32579
|
refreshedAt?: string | null | undefined;
|
|
30721
32580
|
} | null | undefined;
|
|
32581
|
+
forge?: string | undefined;
|
|
30722
32582
|
project?: {
|
|
30723
32583
|
projectKey: string;
|
|
30724
32584
|
projectName: string;
|
|
@@ -31111,6 +32971,31 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31111
32971
|
pinnedAt: z.ZodNullable<z.ZodString>;
|
|
31112
32972
|
error: z.ZodNullable<z.ZodString>;
|
|
31113
32973
|
}, z.core.$strip>;
|
|
32974
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32975
|
+
type: z.ZodLiteral<"workspace.recovery.inspect.response">;
|
|
32976
|
+
payload: z.ZodObject<{
|
|
32977
|
+
requestId: z.ZodString;
|
|
32978
|
+
state: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
32979
|
+
kind: z.ZodLiteral<"recoverable">;
|
|
32980
|
+
workspaceId: z.ZodString;
|
|
32981
|
+
workspaceName: z.ZodString;
|
|
32982
|
+
action: z.ZodString;
|
|
32983
|
+
branch: z.ZodNullable<z.ZodString>;
|
|
32984
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32985
|
+
kind: z.ZodLiteral<"unavailable">;
|
|
32986
|
+
workspaceId: z.ZodString;
|
|
32987
|
+
reason: z.ZodString;
|
|
32988
|
+
message: z.ZodString;
|
|
32989
|
+
}, z.core.$strip>], "kind">;
|
|
32990
|
+
}, z.core.$strip>;
|
|
32991
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32992
|
+
type: z.ZodLiteral<"workspace.recovery.restore.response">;
|
|
32993
|
+
payload: z.ZodObject<{
|
|
32994
|
+
requestId: z.ZodString;
|
|
32995
|
+
workspaceId: z.ZodString;
|
|
32996
|
+
accepted: z.ZodBoolean;
|
|
32997
|
+
error: z.ZodNullable<z.ZodString>;
|
|
32998
|
+
}, z.core.$strip>;
|
|
31114
32999
|
}, z.core.$strip>, z.ZodObject<{
|
|
31115
33000
|
type: z.ZodLiteral<"wait_for_finish_response">;
|
|
31116
33001
|
payload: z.ZodObject<{
|
|
@@ -31388,6 +33273,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31388
33273
|
prStatus: z.ZodOptional<z.ZodObject<{
|
|
31389
33274
|
cwd: z.ZodString;
|
|
31390
33275
|
status: z.ZodNullable<z.ZodObject<{
|
|
33276
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
33277
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
31391
33278
|
number: z.ZodOptional<z.ZodNumber>;
|
|
31392
33279
|
url: z.ZodString;
|
|
31393
33280
|
title: z.ZodString;
|
|
@@ -31435,8 +33322,11 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31435
33322
|
isMergeQueueEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
31436
33323
|
isInMergeQueue: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
31437
33324
|
}, z.core.$strip>>;
|
|
33325
|
+
forgeSpecific: z.ZodOptional<z.ZodUnknown>;
|
|
31438
33326
|
}, z.core.$strip>>;
|
|
31439
33327
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
33328
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
33329
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
31440
33330
|
error: z.ZodNullable<z.ZodObject<{
|
|
31441
33331
|
code: z.ZodEnum<{
|
|
31442
33332
|
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
@@ -31671,6 +33561,23 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31671
33561
|
}, z.core.$strip>>;
|
|
31672
33562
|
requestId: z.ZodString;
|
|
31673
33563
|
}, z.core.$strip>;
|
|
33564
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33565
|
+
type: z.ZodLiteral<"checkout.forge.set_auto_merge.response">;
|
|
33566
|
+
payload: z.ZodObject<{
|
|
33567
|
+
cwd: z.ZodString;
|
|
33568
|
+
enabled: z.ZodBoolean;
|
|
33569
|
+
success: z.ZodBoolean;
|
|
33570
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
33571
|
+
code: z.ZodEnum<{
|
|
33572
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
33573
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
33574
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
33575
|
+
UNKNOWN: "UNKNOWN";
|
|
33576
|
+
}>;
|
|
33577
|
+
message: z.ZodString;
|
|
33578
|
+
}, z.core.$strip>>;
|
|
33579
|
+
requestId: z.ZodString;
|
|
33580
|
+
}, z.core.$strip>;
|
|
31674
33581
|
}, z.core.$strip>, z.ZodObject<{
|
|
31675
33582
|
type: z.ZodLiteral<"checkout.github.set_auto_merge.response">;
|
|
31676
33583
|
payload: z.ZodObject<{
|
|
@@ -31688,6 +33595,160 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31688
33595
|
}, z.core.$strip>>;
|
|
31689
33596
|
requestId: z.ZodString;
|
|
31690
33597
|
}, z.core.$strip>;
|
|
33598
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33599
|
+
type: z.ZodLiteral<"checkout.commits.list.response">;
|
|
33600
|
+
payload: z.ZodObject<{
|
|
33601
|
+
cwd: z.ZodString;
|
|
33602
|
+
baseRef: z.ZodNullable<z.ZodString>;
|
|
33603
|
+
commits: z.ZodArray<z.ZodObject<{
|
|
33604
|
+
sha: z.ZodString;
|
|
33605
|
+
shortSha: z.ZodString;
|
|
33606
|
+
subject: z.ZodString;
|
|
33607
|
+
authorName: z.ZodString;
|
|
33608
|
+
authorDate: z.ZodString;
|
|
33609
|
+
isOnRemote: z.ZodBoolean;
|
|
33610
|
+
files: z.ZodArray<z.ZodObject<{
|
|
33611
|
+
path: z.ZodString;
|
|
33612
|
+
additions: z.ZodNumber;
|
|
33613
|
+
deletions: z.ZodNumber;
|
|
33614
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
33615
|
+
added: "added";
|
|
33616
|
+
modified: "modified";
|
|
33617
|
+
deleted: "deleted";
|
|
33618
|
+
renamed: "renamed";
|
|
33619
|
+
}>>;
|
|
33620
|
+
}, z.core.$strip>>;
|
|
33621
|
+
}, z.core.$strip>>;
|
|
33622
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
33623
|
+
code: z.ZodEnum<{
|
|
33624
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
33625
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
33626
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
33627
|
+
UNKNOWN: "UNKNOWN";
|
|
33628
|
+
}>;
|
|
33629
|
+
message: z.ZodString;
|
|
33630
|
+
}, z.core.$strip>>;
|
|
33631
|
+
requestId: z.ZodString;
|
|
33632
|
+
}, z.core.$strip>;
|
|
33633
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33634
|
+
type: z.ZodLiteral<"checkout.commits.file_diff.response">;
|
|
33635
|
+
payload: z.ZodObject<{
|
|
33636
|
+
cwd: z.ZodString;
|
|
33637
|
+
sha: z.ZodString;
|
|
33638
|
+
path: z.ZodString;
|
|
33639
|
+
file: z.ZodNullable<z.ZodObject<{
|
|
33640
|
+
path: z.ZodString;
|
|
33641
|
+
isNew: z.ZodBoolean;
|
|
33642
|
+
isDeleted: z.ZodBoolean;
|
|
33643
|
+
additions: z.ZodNumber;
|
|
33644
|
+
deletions: z.ZodNumber;
|
|
33645
|
+
hunks: z.ZodArray<z.ZodObject<{
|
|
33646
|
+
oldStart: z.ZodNumber;
|
|
33647
|
+
oldCount: z.ZodNumber;
|
|
33648
|
+
newStart: z.ZodNumber;
|
|
33649
|
+
newCount: z.ZodNumber;
|
|
33650
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
33651
|
+
type: z.ZodEnum<{
|
|
33652
|
+
context: "context";
|
|
33653
|
+
add: "add";
|
|
33654
|
+
remove: "remove";
|
|
33655
|
+
header: "header";
|
|
33656
|
+
}>;
|
|
33657
|
+
content: z.ZodString;
|
|
33658
|
+
tokens: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33659
|
+
text: z.ZodString;
|
|
33660
|
+
style: z.ZodNullable<z.ZodString>;
|
|
33661
|
+
}, z.core.$strip>>>;
|
|
33662
|
+
}, z.core.$strip>>;
|
|
33663
|
+
}, z.core.$strip>>;
|
|
33664
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
33665
|
+
ok: "ok";
|
|
33666
|
+
too_large: "too_large";
|
|
33667
|
+
binary: "binary";
|
|
33668
|
+
}>>;
|
|
33669
|
+
}, z.core.$strip>>;
|
|
33670
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
33671
|
+
code: z.ZodEnum<{
|
|
33672
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
33673
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
33674
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
33675
|
+
UNKNOWN: "UNKNOWN";
|
|
33676
|
+
}>;
|
|
33677
|
+
message: z.ZodString;
|
|
33678
|
+
}, z.core.$strip>>;
|
|
33679
|
+
requestId: z.ZodString;
|
|
33680
|
+
}, z.core.$strip>;
|
|
33681
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33682
|
+
type: z.ZodLiteral<"checkout.forge.get_check_details.response">;
|
|
33683
|
+
payload: z.ZodObject<{
|
|
33684
|
+
cwd: z.ZodString;
|
|
33685
|
+
success: z.ZodBoolean;
|
|
33686
|
+
details: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
33687
|
+
checkRunId: z.ZodNumber;
|
|
33688
|
+
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
33689
|
+
name: z.ZodString;
|
|
33690
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33691
|
+
conclusion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33692
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33693
|
+
detailsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33694
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
33695
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33696
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33697
|
+
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33698
|
+
}, z.core.$strip>>>;
|
|
33699
|
+
annotations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33700
|
+
path: z.ZodOptional<z.ZodString>;
|
|
33701
|
+
startLine: z.ZodOptional<z.ZodNumber>;
|
|
33702
|
+
endLine: z.ZodOptional<z.ZodNumber>;
|
|
33703
|
+
annotationLevel: z.ZodOptional<z.ZodString>;
|
|
33704
|
+
message: z.ZodOptional<z.ZodString>;
|
|
33705
|
+
title: z.ZodOptional<z.ZodString>;
|
|
33706
|
+
rawDetails: z.ZodOptional<z.ZodString>;
|
|
33707
|
+
}, z.core.$strip>>>>;
|
|
33708
|
+
failedJobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33709
|
+
jobId: z.ZodNumber;
|
|
33710
|
+
name: z.ZodString;
|
|
33711
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33712
|
+
conclusion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33713
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33714
|
+
logTail: z.ZodOptional<z.ZodString>;
|
|
33715
|
+
logTruncated: z.ZodOptional<z.ZodBoolean>;
|
|
33716
|
+
}, z.core.$strip>>>>;
|
|
33717
|
+
truncated: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
33718
|
+
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
33719
|
+
id: z.ZodNumber;
|
|
33720
|
+
status: z.ZodString;
|
|
33721
|
+
rawStatus: z.ZodString;
|
|
33722
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
33723
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
33724
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
33725
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33726
|
+
name: z.ZodString;
|
|
33727
|
+
status: z.ZodString;
|
|
33728
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33729
|
+
id: z.ZodNumber;
|
|
33730
|
+
name: z.ZodString;
|
|
33731
|
+
stage: z.ZodString;
|
|
33732
|
+
status: z.ZodString;
|
|
33733
|
+
rawStatus: z.ZodString;
|
|
33734
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
33735
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
33736
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
33737
|
+
}, z.core.$strip>>>>;
|
|
33738
|
+
}, z.core.$strip>>>>;
|
|
33739
|
+
}, z.core.$strip>>>;
|
|
33740
|
+
}, z.core.$strip>>>>;
|
|
33741
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
33742
|
+
code: z.ZodEnum<{
|
|
33743
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
33744
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
33745
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
33746
|
+
UNKNOWN: "UNKNOWN";
|
|
33747
|
+
}>;
|
|
33748
|
+
message: z.ZodString;
|
|
33749
|
+
}, z.core.$strip>>;
|
|
33750
|
+
requestId: z.ZodString;
|
|
33751
|
+
}, z.core.$strip>;
|
|
31691
33752
|
}, z.core.$strip>, z.ZodObject<{
|
|
31692
33753
|
type: z.ZodLiteral<"checkout.github.get_check_details.response">;
|
|
31693
33754
|
payload: z.ZodObject<{
|
|
@@ -31725,6 +33786,28 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31725
33786
|
logTruncated: z.ZodOptional<z.ZodBoolean>;
|
|
31726
33787
|
}, z.core.$strip>>>>;
|
|
31727
33788
|
truncated: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
33789
|
+
pipeline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
33790
|
+
id: z.ZodNumber;
|
|
33791
|
+
status: z.ZodString;
|
|
33792
|
+
rawStatus: z.ZodString;
|
|
33793
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
33794
|
+
ref: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
33795
|
+
sha: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
33796
|
+
stages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33797
|
+
name: z.ZodString;
|
|
33798
|
+
status: z.ZodString;
|
|
33799
|
+
jobs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33800
|
+
id: z.ZodNumber;
|
|
33801
|
+
name: z.ZodString;
|
|
33802
|
+
stage: z.ZodString;
|
|
33803
|
+
status: z.ZodString;
|
|
33804
|
+
rawStatus: z.ZodString;
|
|
33805
|
+
url: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
33806
|
+
allowFailure: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
33807
|
+
durationSeconds: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
33808
|
+
}, z.core.$strip>>>>;
|
|
33809
|
+
}, z.core.$strip>>>>;
|
|
33810
|
+
}, z.core.$strip>>>;
|
|
31728
33811
|
}, z.core.$strip>>>>;
|
|
31729
33812
|
error: z.ZodNullable<z.ZodObject<{
|
|
31730
33813
|
code: z.ZodEnum<{
|
|
@@ -31742,6 +33825,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31742
33825
|
payload: z.ZodObject<{
|
|
31743
33826
|
cwd: z.ZodString;
|
|
31744
33827
|
status: z.ZodNullable<z.ZodObject<{
|
|
33828
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
33829
|
+
projectPath: z.ZodOptional<z.ZodString>;
|
|
31745
33830
|
number: z.ZodOptional<z.ZodNumber>;
|
|
31746
33831
|
url: z.ZodString;
|
|
31747
33832
|
title: z.ZodString;
|
|
@@ -31789,8 +33874,11 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31789
33874
|
isMergeQueueEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
31790
33875
|
isInMergeQueue: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
31791
33876
|
}, z.core.$strip>>;
|
|
33877
|
+
forgeSpecific: z.ZodOptional<z.ZodUnknown>;
|
|
31792
33878
|
}, z.core.$strip>>;
|
|
31793
33879
|
githubFeaturesEnabled: z.ZodBoolean;
|
|
33880
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
33881
|
+
forge: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
31794
33882
|
error: z.ZodNullable<z.ZodObject<{
|
|
31795
33883
|
code: z.ZodEnum<{
|
|
31796
33884
|
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
@@ -31831,6 +33919,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31831
33919
|
createdAt: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
31832
33920
|
url: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
31833
33921
|
reviewId: z.ZodOptional<z.ZodString>;
|
|
33922
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
33923
|
+
threadIsResolved: z.ZodOptional<z.ZodBoolean>;
|
|
31834
33924
|
location: z.ZodOptional<z.ZodObject<{
|
|
31835
33925
|
path: z.ZodString;
|
|
31836
33926
|
line: z.ZodOptional<z.ZodNumber>;
|
|
@@ -31853,6 +33943,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31853
33943
|
}, z.core.$strip>], "kind">>>>>;
|
|
31854
33944
|
requestId: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
31855
33945
|
githubFeaturesEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
33946
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
31856
33947
|
}, z.core.$strip>>>;
|
|
31857
33948
|
}, z.core.$strip>, z.ZodObject<{
|
|
31858
33949
|
type: z.ZodLiteral<"checkout_switch_branch_response">;
|
|
@@ -31967,25 +34058,21 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31967
34058
|
error: z.ZodNullable<z.ZodString>;
|
|
31968
34059
|
requestId: z.ZodString;
|
|
31969
34060
|
}, z.core.$strip>;
|
|
34061
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34062
|
+
type: z.ZodLiteral<"forge.search.response">;
|
|
34063
|
+
payload: z.ZodObject<{
|
|
34064
|
+
items: z.ZodArray<z.ZodUnknown>;
|
|
34065
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
34066
|
+
error: z.ZodNullable<z.ZodString>;
|
|
34067
|
+
requestId: z.ZodString;
|
|
34068
|
+
}, z.core.$strip>;
|
|
31970
34069
|
}, z.core.$strip>, z.ZodObject<{
|
|
31971
34070
|
type: z.ZodLiteral<"github_search_response">;
|
|
31972
34071
|
payload: z.ZodObject<{
|
|
31973
|
-
items: z.ZodArray<z.
|
|
31974
|
-
|
|
31975
|
-
|
|
31976
|
-
|
|
31977
|
-
}>;
|
|
31978
|
-
number: z.ZodNumber;
|
|
31979
|
-
title: z.ZodString;
|
|
31980
|
-
url: z.ZodString;
|
|
31981
|
-
state: z.ZodString;
|
|
31982
|
-
body: z.ZodNullable<z.ZodString>;
|
|
31983
|
-
labels: z.ZodArray<z.ZodString>;
|
|
31984
|
-
baseRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31985
|
-
headRefName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31986
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31987
|
-
}, z.core.$strip>>;
|
|
31988
|
-
githubFeaturesEnabled: z.ZodBoolean;
|
|
34072
|
+
items: z.ZodArray<z.ZodUnknown>;
|
|
34073
|
+
featuresEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
34074
|
+
authState: z.ZodOptional<z.ZodUnknown>;
|
|
34075
|
+
githubFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
31989
34076
|
error: z.ZodNullable<z.ZodString>;
|
|
31990
34077
|
requestId: z.ZodString;
|
|
31991
34078
|
}, z.core.$strip>;
|
|
@@ -32160,6 +34247,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
32160
34247
|
}, z.core.$strip>>>;
|
|
32161
34248
|
refreshedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32162
34249
|
}, z.core.$strip>>>;
|
|
34250
|
+
forge: z.ZodOptional<z.ZodString>;
|
|
32163
34251
|
project: z.ZodOptional<z.ZodObject<{
|
|
32164
34252
|
projectKey: z.ZodString;
|
|
32165
34253
|
projectName: z.ZodString;
|
|
@@ -32313,6 +34401,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
32313
34401
|
} | null | undefined;
|
|
32314
34402
|
refreshedAt?: string | null | undefined;
|
|
32315
34403
|
} | null | undefined;
|
|
34404
|
+
forge?: string | undefined;
|
|
32316
34405
|
project?: {
|
|
32317
34406
|
projectKey: string;
|
|
32318
34407
|
projectName: string;
|
|
@@ -32418,6 +34507,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
32418
34507
|
} | null | undefined;
|
|
32419
34508
|
refreshedAt?: string | null | undefined;
|
|
32420
34509
|
} | null | undefined;
|
|
34510
|
+
forge?: string | undefined;
|
|
32421
34511
|
project?: {
|
|
32422
34512
|
projectKey: string;
|
|
32423
34513
|
projectName: string;
|
|
@@ -32602,6 +34692,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
32602
34692
|
provider: z.ZodString;
|
|
32603
34693
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
32604
34694
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
34695
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
34696
|
+
builtin: "builtin";
|
|
34697
|
+
custom: "custom";
|
|
34698
|
+
}>>;
|
|
32605
34699
|
error: z.ZodOptional<z.ZodString>;
|
|
32606
34700
|
models: z.ZodOptional<z.ZodArray<z.ZodType<AgentModelDefinition, unknown, z.core.$ZodTypeInternals<AgentModelDefinition, unknown>>>>;
|
|
32607
34701
|
modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, unknown, z.core.$ZodTypeInternals<AgentMode, unknown>>>>;
|
|
@@ -32621,6 +34715,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
32621
34715
|
provider: z.ZodString;
|
|
32622
34716
|
status: z.ZodType<ProviderStatus, unknown, z.core.$ZodTypeInternals<ProviderStatus, unknown>>;
|
|
32623
34717
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
34718
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
34719
|
+
builtin: "builtin";
|
|
34720
|
+
custom: "custom";
|
|
34721
|
+
}>>;
|
|
32624
34722
|
error: z.ZodOptional<z.ZodString>;
|
|
32625
34723
|
models: z.ZodOptional<z.ZodArray<z.ZodType<AgentModelDefinition, unknown, z.core.$ZodTypeInternals<AgentModelDefinition, unknown>>>>;
|
|
32626
34724
|
modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, unknown, z.core.$ZodTypeInternals<AgentMode, unknown>>>>;
|