@getpaseo/protocol 0.1.89 → 0.1.91-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent-state-bucket.d.ts +1 -0
- package/dist/messages.d.ts +648 -30
- package/dist/messages.js +48 -35
- package/package.json +5 -3
package/dist/messages.d.ts
CHANGED
|
@@ -656,7 +656,6 @@ export declare const MutableDaemonConfigPatchSchema: z.ZodObject<{
|
|
|
656
656
|
}, z.ZodTypeAny, "passthrough">>;
|
|
657
657
|
export type MutableDaemonConfig = z.infer<typeof MutableDaemonConfigSchema>;
|
|
658
658
|
export type MutableDaemonConfigPatch = z.infer<typeof MutableDaemonConfigPatchSchema>;
|
|
659
|
-
import type { LiteralUnion } from "./literal-union.js";
|
|
660
659
|
import type { AgentCapabilityFlags, AgentModelDefinition, AgentMode, AgentPermissionRequest, AgentPermissionResponse, AgentPersistenceHandle, ProviderStatus, AgentRuntimeInfo, AgentTimelineItem, AgentUsage } from "./agent-types.js";
|
|
661
660
|
export declare const AgentStatusSchema: z.ZodEnum<["initializing", "idle", "running", "error", "closed"]>;
|
|
662
661
|
export declare const AgentFeatureToggleSchema: z.ZodObject<{
|
|
@@ -5843,24 +5842,7 @@ export declare const WorkspaceSetupStatusRequestSchema: z.ZodObject<{
|
|
|
5843
5842
|
requestId: string;
|
|
5844
5843
|
workspaceId: string;
|
|
5845
5844
|
}>;
|
|
5846
|
-
export declare const
|
|
5847
|
-
export declare const KNOWN_EDITOR_TARGET_IDS: readonly ["cursor", "vscode", "zed", "finder", "explorer", "file-manager", "webstorm"];
|
|
5848
|
-
export declare const KnownEditorTargetIdSchema: z.ZodEnum<["cursor", "vscode", "zed", "finder", "explorer", "file-manager", "webstorm"]>;
|
|
5849
|
-
export declare const LegacyEditorTargetIdSchema: z.ZodEnum<["cursor", "vscode", "zed", "finder", "explorer", "file-manager"]>;
|
|
5850
|
-
export declare const EditorTargetIdSchema: z.ZodString;
|
|
5851
|
-
export declare function isKnownEditorTargetId(value: string): value is KnownEditorTargetId;
|
|
5852
|
-
export declare function isLegacyEditorTargetId(value: string): value is LegacyEditorTargetId;
|
|
5853
|
-
export declare const EditorTargetDescriptorPayloadSchema: z.ZodObject<{
|
|
5854
|
-
id: z.ZodString;
|
|
5855
|
-
label: z.ZodString;
|
|
5856
|
-
}, "strip", z.ZodTypeAny, {
|
|
5857
|
-
id: string;
|
|
5858
|
-
label: string;
|
|
5859
|
-
}, {
|
|
5860
|
-
id: string;
|
|
5861
|
-
label: string;
|
|
5862
|
-
}>;
|
|
5863
|
-
export declare const ListAvailableEditorsRequestSchema: z.ZodObject<{
|
|
5845
|
+
export declare const LegacyListAvailableEditorsRequestSchema: z.ZodObject<{
|
|
5864
5846
|
type: z.ZodLiteral<"list_available_editors_request">;
|
|
5865
5847
|
requestId: z.ZodString;
|
|
5866
5848
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5870,21 +5852,27 @@ export declare const ListAvailableEditorsRequestSchema: z.ZodObject<{
|
|
|
5870
5852
|
type: "list_available_editors_request";
|
|
5871
5853
|
requestId: string;
|
|
5872
5854
|
}>;
|
|
5873
|
-
export declare const
|
|
5855
|
+
export declare const LegacyOpenInEditorRequestSchema: z.ZodObject<{
|
|
5874
5856
|
type: z.ZodLiteral<"open_in_editor_request">;
|
|
5875
5857
|
path: z.ZodString;
|
|
5876
5858
|
editorId: z.ZodString;
|
|
5859
|
+
mode: z.ZodOptional<z.ZodEnum<["open", "reveal"]>>;
|
|
5860
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
5877
5861
|
requestId: z.ZodString;
|
|
5878
5862
|
}, "strip", z.ZodTypeAny, {
|
|
5879
5863
|
type: "open_in_editor_request";
|
|
5880
5864
|
path: string;
|
|
5881
5865
|
requestId: string;
|
|
5882
5866
|
editorId: string;
|
|
5867
|
+
mode?: "open" | "reveal" | undefined;
|
|
5868
|
+
cwd?: string | undefined;
|
|
5883
5869
|
}, {
|
|
5884
5870
|
type: "open_in_editor_request";
|
|
5885
5871
|
path: string;
|
|
5886
5872
|
requestId: string;
|
|
5887
5873
|
editorId: string;
|
|
5874
|
+
mode?: "open" | "reveal" | undefined;
|
|
5875
|
+
cwd?: string | undefined;
|
|
5888
5876
|
}>;
|
|
5889
5877
|
export declare const OpenProjectRequestSchema: z.ZodObject<{
|
|
5890
5878
|
type: z.ZodLiteral<"open_project_request">;
|
|
@@ -5912,6 +5900,19 @@ export declare const ArchiveWorkspaceRequestSchema: z.ZodObject<{
|
|
|
5912
5900
|
requestId: string;
|
|
5913
5901
|
workspaceId: string;
|
|
5914
5902
|
}>;
|
|
5903
|
+
export declare const WorkspaceClearAttentionRequestSchema: z.ZodObject<{
|
|
5904
|
+
type: z.ZodLiteral<"workspace.clear_attention.request">;
|
|
5905
|
+
workspaceId: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
5906
|
+
requestId: z.ZodString;
|
|
5907
|
+
}, "strip", z.ZodTypeAny, {
|
|
5908
|
+
type: "workspace.clear_attention.request";
|
|
5909
|
+
requestId: string;
|
|
5910
|
+
workspaceId: string | string[];
|
|
5911
|
+
}, {
|
|
5912
|
+
type: "workspace.clear_attention.request";
|
|
5913
|
+
requestId: string;
|
|
5914
|
+
workspaceId: string | string[];
|
|
5915
|
+
}>;
|
|
5915
5916
|
export declare const FileExplorerRequestSchema: z.ZodObject<{
|
|
5916
5917
|
type: z.ZodLiteral<"file_explorer_request">;
|
|
5917
5918
|
cwd: z.ZodString;
|
|
@@ -9623,17 +9624,23 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
9623
9624
|
type: z.ZodLiteral<"open_in_editor_request">;
|
|
9624
9625
|
path: z.ZodString;
|
|
9625
9626
|
editorId: z.ZodString;
|
|
9627
|
+
mode: z.ZodOptional<z.ZodEnum<["open", "reveal"]>>;
|
|
9628
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
9626
9629
|
requestId: z.ZodString;
|
|
9627
9630
|
}, "strip", z.ZodTypeAny, {
|
|
9628
9631
|
type: "open_in_editor_request";
|
|
9629
9632
|
path: string;
|
|
9630
9633
|
requestId: string;
|
|
9631
9634
|
editorId: string;
|
|
9635
|
+
mode?: "open" | "reveal" | undefined;
|
|
9636
|
+
cwd?: string | undefined;
|
|
9632
9637
|
}, {
|
|
9633
9638
|
type: "open_in_editor_request";
|
|
9634
9639
|
path: string;
|
|
9635
9640
|
requestId: string;
|
|
9636
9641
|
editorId: string;
|
|
9642
|
+
mode?: "open" | "reveal" | undefined;
|
|
9643
|
+
cwd?: string | undefined;
|
|
9637
9644
|
}>, z.ZodObject<{
|
|
9638
9645
|
type: z.ZodLiteral<"open_project_request">;
|
|
9639
9646
|
cwd: z.ZodString;
|
|
@@ -9658,6 +9665,18 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
9658
9665
|
type: "archive_workspace_request";
|
|
9659
9666
|
requestId: string;
|
|
9660
9667
|
workspaceId: string;
|
|
9668
|
+
}>, z.ZodObject<{
|
|
9669
|
+
type: z.ZodLiteral<"workspace.clear_attention.request">;
|
|
9670
|
+
workspaceId: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
9671
|
+
requestId: z.ZodString;
|
|
9672
|
+
}, "strip", z.ZodTypeAny, {
|
|
9673
|
+
type: "workspace.clear_attention.request";
|
|
9674
|
+
requestId: string;
|
|
9675
|
+
workspaceId: string | string[];
|
|
9676
|
+
}, {
|
|
9677
|
+
type: "workspace.clear_attention.request";
|
|
9678
|
+
requestId: string;
|
|
9679
|
+
workspaceId: string | string[];
|
|
9661
9680
|
}>, z.ZodObject<{
|
|
9662
9681
|
type: z.ZodLiteral<"file_explorer_request">;
|
|
9663
9682
|
cwd: z.ZodString;
|
|
@@ -15568,6 +15587,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
15568
15587
|
name: z.ZodString;
|
|
15569
15588
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15570
15589
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
15590
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
15571
15591
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
15572
15592
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15573
15593
|
additions: z.ZodNumber;
|
|
@@ -16008,6 +16028,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
16008
16028
|
projectKind: "git" | "directory" | "non_git";
|
|
16009
16029
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
16010
16030
|
archivingAt: string | null;
|
|
16031
|
+
statusEnteredAt: string | null;
|
|
16011
16032
|
activityAt: string | null;
|
|
16012
16033
|
projectCustomName?: string | null | undefined;
|
|
16013
16034
|
workspaceDirectory?: string | undefined;
|
|
@@ -16112,6 +16133,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
16112
16133
|
projectCustomName?: string | null | undefined;
|
|
16113
16134
|
workspaceDirectory?: string | undefined;
|
|
16114
16135
|
archivingAt?: string | null | undefined;
|
|
16136
|
+
statusEnteredAt?: string | null | undefined;
|
|
16115
16137
|
diffStat?: {
|
|
16116
16138
|
additions: number;
|
|
16117
16139
|
deletions: number;
|
|
@@ -16211,6 +16233,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
16211
16233
|
projectKind: "git" | "directory" | "non_git";
|
|
16212
16234
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
16213
16235
|
archivingAt: string | null;
|
|
16236
|
+
statusEnteredAt: string | null;
|
|
16214
16237
|
activityAt: string | null;
|
|
16215
16238
|
projectCustomName?: string | null | undefined;
|
|
16216
16239
|
diffStat?: {
|
|
@@ -16314,6 +16337,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
16314
16337
|
projectCustomName?: string | null | undefined;
|
|
16315
16338
|
workspaceDirectory?: string | undefined;
|
|
16316
16339
|
archivingAt?: string | null | undefined;
|
|
16340
|
+
statusEnteredAt?: string | null | undefined;
|
|
16317
16341
|
diffStat?: {
|
|
16318
16342
|
additions: number;
|
|
16319
16343
|
deletions: number;
|
|
@@ -20393,6 +20417,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20393
20417
|
name: z.ZodString;
|
|
20394
20418
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20395
20419
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
20420
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
20396
20421
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
20397
20422
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
20398
20423
|
additions: z.ZodNumber;
|
|
@@ -20833,6 +20858,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20833
20858
|
projectKind: "git" | "directory" | "non_git";
|
|
20834
20859
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
20835
20860
|
archivingAt: string | null;
|
|
20861
|
+
statusEnteredAt: string | null;
|
|
20836
20862
|
activityAt: string | null;
|
|
20837
20863
|
projectCustomName?: string | null | undefined;
|
|
20838
20864
|
workspaceDirectory?: string | undefined;
|
|
@@ -20937,6 +20963,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20937
20963
|
projectCustomName?: string | null | undefined;
|
|
20938
20964
|
workspaceDirectory?: string | undefined;
|
|
20939
20965
|
archivingAt?: string | null | undefined;
|
|
20966
|
+
statusEnteredAt?: string | null | undefined;
|
|
20940
20967
|
diffStat?: {
|
|
20941
20968
|
additions: number;
|
|
20942
20969
|
deletions: number;
|
|
@@ -21036,6 +21063,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21036
21063
|
projectKind: "git" | "directory" | "non_git";
|
|
21037
21064
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
21038
21065
|
archivingAt: string | null;
|
|
21066
|
+
statusEnteredAt: string | null;
|
|
21039
21067
|
activityAt: string | null;
|
|
21040
21068
|
projectCustomName?: string | null | undefined;
|
|
21041
21069
|
diffStat?: {
|
|
@@ -21139,6 +21167,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21139
21167
|
projectCustomName?: string | null | undefined;
|
|
21140
21168
|
workspaceDirectory?: string | undefined;
|
|
21141
21169
|
archivingAt?: string | null | undefined;
|
|
21170
|
+
statusEnteredAt?: string | null | undefined;
|
|
21142
21171
|
diffStat?: {
|
|
21143
21172
|
additions: number;
|
|
21144
21173
|
deletions: number;
|
|
@@ -21253,6 +21282,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21253
21282
|
projectKind: "git" | "directory" | "non_git";
|
|
21254
21283
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
21255
21284
|
archivingAt: string | null;
|
|
21285
|
+
statusEnteredAt: string | null;
|
|
21256
21286
|
activityAt: string | null;
|
|
21257
21287
|
projectCustomName?: string | null | undefined;
|
|
21258
21288
|
diffStat?: {
|
|
@@ -21365,6 +21395,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21365
21395
|
projectCustomName?: string | null | undefined;
|
|
21366
21396
|
workspaceDirectory?: string | undefined;
|
|
21367
21397
|
archivingAt?: string | null | undefined;
|
|
21398
|
+
statusEnteredAt?: string | null | undefined;
|
|
21368
21399
|
diffStat?: {
|
|
21369
21400
|
additions: number;
|
|
21370
21401
|
deletions: number;
|
|
@@ -21476,6 +21507,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21476
21507
|
projectKind: "git" | "directory" | "non_git";
|
|
21477
21508
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
21478
21509
|
archivingAt: string | null;
|
|
21510
|
+
statusEnteredAt: string | null;
|
|
21479
21511
|
activityAt: string | null;
|
|
21480
21512
|
projectCustomName?: string | null | undefined;
|
|
21481
21513
|
diffStat?: {
|
|
@@ -21591,6 +21623,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21591
21623
|
projectCustomName?: string | null | undefined;
|
|
21592
21624
|
workspaceDirectory?: string | undefined;
|
|
21593
21625
|
archivingAt?: string | null | undefined;
|
|
21626
|
+
statusEnteredAt?: string | null | undefined;
|
|
21594
21627
|
diffStat?: {
|
|
21595
21628
|
additions: number;
|
|
21596
21629
|
deletions: number;
|
|
@@ -21692,6 +21725,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
21692
21725
|
name: z.ZodString;
|
|
21693
21726
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21694
21727
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
21728
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
21695
21729
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
21696
21730
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21697
21731
|
additions: z.ZodNumber;
|
|
@@ -22132,6 +22166,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22132
22166
|
projectKind: "git" | "directory" | "non_git";
|
|
22133
22167
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
22134
22168
|
archivingAt: string | null;
|
|
22169
|
+
statusEnteredAt: string | null;
|
|
22135
22170
|
activityAt: string | null;
|
|
22136
22171
|
projectCustomName?: string | null | undefined;
|
|
22137
22172
|
workspaceDirectory?: string | undefined;
|
|
@@ -22236,6 +22271,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22236
22271
|
projectCustomName?: string | null | undefined;
|
|
22237
22272
|
workspaceDirectory?: string | undefined;
|
|
22238
22273
|
archivingAt?: string | null | undefined;
|
|
22274
|
+
statusEnteredAt?: string | null | undefined;
|
|
22239
22275
|
diffStat?: {
|
|
22240
22276
|
additions: number;
|
|
22241
22277
|
deletions: number;
|
|
@@ -22335,6 +22371,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22335
22371
|
projectKind: "git" | "directory" | "non_git";
|
|
22336
22372
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
22337
22373
|
archivingAt: string | null;
|
|
22374
|
+
statusEnteredAt: string | null;
|
|
22338
22375
|
activityAt: string | null;
|
|
22339
22376
|
projectCustomName?: string | null | undefined;
|
|
22340
22377
|
diffStat?: {
|
|
@@ -22438,6 +22475,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22438
22475
|
projectCustomName?: string | null | undefined;
|
|
22439
22476
|
workspaceDirectory?: string | undefined;
|
|
22440
22477
|
archivingAt?: string | null | undefined;
|
|
22478
|
+
statusEnteredAt?: string | null | undefined;
|
|
22441
22479
|
diffStat?: {
|
|
22442
22480
|
additions: number;
|
|
22443
22481
|
deletions: number;
|
|
@@ -22540,6 +22578,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22540
22578
|
projectKind: "git" | "directory" | "non_git";
|
|
22541
22579
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
22542
22580
|
archivingAt: string | null;
|
|
22581
|
+
statusEnteredAt: string | null;
|
|
22543
22582
|
activityAt: string | null;
|
|
22544
22583
|
projectCustomName?: string | null | undefined;
|
|
22545
22584
|
diffStat?: {
|
|
@@ -22646,6 +22685,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22646
22685
|
projectCustomName?: string | null | undefined;
|
|
22647
22686
|
workspaceDirectory?: string | undefined;
|
|
22648
22687
|
archivingAt?: string | null | undefined;
|
|
22688
|
+
statusEnteredAt?: string | null | undefined;
|
|
22649
22689
|
diffStat?: {
|
|
22650
22690
|
additions: number;
|
|
22651
22691
|
deletions: number;
|
|
@@ -22760,6 +22800,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22760
22800
|
projectKind: "git" | "directory" | "non_git";
|
|
22761
22801
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
22762
22802
|
archivingAt: string | null;
|
|
22803
|
+
statusEnteredAt: string | null;
|
|
22763
22804
|
activityAt: string | null;
|
|
22764
22805
|
projectCustomName?: string | null | undefined;
|
|
22765
22806
|
diffStat?: {
|
|
@@ -22872,6 +22913,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22872
22913
|
projectCustomName?: string | null | undefined;
|
|
22873
22914
|
workspaceDirectory?: string | undefined;
|
|
22874
22915
|
archivingAt?: string | null | undefined;
|
|
22916
|
+
statusEnteredAt?: string | null | undefined;
|
|
22875
22917
|
diffStat?: {
|
|
22876
22918
|
additions: number;
|
|
22877
22919
|
deletions: number;
|
|
@@ -23547,6 +23589,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
23547
23589
|
name: z.ZodString;
|
|
23548
23590
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23549
23591
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
23592
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
23550
23593
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
23551
23594
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
23552
23595
|
additions: z.ZodNumber;
|
|
@@ -23987,6 +24030,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
23987
24030
|
projectKind: "git" | "directory" | "non_git";
|
|
23988
24031
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
23989
24032
|
archivingAt: string | null;
|
|
24033
|
+
statusEnteredAt: string | null;
|
|
23990
24034
|
activityAt: string | null;
|
|
23991
24035
|
projectCustomName?: string | null | undefined;
|
|
23992
24036
|
workspaceDirectory?: string | undefined;
|
|
@@ -24091,6 +24135,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24091
24135
|
projectCustomName?: string | null | undefined;
|
|
24092
24136
|
workspaceDirectory?: string | undefined;
|
|
24093
24137
|
archivingAt?: string | null | undefined;
|
|
24138
|
+
statusEnteredAt?: string | null | undefined;
|
|
24094
24139
|
diffStat?: {
|
|
24095
24140
|
additions: number;
|
|
24096
24141
|
deletions: number;
|
|
@@ -24190,6 +24235,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24190
24235
|
projectKind: "git" | "directory" | "non_git";
|
|
24191
24236
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
24192
24237
|
archivingAt: string | null;
|
|
24238
|
+
statusEnteredAt: string | null;
|
|
24193
24239
|
activityAt: string | null;
|
|
24194
24240
|
projectCustomName?: string | null | undefined;
|
|
24195
24241
|
diffStat?: {
|
|
@@ -24293,6 +24339,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24293
24339
|
projectCustomName?: string | null | undefined;
|
|
24294
24340
|
workspaceDirectory?: string | undefined;
|
|
24295
24341
|
archivingAt?: string | null | undefined;
|
|
24342
|
+
statusEnteredAt?: string | null | undefined;
|
|
24296
24343
|
diffStat?: {
|
|
24297
24344
|
additions: number;
|
|
24298
24345
|
deletions: number;
|
|
@@ -24397,6 +24444,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24397
24444
|
projectKind: "git" | "directory" | "non_git";
|
|
24398
24445
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
24399
24446
|
archivingAt: string | null;
|
|
24447
|
+
statusEnteredAt: string | null;
|
|
24400
24448
|
activityAt: string | null;
|
|
24401
24449
|
projectCustomName?: string | null | undefined;
|
|
24402
24450
|
diffStat?: {
|
|
@@ -24504,6 +24552,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24504
24552
|
projectCustomName?: string | null | undefined;
|
|
24505
24553
|
workspaceDirectory?: string | undefined;
|
|
24506
24554
|
archivingAt?: string | null | undefined;
|
|
24555
|
+
statusEnteredAt?: string | null | undefined;
|
|
24507
24556
|
diffStat?: {
|
|
24508
24557
|
additions: number;
|
|
24509
24558
|
deletions: number;
|
|
@@ -24610,6 +24659,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24610
24659
|
projectKind: "git" | "directory" | "non_git";
|
|
24611
24660
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
24612
24661
|
archivingAt: string | null;
|
|
24662
|
+
statusEnteredAt: string | null;
|
|
24613
24663
|
activityAt: string | null;
|
|
24614
24664
|
projectCustomName?: string | null | undefined;
|
|
24615
24665
|
diffStat?: {
|
|
@@ -24720,6 +24770,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24720
24770
|
projectCustomName?: string | null | undefined;
|
|
24721
24771
|
workspaceDirectory?: string | undefined;
|
|
24722
24772
|
archivingAt?: string | null | undefined;
|
|
24773
|
+
statusEnteredAt?: string | null | undefined;
|
|
24723
24774
|
diffStat?: {
|
|
24724
24775
|
additions: number;
|
|
24725
24776
|
deletions: number;
|
|
@@ -24838,7 +24889,7 @@ export declare const StartWorkspaceScriptResponseMessageSchema: z.ZodObject<{
|
|
|
24838
24889
|
scriptName: string;
|
|
24839
24890
|
};
|
|
24840
24891
|
}>;
|
|
24841
|
-
export declare const
|
|
24892
|
+
export declare const LegacyListAvailableEditorsResponseMessageSchema: z.ZodObject<{
|
|
24842
24893
|
type: z.ZodLiteral<"list_available_editors_response">;
|
|
24843
24894
|
payload: z.ZodObject<{
|
|
24844
24895
|
requestId: z.ZodString;
|
|
@@ -24889,7 +24940,7 @@ export declare const ListAvailableEditorsResponseMessageSchema: z.ZodObject<{
|
|
|
24889
24940
|
}[];
|
|
24890
24941
|
};
|
|
24891
24942
|
}>;
|
|
24892
|
-
export declare const
|
|
24943
|
+
export declare const LegacyOpenInEditorResponseMessageSchema: z.ZodObject<{
|
|
24893
24944
|
type: z.ZodLiteral<"open_in_editor_response">;
|
|
24894
24945
|
payload: z.ZodObject<{
|
|
24895
24946
|
requestId: z.ZodString;
|
|
@@ -27256,6 +27307,86 @@ export declare const ClearAgentAttentionResponseMessageSchema: z.ZodObject<{
|
|
|
27256
27307
|
}[];
|
|
27257
27308
|
};
|
|
27258
27309
|
}>;
|
|
27310
|
+
export declare const WorkspaceClearAttentionResponseSchema: z.ZodObject<{
|
|
27311
|
+
type: z.ZodLiteral<"workspace.clear_attention.response">;
|
|
27312
|
+
payload: z.ZodObject<{
|
|
27313
|
+
requestId: z.ZodString;
|
|
27314
|
+
workspaceId: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
27315
|
+
clearedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
27316
|
+
results: z.ZodArray<z.ZodObject<{
|
|
27317
|
+
workspaceId: z.ZodString;
|
|
27318
|
+
clearedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
27319
|
+
success: z.ZodBoolean;
|
|
27320
|
+
error: z.ZodNullable<z.ZodString>;
|
|
27321
|
+
}, "strip", z.ZodTypeAny, {
|
|
27322
|
+
error: string | null;
|
|
27323
|
+
workspaceId: string;
|
|
27324
|
+
success: boolean;
|
|
27325
|
+
clearedAgentIds: string[];
|
|
27326
|
+
}, {
|
|
27327
|
+
error: string | null;
|
|
27328
|
+
workspaceId: string;
|
|
27329
|
+
success: boolean;
|
|
27330
|
+
clearedAgentIds: string[];
|
|
27331
|
+
}>, "many">;
|
|
27332
|
+
success: z.ZodBoolean;
|
|
27333
|
+
error: z.ZodNullable<z.ZodString>;
|
|
27334
|
+
}, "strip", z.ZodTypeAny, {
|
|
27335
|
+
error: string | null;
|
|
27336
|
+
requestId: string;
|
|
27337
|
+
workspaceId: string | string[];
|
|
27338
|
+
success: boolean;
|
|
27339
|
+
clearedAgentIds: string[];
|
|
27340
|
+
results: {
|
|
27341
|
+
error: string | null;
|
|
27342
|
+
workspaceId: string;
|
|
27343
|
+
success: boolean;
|
|
27344
|
+
clearedAgentIds: string[];
|
|
27345
|
+
}[];
|
|
27346
|
+
}, {
|
|
27347
|
+
error: string | null;
|
|
27348
|
+
requestId: string;
|
|
27349
|
+
workspaceId: string | string[];
|
|
27350
|
+
success: boolean;
|
|
27351
|
+
clearedAgentIds: string[];
|
|
27352
|
+
results: {
|
|
27353
|
+
error: string | null;
|
|
27354
|
+
workspaceId: string;
|
|
27355
|
+
success: boolean;
|
|
27356
|
+
clearedAgentIds: string[];
|
|
27357
|
+
}[];
|
|
27358
|
+
}>;
|
|
27359
|
+
}, "strip", z.ZodTypeAny, {
|
|
27360
|
+
type: "workspace.clear_attention.response";
|
|
27361
|
+
payload: {
|
|
27362
|
+
error: string | null;
|
|
27363
|
+
requestId: string;
|
|
27364
|
+
workspaceId: string | string[];
|
|
27365
|
+
success: boolean;
|
|
27366
|
+
clearedAgentIds: string[];
|
|
27367
|
+
results: {
|
|
27368
|
+
error: string | null;
|
|
27369
|
+
workspaceId: string;
|
|
27370
|
+
success: boolean;
|
|
27371
|
+
clearedAgentIds: string[];
|
|
27372
|
+
}[];
|
|
27373
|
+
};
|
|
27374
|
+
}, {
|
|
27375
|
+
type: "workspace.clear_attention.response";
|
|
27376
|
+
payload: {
|
|
27377
|
+
error: string | null;
|
|
27378
|
+
requestId: string;
|
|
27379
|
+
workspaceId: string | string[];
|
|
27380
|
+
success: boolean;
|
|
27381
|
+
clearedAgentIds: string[];
|
|
27382
|
+
results: {
|
|
27383
|
+
error: string | null;
|
|
27384
|
+
workspaceId: string;
|
|
27385
|
+
success: boolean;
|
|
27386
|
+
clearedAgentIds: string[];
|
|
27387
|
+
}[];
|
|
27388
|
+
};
|
|
27389
|
+
}>;
|
|
27259
27390
|
export declare const SendAgentMessageResponseMessageSchema: z.ZodObject<{
|
|
27260
27391
|
type: z.ZodLiteral<"send_agent_message_response">;
|
|
27261
27392
|
payload: z.ZodObject<{
|
|
@@ -35831,6 +35962,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
35831
35962
|
name: z.ZodString;
|
|
35832
35963
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
35833
35964
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
35965
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
35834
35966
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
35835
35967
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
35836
35968
|
additions: z.ZodNumber;
|
|
@@ -36271,6 +36403,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36271
36403
|
projectKind: "git" | "directory" | "non_git";
|
|
36272
36404
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
36273
36405
|
archivingAt: string | null;
|
|
36406
|
+
statusEnteredAt: string | null;
|
|
36274
36407
|
activityAt: string | null;
|
|
36275
36408
|
projectCustomName?: string | null | undefined;
|
|
36276
36409
|
workspaceDirectory?: string | undefined;
|
|
@@ -36375,6 +36508,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36375
36508
|
projectCustomName?: string | null | undefined;
|
|
36376
36509
|
workspaceDirectory?: string | undefined;
|
|
36377
36510
|
archivingAt?: string | null | undefined;
|
|
36511
|
+
statusEnteredAt?: string | null | undefined;
|
|
36378
36512
|
diffStat?: {
|
|
36379
36513
|
additions: number;
|
|
36380
36514
|
deletions: number;
|
|
@@ -36474,6 +36608,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36474
36608
|
projectKind: "git" | "directory" | "non_git";
|
|
36475
36609
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
36476
36610
|
archivingAt: string | null;
|
|
36611
|
+
statusEnteredAt: string | null;
|
|
36477
36612
|
activityAt: string | null;
|
|
36478
36613
|
projectCustomName?: string | null | undefined;
|
|
36479
36614
|
diffStat?: {
|
|
@@ -36577,6 +36712,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36577
36712
|
projectCustomName?: string | null | undefined;
|
|
36578
36713
|
workspaceDirectory?: string | undefined;
|
|
36579
36714
|
archivingAt?: string | null | undefined;
|
|
36715
|
+
statusEnteredAt?: string | null | undefined;
|
|
36580
36716
|
diffStat?: {
|
|
36581
36717
|
additions: number;
|
|
36582
36718
|
deletions: number;
|
|
@@ -36684,6 +36820,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36684
36820
|
projectKind: "git" | "directory" | "non_git";
|
|
36685
36821
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
36686
36822
|
archivingAt: string | null;
|
|
36823
|
+
statusEnteredAt: string | null;
|
|
36687
36824
|
activityAt: string | null;
|
|
36688
36825
|
projectCustomName?: string | null | undefined;
|
|
36689
36826
|
diffStat?: {
|
|
@@ -36793,6 +36930,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36793
36930
|
projectCustomName?: string | null | undefined;
|
|
36794
36931
|
workspaceDirectory?: string | undefined;
|
|
36795
36932
|
archivingAt?: string | null | undefined;
|
|
36933
|
+
statusEnteredAt?: string | null | undefined;
|
|
36796
36934
|
diffStat?: {
|
|
36797
36935
|
additions: number;
|
|
36798
36936
|
deletions: number;
|
|
@@ -36901,6 +37039,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36901
37039
|
projectKind: "git" | "directory" | "non_git";
|
|
36902
37040
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
36903
37041
|
archivingAt: string | null;
|
|
37042
|
+
statusEnteredAt: string | null;
|
|
36904
37043
|
activityAt: string | null;
|
|
36905
37044
|
projectCustomName?: string | null | undefined;
|
|
36906
37045
|
diffStat?: {
|
|
@@ -37013,6 +37152,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
37013
37152
|
projectCustomName?: string | null | undefined;
|
|
37014
37153
|
workspaceDirectory?: string | undefined;
|
|
37015
37154
|
archivingAt?: string | null | undefined;
|
|
37155
|
+
statusEnteredAt?: string | null | undefined;
|
|
37016
37156
|
diffStat?: {
|
|
37017
37157
|
additions: number;
|
|
37018
37158
|
deletions: number;
|
|
@@ -39886,6 +40026,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
39886
40026
|
name: z.ZodString;
|
|
39887
40027
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
39888
40028
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
40029
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
39889
40030
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
39890
40031
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
39891
40032
|
additions: z.ZodNumber;
|
|
@@ -40326,6 +40467,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40326
40467
|
projectKind: "git" | "directory" | "non_git";
|
|
40327
40468
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
40328
40469
|
archivingAt: string | null;
|
|
40470
|
+
statusEnteredAt: string | null;
|
|
40329
40471
|
activityAt: string | null;
|
|
40330
40472
|
projectCustomName?: string | null | undefined;
|
|
40331
40473
|
workspaceDirectory?: string | undefined;
|
|
@@ -40430,6 +40572,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40430
40572
|
projectCustomName?: string | null | undefined;
|
|
40431
40573
|
workspaceDirectory?: string | undefined;
|
|
40432
40574
|
archivingAt?: string | null | undefined;
|
|
40575
|
+
statusEnteredAt?: string | null | undefined;
|
|
40433
40576
|
diffStat?: {
|
|
40434
40577
|
additions: number;
|
|
40435
40578
|
deletions: number;
|
|
@@ -40529,6 +40672,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40529
40672
|
projectKind: "git" | "directory" | "non_git";
|
|
40530
40673
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
40531
40674
|
archivingAt: string | null;
|
|
40675
|
+
statusEnteredAt: string | null;
|
|
40532
40676
|
activityAt: string | null;
|
|
40533
40677
|
projectCustomName?: string | null | undefined;
|
|
40534
40678
|
diffStat?: {
|
|
@@ -40632,6 +40776,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40632
40776
|
projectCustomName?: string | null | undefined;
|
|
40633
40777
|
workspaceDirectory?: string | undefined;
|
|
40634
40778
|
archivingAt?: string | null | undefined;
|
|
40779
|
+
statusEnteredAt?: string | null | undefined;
|
|
40635
40780
|
diffStat?: {
|
|
40636
40781
|
additions: number;
|
|
40637
40782
|
deletions: number;
|
|
@@ -40734,6 +40879,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40734
40879
|
projectKind: "git" | "directory" | "non_git";
|
|
40735
40880
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
40736
40881
|
archivingAt: string | null;
|
|
40882
|
+
statusEnteredAt: string | null;
|
|
40737
40883
|
activityAt: string | null;
|
|
40738
40884
|
projectCustomName?: string | null | undefined;
|
|
40739
40885
|
diffStat?: {
|
|
@@ -40840,6 +40986,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40840
40986
|
projectCustomName?: string | null | undefined;
|
|
40841
40987
|
workspaceDirectory?: string | undefined;
|
|
40842
40988
|
archivingAt?: string | null | undefined;
|
|
40989
|
+
statusEnteredAt?: string | null | undefined;
|
|
40843
40990
|
diffStat?: {
|
|
40844
40991
|
additions: number;
|
|
40845
40992
|
deletions: number;
|
|
@@ -40954,6 +41101,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40954
41101
|
projectKind: "git" | "directory" | "non_git";
|
|
40955
41102
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
40956
41103
|
archivingAt: string | null;
|
|
41104
|
+
statusEnteredAt: string | null;
|
|
40957
41105
|
activityAt: string | null;
|
|
40958
41106
|
projectCustomName?: string | null | undefined;
|
|
40959
41107
|
diffStat?: {
|
|
@@ -41066,6 +41214,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
41066
41214
|
projectCustomName?: string | null | undefined;
|
|
41067
41215
|
workspaceDirectory?: string | undefined;
|
|
41068
41216
|
archivingAt?: string | null | undefined;
|
|
41217
|
+
statusEnteredAt?: string | null | undefined;
|
|
41069
41218
|
diffStat?: {
|
|
41070
41219
|
additions: number;
|
|
41071
41220
|
deletions: number;
|
|
@@ -44442,6 +44591,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44442
44591
|
name: z.ZodString;
|
|
44443
44592
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
44444
44593
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
44594
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
44445
44595
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
44446
44596
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
44447
44597
|
additions: z.ZodNumber;
|
|
@@ -44882,6 +45032,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44882
45032
|
projectKind: "git" | "directory" | "non_git";
|
|
44883
45033
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
44884
45034
|
archivingAt: string | null;
|
|
45035
|
+
statusEnteredAt: string | null;
|
|
44885
45036
|
activityAt: string | null;
|
|
44886
45037
|
projectCustomName?: string | null | undefined;
|
|
44887
45038
|
workspaceDirectory?: string | undefined;
|
|
@@ -44986,6 +45137,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44986
45137
|
projectCustomName?: string | null | undefined;
|
|
44987
45138
|
workspaceDirectory?: string | undefined;
|
|
44988
45139
|
archivingAt?: string | null | undefined;
|
|
45140
|
+
statusEnteredAt?: string | null | undefined;
|
|
44989
45141
|
diffStat?: {
|
|
44990
45142
|
additions: number;
|
|
44991
45143
|
deletions: number;
|
|
@@ -45085,6 +45237,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45085
45237
|
projectKind: "git" | "directory" | "non_git";
|
|
45086
45238
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
45087
45239
|
archivingAt: string | null;
|
|
45240
|
+
statusEnteredAt: string | null;
|
|
45088
45241
|
activityAt: string | null;
|
|
45089
45242
|
projectCustomName?: string | null | undefined;
|
|
45090
45243
|
diffStat?: {
|
|
@@ -45188,6 +45341,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45188
45341
|
projectCustomName?: string | null | undefined;
|
|
45189
45342
|
workspaceDirectory?: string | undefined;
|
|
45190
45343
|
archivingAt?: string | null | undefined;
|
|
45344
|
+
statusEnteredAt?: string | null | undefined;
|
|
45191
45345
|
diffStat?: {
|
|
45192
45346
|
additions: number;
|
|
45193
45347
|
deletions: number;
|
|
@@ -45302,6 +45456,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45302
45456
|
projectKind: "git" | "directory" | "non_git";
|
|
45303
45457
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
45304
45458
|
archivingAt: string | null;
|
|
45459
|
+
statusEnteredAt: string | null;
|
|
45305
45460
|
activityAt: string | null;
|
|
45306
45461
|
projectCustomName?: string | null | undefined;
|
|
45307
45462
|
diffStat?: {
|
|
@@ -45414,6 +45569,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45414
45569
|
projectCustomName?: string | null | undefined;
|
|
45415
45570
|
workspaceDirectory?: string | undefined;
|
|
45416
45571
|
archivingAt?: string | null | undefined;
|
|
45572
|
+
statusEnteredAt?: string | null | undefined;
|
|
45417
45573
|
diffStat?: {
|
|
45418
45574
|
additions: number;
|
|
45419
45575
|
deletions: number;
|
|
@@ -45525,6 +45681,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45525
45681
|
projectKind: "git" | "directory" | "non_git";
|
|
45526
45682
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
45527
45683
|
archivingAt: string | null;
|
|
45684
|
+
statusEnteredAt: string | null;
|
|
45528
45685
|
activityAt: string | null;
|
|
45529
45686
|
projectCustomName?: string | null | undefined;
|
|
45530
45687
|
diffStat?: {
|
|
@@ -45640,6 +45797,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45640
45797
|
projectCustomName?: string | null | undefined;
|
|
45641
45798
|
workspaceDirectory?: string | undefined;
|
|
45642
45799
|
archivingAt?: string | null | undefined;
|
|
45800
|
+
statusEnteredAt?: string | null | undefined;
|
|
45643
45801
|
diffStat?: {
|
|
45644
45802
|
additions: number;
|
|
45645
45803
|
deletions: number;
|
|
@@ -45740,6 +45898,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45740
45898
|
name: z.ZodString;
|
|
45741
45899
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
45742
45900
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
45901
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
45743
45902
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
45744
45903
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
45745
45904
|
additions: z.ZodNumber;
|
|
@@ -46180,6 +46339,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46180
46339
|
projectKind: "git" | "directory" | "non_git";
|
|
46181
46340
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
46182
46341
|
archivingAt: string | null;
|
|
46342
|
+
statusEnteredAt: string | null;
|
|
46183
46343
|
activityAt: string | null;
|
|
46184
46344
|
projectCustomName?: string | null | undefined;
|
|
46185
46345
|
workspaceDirectory?: string | undefined;
|
|
@@ -46284,6 +46444,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46284
46444
|
projectCustomName?: string | null | undefined;
|
|
46285
46445
|
workspaceDirectory?: string | undefined;
|
|
46286
46446
|
archivingAt?: string | null | undefined;
|
|
46447
|
+
statusEnteredAt?: string | null | undefined;
|
|
46287
46448
|
diffStat?: {
|
|
46288
46449
|
additions: number;
|
|
46289
46450
|
deletions: number;
|
|
@@ -46383,6 +46544,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46383
46544
|
projectKind: "git" | "directory" | "non_git";
|
|
46384
46545
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
46385
46546
|
archivingAt: string | null;
|
|
46547
|
+
statusEnteredAt: string | null;
|
|
46386
46548
|
activityAt: string | null;
|
|
46387
46549
|
projectCustomName?: string | null | undefined;
|
|
46388
46550
|
diffStat?: {
|
|
@@ -46486,6 +46648,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46486
46648
|
projectCustomName?: string | null | undefined;
|
|
46487
46649
|
workspaceDirectory?: string | undefined;
|
|
46488
46650
|
archivingAt?: string | null | undefined;
|
|
46651
|
+
statusEnteredAt?: string | null | undefined;
|
|
46489
46652
|
diffStat?: {
|
|
46490
46653
|
additions: number;
|
|
46491
46654
|
deletions: number;
|
|
@@ -46590,6 +46753,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46590
46753
|
projectKind: "git" | "directory" | "non_git";
|
|
46591
46754
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
46592
46755
|
archivingAt: string | null;
|
|
46756
|
+
statusEnteredAt: string | null;
|
|
46593
46757
|
activityAt: string | null;
|
|
46594
46758
|
projectCustomName?: string | null | undefined;
|
|
46595
46759
|
diffStat?: {
|
|
@@ -46697,6 +46861,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46697
46861
|
projectCustomName?: string | null | undefined;
|
|
46698
46862
|
workspaceDirectory?: string | undefined;
|
|
46699
46863
|
archivingAt?: string | null | undefined;
|
|
46864
|
+
statusEnteredAt?: string | null | undefined;
|
|
46700
46865
|
diffStat?: {
|
|
46701
46866
|
additions: number;
|
|
46702
46867
|
deletions: number;
|
|
@@ -46803,6 +46968,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46803
46968
|
projectKind: "git" | "directory" | "non_git";
|
|
46804
46969
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
46805
46970
|
archivingAt: string | null;
|
|
46971
|
+
statusEnteredAt: string | null;
|
|
46806
46972
|
activityAt: string | null;
|
|
46807
46973
|
projectCustomName?: string | null | undefined;
|
|
46808
46974
|
diffStat?: {
|
|
@@ -46913,6 +47079,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46913
47079
|
projectCustomName?: string | null | undefined;
|
|
46914
47080
|
workspaceDirectory?: string | undefined;
|
|
46915
47081
|
archivingAt?: string | null | undefined;
|
|
47082
|
+
statusEnteredAt?: string | null | undefined;
|
|
46916
47083
|
diffStat?: {
|
|
46917
47084
|
additions: number;
|
|
46918
47085
|
deletions: number;
|
|
@@ -49400,6 +49567,85 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
49400
49567
|
providerUnavailable?: boolean | undefined;
|
|
49401
49568
|
}[];
|
|
49402
49569
|
};
|
|
49570
|
+
}>, z.ZodObject<{
|
|
49571
|
+
type: z.ZodLiteral<"workspace.clear_attention.response">;
|
|
49572
|
+
payload: z.ZodObject<{
|
|
49573
|
+
requestId: z.ZodString;
|
|
49574
|
+
workspaceId: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
49575
|
+
clearedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
49576
|
+
results: z.ZodArray<z.ZodObject<{
|
|
49577
|
+
workspaceId: z.ZodString;
|
|
49578
|
+
clearedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
49579
|
+
success: z.ZodBoolean;
|
|
49580
|
+
error: z.ZodNullable<z.ZodString>;
|
|
49581
|
+
}, "strip", z.ZodTypeAny, {
|
|
49582
|
+
error: string | null;
|
|
49583
|
+
workspaceId: string;
|
|
49584
|
+
success: boolean;
|
|
49585
|
+
clearedAgentIds: string[];
|
|
49586
|
+
}, {
|
|
49587
|
+
error: string | null;
|
|
49588
|
+
workspaceId: string;
|
|
49589
|
+
success: boolean;
|
|
49590
|
+
clearedAgentIds: string[];
|
|
49591
|
+
}>, "many">;
|
|
49592
|
+
success: z.ZodBoolean;
|
|
49593
|
+
error: z.ZodNullable<z.ZodString>;
|
|
49594
|
+
}, "strip", z.ZodTypeAny, {
|
|
49595
|
+
error: string | null;
|
|
49596
|
+
requestId: string;
|
|
49597
|
+
workspaceId: string | string[];
|
|
49598
|
+
success: boolean;
|
|
49599
|
+
clearedAgentIds: string[];
|
|
49600
|
+
results: {
|
|
49601
|
+
error: string | null;
|
|
49602
|
+
workspaceId: string;
|
|
49603
|
+
success: boolean;
|
|
49604
|
+
clearedAgentIds: string[];
|
|
49605
|
+
}[];
|
|
49606
|
+
}, {
|
|
49607
|
+
error: string | null;
|
|
49608
|
+
requestId: string;
|
|
49609
|
+
workspaceId: string | string[];
|
|
49610
|
+
success: boolean;
|
|
49611
|
+
clearedAgentIds: string[];
|
|
49612
|
+
results: {
|
|
49613
|
+
error: string | null;
|
|
49614
|
+
workspaceId: string;
|
|
49615
|
+
success: boolean;
|
|
49616
|
+
clearedAgentIds: string[];
|
|
49617
|
+
}[];
|
|
49618
|
+
}>;
|
|
49619
|
+
}, "strip", z.ZodTypeAny, {
|
|
49620
|
+
type: "workspace.clear_attention.response";
|
|
49621
|
+
payload: {
|
|
49622
|
+
error: string | null;
|
|
49623
|
+
requestId: string;
|
|
49624
|
+
workspaceId: string | string[];
|
|
49625
|
+
success: boolean;
|
|
49626
|
+
clearedAgentIds: string[];
|
|
49627
|
+
results: {
|
|
49628
|
+
error: string | null;
|
|
49629
|
+
workspaceId: string;
|
|
49630
|
+
success: boolean;
|
|
49631
|
+
clearedAgentIds: string[];
|
|
49632
|
+
}[];
|
|
49633
|
+
};
|
|
49634
|
+
}, {
|
|
49635
|
+
type: "workspace.clear_attention.response";
|
|
49636
|
+
payload: {
|
|
49637
|
+
error: string | null;
|
|
49638
|
+
requestId: string;
|
|
49639
|
+
workspaceId: string | string[];
|
|
49640
|
+
success: boolean;
|
|
49641
|
+
clearedAgentIds: string[];
|
|
49642
|
+
results: {
|
|
49643
|
+
error: string | null;
|
|
49644
|
+
workspaceId: string;
|
|
49645
|
+
success: boolean;
|
|
49646
|
+
clearedAgentIds: string[];
|
|
49647
|
+
}[];
|
|
49648
|
+
};
|
|
49403
49649
|
}>, z.ZodObject<{
|
|
49404
49650
|
type: z.ZodLiteral<"send_agent_message_response">;
|
|
49405
49651
|
payload: z.ZodObject<{
|
|
@@ -57957,6 +58203,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
57957
58203
|
name: z.ZodString;
|
|
57958
58204
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
57959
58205
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
58206
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
57960
58207
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
57961
58208
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
57962
58209
|
additions: z.ZodNumber;
|
|
@@ -58397,6 +58644,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58397
58644
|
projectKind: "git" | "directory" | "non_git";
|
|
58398
58645
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
58399
58646
|
archivingAt: string | null;
|
|
58647
|
+
statusEnteredAt: string | null;
|
|
58400
58648
|
activityAt: string | null;
|
|
58401
58649
|
projectCustomName?: string | null | undefined;
|
|
58402
58650
|
workspaceDirectory?: string | undefined;
|
|
@@ -58501,6 +58749,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58501
58749
|
projectCustomName?: string | null | undefined;
|
|
58502
58750
|
workspaceDirectory?: string | undefined;
|
|
58503
58751
|
archivingAt?: string | null | undefined;
|
|
58752
|
+
statusEnteredAt?: string | null | undefined;
|
|
58504
58753
|
diffStat?: {
|
|
58505
58754
|
additions: number;
|
|
58506
58755
|
deletions: number;
|
|
@@ -58600,6 +58849,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58600
58849
|
projectKind: "git" | "directory" | "non_git";
|
|
58601
58850
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
58602
58851
|
archivingAt: string | null;
|
|
58852
|
+
statusEnteredAt: string | null;
|
|
58603
58853
|
activityAt: string | null;
|
|
58604
58854
|
projectCustomName?: string | null | undefined;
|
|
58605
58855
|
diffStat?: {
|
|
@@ -58703,6 +58953,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58703
58953
|
projectCustomName?: string | null | undefined;
|
|
58704
58954
|
workspaceDirectory?: string | undefined;
|
|
58705
58955
|
archivingAt?: string | null | undefined;
|
|
58956
|
+
statusEnteredAt?: string | null | undefined;
|
|
58706
58957
|
diffStat?: {
|
|
58707
58958
|
additions: number;
|
|
58708
58959
|
deletions: number;
|
|
@@ -58810,6 +59061,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58810
59061
|
projectKind: "git" | "directory" | "non_git";
|
|
58811
59062
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
58812
59063
|
archivingAt: string | null;
|
|
59064
|
+
statusEnteredAt: string | null;
|
|
58813
59065
|
activityAt: string | null;
|
|
58814
59066
|
projectCustomName?: string | null | undefined;
|
|
58815
59067
|
diffStat?: {
|
|
@@ -58919,6 +59171,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58919
59171
|
projectCustomName?: string | null | undefined;
|
|
58920
59172
|
workspaceDirectory?: string | undefined;
|
|
58921
59173
|
archivingAt?: string | null | undefined;
|
|
59174
|
+
statusEnteredAt?: string | null | undefined;
|
|
58922
59175
|
diffStat?: {
|
|
58923
59176
|
additions: number;
|
|
58924
59177
|
deletions: number;
|
|
@@ -59027,6 +59280,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
59027
59280
|
projectKind: "git" | "directory" | "non_git";
|
|
59028
59281
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
59029
59282
|
archivingAt: string | null;
|
|
59283
|
+
statusEnteredAt: string | null;
|
|
59030
59284
|
activityAt: string | null;
|
|
59031
59285
|
projectCustomName?: string | null | undefined;
|
|
59032
59286
|
diffStat?: {
|
|
@@ -59139,6 +59393,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
59139
59393
|
projectCustomName?: string | null | undefined;
|
|
59140
59394
|
workspaceDirectory?: string | undefined;
|
|
59141
59395
|
archivingAt?: string | null | undefined;
|
|
59396
|
+
statusEnteredAt?: string | null | undefined;
|
|
59142
59397
|
diffStat?: {
|
|
59143
59398
|
additions: number;
|
|
59144
59399
|
deletions: number;
|
|
@@ -67181,10 +67436,6 @@ export type WorkspaceDescriptorPayload = z.infer<typeof WorkspaceDescriptorPaylo
|
|
|
67181
67436
|
export type WorkspaceScriptLifecycle = z.infer<typeof WorkspaceScriptLifecycleSchema>;
|
|
67182
67437
|
export type WorkspaceScriptHealth = z.infer<typeof WorkspaceScriptHealthSchema>;
|
|
67183
67438
|
export type WorkspaceScriptPayload = z.infer<typeof WorkspaceScriptPayloadSchema>;
|
|
67184
|
-
export type KnownEditorTargetId = z.infer<typeof KnownEditorTargetIdSchema>;
|
|
67185
|
-
export type LegacyEditorTargetId = z.infer<typeof LegacyEditorTargetIdSchema>;
|
|
67186
|
-
export type EditorTargetId = LiteralUnion<KnownEditorTargetId, string>;
|
|
67187
|
-
export type EditorTargetDescriptorPayload = z.infer<typeof EditorTargetDescriptorPayloadSchema>;
|
|
67188
67439
|
export type FetchAgentsResponseMessage = z.infer<typeof FetchAgentsResponseMessageSchema>;
|
|
67189
67440
|
export type FetchAgentHistoryResponseMessage = z.infer<typeof FetchAgentHistoryResponseMessageSchema>;
|
|
67190
67441
|
export type FetchRecentProviderSessionsResponseMessage = z.infer<typeof FetchRecentProviderSessionsResponseMessageSchema>;
|
|
@@ -67192,8 +67443,8 @@ export type FetchWorkspacesResponseMessage = z.infer<typeof FetchWorkspacesRespo
|
|
|
67192
67443
|
export type ScriptStatusUpdateMessage = z.infer<typeof ScriptStatusUpdateMessageSchema>;
|
|
67193
67444
|
export type OpenProjectResponseMessage = z.infer<typeof OpenProjectResponseMessageSchema>;
|
|
67194
67445
|
export type StartWorkspaceScriptResponseMessage = z.infer<typeof StartWorkspaceScriptResponseMessageSchema>;
|
|
67195
|
-
export type
|
|
67196
|
-
export type
|
|
67446
|
+
export type LegacyListAvailableEditorsResponseMessage = z.infer<typeof LegacyListAvailableEditorsResponseMessageSchema>;
|
|
67447
|
+
export type LegacyOpenInEditorResponseMessage = z.infer<typeof LegacyOpenInEditorResponseMessageSchema>;
|
|
67197
67448
|
export type ArchiveWorkspaceResponseMessage = z.infer<typeof ArchiveWorkspaceResponseMessageSchema>;
|
|
67198
67449
|
export type FetchAgentResponseMessage = z.infer<typeof FetchAgentResponseMessageSchema>;
|
|
67199
67450
|
export type FetchAgentTimelineResponseMessage = z.infer<typeof FetchAgentTimelineResponseMessageSchema>;
|
|
@@ -67356,10 +67607,11 @@ export type PaseoWorktreeListResponse = z.infer<typeof PaseoWorktreeListResponse
|
|
|
67356
67607
|
export type PaseoWorktreeArchiveRequest = z.infer<typeof PaseoWorktreeArchiveRequestSchema>;
|
|
67357
67608
|
export type PaseoWorktreeArchiveResponse = z.infer<typeof PaseoWorktreeArchiveResponseSchema>;
|
|
67358
67609
|
export type WorkspaceSetupStatusRequest = z.infer<typeof WorkspaceSetupStatusRequestSchema>;
|
|
67359
|
-
export type
|
|
67360
|
-
export type
|
|
67610
|
+
export type LegacyListAvailableEditorsRequest = z.infer<typeof LegacyListAvailableEditorsRequestSchema>;
|
|
67611
|
+
export type LegacyOpenInEditorRequest = z.infer<typeof LegacyOpenInEditorRequestSchema>;
|
|
67361
67612
|
export type OpenProjectRequest = z.infer<typeof OpenProjectRequestSchema>;
|
|
67362
67613
|
export type ArchiveWorkspaceRequest = z.infer<typeof ArchiveWorkspaceRequestSchema>;
|
|
67614
|
+
export type WorkspaceClearAttentionRequest = z.infer<typeof WorkspaceClearAttentionRequestSchema>;
|
|
67363
67615
|
export type FileExplorerRequest = z.infer<typeof FileExplorerRequestSchema>;
|
|
67364
67616
|
export type FileExplorerResponse = z.infer<typeof FileExplorerResponseSchema>;
|
|
67365
67617
|
export type ProjectIconRequest = z.infer<typeof ProjectIconRequestSchema>;
|
|
@@ -70712,17 +70964,23 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
70712
70964
|
type: z.ZodLiteral<"open_in_editor_request">;
|
|
70713
70965
|
path: z.ZodString;
|
|
70714
70966
|
editorId: z.ZodString;
|
|
70967
|
+
mode: z.ZodOptional<z.ZodEnum<["open", "reveal"]>>;
|
|
70968
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
70715
70969
|
requestId: z.ZodString;
|
|
70716
70970
|
}, "strip", z.ZodTypeAny, {
|
|
70717
70971
|
type: "open_in_editor_request";
|
|
70718
70972
|
path: string;
|
|
70719
70973
|
requestId: string;
|
|
70720
70974
|
editorId: string;
|
|
70975
|
+
mode?: "open" | "reveal" | undefined;
|
|
70976
|
+
cwd?: string | undefined;
|
|
70721
70977
|
}, {
|
|
70722
70978
|
type: "open_in_editor_request";
|
|
70723
70979
|
path: string;
|
|
70724
70980
|
requestId: string;
|
|
70725
70981
|
editorId: string;
|
|
70982
|
+
mode?: "open" | "reveal" | undefined;
|
|
70983
|
+
cwd?: string | undefined;
|
|
70726
70984
|
}>, z.ZodObject<{
|
|
70727
70985
|
type: z.ZodLiteral<"open_project_request">;
|
|
70728
70986
|
cwd: z.ZodString;
|
|
@@ -70747,6 +71005,18 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
70747
71005
|
type: "archive_workspace_request";
|
|
70748
71006
|
requestId: string;
|
|
70749
71007
|
workspaceId: string;
|
|
71008
|
+
}>, z.ZodObject<{
|
|
71009
|
+
type: z.ZodLiteral<"workspace.clear_attention.request">;
|
|
71010
|
+
workspaceId: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
71011
|
+
requestId: z.ZodString;
|
|
71012
|
+
}, "strip", z.ZodTypeAny, {
|
|
71013
|
+
type: "workspace.clear_attention.request";
|
|
71014
|
+
requestId: string;
|
|
71015
|
+
workspaceId: string | string[];
|
|
71016
|
+
}, {
|
|
71017
|
+
type: "workspace.clear_attention.request";
|
|
71018
|
+
requestId: string;
|
|
71019
|
+
workspaceId: string | string[];
|
|
70750
71020
|
}>, z.ZodObject<{
|
|
70751
71021
|
type: z.ZodLiteral<"file_explorer_request">;
|
|
70752
71022
|
cwd: z.ZodString;
|
|
@@ -72767,6 +73037,8 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
72767
73037
|
path: string;
|
|
72768
73038
|
requestId: string;
|
|
72769
73039
|
editorId: string;
|
|
73040
|
+
mode?: "open" | "reveal" | undefined;
|
|
73041
|
+
cwd?: string | undefined;
|
|
72770
73042
|
} | {
|
|
72771
73043
|
type: "open_project_request";
|
|
72772
73044
|
cwd: string;
|
|
@@ -72775,6 +73047,10 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
72775
73047
|
type: "archive_workspace_request";
|
|
72776
73048
|
requestId: string;
|
|
72777
73049
|
workspaceId: string;
|
|
73050
|
+
} | {
|
|
73051
|
+
type: "workspace.clear_attention.request";
|
|
73052
|
+
requestId: string;
|
|
73053
|
+
workspaceId: string | string[];
|
|
72778
73054
|
} | {
|
|
72779
73055
|
mode: "file" | "list";
|
|
72780
73056
|
type: "file_explorer_request";
|
|
@@ -73662,6 +73938,8 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
73662
73938
|
path: string;
|
|
73663
73939
|
requestId: string;
|
|
73664
73940
|
editorId: string;
|
|
73941
|
+
mode?: "open" | "reveal" | undefined;
|
|
73942
|
+
cwd?: string | undefined;
|
|
73665
73943
|
} | {
|
|
73666
73944
|
type: "open_project_request";
|
|
73667
73945
|
cwd: string;
|
|
@@ -73670,6 +73948,10 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
73670
73948
|
type: "archive_workspace_request";
|
|
73671
73949
|
requestId: string;
|
|
73672
73950
|
workspaceId: string;
|
|
73951
|
+
} | {
|
|
73952
|
+
type: "workspace.clear_attention.request";
|
|
73953
|
+
requestId: string;
|
|
73954
|
+
workspaceId: string | string[];
|
|
73673
73955
|
} | {
|
|
73674
73956
|
mode: "file" | "list";
|
|
73675
73957
|
type: "file_explorer_request";
|
|
@@ -75022,6 +75304,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75022
75304
|
name: z.ZodString;
|
|
75023
75305
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
75024
75306
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
75307
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
75025
75308
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
75026
75309
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
75027
75310
|
additions: z.ZodNumber;
|
|
@@ -75462,6 +75745,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75462
75745
|
projectKind: "git" | "directory" | "non_git";
|
|
75463
75746
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
75464
75747
|
archivingAt: string | null;
|
|
75748
|
+
statusEnteredAt: string | null;
|
|
75465
75749
|
activityAt: string | null;
|
|
75466
75750
|
projectCustomName?: string | null | undefined;
|
|
75467
75751
|
workspaceDirectory?: string | undefined;
|
|
@@ -75566,6 +75850,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75566
75850
|
projectCustomName?: string | null | undefined;
|
|
75567
75851
|
workspaceDirectory?: string | undefined;
|
|
75568
75852
|
archivingAt?: string | null | undefined;
|
|
75853
|
+
statusEnteredAt?: string | null | undefined;
|
|
75569
75854
|
diffStat?: {
|
|
75570
75855
|
additions: number;
|
|
75571
75856
|
deletions: number;
|
|
@@ -75665,6 +75950,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75665
75950
|
projectKind: "git" | "directory" | "non_git";
|
|
75666
75951
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
75667
75952
|
archivingAt: string | null;
|
|
75953
|
+
statusEnteredAt: string | null;
|
|
75668
75954
|
activityAt: string | null;
|
|
75669
75955
|
projectCustomName?: string | null | undefined;
|
|
75670
75956
|
diffStat?: {
|
|
@@ -75768,6 +76054,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75768
76054
|
projectCustomName?: string | null | undefined;
|
|
75769
76055
|
workspaceDirectory?: string | undefined;
|
|
75770
76056
|
archivingAt?: string | null | undefined;
|
|
76057
|
+
statusEnteredAt?: string | null | undefined;
|
|
75771
76058
|
diffStat?: {
|
|
75772
76059
|
additions: number;
|
|
75773
76060
|
deletions: number;
|
|
@@ -75870,6 +76157,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75870
76157
|
projectKind: "git" | "directory" | "non_git";
|
|
75871
76158
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
75872
76159
|
archivingAt: string | null;
|
|
76160
|
+
statusEnteredAt: string | null;
|
|
75873
76161
|
activityAt: string | null;
|
|
75874
76162
|
projectCustomName?: string | null | undefined;
|
|
75875
76163
|
diffStat?: {
|
|
@@ -75976,6 +76264,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75976
76264
|
projectCustomName?: string | null | undefined;
|
|
75977
76265
|
workspaceDirectory?: string | undefined;
|
|
75978
76266
|
archivingAt?: string | null | undefined;
|
|
76267
|
+
statusEnteredAt?: string | null | undefined;
|
|
75979
76268
|
diffStat?: {
|
|
75980
76269
|
additions: number;
|
|
75981
76270
|
deletions: number;
|
|
@@ -76090,6 +76379,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
76090
76379
|
projectKind: "git" | "directory" | "non_git";
|
|
76091
76380
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
76092
76381
|
archivingAt: string | null;
|
|
76382
|
+
statusEnteredAt: string | null;
|
|
76093
76383
|
activityAt: string | null;
|
|
76094
76384
|
projectCustomName?: string | null | undefined;
|
|
76095
76385
|
diffStat?: {
|
|
@@ -76202,6 +76492,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
76202
76492
|
projectCustomName?: string | null | undefined;
|
|
76203
76493
|
workspaceDirectory?: string | undefined;
|
|
76204
76494
|
archivingAt?: string | null | undefined;
|
|
76495
|
+
statusEnteredAt?: string | null | undefined;
|
|
76205
76496
|
diffStat?: {
|
|
76206
76497
|
additions: number;
|
|
76207
76498
|
deletions: number;
|
|
@@ -79578,6 +79869,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
79578
79869
|
name: z.ZodString;
|
|
79579
79870
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
79580
79871
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
79872
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
79581
79873
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
79582
79874
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
79583
79875
|
additions: z.ZodNumber;
|
|
@@ -80018,6 +80310,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80018
80310
|
projectKind: "git" | "directory" | "non_git";
|
|
80019
80311
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
80020
80312
|
archivingAt: string | null;
|
|
80313
|
+
statusEnteredAt: string | null;
|
|
80021
80314
|
activityAt: string | null;
|
|
80022
80315
|
projectCustomName?: string | null | undefined;
|
|
80023
80316
|
workspaceDirectory?: string | undefined;
|
|
@@ -80122,6 +80415,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80122
80415
|
projectCustomName?: string | null | undefined;
|
|
80123
80416
|
workspaceDirectory?: string | undefined;
|
|
80124
80417
|
archivingAt?: string | null | undefined;
|
|
80418
|
+
statusEnteredAt?: string | null | undefined;
|
|
80125
80419
|
diffStat?: {
|
|
80126
80420
|
additions: number;
|
|
80127
80421
|
deletions: number;
|
|
@@ -80221,6 +80515,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80221
80515
|
projectKind: "git" | "directory" | "non_git";
|
|
80222
80516
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
80223
80517
|
archivingAt: string | null;
|
|
80518
|
+
statusEnteredAt: string | null;
|
|
80224
80519
|
activityAt: string | null;
|
|
80225
80520
|
projectCustomName?: string | null | undefined;
|
|
80226
80521
|
diffStat?: {
|
|
@@ -80324,6 +80619,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80324
80619
|
projectCustomName?: string | null | undefined;
|
|
80325
80620
|
workspaceDirectory?: string | undefined;
|
|
80326
80621
|
archivingAt?: string | null | undefined;
|
|
80622
|
+
statusEnteredAt?: string | null | undefined;
|
|
80327
80623
|
diffStat?: {
|
|
80328
80624
|
additions: number;
|
|
80329
80625
|
deletions: number;
|
|
@@ -80438,6 +80734,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80438
80734
|
projectKind: "git" | "directory" | "non_git";
|
|
80439
80735
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
80440
80736
|
archivingAt: string | null;
|
|
80737
|
+
statusEnteredAt: string | null;
|
|
80441
80738
|
activityAt: string | null;
|
|
80442
80739
|
projectCustomName?: string | null | undefined;
|
|
80443
80740
|
diffStat?: {
|
|
@@ -80550,6 +80847,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80550
80847
|
projectCustomName?: string | null | undefined;
|
|
80551
80848
|
workspaceDirectory?: string | undefined;
|
|
80552
80849
|
archivingAt?: string | null | undefined;
|
|
80850
|
+
statusEnteredAt?: string | null | undefined;
|
|
80553
80851
|
diffStat?: {
|
|
80554
80852
|
additions: number;
|
|
80555
80853
|
deletions: number;
|
|
@@ -80661,6 +80959,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80661
80959
|
projectKind: "git" | "directory" | "non_git";
|
|
80662
80960
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
80663
80961
|
archivingAt: string | null;
|
|
80962
|
+
statusEnteredAt: string | null;
|
|
80664
80963
|
activityAt: string | null;
|
|
80665
80964
|
projectCustomName?: string | null | undefined;
|
|
80666
80965
|
diffStat?: {
|
|
@@ -80776,6 +81075,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80776
81075
|
projectCustomName?: string | null | undefined;
|
|
80777
81076
|
workspaceDirectory?: string | undefined;
|
|
80778
81077
|
archivingAt?: string | null | undefined;
|
|
81078
|
+
statusEnteredAt?: string | null | undefined;
|
|
80779
81079
|
diffStat?: {
|
|
80780
81080
|
additions: number;
|
|
80781
81081
|
deletions: number;
|
|
@@ -80876,6 +81176,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80876
81176
|
name: z.ZodString;
|
|
80877
81177
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
80878
81178
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
81179
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
80879
81180
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
80880
81181
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
80881
81182
|
additions: z.ZodNumber;
|
|
@@ -81316,6 +81617,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81316
81617
|
projectKind: "git" | "directory" | "non_git";
|
|
81317
81618
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
81318
81619
|
archivingAt: string | null;
|
|
81620
|
+
statusEnteredAt: string | null;
|
|
81319
81621
|
activityAt: string | null;
|
|
81320
81622
|
projectCustomName?: string | null | undefined;
|
|
81321
81623
|
workspaceDirectory?: string | undefined;
|
|
@@ -81420,6 +81722,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81420
81722
|
projectCustomName?: string | null | undefined;
|
|
81421
81723
|
workspaceDirectory?: string | undefined;
|
|
81422
81724
|
archivingAt?: string | null | undefined;
|
|
81725
|
+
statusEnteredAt?: string | null | undefined;
|
|
81423
81726
|
diffStat?: {
|
|
81424
81727
|
additions: number;
|
|
81425
81728
|
deletions: number;
|
|
@@ -81519,6 +81822,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81519
81822
|
projectKind: "git" | "directory" | "non_git";
|
|
81520
81823
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
81521
81824
|
archivingAt: string | null;
|
|
81825
|
+
statusEnteredAt: string | null;
|
|
81522
81826
|
activityAt: string | null;
|
|
81523
81827
|
projectCustomName?: string | null | undefined;
|
|
81524
81828
|
diffStat?: {
|
|
@@ -81622,6 +81926,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81622
81926
|
projectCustomName?: string | null | undefined;
|
|
81623
81927
|
workspaceDirectory?: string | undefined;
|
|
81624
81928
|
archivingAt?: string | null | undefined;
|
|
81929
|
+
statusEnteredAt?: string | null | undefined;
|
|
81625
81930
|
diffStat?: {
|
|
81626
81931
|
additions: number;
|
|
81627
81932
|
deletions: number;
|
|
@@ -81726,6 +82031,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81726
82031
|
projectKind: "git" | "directory" | "non_git";
|
|
81727
82032
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
81728
82033
|
archivingAt: string | null;
|
|
82034
|
+
statusEnteredAt: string | null;
|
|
81729
82035
|
activityAt: string | null;
|
|
81730
82036
|
projectCustomName?: string | null | undefined;
|
|
81731
82037
|
diffStat?: {
|
|
@@ -81833,6 +82139,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81833
82139
|
projectCustomName?: string | null | undefined;
|
|
81834
82140
|
workspaceDirectory?: string | undefined;
|
|
81835
82141
|
archivingAt?: string | null | undefined;
|
|
82142
|
+
statusEnteredAt?: string | null | undefined;
|
|
81836
82143
|
diffStat?: {
|
|
81837
82144
|
additions: number;
|
|
81838
82145
|
deletions: number;
|
|
@@ -81939,6 +82246,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81939
82246
|
projectKind: "git" | "directory" | "non_git";
|
|
81940
82247
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
81941
82248
|
archivingAt: string | null;
|
|
82249
|
+
statusEnteredAt: string | null;
|
|
81942
82250
|
activityAt: string | null;
|
|
81943
82251
|
projectCustomName?: string | null | undefined;
|
|
81944
82252
|
diffStat?: {
|
|
@@ -82049,6 +82357,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
82049
82357
|
projectCustomName?: string | null | undefined;
|
|
82050
82358
|
workspaceDirectory?: string | undefined;
|
|
82051
82359
|
archivingAt?: string | null | undefined;
|
|
82360
|
+
statusEnteredAt?: string | null | undefined;
|
|
82052
82361
|
diffStat?: {
|
|
82053
82362
|
additions: number;
|
|
82054
82363
|
deletions: number;
|
|
@@ -84536,6 +84845,85 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
84536
84845
|
providerUnavailable?: boolean | undefined;
|
|
84537
84846
|
}[];
|
|
84538
84847
|
};
|
|
84848
|
+
}>, z.ZodObject<{
|
|
84849
|
+
type: z.ZodLiteral<"workspace.clear_attention.response">;
|
|
84850
|
+
payload: z.ZodObject<{
|
|
84851
|
+
requestId: z.ZodString;
|
|
84852
|
+
workspaceId: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
84853
|
+
clearedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
84854
|
+
results: z.ZodArray<z.ZodObject<{
|
|
84855
|
+
workspaceId: z.ZodString;
|
|
84856
|
+
clearedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
84857
|
+
success: z.ZodBoolean;
|
|
84858
|
+
error: z.ZodNullable<z.ZodString>;
|
|
84859
|
+
}, "strip", z.ZodTypeAny, {
|
|
84860
|
+
error: string | null;
|
|
84861
|
+
workspaceId: string;
|
|
84862
|
+
success: boolean;
|
|
84863
|
+
clearedAgentIds: string[];
|
|
84864
|
+
}, {
|
|
84865
|
+
error: string | null;
|
|
84866
|
+
workspaceId: string;
|
|
84867
|
+
success: boolean;
|
|
84868
|
+
clearedAgentIds: string[];
|
|
84869
|
+
}>, "many">;
|
|
84870
|
+
success: z.ZodBoolean;
|
|
84871
|
+
error: z.ZodNullable<z.ZodString>;
|
|
84872
|
+
}, "strip", z.ZodTypeAny, {
|
|
84873
|
+
error: string | null;
|
|
84874
|
+
requestId: string;
|
|
84875
|
+
workspaceId: string | string[];
|
|
84876
|
+
success: boolean;
|
|
84877
|
+
clearedAgentIds: string[];
|
|
84878
|
+
results: {
|
|
84879
|
+
error: string | null;
|
|
84880
|
+
workspaceId: string;
|
|
84881
|
+
success: boolean;
|
|
84882
|
+
clearedAgentIds: string[];
|
|
84883
|
+
}[];
|
|
84884
|
+
}, {
|
|
84885
|
+
error: string | null;
|
|
84886
|
+
requestId: string;
|
|
84887
|
+
workspaceId: string | string[];
|
|
84888
|
+
success: boolean;
|
|
84889
|
+
clearedAgentIds: string[];
|
|
84890
|
+
results: {
|
|
84891
|
+
error: string | null;
|
|
84892
|
+
workspaceId: string;
|
|
84893
|
+
success: boolean;
|
|
84894
|
+
clearedAgentIds: string[];
|
|
84895
|
+
}[];
|
|
84896
|
+
}>;
|
|
84897
|
+
}, "strip", z.ZodTypeAny, {
|
|
84898
|
+
type: "workspace.clear_attention.response";
|
|
84899
|
+
payload: {
|
|
84900
|
+
error: string | null;
|
|
84901
|
+
requestId: string;
|
|
84902
|
+
workspaceId: string | string[];
|
|
84903
|
+
success: boolean;
|
|
84904
|
+
clearedAgentIds: string[];
|
|
84905
|
+
results: {
|
|
84906
|
+
error: string | null;
|
|
84907
|
+
workspaceId: string;
|
|
84908
|
+
success: boolean;
|
|
84909
|
+
clearedAgentIds: string[];
|
|
84910
|
+
}[];
|
|
84911
|
+
};
|
|
84912
|
+
}, {
|
|
84913
|
+
type: "workspace.clear_attention.response";
|
|
84914
|
+
payload: {
|
|
84915
|
+
error: string | null;
|
|
84916
|
+
requestId: string;
|
|
84917
|
+
workspaceId: string | string[];
|
|
84918
|
+
success: boolean;
|
|
84919
|
+
clearedAgentIds: string[];
|
|
84920
|
+
results: {
|
|
84921
|
+
error: string | null;
|
|
84922
|
+
workspaceId: string;
|
|
84923
|
+
success: boolean;
|
|
84924
|
+
clearedAgentIds: string[];
|
|
84925
|
+
}[];
|
|
84926
|
+
};
|
|
84539
84927
|
}>, z.ZodObject<{
|
|
84540
84928
|
type: z.ZodLiteral<"send_agent_message_response">;
|
|
84541
84929
|
payload: z.ZodObject<{
|
|
@@ -93093,6 +93481,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93093
93481
|
name: z.ZodString;
|
|
93094
93482
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
93095
93483
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
93484
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
93096
93485
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
93097
93486
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
93098
93487
|
additions: z.ZodNumber;
|
|
@@ -93533,6 +93922,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93533
93922
|
projectKind: "git" | "directory" | "non_git";
|
|
93534
93923
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
93535
93924
|
archivingAt: string | null;
|
|
93925
|
+
statusEnteredAt: string | null;
|
|
93536
93926
|
activityAt: string | null;
|
|
93537
93927
|
projectCustomName?: string | null | undefined;
|
|
93538
93928
|
workspaceDirectory?: string | undefined;
|
|
@@ -93637,6 +94027,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93637
94027
|
projectCustomName?: string | null | undefined;
|
|
93638
94028
|
workspaceDirectory?: string | undefined;
|
|
93639
94029
|
archivingAt?: string | null | undefined;
|
|
94030
|
+
statusEnteredAt?: string | null | undefined;
|
|
93640
94031
|
diffStat?: {
|
|
93641
94032
|
additions: number;
|
|
93642
94033
|
deletions: number;
|
|
@@ -93736,6 +94127,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93736
94127
|
projectKind: "git" | "directory" | "non_git";
|
|
93737
94128
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
93738
94129
|
archivingAt: string | null;
|
|
94130
|
+
statusEnteredAt: string | null;
|
|
93739
94131
|
activityAt: string | null;
|
|
93740
94132
|
projectCustomName?: string | null | undefined;
|
|
93741
94133
|
diffStat?: {
|
|
@@ -93839,6 +94231,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93839
94231
|
projectCustomName?: string | null | undefined;
|
|
93840
94232
|
workspaceDirectory?: string | undefined;
|
|
93841
94233
|
archivingAt?: string | null | undefined;
|
|
94234
|
+
statusEnteredAt?: string | null | undefined;
|
|
93842
94235
|
diffStat?: {
|
|
93843
94236
|
additions: number;
|
|
93844
94237
|
deletions: number;
|
|
@@ -93946,6 +94339,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93946
94339
|
projectKind: "git" | "directory" | "non_git";
|
|
93947
94340
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
93948
94341
|
archivingAt: string | null;
|
|
94342
|
+
statusEnteredAt: string | null;
|
|
93949
94343
|
activityAt: string | null;
|
|
93950
94344
|
projectCustomName?: string | null | undefined;
|
|
93951
94345
|
diffStat?: {
|
|
@@ -94055,6 +94449,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
94055
94449
|
projectCustomName?: string | null | undefined;
|
|
94056
94450
|
workspaceDirectory?: string | undefined;
|
|
94057
94451
|
archivingAt?: string | null | undefined;
|
|
94452
|
+
statusEnteredAt?: string | null | undefined;
|
|
94058
94453
|
diffStat?: {
|
|
94059
94454
|
additions: number;
|
|
94060
94455
|
deletions: number;
|
|
@@ -94163,6 +94558,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
94163
94558
|
projectKind: "git" | "directory" | "non_git";
|
|
94164
94559
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
94165
94560
|
archivingAt: string | null;
|
|
94561
|
+
statusEnteredAt: string | null;
|
|
94166
94562
|
activityAt: string | null;
|
|
94167
94563
|
projectCustomName?: string | null | undefined;
|
|
94168
94564
|
diffStat?: {
|
|
@@ -94275,6 +94671,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
94275
94671
|
projectCustomName?: string | null | undefined;
|
|
94276
94672
|
workspaceDirectory?: string | undefined;
|
|
94277
94673
|
archivingAt?: string | null | undefined;
|
|
94674
|
+
statusEnteredAt?: string | null | undefined;
|
|
94278
94675
|
diffStat?: {
|
|
94279
94676
|
additions: number;
|
|
94280
94677
|
deletions: number;
|
|
@@ -103731,6 +104128,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
103731
104128
|
projectKind: "git" | "directory" | "non_git";
|
|
103732
104129
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
103733
104130
|
archivingAt: string | null;
|
|
104131
|
+
statusEnteredAt: string | null;
|
|
103734
104132
|
activityAt: string | null;
|
|
103735
104133
|
projectCustomName?: string | null | undefined;
|
|
103736
104134
|
diffStat?: {
|
|
@@ -103845,6 +104243,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
103845
104243
|
projectKind: "git" | "directory" | "non_git";
|
|
103846
104244
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
103847
104245
|
archivingAt: string | null;
|
|
104246
|
+
statusEnteredAt: string | null;
|
|
103848
104247
|
activityAt: string | null;
|
|
103849
104248
|
projectCustomName?: string | null | undefined;
|
|
103850
104249
|
diffStat?: {
|
|
@@ -104023,6 +104422,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
104023
104422
|
projectKind: "git" | "directory" | "non_git";
|
|
104024
104423
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
104025
104424
|
archivingAt: string | null;
|
|
104425
|
+
statusEnteredAt: string | null;
|
|
104026
104426
|
activityAt: string | null;
|
|
104027
104427
|
projectCustomName?: string | null | undefined;
|
|
104028
104428
|
diffStat?: {
|
|
@@ -104426,6 +104826,21 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
104426
104826
|
providerUnavailable?: boolean | undefined;
|
|
104427
104827
|
}[];
|
|
104428
104828
|
};
|
|
104829
|
+
} | {
|
|
104830
|
+
type: "workspace.clear_attention.response";
|
|
104831
|
+
payload: {
|
|
104832
|
+
error: string | null;
|
|
104833
|
+
requestId: string;
|
|
104834
|
+
workspaceId: string | string[];
|
|
104835
|
+
success: boolean;
|
|
104836
|
+
clearedAgentIds: string[];
|
|
104837
|
+
results: {
|
|
104838
|
+
error: string | null;
|
|
104839
|
+
workspaceId: string;
|
|
104840
|
+
success: boolean;
|
|
104841
|
+
clearedAgentIds: string[];
|
|
104842
|
+
}[];
|
|
104843
|
+
};
|
|
104429
104844
|
} | {
|
|
104430
104845
|
type: "send_agent_message_response";
|
|
104431
104846
|
payload: {
|
|
@@ -105483,6 +105898,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
105483
105898
|
projectKind: "git" | "directory" | "non_git";
|
|
105484
105899
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
105485
105900
|
archivingAt: string | null;
|
|
105901
|
+
statusEnteredAt: string | null;
|
|
105486
105902
|
activityAt: string | null;
|
|
105487
105903
|
projectCustomName?: string | null | undefined;
|
|
105488
105904
|
diffStat?: {
|
|
@@ -107252,6 +107668,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
107252
107668
|
projectCustomName?: string | null | undefined;
|
|
107253
107669
|
workspaceDirectory?: string | undefined;
|
|
107254
107670
|
archivingAt?: string | null | undefined;
|
|
107671
|
+
statusEnteredAt?: string | null | undefined;
|
|
107255
107672
|
diffStat?: {
|
|
107256
107673
|
additions: number;
|
|
107257
107674
|
deletions: number;
|
|
@@ -107366,6 +107783,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
107366
107783
|
projectCustomName?: string | null | undefined;
|
|
107367
107784
|
workspaceDirectory?: string | undefined;
|
|
107368
107785
|
archivingAt?: string | null | undefined;
|
|
107786
|
+
statusEnteredAt?: string | null | undefined;
|
|
107369
107787
|
diffStat?: {
|
|
107370
107788
|
additions: number;
|
|
107371
107789
|
deletions: number;
|
|
@@ -107544,6 +107962,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
107544
107962
|
projectCustomName?: string | null | undefined;
|
|
107545
107963
|
workspaceDirectory?: string | undefined;
|
|
107546
107964
|
archivingAt?: string | null | undefined;
|
|
107965
|
+
statusEnteredAt?: string | null | undefined;
|
|
107547
107966
|
diffStat?: {
|
|
107548
107967
|
additions: number;
|
|
107549
107968
|
deletions: number;
|
|
@@ -107945,6 +108364,21 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
107945
108364
|
providerUnavailable?: boolean | undefined;
|
|
107946
108365
|
}[];
|
|
107947
108366
|
};
|
|
108367
|
+
} | {
|
|
108368
|
+
type: "workspace.clear_attention.response";
|
|
108369
|
+
payload: {
|
|
108370
|
+
error: string | null;
|
|
108371
|
+
requestId: string;
|
|
108372
|
+
workspaceId: string | string[];
|
|
108373
|
+
success: boolean;
|
|
108374
|
+
clearedAgentIds: string[];
|
|
108375
|
+
results: {
|
|
108376
|
+
error: string | null;
|
|
108377
|
+
workspaceId: string;
|
|
108378
|
+
success: boolean;
|
|
108379
|
+
clearedAgentIds: string[];
|
|
108380
|
+
}[];
|
|
108381
|
+
};
|
|
107948
108382
|
} | {
|
|
107949
108383
|
type: "send_agent_message_response";
|
|
107950
108384
|
payload: {
|
|
@@ -108963,6 +109397,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
108963
109397
|
projectCustomName?: string | null | undefined;
|
|
108964
109398
|
workspaceDirectory?: string | undefined;
|
|
108965
109399
|
archivingAt?: string | null | undefined;
|
|
109400
|
+
statusEnteredAt?: string | null | undefined;
|
|
108966
109401
|
diffStat?: {
|
|
108967
109402
|
additions: number;
|
|
108968
109403
|
deletions: number;
|
|
@@ -112591,17 +113026,23 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
112591
113026
|
type: z.ZodLiteral<"open_in_editor_request">;
|
|
112592
113027
|
path: z.ZodString;
|
|
112593
113028
|
editorId: z.ZodString;
|
|
113029
|
+
mode: z.ZodOptional<z.ZodEnum<["open", "reveal"]>>;
|
|
113030
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
112594
113031
|
requestId: z.ZodString;
|
|
112595
113032
|
}, "strip", z.ZodTypeAny, {
|
|
112596
113033
|
type: "open_in_editor_request";
|
|
112597
113034
|
path: string;
|
|
112598
113035
|
requestId: string;
|
|
112599
113036
|
editorId: string;
|
|
113037
|
+
mode?: "open" | "reveal" | undefined;
|
|
113038
|
+
cwd?: string | undefined;
|
|
112600
113039
|
}, {
|
|
112601
113040
|
type: "open_in_editor_request";
|
|
112602
113041
|
path: string;
|
|
112603
113042
|
requestId: string;
|
|
112604
113043
|
editorId: string;
|
|
113044
|
+
mode?: "open" | "reveal" | undefined;
|
|
113045
|
+
cwd?: string | undefined;
|
|
112605
113046
|
}>, z.ZodObject<{
|
|
112606
113047
|
type: z.ZodLiteral<"open_project_request">;
|
|
112607
113048
|
cwd: z.ZodString;
|
|
@@ -112626,6 +113067,18 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
112626
113067
|
type: "archive_workspace_request";
|
|
112627
113068
|
requestId: string;
|
|
112628
113069
|
workspaceId: string;
|
|
113070
|
+
}>, z.ZodObject<{
|
|
113071
|
+
type: z.ZodLiteral<"workspace.clear_attention.request">;
|
|
113072
|
+
workspaceId: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
113073
|
+
requestId: z.ZodString;
|
|
113074
|
+
}, "strip", z.ZodTypeAny, {
|
|
113075
|
+
type: "workspace.clear_attention.request";
|
|
113076
|
+
requestId: string;
|
|
113077
|
+
workspaceId: string | string[];
|
|
113078
|
+
}, {
|
|
113079
|
+
type: "workspace.clear_attention.request";
|
|
113080
|
+
requestId: string;
|
|
113081
|
+
workspaceId: string | string[];
|
|
112629
113082
|
}>, z.ZodObject<{
|
|
112630
113083
|
type: z.ZodLiteral<"file_explorer_request">;
|
|
112631
113084
|
cwd: z.ZodString;
|
|
@@ -114646,6 +115099,8 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
114646
115099
|
path: string;
|
|
114647
115100
|
requestId: string;
|
|
114648
115101
|
editorId: string;
|
|
115102
|
+
mode?: "open" | "reveal" | undefined;
|
|
115103
|
+
cwd?: string | undefined;
|
|
114649
115104
|
} | {
|
|
114650
115105
|
type: "open_project_request";
|
|
114651
115106
|
cwd: string;
|
|
@@ -114654,6 +115109,10 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
114654
115109
|
type: "archive_workspace_request";
|
|
114655
115110
|
requestId: string;
|
|
114656
115111
|
workspaceId: string;
|
|
115112
|
+
} | {
|
|
115113
|
+
type: "workspace.clear_attention.request";
|
|
115114
|
+
requestId: string;
|
|
115115
|
+
workspaceId: string | string[];
|
|
114657
115116
|
} | {
|
|
114658
115117
|
mode: "file" | "list";
|
|
114659
115118
|
type: "file_explorer_request";
|
|
@@ -115541,6 +116000,8 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
115541
116000
|
path: string;
|
|
115542
116001
|
requestId: string;
|
|
115543
116002
|
editorId: string;
|
|
116003
|
+
mode?: "open" | "reveal" | undefined;
|
|
116004
|
+
cwd?: string | undefined;
|
|
115544
116005
|
} | {
|
|
115545
116006
|
type: "open_project_request";
|
|
115546
116007
|
cwd: string;
|
|
@@ -115549,6 +116010,10 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
115549
116010
|
type: "archive_workspace_request";
|
|
115550
116011
|
requestId: string;
|
|
115551
116012
|
workspaceId: string;
|
|
116013
|
+
} | {
|
|
116014
|
+
type: "workspace.clear_attention.request";
|
|
116015
|
+
requestId: string;
|
|
116016
|
+
workspaceId: string | string[];
|
|
115552
116017
|
} | {
|
|
115553
116018
|
mode: "file" | "list";
|
|
115554
116019
|
type: "file_explorer_request";
|
|
@@ -116907,6 +117372,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
116907
117372
|
name: z.ZodString;
|
|
116908
117373
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
116909
117374
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
117375
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
116910
117376
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
116911
117377
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
116912
117378
|
additions: z.ZodNumber;
|
|
@@ -117347,6 +117813,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117347
117813
|
projectKind: "git" | "directory" | "non_git";
|
|
117348
117814
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
117349
117815
|
archivingAt: string | null;
|
|
117816
|
+
statusEnteredAt: string | null;
|
|
117350
117817
|
activityAt: string | null;
|
|
117351
117818
|
projectCustomName?: string | null | undefined;
|
|
117352
117819
|
workspaceDirectory?: string | undefined;
|
|
@@ -117451,6 +117918,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117451
117918
|
projectCustomName?: string | null | undefined;
|
|
117452
117919
|
workspaceDirectory?: string | undefined;
|
|
117453
117920
|
archivingAt?: string | null | undefined;
|
|
117921
|
+
statusEnteredAt?: string | null | undefined;
|
|
117454
117922
|
diffStat?: {
|
|
117455
117923
|
additions: number;
|
|
117456
117924
|
deletions: number;
|
|
@@ -117550,6 +118018,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117550
118018
|
projectKind: "git" | "directory" | "non_git";
|
|
117551
118019
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
117552
118020
|
archivingAt: string | null;
|
|
118021
|
+
statusEnteredAt: string | null;
|
|
117553
118022
|
activityAt: string | null;
|
|
117554
118023
|
projectCustomName?: string | null | undefined;
|
|
117555
118024
|
diffStat?: {
|
|
@@ -117653,6 +118122,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117653
118122
|
projectCustomName?: string | null | undefined;
|
|
117654
118123
|
workspaceDirectory?: string | undefined;
|
|
117655
118124
|
archivingAt?: string | null | undefined;
|
|
118125
|
+
statusEnteredAt?: string | null | undefined;
|
|
117656
118126
|
diffStat?: {
|
|
117657
118127
|
additions: number;
|
|
117658
118128
|
deletions: number;
|
|
@@ -117755,6 +118225,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117755
118225
|
projectKind: "git" | "directory" | "non_git";
|
|
117756
118226
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
117757
118227
|
archivingAt: string | null;
|
|
118228
|
+
statusEnteredAt: string | null;
|
|
117758
118229
|
activityAt: string | null;
|
|
117759
118230
|
projectCustomName?: string | null | undefined;
|
|
117760
118231
|
diffStat?: {
|
|
@@ -117861,6 +118332,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117861
118332
|
projectCustomName?: string | null | undefined;
|
|
117862
118333
|
workspaceDirectory?: string | undefined;
|
|
117863
118334
|
archivingAt?: string | null | undefined;
|
|
118335
|
+
statusEnteredAt?: string | null | undefined;
|
|
117864
118336
|
diffStat?: {
|
|
117865
118337
|
additions: number;
|
|
117866
118338
|
deletions: number;
|
|
@@ -117975,6 +118447,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117975
118447
|
projectKind: "git" | "directory" | "non_git";
|
|
117976
118448
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
117977
118449
|
archivingAt: string | null;
|
|
118450
|
+
statusEnteredAt: string | null;
|
|
117978
118451
|
activityAt: string | null;
|
|
117979
118452
|
projectCustomName?: string | null | undefined;
|
|
117980
118453
|
diffStat?: {
|
|
@@ -118087,6 +118560,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
118087
118560
|
projectCustomName?: string | null | undefined;
|
|
118088
118561
|
workspaceDirectory?: string | undefined;
|
|
118089
118562
|
archivingAt?: string | null | undefined;
|
|
118563
|
+
statusEnteredAt?: string | null | undefined;
|
|
118090
118564
|
diffStat?: {
|
|
118091
118565
|
additions: number;
|
|
118092
118566
|
deletions: number;
|
|
@@ -121463,6 +121937,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121463
121937
|
name: z.ZodString;
|
|
121464
121938
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
121465
121939
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
121940
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
121466
121941
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
121467
121942
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
121468
121943
|
additions: z.ZodNumber;
|
|
@@ -121903,6 +122378,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121903
122378
|
projectKind: "git" | "directory" | "non_git";
|
|
121904
122379
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
121905
122380
|
archivingAt: string | null;
|
|
122381
|
+
statusEnteredAt: string | null;
|
|
121906
122382
|
activityAt: string | null;
|
|
121907
122383
|
projectCustomName?: string | null | undefined;
|
|
121908
122384
|
workspaceDirectory?: string | undefined;
|
|
@@ -122007,6 +122483,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122007
122483
|
projectCustomName?: string | null | undefined;
|
|
122008
122484
|
workspaceDirectory?: string | undefined;
|
|
122009
122485
|
archivingAt?: string | null | undefined;
|
|
122486
|
+
statusEnteredAt?: string | null | undefined;
|
|
122010
122487
|
diffStat?: {
|
|
122011
122488
|
additions: number;
|
|
122012
122489
|
deletions: number;
|
|
@@ -122106,6 +122583,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122106
122583
|
projectKind: "git" | "directory" | "non_git";
|
|
122107
122584
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
122108
122585
|
archivingAt: string | null;
|
|
122586
|
+
statusEnteredAt: string | null;
|
|
122109
122587
|
activityAt: string | null;
|
|
122110
122588
|
projectCustomName?: string | null | undefined;
|
|
122111
122589
|
diffStat?: {
|
|
@@ -122209,6 +122687,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122209
122687
|
projectCustomName?: string | null | undefined;
|
|
122210
122688
|
workspaceDirectory?: string | undefined;
|
|
122211
122689
|
archivingAt?: string | null | undefined;
|
|
122690
|
+
statusEnteredAt?: string | null | undefined;
|
|
122212
122691
|
diffStat?: {
|
|
122213
122692
|
additions: number;
|
|
122214
122693
|
deletions: number;
|
|
@@ -122323,6 +122802,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122323
122802
|
projectKind: "git" | "directory" | "non_git";
|
|
122324
122803
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
122325
122804
|
archivingAt: string | null;
|
|
122805
|
+
statusEnteredAt: string | null;
|
|
122326
122806
|
activityAt: string | null;
|
|
122327
122807
|
projectCustomName?: string | null | undefined;
|
|
122328
122808
|
diffStat?: {
|
|
@@ -122435,6 +122915,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122435
122915
|
projectCustomName?: string | null | undefined;
|
|
122436
122916
|
workspaceDirectory?: string | undefined;
|
|
122437
122917
|
archivingAt?: string | null | undefined;
|
|
122918
|
+
statusEnteredAt?: string | null | undefined;
|
|
122438
122919
|
diffStat?: {
|
|
122439
122920
|
additions: number;
|
|
122440
122921
|
deletions: number;
|
|
@@ -122546,6 +123027,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122546
123027
|
projectKind: "git" | "directory" | "non_git";
|
|
122547
123028
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
122548
123029
|
archivingAt: string | null;
|
|
123030
|
+
statusEnteredAt: string | null;
|
|
122549
123031
|
activityAt: string | null;
|
|
122550
123032
|
projectCustomName?: string | null | undefined;
|
|
122551
123033
|
diffStat?: {
|
|
@@ -122661,6 +123143,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122661
123143
|
projectCustomName?: string | null | undefined;
|
|
122662
123144
|
workspaceDirectory?: string | undefined;
|
|
122663
123145
|
archivingAt?: string | null | undefined;
|
|
123146
|
+
statusEnteredAt?: string | null | undefined;
|
|
122664
123147
|
diffStat?: {
|
|
122665
123148
|
additions: number;
|
|
122666
123149
|
deletions: number;
|
|
@@ -122761,6 +123244,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122761
123244
|
name: z.ZodString;
|
|
122762
123245
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
122763
123246
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
123247
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
122764
123248
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
122765
123249
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
122766
123250
|
additions: z.ZodNumber;
|
|
@@ -123201,6 +123685,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123201
123685
|
projectKind: "git" | "directory" | "non_git";
|
|
123202
123686
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
123203
123687
|
archivingAt: string | null;
|
|
123688
|
+
statusEnteredAt: string | null;
|
|
123204
123689
|
activityAt: string | null;
|
|
123205
123690
|
projectCustomName?: string | null | undefined;
|
|
123206
123691
|
workspaceDirectory?: string | undefined;
|
|
@@ -123305,6 +123790,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123305
123790
|
projectCustomName?: string | null | undefined;
|
|
123306
123791
|
workspaceDirectory?: string | undefined;
|
|
123307
123792
|
archivingAt?: string | null | undefined;
|
|
123793
|
+
statusEnteredAt?: string | null | undefined;
|
|
123308
123794
|
diffStat?: {
|
|
123309
123795
|
additions: number;
|
|
123310
123796
|
deletions: number;
|
|
@@ -123404,6 +123890,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123404
123890
|
projectKind: "git" | "directory" | "non_git";
|
|
123405
123891
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
123406
123892
|
archivingAt: string | null;
|
|
123893
|
+
statusEnteredAt: string | null;
|
|
123407
123894
|
activityAt: string | null;
|
|
123408
123895
|
projectCustomName?: string | null | undefined;
|
|
123409
123896
|
diffStat?: {
|
|
@@ -123507,6 +123994,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123507
123994
|
projectCustomName?: string | null | undefined;
|
|
123508
123995
|
workspaceDirectory?: string | undefined;
|
|
123509
123996
|
archivingAt?: string | null | undefined;
|
|
123997
|
+
statusEnteredAt?: string | null | undefined;
|
|
123510
123998
|
diffStat?: {
|
|
123511
123999
|
additions: number;
|
|
123512
124000
|
deletions: number;
|
|
@@ -123611,6 +124099,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123611
124099
|
projectKind: "git" | "directory" | "non_git";
|
|
123612
124100
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
123613
124101
|
archivingAt: string | null;
|
|
124102
|
+
statusEnteredAt: string | null;
|
|
123614
124103
|
activityAt: string | null;
|
|
123615
124104
|
projectCustomName?: string | null | undefined;
|
|
123616
124105
|
diffStat?: {
|
|
@@ -123718,6 +124207,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123718
124207
|
projectCustomName?: string | null | undefined;
|
|
123719
124208
|
workspaceDirectory?: string | undefined;
|
|
123720
124209
|
archivingAt?: string | null | undefined;
|
|
124210
|
+
statusEnteredAt?: string | null | undefined;
|
|
123721
124211
|
diffStat?: {
|
|
123722
124212
|
additions: number;
|
|
123723
124213
|
deletions: number;
|
|
@@ -123824,6 +124314,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123824
124314
|
projectKind: "git" | "directory" | "non_git";
|
|
123825
124315
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
123826
124316
|
archivingAt: string | null;
|
|
124317
|
+
statusEnteredAt: string | null;
|
|
123827
124318
|
activityAt: string | null;
|
|
123828
124319
|
projectCustomName?: string | null | undefined;
|
|
123829
124320
|
diffStat?: {
|
|
@@ -123934,6 +124425,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123934
124425
|
projectCustomName?: string | null | undefined;
|
|
123935
124426
|
workspaceDirectory?: string | undefined;
|
|
123936
124427
|
archivingAt?: string | null | undefined;
|
|
124428
|
+
statusEnteredAt?: string | null | undefined;
|
|
123937
124429
|
diffStat?: {
|
|
123938
124430
|
additions: number;
|
|
123939
124431
|
deletions: number;
|
|
@@ -126421,6 +126913,85 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
126421
126913
|
providerUnavailable?: boolean | undefined;
|
|
126422
126914
|
}[];
|
|
126423
126915
|
};
|
|
126916
|
+
}>, z.ZodObject<{
|
|
126917
|
+
type: z.ZodLiteral<"workspace.clear_attention.response">;
|
|
126918
|
+
payload: z.ZodObject<{
|
|
126919
|
+
requestId: z.ZodString;
|
|
126920
|
+
workspaceId: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
126921
|
+
clearedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
126922
|
+
results: z.ZodArray<z.ZodObject<{
|
|
126923
|
+
workspaceId: z.ZodString;
|
|
126924
|
+
clearedAgentIds: z.ZodArray<z.ZodString, "many">;
|
|
126925
|
+
success: z.ZodBoolean;
|
|
126926
|
+
error: z.ZodNullable<z.ZodString>;
|
|
126927
|
+
}, "strip", z.ZodTypeAny, {
|
|
126928
|
+
error: string | null;
|
|
126929
|
+
workspaceId: string;
|
|
126930
|
+
success: boolean;
|
|
126931
|
+
clearedAgentIds: string[];
|
|
126932
|
+
}, {
|
|
126933
|
+
error: string | null;
|
|
126934
|
+
workspaceId: string;
|
|
126935
|
+
success: boolean;
|
|
126936
|
+
clearedAgentIds: string[];
|
|
126937
|
+
}>, "many">;
|
|
126938
|
+
success: z.ZodBoolean;
|
|
126939
|
+
error: z.ZodNullable<z.ZodString>;
|
|
126940
|
+
}, "strip", z.ZodTypeAny, {
|
|
126941
|
+
error: string | null;
|
|
126942
|
+
requestId: string;
|
|
126943
|
+
workspaceId: string | string[];
|
|
126944
|
+
success: boolean;
|
|
126945
|
+
clearedAgentIds: string[];
|
|
126946
|
+
results: {
|
|
126947
|
+
error: string | null;
|
|
126948
|
+
workspaceId: string;
|
|
126949
|
+
success: boolean;
|
|
126950
|
+
clearedAgentIds: string[];
|
|
126951
|
+
}[];
|
|
126952
|
+
}, {
|
|
126953
|
+
error: string | null;
|
|
126954
|
+
requestId: string;
|
|
126955
|
+
workspaceId: string | string[];
|
|
126956
|
+
success: boolean;
|
|
126957
|
+
clearedAgentIds: string[];
|
|
126958
|
+
results: {
|
|
126959
|
+
error: string | null;
|
|
126960
|
+
workspaceId: string;
|
|
126961
|
+
success: boolean;
|
|
126962
|
+
clearedAgentIds: string[];
|
|
126963
|
+
}[];
|
|
126964
|
+
}>;
|
|
126965
|
+
}, "strip", z.ZodTypeAny, {
|
|
126966
|
+
type: "workspace.clear_attention.response";
|
|
126967
|
+
payload: {
|
|
126968
|
+
error: string | null;
|
|
126969
|
+
requestId: string;
|
|
126970
|
+
workspaceId: string | string[];
|
|
126971
|
+
success: boolean;
|
|
126972
|
+
clearedAgentIds: string[];
|
|
126973
|
+
results: {
|
|
126974
|
+
error: string | null;
|
|
126975
|
+
workspaceId: string;
|
|
126976
|
+
success: boolean;
|
|
126977
|
+
clearedAgentIds: string[];
|
|
126978
|
+
}[];
|
|
126979
|
+
};
|
|
126980
|
+
}, {
|
|
126981
|
+
type: "workspace.clear_attention.response";
|
|
126982
|
+
payload: {
|
|
126983
|
+
error: string | null;
|
|
126984
|
+
requestId: string;
|
|
126985
|
+
workspaceId: string | string[];
|
|
126986
|
+
success: boolean;
|
|
126987
|
+
clearedAgentIds: string[];
|
|
126988
|
+
results: {
|
|
126989
|
+
error: string | null;
|
|
126990
|
+
workspaceId: string;
|
|
126991
|
+
success: boolean;
|
|
126992
|
+
clearedAgentIds: string[];
|
|
126993
|
+
}[];
|
|
126994
|
+
};
|
|
126424
126995
|
}>, z.ZodObject<{
|
|
126425
126996
|
type: z.ZodLiteral<"send_agent_message_response">;
|
|
126426
126997
|
payload: z.ZodObject<{
|
|
@@ -134978,6 +135549,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
134978
135549
|
name: z.ZodString;
|
|
134979
135550
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
134980
135551
|
status: z.ZodEnum<["needs_input", "failed", "running", "attention", "done"]>;
|
|
135552
|
+
statusEnteredAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null, string | null | undefined>;
|
|
134981
135553
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
134982
135554
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
134983
135555
|
additions: z.ZodNumber;
|
|
@@ -135418,6 +135990,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135418
135990
|
projectKind: "git" | "directory" | "non_git";
|
|
135419
135991
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
135420
135992
|
archivingAt: string | null;
|
|
135993
|
+
statusEnteredAt: string | null;
|
|
135421
135994
|
activityAt: string | null;
|
|
135422
135995
|
projectCustomName?: string | null | undefined;
|
|
135423
135996
|
workspaceDirectory?: string | undefined;
|
|
@@ -135522,6 +136095,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135522
136095
|
projectCustomName?: string | null | undefined;
|
|
135523
136096
|
workspaceDirectory?: string | undefined;
|
|
135524
136097
|
archivingAt?: string | null | undefined;
|
|
136098
|
+
statusEnteredAt?: string | null | undefined;
|
|
135525
136099
|
diffStat?: {
|
|
135526
136100
|
additions: number;
|
|
135527
136101
|
deletions: number;
|
|
@@ -135621,6 +136195,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135621
136195
|
projectKind: "git" | "directory" | "non_git";
|
|
135622
136196
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
135623
136197
|
archivingAt: string | null;
|
|
136198
|
+
statusEnteredAt: string | null;
|
|
135624
136199
|
activityAt: string | null;
|
|
135625
136200
|
projectCustomName?: string | null | undefined;
|
|
135626
136201
|
diffStat?: {
|
|
@@ -135724,6 +136299,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135724
136299
|
projectCustomName?: string | null | undefined;
|
|
135725
136300
|
workspaceDirectory?: string | undefined;
|
|
135726
136301
|
archivingAt?: string | null | undefined;
|
|
136302
|
+
statusEnteredAt?: string | null | undefined;
|
|
135727
136303
|
diffStat?: {
|
|
135728
136304
|
additions: number;
|
|
135729
136305
|
deletions: number;
|
|
@@ -135831,6 +136407,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135831
136407
|
projectKind: "git" | "directory" | "non_git";
|
|
135832
136408
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
135833
136409
|
archivingAt: string | null;
|
|
136410
|
+
statusEnteredAt: string | null;
|
|
135834
136411
|
activityAt: string | null;
|
|
135835
136412
|
projectCustomName?: string | null | undefined;
|
|
135836
136413
|
diffStat?: {
|
|
@@ -135940,6 +136517,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135940
136517
|
projectCustomName?: string | null | undefined;
|
|
135941
136518
|
workspaceDirectory?: string | undefined;
|
|
135942
136519
|
archivingAt?: string | null | undefined;
|
|
136520
|
+
statusEnteredAt?: string | null | undefined;
|
|
135943
136521
|
diffStat?: {
|
|
135944
136522
|
additions: number;
|
|
135945
136523
|
deletions: number;
|
|
@@ -136048,6 +136626,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
136048
136626
|
projectKind: "git" | "directory" | "non_git";
|
|
136049
136627
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
136050
136628
|
archivingAt: string | null;
|
|
136629
|
+
statusEnteredAt: string | null;
|
|
136051
136630
|
activityAt: string | null;
|
|
136052
136631
|
projectCustomName?: string | null | undefined;
|
|
136053
136632
|
diffStat?: {
|
|
@@ -136160,6 +136739,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
136160
136739
|
projectCustomName?: string | null | undefined;
|
|
136161
136740
|
workspaceDirectory?: string | undefined;
|
|
136162
136741
|
archivingAt?: string | null | undefined;
|
|
136742
|
+
statusEnteredAt?: string | null | undefined;
|
|
136163
136743
|
diffStat?: {
|
|
136164
136744
|
additions: number;
|
|
136165
136745
|
deletions: number;
|
|
@@ -145616,6 +146196,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145616
146196
|
projectKind: "git" | "directory" | "non_git";
|
|
145617
146197
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
145618
146198
|
archivingAt: string | null;
|
|
146199
|
+
statusEnteredAt: string | null;
|
|
145619
146200
|
activityAt: string | null;
|
|
145620
146201
|
projectCustomName?: string | null | undefined;
|
|
145621
146202
|
diffStat?: {
|
|
@@ -145730,6 +146311,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145730
146311
|
projectKind: "git" | "directory" | "non_git";
|
|
145731
146312
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
145732
146313
|
archivingAt: string | null;
|
|
146314
|
+
statusEnteredAt: string | null;
|
|
145733
146315
|
activityAt: string | null;
|
|
145734
146316
|
projectCustomName?: string | null | undefined;
|
|
145735
146317
|
diffStat?: {
|
|
@@ -145908,6 +146490,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145908
146490
|
projectKind: "git" | "directory" | "non_git";
|
|
145909
146491
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
145910
146492
|
archivingAt: string | null;
|
|
146493
|
+
statusEnteredAt: string | null;
|
|
145911
146494
|
activityAt: string | null;
|
|
145912
146495
|
projectCustomName?: string | null | undefined;
|
|
145913
146496
|
diffStat?: {
|
|
@@ -146311,6 +146894,21 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
146311
146894
|
providerUnavailable?: boolean | undefined;
|
|
146312
146895
|
}[];
|
|
146313
146896
|
};
|
|
146897
|
+
} | {
|
|
146898
|
+
type: "workspace.clear_attention.response";
|
|
146899
|
+
payload: {
|
|
146900
|
+
error: string | null;
|
|
146901
|
+
requestId: string;
|
|
146902
|
+
workspaceId: string | string[];
|
|
146903
|
+
success: boolean;
|
|
146904
|
+
clearedAgentIds: string[];
|
|
146905
|
+
results: {
|
|
146906
|
+
error: string | null;
|
|
146907
|
+
workspaceId: string;
|
|
146908
|
+
success: boolean;
|
|
146909
|
+
clearedAgentIds: string[];
|
|
146910
|
+
}[];
|
|
146911
|
+
};
|
|
146314
146912
|
} | {
|
|
146315
146913
|
type: "send_agent_message_response";
|
|
146316
146914
|
payload: {
|
|
@@ -147368,6 +147966,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
147368
147966
|
projectKind: "git" | "directory" | "non_git";
|
|
147369
147967
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
147370
147968
|
archivingAt: string | null;
|
|
147969
|
+
statusEnteredAt: string | null;
|
|
147371
147970
|
activityAt: string | null;
|
|
147372
147971
|
projectCustomName?: string | null | undefined;
|
|
147373
147972
|
diffStat?: {
|
|
@@ -149137,6 +149736,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
149137
149736
|
projectCustomName?: string | null | undefined;
|
|
149138
149737
|
workspaceDirectory?: string | undefined;
|
|
149139
149738
|
archivingAt?: string | null | undefined;
|
|
149739
|
+
statusEnteredAt?: string | null | undefined;
|
|
149140
149740
|
diffStat?: {
|
|
149141
149741
|
additions: number;
|
|
149142
149742
|
deletions: number;
|
|
@@ -149251,6 +149851,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
149251
149851
|
projectCustomName?: string | null | undefined;
|
|
149252
149852
|
workspaceDirectory?: string | undefined;
|
|
149253
149853
|
archivingAt?: string | null | undefined;
|
|
149854
|
+
statusEnteredAt?: string | null | undefined;
|
|
149254
149855
|
diffStat?: {
|
|
149255
149856
|
additions: number;
|
|
149256
149857
|
deletions: number;
|
|
@@ -149429,6 +150030,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
149429
150030
|
projectCustomName?: string | null | undefined;
|
|
149430
150031
|
workspaceDirectory?: string | undefined;
|
|
149431
150032
|
archivingAt?: string | null | undefined;
|
|
150033
|
+
statusEnteredAt?: string | null | undefined;
|
|
149432
150034
|
diffStat?: {
|
|
149433
150035
|
additions: number;
|
|
149434
150036
|
deletions: number;
|
|
@@ -149830,6 +150432,21 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
149830
150432
|
providerUnavailable?: boolean | undefined;
|
|
149831
150433
|
}[];
|
|
149832
150434
|
};
|
|
150435
|
+
} | {
|
|
150436
|
+
type: "workspace.clear_attention.response";
|
|
150437
|
+
payload: {
|
|
150438
|
+
error: string | null;
|
|
150439
|
+
requestId: string;
|
|
150440
|
+
workspaceId: string | string[];
|
|
150441
|
+
success: boolean;
|
|
150442
|
+
clearedAgentIds: string[];
|
|
150443
|
+
results: {
|
|
150444
|
+
error: string | null;
|
|
150445
|
+
workspaceId: string;
|
|
150446
|
+
success: boolean;
|
|
150447
|
+
clearedAgentIds: string[];
|
|
150448
|
+
}[];
|
|
150449
|
+
};
|
|
149833
150450
|
} | {
|
|
149834
150451
|
type: "send_agent_message_response";
|
|
149835
150452
|
payload: {
|
|
@@ -150848,6 +151465,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
150848
151465
|
projectCustomName?: string | null | undefined;
|
|
150849
151466
|
workspaceDirectory?: string | undefined;
|
|
150850
151467
|
archivingAt?: string | null | undefined;
|
|
151468
|
+
statusEnteredAt?: string | null | undefined;
|
|
150851
151469
|
diffStat?: {
|
|
150852
151470
|
additions: number;
|
|
150853
151471
|
deletions: number;
|