@junctionpanel/server 0.1.33 → 0.1.35
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/server/client/daemon-client.d.ts +2 -0
- package/dist/server/client/daemon-client.d.ts.map +1 -1
- package/dist/server/client/daemon-client.js +2 -0
- package/dist/server/client/daemon-client.js.map +1 -1
- package/dist/server/server/agent/agent-management-mcp.d.ts.map +1 -1
- package/dist/server/server/agent/agent-management-mcp.js +44 -7
- package/dist/server/server/agent/agent-management-mcp.js.map +1 -1
- package/dist/server/server/agent/agent-manager.d.ts +5 -0
- package/dist/server/server/agent/agent-manager.d.ts.map +1 -1
- package/dist/server/server/agent/agent-manager.js +66 -12
- package/dist/server/server/agent/agent-manager.js.map +1 -1
- package/dist/server/server/agent/agent-permission-fingerprint.d.ts +6 -0
- package/dist/server/server/agent/agent-permission-fingerprint.d.ts.map +1 -0
- package/dist/server/server/agent/agent-permission-fingerprint.js +28 -0
- package/dist/server/server/agent/agent-permission-fingerprint.js.map +1 -0
- package/dist/server/server/agent/agent-projections.d.ts +1 -0
- package/dist/server/server/agent/agent-projections.d.ts.map +1 -1
- package/dist/server/server/agent/agent-projections.js +61 -3
- package/dist/server/server/agent/agent-projections.js.map +1 -1
- package/dist/server/server/agent/agent-sdk-types.d.ts +5 -0
- package/dist/server/server/agent/agent-sdk-types.d.ts.map +1 -1
- package/dist/server/server/agent/agent-storage.d.ts +13 -0
- package/dist/server/server/agent/agent-storage.d.ts.map +1 -1
- package/dist/server/server/agent/agent-storage.js +4 -2
- package/dist/server/server/agent/agent-storage.js.map +1 -1
- package/dist/server/server/agent/mcp-server.d.ts.map +1 -1
- package/dist/server/server/agent/mcp-server.js +44 -7
- package/dist/server/server/agent/mcp-server.js.map +1 -1
- package/dist/server/server/agent/providers/claude-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/claude-agent.js +38 -90
- package/dist/server/server/agent/providers/claude-agent.js.map +1 -1
- package/dist/server/server/agent/providers/claude-cli-capabilities.d.ts +50 -0
- package/dist/server/server/agent/providers/claude-cli-capabilities.d.ts.map +1 -0
- package/dist/server/server/agent/providers/claude-cli-capabilities.js +247 -0
- package/dist/server/server/agent/providers/claude-cli-capabilities.js.map +1 -0
- package/dist/server/server/agent/providers/codex-app-server-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/codex-app-server-agent.js +4 -0
- package/dist/server/server/agent/providers/codex-app-server-agent.js.map +1 -1
- package/dist/server/server/agent/providers/gemini-agent.d.ts +287 -1
- package/dist/server/server/agent/providers/gemini-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/gemini-agent.js +255 -16
- package/dist/server/server/agent/providers/gemini-agent.js.map +1 -1
- package/dist/server/server/daemon-doctor.d.ts +5 -0
- package/dist/server/server/daemon-doctor.d.ts.map +1 -1
- package/dist/server/server/daemon-doctor.js +26 -0
- package/dist/server/server/daemon-doctor.js.map +1 -1
- package/dist/server/server/file-explorer/service.d.ts +1 -0
- package/dist/server/server/file-explorer/service.d.ts.map +1 -1
- package/dist/server/server/file-explorer/service.js +36 -0
- package/dist/server/server/file-explorer/service.js.map +1 -1
- package/dist/server/server/session.d.ts +1 -0
- package/dist/server/server/session.d.ts.map +1 -1
- package/dist/server/server/session.js +82 -71
- package/dist/server/server/session.js.map +1 -1
- package/dist/server/server/worktree-bootstrap.d.ts +2 -1
- package/dist/server/server/worktree-bootstrap.d.ts.map +1 -1
- package/dist/server/server/worktree-bootstrap.js +1 -0
- package/dist/server/server/worktree-bootstrap.js.map +1 -1
- package/dist/server/shared/messages.d.ts +424 -218
- package/dist/server/shared/messages.d.ts.map +1 -1
- package/dist/server/shared/messages.js +9 -0
- package/dist/server/shared/messages.js.map +1 -1
- package/dist/server/utils/checkout-git.d.ts +14 -0
- package/dist/server/utils/checkout-git.d.ts.map +1 -1
- package/dist/server/utils/checkout-git.js +73 -44
- package/dist/server/utils/checkout-git.js.map +1 -1
- package/dist/server/utils/worktree-metadata.d.ts +30 -0
- package/dist/server/utils/worktree-metadata.d.ts.map +1 -1
- package/dist/server/utils/worktree-metadata.js +38 -9
- package/dist/server/utils/worktree-metadata.js.map +1 -1
- package/dist/server/utils/worktree.d.ts +7 -3
- package/dist/server/utils/worktree.d.ts.map +1 -1
- package/dist/server/utils/worktree.js +91 -47
- package/dist/server/utils/worktree.js.map +1 -1
- package/package.json +2 -2
|
@@ -30,14 +30,17 @@ export declare const AgentStreamEventPayloadSchema: z.ZodDiscriminatedUnion<"typ
|
|
|
30
30
|
type: z.ZodLiteral<"turn_completed">;
|
|
31
31
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
32
32
|
usage: z.ZodOptional<z.ZodType<AgentUsage, z.ZodTypeDef, AgentUsage>>;
|
|
33
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33
34
|
}, "strip", z.ZodTypeAny, {
|
|
34
35
|
provider: string;
|
|
35
36
|
type: "turn_completed";
|
|
36
37
|
usage?: AgentUsage | undefined;
|
|
38
|
+
modelId?: string | null | undefined;
|
|
37
39
|
}, {
|
|
38
40
|
provider: string;
|
|
39
41
|
type: "turn_completed";
|
|
40
42
|
usage?: AgentUsage | undefined;
|
|
43
|
+
modelId?: string | null | undefined;
|
|
41
44
|
}>, z.ZodObject<{
|
|
42
45
|
type: z.ZodLiteral<"turn_failed">;
|
|
43
46
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
@@ -208,10 +211,10 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
208
211
|
lastUserMessageAt: string | null;
|
|
209
212
|
labels: Record<string, string>;
|
|
210
213
|
persistence: AgentPersistenceHandle | null;
|
|
214
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
211
215
|
capabilities: AgentCapabilityFlags;
|
|
212
216
|
currentModeId: string | null;
|
|
213
217
|
availableModes: AgentMode[];
|
|
214
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
215
218
|
thinkingOptionId?: string | null | undefined;
|
|
216
219
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
217
220
|
requiresAttention?: boolean | undefined;
|
|
@@ -232,10 +235,10 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
232
235
|
updatedAt: string;
|
|
233
236
|
lastUserMessageAt: string | null;
|
|
234
237
|
persistence: AgentPersistenceHandle | null;
|
|
238
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
235
239
|
capabilities: AgentCapabilityFlags;
|
|
236
240
|
currentModeId: string | null;
|
|
237
241
|
availableModes: AgentMode[];
|
|
238
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
239
242
|
thinkingOptionId?: string | null | undefined;
|
|
240
243
|
labels?: Record<string, string> | undefined;
|
|
241
244
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -580,6 +583,7 @@ export declare const WaitForFinishRequestSchema: z.ZodObject<{
|
|
|
580
583
|
}>;
|
|
581
584
|
declare const GitSetupOptionsSchema: z.ZodObject<{
|
|
582
585
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
586
|
+
baseBranchSource: z.ZodOptional<z.ZodEnum<["local", "remote"]>>;
|
|
583
587
|
remoteName: z.ZodOptional<z.ZodString>;
|
|
584
588
|
createNewBranch: z.ZodOptional<z.ZodBoolean>;
|
|
585
589
|
newBranchName: z.ZodOptional<z.ZodString>;
|
|
@@ -587,15 +591,17 @@ declare const GitSetupOptionsSchema: z.ZodObject<{
|
|
|
587
591
|
worktreeSlug: z.ZodOptional<z.ZodString>;
|
|
588
592
|
}, "strip", z.ZodTypeAny, {
|
|
589
593
|
baseBranch?: string | undefined;
|
|
590
|
-
|
|
594
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
591
595
|
remoteName?: string | undefined;
|
|
596
|
+
worktreeSlug?: string | undefined;
|
|
592
597
|
createNewBranch?: boolean | undefined;
|
|
593
598
|
newBranchName?: string | undefined;
|
|
594
599
|
createWorktree?: boolean | undefined;
|
|
595
600
|
}, {
|
|
596
601
|
baseBranch?: string | undefined;
|
|
597
|
-
|
|
602
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
598
603
|
remoteName?: string | undefined;
|
|
604
|
+
worktreeSlug?: string | undefined;
|
|
599
605
|
createNewBranch?: boolean | undefined;
|
|
600
606
|
newBranchName?: string | undefined;
|
|
601
607
|
createWorktree?: boolean | undefined;
|
|
@@ -782,6 +788,7 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
|
|
|
782
788
|
}>, "many">>;
|
|
783
789
|
git: z.ZodOptional<z.ZodObject<{
|
|
784
790
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
791
|
+
baseBranchSource: z.ZodOptional<z.ZodEnum<["local", "remote"]>>;
|
|
785
792
|
remoteName: z.ZodOptional<z.ZodString>;
|
|
786
793
|
createNewBranch: z.ZodOptional<z.ZodBoolean>;
|
|
787
794
|
newBranchName: z.ZodOptional<z.ZodString>;
|
|
@@ -789,15 +796,17 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
|
|
|
789
796
|
worktreeSlug: z.ZodOptional<z.ZodString>;
|
|
790
797
|
}, "strip", z.ZodTypeAny, {
|
|
791
798
|
baseBranch?: string | undefined;
|
|
792
|
-
|
|
799
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
793
800
|
remoteName?: string | undefined;
|
|
801
|
+
worktreeSlug?: string | undefined;
|
|
794
802
|
createNewBranch?: boolean | undefined;
|
|
795
803
|
newBranchName?: string | undefined;
|
|
796
804
|
createWorktree?: boolean | undefined;
|
|
797
805
|
}, {
|
|
798
806
|
baseBranch?: string | undefined;
|
|
799
|
-
|
|
807
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
800
808
|
remoteName?: string | undefined;
|
|
809
|
+
worktreeSlug?: string | undefined;
|
|
801
810
|
createNewBranch?: boolean | undefined;
|
|
802
811
|
newBranchName?: string | undefined;
|
|
803
812
|
createWorktree?: boolean | undefined;
|
|
@@ -862,8 +871,9 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
|
|
|
862
871
|
} | undefined;
|
|
863
872
|
git?: {
|
|
864
873
|
baseBranch?: string | undefined;
|
|
865
|
-
|
|
874
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
866
875
|
remoteName?: string | undefined;
|
|
876
|
+
worktreeSlug?: string | undefined;
|
|
867
877
|
createNewBranch?: boolean | undefined;
|
|
868
878
|
newBranchName?: string | undefined;
|
|
869
879
|
createWorktree?: boolean | undefined;
|
|
@@ -925,8 +935,9 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
|
|
|
925
935
|
} | undefined;
|
|
926
936
|
git?: {
|
|
927
937
|
baseBranch?: string | undefined;
|
|
928
|
-
|
|
938
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
929
939
|
remoteName?: string | undefined;
|
|
940
|
+
worktreeSlug?: string | undefined;
|
|
930
941
|
createNewBranch?: boolean | undefined;
|
|
931
942
|
newBranchName?: string | undefined;
|
|
932
943
|
createWorktree?: boolean | undefined;
|
|
@@ -1657,16 +1668,16 @@ export declare const CheckoutPrCreateRequestSchema: z.ZodObject<{
|
|
|
1657
1668
|
type: "checkout_pr_create_request";
|
|
1658
1669
|
requestId: string;
|
|
1659
1670
|
title?: string | undefined;
|
|
1660
|
-
body?: string | undefined;
|
|
1661
1671
|
remoteName?: string | undefined;
|
|
1672
|
+
body?: string | undefined;
|
|
1662
1673
|
baseRef?: string | undefined;
|
|
1663
1674
|
}, {
|
|
1664
1675
|
cwd: string;
|
|
1665
1676
|
type: "checkout_pr_create_request";
|
|
1666
1677
|
requestId: string;
|
|
1667
1678
|
title?: string | undefined;
|
|
1668
|
-
body?: string | undefined;
|
|
1669
1679
|
remoteName?: string | undefined;
|
|
1680
|
+
body?: string | undefined;
|
|
1670
1681
|
baseRef?: string | undefined;
|
|
1671
1682
|
}>;
|
|
1672
1683
|
export declare const CheckoutPrStatusRequestSchema: z.ZodObject<{
|
|
@@ -1744,22 +1755,28 @@ export declare const BranchSuggestionsRequestSchema: z.ZodObject<{
|
|
|
1744
1755
|
cwd: z.ZodString;
|
|
1745
1756
|
query: z.ZodOptional<z.ZodString>;
|
|
1746
1757
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
1758
|
+
preferredBranches: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1759
|
+
source: z.ZodOptional<z.ZodEnum<["all", "local", "remote"]>>;
|
|
1747
1760
|
remoteName: z.ZodOptional<z.ZodString>;
|
|
1748
1761
|
requestId: z.ZodString;
|
|
1749
1762
|
}, "strip", z.ZodTypeAny, {
|
|
1750
1763
|
cwd: string;
|
|
1751
1764
|
type: "branch_suggestions_request";
|
|
1752
1765
|
requestId: string;
|
|
1766
|
+
remoteName?: string | undefined;
|
|
1753
1767
|
limit?: number | undefined;
|
|
1754
1768
|
query?: string | undefined;
|
|
1755
|
-
|
|
1769
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
1770
|
+
preferredBranches?: string[] | undefined;
|
|
1756
1771
|
}, {
|
|
1757
1772
|
cwd: string;
|
|
1758
1773
|
type: "branch_suggestions_request";
|
|
1759
1774
|
requestId: string;
|
|
1775
|
+
remoteName?: string | undefined;
|
|
1760
1776
|
limit?: number | undefined;
|
|
1761
1777
|
query?: string | undefined;
|
|
1762
|
-
|
|
1778
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
1779
|
+
preferredBranches?: string[] | undefined;
|
|
1763
1780
|
}>;
|
|
1764
1781
|
export declare const GitRemotesRequestSchema: z.ZodObject<{
|
|
1765
1782
|
type: z.ZodLiteral<"git_remotes_request">;
|
|
@@ -2771,6 +2788,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
2771
2788
|
}>, "many">>;
|
|
2772
2789
|
git: z.ZodOptional<z.ZodObject<{
|
|
2773
2790
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
2791
|
+
baseBranchSource: z.ZodOptional<z.ZodEnum<["local", "remote"]>>;
|
|
2774
2792
|
remoteName: z.ZodOptional<z.ZodString>;
|
|
2775
2793
|
createNewBranch: z.ZodOptional<z.ZodBoolean>;
|
|
2776
2794
|
newBranchName: z.ZodOptional<z.ZodString>;
|
|
@@ -2778,15 +2796,17 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
2778
2796
|
worktreeSlug: z.ZodOptional<z.ZodString>;
|
|
2779
2797
|
}, "strip", z.ZodTypeAny, {
|
|
2780
2798
|
baseBranch?: string | undefined;
|
|
2781
|
-
|
|
2799
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
2782
2800
|
remoteName?: string | undefined;
|
|
2801
|
+
worktreeSlug?: string | undefined;
|
|
2783
2802
|
createNewBranch?: boolean | undefined;
|
|
2784
2803
|
newBranchName?: string | undefined;
|
|
2785
2804
|
createWorktree?: boolean | undefined;
|
|
2786
2805
|
}, {
|
|
2787
2806
|
baseBranch?: string | undefined;
|
|
2788
|
-
|
|
2807
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
2789
2808
|
remoteName?: string | undefined;
|
|
2809
|
+
worktreeSlug?: string | undefined;
|
|
2790
2810
|
createNewBranch?: boolean | undefined;
|
|
2791
2811
|
newBranchName?: string | undefined;
|
|
2792
2812
|
createWorktree?: boolean | undefined;
|
|
@@ -2851,8 +2871,9 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
2851
2871
|
} | undefined;
|
|
2852
2872
|
git?: {
|
|
2853
2873
|
baseBranch?: string | undefined;
|
|
2854
|
-
|
|
2874
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
2855
2875
|
remoteName?: string | undefined;
|
|
2876
|
+
worktreeSlug?: string | undefined;
|
|
2856
2877
|
createNewBranch?: boolean | undefined;
|
|
2857
2878
|
newBranchName?: string | undefined;
|
|
2858
2879
|
createWorktree?: boolean | undefined;
|
|
@@ -2914,8 +2935,9 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
2914
2935
|
} | undefined;
|
|
2915
2936
|
git?: {
|
|
2916
2937
|
baseBranch?: string | undefined;
|
|
2917
|
-
|
|
2938
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
2918
2939
|
remoteName?: string | undefined;
|
|
2940
|
+
worktreeSlug?: string | undefined;
|
|
2919
2941
|
createNewBranch?: boolean | undefined;
|
|
2920
2942
|
newBranchName?: string | undefined;
|
|
2921
2943
|
createWorktree?: boolean | undefined;
|
|
@@ -3440,16 +3462,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
3440
3462
|
type: "checkout_pr_create_request";
|
|
3441
3463
|
requestId: string;
|
|
3442
3464
|
title?: string | undefined;
|
|
3443
|
-
body?: string | undefined;
|
|
3444
3465
|
remoteName?: string | undefined;
|
|
3466
|
+
body?: string | undefined;
|
|
3445
3467
|
baseRef?: string | undefined;
|
|
3446
3468
|
}, {
|
|
3447
3469
|
cwd: string;
|
|
3448
3470
|
type: "checkout_pr_create_request";
|
|
3449
3471
|
requestId: string;
|
|
3450
3472
|
title?: string | undefined;
|
|
3451
|
-
body?: string | undefined;
|
|
3452
3473
|
remoteName?: string | undefined;
|
|
3474
|
+
body?: string | undefined;
|
|
3453
3475
|
baseRef?: string | undefined;
|
|
3454
3476
|
}>, z.ZodObject<{
|
|
3455
3477
|
type: z.ZodLiteral<"checkout_pr_status_request">;
|
|
@@ -3522,22 +3544,28 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
3522
3544
|
cwd: z.ZodString;
|
|
3523
3545
|
query: z.ZodOptional<z.ZodString>;
|
|
3524
3546
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
3547
|
+
preferredBranches: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3548
|
+
source: z.ZodOptional<z.ZodEnum<["all", "local", "remote"]>>;
|
|
3525
3549
|
remoteName: z.ZodOptional<z.ZodString>;
|
|
3526
3550
|
requestId: z.ZodString;
|
|
3527
3551
|
}, "strip", z.ZodTypeAny, {
|
|
3528
3552
|
cwd: string;
|
|
3529
3553
|
type: "branch_suggestions_request";
|
|
3530
3554
|
requestId: string;
|
|
3555
|
+
remoteName?: string | undefined;
|
|
3531
3556
|
limit?: number | undefined;
|
|
3532
3557
|
query?: string | undefined;
|
|
3533
|
-
|
|
3558
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
3559
|
+
preferredBranches?: string[] | undefined;
|
|
3534
3560
|
}, {
|
|
3535
3561
|
cwd: string;
|
|
3536
3562
|
type: "branch_suggestions_request";
|
|
3537
3563
|
requestId: string;
|
|
3564
|
+
remoteName?: string | undefined;
|
|
3538
3565
|
limit?: number | undefined;
|
|
3539
3566
|
query?: string | undefined;
|
|
3540
|
-
|
|
3567
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
3568
|
+
preferredBranches?: string[] | undefined;
|
|
3541
3569
|
}>, z.ZodObject<{
|
|
3542
3570
|
type: z.ZodLiteral<"git_remotes_request">;
|
|
3543
3571
|
cwd: z.ZodString;
|
|
@@ -4309,10 +4337,10 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
4309
4337
|
lastUserMessageAt: string | null;
|
|
4310
4338
|
labels: Record<string, string>;
|
|
4311
4339
|
persistence: AgentPersistenceHandle | null;
|
|
4340
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4312
4341
|
capabilities: AgentCapabilityFlags;
|
|
4313
4342
|
currentModeId: string | null;
|
|
4314
4343
|
availableModes: AgentMode[];
|
|
4315
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4316
4344
|
thinkingOptionId?: string | null | undefined;
|
|
4317
4345
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
4318
4346
|
requiresAttention?: boolean | undefined;
|
|
@@ -4333,10 +4361,10 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
4333
4361
|
updatedAt: string;
|
|
4334
4362
|
lastUserMessageAt: string | null;
|
|
4335
4363
|
persistence: AgentPersistenceHandle | null;
|
|
4364
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4336
4365
|
capabilities: AgentCapabilityFlags;
|
|
4337
4366
|
currentModeId: string | null;
|
|
4338
4367
|
availableModes: AgentMode[];
|
|
4339
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4340
4368
|
thinkingOptionId?: string | null | undefined;
|
|
4341
4369
|
labels?: Record<string, string> | undefined;
|
|
4342
4370
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -4367,10 +4395,10 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
4367
4395
|
lastUserMessageAt: string | null;
|
|
4368
4396
|
labels: Record<string, string>;
|
|
4369
4397
|
persistence: AgentPersistenceHandle | null;
|
|
4398
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4370
4399
|
capabilities: AgentCapabilityFlags;
|
|
4371
4400
|
currentModeId: string | null;
|
|
4372
4401
|
availableModes: AgentMode[];
|
|
4373
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4374
4402
|
thinkingOptionId?: string | null | undefined;
|
|
4375
4403
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
4376
4404
|
requiresAttention?: boolean | undefined;
|
|
@@ -4396,10 +4424,10 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
4396
4424
|
updatedAt: string;
|
|
4397
4425
|
lastUserMessageAt: string | null;
|
|
4398
4426
|
persistence: AgentPersistenceHandle | null;
|
|
4427
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4399
4428
|
capabilities: AgentCapabilityFlags;
|
|
4400
4429
|
currentModeId: string | null;
|
|
4401
4430
|
availableModes: AgentMode[];
|
|
4402
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4403
4431
|
thinkingOptionId?: string | null | undefined;
|
|
4404
4432
|
labels?: Record<string, string> | undefined;
|
|
4405
4433
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -4464,10 +4492,10 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
4464
4492
|
lastUserMessageAt: string | null;
|
|
4465
4493
|
labels: Record<string, string>;
|
|
4466
4494
|
persistence: AgentPersistenceHandle | null;
|
|
4495
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4467
4496
|
capabilities: AgentCapabilityFlags;
|
|
4468
4497
|
currentModeId: string | null;
|
|
4469
4498
|
availableModes: AgentMode[];
|
|
4470
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4471
4499
|
thinkingOptionId?: string | null | undefined;
|
|
4472
4500
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
4473
4501
|
requiresAttention?: boolean | undefined;
|
|
@@ -4488,10 +4516,10 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
4488
4516
|
updatedAt: string;
|
|
4489
4517
|
lastUserMessageAt: string | null;
|
|
4490
4518
|
persistence: AgentPersistenceHandle | null;
|
|
4519
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4491
4520
|
capabilities: AgentCapabilityFlags;
|
|
4492
4521
|
currentModeId: string | null;
|
|
4493
4522
|
availableModes: AgentMode[];
|
|
4494
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4495
4523
|
thinkingOptionId?: string | null | undefined;
|
|
4496
4524
|
labels?: Record<string, string> | undefined;
|
|
4497
4525
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -4524,10 +4552,10 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
4524
4552
|
lastUserMessageAt: string | null;
|
|
4525
4553
|
labels: Record<string, string>;
|
|
4526
4554
|
persistence: AgentPersistenceHandle | null;
|
|
4555
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4527
4556
|
capabilities: AgentCapabilityFlags;
|
|
4528
4557
|
currentModeId: string | null;
|
|
4529
4558
|
availableModes: AgentMode[];
|
|
4530
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4531
4559
|
thinkingOptionId?: string | null | undefined;
|
|
4532
4560
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
4533
4561
|
requiresAttention?: boolean | undefined;
|
|
@@ -4554,10 +4582,10 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
4554
4582
|
updatedAt: string;
|
|
4555
4583
|
lastUserMessageAt: string | null;
|
|
4556
4584
|
persistence: AgentPersistenceHandle | null;
|
|
4585
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4557
4586
|
capabilities: AgentCapabilityFlags;
|
|
4558
4587
|
currentModeId: string | null;
|
|
4559
4588
|
availableModes: AgentMode[];
|
|
4560
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4561
4589
|
thinkingOptionId?: string | null | undefined;
|
|
4562
4590
|
labels?: Record<string, string> | undefined;
|
|
4563
4591
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -4657,10 +4685,10 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
4657
4685
|
lastUserMessageAt: string | null;
|
|
4658
4686
|
labels: Record<string, string>;
|
|
4659
4687
|
persistence: AgentPersistenceHandle | null;
|
|
4688
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4660
4689
|
capabilities: AgentCapabilityFlags;
|
|
4661
4690
|
currentModeId: string | null;
|
|
4662
4691
|
availableModes: AgentMode[];
|
|
4663
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4664
4692
|
thinkingOptionId?: string | null | undefined;
|
|
4665
4693
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
4666
4694
|
requiresAttention?: boolean | undefined;
|
|
@@ -4681,10 +4709,10 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
4681
4709
|
updatedAt: string;
|
|
4682
4710
|
lastUserMessageAt: string | null;
|
|
4683
4711
|
persistence: AgentPersistenceHandle | null;
|
|
4712
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4684
4713
|
capabilities: AgentCapabilityFlags;
|
|
4685
4714
|
currentModeId: string | null;
|
|
4686
4715
|
availableModes: AgentMode[];
|
|
4687
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4688
4716
|
thinkingOptionId?: string | null | undefined;
|
|
4689
4717
|
labels?: Record<string, string> | undefined;
|
|
4690
4718
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -4715,10 +4743,10 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
4715
4743
|
lastUserMessageAt: string | null;
|
|
4716
4744
|
labels: Record<string, string>;
|
|
4717
4745
|
persistence: AgentPersistenceHandle | null;
|
|
4746
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4718
4747
|
capabilities: AgentCapabilityFlags;
|
|
4719
4748
|
currentModeId: string | null;
|
|
4720
4749
|
availableModes: AgentMode[];
|
|
4721
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4722
4750
|
thinkingOptionId?: string | null | undefined;
|
|
4723
4751
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
4724
4752
|
requiresAttention?: boolean | undefined;
|
|
@@ -4744,10 +4772,10 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
4744
4772
|
updatedAt: string;
|
|
4745
4773
|
lastUserMessageAt: string | null;
|
|
4746
4774
|
persistence: AgentPersistenceHandle | null;
|
|
4775
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4747
4776
|
capabilities: AgentCapabilityFlags;
|
|
4748
4777
|
currentModeId: string | null;
|
|
4749
4778
|
availableModes: AgentMode[];
|
|
4750
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4751
4779
|
thinkingOptionId?: string | null | undefined;
|
|
4752
4780
|
labels?: Record<string, string> | undefined;
|
|
4753
4781
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -4810,10 +4838,10 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
4810
4838
|
lastUserMessageAt: string | null;
|
|
4811
4839
|
labels: Record<string, string>;
|
|
4812
4840
|
persistence: AgentPersistenceHandle | null;
|
|
4841
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4813
4842
|
capabilities: AgentCapabilityFlags;
|
|
4814
4843
|
currentModeId: string | null;
|
|
4815
4844
|
availableModes: AgentMode[];
|
|
4816
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4817
4845
|
thinkingOptionId?: string | null | undefined;
|
|
4818
4846
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
4819
4847
|
requiresAttention?: boolean | undefined;
|
|
@@ -4834,10 +4862,10 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
4834
4862
|
updatedAt: string;
|
|
4835
4863
|
lastUserMessageAt: string | null;
|
|
4836
4864
|
persistence: AgentPersistenceHandle | null;
|
|
4865
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4837
4866
|
capabilities: AgentCapabilityFlags;
|
|
4838
4867
|
currentModeId: string | null;
|
|
4839
4868
|
availableModes: AgentMode[];
|
|
4840
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4841
4869
|
thinkingOptionId?: string | null | undefined;
|
|
4842
4870
|
labels?: Record<string, string> | undefined;
|
|
4843
4871
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -4870,10 +4898,10 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
4870
4898
|
lastUserMessageAt: string | null;
|
|
4871
4899
|
labels: Record<string, string>;
|
|
4872
4900
|
persistence: AgentPersistenceHandle | null;
|
|
4901
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4873
4902
|
capabilities: AgentCapabilityFlags;
|
|
4874
4903
|
currentModeId: string | null;
|
|
4875
4904
|
availableModes: AgentMode[];
|
|
4876
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4877
4905
|
thinkingOptionId?: string | null | undefined;
|
|
4878
4906
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
4879
4907
|
requiresAttention?: boolean | undefined;
|
|
@@ -4900,10 +4928,10 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
4900
4928
|
updatedAt: string;
|
|
4901
4929
|
lastUserMessageAt: string | null;
|
|
4902
4930
|
persistence: AgentPersistenceHandle | null;
|
|
4931
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
4903
4932
|
capabilities: AgentCapabilityFlags;
|
|
4904
4933
|
currentModeId: string | null;
|
|
4905
4934
|
availableModes: AgentMode[];
|
|
4906
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
4907
4935
|
thinkingOptionId?: string | null | undefined;
|
|
4908
4936
|
labels?: Record<string, string> | undefined;
|
|
4909
4937
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -5291,10 +5319,10 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
5291
5319
|
lastUserMessageAt: string | null;
|
|
5292
5320
|
labels: Record<string, string>;
|
|
5293
5321
|
persistence: AgentPersistenceHandle | null;
|
|
5322
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
5294
5323
|
capabilities: AgentCapabilityFlags;
|
|
5295
5324
|
currentModeId: string | null;
|
|
5296
5325
|
availableModes: AgentMode[];
|
|
5297
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
5298
5326
|
thinkingOptionId?: string | null | undefined;
|
|
5299
5327
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
5300
5328
|
requiresAttention?: boolean | undefined;
|
|
@@ -5315,10 +5343,10 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
5315
5343
|
updatedAt: string;
|
|
5316
5344
|
lastUserMessageAt: string | null;
|
|
5317
5345
|
persistence: AgentPersistenceHandle | null;
|
|
5346
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
5318
5347
|
capabilities: AgentCapabilityFlags;
|
|
5319
5348
|
currentModeId: string | null;
|
|
5320
5349
|
availableModes: AgentMode[];
|
|
5321
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
5322
5350
|
thinkingOptionId?: string | null | undefined;
|
|
5323
5351
|
labels?: Record<string, string> | undefined;
|
|
5324
5352
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -5462,10 +5490,10 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
5462
5490
|
lastUserMessageAt: string | null;
|
|
5463
5491
|
labels: Record<string, string>;
|
|
5464
5492
|
persistence: AgentPersistenceHandle | null;
|
|
5493
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
5465
5494
|
capabilities: AgentCapabilityFlags;
|
|
5466
5495
|
currentModeId: string | null;
|
|
5467
5496
|
availableModes: AgentMode[];
|
|
5468
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
5469
5497
|
thinkingOptionId?: string | null | undefined;
|
|
5470
5498
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
5471
5499
|
requiresAttention?: boolean | undefined;
|
|
@@ -5515,10 +5543,10 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
5515
5543
|
updatedAt: string;
|
|
5516
5544
|
lastUserMessageAt: string | null;
|
|
5517
5545
|
persistence: AgentPersistenceHandle | null;
|
|
5546
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
5518
5547
|
capabilities: AgentCapabilityFlags;
|
|
5519
5548
|
currentModeId: string | null;
|
|
5520
5549
|
availableModes: AgentMode[];
|
|
5521
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
5522
5550
|
thinkingOptionId?: string | null | undefined;
|
|
5523
5551
|
labels?: Record<string, string> | undefined;
|
|
5524
5552
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -5582,10 +5610,10 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
5582
5610
|
lastUserMessageAt: string | null;
|
|
5583
5611
|
labels: Record<string, string>;
|
|
5584
5612
|
persistence: AgentPersistenceHandle | null;
|
|
5613
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
5585
5614
|
capabilities: AgentCapabilityFlags;
|
|
5586
5615
|
currentModeId: string | null;
|
|
5587
5616
|
availableModes: AgentMode[];
|
|
5588
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
5589
5617
|
thinkingOptionId?: string | null | undefined;
|
|
5590
5618
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
5591
5619
|
requiresAttention?: boolean | undefined;
|
|
@@ -5641,10 +5669,10 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
5641
5669
|
updatedAt: string;
|
|
5642
5670
|
lastUserMessageAt: string | null;
|
|
5643
5671
|
persistence: AgentPersistenceHandle | null;
|
|
5672
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
5644
5673
|
capabilities: AgentCapabilityFlags;
|
|
5645
5674
|
currentModeId: string | null;
|
|
5646
5675
|
availableModes: AgentMode[];
|
|
5647
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
5648
5676
|
thinkingOptionId?: string | null | undefined;
|
|
5649
5677
|
labels?: Record<string, string> | undefined;
|
|
5650
5678
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -5716,14 +5744,17 @@ export declare const AgentStreamMessageSchema: z.ZodObject<{
|
|
|
5716
5744
|
type: z.ZodLiteral<"turn_completed">;
|
|
5717
5745
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
5718
5746
|
usage: z.ZodOptional<z.ZodType<AgentUsage, z.ZodTypeDef, AgentUsage>>;
|
|
5747
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5719
5748
|
}, "strip", z.ZodTypeAny, {
|
|
5720
5749
|
provider: string;
|
|
5721
5750
|
type: "turn_completed";
|
|
5722
5751
|
usage?: AgentUsage | undefined;
|
|
5752
|
+
modelId?: string | null | undefined;
|
|
5723
5753
|
}, {
|
|
5724
5754
|
provider: string;
|
|
5725
5755
|
type: "turn_completed";
|
|
5726
5756
|
usage?: AgentUsage | undefined;
|
|
5757
|
+
modelId?: string | null | undefined;
|
|
5727
5758
|
}>, z.ZodObject<{
|
|
5728
5759
|
type: z.ZodLiteral<"turn_failed">;
|
|
5729
5760
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
@@ -5874,6 +5905,7 @@ export declare const AgentStreamMessageSchema: z.ZodObject<{
|
|
|
5874
5905
|
provider: string;
|
|
5875
5906
|
type: "turn_completed";
|
|
5876
5907
|
usage?: AgentUsage | undefined;
|
|
5908
|
+
modelId?: string | null | undefined;
|
|
5877
5909
|
} | {
|
|
5878
5910
|
error: string;
|
|
5879
5911
|
provider: string;
|
|
@@ -5927,6 +5959,7 @@ export declare const AgentStreamMessageSchema: z.ZodObject<{
|
|
|
5927
5959
|
provider: string;
|
|
5928
5960
|
type: "turn_completed";
|
|
5929
5961
|
usage?: AgentUsage | undefined;
|
|
5962
|
+
modelId?: string | null | undefined;
|
|
5930
5963
|
} | {
|
|
5931
5964
|
error: string;
|
|
5932
5965
|
provider: string;
|
|
@@ -5983,6 +6016,7 @@ export declare const AgentStreamMessageSchema: z.ZodObject<{
|
|
|
5983
6016
|
provider: string;
|
|
5984
6017
|
type: "turn_completed";
|
|
5985
6018
|
usage?: AgentUsage | undefined;
|
|
6019
|
+
modelId?: string | null | undefined;
|
|
5986
6020
|
} | {
|
|
5987
6021
|
error: string;
|
|
5988
6022
|
provider: string;
|
|
@@ -6039,6 +6073,7 @@ export declare const AgentStreamMessageSchema: z.ZodObject<{
|
|
|
6039
6073
|
provider: string;
|
|
6040
6074
|
type: "turn_completed";
|
|
6041
6075
|
usage?: AgentUsage | undefined;
|
|
6076
|
+
modelId?: string | null | undefined;
|
|
6042
6077
|
} | {
|
|
6043
6078
|
error: string;
|
|
6044
6079
|
provider: string;
|
|
@@ -6122,10 +6157,10 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
6122
6157
|
lastUserMessageAt: string | null;
|
|
6123
6158
|
labels: Record<string, string>;
|
|
6124
6159
|
persistence: AgentPersistenceHandle | null;
|
|
6160
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6125
6161
|
capabilities: AgentCapabilityFlags;
|
|
6126
6162
|
currentModeId: string | null;
|
|
6127
6163
|
availableModes: AgentMode[];
|
|
6128
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6129
6164
|
thinkingOptionId?: string | null | undefined;
|
|
6130
6165
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
6131
6166
|
requiresAttention?: boolean | undefined;
|
|
@@ -6146,10 +6181,10 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
6146
6181
|
updatedAt: string;
|
|
6147
6182
|
lastUserMessageAt: string | null;
|
|
6148
6183
|
persistence: AgentPersistenceHandle | null;
|
|
6184
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6149
6185
|
capabilities: AgentCapabilityFlags;
|
|
6150
6186
|
currentModeId: string | null;
|
|
6151
6187
|
availableModes: AgentMode[];
|
|
6152
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6153
6188
|
thinkingOptionId?: string | null | undefined;
|
|
6154
6189
|
labels?: Record<string, string> | undefined;
|
|
6155
6190
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -6176,10 +6211,10 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
6176
6211
|
lastUserMessageAt: string | null;
|
|
6177
6212
|
labels: Record<string, string>;
|
|
6178
6213
|
persistence: AgentPersistenceHandle | null;
|
|
6214
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6179
6215
|
capabilities: AgentCapabilityFlags;
|
|
6180
6216
|
currentModeId: string | null;
|
|
6181
6217
|
availableModes: AgentMode[];
|
|
6182
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6183
6218
|
thinkingOptionId?: string | null | undefined;
|
|
6184
6219
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
6185
6220
|
requiresAttention?: boolean | undefined;
|
|
@@ -6204,10 +6239,10 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
6204
6239
|
updatedAt: string;
|
|
6205
6240
|
lastUserMessageAt: string | null;
|
|
6206
6241
|
persistence: AgentPersistenceHandle | null;
|
|
6242
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6207
6243
|
capabilities: AgentCapabilityFlags;
|
|
6208
6244
|
currentModeId: string | null;
|
|
6209
6245
|
availableModes: AgentMode[];
|
|
6210
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6211
6246
|
thinkingOptionId?: string | null | undefined;
|
|
6212
6247
|
labels?: Record<string, string> | undefined;
|
|
6213
6248
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -6237,10 +6272,10 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
6237
6272
|
lastUserMessageAt: string | null;
|
|
6238
6273
|
labels: Record<string, string>;
|
|
6239
6274
|
persistence: AgentPersistenceHandle | null;
|
|
6275
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6240
6276
|
capabilities: AgentCapabilityFlags;
|
|
6241
6277
|
currentModeId: string | null;
|
|
6242
6278
|
availableModes: AgentMode[];
|
|
6243
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6244
6279
|
thinkingOptionId?: string | null | undefined;
|
|
6245
6280
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
6246
6281
|
requiresAttention?: boolean | undefined;
|
|
@@ -6268,10 +6303,10 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
6268
6303
|
updatedAt: string;
|
|
6269
6304
|
lastUserMessageAt: string | null;
|
|
6270
6305
|
persistence: AgentPersistenceHandle | null;
|
|
6306
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6271
6307
|
capabilities: AgentCapabilityFlags;
|
|
6272
6308
|
currentModeId: string | null;
|
|
6273
6309
|
availableModes: AgentMode[];
|
|
6274
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6275
6310
|
thinkingOptionId?: string | null | undefined;
|
|
6276
6311
|
labels?: Record<string, string> | undefined;
|
|
6277
6312
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -6325,10 +6360,10 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
6325
6360
|
lastUserMessageAt: string | null;
|
|
6326
6361
|
labels: Record<string, string>;
|
|
6327
6362
|
persistence: AgentPersistenceHandle | null;
|
|
6363
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6328
6364
|
capabilities: AgentCapabilityFlags;
|
|
6329
6365
|
currentModeId: string | null;
|
|
6330
6366
|
availableModes: AgentMode[];
|
|
6331
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6332
6367
|
thinkingOptionId?: string | null | undefined;
|
|
6333
6368
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
6334
6369
|
requiresAttention?: boolean | undefined;
|
|
@@ -6349,10 +6384,10 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
6349
6384
|
updatedAt: string;
|
|
6350
6385
|
lastUserMessageAt: string | null;
|
|
6351
6386
|
persistence: AgentPersistenceHandle | null;
|
|
6387
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6352
6388
|
capabilities: AgentCapabilityFlags;
|
|
6353
6389
|
currentModeId: string | null;
|
|
6354
6390
|
availableModes: AgentMode[];
|
|
6355
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6356
6391
|
thinkingOptionId?: string | null | undefined;
|
|
6357
6392
|
labels?: Record<string, string> | undefined;
|
|
6358
6393
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -6377,10 +6412,10 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
6377
6412
|
lastUserMessageAt: string | null;
|
|
6378
6413
|
labels: Record<string, string>;
|
|
6379
6414
|
persistence: AgentPersistenceHandle | null;
|
|
6415
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6380
6416
|
capabilities: AgentCapabilityFlags;
|
|
6381
6417
|
currentModeId: string | null;
|
|
6382
6418
|
availableModes: AgentMode[];
|
|
6383
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6384
6419
|
thinkingOptionId?: string | null | undefined;
|
|
6385
6420
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
6386
6421
|
requiresAttention?: boolean | undefined;
|
|
@@ -6403,10 +6438,10 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
6403
6438
|
updatedAt: string;
|
|
6404
6439
|
lastUserMessageAt: string | null;
|
|
6405
6440
|
persistence: AgentPersistenceHandle | null;
|
|
6441
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6406
6442
|
capabilities: AgentCapabilityFlags;
|
|
6407
6443
|
currentModeId: string | null;
|
|
6408
6444
|
availableModes: AgentMode[];
|
|
6409
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6410
6445
|
thinkingOptionId?: string | null | undefined;
|
|
6411
6446
|
labels?: Record<string, string> | undefined;
|
|
6412
6447
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -6434,10 +6469,10 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
6434
6469
|
lastUserMessageAt: string | null;
|
|
6435
6470
|
labels: Record<string, string>;
|
|
6436
6471
|
persistence: AgentPersistenceHandle | null;
|
|
6472
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6437
6473
|
capabilities: AgentCapabilityFlags;
|
|
6438
6474
|
currentModeId: string | null;
|
|
6439
6475
|
availableModes: AgentMode[];
|
|
6440
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6441
6476
|
thinkingOptionId?: string | null | undefined;
|
|
6442
6477
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
6443
6478
|
requiresAttention?: boolean | undefined;
|
|
@@ -6463,10 +6498,10 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
6463
6498
|
updatedAt: string;
|
|
6464
6499
|
lastUserMessageAt: string | null;
|
|
6465
6500
|
persistence: AgentPersistenceHandle | null;
|
|
6501
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6466
6502
|
capabilities: AgentCapabilityFlags;
|
|
6467
6503
|
currentModeId: string | null;
|
|
6468
6504
|
availableModes: AgentMode[];
|
|
6469
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6470
6505
|
thinkingOptionId?: string | null | undefined;
|
|
6471
6506
|
labels?: Record<string, string> | undefined;
|
|
6472
6507
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -6523,10 +6558,10 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
6523
6558
|
lastUserMessageAt: string | null;
|
|
6524
6559
|
labels: Record<string, string>;
|
|
6525
6560
|
persistence: AgentPersistenceHandle | null;
|
|
6561
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6526
6562
|
capabilities: AgentCapabilityFlags;
|
|
6527
6563
|
currentModeId: string | null;
|
|
6528
6564
|
availableModes: AgentMode[];
|
|
6529
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6530
6565
|
thinkingOptionId?: string | null | undefined;
|
|
6531
6566
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
6532
6567
|
requiresAttention?: boolean | undefined;
|
|
@@ -6547,10 +6582,10 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
6547
6582
|
updatedAt: string;
|
|
6548
6583
|
lastUserMessageAt: string | null;
|
|
6549
6584
|
persistence: AgentPersistenceHandle | null;
|
|
6585
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6550
6586
|
capabilities: AgentCapabilityFlags;
|
|
6551
6587
|
currentModeId: string | null;
|
|
6552
6588
|
availableModes: AgentMode[];
|
|
6553
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6554
6589
|
thinkingOptionId?: string | null | undefined;
|
|
6555
6590
|
labels?: Record<string, string> | undefined;
|
|
6556
6591
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -6693,10 +6728,10 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
6693
6728
|
lastUserMessageAt: string | null;
|
|
6694
6729
|
labels: Record<string, string>;
|
|
6695
6730
|
persistence: AgentPersistenceHandle | null;
|
|
6731
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6696
6732
|
capabilities: AgentCapabilityFlags;
|
|
6697
6733
|
currentModeId: string | null;
|
|
6698
6734
|
availableModes: AgentMode[];
|
|
6699
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6700
6735
|
thinkingOptionId?: string | null | undefined;
|
|
6701
6736
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
6702
6737
|
requiresAttention?: boolean | undefined;
|
|
@@ -6745,10 +6780,10 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
6745
6780
|
updatedAt: string;
|
|
6746
6781
|
lastUserMessageAt: string | null;
|
|
6747
6782
|
persistence: AgentPersistenceHandle | null;
|
|
6783
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6748
6784
|
capabilities: AgentCapabilityFlags;
|
|
6749
6785
|
currentModeId: string | null;
|
|
6750
6786
|
availableModes: AgentMode[];
|
|
6751
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6752
6787
|
thinkingOptionId?: string | null | undefined;
|
|
6753
6788
|
labels?: Record<string, string> | undefined;
|
|
6754
6789
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -6814,10 +6849,10 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
6814
6849
|
lastUserMessageAt: string | null;
|
|
6815
6850
|
labels: Record<string, string>;
|
|
6816
6851
|
persistence: AgentPersistenceHandle | null;
|
|
6852
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6817
6853
|
capabilities: AgentCapabilityFlags;
|
|
6818
6854
|
currentModeId: string | null;
|
|
6819
6855
|
availableModes: AgentMode[];
|
|
6820
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6821
6856
|
thinkingOptionId?: string | null | undefined;
|
|
6822
6857
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
6823
6858
|
requiresAttention?: boolean | undefined;
|
|
@@ -6875,10 +6910,10 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
6875
6910
|
updatedAt: string;
|
|
6876
6911
|
lastUserMessageAt: string | null;
|
|
6877
6912
|
persistence: AgentPersistenceHandle | null;
|
|
6913
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6878
6914
|
capabilities: AgentCapabilityFlags;
|
|
6879
6915
|
currentModeId: string | null;
|
|
6880
6916
|
availableModes: AgentMode[];
|
|
6881
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6882
6917
|
thinkingOptionId?: string | null | undefined;
|
|
6883
6918
|
labels?: Record<string, string> | undefined;
|
|
6884
6919
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -6941,10 +6976,10 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
6941
6976
|
lastUserMessageAt: string | null;
|
|
6942
6977
|
labels: Record<string, string>;
|
|
6943
6978
|
persistence: AgentPersistenceHandle | null;
|
|
6979
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
6944
6980
|
capabilities: AgentCapabilityFlags;
|
|
6945
6981
|
currentModeId: string | null;
|
|
6946
6982
|
availableModes: AgentMode[];
|
|
6947
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
6948
6983
|
thinkingOptionId?: string | null | undefined;
|
|
6949
6984
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
6950
6985
|
requiresAttention?: boolean | undefined;
|
|
@@ -7005,10 +7040,10 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
7005
7040
|
updatedAt: string;
|
|
7006
7041
|
lastUserMessageAt: string | null;
|
|
7007
7042
|
persistence: AgentPersistenceHandle | null;
|
|
7043
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7008
7044
|
capabilities: AgentCapabilityFlags;
|
|
7009
7045
|
currentModeId: string | null;
|
|
7010
7046
|
availableModes: AgentMode[];
|
|
7011
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7012
7047
|
thinkingOptionId?: string | null | undefined;
|
|
7013
7048
|
labels?: Record<string, string> | undefined;
|
|
7014
7049
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -7097,10 +7132,10 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
7097
7132
|
lastUserMessageAt: string | null;
|
|
7098
7133
|
labels: Record<string, string>;
|
|
7099
7134
|
persistence: AgentPersistenceHandle | null;
|
|
7135
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7100
7136
|
capabilities: AgentCapabilityFlags;
|
|
7101
7137
|
currentModeId: string | null;
|
|
7102
7138
|
availableModes: AgentMode[];
|
|
7103
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7104
7139
|
thinkingOptionId?: string | null | undefined;
|
|
7105
7140
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
7106
7141
|
requiresAttention?: boolean | undefined;
|
|
@@ -7121,10 +7156,10 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
7121
7156
|
updatedAt: string;
|
|
7122
7157
|
lastUserMessageAt: string | null;
|
|
7123
7158
|
persistence: AgentPersistenceHandle | null;
|
|
7159
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7124
7160
|
capabilities: AgentCapabilityFlags;
|
|
7125
7161
|
currentModeId: string | null;
|
|
7126
7162
|
availableModes: AgentMode[];
|
|
7127
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7128
7163
|
thinkingOptionId?: string | null | undefined;
|
|
7129
7164
|
labels?: Record<string, string> | undefined;
|
|
7130
7165
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -7270,10 +7305,10 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
7270
7305
|
lastUserMessageAt: string | null;
|
|
7271
7306
|
labels: Record<string, string>;
|
|
7272
7307
|
persistence: AgentPersistenceHandle | null;
|
|
7308
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7273
7309
|
capabilities: AgentCapabilityFlags;
|
|
7274
7310
|
currentModeId: string | null;
|
|
7275
7311
|
availableModes: AgentMode[];
|
|
7276
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7277
7312
|
thinkingOptionId?: string | null | undefined;
|
|
7278
7313
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
7279
7314
|
requiresAttention?: boolean | undefined;
|
|
@@ -7324,10 +7359,10 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
7324
7359
|
updatedAt: string;
|
|
7325
7360
|
lastUserMessageAt: string | null;
|
|
7326
7361
|
persistence: AgentPersistenceHandle | null;
|
|
7362
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7327
7363
|
capabilities: AgentCapabilityFlags;
|
|
7328
7364
|
currentModeId: string | null;
|
|
7329
7365
|
availableModes: AgentMode[];
|
|
7330
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7331
7366
|
thinkingOptionId?: string | null | undefined;
|
|
7332
7367
|
labels?: Record<string, string> | undefined;
|
|
7333
7368
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -7383,10 +7418,10 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
7383
7418
|
lastUserMessageAt: string | null;
|
|
7384
7419
|
labels: Record<string, string>;
|
|
7385
7420
|
persistence: AgentPersistenceHandle | null;
|
|
7421
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7386
7422
|
capabilities: AgentCapabilityFlags;
|
|
7387
7423
|
currentModeId: string | null;
|
|
7388
7424
|
availableModes: AgentMode[];
|
|
7389
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7390
7425
|
thinkingOptionId?: string | null | undefined;
|
|
7391
7426
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
7392
7427
|
requiresAttention?: boolean | undefined;
|
|
@@ -7440,10 +7475,10 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
7440
7475
|
updatedAt: string;
|
|
7441
7476
|
lastUserMessageAt: string | null;
|
|
7442
7477
|
persistence: AgentPersistenceHandle | null;
|
|
7478
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7443
7479
|
capabilities: AgentCapabilityFlags;
|
|
7444
7480
|
currentModeId: string | null;
|
|
7445
7481
|
availableModes: AgentMode[];
|
|
7446
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7447
7482
|
thinkingOptionId?: string | null | undefined;
|
|
7448
7483
|
labels?: Record<string, string> | undefined;
|
|
7449
7484
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -7843,10 +7878,10 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
7843
7878
|
lastUserMessageAt: string | null;
|
|
7844
7879
|
labels: Record<string, string>;
|
|
7845
7880
|
persistence: AgentPersistenceHandle | null;
|
|
7881
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7846
7882
|
capabilities: AgentCapabilityFlags;
|
|
7847
7883
|
currentModeId: string | null;
|
|
7848
7884
|
availableModes: AgentMode[];
|
|
7849
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7850
7885
|
thinkingOptionId?: string | null | undefined;
|
|
7851
7886
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
7852
7887
|
requiresAttention?: boolean | undefined;
|
|
@@ -7867,10 +7902,10 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
7867
7902
|
updatedAt: string;
|
|
7868
7903
|
lastUserMessageAt: string | null;
|
|
7869
7904
|
persistence: AgentPersistenceHandle | null;
|
|
7905
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7870
7906
|
capabilities: AgentCapabilityFlags;
|
|
7871
7907
|
currentModeId: string | null;
|
|
7872
7908
|
availableModes: AgentMode[];
|
|
7873
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7874
7909
|
thinkingOptionId?: string | null | undefined;
|
|
7875
7910
|
labels?: Record<string, string> | undefined;
|
|
7876
7911
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -7900,10 +7935,10 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
7900
7935
|
lastUserMessageAt: string | null;
|
|
7901
7936
|
labels: Record<string, string>;
|
|
7902
7937
|
persistence: AgentPersistenceHandle | null;
|
|
7938
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7903
7939
|
capabilities: AgentCapabilityFlags;
|
|
7904
7940
|
currentModeId: string | null;
|
|
7905
7941
|
availableModes: AgentMode[];
|
|
7906
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7907
7942
|
thinkingOptionId?: string | null | undefined;
|
|
7908
7943
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
7909
7944
|
requiresAttention?: boolean | undefined;
|
|
@@ -7930,10 +7965,10 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
7930
7965
|
updatedAt: string;
|
|
7931
7966
|
lastUserMessageAt: string | null;
|
|
7932
7967
|
persistence: AgentPersistenceHandle | null;
|
|
7968
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7933
7969
|
capabilities: AgentCapabilityFlags;
|
|
7934
7970
|
currentModeId: string | null;
|
|
7935
7971
|
availableModes: AgentMode[];
|
|
7936
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7937
7972
|
thinkingOptionId?: string | null | undefined;
|
|
7938
7973
|
labels?: Record<string, string> | undefined;
|
|
7939
7974
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -7965,10 +8000,10 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
7965
8000
|
lastUserMessageAt: string | null;
|
|
7966
8001
|
labels: Record<string, string>;
|
|
7967
8002
|
persistence: AgentPersistenceHandle | null;
|
|
8003
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
7968
8004
|
capabilities: AgentCapabilityFlags;
|
|
7969
8005
|
currentModeId: string | null;
|
|
7970
8006
|
availableModes: AgentMode[];
|
|
7971
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
7972
8007
|
thinkingOptionId?: string | null | undefined;
|
|
7973
8008
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
7974
8009
|
requiresAttention?: boolean | undefined;
|
|
@@ -7998,10 +8033,10 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
7998
8033
|
updatedAt: string;
|
|
7999
8034
|
lastUserMessageAt: string | null;
|
|
8000
8035
|
persistence: AgentPersistenceHandle | null;
|
|
8036
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
8001
8037
|
capabilities: AgentCapabilityFlags;
|
|
8002
8038
|
currentModeId: string | null;
|
|
8003
8039
|
availableModes: AgentMode[];
|
|
8004
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
8005
8040
|
thinkingOptionId?: string | null | undefined;
|
|
8006
8041
|
labels?: Record<string, string> | undefined;
|
|
8007
8042
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -10750,6 +10785,13 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10750
10785
|
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
10751
10786
|
configuredPath: z.ZodNullable<z.ZodString>;
|
|
10752
10787
|
remediation: z.ZodNullable<z.ZodString>;
|
|
10788
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10789
|
+
compatibilityStatus: z.ZodOptional<z.ZodEnum<["supported", "unsupported", "unknown"]>>;
|
|
10790
|
+
}, "strip", z.ZodTypeAny, {
|
|
10791
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10792
|
+
}, {
|
|
10793
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10794
|
+
}>>>;
|
|
10753
10795
|
}, "strip", z.ZodTypeAny, {
|
|
10754
10796
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
10755
10797
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -10759,6 +10801,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10759
10801
|
resolvedPath: string | null;
|
|
10760
10802
|
configuredPath: string | null;
|
|
10761
10803
|
remediation: string | null;
|
|
10804
|
+
details?: {
|
|
10805
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10806
|
+
} | null | undefined;
|
|
10762
10807
|
}, {
|
|
10763
10808
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
10764
10809
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -10768,6 +10813,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10768
10813
|
resolvedPath: string | null;
|
|
10769
10814
|
configuredPath: string | null;
|
|
10770
10815
|
remediation: string | null;
|
|
10816
|
+
details?: {
|
|
10817
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10818
|
+
} | null | undefined;
|
|
10771
10819
|
}>, "many">;
|
|
10772
10820
|
ranAt: z.ZodString;
|
|
10773
10821
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -10792,6 +10840,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10792
10840
|
resolvedPath: string | null;
|
|
10793
10841
|
configuredPath: string | null;
|
|
10794
10842
|
remediation: string | null;
|
|
10843
|
+
details?: {
|
|
10844
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10845
|
+
} | null | undefined;
|
|
10795
10846
|
}[];
|
|
10796
10847
|
ranAt: string;
|
|
10797
10848
|
update?: {
|
|
@@ -10823,6 +10874,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10823
10874
|
resolvedPath: string | null;
|
|
10824
10875
|
configuredPath: string | null;
|
|
10825
10876
|
remediation: string | null;
|
|
10877
|
+
details?: {
|
|
10878
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10879
|
+
} | null | undefined;
|
|
10826
10880
|
}[];
|
|
10827
10881
|
ranAt: string;
|
|
10828
10882
|
update?: {
|
|
@@ -10857,6 +10911,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10857
10911
|
resolvedPath: string | null;
|
|
10858
10912
|
configuredPath: string | null;
|
|
10859
10913
|
remediation: string | null;
|
|
10914
|
+
details?: {
|
|
10915
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10916
|
+
} | null | undefined;
|
|
10860
10917
|
}[];
|
|
10861
10918
|
ranAt: string;
|
|
10862
10919
|
update?: {
|
|
@@ -10891,6 +10948,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10891
10948
|
resolvedPath: string | null;
|
|
10892
10949
|
configuredPath: string | null;
|
|
10893
10950
|
remediation: string | null;
|
|
10951
|
+
details?: {
|
|
10952
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10953
|
+
} | null | undefined;
|
|
10894
10954
|
}[];
|
|
10895
10955
|
ranAt: string;
|
|
10896
10956
|
update?: {
|
|
@@ -12272,10 +12332,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12272
12332
|
lastUserMessageAt: string | null;
|
|
12273
12333
|
labels: Record<string, string>;
|
|
12274
12334
|
persistence: AgentPersistenceHandle | null;
|
|
12335
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
12275
12336
|
capabilities: AgentCapabilityFlags;
|
|
12276
12337
|
currentModeId: string | null;
|
|
12277
12338
|
availableModes: AgentMode[];
|
|
12278
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
12279
12339
|
thinkingOptionId?: string | null | undefined;
|
|
12280
12340
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
12281
12341
|
requiresAttention?: boolean | undefined;
|
|
@@ -12296,10 +12356,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12296
12356
|
updatedAt: string;
|
|
12297
12357
|
lastUserMessageAt: string | null;
|
|
12298
12358
|
persistence: AgentPersistenceHandle | null;
|
|
12359
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
12299
12360
|
capabilities: AgentCapabilityFlags;
|
|
12300
12361
|
currentModeId: string | null;
|
|
12301
12362
|
availableModes: AgentMode[];
|
|
12302
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
12303
12363
|
thinkingOptionId?: string | null | undefined;
|
|
12304
12364
|
labels?: Record<string, string> | undefined;
|
|
12305
12365
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -12443,10 +12503,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12443
12503
|
lastUserMessageAt: string | null;
|
|
12444
12504
|
labels: Record<string, string>;
|
|
12445
12505
|
persistence: AgentPersistenceHandle | null;
|
|
12506
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
12446
12507
|
capabilities: AgentCapabilityFlags;
|
|
12447
12508
|
currentModeId: string | null;
|
|
12448
12509
|
availableModes: AgentMode[];
|
|
12449
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
12450
12510
|
thinkingOptionId?: string | null | undefined;
|
|
12451
12511
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
12452
12512
|
requiresAttention?: boolean | undefined;
|
|
@@ -12496,10 +12556,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12496
12556
|
updatedAt: string;
|
|
12497
12557
|
lastUserMessageAt: string | null;
|
|
12498
12558
|
persistence: AgentPersistenceHandle | null;
|
|
12559
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
12499
12560
|
capabilities: AgentCapabilityFlags;
|
|
12500
12561
|
currentModeId: string | null;
|
|
12501
12562
|
availableModes: AgentMode[];
|
|
12502
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
12503
12563
|
thinkingOptionId?: string | null | undefined;
|
|
12504
12564
|
labels?: Record<string, string> | undefined;
|
|
12505
12565
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -12563,10 +12623,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12563
12623
|
lastUserMessageAt: string | null;
|
|
12564
12624
|
labels: Record<string, string>;
|
|
12565
12625
|
persistence: AgentPersistenceHandle | null;
|
|
12626
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
12566
12627
|
capabilities: AgentCapabilityFlags;
|
|
12567
12628
|
currentModeId: string | null;
|
|
12568
12629
|
availableModes: AgentMode[];
|
|
12569
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
12570
12630
|
thinkingOptionId?: string | null | undefined;
|
|
12571
12631
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
12572
12632
|
requiresAttention?: boolean | undefined;
|
|
@@ -12622,10 +12682,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12622
12682
|
updatedAt: string;
|
|
12623
12683
|
lastUserMessageAt: string | null;
|
|
12624
12684
|
persistence: AgentPersistenceHandle | null;
|
|
12685
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
12625
12686
|
capabilities: AgentCapabilityFlags;
|
|
12626
12687
|
currentModeId: string | null;
|
|
12627
12688
|
availableModes: AgentMode[];
|
|
12628
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
12629
12689
|
thinkingOptionId?: string | null | undefined;
|
|
12630
12690
|
labels?: Record<string, string> | undefined;
|
|
12631
12691
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -12696,14 +12756,17 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12696
12756
|
type: z.ZodLiteral<"turn_completed">;
|
|
12697
12757
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
12698
12758
|
usage: z.ZodOptional<z.ZodType<AgentUsage, z.ZodTypeDef, AgentUsage>>;
|
|
12759
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12699
12760
|
}, "strip", z.ZodTypeAny, {
|
|
12700
12761
|
provider: string;
|
|
12701
12762
|
type: "turn_completed";
|
|
12702
12763
|
usage?: AgentUsage | undefined;
|
|
12764
|
+
modelId?: string | null | undefined;
|
|
12703
12765
|
}, {
|
|
12704
12766
|
provider: string;
|
|
12705
12767
|
type: "turn_completed";
|
|
12706
12768
|
usage?: AgentUsage | undefined;
|
|
12769
|
+
modelId?: string | null | undefined;
|
|
12707
12770
|
}>, z.ZodObject<{
|
|
12708
12771
|
type: z.ZodLiteral<"turn_failed">;
|
|
12709
12772
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
@@ -12854,6 +12917,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12854
12917
|
provider: string;
|
|
12855
12918
|
type: "turn_completed";
|
|
12856
12919
|
usage?: AgentUsage | undefined;
|
|
12920
|
+
modelId?: string | null | undefined;
|
|
12857
12921
|
} | {
|
|
12858
12922
|
error: string;
|
|
12859
12923
|
provider: string;
|
|
@@ -12907,6 +12971,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12907
12971
|
provider: string;
|
|
12908
12972
|
type: "turn_completed";
|
|
12909
12973
|
usage?: AgentUsage | undefined;
|
|
12974
|
+
modelId?: string | null | undefined;
|
|
12910
12975
|
} | {
|
|
12911
12976
|
error: string;
|
|
12912
12977
|
provider: string;
|
|
@@ -12963,6 +13028,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12963
13028
|
provider: string;
|
|
12964
13029
|
type: "turn_completed";
|
|
12965
13030
|
usage?: AgentUsage | undefined;
|
|
13031
|
+
modelId?: string | null | undefined;
|
|
12966
13032
|
} | {
|
|
12967
13033
|
error: string;
|
|
12968
13034
|
provider: string;
|
|
@@ -13019,6 +13085,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13019
13085
|
provider: string;
|
|
13020
13086
|
type: "turn_completed";
|
|
13021
13087
|
usage?: AgentUsage | undefined;
|
|
13088
|
+
modelId?: string | null | undefined;
|
|
13022
13089
|
} | {
|
|
13023
13090
|
error: string;
|
|
13024
13091
|
provider: string;
|
|
@@ -13101,10 +13168,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13101
13168
|
lastUserMessageAt: string | null;
|
|
13102
13169
|
labels: Record<string, string>;
|
|
13103
13170
|
persistence: AgentPersistenceHandle | null;
|
|
13171
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13104
13172
|
capabilities: AgentCapabilityFlags;
|
|
13105
13173
|
currentModeId: string | null;
|
|
13106
13174
|
availableModes: AgentMode[];
|
|
13107
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13108
13175
|
thinkingOptionId?: string | null | undefined;
|
|
13109
13176
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
13110
13177
|
requiresAttention?: boolean | undefined;
|
|
@@ -13125,10 +13192,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13125
13192
|
updatedAt: string;
|
|
13126
13193
|
lastUserMessageAt: string | null;
|
|
13127
13194
|
persistence: AgentPersistenceHandle | null;
|
|
13195
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13128
13196
|
capabilities: AgentCapabilityFlags;
|
|
13129
13197
|
currentModeId: string | null;
|
|
13130
13198
|
availableModes: AgentMode[];
|
|
13131
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13132
13199
|
thinkingOptionId?: string | null | undefined;
|
|
13133
13200
|
labels?: Record<string, string> | undefined;
|
|
13134
13201
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -13155,10 +13222,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13155
13222
|
lastUserMessageAt: string | null;
|
|
13156
13223
|
labels: Record<string, string>;
|
|
13157
13224
|
persistence: AgentPersistenceHandle | null;
|
|
13225
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13158
13226
|
capabilities: AgentCapabilityFlags;
|
|
13159
13227
|
currentModeId: string | null;
|
|
13160
13228
|
availableModes: AgentMode[];
|
|
13161
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13162
13229
|
thinkingOptionId?: string | null | undefined;
|
|
13163
13230
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
13164
13231
|
requiresAttention?: boolean | undefined;
|
|
@@ -13183,10 +13250,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13183
13250
|
updatedAt: string;
|
|
13184
13251
|
lastUserMessageAt: string | null;
|
|
13185
13252
|
persistence: AgentPersistenceHandle | null;
|
|
13253
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13186
13254
|
capabilities: AgentCapabilityFlags;
|
|
13187
13255
|
currentModeId: string | null;
|
|
13188
13256
|
availableModes: AgentMode[];
|
|
13189
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13190
13257
|
thinkingOptionId?: string | null | undefined;
|
|
13191
13258
|
labels?: Record<string, string> | undefined;
|
|
13192
13259
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -13216,10 +13283,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13216
13283
|
lastUserMessageAt: string | null;
|
|
13217
13284
|
labels: Record<string, string>;
|
|
13218
13285
|
persistence: AgentPersistenceHandle | null;
|
|
13286
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13219
13287
|
capabilities: AgentCapabilityFlags;
|
|
13220
13288
|
currentModeId: string | null;
|
|
13221
13289
|
availableModes: AgentMode[];
|
|
13222
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13223
13290
|
thinkingOptionId?: string | null | undefined;
|
|
13224
13291
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
13225
13292
|
requiresAttention?: boolean | undefined;
|
|
@@ -13247,10 +13314,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13247
13314
|
updatedAt: string;
|
|
13248
13315
|
lastUserMessageAt: string | null;
|
|
13249
13316
|
persistence: AgentPersistenceHandle | null;
|
|
13317
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13250
13318
|
capabilities: AgentCapabilityFlags;
|
|
13251
13319
|
currentModeId: string | null;
|
|
13252
13320
|
availableModes: AgentMode[];
|
|
13253
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13254
13321
|
thinkingOptionId?: string | null | undefined;
|
|
13255
13322
|
labels?: Record<string, string> | undefined;
|
|
13256
13323
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -13306,10 +13373,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13306
13373
|
lastUserMessageAt: string | null;
|
|
13307
13374
|
labels: Record<string, string>;
|
|
13308
13375
|
persistence: AgentPersistenceHandle | null;
|
|
13376
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13309
13377
|
capabilities: AgentCapabilityFlags;
|
|
13310
13378
|
currentModeId: string | null;
|
|
13311
13379
|
availableModes: AgentMode[];
|
|
13312
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13313
13380
|
thinkingOptionId?: string | null | undefined;
|
|
13314
13381
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
13315
13382
|
requiresAttention?: boolean | undefined;
|
|
@@ -13330,10 +13397,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13330
13397
|
updatedAt: string;
|
|
13331
13398
|
lastUserMessageAt: string | null;
|
|
13332
13399
|
persistence: AgentPersistenceHandle | null;
|
|
13400
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13333
13401
|
capabilities: AgentCapabilityFlags;
|
|
13334
13402
|
currentModeId: string | null;
|
|
13335
13403
|
availableModes: AgentMode[];
|
|
13336
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13337
13404
|
thinkingOptionId?: string | null | undefined;
|
|
13338
13405
|
labels?: Record<string, string> | undefined;
|
|
13339
13406
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -13476,10 +13543,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13476
13543
|
lastUserMessageAt: string | null;
|
|
13477
13544
|
labels: Record<string, string>;
|
|
13478
13545
|
persistence: AgentPersistenceHandle | null;
|
|
13546
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13479
13547
|
capabilities: AgentCapabilityFlags;
|
|
13480
13548
|
currentModeId: string | null;
|
|
13481
13549
|
availableModes: AgentMode[];
|
|
13482
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13483
13550
|
thinkingOptionId?: string | null | undefined;
|
|
13484
13551
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
13485
13552
|
requiresAttention?: boolean | undefined;
|
|
@@ -13528,10 +13595,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13528
13595
|
updatedAt: string;
|
|
13529
13596
|
lastUserMessageAt: string | null;
|
|
13530
13597
|
persistence: AgentPersistenceHandle | null;
|
|
13598
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13531
13599
|
capabilities: AgentCapabilityFlags;
|
|
13532
13600
|
currentModeId: string | null;
|
|
13533
13601
|
availableModes: AgentMode[];
|
|
13534
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13535
13602
|
thinkingOptionId?: string | null | undefined;
|
|
13536
13603
|
labels?: Record<string, string> | undefined;
|
|
13537
13604
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -13597,10 +13664,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13597
13664
|
lastUserMessageAt: string | null;
|
|
13598
13665
|
labels: Record<string, string>;
|
|
13599
13666
|
persistence: AgentPersistenceHandle | null;
|
|
13667
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13600
13668
|
capabilities: AgentCapabilityFlags;
|
|
13601
13669
|
currentModeId: string | null;
|
|
13602
13670
|
availableModes: AgentMode[];
|
|
13603
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13604
13671
|
thinkingOptionId?: string | null | undefined;
|
|
13605
13672
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
13606
13673
|
requiresAttention?: boolean | undefined;
|
|
@@ -13658,10 +13725,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13658
13725
|
updatedAt: string;
|
|
13659
13726
|
lastUserMessageAt: string | null;
|
|
13660
13727
|
persistence: AgentPersistenceHandle | null;
|
|
13728
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13661
13729
|
capabilities: AgentCapabilityFlags;
|
|
13662
13730
|
currentModeId: string | null;
|
|
13663
13731
|
availableModes: AgentMode[];
|
|
13664
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13665
13732
|
thinkingOptionId?: string | null | undefined;
|
|
13666
13733
|
labels?: Record<string, string> | undefined;
|
|
13667
13734
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -13724,10 +13791,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13724
13791
|
lastUserMessageAt: string | null;
|
|
13725
13792
|
labels: Record<string, string>;
|
|
13726
13793
|
persistence: AgentPersistenceHandle | null;
|
|
13794
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13727
13795
|
capabilities: AgentCapabilityFlags;
|
|
13728
13796
|
currentModeId: string | null;
|
|
13729
13797
|
availableModes: AgentMode[];
|
|
13730
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13731
13798
|
thinkingOptionId?: string | null | undefined;
|
|
13732
13799
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
13733
13800
|
requiresAttention?: boolean | undefined;
|
|
@@ -13788,10 +13855,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13788
13855
|
updatedAt: string;
|
|
13789
13856
|
lastUserMessageAt: string | null;
|
|
13790
13857
|
persistence: AgentPersistenceHandle | null;
|
|
13858
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13791
13859
|
capabilities: AgentCapabilityFlags;
|
|
13792
13860
|
currentModeId: string | null;
|
|
13793
13861
|
availableModes: AgentMode[];
|
|
13794
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13795
13862
|
thinkingOptionId?: string | null | undefined;
|
|
13796
13863
|
labels?: Record<string, string> | undefined;
|
|
13797
13864
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -13879,10 +13946,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13879
13946
|
lastUserMessageAt: string | null;
|
|
13880
13947
|
labels: Record<string, string>;
|
|
13881
13948
|
persistence: AgentPersistenceHandle | null;
|
|
13949
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13882
13950
|
capabilities: AgentCapabilityFlags;
|
|
13883
13951
|
currentModeId: string | null;
|
|
13884
13952
|
availableModes: AgentMode[];
|
|
13885
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13886
13953
|
thinkingOptionId?: string | null | undefined;
|
|
13887
13954
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
13888
13955
|
requiresAttention?: boolean | undefined;
|
|
@@ -13903,10 +13970,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13903
13970
|
updatedAt: string;
|
|
13904
13971
|
lastUserMessageAt: string | null;
|
|
13905
13972
|
persistence: AgentPersistenceHandle | null;
|
|
13973
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
13906
13974
|
capabilities: AgentCapabilityFlags;
|
|
13907
13975
|
currentModeId: string | null;
|
|
13908
13976
|
availableModes: AgentMode[];
|
|
13909
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
13910
13977
|
thinkingOptionId?: string | null | undefined;
|
|
13911
13978
|
labels?: Record<string, string> | undefined;
|
|
13912
13979
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -14052,10 +14119,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
14052
14119
|
lastUserMessageAt: string | null;
|
|
14053
14120
|
labels: Record<string, string>;
|
|
14054
14121
|
persistence: AgentPersistenceHandle | null;
|
|
14122
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
14055
14123
|
capabilities: AgentCapabilityFlags;
|
|
14056
14124
|
currentModeId: string | null;
|
|
14057
14125
|
availableModes: AgentMode[];
|
|
14058
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
14059
14126
|
thinkingOptionId?: string | null | undefined;
|
|
14060
14127
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
14061
14128
|
requiresAttention?: boolean | undefined;
|
|
@@ -14106,10 +14173,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
14106
14173
|
updatedAt: string;
|
|
14107
14174
|
lastUserMessageAt: string | null;
|
|
14108
14175
|
persistence: AgentPersistenceHandle | null;
|
|
14176
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
14109
14177
|
capabilities: AgentCapabilityFlags;
|
|
14110
14178
|
currentModeId: string | null;
|
|
14111
14179
|
availableModes: AgentMode[];
|
|
14112
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
14113
14180
|
thinkingOptionId?: string | null | undefined;
|
|
14114
14181
|
labels?: Record<string, string> | undefined;
|
|
14115
14182
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -14165,10 +14232,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
14165
14232
|
lastUserMessageAt: string | null;
|
|
14166
14233
|
labels: Record<string, string>;
|
|
14167
14234
|
persistence: AgentPersistenceHandle | null;
|
|
14235
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
14168
14236
|
capabilities: AgentCapabilityFlags;
|
|
14169
14237
|
currentModeId: string | null;
|
|
14170
14238
|
availableModes: AgentMode[];
|
|
14171
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
14172
14239
|
thinkingOptionId?: string | null | undefined;
|
|
14173
14240
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
14174
14241
|
requiresAttention?: boolean | undefined;
|
|
@@ -14222,10 +14289,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
14222
14289
|
updatedAt: string;
|
|
14223
14290
|
lastUserMessageAt: string | null;
|
|
14224
14291
|
persistence: AgentPersistenceHandle | null;
|
|
14292
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
14225
14293
|
capabilities: AgentCapabilityFlags;
|
|
14226
14294
|
currentModeId: string | null;
|
|
14227
14295
|
availableModes: AgentMode[];
|
|
14228
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
14229
14296
|
thinkingOptionId?: string | null | undefined;
|
|
14230
14297
|
labels?: Record<string, string> | undefined;
|
|
14231
14298
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -14752,10 +14819,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
14752
14819
|
lastUserMessageAt: string | null;
|
|
14753
14820
|
labels: Record<string, string>;
|
|
14754
14821
|
persistence: AgentPersistenceHandle | null;
|
|
14822
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
14755
14823
|
capabilities: AgentCapabilityFlags;
|
|
14756
14824
|
currentModeId: string | null;
|
|
14757
14825
|
availableModes: AgentMode[];
|
|
14758
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
14759
14826
|
thinkingOptionId?: string | null | undefined;
|
|
14760
14827
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
14761
14828
|
requiresAttention?: boolean | undefined;
|
|
@@ -14776,10 +14843,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
14776
14843
|
updatedAt: string;
|
|
14777
14844
|
lastUserMessageAt: string | null;
|
|
14778
14845
|
persistence: AgentPersistenceHandle | null;
|
|
14846
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
14779
14847
|
capabilities: AgentCapabilityFlags;
|
|
14780
14848
|
currentModeId: string | null;
|
|
14781
14849
|
availableModes: AgentMode[];
|
|
14782
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
14783
14850
|
thinkingOptionId?: string | null | undefined;
|
|
14784
14851
|
labels?: Record<string, string> | undefined;
|
|
14785
14852
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -14809,10 +14876,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
14809
14876
|
lastUserMessageAt: string | null;
|
|
14810
14877
|
labels: Record<string, string>;
|
|
14811
14878
|
persistence: AgentPersistenceHandle | null;
|
|
14879
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
14812
14880
|
capabilities: AgentCapabilityFlags;
|
|
14813
14881
|
currentModeId: string | null;
|
|
14814
14882
|
availableModes: AgentMode[];
|
|
14815
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
14816
14883
|
thinkingOptionId?: string | null | undefined;
|
|
14817
14884
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
14818
14885
|
requiresAttention?: boolean | undefined;
|
|
@@ -14839,10 +14906,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
14839
14906
|
updatedAt: string;
|
|
14840
14907
|
lastUserMessageAt: string | null;
|
|
14841
14908
|
persistence: AgentPersistenceHandle | null;
|
|
14909
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
14842
14910
|
capabilities: AgentCapabilityFlags;
|
|
14843
14911
|
currentModeId: string | null;
|
|
14844
14912
|
availableModes: AgentMode[];
|
|
14845
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
14846
14913
|
thinkingOptionId?: string | null | undefined;
|
|
14847
14914
|
labels?: Record<string, string> | undefined;
|
|
14848
14915
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -14874,10 +14941,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
14874
14941
|
lastUserMessageAt: string | null;
|
|
14875
14942
|
labels: Record<string, string>;
|
|
14876
14943
|
persistence: AgentPersistenceHandle | null;
|
|
14944
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
14877
14945
|
capabilities: AgentCapabilityFlags;
|
|
14878
14946
|
currentModeId: string | null;
|
|
14879
14947
|
availableModes: AgentMode[];
|
|
14880
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
14881
14948
|
thinkingOptionId?: string | null | undefined;
|
|
14882
14949
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
14883
14950
|
requiresAttention?: boolean | undefined;
|
|
@@ -14907,10 +14974,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
14907
14974
|
updatedAt: string;
|
|
14908
14975
|
lastUserMessageAt: string | null;
|
|
14909
14976
|
persistence: AgentPersistenceHandle | null;
|
|
14977
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
14910
14978
|
capabilities: AgentCapabilityFlags;
|
|
14911
14979
|
currentModeId: string | null;
|
|
14912
14980
|
availableModes: AgentMode[];
|
|
14913
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
14914
14981
|
thinkingOptionId?: string | null | undefined;
|
|
14915
14982
|
labels?: Record<string, string> | undefined;
|
|
14916
14983
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -17616,6 +17683,13 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17616
17683
|
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
17617
17684
|
configuredPath: z.ZodNullable<z.ZodString>;
|
|
17618
17685
|
remediation: z.ZodNullable<z.ZodString>;
|
|
17686
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
17687
|
+
compatibilityStatus: z.ZodOptional<z.ZodEnum<["supported", "unsupported", "unknown"]>>;
|
|
17688
|
+
}, "strip", z.ZodTypeAny, {
|
|
17689
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17690
|
+
}, {
|
|
17691
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17692
|
+
}>>>;
|
|
17619
17693
|
}, "strip", z.ZodTypeAny, {
|
|
17620
17694
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
17621
17695
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -17625,6 +17699,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17625
17699
|
resolvedPath: string | null;
|
|
17626
17700
|
configuredPath: string | null;
|
|
17627
17701
|
remediation: string | null;
|
|
17702
|
+
details?: {
|
|
17703
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17704
|
+
} | null | undefined;
|
|
17628
17705
|
}, {
|
|
17629
17706
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
17630
17707
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -17634,6 +17711,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17634
17711
|
resolvedPath: string | null;
|
|
17635
17712
|
configuredPath: string | null;
|
|
17636
17713
|
remediation: string | null;
|
|
17714
|
+
details?: {
|
|
17715
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17716
|
+
} | null | undefined;
|
|
17637
17717
|
}>, "many">;
|
|
17638
17718
|
ranAt: z.ZodString;
|
|
17639
17719
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -17658,6 +17738,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17658
17738
|
resolvedPath: string | null;
|
|
17659
17739
|
configuredPath: string | null;
|
|
17660
17740
|
remediation: string | null;
|
|
17741
|
+
details?: {
|
|
17742
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17743
|
+
} | null | undefined;
|
|
17661
17744
|
}[];
|
|
17662
17745
|
ranAt: string;
|
|
17663
17746
|
update?: {
|
|
@@ -17689,6 +17772,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17689
17772
|
resolvedPath: string | null;
|
|
17690
17773
|
configuredPath: string | null;
|
|
17691
17774
|
remediation: string | null;
|
|
17775
|
+
details?: {
|
|
17776
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17777
|
+
} | null | undefined;
|
|
17692
17778
|
}[];
|
|
17693
17779
|
ranAt: string;
|
|
17694
17780
|
update?: {
|
|
@@ -17723,6 +17809,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17723
17809
|
resolvedPath: string | null;
|
|
17724
17810
|
configuredPath: string | null;
|
|
17725
17811
|
remediation: string | null;
|
|
17812
|
+
details?: {
|
|
17813
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17814
|
+
} | null | undefined;
|
|
17726
17815
|
}[];
|
|
17727
17816
|
ranAt: string;
|
|
17728
17817
|
update?: {
|
|
@@ -17757,6 +17846,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17757
17846
|
resolvedPath: string | null;
|
|
17758
17847
|
configuredPath: string | null;
|
|
17759
17848
|
remediation: string | null;
|
|
17849
|
+
details?: {
|
|
17850
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17851
|
+
} | null | undefined;
|
|
17760
17852
|
}[];
|
|
17761
17853
|
ranAt: string;
|
|
17762
17854
|
update?: {
|
|
@@ -19552,6 +19644,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
19552
19644
|
}>, "many">>;
|
|
19553
19645
|
git: z.ZodOptional<z.ZodObject<{
|
|
19554
19646
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
19647
|
+
baseBranchSource: z.ZodOptional<z.ZodEnum<["local", "remote"]>>;
|
|
19555
19648
|
remoteName: z.ZodOptional<z.ZodString>;
|
|
19556
19649
|
createNewBranch: z.ZodOptional<z.ZodBoolean>;
|
|
19557
19650
|
newBranchName: z.ZodOptional<z.ZodString>;
|
|
@@ -19559,15 +19652,17 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
19559
19652
|
worktreeSlug: z.ZodOptional<z.ZodString>;
|
|
19560
19653
|
}, "strip", z.ZodTypeAny, {
|
|
19561
19654
|
baseBranch?: string | undefined;
|
|
19562
|
-
|
|
19655
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
19563
19656
|
remoteName?: string | undefined;
|
|
19657
|
+
worktreeSlug?: string | undefined;
|
|
19564
19658
|
createNewBranch?: boolean | undefined;
|
|
19565
19659
|
newBranchName?: string | undefined;
|
|
19566
19660
|
createWorktree?: boolean | undefined;
|
|
19567
19661
|
}, {
|
|
19568
19662
|
baseBranch?: string | undefined;
|
|
19569
|
-
|
|
19663
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
19570
19664
|
remoteName?: string | undefined;
|
|
19665
|
+
worktreeSlug?: string | undefined;
|
|
19571
19666
|
createNewBranch?: boolean | undefined;
|
|
19572
19667
|
newBranchName?: string | undefined;
|
|
19573
19668
|
createWorktree?: boolean | undefined;
|
|
@@ -19632,8 +19727,9 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
19632
19727
|
} | undefined;
|
|
19633
19728
|
git?: {
|
|
19634
19729
|
baseBranch?: string | undefined;
|
|
19635
|
-
|
|
19730
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
19636
19731
|
remoteName?: string | undefined;
|
|
19732
|
+
worktreeSlug?: string | undefined;
|
|
19637
19733
|
createNewBranch?: boolean | undefined;
|
|
19638
19734
|
newBranchName?: string | undefined;
|
|
19639
19735
|
createWorktree?: boolean | undefined;
|
|
@@ -19695,8 +19791,9 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
19695
19791
|
} | undefined;
|
|
19696
19792
|
git?: {
|
|
19697
19793
|
baseBranch?: string | undefined;
|
|
19698
|
-
|
|
19794
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
19699
19795
|
remoteName?: string | undefined;
|
|
19796
|
+
worktreeSlug?: string | undefined;
|
|
19700
19797
|
createNewBranch?: boolean | undefined;
|
|
19701
19798
|
newBranchName?: string | undefined;
|
|
19702
19799
|
createWorktree?: boolean | undefined;
|
|
@@ -20221,16 +20318,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
20221
20318
|
type: "checkout_pr_create_request";
|
|
20222
20319
|
requestId: string;
|
|
20223
20320
|
title?: string | undefined;
|
|
20224
|
-
body?: string | undefined;
|
|
20225
20321
|
remoteName?: string | undefined;
|
|
20322
|
+
body?: string | undefined;
|
|
20226
20323
|
baseRef?: string | undefined;
|
|
20227
20324
|
}, {
|
|
20228
20325
|
cwd: string;
|
|
20229
20326
|
type: "checkout_pr_create_request";
|
|
20230
20327
|
requestId: string;
|
|
20231
20328
|
title?: string | undefined;
|
|
20232
|
-
body?: string | undefined;
|
|
20233
20329
|
remoteName?: string | undefined;
|
|
20330
|
+
body?: string | undefined;
|
|
20234
20331
|
baseRef?: string | undefined;
|
|
20235
20332
|
}>, z.ZodObject<{
|
|
20236
20333
|
type: z.ZodLiteral<"checkout_pr_status_request">;
|
|
@@ -20303,22 +20400,28 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
20303
20400
|
cwd: z.ZodString;
|
|
20304
20401
|
query: z.ZodOptional<z.ZodString>;
|
|
20305
20402
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
20403
|
+
preferredBranches: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
20404
|
+
source: z.ZodOptional<z.ZodEnum<["all", "local", "remote"]>>;
|
|
20306
20405
|
remoteName: z.ZodOptional<z.ZodString>;
|
|
20307
20406
|
requestId: z.ZodString;
|
|
20308
20407
|
}, "strip", z.ZodTypeAny, {
|
|
20309
20408
|
cwd: string;
|
|
20310
20409
|
type: "branch_suggestions_request";
|
|
20311
20410
|
requestId: string;
|
|
20411
|
+
remoteName?: string | undefined;
|
|
20312
20412
|
limit?: number | undefined;
|
|
20313
20413
|
query?: string | undefined;
|
|
20314
|
-
|
|
20414
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
20415
|
+
preferredBranches?: string[] | undefined;
|
|
20315
20416
|
}, {
|
|
20316
20417
|
cwd: string;
|
|
20317
20418
|
type: "branch_suggestions_request";
|
|
20318
20419
|
requestId: string;
|
|
20420
|
+
remoteName?: string | undefined;
|
|
20319
20421
|
limit?: number | undefined;
|
|
20320
20422
|
query?: string | undefined;
|
|
20321
|
-
|
|
20423
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
20424
|
+
preferredBranches?: string[] | undefined;
|
|
20322
20425
|
}>, z.ZodObject<{
|
|
20323
20426
|
type: z.ZodLiteral<"git_remotes_request">;
|
|
20324
20427
|
cwd: z.ZodString;
|
|
@@ -20964,8 +21067,9 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
20964
21067
|
} | undefined;
|
|
20965
21068
|
git?: {
|
|
20966
21069
|
baseBranch?: string | undefined;
|
|
20967
|
-
|
|
21070
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
20968
21071
|
remoteName?: string | undefined;
|
|
21072
|
+
worktreeSlug?: string | undefined;
|
|
20969
21073
|
createNewBranch?: boolean | undefined;
|
|
20970
21074
|
newBranchName?: string | undefined;
|
|
20971
21075
|
createWorktree?: boolean | undefined;
|
|
@@ -21110,8 +21214,8 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21110
21214
|
type: "checkout_pr_create_request";
|
|
21111
21215
|
requestId: string;
|
|
21112
21216
|
title?: string | undefined;
|
|
21113
|
-
body?: string | undefined;
|
|
21114
21217
|
remoteName?: string | undefined;
|
|
21218
|
+
body?: string | undefined;
|
|
21115
21219
|
baseRef?: string | undefined;
|
|
21116
21220
|
} | {
|
|
21117
21221
|
cwd: string;
|
|
@@ -21139,9 +21243,11 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21139
21243
|
cwd: string;
|
|
21140
21244
|
type: "branch_suggestions_request";
|
|
21141
21245
|
requestId: string;
|
|
21246
|
+
remoteName?: string | undefined;
|
|
21142
21247
|
limit?: number | undefined;
|
|
21143
21248
|
query?: string | undefined;
|
|
21144
|
-
|
|
21249
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
21250
|
+
preferredBranches?: string[] | undefined;
|
|
21145
21251
|
} | {
|
|
21146
21252
|
cwd: string;
|
|
21147
21253
|
type: "git_remotes_request";
|
|
@@ -21432,8 +21538,9 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21432
21538
|
} | undefined;
|
|
21433
21539
|
git?: {
|
|
21434
21540
|
baseBranch?: string | undefined;
|
|
21435
|
-
|
|
21541
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
21436
21542
|
remoteName?: string | undefined;
|
|
21543
|
+
worktreeSlug?: string | undefined;
|
|
21437
21544
|
createNewBranch?: boolean | undefined;
|
|
21438
21545
|
newBranchName?: string | undefined;
|
|
21439
21546
|
createWorktree?: boolean | undefined;
|
|
@@ -21578,8 +21685,8 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21578
21685
|
type: "checkout_pr_create_request";
|
|
21579
21686
|
requestId: string;
|
|
21580
21687
|
title?: string | undefined;
|
|
21581
|
-
body?: string | undefined;
|
|
21582
21688
|
remoteName?: string | undefined;
|
|
21689
|
+
body?: string | undefined;
|
|
21583
21690
|
baseRef?: string | undefined;
|
|
21584
21691
|
} | {
|
|
21585
21692
|
cwd: string;
|
|
@@ -21607,9 +21714,11 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21607
21714
|
cwd: string;
|
|
21608
21715
|
type: "branch_suggestions_request";
|
|
21609
21716
|
requestId: string;
|
|
21717
|
+
remoteName?: string | undefined;
|
|
21610
21718
|
limit?: number | undefined;
|
|
21611
21719
|
query?: string | undefined;
|
|
21612
|
-
|
|
21720
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
21721
|
+
preferredBranches?: string[] | undefined;
|
|
21613
21722
|
} | {
|
|
21614
21723
|
cwd: string;
|
|
21615
21724
|
type: "git_remotes_request";
|
|
@@ -22003,10 +22112,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22003
22112
|
lastUserMessageAt: string | null;
|
|
22004
22113
|
labels: Record<string, string>;
|
|
22005
22114
|
persistence: AgentPersistenceHandle | null;
|
|
22115
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22006
22116
|
capabilities: AgentCapabilityFlags;
|
|
22007
22117
|
currentModeId: string | null;
|
|
22008
22118
|
availableModes: AgentMode[];
|
|
22009
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22010
22119
|
thinkingOptionId?: string | null | undefined;
|
|
22011
22120
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
22012
22121
|
requiresAttention?: boolean | undefined;
|
|
@@ -22027,10 +22136,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22027
22136
|
updatedAt: string;
|
|
22028
22137
|
lastUserMessageAt: string | null;
|
|
22029
22138
|
persistence: AgentPersistenceHandle | null;
|
|
22139
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22030
22140
|
capabilities: AgentCapabilityFlags;
|
|
22031
22141
|
currentModeId: string | null;
|
|
22032
22142
|
availableModes: AgentMode[];
|
|
22033
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22034
22143
|
thinkingOptionId?: string | null | undefined;
|
|
22035
22144
|
labels?: Record<string, string> | undefined;
|
|
22036
22145
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -22174,10 +22283,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22174
22283
|
lastUserMessageAt: string | null;
|
|
22175
22284
|
labels: Record<string, string>;
|
|
22176
22285
|
persistence: AgentPersistenceHandle | null;
|
|
22286
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22177
22287
|
capabilities: AgentCapabilityFlags;
|
|
22178
22288
|
currentModeId: string | null;
|
|
22179
22289
|
availableModes: AgentMode[];
|
|
22180
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22181
22290
|
thinkingOptionId?: string | null | undefined;
|
|
22182
22291
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
22183
22292
|
requiresAttention?: boolean | undefined;
|
|
@@ -22227,10 +22336,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22227
22336
|
updatedAt: string;
|
|
22228
22337
|
lastUserMessageAt: string | null;
|
|
22229
22338
|
persistence: AgentPersistenceHandle | null;
|
|
22339
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22230
22340
|
capabilities: AgentCapabilityFlags;
|
|
22231
22341
|
currentModeId: string | null;
|
|
22232
22342
|
availableModes: AgentMode[];
|
|
22233
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22234
22343
|
thinkingOptionId?: string | null | undefined;
|
|
22235
22344
|
labels?: Record<string, string> | undefined;
|
|
22236
22345
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -22294,10 +22403,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22294
22403
|
lastUserMessageAt: string | null;
|
|
22295
22404
|
labels: Record<string, string>;
|
|
22296
22405
|
persistence: AgentPersistenceHandle | null;
|
|
22406
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22297
22407
|
capabilities: AgentCapabilityFlags;
|
|
22298
22408
|
currentModeId: string | null;
|
|
22299
22409
|
availableModes: AgentMode[];
|
|
22300
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22301
22410
|
thinkingOptionId?: string | null | undefined;
|
|
22302
22411
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
22303
22412
|
requiresAttention?: boolean | undefined;
|
|
@@ -22353,10 +22462,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22353
22462
|
updatedAt: string;
|
|
22354
22463
|
lastUserMessageAt: string | null;
|
|
22355
22464
|
persistence: AgentPersistenceHandle | null;
|
|
22465
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22356
22466
|
capabilities: AgentCapabilityFlags;
|
|
22357
22467
|
currentModeId: string | null;
|
|
22358
22468
|
availableModes: AgentMode[];
|
|
22359
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22360
22469
|
thinkingOptionId?: string | null | undefined;
|
|
22361
22470
|
labels?: Record<string, string> | undefined;
|
|
22362
22471
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -22427,14 +22536,17 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22427
22536
|
type: z.ZodLiteral<"turn_completed">;
|
|
22428
22537
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
22429
22538
|
usage: z.ZodOptional<z.ZodType<AgentUsage, z.ZodTypeDef, AgentUsage>>;
|
|
22539
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22430
22540
|
}, "strip", z.ZodTypeAny, {
|
|
22431
22541
|
provider: string;
|
|
22432
22542
|
type: "turn_completed";
|
|
22433
22543
|
usage?: AgentUsage | undefined;
|
|
22544
|
+
modelId?: string | null | undefined;
|
|
22434
22545
|
}, {
|
|
22435
22546
|
provider: string;
|
|
22436
22547
|
type: "turn_completed";
|
|
22437
22548
|
usage?: AgentUsage | undefined;
|
|
22549
|
+
modelId?: string | null | undefined;
|
|
22438
22550
|
}>, z.ZodObject<{
|
|
22439
22551
|
type: z.ZodLiteral<"turn_failed">;
|
|
22440
22552
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
@@ -22585,6 +22697,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22585
22697
|
provider: string;
|
|
22586
22698
|
type: "turn_completed";
|
|
22587
22699
|
usage?: AgentUsage | undefined;
|
|
22700
|
+
modelId?: string | null | undefined;
|
|
22588
22701
|
} | {
|
|
22589
22702
|
error: string;
|
|
22590
22703
|
provider: string;
|
|
@@ -22638,6 +22751,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22638
22751
|
provider: string;
|
|
22639
22752
|
type: "turn_completed";
|
|
22640
22753
|
usage?: AgentUsage | undefined;
|
|
22754
|
+
modelId?: string | null | undefined;
|
|
22641
22755
|
} | {
|
|
22642
22756
|
error: string;
|
|
22643
22757
|
provider: string;
|
|
@@ -22694,6 +22808,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22694
22808
|
provider: string;
|
|
22695
22809
|
type: "turn_completed";
|
|
22696
22810
|
usage?: AgentUsage | undefined;
|
|
22811
|
+
modelId?: string | null | undefined;
|
|
22697
22812
|
} | {
|
|
22698
22813
|
error: string;
|
|
22699
22814
|
provider: string;
|
|
@@ -22750,6 +22865,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22750
22865
|
provider: string;
|
|
22751
22866
|
type: "turn_completed";
|
|
22752
22867
|
usage?: AgentUsage | undefined;
|
|
22868
|
+
modelId?: string | null | undefined;
|
|
22753
22869
|
} | {
|
|
22754
22870
|
error: string;
|
|
22755
22871
|
provider: string;
|
|
@@ -22832,10 +22948,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22832
22948
|
lastUserMessageAt: string | null;
|
|
22833
22949
|
labels: Record<string, string>;
|
|
22834
22950
|
persistence: AgentPersistenceHandle | null;
|
|
22951
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22835
22952
|
capabilities: AgentCapabilityFlags;
|
|
22836
22953
|
currentModeId: string | null;
|
|
22837
22954
|
availableModes: AgentMode[];
|
|
22838
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22839
22955
|
thinkingOptionId?: string | null | undefined;
|
|
22840
22956
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
22841
22957
|
requiresAttention?: boolean | undefined;
|
|
@@ -22856,10 +22972,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22856
22972
|
updatedAt: string;
|
|
22857
22973
|
lastUserMessageAt: string | null;
|
|
22858
22974
|
persistence: AgentPersistenceHandle | null;
|
|
22975
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22859
22976
|
capabilities: AgentCapabilityFlags;
|
|
22860
22977
|
currentModeId: string | null;
|
|
22861
22978
|
availableModes: AgentMode[];
|
|
22862
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22863
22979
|
thinkingOptionId?: string | null | undefined;
|
|
22864
22980
|
labels?: Record<string, string> | undefined;
|
|
22865
22981
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -22886,10 +23002,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22886
23002
|
lastUserMessageAt: string | null;
|
|
22887
23003
|
labels: Record<string, string>;
|
|
22888
23004
|
persistence: AgentPersistenceHandle | null;
|
|
23005
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22889
23006
|
capabilities: AgentCapabilityFlags;
|
|
22890
23007
|
currentModeId: string | null;
|
|
22891
23008
|
availableModes: AgentMode[];
|
|
22892
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22893
23009
|
thinkingOptionId?: string | null | undefined;
|
|
22894
23010
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
22895
23011
|
requiresAttention?: boolean | undefined;
|
|
@@ -22914,10 +23030,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22914
23030
|
updatedAt: string;
|
|
22915
23031
|
lastUserMessageAt: string | null;
|
|
22916
23032
|
persistence: AgentPersistenceHandle | null;
|
|
23033
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22917
23034
|
capabilities: AgentCapabilityFlags;
|
|
22918
23035
|
currentModeId: string | null;
|
|
22919
23036
|
availableModes: AgentMode[];
|
|
22920
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22921
23037
|
thinkingOptionId?: string | null | undefined;
|
|
22922
23038
|
labels?: Record<string, string> | undefined;
|
|
22923
23039
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -22947,10 +23063,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22947
23063
|
lastUserMessageAt: string | null;
|
|
22948
23064
|
labels: Record<string, string>;
|
|
22949
23065
|
persistence: AgentPersistenceHandle | null;
|
|
23066
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22950
23067
|
capabilities: AgentCapabilityFlags;
|
|
22951
23068
|
currentModeId: string | null;
|
|
22952
23069
|
availableModes: AgentMode[];
|
|
22953
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22954
23070
|
thinkingOptionId?: string | null | undefined;
|
|
22955
23071
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
22956
23072
|
requiresAttention?: boolean | undefined;
|
|
@@ -22978,10 +23094,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22978
23094
|
updatedAt: string;
|
|
22979
23095
|
lastUserMessageAt: string | null;
|
|
22980
23096
|
persistence: AgentPersistenceHandle | null;
|
|
23097
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
22981
23098
|
capabilities: AgentCapabilityFlags;
|
|
22982
23099
|
currentModeId: string | null;
|
|
22983
23100
|
availableModes: AgentMode[];
|
|
22984
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
22985
23101
|
thinkingOptionId?: string | null | undefined;
|
|
22986
23102
|
labels?: Record<string, string> | undefined;
|
|
22987
23103
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -23037,10 +23153,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23037
23153
|
lastUserMessageAt: string | null;
|
|
23038
23154
|
labels: Record<string, string>;
|
|
23039
23155
|
persistence: AgentPersistenceHandle | null;
|
|
23156
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23040
23157
|
capabilities: AgentCapabilityFlags;
|
|
23041
23158
|
currentModeId: string | null;
|
|
23042
23159
|
availableModes: AgentMode[];
|
|
23043
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23044
23160
|
thinkingOptionId?: string | null | undefined;
|
|
23045
23161
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
23046
23162
|
requiresAttention?: boolean | undefined;
|
|
@@ -23061,10 +23177,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23061
23177
|
updatedAt: string;
|
|
23062
23178
|
lastUserMessageAt: string | null;
|
|
23063
23179
|
persistence: AgentPersistenceHandle | null;
|
|
23180
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23064
23181
|
capabilities: AgentCapabilityFlags;
|
|
23065
23182
|
currentModeId: string | null;
|
|
23066
23183
|
availableModes: AgentMode[];
|
|
23067
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23068
23184
|
thinkingOptionId?: string | null | undefined;
|
|
23069
23185
|
labels?: Record<string, string> | undefined;
|
|
23070
23186
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -23207,10 +23323,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23207
23323
|
lastUserMessageAt: string | null;
|
|
23208
23324
|
labels: Record<string, string>;
|
|
23209
23325
|
persistence: AgentPersistenceHandle | null;
|
|
23326
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23210
23327
|
capabilities: AgentCapabilityFlags;
|
|
23211
23328
|
currentModeId: string | null;
|
|
23212
23329
|
availableModes: AgentMode[];
|
|
23213
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23214
23330
|
thinkingOptionId?: string | null | undefined;
|
|
23215
23331
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
23216
23332
|
requiresAttention?: boolean | undefined;
|
|
@@ -23259,10 +23375,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23259
23375
|
updatedAt: string;
|
|
23260
23376
|
lastUserMessageAt: string | null;
|
|
23261
23377
|
persistence: AgentPersistenceHandle | null;
|
|
23378
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23262
23379
|
capabilities: AgentCapabilityFlags;
|
|
23263
23380
|
currentModeId: string | null;
|
|
23264
23381
|
availableModes: AgentMode[];
|
|
23265
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23266
23382
|
thinkingOptionId?: string | null | undefined;
|
|
23267
23383
|
labels?: Record<string, string> | undefined;
|
|
23268
23384
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -23328,10 +23444,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23328
23444
|
lastUserMessageAt: string | null;
|
|
23329
23445
|
labels: Record<string, string>;
|
|
23330
23446
|
persistence: AgentPersistenceHandle | null;
|
|
23447
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23331
23448
|
capabilities: AgentCapabilityFlags;
|
|
23332
23449
|
currentModeId: string | null;
|
|
23333
23450
|
availableModes: AgentMode[];
|
|
23334
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23335
23451
|
thinkingOptionId?: string | null | undefined;
|
|
23336
23452
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
23337
23453
|
requiresAttention?: boolean | undefined;
|
|
@@ -23389,10 +23505,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23389
23505
|
updatedAt: string;
|
|
23390
23506
|
lastUserMessageAt: string | null;
|
|
23391
23507
|
persistence: AgentPersistenceHandle | null;
|
|
23508
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23392
23509
|
capabilities: AgentCapabilityFlags;
|
|
23393
23510
|
currentModeId: string | null;
|
|
23394
23511
|
availableModes: AgentMode[];
|
|
23395
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23396
23512
|
thinkingOptionId?: string | null | undefined;
|
|
23397
23513
|
labels?: Record<string, string> | undefined;
|
|
23398
23514
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -23455,10 +23571,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23455
23571
|
lastUserMessageAt: string | null;
|
|
23456
23572
|
labels: Record<string, string>;
|
|
23457
23573
|
persistence: AgentPersistenceHandle | null;
|
|
23574
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23458
23575
|
capabilities: AgentCapabilityFlags;
|
|
23459
23576
|
currentModeId: string | null;
|
|
23460
23577
|
availableModes: AgentMode[];
|
|
23461
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23462
23578
|
thinkingOptionId?: string | null | undefined;
|
|
23463
23579
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
23464
23580
|
requiresAttention?: boolean | undefined;
|
|
@@ -23519,10 +23635,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23519
23635
|
updatedAt: string;
|
|
23520
23636
|
lastUserMessageAt: string | null;
|
|
23521
23637
|
persistence: AgentPersistenceHandle | null;
|
|
23638
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23522
23639
|
capabilities: AgentCapabilityFlags;
|
|
23523
23640
|
currentModeId: string | null;
|
|
23524
23641
|
availableModes: AgentMode[];
|
|
23525
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23526
23642
|
thinkingOptionId?: string | null | undefined;
|
|
23527
23643
|
labels?: Record<string, string> | undefined;
|
|
23528
23644
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -23610,10 +23726,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23610
23726
|
lastUserMessageAt: string | null;
|
|
23611
23727
|
labels: Record<string, string>;
|
|
23612
23728
|
persistence: AgentPersistenceHandle | null;
|
|
23729
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23613
23730
|
capabilities: AgentCapabilityFlags;
|
|
23614
23731
|
currentModeId: string | null;
|
|
23615
23732
|
availableModes: AgentMode[];
|
|
23616
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23617
23733
|
thinkingOptionId?: string | null | undefined;
|
|
23618
23734
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
23619
23735
|
requiresAttention?: boolean | undefined;
|
|
@@ -23634,10 +23750,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23634
23750
|
updatedAt: string;
|
|
23635
23751
|
lastUserMessageAt: string | null;
|
|
23636
23752
|
persistence: AgentPersistenceHandle | null;
|
|
23753
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23637
23754
|
capabilities: AgentCapabilityFlags;
|
|
23638
23755
|
currentModeId: string | null;
|
|
23639
23756
|
availableModes: AgentMode[];
|
|
23640
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23641
23757
|
thinkingOptionId?: string | null | undefined;
|
|
23642
23758
|
labels?: Record<string, string> | undefined;
|
|
23643
23759
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -23783,10 +23899,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23783
23899
|
lastUserMessageAt: string | null;
|
|
23784
23900
|
labels: Record<string, string>;
|
|
23785
23901
|
persistence: AgentPersistenceHandle | null;
|
|
23902
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23786
23903
|
capabilities: AgentCapabilityFlags;
|
|
23787
23904
|
currentModeId: string | null;
|
|
23788
23905
|
availableModes: AgentMode[];
|
|
23789
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23790
23906
|
thinkingOptionId?: string | null | undefined;
|
|
23791
23907
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
23792
23908
|
requiresAttention?: boolean | undefined;
|
|
@@ -23837,10 +23953,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23837
23953
|
updatedAt: string;
|
|
23838
23954
|
lastUserMessageAt: string | null;
|
|
23839
23955
|
persistence: AgentPersistenceHandle | null;
|
|
23956
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23840
23957
|
capabilities: AgentCapabilityFlags;
|
|
23841
23958
|
currentModeId: string | null;
|
|
23842
23959
|
availableModes: AgentMode[];
|
|
23843
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23844
23960
|
thinkingOptionId?: string | null | undefined;
|
|
23845
23961
|
labels?: Record<string, string> | undefined;
|
|
23846
23962
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -23896,10 +24012,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23896
24012
|
lastUserMessageAt: string | null;
|
|
23897
24013
|
labels: Record<string, string>;
|
|
23898
24014
|
persistence: AgentPersistenceHandle | null;
|
|
24015
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23899
24016
|
capabilities: AgentCapabilityFlags;
|
|
23900
24017
|
currentModeId: string | null;
|
|
23901
24018
|
availableModes: AgentMode[];
|
|
23902
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23903
24019
|
thinkingOptionId?: string | null | undefined;
|
|
23904
24020
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
23905
24021
|
requiresAttention?: boolean | undefined;
|
|
@@ -23953,10 +24069,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23953
24069
|
updatedAt: string;
|
|
23954
24070
|
lastUserMessageAt: string | null;
|
|
23955
24071
|
persistence: AgentPersistenceHandle | null;
|
|
24072
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
23956
24073
|
capabilities: AgentCapabilityFlags;
|
|
23957
24074
|
currentModeId: string | null;
|
|
23958
24075
|
availableModes: AgentMode[];
|
|
23959
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
23960
24076
|
thinkingOptionId?: string | null | undefined;
|
|
23961
24077
|
labels?: Record<string, string> | undefined;
|
|
23962
24078
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -24483,10 +24599,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24483
24599
|
lastUserMessageAt: string | null;
|
|
24484
24600
|
labels: Record<string, string>;
|
|
24485
24601
|
persistence: AgentPersistenceHandle | null;
|
|
24602
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
24486
24603
|
capabilities: AgentCapabilityFlags;
|
|
24487
24604
|
currentModeId: string | null;
|
|
24488
24605
|
availableModes: AgentMode[];
|
|
24489
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
24490
24606
|
thinkingOptionId?: string | null | undefined;
|
|
24491
24607
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
24492
24608
|
requiresAttention?: boolean | undefined;
|
|
@@ -24507,10 +24623,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24507
24623
|
updatedAt: string;
|
|
24508
24624
|
lastUserMessageAt: string | null;
|
|
24509
24625
|
persistence: AgentPersistenceHandle | null;
|
|
24626
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
24510
24627
|
capabilities: AgentCapabilityFlags;
|
|
24511
24628
|
currentModeId: string | null;
|
|
24512
24629
|
availableModes: AgentMode[];
|
|
24513
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
24514
24630
|
thinkingOptionId?: string | null | undefined;
|
|
24515
24631
|
labels?: Record<string, string> | undefined;
|
|
24516
24632
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -24540,10 +24656,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24540
24656
|
lastUserMessageAt: string | null;
|
|
24541
24657
|
labels: Record<string, string>;
|
|
24542
24658
|
persistence: AgentPersistenceHandle | null;
|
|
24659
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
24543
24660
|
capabilities: AgentCapabilityFlags;
|
|
24544
24661
|
currentModeId: string | null;
|
|
24545
24662
|
availableModes: AgentMode[];
|
|
24546
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
24547
24663
|
thinkingOptionId?: string | null | undefined;
|
|
24548
24664
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
24549
24665
|
requiresAttention?: boolean | undefined;
|
|
@@ -24570,10 +24686,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24570
24686
|
updatedAt: string;
|
|
24571
24687
|
lastUserMessageAt: string | null;
|
|
24572
24688
|
persistence: AgentPersistenceHandle | null;
|
|
24689
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
24573
24690
|
capabilities: AgentCapabilityFlags;
|
|
24574
24691
|
currentModeId: string | null;
|
|
24575
24692
|
availableModes: AgentMode[];
|
|
24576
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
24577
24693
|
thinkingOptionId?: string | null | undefined;
|
|
24578
24694
|
labels?: Record<string, string> | undefined;
|
|
24579
24695
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -24605,10 +24721,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24605
24721
|
lastUserMessageAt: string | null;
|
|
24606
24722
|
labels: Record<string, string>;
|
|
24607
24723
|
persistence: AgentPersistenceHandle | null;
|
|
24724
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
24608
24725
|
capabilities: AgentCapabilityFlags;
|
|
24609
24726
|
currentModeId: string | null;
|
|
24610
24727
|
availableModes: AgentMode[];
|
|
24611
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
24612
24728
|
thinkingOptionId?: string | null | undefined;
|
|
24613
24729
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
24614
24730
|
requiresAttention?: boolean | undefined;
|
|
@@ -24638,10 +24754,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24638
24754
|
updatedAt: string;
|
|
24639
24755
|
lastUserMessageAt: string | null;
|
|
24640
24756
|
persistence: AgentPersistenceHandle | null;
|
|
24757
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
24641
24758
|
capabilities: AgentCapabilityFlags;
|
|
24642
24759
|
currentModeId: string | null;
|
|
24643
24760
|
availableModes: AgentMode[];
|
|
24644
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
24645
24761
|
thinkingOptionId?: string | null | undefined;
|
|
24646
24762
|
labels?: Record<string, string> | undefined;
|
|
24647
24763
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -27347,6 +27463,13 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27347
27463
|
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
27348
27464
|
configuredPath: z.ZodNullable<z.ZodString>;
|
|
27349
27465
|
remediation: z.ZodNullable<z.ZodString>;
|
|
27466
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27467
|
+
compatibilityStatus: z.ZodOptional<z.ZodEnum<["supported", "unsupported", "unknown"]>>;
|
|
27468
|
+
}, "strip", z.ZodTypeAny, {
|
|
27469
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27470
|
+
}, {
|
|
27471
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27472
|
+
}>>>;
|
|
27350
27473
|
}, "strip", z.ZodTypeAny, {
|
|
27351
27474
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
27352
27475
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -27356,6 +27479,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27356
27479
|
resolvedPath: string | null;
|
|
27357
27480
|
configuredPath: string | null;
|
|
27358
27481
|
remediation: string | null;
|
|
27482
|
+
details?: {
|
|
27483
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27484
|
+
} | null | undefined;
|
|
27359
27485
|
}, {
|
|
27360
27486
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
27361
27487
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -27365,6 +27491,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27365
27491
|
resolvedPath: string | null;
|
|
27366
27492
|
configuredPath: string | null;
|
|
27367
27493
|
remediation: string | null;
|
|
27494
|
+
details?: {
|
|
27495
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27496
|
+
} | null | undefined;
|
|
27368
27497
|
}>, "many">;
|
|
27369
27498
|
ranAt: z.ZodString;
|
|
27370
27499
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -27389,6 +27518,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27389
27518
|
resolvedPath: string | null;
|
|
27390
27519
|
configuredPath: string | null;
|
|
27391
27520
|
remediation: string | null;
|
|
27521
|
+
details?: {
|
|
27522
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27523
|
+
} | null | undefined;
|
|
27392
27524
|
}[];
|
|
27393
27525
|
ranAt: string;
|
|
27394
27526
|
update?: {
|
|
@@ -27420,6 +27552,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27420
27552
|
resolvedPath: string | null;
|
|
27421
27553
|
configuredPath: string | null;
|
|
27422
27554
|
remediation: string | null;
|
|
27555
|
+
details?: {
|
|
27556
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27557
|
+
} | null | undefined;
|
|
27423
27558
|
}[];
|
|
27424
27559
|
ranAt: string;
|
|
27425
27560
|
update?: {
|
|
@@ -27454,6 +27589,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27454
27589
|
resolvedPath: string | null;
|
|
27455
27590
|
configuredPath: string | null;
|
|
27456
27591
|
remediation: string | null;
|
|
27592
|
+
details?: {
|
|
27593
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27594
|
+
} | null | undefined;
|
|
27457
27595
|
}[];
|
|
27458
27596
|
ranAt: string;
|
|
27459
27597
|
update?: {
|
|
@@ -27488,6 +27626,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27488
27626
|
resolvedPath: string | null;
|
|
27489
27627
|
configuredPath: string | null;
|
|
27490
27628
|
remediation: string | null;
|
|
27629
|
+
details?: {
|
|
27630
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27631
|
+
} | null | undefined;
|
|
27491
27632
|
}[];
|
|
27492
27633
|
ranAt: string;
|
|
27493
27634
|
update?: {
|
|
@@ -28731,10 +28872,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28731
28872
|
lastUserMessageAt: string | null;
|
|
28732
28873
|
labels: Record<string, string>;
|
|
28733
28874
|
persistence: AgentPersistenceHandle | null;
|
|
28875
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
28734
28876
|
capabilities: AgentCapabilityFlags;
|
|
28735
28877
|
currentModeId: string | null;
|
|
28736
28878
|
availableModes: AgentMode[];
|
|
28737
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
28738
28879
|
thinkingOptionId?: string | null | undefined;
|
|
28739
28880
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
28740
28881
|
requiresAttention?: boolean | undefined;
|
|
@@ -28791,6 +28932,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28791
28932
|
provider: string;
|
|
28792
28933
|
type: "turn_completed";
|
|
28793
28934
|
usage?: AgentUsage | undefined;
|
|
28935
|
+
modelId?: string | null | undefined;
|
|
28794
28936
|
} | {
|
|
28795
28937
|
error: string;
|
|
28796
28938
|
provider: string;
|
|
@@ -28848,10 +28990,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28848
28990
|
lastUserMessageAt: string | null;
|
|
28849
28991
|
labels: Record<string, string>;
|
|
28850
28992
|
persistence: AgentPersistenceHandle | null;
|
|
28993
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
28851
28994
|
capabilities: AgentCapabilityFlags;
|
|
28852
28995
|
currentModeId: string | null;
|
|
28853
28996
|
availableModes: AgentMode[];
|
|
28854
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
28855
28997
|
thinkingOptionId?: string | null | undefined;
|
|
28856
28998
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
28857
28999
|
requiresAttention?: boolean | undefined;
|
|
@@ -28879,10 +29021,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28879
29021
|
lastUserMessageAt: string | null;
|
|
28880
29022
|
labels: Record<string, string>;
|
|
28881
29023
|
persistence: AgentPersistenceHandle | null;
|
|
29024
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
28882
29025
|
capabilities: AgentCapabilityFlags;
|
|
28883
29026
|
currentModeId: string | null;
|
|
28884
29027
|
availableModes: AgentMode[];
|
|
28885
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
28886
29028
|
thinkingOptionId?: string | null | undefined;
|
|
28887
29029
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
28888
29030
|
requiresAttention?: boolean | undefined;
|
|
@@ -28945,10 +29087,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28945
29087
|
lastUserMessageAt: string | null;
|
|
28946
29088
|
labels: Record<string, string>;
|
|
28947
29089
|
persistence: AgentPersistenceHandle | null;
|
|
29090
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
28948
29091
|
capabilities: AgentCapabilityFlags;
|
|
28949
29092
|
currentModeId: string | null;
|
|
28950
29093
|
availableModes: AgentMode[];
|
|
28951
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
28952
29094
|
thinkingOptionId?: string | null | undefined;
|
|
28953
29095
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
28954
29096
|
requiresAttention?: boolean | undefined;
|
|
@@ -29052,10 +29194,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29052
29194
|
lastUserMessageAt: string | null;
|
|
29053
29195
|
labels: Record<string, string>;
|
|
29054
29196
|
persistence: AgentPersistenceHandle | null;
|
|
29197
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
29055
29198
|
capabilities: AgentCapabilityFlags;
|
|
29056
29199
|
currentModeId: string | null;
|
|
29057
29200
|
availableModes: AgentMode[];
|
|
29058
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
29059
29201
|
thinkingOptionId?: string | null | undefined;
|
|
29060
29202
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
29061
29203
|
requiresAttention?: boolean | undefined;
|
|
@@ -29565,6 +29707,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29565
29707
|
resolvedPath: string | null;
|
|
29566
29708
|
configuredPath: string | null;
|
|
29567
29709
|
remediation: string | null;
|
|
29710
|
+
details?: {
|
|
29711
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
29712
|
+
} | null | undefined;
|
|
29568
29713
|
}[];
|
|
29569
29714
|
ranAt: string;
|
|
29570
29715
|
update?: {
|
|
@@ -29866,10 +30011,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29866
30011
|
updatedAt: string;
|
|
29867
30012
|
lastUserMessageAt: string | null;
|
|
29868
30013
|
persistence: AgentPersistenceHandle | null;
|
|
30014
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
29869
30015
|
capabilities: AgentCapabilityFlags;
|
|
29870
30016
|
currentModeId: string | null;
|
|
29871
30017
|
availableModes: AgentMode[];
|
|
29872
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
29873
30018
|
thinkingOptionId?: string | null | undefined;
|
|
29874
30019
|
labels?: Record<string, string> | undefined;
|
|
29875
30020
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -29927,6 +30072,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29927
30072
|
provider: string;
|
|
29928
30073
|
type: "turn_completed";
|
|
29929
30074
|
usage?: AgentUsage | undefined;
|
|
30075
|
+
modelId?: string | null | undefined;
|
|
29930
30076
|
} | {
|
|
29931
30077
|
error: string;
|
|
29932
30078
|
provider: string;
|
|
@@ -29983,10 +30129,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29983
30129
|
updatedAt: string;
|
|
29984
30130
|
lastUserMessageAt: string | null;
|
|
29985
30131
|
persistence: AgentPersistenceHandle | null;
|
|
30132
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
29986
30133
|
capabilities: AgentCapabilityFlags;
|
|
29987
30134
|
currentModeId: string | null;
|
|
29988
30135
|
availableModes: AgentMode[];
|
|
29989
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
29990
30136
|
thinkingOptionId?: string | null | undefined;
|
|
29991
30137
|
labels?: Record<string, string> | undefined;
|
|
29992
30138
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -30014,10 +30160,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30014
30160
|
updatedAt: string;
|
|
30015
30161
|
lastUserMessageAt: string | null;
|
|
30016
30162
|
persistence: AgentPersistenceHandle | null;
|
|
30163
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
30017
30164
|
capabilities: AgentCapabilityFlags;
|
|
30018
30165
|
currentModeId: string | null;
|
|
30019
30166
|
availableModes: AgentMode[];
|
|
30020
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
30021
30167
|
thinkingOptionId?: string | null | undefined;
|
|
30022
30168
|
labels?: Record<string, string> | undefined;
|
|
30023
30169
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -30080,10 +30226,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30080
30226
|
updatedAt: string;
|
|
30081
30227
|
lastUserMessageAt: string | null;
|
|
30082
30228
|
persistence: AgentPersistenceHandle | null;
|
|
30229
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
30083
30230
|
capabilities: AgentCapabilityFlags;
|
|
30084
30231
|
currentModeId: string | null;
|
|
30085
30232
|
availableModes: AgentMode[];
|
|
30086
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
30087
30233
|
thinkingOptionId?: string | null | undefined;
|
|
30088
30234
|
labels?: Record<string, string> | undefined;
|
|
30089
30235
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -30187,10 +30333,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30187
30333
|
updatedAt: string;
|
|
30188
30334
|
lastUserMessageAt: string | null;
|
|
30189
30335
|
persistence: AgentPersistenceHandle | null;
|
|
30336
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
30190
30337
|
capabilities: AgentCapabilityFlags;
|
|
30191
30338
|
currentModeId: string | null;
|
|
30192
30339
|
availableModes: AgentMode[];
|
|
30193
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
30194
30340
|
thinkingOptionId?: string | null | undefined;
|
|
30195
30341
|
labels?: Record<string, string> | undefined;
|
|
30196
30342
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -30701,6 +30847,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30701
30847
|
resolvedPath: string | null;
|
|
30702
30848
|
configuredPath: string | null;
|
|
30703
30849
|
remediation: string | null;
|
|
30850
|
+
details?: {
|
|
30851
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
30852
|
+
} | null | undefined;
|
|
30704
30853
|
}[];
|
|
30705
30854
|
ranAt: string;
|
|
30706
30855
|
update?: {
|
|
@@ -31396,6 +31545,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
31396
31545
|
}>, "many">>;
|
|
31397
31546
|
git: z.ZodOptional<z.ZodObject<{
|
|
31398
31547
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
31548
|
+
baseBranchSource: z.ZodOptional<z.ZodEnum<["local", "remote"]>>;
|
|
31399
31549
|
remoteName: z.ZodOptional<z.ZodString>;
|
|
31400
31550
|
createNewBranch: z.ZodOptional<z.ZodBoolean>;
|
|
31401
31551
|
newBranchName: z.ZodOptional<z.ZodString>;
|
|
@@ -31403,15 +31553,17 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
31403
31553
|
worktreeSlug: z.ZodOptional<z.ZodString>;
|
|
31404
31554
|
}, "strip", z.ZodTypeAny, {
|
|
31405
31555
|
baseBranch?: string | undefined;
|
|
31406
|
-
|
|
31556
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
31407
31557
|
remoteName?: string | undefined;
|
|
31558
|
+
worktreeSlug?: string | undefined;
|
|
31408
31559
|
createNewBranch?: boolean | undefined;
|
|
31409
31560
|
newBranchName?: string | undefined;
|
|
31410
31561
|
createWorktree?: boolean | undefined;
|
|
31411
31562
|
}, {
|
|
31412
31563
|
baseBranch?: string | undefined;
|
|
31413
|
-
|
|
31564
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
31414
31565
|
remoteName?: string | undefined;
|
|
31566
|
+
worktreeSlug?: string | undefined;
|
|
31415
31567
|
createNewBranch?: boolean | undefined;
|
|
31416
31568
|
newBranchName?: string | undefined;
|
|
31417
31569
|
createWorktree?: boolean | undefined;
|
|
@@ -31476,8 +31628,9 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
31476
31628
|
} | undefined;
|
|
31477
31629
|
git?: {
|
|
31478
31630
|
baseBranch?: string | undefined;
|
|
31479
|
-
|
|
31631
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
31480
31632
|
remoteName?: string | undefined;
|
|
31633
|
+
worktreeSlug?: string | undefined;
|
|
31481
31634
|
createNewBranch?: boolean | undefined;
|
|
31482
31635
|
newBranchName?: string | undefined;
|
|
31483
31636
|
createWorktree?: boolean | undefined;
|
|
@@ -31539,8 +31692,9 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
31539
31692
|
} | undefined;
|
|
31540
31693
|
git?: {
|
|
31541
31694
|
baseBranch?: string | undefined;
|
|
31542
|
-
|
|
31695
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
31543
31696
|
remoteName?: string | undefined;
|
|
31697
|
+
worktreeSlug?: string | undefined;
|
|
31544
31698
|
createNewBranch?: boolean | undefined;
|
|
31545
31699
|
newBranchName?: string | undefined;
|
|
31546
31700
|
createWorktree?: boolean | undefined;
|
|
@@ -32065,16 +32219,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
32065
32219
|
type: "checkout_pr_create_request";
|
|
32066
32220
|
requestId: string;
|
|
32067
32221
|
title?: string | undefined;
|
|
32068
|
-
body?: string | undefined;
|
|
32069
32222
|
remoteName?: string | undefined;
|
|
32223
|
+
body?: string | undefined;
|
|
32070
32224
|
baseRef?: string | undefined;
|
|
32071
32225
|
}, {
|
|
32072
32226
|
cwd: string;
|
|
32073
32227
|
type: "checkout_pr_create_request";
|
|
32074
32228
|
requestId: string;
|
|
32075
32229
|
title?: string | undefined;
|
|
32076
|
-
body?: string | undefined;
|
|
32077
32230
|
remoteName?: string | undefined;
|
|
32231
|
+
body?: string | undefined;
|
|
32078
32232
|
baseRef?: string | undefined;
|
|
32079
32233
|
}>, z.ZodObject<{
|
|
32080
32234
|
type: z.ZodLiteral<"checkout_pr_status_request">;
|
|
@@ -32147,22 +32301,28 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
32147
32301
|
cwd: z.ZodString;
|
|
32148
32302
|
query: z.ZodOptional<z.ZodString>;
|
|
32149
32303
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
32304
|
+
preferredBranches: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
32305
|
+
source: z.ZodOptional<z.ZodEnum<["all", "local", "remote"]>>;
|
|
32150
32306
|
remoteName: z.ZodOptional<z.ZodString>;
|
|
32151
32307
|
requestId: z.ZodString;
|
|
32152
32308
|
}, "strip", z.ZodTypeAny, {
|
|
32153
32309
|
cwd: string;
|
|
32154
32310
|
type: "branch_suggestions_request";
|
|
32155
32311
|
requestId: string;
|
|
32312
|
+
remoteName?: string | undefined;
|
|
32156
32313
|
limit?: number | undefined;
|
|
32157
32314
|
query?: string | undefined;
|
|
32158
|
-
|
|
32315
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
32316
|
+
preferredBranches?: string[] | undefined;
|
|
32159
32317
|
}, {
|
|
32160
32318
|
cwd: string;
|
|
32161
32319
|
type: "branch_suggestions_request";
|
|
32162
32320
|
requestId: string;
|
|
32321
|
+
remoteName?: string | undefined;
|
|
32163
32322
|
limit?: number | undefined;
|
|
32164
32323
|
query?: string | undefined;
|
|
32165
|
-
|
|
32324
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
32325
|
+
preferredBranches?: string[] | undefined;
|
|
32166
32326
|
}>, z.ZodObject<{
|
|
32167
32327
|
type: z.ZodLiteral<"git_remotes_request">;
|
|
32168
32328
|
cwd: z.ZodString;
|
|
@@ -32808,8 +32968,9 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
32808
32968
|
} | undefined;
|
|
32809
32969
|
git?: {
|
|
32810
32970
|
baseBranch?: string | undefined;
|
|
32811
|
-
|
|
32971
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
32812
32972
|
remoteName?: string | undefined;
|
|
32973
|
+
worktreeSlug?: string | undefined;
|
|
32813
32974
|
createNewBranch?: boolean | undefined;
|
|
32814
32975
|
newBranchName?: string | undefined;
|
|
32815
32976
|
createWorktree?: boolean | undefined;
|
|
@@ -32954,8 +33115,8 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
32954
33115
|
type: "checkout_pr_create_request";
|
|
32955
33116
|
requestId: string;
|
|
32956
33117
|
title?: string | undefined;
|
|
32957
|
-
body?: string | undefined;
|
|
32958
33118
|
remoteName?: string | undefined;
|
|
33119
|
+
body?: string | undefined;
|
|
32959
33120
|
baseRef?: string | undefined;
|
|
32960
33121
|
} | {
|
|
32961
33122
|
cwd: string;
|
|
@@ -32983,9 +33144,11 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
32983
33144
|
cwd: string;
|
|
32984
33145
|
type: "branch_suggestions_request";
|
|
32985
33146
|
requestId: string;
|
|
33147
|
+
remoteName?: string | undefined;
|
|
32986
33148
|
limit?: number | undefined;
|
|
32987
33149
|
query?: string | undefined;
|
|
32988
|
-
|
|
33150
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
33151
|
+
preferredBranches?: string[] | undefined;
|
|
32989
33152
|
} | {
|
|
32990
33153
|
cwd: string;
|
|
32991
33154
|
type: "git_remotes_request";
|
|
@@ -33276,8 +33439,9 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
33276
33439
|
} | undefined;
|
|
33277
33440
|
git?: {
|
|
33278
33441
|
baseBranch?: string | undefined;
|
|
33279
|
-
|
|
33442
|
+
baseBranchSource?: "local" | "remote" | undefined;
|
|
33280
33443
|
remoteName?: string | undefined;
|
|
33444
|
+
worktreeSlug?: string | undefined;
|
|
33281
33445
|
createNewBranch?: boolean | undefined;
|
|
33282
33446
|
newBranchName?: string | undefined;
|
|
33283
33447
|
createWorktree?: boolean | undefined;
|
|
@@ -33422,8 +33586,8 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
33422
33586
|
type: "checkout_pr_create_request";
|
|
33423
33587
|
requestId: string;
|
|
33424
33588
|
title?: string | undefined;
|
|
33425
|
-
body?: string | undefined;
|
|
33426
33589
|
remoteName?: string | undefined;
|
|
33590
|
+
body?: string | undefined;
|
|
33427
33591
|
baseRef?: string | undefined;
|
|
33428
33592
|
} | {
|
|
33429
33593
|
cwd: string;
|
|
@@ -33451,9 +33615,11 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
33451
33615
|
cwd: string;
|
|
33452
33616
|
type: "branch_suggestions_request";
|
|
33453
33617
|
requestId: string;
|
|
33618
|
+
remoteName?: string | undefined;
|
|
33454
33619
|
limit?: number | undefined;
|
|
33455
33620
|
query?: string | undefined;
|
|
33456
|
-
|
|
33621
|
+
source?: "local" | "remote" | "all" | undefined;
|
|
33622
|
+
preferredBranches?: string[] | undefined;
|
|
33457
33623
|
} | {
|
|
33458
33624
|
cwd: string;
|
|
33459
33625
|
type: "git_remotes_request";
|
|
@@ -33874,10 +34040,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
33874
34040
|
lastUserMessageAt: string | null;
|
|
33875
34041
|
labels: Record<string, string>;
|
|
33876
34042
|
persistence: AgentPersistenceHandle | null;
|
|
34043
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
33877
34044
|
capabilities: AgentCapabilityFlags;
|
|
33878
34045
|
currentModeId: string | null;
|
|
33879
34046
|
availableModes: AgentMode[];
|
|
33880
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
33881
34047
|
thinkingOptionId?: string | null | undefined;
|
|
33882
34048
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
33883
34049
|
requiresAttention?: boolean | undefined;
|
|
@@ -33898,10 +34064,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
33898
34064
|
updatedAt: string;
|
|
33899
34065
|
lastUserMessageAt: string | null;
|
|
33900
34066
|
persistence: AgentPersistenceHandle | null;
|
|
34067
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
33901
34068
|
capabilities: AgentCapabilityFlags;
|
|
33902
34069
|
currentModeId: string | null;
|
|
33903
34070
|
availableModes: AgentMode[];
|
|
33904
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
33905
34071
|
thinkingOptionId?: string | null | undefined;
|
|
33906
34072
|
labels?: Record<string, string> | undefined;
|
|
33907
34073
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -34045,10 +34211,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34045
34211
|
lastUserMessageAt: string | null;
|
|
34046
34212
|
labels: Record<string, string>;
|
|
34047
34213
|
persistence: AgentPersistenceHandle | null;
|
|
34214
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34048
34215
|
capabilities: AgentCapabilityFlags;
|
|
34049
34216
|
currentModeId: string | null;
|
|
34050
34217
|
availableModes: AgentMode[];
|
|
34051
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34052
34218
|
thinkingOptionId?: string | null | undefined;
|
|
34053
34219
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
34054
34220
|
requiresAttention?: boolean | undefined;
|
|
@@ -34098,10 +34264,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34098
34264
|
updatedAt: string;
|
|
34099
34265
|
lastUserMessageAt: string | null;
|
|
34100
34266
|
persistence: AgentPersistenceHandle | null;
|
|
34267
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34101
34268
|
capabilities: AgentCapabilityFlags;
|
|
34102
34269
|
currentModeId: string | null;
|
|
34103
34270
|
availableModes: AgentMode[];
|
|
34104
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34105
34271
|
thinkingOptionId?: string | null | undefined;
|
|
34106
34272
|
labels?: Record<string, string> | undefined;
|
|
34107
34273
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -34165,10 +34331,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34165
34331
|
lastUserMessageAt: string | null;
|
|
34166
34332
|
labels: Record<string, string>;
|
|
34167
34333
|
persistence: AgentPersistenceHandle | null;
|
|
34334
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34168
34335
|
capabilities: AgentCapabilityFlags;
|
|
34169
34336
|
currentModeId: string | null;
|
|
34170
34337
|
availableModes: AgentMode[];
|
|
34171
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34172
34338
|
thinkingOptionId?: string | null | undefined;
|
|
34173
34339
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
34174
34340
|
requiresAttention?: boolean | undefined;
|
|
@@ -34224,10 +34390,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34224
34390
|
updatedAt: string;
|
|
34225
34391
|
lastUserMessageAt: string | null;
|
|
34226
34392
|
persistence: AgentPersistenceHandle | null;
|
|
34393
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34227
34394
|
capabilities: AgentCapabilityFlags;
|
|
34228
34395
|
currentModeId: string | null;
|
|
34229
34396
|
availableModes: AgentMode[];
|
|
34230
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34231
34397
|
thinkingOptionId?: string | null | undefined;
|
|
34232
34398
|
labels?: Record<string, string> | undefined;
|
|
34233
34399
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -34298,14 +34464,17 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34298
34464
|
type: z.ZodLiteral<"turn_completed">;
|
|
34299
34465
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
34300
34466
|
usage: z.ZodOptional<z.ZodType<AgentUsage, z.ZodTypeDef, AgentUsage>>;
|
|
34467
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34301
34468
|
}, "strip", z.ZodTypeAny, {
|
|
34302
34469
|
provider: string;
|
|
34303
34470
|
type: "turn_completed";
|
|
34304
34471
|
usage?: AgentUsage | undefined;
|
|
34472
|
+
modelId?: string | null | undefined;
|
|
34305
34473
|
}, {
|
|
34306
34474
|
provider: string;
|
|
34307
34475
|
type: "turn_completed";
|
|
34308
34476
|
usage?: AgentUsage | undefined;
|
|
34477
|
+
modelId?: string | null | undefined;
|
|
34309
34478
|
}>, z.ZodObject<{
|
|
34310
34479
|
type: z.ZodLiteral<"turn_failed">;
|
|
34311
34480
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
@@ -34456,6 +34625,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34456
34625
|
provider: string;
|
|
34457
34626
|
type: "turn_completed";
|
|
34458
34627
|
usage?: AgentUsage | undefined;
|
|
34628
|
+
modelId?: string | null | undefined;
|
|
34459
34629
|
} | {
|
|
34460
34630
|
error: string;
|
|
34461
34631
|
provider: string;
|
|
@@ -34509,6 +34679,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34509
34679
|
provider: string;
|
|
34510
34680
|
type: "turn_completed";
|
|
34511
34681
|
usage?: AgentUsage | undefined;
|
|
34682
|
+
modelId?: string | null | undefined;
|
|
34512
34683
|
} | {
|
|
34513
34684
|
error: string;
|
|
34514
34685
|
provider: string;
|
|
@@ -34565,6 +34736,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34565
34736
|
provider: string;
|
|
34566
34737
|
type: "turn_completed";
|
|
34567
34738
|
usage?: AgentUsage | undefined;
|
|
34739
|
+
modelId?: string | null | undefined;
|
|
34568
34740
|
} | {
|
|
34569
34741
|
error: string;
|
|
34570
34742
|
provider: string;
|
|
@@ -34621,6 +34793,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34621
34793
|
provider: string;
|
|
34622
34794
|
type: "turn_completed";
|
|
34623
34795
|
usage?: AgentUsage | undefined;
|
|
34796
|
+
modelId?: string | null | undefined;
|
|
34624
34797
|
} | {
|
|
34625
34798
|
error: string;
|
|
34626
34799
|
provider: string;
|
|
@@ -34703,10 +34876,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34703
34876
|
lastUserMessageAt: string | null;
|
|
34704
34877
|
labels: Record<string, string>;
|
|
34705
34878
|
persistence: AgentPersistenceHandle | null;
|
|
34879
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34706
34880
|
capabilities: AgentCapabilityFlags;
|
|
34707
34881
|
currentModeId: string | null;
|
|
34708
34882
|
availableModes: AgentMode[];
|
|
34709
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34710
34883
|
thinkingOptionId?: string | null | undefined;
|
|
34711
34884
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
34712
34885
|
requiresAttention?: boolean | undefined;
|
|
@@ -34727,10 +34900,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34727
34900
|
updatedAt: string;
|
|
34728
34901
|
lastUserMessageAt: string | null;
|
|
34729
34902
|
persistence: AgentPersistenceHandle | null;
|
|
34903
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34730
34904
|
capabilities: AgentCapabilityFlags;
|
|
34731
34905
|
currentModeId: string | null;
|
|
34732
34906
|
availableModes: AgentMode[];
|
|
34733
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34734
34907
|
thinkingOptionId?: string | null | undefined;
|
|
34735
34908
|
labels?: Record<string, string> | undefined;
|
|
34736
34909
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -34757,10 +34930,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34757
34930
|
lastUserMessageAt: string | null;
|
|
34758
34931
|
labels: Record<string, string>;
|
|
34759
34932
|
persistence: AgentPersistenceHandle | null;
|
|
34933
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34760
34934
|
capabilities: AgentCapabilityFlags;
|
|
34761
34935
|
currentModeId: string | null;
|
|
34762
34936
|
availableModes: AgentMode[];
|
|
34763
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34764
34937
|
thinkingOptionId?: string | null | undefined;
|
|
34765
34938
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
34766
34939
|
requiresAttention?: boolean | undefined;
|
|
@@ -34785,10 +34958,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34785
34958
|
updatedAt: string;
|
|
34786
34959
|
lastUserMessageAt: string | null;
|
|
34787
34960
|
persistence: AgentPersistenceHandle | null;
|
|
34961
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34788
34962
|
capabilities: AgentCapabilityFlags;
|
|
34789
34963
|
currentModeId: string | null;
|
|
34790
34964
|
availableModes: AgentMode[];
|
|
34791
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34792
34965
|
thinkingOptionId?: string | null | undefined;
|
|
34793
34966
|
labels?: Record<string, string> | undefined;
|
|
34794
34967
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -34818,10 +34991,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34818
34991
|
lastUserMessageAt: string | null;
|
|
34819
34992
|
labels: Record<string, string>;
|
|
34820
34993
|
persistence: AgentPersistenceHandle | null;
|
|
34994
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34821
34995
|
capabilities: AgentCapabilityFlags;
|
|
34822
34996
|
currentModeId: string | null;
|
|
34823
34997
|
availableModes: AgentMode[];
|
|
34824
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34825
34998
|
thinkingOptionId?: string | null | undefined;
|
|
34826
34999
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
34827
35000
|
requiresAttention?: boolean | undefined;
|
|
@@ -34849,10 +35022,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34849
35022
|
updatedAt: string;
|
|
34850
35023
|
lastUserMessageAt: string | null;
|
|
34851
35024
|
persistence: AgentPersistenceHandle | null;
|
|
35025
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34852
35026
|
capabilities: AgentCapabilityFlags;
|
|
34853
35027
|
currentModeId: string | null;
|
|
34854
35028
|
availableModes: AgentMode[];
|
|
34855
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34856
35029
|
thinkingOptionId?: string | null | undefined;
|
|
34857
35030
|
labels?: Record<string, string> | undefined;
|
|
34858
35031
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -34908,10 +35081,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34908
35081
|
lastUserMessageAt: string | null;
|
|
34909
35082
|
labels: Record<string, string>;
|
|
34910
35083
|
persistence: AgentPersistenceHandle | null;
|
|
35084
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34911
35085
|
capabilities: AgentCapabilityFlags;
|
|
34912
35086
|
currentModeId: string | null;
|
|
34913
35087
|
availableModes: AgentMode[];
|
|
34914
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34915
35088
|
thinkingOptionId?: string | null | undefined;
|
|
34916
35089
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
34917
35090
|
requiresAttention?: boolean | undefined;
|
|
@@ -34932,10 +35105,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34932
35105
|
updatedAt: string;
|
|
34933
35106
|
lastUserMessageAt: string | null;
|
|
34934
35107
|
persistence: AgentPersistenceHandle | null;
|
|
35108
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
34935
35109
|
capabilities: AgentCapabilityFlags;
|
|
34936
35110
|
currentModeId: string | null;
|
|
34937
35111
|
availableModes: AgentMode[];
|
|
34938
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
34939
35112
|
thinkingOptionId?: string | null | undefined;
|
|
34940
35113
|
labels?: Record<string, string> | undefined;
|
|
34941
35114
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -35078,10 +35251,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35078
35251
|
lastUserMessageAt: string | null;
|
|
35079
35252
|
labels: Record<string, string>;
|
|
35080
35253
|
persistence: AgentPersistenceHandle | null;
|
|
35254
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35081
35255
|
capabilities: AgentCapabilityFlags;
|
|
35082
35256
|
currentModeId: string | null;
|
|
35083
35257
|
availableModes: AgentMode[];
|
|
35084
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35085
35258
|
thinkingOptionId?: string | null | undefined;
|
|
35086
35259
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
35087
35260
|
requiresAttention?: boolean | undefined;
|
|
@@ -35130,10 +35303,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35130
35303
|
updatedAt: string;
|
|
35131
35304
|
lastUserMessageAt: string | null;
|
|
35132
35305
|
persistence: AgentPersistenceHandle | null;
|
|
35306
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35133
35307
|
capabilities: AgentCapabilityFlags;
|
|
35134
35308
|
currentModeId: string | null;
|
|
35135
35309
|
availableModes: AgentMode[];
|
|
35136
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35137
35310
|
thinkingOptionId?: string | null | undefined;
|
|
35138
35311
|
labels?: Record<string, string> | undefined;
|
|
35139
35312
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -35199,10 +35372,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35199
35372
|
lastUserMessageAt: string | null;
|
|
35200
35373
|
labels: Record<string, string>;
|
|
35201
35374
|
persistence: AgentPersistenceHandle | null;
|
|
35375
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35202
35376
|
capabilities: AgentCapabilityFlags;
|
|
35203
35377
|
currentModeId: string | null;
|
|
35204
35378
|
availableModes: AgentMode[];
|
|
35205
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35206
35379
|
thinkingOptionId?: string | null | undefined;
|
|
35207
35380
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
35208
35381
|
requiresAttention?: boolean | undefined;
|
|
@@ -35260,10 +35433,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35260
35433
|
updatedAt: string;
|
|
35261
35434
|
lastUserMessageAt: string | null;
|
|
35262
35435
|
persistence: AgentPersistenceHandle | null;
|
|
35436
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35263
35437
|
capabilities: AgentCapabilityFlags;
|
|
35264
35438
|
currentModeId: string | null;
|
|
35265
35439
|
availableModes: AgentMode[];
|
|
35266
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35267
35440
|
thinkingOptionId?: string | null | undefined;
|
|
35268
35441
|
labels?: Record<string, string> | undefined;
|
|
35269
35442
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -35326,10 +35499,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35326
35499
|
lastUserMessageAt: string | null;
|
|
35327
35500
|
labels: Record<string, string>;
|
|
35328
35501
|
persistence: AgentPersistenceHandle | null;
|
|
35502
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35329
35503
|
capabilities: AgentCapabilityFlags;
|
|
35330
35504
|
currentModeId: string | null;
|
|
35331
35505
|
availableModes: AgentMode[];
|
|
35332
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35333
35506
|
thinkingOptionId?: string | null | undefined;
|
|
35334
35507
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
35335
35508
|
requiresAttention?: boolean | undefined;
|
|
@@ -35390,10 +35563,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35390
35563
|
updatedAt: string;
|
|
35391
35564
|
lastUserMessageAt: string | null;
|
|
35392
35565
|
persistence: AgentPersistenceHandle | null;
|
|
35566
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35393
35567
|
capabilities: AgentCapabilityFlags;
|
|
35394
35568
|
currentModeId: string | null;
|
|
35395
35569
|
availableModes: AgentMode[];
|
|
35396
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35397
35570
|
thinkingOptionId?: string | null | undefined;
|
|
35398
35571
|
labels?: Record<string, string> | undefined;
|
|
35399
35572
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -35481,10 +35654,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35481
35654
|
lastUserMessageAt: string | null;
|
|
35482
35655
|
labels: Record<string, string>;
|
|
35483
35656
|
persistence: AgentPersistenceHandle | null;
|
|
35657
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35484
35658
|
capabilities: AgentCapabilityFlags;
|
|
35485
35659
|
currentModeId: string | null;
|
|
35486
35660
|
availableModes: AgentMode[];
|
|
35487
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35488
35661
|
thinkingOptionId?: string | null | undefined;
|
|
35489
35662
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
35490
35663
|
requiresAttention?: boolean | undefined;
|
|
@@ -35505,10 +35678,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35505
35678
|
updatedAt: string;
|
|
35506
35679
|
lastUserMessageAt: string | null;
|
|
35507
35680
|
persistence: AgentPersistenceHandle | null;
|
|
35681
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35508
35682
|
capabilities: AgentCapabilityFlags;
|
|
35509
35683
|
currentModeId: string | null;
|
|
35510
35684
|
availableModes: AgentMode[];
|
|
35511
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35512
35685
|
thinkingOptionId?: string | null | undefined;
|
|
35513
35686
|
labels?: Record<string, string> | undefined;
|
|
35514
35687
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -35654,10 +35827,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35654
35827
|
lastUserMessageAt: string | null;
|
|
35655
35828
|
labels: Record<string, string>;
|
|
35656
35829
|
persistence: AgentPersistenceHandle | null;
|
|
35830
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35657
35831
|
capabilities: AgentCapabilityFlags;
|
|
35658
35832
|
currentModeId: string | null;
|
|
35659
35833
|
availableModes: AgentMode[];
|
|
35660
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35661
35834
|
thinkingOptionId?: string | null | undefined;
|
|
35662
35835
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
35663
35836
|
requiresAttention?: boolean | undefined;
|
|
@@ -35708,10 +35881,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35708
35881
|
updatedAt: string;
|
|
35709
35882
|
lastUserMessageAt: string | null;
|
|
35710
35883
|
persistence: AgentPersistenceHandle | null;
|
|
35884
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35711
35885
|
capabilities: AgentCapabilityFlags;
|
|
35712
35886
|
currentModeId: string | null;
|
|
35713
35887
|
availableModes: AgentMode[];
|
|
35714
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35715
35888
|
thinkingOptionId?: string | null | undefined;
|
|
35716
35889
|
labels?: Record<string, string> | undefined;
|
|
35717
35890
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -35767,10 +35940,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35767
35940
|
lastUserMessageAt: string | null;
|
|
35768
35941
|
labels: Record<string, string>;
|
|
35769
35942
|
persistence: AgentPersistenceHandle | null;
|
|
35943
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35770
35944
|
capabilities: AgentCapabilityFlags;
|
|
35771
35945
|
currentModeId: string | null;
|
|
35772
35946
|
availableModes: AgentMode[];
|
|
35773
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35774
35947
|
thinkingOptionId?: string | null | undefined;
|
|
35775
35948
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
35776
35949
|
requiresAttention?: boolean | undefined;
|
|
@@ -35824,10 +35997,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
35824
35997
|
updatedAt: string;
|
|
35825
35998
|
lastUserMessageAt: string | null;
|
|
35826
35999
|
persistence: AgentPersistenceHandle | null;
|
|
36000
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
35827
36001
|
capabilities: AgentCapabilityFlags;
|
|
35828
36002
|
currentModeId: string | null;
|
|
35829
36003
|
availableModes: AgentMode[];
|
|
35830
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
35831
36004
|
thinkingOptionId?: string | null | undefined;
|
|
35832
36005
|
labels?: Record<string, string> | undefined;
|
|
35833
36006
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -36354,10 +36527,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
36354
36527
|
lastUserMessageAt: string | null;
|
|
36355
36528
|
labels: Record<string, string>;
|
|
36356
36529
|
persistence: AgentPersistenceHandle | null;
|
|
36530
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
36357
36531
|
capabilities: AgentCapabilityFlags;
|
|
36358
36532
|
currentModeId: string | null;
|
|
36359
36533
|
availableModes: AgentMode[];
|
|
36360
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
36361
36534
|
thinkingOptionId?: string | null | undefined;
|
|
36362
36535
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
36363
36536
|
requiresAttention?: boolean | undefined;
|
|
@@ -36378,10 +36551,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
36378
36551
|
updatedAt: string;
|
|
36379
36552
|
lastUserMessageAt: string | null;
|
|
36380
36553
|
persistence: AgentPersistenceHandle | null;
|
|
36554
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
36381
36555
|
capabilities: AgentCapabilityFlags;
|
|
36382
36556
|
currentModeId: string | null;
|
|
36383
36557
|
availableModes: AgentMode[];
|
|
36384
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
36385
36558
|
thinkingOptionId?: string | null | undefined;
|
|
36386
36559
|
labels?: Record<string, string> | undefined;
|
|
36387
36560
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -36411,10 +36584,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
36411
36584
|
lastUserMessageAt: string | null;
|
|
36412
36585
|
labels: Record<string, string>;
|
|
36413
36586
|
persistence: AgentPersistenceHandle | null;
|
|
36587
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
36414
36588
|
capabilities: AgentCapabilityFlags;
|
|
36415
36589
|
currentModeId: string | null;
|
|
36416
36590
|
availableModes: AgentMode[];
|
|
36417
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
36418
36591
|
thinkingOptionId?: string | null | undefined;
|
|
36419
36592
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
36420
36593
|
requiresAttention?: boolean | undefined;
|
|
@@ -36441,10 +36614,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
36441
36614
|
updatedAt: string;
|
|
36442
36615
|
lastUserMessageAt: string | null;
|
|
36443
36616
|
persistence: AgentPersistenceHandle | null;
|
|
36617
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
36444
36618
|
capabilities: AgentCapabilityFlags;
|
|
36445
36619
|
currentModeId: string | null;
|
|
36446
36620
|
availableModes: AgentMode[];
|
|
36447
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
36448
36621
|
thinkingOptionId?: string | null | undefined;
|
|
36449
36622
|
labels?: Record<string, string> | undefined;
|
|
36450
36623
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -36476,10 +36649,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
36476
36649
|
lastUserMessageAt: string | null;
|
|
36477
36650
|
labels: Record<string, string>;
|
|
36478
36651
|
persistence: AgentPersistenceHandle | null;
|
|
36652
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
36479
36653
|
capabilities: AgentCapabilityFlags;
|
|
36480
36654
|
currentModeId: string | null;
|
|
36481
36655
|
availableModes: AgentMode[];
|
|
36482
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
36483
36656
|
thinkingOptionId?: string | null | undefined;
|
|
36484
36657
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
36485
36658
|
requiresAttention?: boolean | undefined;
|
|
@@ -36509,10 +36682,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
36509
36682
|
updatedAt: string;
|
|
36510
36683
|
lastUserMessageAt: string | null;
|
|
36511
36684
|
persistence: AgentPersistenceHandle | null;
|
|
36685
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
36512
36686
|
capabilities: AgentCapabilityFlags;
|
|
36513
36687
|
currentModeId: string | null;
|
|
36514
36688
|
availableModes: AgentMode[];
|
|
36515
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
36516
36689
|
thinkingOptionId?: string | null | undefined;
|
|
36517
36690
|
labels?: Record<string, string> | undefined;
|
|
36518
36691
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -39218,6 +39391,13 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39218
39391
|
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
39219
39392
|
configuredPath: z.ZodNullable<z.ZodString>;
|
|
39220
39393
|
remediation: z.ZodNullable<z.ZodString>;
|
|
39394
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
39395
|
+
compatibilityStatus: z.ZodOptional<z.ZodEnum<["supported", "unsupported", "unknown"]>>;
|
|
39396
|
+
}, "strip", z.ZodTypeAny, {
|
|
39397
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39398
|
+
}, {
|
|
39399
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39400
|
+
}>>>;
|
|
39221
39401
|
}, "strip", z.ZodTypeAny, {
|
|
39222
39402
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
39223
39403
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -39227,6 +39407,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39227
39407
|
resolvedPath: string | null;
|
|
39228
39408
|
configuredPath: string | null;
|
|
39229
39409
|
remediation: string | null;
|
|
39410
|
+
details?: {
|
|
39411
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39412
|
+
} | null | undefined;
|
|
39230
39413
|
}, {
|
|
39231
39414
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
39232
39415
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -39236,6 +39419,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39236
39419
|
resolvedPath: string | null;
|
|
39237
39420
|
configuredPath: string | null;
|
|
39238
39421
|
remediation: string | null;
|
|
39422
|
+
details?: {
|
|
39423
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39424
|
+
} | null | undefined;
|
|
39239
39425
|
}>, "many">;
|
|
39240
39426
|
ranAt: z.ZodString;
|
|
39241
39427
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -39260,6 +39446,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39260
39446
|
resolvedPath: string | null;
|
|
39261
39447
|
configuredPath: string | null;
|
|
39262
39448
|
remediation: string | null;
|
|
39449
|
+
details?: {
|
|
39450
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39451
|
+
} | null | undefined;
|
|
39263
39452
|
}[];
|
|
39264
39453
|
ranAt: string;
|
|
39265
39454
|
update?: {
|
|
@@ -39291,6 +39480,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39291
39480
|
resolvedPath: string | null;
|
|
39292
39481
|
configuredPath: string | null;
|
|
39293
39482
|
remediation: string | null;
|
|
39483
|
+
details?: {
|
|
39484
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39485
|
+
} | null | undefined;
|
|
39294
39486
|
}[];
|
|
39295
39487
|
ranAt: string;
|
|
39296
39488
|
update?: {
|
|
@@ -39325,6 +39517,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39325
39517
|
resolvedPath: string | null;
|
|
39326
39518
|
configuredPath: string | null;
|
|
39327
39519
|
remediation: string | null;
|
|
39520
|
+
details?: {
|
|
39521
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39522
|
+
} | null | undefined;
|
|
39328
39523
|
}[];
|
|
39329
39524
|
ranAt: string;
|
|
39330
39525
|
update?: {
|
|
@@ -39359,6 +39554,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39359
39554
|
resolvedPath: string | null;
|
|
39360
39555
|
configuredPath: string | null;
|
|
39361
39556
|
remediation: string | null;
|
|
39557
|
+
details?: {
|
|
39558
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39559
|
+
} | null | undefined;
|
|
39362
39560
|
}[];
|
|
39363
39561
|
ranAt: string;
|
|
39364
39562
|
update?: {
|
|
@@ -40602,10 +40800,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
40602
40800
|
lastUserMessageAt: string | null;
|
|
40603
40801
|
labels: Record<string, string>;
|
|
40604
40802
|
persistence: AgentPersistenceHandle | null;
|
|
40803
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
40605
40804
|
capabilities: AgentCapabilityFlags;
|
|
40606
40805
|
currentModeId: string | null;
|
|
40607
40806
|
availableModes: AgentMode[];
|
|
40608
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
40609
40807
|
thinkingOptionId?: string | null | undefined;
|
|
40610
40808
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
40611
40809
|
requiresAttention?: boolean | undefined;
|
|
@@ -40662,6 +40860,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
40662
40860
|
provider: string;
|
|
40663
40861
|
type: "turn_completed";
|
|
40664
40862
|
usage?: AgentUsage | undefined;
|
|
40863
|
+
modelId?: string | null | undefined;
|
|
40665
40864
|
} | {
|
|
40666
40865
|
error: string;
|
|
40667
40866
|
provider: string;
|
|
@@ -40719,10 +40918,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
40719
40918
|
lastUserMessageAt: string | null;
|
|
40720
40919
|
labels: Record<string, string>;
|
|
40721
40920
|
persistence: AgentPersistenceHandle | null;
|
|
40921
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
40722
40922
|
capabilities: AgentCapabilityFlags;
|
|
40723
40923
|
currentModeId: string | null;
|
|
40724
40924
|
availableModes: AgentMode[];
|
|
40725
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
40726
40925
|
thinkingOptionId?: string | null | undefined;
|
|
40727
40926
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
40728
40927
|
requiresAttention?: boolean | undefined;
|
|
@@ -40750,10 +40949,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
40750
40949
|
lastUserMessageAt: string | null;
|
|
40751
40950
|
labels: Record<string, string>;
|
|
40752
40951
|
persistence: AgentPersistenceHandle | null;
|
|
40952
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
40753
40953
|
capabilities: AgentCapabilityFlags;
|
|
40754
40954
|
currentModeId: string | null;
|
|
40755
40955
|
availableModes: AgentMode[];
|
|
40756
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
40757
40956
|
thinkingOptionId?: string | null | undefined;
|
|
40758
40957
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
40759
40958
|
requiresAttention?: boolean | undefined;
|
|
@@ -40816,10 +41015,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
40816
41015
|
lastUserMessageAt: string | null;
|
|
40817
41016
|
labels: Record<string, string>;
|
|
40818
41017
|
persistence: AgentPersistenceHandle | null;
|
|
41018
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
40819
41019
|
capabilities: AgentCapabilityFlags;
|
|
40820
41020
|
currentModeId: string | null;
|
|
40821
41021
|
availableModes: AgentMode[];
|
|
40822
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
40823
41022
|
thinkingOptionId?: string | null | undefined;
|
|
40824
41023
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
40825
41024
|
requiresAttention?: boolean | undefined;
|
|
@@ -40923,10 +41122,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
40923
41122
|
lastUserMessageAt: string | null;
|
|
40924
41123
|
labels: Record<string, string>;
|
|
40925
41124
|
persistence: AgentPersistenceHandle | null;
|
|
41125
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
40926
41126
|
capabilities: AgentCapabilityFlags;
|
|
40927
41127
|
currentModeId: string | null;
|
|
40928
41128
|
availableModes: AgentMode[];
|
|
40929
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
40930
41129
|
thinkingOptionId?: string | null | undefined;
|
|
40931
41130
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
40932
41131
|
requiresAttention?: boolean | undefined;
|
|
@@ -41436,6 +41635,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
41436
41635
|
resolvedPath: string | null;
|
|
41437
41636
|
configuredPath: string | null;
|
|
41438
41637
|
remediation: string | null;
|
|
41638
|
+
details?: {
|
|
41639
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
41640
|
+
} | null | undefined;
|
|
41439
41641
|
}[];
|
|
41440
41642
|
ranAt: string;
|
|
41441
41643
|
update?: {
|
|
@@ -41737,10 +41939,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
41737
41939
|
updatedAt: string;
|
|
41738
41940
|
lastUserMessageAt: string | null;
|
|
41739
41941
|
persistence: AgentPersistenceHandle | null;
|
|
41942
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
41740
41943
|
capabilities: AgentCapabilityFlags;
|
|
41741
41944
|
currentModeId: string | null;
|
|
41742
41945
|
availableModes: AgentMode[];
|
|
41743
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
41744
41946
|
thinkingOptionId?: string | null | undefined;
|
|
41745
41947
|
labels?: Record<string, string> | undefined;
|
|
41746
41948
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -41798,6 +42000,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
41798
42000
|
provider: string;
|
|
41799
42001
|
type: "turn_completed";
|
|
41800
42002
|
usage?: AgentUsage | undefined;
|
|
42003
|
+
modelId?: string | null | undefined;
|
|
41801
42004
|
} | {
|
|
41802
42005
|
error: string;
|
|
41803
42006
|
provider: string;
|
|
@@ -41854,10 +42057,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
41854
42057
|
updatedAt: string;
|
|
41855
42058
|
lastUserMessageAt: string | null;
|
|
41856
42059
|
persistence: AgentPersistenceHandle | null;
|
|
42060
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
41857
42061
|
capabilities: AgentCapabilityFlags;
|
|
41858
42062
|
currentModeId: string | null;
|
|
41859
42063
|
availableModes: AgentMode[];
|
|
41860
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
41861
42064
|
thinkingOptionId?: string | null | undefined;
|
|
41862
42065
|
labels?: Record<string, string> | undefined;
|
|
41863
42066
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -41885,10 +42088,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
41885
42088
|
updatedAt: string;
|
|
41886
42089
|
lastUserMessageAt: string | null;
|
|
41887
42090
|
persistence: AgentPersistenceHandle | null;
|
|
42091
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
41888
42092
|
capabilities: AgentCapabilityFlags;
|
|
41889
42093
|
currentModeId: string | null;
|
|
41890
42094
|
availableModes: AgentMode[];
|
|
41891
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
41892
42095
|
thinkingOptionId?: string | null | undefined;
|
|
41893
42096
|
labels?: Record<string, string> | undefined;
|
|
41894
42097
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -41951,10 +42154,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
41951
42154
|
updatedAt: string;
|
|
41952
42155
|
lastUserMessageAt: string | null;
|
|
41953
42156
|
persistence: AgentPersistenceHandle | null;
|
|
42157
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
41954
42158
|
capabilities: AgentCapabilityFlags;
|
|
41955
42159
|
currentModeId: string | null;
|
|
41956
42160
|
availableModes: AgentMode[];
|
|
41957
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
41958
42161
|
thinkingOptionId?: string | null | undefined;
|
|
41959
42162
|
labels?: Record<string, string> | undefined;
|
|
41960
42163
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -42058,10 +42261,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
42058
42261
|
updatedAt: string;
|
|
42059
42262
|
lastUserMessageAt: string | null;
|
|
42060
42263
|
persistence: AgentPersistenceHandle | null;
|
|
42264
|
+
pendingPermissions: AgentPermissionRequest[];
|
|
42061
42265
|
capabilities: AgentCapabilityFlags;
|
|
42062
42266
|
currentModeId: string | null;
|
|
42063
42267
|
availableModes: AgentMode[];
|
|
42064
|
-
pendingPermissions: AgentPermissionRequest[];
|
|
42065
42268
|
thinkingOptionId?: string | null | undefined;
|
|
42066
42269
|
labels?: Record<string, string> | undefined;
|
|
42067
42270
|
runtimeInfo?: AgentRuntimeInfo | undefined;
|
|
@@ -42572,6 +42775,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
42572
42775
|
resolvedPath: string | null;
|
|
42573
42776
|
configuredPath: string | null;
|
|
42574
42777
|
remediation: string | null;
|
|
42778
|
+
details?: {
|
|
42779
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
42780
|
+
} | null | undefined;
|
|
42575
42781
|
}[];
|
|
42576
42782
|
ranAt: string;
|
|
42577
42783
|
update?: {
|