@getpaseo/protocol 0.1.88 → 0.1.90
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-labels.d.ts +5 -0
- package/dist/agent-labels.js +9 -0
- package/dist/agent-state-bucket.d.ts +1 -0
- package/dist/messages.d.ts +1116 -30
- package/dist/messages.js +50 -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;
|
|
@@ -15524,6 +15543,8 @@ export declare const WorkspaceScriptPayloadSchema: z.ZodObject<{
|
|
|
15524
15543
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
15525
15544
|
hostname: z.ZodString;
|
|
15526
15545
|
port: z.ZodNullable<z.ZodNumber>;
|
|
15546
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15547
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15527
15548
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15528
15549
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
15529
15550
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -15539,6 +15560,8 @@ export declare const WorkspaceScriptPayloadSchema: z.ZodObject<{
|
|
|
15539
15560
|
proxyUrl: string | null;
|
|
15540
15561
|
lifecycle: "running" | "stopped";
|
|
15541
15562
|
health: "healthy" | "unhealthy" | null;
|
|
15563
|
+
localProxyUrl?: string | null | undefined;
|
|
15564
|
+
publicProxyUrl?: string | null | undefined;
|
|
15542
15565
|
}, {
|
|
15543
15566
|
port: number | null;
|
|
15544
15567
|
scriptName: string;
|
|
@@ -15548,6 +15571,8 @@ export declare const WorkspaceScriptPayloadSchema: z.ZodObject<{
|
|
|
15548
15571
|
type?: "script" | "service" | undefined;
|
|
15549
15572
|
exitCode?: number | null | undefined;
|
|
15550
15573
|
terminalId?: string | null | undefined;
|
|
15574
|
+
localProxyUrl?: string | null | undefined;
|
|
15575
|
+
publicProxyUrl?: string | null | undefined;
|
|
15551
15576
|
proxyUrl?: string | null | undefined;
|
|
15552
15577
|
}>;
|
|
15553
15578
|
export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
@@ -15562,6 +15587,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
15562
15587
|
name: z.ZodString;
|
|
15563
15588
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15564
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>;
|
|
15565
15591
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
15566
15592
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15567
15593
|
additions: z.ZodNumber;
|
|
@@ -15578,6 +15604,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
15578
15604
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
15579
15605
|
hostname: z.ZodString;
|
|
15580
15606
|
port: z.ZodNullable<z.ZodNumber>;
|
|
15607
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15608
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15581
15609
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15582
15610
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
15583
15611
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -15593,6 +15621,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
15593
15621
|
proxyUrl: string | null;
|
|
15594
15622
|
lifecycle: "running" | "stopped";
|
|
15595
15623
|
health: "healthy" | "unhealthy" | null;
|
|
15624
|
+
localProxyUrl?: string | null | undefined;
|
|
15625
|
+
publicProxyUrl?: string | null | undefined;
|
|
15596
15626
|
}, {
|
|
15597
15627
|
port: number | null;
|
|
15598
15628
|
scriptName: string;
|
|
@@ -15602,6 +15632,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
15602
15632
|
type?: "script" | "service" | undefined;
|
|
15603
15633
|
exitCode?: number | null | undefined;
|
|
15604
15634
|
terminalId?: string | null | undefined;
|
|
15635
|
+
localProxyUrl?: string | null | undefined;
|
|
15636
|
+
publicProxyUrl?: string | null | undefined;
|
|
15605
15637
|
proxyUrl?: string | null | undefined;
|
|
15606
15638
|
}>, "many">>;
|
|
15607
15639
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -15987,6 +16019,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
15987
16019
|
proxyUrl: string | null;
|
|
15988
16020
|
lifecycle: "running" | "stopped";
|
|
15989
16021
|
health: "healthy" | "unhealthy" | null;
|
|
16022
|
+
localProxyUrl?: string | null | undefined;
|
|
16023
|
+
publicProxyUrl?: string | null | undefined;
|
|
15990
16024
|
}[];
|
|
15991
16025
|
projectId: string;
|
|
15992
16026
|
projectDisplayName: string;
|
|
@@ -15994,6 +16028,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
15994
16028
|
projectKind: "git" | "directory" | "non_git";
|
|
15995
16029
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
15996
16030
|
archivingAt: string | null;
|
|
16031
|
+
statusEnteredAt: string | null;
|
|
15997
16032
|
activityAt: string | null;
|
|
15998
16033
|
projectCustomName?: string | null | undefined;
|
|
15999
16034
|
workspaceDirectory?: string | undefined;
|
|
@@ -16091,11 +16126,14 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
16091
16126
|
type?: "script" | "service" | undefined;
|
|
16092
16127
|
exitCode?: number | null | undefined;
|
|
16093
16128
|
terminalId?: string | null | undefined;
|
|
16129
|
+
localProxyUrl?: string | null | undefined;
|
|
16130
|
+
publicProxyUrl?: string | null | undefined;
|
|
16094
16131
|
proxyUrl?: string | null | undefined;
|
|
16095
16132
|
}[] | undefined;
|
|
16096
16133
|
projectCustomName?: string | null | undefined;
|
|
16097
16134
|
workspaceDirectory?: string | undefined;
|
|
16098
16135
|
archivingAt?: string | null | undefined;
|
|
16136
|
+
statusEnteredAt?: string | null | undefined;
|
|
16099
16137
|
diffStat?: {
|
|
16100
16138
|
additions: number;
|
|
16101
16139
|
deletions: number;
|
|
@@ -16186,6 +16224,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
16186
16224
|
proxyUrl: string | null;
|
|
16187
16225
|
lifecycle: "running" | "stopped";
|
|
16188
16226
|
health: "healthy" | "unhealthy" | null;
|
|
16227
|
+
localProxyUrl?: string | null | undefined;
|
|
16228
|
+
publicProxyUrl?: string | null | undefined;
|
|
16189
16229
|
}[];
|
|
16190
16230
|
projectId: string;
|
|
16191
16231
|
projectDisplayName: string;
|
|
@@ -16193,6 +16233,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
16193
16233
|
projectKind: "git" | "directory" | "non_git";
|
|
16194
16234
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
16195
16235
|
archivingAt: string | null;
|
|
16236
|
+
statusEnteredAt: string | null;
|
|
16196
16237
|
activityAt: string | null;
|
|
16197
16238
|
projectCustomName?: string | null | undefined;
|
|
16198
16239
|
diffStat?: {
|
|
@@ -16289,11 +16330,14 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
|
|
|
16289
16330
|
type?: "script" | "service" | undefined;
|
|
16290
16331
|
exitCode?: number | null | undefined;
|
|
16291
16332
|
terminalId?: string | null | undefined;
|
|
16333
|
+
localProxyUrl?: string | null | undefined;
|
|
16334
|
+
publicProxyUrl?: string | null | undefined;
|
|
16292
16335
|
proxyUrl?: string | null | undefined;
|
|
16293
16336
|
}[] | undefined;
|
|
16294
16337
|
projectCustomName?: string | null | undefined;
|
|
16295
16338
|
workspaceDirectory?: string | undefined;
|
|
16296
16339
|
archivingAt?: string | null | undefined;
|
|
16340
|
+
statusEnteredAt?: string | null | undefined;
|
|
16297
16341
|
diffStat?: {
|
|
16298
16342
|
additions: number;
|
|
16299
16343
|
deletions: number;
|
|
@@ -20373,6 +20417,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20373
20417
|
name: z.ZodString;
|
|
20374
20418
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20375
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>;
|
|
20376
20421
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
20377
20422
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
20378
20423
|
additions: z.ZodNumber;
|
|
@@ -20389,6 +20434,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20389
20434
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
20390
20435
|
hostname: z.ZodString;
|
|
20391
20436
|
port: z.ZodNullable<z.ZodNumber>;
|
|
20437
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20438
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20392
20439
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20393
20440
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
20394
20441
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -20404,6 +20451,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20404
20451
|
proxyUrl: string | null;
|
|
20405
20452
|
lifecycle: "running" | "stopped";
|
|
20406
20453
|
health: "healthy" | "unhealthy" | null;
|
|
20454
|
+
localProxyUrl?: string | null | undefined;
|
|
20455
|
+
publicProxyUrl?: string | null | undefined;
|
|
20407
20456
|
}, {
|
|
20408
20457
|
port: number | null;
|
|
20409
20458
|
scriptName: string;
|
|
@@ -20413,6 +20462,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20413
20462
|
type?: "script" | "service" | undefined;
|
|
20414
20463
|
exitCode?: number | null | undefined;
|
|
20415
20464
|
terminalId?: string | null | undefined;
|
|
20465
|
+
localProxyUrl?: string | null | undefined;
|
|
20466
|
+
publicProxyUrl?: string | null | undefined;
|
|
20416
20467
|
proxyUrl?: string | null | undefined;
|
|
20417
20468
|
}>, "many">>;
|
|
20418
20469
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -20798,6 +20849,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20798
20849
|
proxyUrl: string | null;
|
|
20799
20850
|
lifecycle: "running" | "stopped";
|
|
20800
20851
|
health: "healthy" | "unhealthy" | null;
|
|
20852
|
+
localProxyUrl?: string | null | undefined;
|
|
20853
|
+
publicProxyUrl?: string | null | undefined;
|
|
20801
20854
|
}[];
|
|
20802
20855
|
projectId: string;
|
|
20803
20856
|
projectDisplayName: string;
|
|
@@ -20805,6 +20858,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20805
20858
|
projectKind: "git" | "directory" | "non_git";
|
|
20806
20859
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
20807
20860
|
archivingAt: string | null;
|
|
20861
|
+
statusEnteredAt: string | null;
|
|
20808
20862
|
activityAt: string | null;
|
|
20809
20863
|
projectCustomName?: string | null | undefined;
|
|
20810
20864
|
workspaceDirectory?: string | undefined;
|
|
@@ -20902,11 +20956,14 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20902
20956
|
type?: "script" | "service" | undefined;
|
|
20903
20957
|
exitCode?: number | null | undefined;
|
|
20904
20958
|
terminalId?: string | null | undefined;
|
|
20959
|
+
localProxyUrl?: string | null | undefined;
|
|
20960
|
+
publicProxyUrl?: string | null | undefined;
|
|
20905
20961
|
proxyUrl?: string | null | undefined;
|
|
20906
20962
|
}[] | undefined;
|
|
20907
20963
|
projectCustomName?: string | null | undefined;
|
|
20908
20964
|
workspaceDirectory?: string | undefined;
|
|
20909
20965
|
archivingAt?: string | null | undefined;
|
|
20966
|
+
statusEnteredAt?: string | null | undefined;
|
|
20910
20967
|
diffStat?: {
|
|
20911
20968
|
additions: number;
|
|
20912
20969
|
deletions: number;
|
|
@@ -20997,6 +21054,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
20997
21054
|
proxyUrl: string | null;
|
|
20998
21055
|
lifecycle: "running" | "stopped";
|
|
20999
21056
|
health: "healthy" | "unhealthy" | null;
|
|
21057
|
+
localProxyUrl?: string | null | undefined;
|
|
21058
|
+
publicProxyUrl?: string | null | undefined;
|
|
21000
21059
|
}[];
|
|
21001
21060
|
projectId: string;
|
|
21002
21061
|
projectDisplayName: string;
|
|
@@ -21004,6 +21063,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21004
21063
|
projectKind: "git" | "directory" | "non_git";
|
|
21005
21064
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
21006
21065
|
archivingAt: string | null;
|
|
21066
|
+
statusEnteredAt: string | null;
|
|
21007
21067
|
activityAt: string | null;
|
|
21008
21068
|
projectCustomName?: string | null | undefined;
|
|
21009
21069
|
diffStat?: {
|
|
@@ -21100,11 +21160,14 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21100
21160
|
type?: "script" | "service" | undefined;
|
|
21101
21161
|
exitCode?: number | null | undefined;
|
|
21102
21162
|
terminalId?: string | null | undefined;
|
|
21163
|
+
localProxyUrl?: string | null | undefined;
|
|
21164
|
+
publicProxyUrl?: string | null | undefined;
|
|
21103
21165
|
proxyUrl?: string | null | undefined;
|
|
21104
21166
|
}[] | undefined;
|
|
21105
21167
|
projectCustomName?: string | null | undefined;
|
|
21106
21168
|
workspaceDirectory?: string | undefined;
|
|
21107
21169
|
archivingAt?: string | null | undefined;
|
|
21170
|
+
statusEnteredAt?: string | null | undefined;
|
|
21108
21171
|
diffStat?: {
|
|
21109
21172
|
additions: number;
|
|
21110
21173
|
deletions: number;
|
|
@@ -21210,6 +21273,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21210
21273
|
proxyUrl: string | null;
|
|
21211
21274
|
lifecycle: "running" | "stopped";
|
|
21212
21275
|
health: "healthy" | "unhealthy" | null;
|
|
21276
|
+
localProxyUrl?: string | null | undefined;
|
|
21277
|
+
publicProxyUrl?: string | null | undefined;
|
|
21213
21278
|
}[];
|
|
21214
21279
|
projectId: string;
|
|
21215
21280
|
projectDisplayName: string;
|
|
@@ -21217,6 +21282,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21217
21282
|
projectKind: "git" | "directory" | "non_git";
|
|
21218
21283
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
21219
21284
|
archivingAt: string | null;
|
|
21285
|
+
statusEnteredAt: string | null;
|
|
21220
21286
|
activityAt: string | null;
|
|
21221
21287
|
projectCustomName?: string | null | undefined;
|
|
21222
21288
|
diffStat?: {
|
|
@@ -21322,11 +21388,14 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21322
21388
|
type?: "script" | "service" | undefined;
|
|
21323
21389
|
exitCode?: number | null | undefined;
|
|
21324
21390
|
terminalId?: string | null | undefined;
|
|
21391
|
+
localProxyUrl?: string | null | undefined;
|
|
21392
|
+
publicProxyUrl?: string | null | undefined;
|
|
21325
21393
|
proxyUrl?: string | null | undefined;
|
|
21326
21394
|
}[] | undefined;
|
|
21327
21395
|
projectCustomName?: string | null | undefined;
|
|
21328
21396
|
workspaceDirectory?: string | undefined;
|
|
21329
21397
|
archivingAt?: string | null | undefined;
|
|
21398
|
+
statusEnteredAt?: string | null | undefined;
|
|
21330
21399
|
diffStat?: {
|
|
21331
21400
|
additions: number;
|
|
21332
21401
|
deletions: number;
|
|
@@ -21429,6 +21498,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21429
21498
|
proxyUrl: string | null;
|
|
21430
21499
|
lifecycle: "running" | "stopped";
|
|
21431
21500
|
health: "healthy" | "unhealthy" | null;
|
|
21501
|
+
localProxyUrl?: string | null | undefined;
|
|
21502
|
+
publicProxyUrl?: string | null | undefined;
|
|
21432
21503
|
}[];
|
|
21433
21504
|
projectId: string;
|
|
21434
21505
|
projectDisplayName: string;
|
|
@@ -21436,6 +21507,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21436
21507
|
projectKind: "git" | "directory" | "non_git";
|
|
21437
21508
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
21438
21509
|
archivingAt: string | null;
|
|
21510
|
+
statusEnteredAt: string | null;
|
|
21439
21511
|
activityAt: string | null;
|
|
21440
21512
|
projectCustomName?: string | null | undefined;
|
|
21441
21513
|
diffStat?: {
|
|
@@ -21544,11 +21616,14 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
21544
21616
|
type?: "script" | "service" | undefined;
|
|
21545
21617
|
exitCode?: number | null | undefined;
|
|
21546
21618
|
terminalId?: string | null | undefined;
|
|
21619
|
+
localProxyUrl?: string | null | undefined;
|
|
21620
|
+
publicProxyUrl?: string | null | undefined;
|
|
21547
21621
|
proxyUrl?: string | null | undefined;
|
|
21548
21622
|
}[] | undefined;
|
|
21549
21623
|
projectCustomName?: string | null | undefined;
|
|
21550
21624
|
workspaceDirectory?: string | undefined;
|
|
21551
21625
|
archivingAt?: string | null | undefined;
|
|
21626
|
+
statusEnteredAt?: string | null | undefined;
|
|
21552
21627
|
diffStat?: {
|
|
21553
21628
|
additions: number;
|
|
21554
21629
|
deletions: number;
|
|
@@ -21650,6 +21725,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
21650
21725
|
name: z.ZodString;
|
|
21651
21726
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21652
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>;
|
|
21653
21729
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
21654
21730
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21655
21731
|
additions: z.ZodNumber;
|
|
@@ -21666,6 +21742,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
21666
21742
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
21667
21743
|
hostname: z.ZodString;
|
|
21668
21744
|
port: z.ZodNullable<z.ZodNumber>;
|
|
21745
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21746
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21669
21747
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21670
21748
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
21671
21749
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -21681,6 +21759,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
21681
21759
|
proxyUrl: string | null;
|
|
21682
21760
|
lifecycle: "running" | "stopped";
|
|
21683
21761
|
health: "healthy" | "unhealthy" | null;
|
|
21762
|
+
localProxyUrl?: string | null | undefined;
|
|
21763
|
+
publicProxyUrl?: string | null | undefined;
|
|
21684
21764
|
}, {
|
|
21685
21765
|
port: number | null;
|
|
21686
21766
|
scriptName: string;
|
|
@@ -21690,6 +21770,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
21690
21770
|
type?: "script" | "service" | undefined;
|
|
21691
21771
|
exitCode?: number | null | undefined;
|
|
21692
21772
|
terminalId?: string | null | undefined;
|
|
21773
|
+
localProxyUrl?: string | null | undefined;
|
|
21774
|
+
publicProxyUrl?: string | null | undefined;
|
|
21693
21775
|
proxyUrl?: string | null | undefined;
|
|
21694
21776
|
}>, "many">>;
|
|
21695
21777
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -22075,6 +22157,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22075
22157
|
proxyUrl: string | null;
|
|
22076
22158
|
lifecycle: "running" | "stopped";
|
|
22077
22159
|
health: "healthy" | "unhealthy" | null;
|
|
22160
|
+
localProxyUrl?: string | null | undefined;
|
|
22161
|
+
publicProxyUrl?: string | null | undefined;
|
|
22078
22162
|
}[];
|
|
22079
22163
|
projectId: string;
|
|
22080
22164
|
projectDisplayName: string;
|
|
@@ -22082,6 +22166,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22082
22166
|
projectKind: "git" | "directory" | "non_git";
|
|
22083
22167
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
22084
22168
|
archivingAt: string | null;
|
|
22169
|
+
statusEnteredAt: string | null;
|
|
22085
22170
|
activityAt: string | null;
|
|
22086
22171
|
projectCustomName?: string | null | undefined;
|
|
22087
22172
|
workspaceDirectory?: string | undefined;
|
|
@@ -22179,11 +22264,14 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22179
22264
|
type?: "script" | "service" | undefined;
|
|
22180
22265
|
exitCode?: number | null | undefined;
|
|
22181
22266
|
terminalId?: string | null | undefined;
|
|
22267
|
+
localProxyUrl?: string | null | undefined;
|
|
22268
|
+
publicProxyUrl?: string | null | undefined;
|
|
22182
22269
|
proxyUrl?: string | null | undefined;
|
|
22183
22270
|
}[] | undefined;
|
|
22184
22271
|
projectCustomName?: string | null | undefined;
|
|
22185
22272
|
workspaceDirectory?: string | undefined;
|
|
22186
22273
|
archivingAt?: string | null | undefined;
|
|
22274
|
+
statusEnteredAt?: string | null | undefined;
|
|
22187
22275
|
diffStat?: {
|
|
22188
22276
|
additions: number;
|
|
22189
22277
|
deletions: number;
|
|
@@ -22274,6 +22362,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22274
22362
|
proxyUrl: string | null;
|
|
22275
22363
|
lifecycle: "running" | "stopped";
|
|
22276
22364
|
health: "healthy" | "unhealthy" | null;
|
|
22365
|
+
localProxyUrl?: string | null | undefined;
|
|
22366
|
+
publicProxyUrl?: string | null | undefined;
|
|
22277
22367
|
}[];
|
|
22278
22368
|
projectId: string;
|
|
22279
22369
|
projectDisplayName: string;
|
|
@@ -22281,6 +22371,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22281
22371
|
projectKind: "git" | "directory" | "non_git";
|
|
22282
22372
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
22283
22373
|
archivingAt: string | null;
|
|
22374
|
+
statusEnteredAt: string | null;
|
|
22284
22375
|
activityAt: string | null;
|
|
22285
22376
|
projectCustomName?: string | null | undefined;
|
|
22286
22377
|
diffStat?: {
|
|
@@ -22377,11 +22468,14 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22377
22468
|
type?: "script" | "service" | undefined;
|
|
22378
22469
|
exitCode?: number | null | undefined;
|
|
22379
22470
|
terminalId?: string | null | undefined;
|
|
22471
|
+
localProxyUrl?: string | null | undefined;
|
|
22472
|
+
publicProxyUrl?: string | null | undefined;
|
|
22380
22473
|
proxyUrl?: string | null | undefined;
|
|
22381
22474
|
}[] | undefined;
|
|
22382
22475
|
projectCustomName?: string | null | undefined;
|
|
22383
22476
|
workspaceDirectory?: string | undefined;
|
|
22384
22477
|
archivingAt?: string | null | undefined;
|
|
22478
|
+
statusEnteredAt?: string | null | undefined;
|
|
22385
22479
|
diffStat?: {
|
|
22386
22480
|
additions: number;
|
|
22387
22481
|
deletions: number;
|
|
@@ -22475,6 +22569,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22475
22569
|
proxyUrl: string | null;
|
|
22476
22570
|
lifecycle: "running" | "stopped";
|
|
22477
22571
|
health: "healthy" | "unhealthy" | null;
|
|
22572
|
+
localProxyUrl?: string | null | undefined;
|
|
22573
|
+
publicProxyUrl?: string | null | undefined;
|
|
22478
22574
|
}[];
|
|
22479
22575
|
projectId: string;
|
|
22480
22576
|
projectDisplayName: string;
|
|
@@ -22482,6 +22578,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22482
22578
|
projectKind: "git" | "directory" | "non_git";
|
|
22483
22579
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
22484
22580
|
archivingAt: string | null;
|
|
22581
|
+
statusEnteredAt: string | null;
|
|
22485
22582
|
activityAt: string | null;
|
|
22486
22583
|
projectCustomName?: string | null | undefined;
|
|
22487
22584
|
diffStat?: {
|
|
@@ -22581,11 +22678,14 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22581
22678
|
type?: "script" | "service" | undefined;
|
|
22582
22679
|
exitCode?: number | null | undefined;
|
|
22583
22680
|
terminalId?: string | null | undefined;
|
|
22681
|
+
localProxyUrl?: string | null | undefined;
|
|
22682
|
+
publicProxyUrl?: string | null | undefined;
|
|
22584
22683
|
proxyUrl?: string | null | undefined;
|
|
22585
22684
|
}[] | undefined;
|
|
22586
22685
|
projectCustomName?: string | null | undefined;
|
|
22587
22686
|
workspaceDirectory?: string | undefined;
|
|
22588
22687
|
archivingAt?: string | null | undefined;
|
|
22688
|
+
statusEnteredAt?: string | null | undefined;
|
|
22589
22689
|
diffStat?: {
|
|
22590
22690
|
additions: number;
|
|
22591
22691
|
deletions: number;
|
|
@@ -22691,6 +22791,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22691
22791
|
proxyUrl: string | null;
|
|
22692
22792
|
lifecycle: "running" | "stopped";
|
|
22693
22793
|
health: "healthy" | "unhealthy" | null;
|
|
22794
|
+
localProxyUrl?: string | null | undefined;
|
|
22795
|
+
publicProxyUrl?: string | null | undefined;
|
|
22694
22796
|
}[];
|
|
22695
22797
|
projectId: string;
|
|
22696
22798
|
projectDisplayName: string;
|
|
@@ -22698,6 +22800,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22698
22800
|
projectKind: "git" | "directory" | "non_git";
|
|
22699
22801
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
22700
22802
|
archivingAt: string | null;
|
|
22803
|
+
statusEnteredAt: string | null;
|
|
22701
22804
|
activityAt: string | null;
|
|
22702
22805
|
projectCustomName?: string | null | undefined;
|
|
22703
22806
|
diffStat?: {
|
|
@@ -22803,11 +22906,14 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
22803
22906
|
type?: "script" | "service" | undefined;
|
|
22804
22907
|
exitCode?: number | null | undefined;
|
|
22805
22908
|
terminalId?: string | null | undefined;
|
|
22909
|
+
localProxyUrl?: string | null | undefined;
|
|
22910
|
+
publicProxyUrl?: string | null | undefined;
|
|
22806
22911
|
proxyUrl?: string | null | undefined;
|
|
22807
22912
|
}[] | undefined;
|
|
22808
22913
|
projectCustomName?: string | null | undefined;
|
|
22809
22914
|
workspaceDirectory?: string | undefined;
|
|
22810
22915
|
archivingAt?: string | null | undefined;
|
|
22916
|
+
statusEnteredAt?: string | null | undefined;
|
|
22811
22917
|
diffStat?: {
|
|
22812
22918
|
additions: number;
|
|
22813
22919
|
deletions: number;
|
|
@@ -22898,6 +23004,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
22898
23004
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
22899
23005
|
hostname: z.ZodString;
|
|
22900
23006
|
port: z.ZodNullable<z.ZodNumber>;
|
|
23007
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23008
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22901
23009
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22902
23010
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
22903
23011
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -22913,6 +23021,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
22913
23021
|
proxyUrl: string | null;
|
|
22914
23022
|
lifecycle: "running" | "stopped";
|
|
22915
23023
|
health: "healthy" | "unhealthy" | null;
|
|
23024
|
+
localProxyUrl?: string | null | undefined;
|
|
23025
|
+
publicProxyUrl?: string | null | undefined;
|
|
22916
23026
|
}, {
|
|
22917
23027
|
port: number | null;
|
|
22918
23028
|
scriptName: string;
|
|
@@ -22922,6 +23032,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
22922
23032
|
type?: "script" | "service" | undefined;
|
|
22923
23033
|
exitCode?: number | null | undefined;
|
|
22924
23034
|
terminalId?: string | null | undefined;
|
|
23035
|
+
localProxyUrl?: string | null | undefined;
|
|
23036
|
+
publicProxyUrl?: string | null | undefined;
|
|
22925
23037
|
proxyUrl?: string | null | undefined;
|
|
22926
23038
|
}>, "many">;
|
|
22927
23039
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22935,6 +23047,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
22935
23047
|
proxyUrl: string | null;
|
|
22936
23048
|
lifecycle: "running" | "stopped";
|
|
22937
23049
|
health: "healthy" | "unhealthy" | null;
|
|
23050
|
+
localProxyUrl?: string | null | undefined;
|
|
23051
|
+
publicProxyUrl?: string | null | undefined;
|
|
22938
23052
|
}[];
|
|
22939
23053
|
workspaceId: string;
|
|
22940
23054
|
}, {
|
|
@@ -22947,6 +23061,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
22947
23061
|
type?: "script" | "service" | undefined;
|
|
22948
23062
|
exitCode?: number | null | undefined;
|
|
22949
23063
|
terminalId?: string | null | undefined;
|
|
23064
|
+
localProxyUrl?: string | null | undefined;
|
|
23065
|
+
publicProxyUrl?: string | null | undefined;
|
|
22950
23066
|
proxyUrl?: string | null | undefined;
|
|
22951
23067
|
}[];
|
|
22952
23068
|
workspaceId: string;
|
|
@@ -22964,6 +23080,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
22964
23080
|
proxyUrl: string | null;
|
|
22965
23081
|
lifecycle: "running" | "stopped";
|
|
22966
23082
|
health: "healthy" | "unhealthy" | null;
|
|
23083
|
+
localProxyUrl?: string | null | undefined;
|
|
23084
|
+
publicProxyUrl?: string | null | undefined;
|
|
22967
23085
|
}[];
|
|
22968
23086
|
workspaceId: string;
|
|
22969
23087
|
};
|
|
@@ -22979,6 +23097,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
|
|
|
22979
23097
|
type?: "script" | "service" | undefined;
|
|
22980
23098
|
exitCode?: number | null | undefined;
|
|
22981
23099
|
terminalId?: string | null | undefined;
|
|
23100
|
+
localProxyUrl?: string | null | undefined;
|
|
23101
|
+
publicProxyUrl?: string | null | undefined;
|
|
22982
23102
|
proxyUrl?: string | null | undefined;
|
|
22983
23103
|
}[];
|
|
22984
23104
|
workspaceId: string;
|
|
@@ -23469,6 +23589,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
23469
23589
|
name: z.ZodString;
|
|
23470
23590
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23471
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>;
|
|
23472
23593
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
23473
23594
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
23474
23595
|
additions: z.ZodNumber;
|
|
@@ -23485,6 +23606,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
23485
23606
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
23486
23607
|
hostname: z.ZodString;
|
|
23487
23608
|
port: z.ZodNullable<z.ZodNumber>;
|
|
23609
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23610
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23488
23611
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23489
23612
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
23490
23613
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -23500,6 +23623,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
23500
23623
|
proxyUrl: string | null;
|
|
23501
23624
|
lifecycle: "running" | "stopped";
|
|
23502
23625
|
health: "healthy" | "unhealthy" | null;
|
|
23626
|
+
localProxyUrl?: string | null | undefined;
|
|
23627
|
+
publicProxyUrl?: string | null | undefined;
|
|
23503
23628
|
}, {
|
|
23504
23629
|
port: number | null;
|
|
23505
23630
|
scriptName: string;
|
|
@@ -23509,6 +23634,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
23509
23634
|
type?: "script" | "service" | undefined;
|
|
23510
23635
|
exitCode?: number | null | undefined;
|
|
23511
23636
|
terminalId?: string | null | undefined;
|
|
23637
|
+
localProxyUrl?: string | null | undefined;
|
|
23638
|
+
publicProxyUrl?: string | null | undefined;
|
|
23512
23639
|
proxyUrl?: string | null | undefined;
|
|
23513
23640
|
}>, "many">>;
|
|
23514
23641
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -23894,6 +24021,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
23894
24021
|
proxyUrl: string | null;
|
|
23895
24022
|
lifecycle: "running" | "stopped";
|
|
23896
24023
|
health: "healthy" | "unhealthy" | null;
|
|
24024
|
+
localProxyUrl?: string | null | undefined;
|
|
24025
|
+
publicProxyUrl?: string | null | undefined;
|
|
23897
24026
|
}[];
|
|
23898
24027
|
projectId: string;
|
|
23899
24028
|
projectDisplayName: string;
|
|
@@ -23901,6 +24030,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
23901
24030
|
projectKind: "git" | "directory" | "non_git";
|
|
23902
24031
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
23903
24032
|
archivingAt: string | null;
|
|
24033
|
+
statusEnteredAt: string | null;
|
|
23904
24034
|
activityAt: string | null;
|
|
23905
24035
|
projectCustomName?: string | null | undefined;
|
|
23906
24036
|
workspaceDirectory?: string | undefined;
|
|
@@ -23998,11 +24128,14 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
23998
24128
|
type?: "script" | "service" | undefined;
|
|
23999
24129
|
exitCode?: number | null | undefined;
|
|
24000
24130
|
terminalId?: string | null | undefined;
|
|
24131
|
+
localProxyUrl?: string | null | undefined;
|
|
24132
|
+
publicProxyUrl?: string | null | undefined;
|
|
24001
24133
|
proxyUrl?: string | null | undefined;
|
|
24002
24134
|
}[] | undefined;
|
|
24003
24135
|
projectCustomName?: string | null | undefined;
|
|
24004
24136
|
workspaceDirectory?: string | undefined;
|
|
24005
24137
|
archivingAt?: string | null | undefined;
|
|
24138
|
+
statusEnteredAt?: string | null | undefined;
|
|
24006
24139
|
diffStat?: {
|
|
24007
24140
|
additions: number;
|
|
24008
24141
|
deletions: number;
|
|
@@ -24093,6 +24226,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24093
24226
|
proxyUrl: string | null;
|
|
24094
24227
|
lifecycle: "running" | "stopped";
|
|
24095
24228
|
health: "healthy" | "unhealthy" | null;
|
|
24229
|
+
localProxyUrl?: string | null | undefined;
|
|
24230
|
+
publicProxyUrl?: string | null | undefined;
|
|
24096
24231
|
}[];
|
|
24097
24232
|
projectId: string;
|
|
24098
24233
|
projectDisplayName: string;
|
|
@@ -24100,6 +24235,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24100
24235
|
projectKind: "git" | "directory" | "non_git";
|
|
24101
24236
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
24102
24237
|
archivingAt: string | null;
|
|
24238
|
+
statusEnteredAt: string | null;
|
|
24103
24239
|
activityAt: string | null;
|
|
24104
24240
|
projectCustomName?: string | null | undefined;
|
|
24105
24241
|
diffStat?: {
|
|
@@ -24196,11 +24332,14 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24196
24332
|
type?: "script" | "service" | undefined;
|
|
24197
24333
|
exitCode?: number | null | undefined;
|
|
24198
24334
|
terminalId?: string | null | undefined;
|
|
24335
|
+
localProxyUrl?: string | null | undefined;
|
|
24336
|
+
publicProxyUrl?: string | null | undefined;
|
|
24199
24337
|
proxyUrl?: string | null | undefined;
|
|
24200
24338
|
}[] | undefined;
|
|
24201
24339
|
projectCustomName?: string | null | undefined;
|
|
24202
24340
|
workspaceDirectory?: string | undefined;
|
|
24203
24341
|
archivingAt?: string | null | undefined;
|
|
24342
|
+
statusEnteredAt?: string | null | undefined;
|
|
24204
24343
|
diffStat?: {
|
|
24205
24344
|
additions: number;
|
|
24206
24345
|
deletions: number;
|
|
@@ -24296,6 +24435,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24296
24435
|
proxyUrl: string | null;
|
|
24297
24436
|
lifecycle: "running" | "stopped";
|
|
24298
24437
|
health: "healthy" | "unhealthy" | null;
|
|
24438
|
+
localProxyUrl?: string | null | undefined;
|
|
24439
|
+
publicProxyUrl?: string | null | undefined;
|
|
24299
24440
|
}[];
|
|
24300
24441
|
projectId: string;
|
|
24301
24442
|
projectDisplayName: string;
|
|
@@ -24303,6 +24444,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24303
24444
|
projectKind: "git" | "directory" | "non_git";
|
|
24304
24445
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
24305
24446
|
archivingAt: string | null;
|
|
24447
|
+
statusEnteredAt: string | null;
|
|
24306
24448
|
activityAt: string | null;
|
|
24307
24449
|
projectCustomName?: string | null | undefined;
|
|
24308
24450
|
diffStat?: {
|
|
@@ -24403,11 +24545,14 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24403
24545
|
type?: "script" | "service" | undefined;
|
|
24404
24546
|
exitCode?: number | null | undefined;
|
|
24405
24547
|
terminalId?: string | null | undefined;
|
|
24548
|
+
localProxyUrl?: string | null | undefined;
|
|
24549
|
+
publicProxyUrl?: string | null | undefined;
|
|
24406
24550
|
proxyUrl?: string | null | undefined;
|
|
24407
24551
|
}[] | undefined;
|
|
24408
24552
|
projectCustomName?: string | null | undefined;
|
|
24409
24553
|
workspaceDirectory?: string | undefined;
|
|
24410
24554
|
archivingAt?: string | null | undefined;
|
|
24555
|
+
statusEnteredAt?: string | null | undefined;
|
|
24411
24556
|
diffStat?: {
|
|
24412
24557
|
additions: number;
|
|
24413
24558
|
deletions: number;
|
|
@@ -24505,6 +24650,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24505
24650
|
proxyUrl: string | null;
|
|
24506
24651
|
lifecycle: "running" | "stopped";
|
|
24507
24652
|
health: "healthy" | "unhealthy" | null;
|
|
24653
|
+
localProxyUrl?: string | null | undefined;
|
|
24654
|
+
publicProxyUrl?: string | null | undefined;
|
|
24508
24655
|
}[];
|
|
24509
24656
|
projectId: string;
|
|
24510
24657
|
projectDisplayName: string;
|
|
@@ -24512,6 +24659,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24512
24659
|
projectKind: "git" | "directory" | "non_git";
|
|
24513
24660
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
24514
24661
|
archivingAt: string | null;
|
|
24662
|
+
statusEnteredAt: string | null;
|
|
24515
24663
|
activityAt: string | null;
|
|
24516
24664
|
projectCustomName?: string | null | undefined;
|
|
24517
24665
|
diffStat?: {
|
|
@@ -24615,11 +24763,14 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
24615
24763
|
type?: "script" | "service" | undefined;
|
|
24616
24764
|
exitCode?: number | null | undefined;
|
|
24617
24765
|
terminalId?: string | null | undefined;
|
|
24766
|
+
localProxyUrl?: string | null | undefined;
|
|
24767
|
+
publicProxyUrl?: string | null | undefined;
|
|
24618
24768
|
proxyUrl?: string | null | undefined;
|
|
24619
24769
|
}[] | undefined;
|
|
24620
24770
|
projectCustomName?: string | null | undefined;
|
|
24621
24771
|
workspaceDirectory?: string | undefined;
|
|
24622
24772
|
archivingAt?: string | null | undefined;
|
|
24773
|
+
statusEnteredAt?: string | null | undefined;
|
|
24623
24774
|
diffStat?: {
|
|
24624
24775
|
additions: number;
|
|
24625
24776
|
deletions: number;
|
|
@@ -24738,7 +24889,7 @@ export declare const StartWorkspaceScriptResponseMessageSchema: z.ZodObject<{
|
|
|
24738
24889
|
scriptName: string;
|
|
24739
24890
|
};
|
|
24740
24891
|
}>;
|
|
24741
|
-
export declare const
|
|
24892
|
+
export declare const LegacyListAvailableEditorsResponseMessageSchema: z.ZodObject<{
|
|
24742
24893
|
type: z.ZodLiteral<"list_available_editors_response">;
|
|
24743
24894
|
payload: z.ZodObject<{
|
|
24744
24895
|
requestId: z.ZodString;
|
|
@@ -24789,7 +24940,7 @@ export declare const ListAvailableEditorsResponseMessageSchema: z.ZodObject<{
|
|
|
24789
24940
|
}[];
|
|
24790
24941
|
};
|
|
24791
24942
|
}>;
|
|
24792
|
-
export declare const
|
|
24943
|
+
export declare const LegacyOpenInEditorResponseMessageSchema: z.ZodObject<{
|
|
24793
24944
|
type: z.ZodLiteral<"open_in_editor_response">;
|
|
24794
24945
|
payload: z.ZodObject<{
|
|
24795
24946
|
requestId: z.ZodString;
|
|
@@ -27156,6 +27307,86 @@ export declare const ClearAgentAttentionResponseMessageSchema: z.ZodObject<{
|
|
|
27156
27307
|
}[];
|
|
27157
27308
|
};
|
|
27158
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
|
+
}>;
|
|
27159
27390
|
export declare const SendAgentMessageResponseMessageSchema: z.ZodObject<{
|
|
27160
27391
|
type: z.ZodLiteral<"send_agent_message_response">;
|
|
27161
27392
|
payload: z.ZodObject<{
|
|
@@ -35731,6 +35962,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
35731
35962
|
name: z.ZodString;
|
|
35732
35963
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
35733
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>;
|
|
35734
35966
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
35735
35967
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
35736
35968
|
additions: z.ZodNumber;
|
|
@@ -35747,6 +35979,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
35747
35979
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
35748
35980
|
hostname: z.ZodString;
|
|
35749
35981
|
port: z.ZodNullable<z.ZodNumber>;
|
|
35982
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35983
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35750
35984
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
35751
35985
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
35752
35986
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -35762,6 +35996,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
35762
35996
|
proxyUrl: string | null;
|
|
35763
35997
|
lifecycle: "running" | "stopped";
|
|
35764
35998
|
health: "healthy" | "unhealthy" | null;
|
|
35999
|
+
localProxyUrl?: string | null | undefined;
|
|
36000
|
+
publicProxyUrl?: string | null | undefined;
|
|
35765
36001
|
}, {
|
|
35766
36002
|
port: number | null;
|
|
35767
36003
|
scriptName: string;
|
|
@@ -35771,6 +36007,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
35771
36007
|
type?: "script" | "service" | undefined;
|
|
35772
36008
|
exitCode?: number | null | undefined;
|
|
35773
36009
|
terminalId?: string | null | undefined;
|
|
36010
|
+
localProxyUrl?: string | null | undefined;
|
|
36011
|
+
publicProxyUrl?: string | null | undefined;
|
|
35774
36012
|
proxyUrl?: string | null | undefined;
|
|
35775
36013
|
}>, "many">>;
|
|
35776
36014
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -36156,6 +36394,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36156
36394
|
proxyUrl: string | null;
|
|
36157
36395
|
lifecycle: "running" | "stopped";
|
|
36158
36396
|
health: "healthy" | "unhealthy" | null;
|
|
36397
|
+
localProxyUrl?: string | null | undefined;
|
|
36398
|
+
publicProxyUrl?: string | null | undefined;
|
|
36159
36399
|
}[];
|
|
36160
36400
|
projectId: string;
|
|
36161
36401
|
projectDisplayName: string;
|
|
@@ -36163,6 +36403,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36163
36403
|
projectKind: "git" | "directory" | "non_git";
|
|
36164
36404
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
36165
36405
|
archivingAt: string | null;
|
|
36406
|
+
statusEnteredAt: string | null;
|
|
36166
36407
|
activityAt: string | null;
|
|
36167
36408
|
projectCustomName?: string | null | undefined;
|
|
36168
36409
|
workspaceDirectory?: string | undefined;
|
|
@@ -36260,11 +36501,14 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36260
36501
|
type?: "script" | "service" | undefined;
|
|
36261
36502
|
exitCode?: number | null | undefined;
|
|
36262
36503
|
terminalId?: string | null | undefined;
|
|
36504
|
+
localProxyUrl?: string | null | undefined;
|
|
36505
|
+
publicProxyUrl?: string | null | undefined;
|
|
36263
36506
|
proxyUrl?: string | null | undefined;
|
|
36264
36507
|
}[] | undefined;
|
|
36265
36508
|
projectCustomName?: string | null | undefined;
|
|
36266
36509
|
workspaceDirectory?: string | undefined;
|
|
36267
36510
|
archivingAt?: string | null | undefined;
|
|
36511
|
+
statusEnteredAt?: string | null | undefined;
|
|
36268
36512
|
diffStat?: {
|
|
36269
36513
|
additions: number;
|
|
36270
36514
|
deletions: number;
|
|
@@ -36355,6 +36599,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36355
36599
|
proxyUrl: string | null;
|
|
36356
36600
|
lifecycle: "running" | "stopped";
|
|
36357
36601
|
health: "healthy" | "unhealthy" | null;
|
|
36602
|
+
localProxyUrl?: string | null | undefined;
|
|
36603
|
+
publicProxyUrl?: string | null | undefined;
|
|
36358
36604
|
}[];
|
|
36359
36605
|
projectId: string;
|
|
36360
36606
|
projectDisplayName: string;
|
|
@@ -36362,6 +36608,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36362
36608
|
projectKind: "git" | "directory" | "non_git";
|
|
36363
36609
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
36364
36610
|
archivingAt: string | null;
|
|
36611
|
+
statusEnteredAt: string | null;
|
|
36365
36612
|
activityAt: string | null;
|
|
36366
36613
|
projectCustomName?: string | null | undefined;
|
|
36367
36614
|
diffStat?: {
|
|
@@ -36458,11 +36705,14 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36458
36705
|
type?: "script" | "service" | undefined;
|
|
36459
36706
|
exitCode?: number | null | undefined;
|
|
36460
36707
|
terminalId?: string | null | undefined;
|
|
36708
|
+
localProxyUrl?: string | null | undefined;
|
|
36709
|
+
publicProxyUrl?: string | null | undefined;
|
|
36461
36710
|
proxyUrl?: string | null | undefined;
|
|
36462
36711
|
}[] | undefined;
|
|
36463
36712
|
projectCustomName?: string | null | undefined;
|
|
36464
36713
|
workspaceDirectory?: string | undefined;
|
|
36465
36714
|
archivingAt?: string | null | undefined;
|
|
36715
|
+
statusEnteredAt?: string | null | undefined;
|
|
36466
36716
|
diffStat?: {
|
|
36467
36717
|
additions: number;
|
|
36468
36718
|
deletions: number;
|
|
@@ -36561,6 +36811,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36561
36811
|
proxyUrl: string | null;
|
|
36562
36812
|
lifecycle: "running" | "stopped";
|
|
36563
36813
|
health: "healthy" | "unhealthy" | null;
|
|
36814
|
+
localProxyUrl?: string | null | undefined;
|
|
36815
|
+
publicProxyUrl?: string | null | undefined;
|
|
36564
36816
|
}[];
|
|
36565
36817
|
projectId: string;
|
|
36566
36818
|
projectDisplayName: string;
|
|
@@ -36568,6 +36820,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36568
36820
|
projectKind: "git" | "directory" | "non_git";
|
|
36569
36821
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
36570
36822
|
archivingAt: string | null;
|
|
36823
|
+
statusEnteredAt: string | null;
|
|
36571
36824
|
activityAt: string | null;
|
|
36572
36825
|
projectCustomName?: string | null | undefined;
|
|
36573
36826
|
diffStat?: {
|
|
@@ -36670,11 +36923,14 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36670
36923
|
type?: "script" | "service" | undefined;
|
|
36671
36924
|
exitCode?: number | null | undefined;
|
|
36672
36925
|
terminalId?: string | null | undefined;
|
|
36926
|
+
localProxyUrl?: string | null | undefined;
|
|
36927
|
+
publicProxyUrl?: string | null | undefined;
|
|
36673
36928
|
proxyUrl?: string | null | undefined;
|
|
36674
36929
|
}[] | undefined;
|
|
36675
36930
|
projectCustomName?: string | null | undefined;
|
|
36676
36931
|
workspaceDirectory?: string | undefined;
|
|
36677
36932
|
archivingAt?: string | null | undefined;
|
|
36933
|
+
statusEnteredAt?: string | null | undefined;
|
|
36678
36934
|
diffStat?: {
|
|
36679
36935
|
additions: number;
|
|
36680
36936
|
deletions: number;
|
|
@@ -36774,6 +37030,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36774
37030
|
proxyUrl: string | null;
|
|
36775
37031
|
lifecycle: "running" | "stopped";
|
|
36776
37032
|
health: "healthy" | "unhealthy" | null;
|
|
37033
|
+
localProxyUrl?: string | null | undefined;
|
|
37034
|
+
publicProxyUrl?: string | null | undefined;
|
|
36777
37035
|
}[];
|
|
36778
37036
|
projectId: string;
|
|
36779
37037
|
projectDisplayName: string;
|
|
@@ -36781,6 +37039,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36781
37039
|
projectKind: "git" | "directory" | "non_git";
|
|
36782
37040
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
36783
37041
|
archivingAt: string | null;
|
|
37042
|
+
statusEnteredAt: string | null;
|
|
36784
37043
|
activityAt: string | null;
|
|
36785
37044
|
projectCustomName?: string | null | undefined;
|
|
36786
37045
|
diffStat?: {
|
|
@@ -36886,11 +37145,14 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
36886
37145
|
type?: "script" | "service" | undefined;
|
|
36887
37146
|
exitCode?: number | null | undefined;
|
|
36888
37147
|
terminalId?: string | null | undefined;
|
|
37148
|
+
localProxyUrl?: string | null | undefined;
|
|
37149
|
+
publicProxyUrl?: string | null | undefined;
|
|
36889
37150
|
proxyUrl?: string | null | undefined;
|
|
36890
37151
|
}[] | undefined;
|
|
36891
37152
|
projectCustomName?: string | null | undefined;
|
|
36892
37153
|
workspaceDirectory?: string | undefined;
|
|
36893
37154
|
archivingAt?: string | null | undefined;
|
|
37155
|
+
statusEnteredAt?: string | null | undefined;
|
|
36894
37156
|
diffStat?: {
|
|
36895
37157
|
additions: number;
|
|
36896
37158
|
deletions: number;
|
|
@@ -39764,6 +40026,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
39764
40026
|
name: z.ZodString;
|
|
39765
40027
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
39766
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>;
|
|
39767
40030
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
39768
40031
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
39769
40032
|
additions: z.ZodNumber;
|
|
@@ -39780,6 +40043,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
39780
40043
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
39781
40044
|
hostname: z.ZodString;
|
|
39782
40045
|
port: z.ZodNullable<z.ZodNumber>;
|
|
40046
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
40047
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39783
40048
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
39784
40049
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
39785
40050
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -39795,6 +40060,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
39795
40060
|
proxyUrl: string | null;
|
|
39796
40061
|
lifecycle: "running" | "stopped";
|
|
39797
40062
|
health: "healthy" | "unhealthy" | null;
|
|
40063
|
+
localProxyUrl?: string | null | undefined;
|
|
40064
|
+
publicProxyUrl?: string | null | undefined;
|
|
39798
40065
|
}, {
|
|
39799
40066
|
port: number | null;
|
|
39800
40067
|
scriptName: string;
|
|
@@ -39804,6 +40071,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
39804
40071
|
type?: "script" | "service" | undefined;
|
|
39805
40072
|
exitCode?: number | null | undefined;
|
|
39806
40073
|
terminalId?: string | null | undefined;
|
|
40074
|
+
localProxyUrl?: string | null | undefined;
|
|
40075
|
+
publicProxyUrl?: string | null | undefined;
|
|
39807
40076
|
proxyUrl?: string | null | undefined;
|
|
39808
40077
|
}>, "many">>;
|
|
39809
40078
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -40189,6 +40458,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40189
40458
|
proxyUrl: string | null;
|
|
40190
40459
|
lifecycle: "running" | "stopped";
|
|
40191
40460
|
health: "healthy" | "unhealthy" | null;
|
|
40461
|
+
localProxyUrl?: string | null | undefined;
|
|
40462
|
+
publicProxyUrl?: string | null | undefined;
|
|
40192
40463
|
}[];
|
|
40193
40464
|
projectId: string;
|
|
40194
40465
|
projectDisplayName: string;
|
|
@@ -40196,6 +40467,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40196
40467
|
projectKind: "git" | "directory" | "non_git";
|
|
40197
40468
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
40198
40469
|
archivingAt: string | null;
|
|
40470
|
+
statusEnteredAt: string | null;
|
|
40199
40471
|
activityAt: string | null;
|
|
40200
40472
|
projectCustomName?: string | null | undefined;
|
|
40201
40473
|
workspaceDirectory?: string | undefined;
|
|
@@ -40293,11 +40565,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40293
40565
|
type?: "script" | "service" | undefined;
|
|
40294
40566
|
exitCode?: number | null | undefined;
|
|
40295
40567
|
terminalId?: string | null | undefined;
|
|
40568
|
+
localProxyUrl?: string | null | undefined;
|
|
40569
|
+
publicProxyUrl?: string | null | undefined;
|
|
40296
40570
|
proxyUrl?: string | null | undefined;
|
|
40297
40571
|
}[] | undefined;
|
|
40298
40572
|
projectCustomName?: string | null | undefined;
|
|
40299
40573
|
workspaceDirectory?: string | undefined;
|
|
40300
40574
|
archivingAt?: string | null | undefined;
|
|
40575
|
+
statusEnteredAt?: string | null | undefined;
|
|
40301
40576
|
diffStat?: {
|
|
40302
40577
|
additions: number;
|
|
40303
40578
|
deletions: number;
|
|
@@ -40388,6 +40663,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40388
40663
|
proxyUrl: string | null;
|
|
40389
40664
|
lifecycle: "running" | "stopped";
|
|
40390
40665
|
health: "healthy" | "unhealthy" | null;
|
|
40666
|
+
localProxyUrl?: string | null | undefined;
|
|
40667
|
+
publicProxyUrl?: string | null | undefined;
|
|
40391
40668
|
}[];
|
|
40392
40669
|
projectId: string;
|
|
40393
40670
|
projectDisplayName: string;
|
|
@@ -40395,6 +40672,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40395
40672
|
projectKind: "git" | "directory" | "non_git";
|
|
40396
40673
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
40397
40674
|
archivingAt: string | null;
|
|
40675
|
+
statusEnteredAt: string | null;
|
|
40398
40676
|
activityAt: string | null;
|
|
40399
40677
|
projectCustomName?: string | null | undefined;
|
|
40400
40678
|
diffStat?: {
|
|
@@ -40491,11 +40769,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40491
40769
|
type?: "script" | "service" | undefined;
|
|
40492
40770
|
exitCode?: number | null | undefined;
|
|
40493
40771
|
terminalId?: string | null | undefined;
|
|
40772
|
+
localProxyUrl?: string | null | undefined;
|
|
40773
|
+
publicProxyUrl?: string | null | undefined;
|
|
40494
40774
|
proxyUrl?: string | null | undefined;
|
|
40495
40775
|
}[] | undefined;
|
|
40496
40776
|
projectCustomName?: string | null | undefined;
|
|
40497
40777
|
workspaceDirectory?: string | undefined;
|
|
40498
40778
|
archivingAt?: string | null | undefined;
|
|
40779
|
+
statusEnteredAt?: string | null | undefined;
|
|
40499
40780
|
diffStat?: {
|
|
40500
40781
|
additions: number;
|
|
40501
40782
|
deletions: number;
|
|
@@ -40589,6 +40870,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40589
40870
|
proxyUrl: string | null;
|
|
40590
40871
|
lifecycle: "running" | "stopped";
|
|
40591
40872
|
health: "healthy" | "unhealthy" | null;
|
|
40873
|
+
localProxyUrl?: string | null | undefined;
|
|
40874
|
+
publicProxyUrl?: string | null | undefined;
|
|
40592
40875
|
}[];
|
|
40593
40876
|
projectId: string;
|
|
40594
40877
|
projectDisplayName: string;
|
|
@@ -40596,6 +40879,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40596
40879
|
projectKind: "git" | "directory" | "non_git";
|
|
40597
40880
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
40598
40881
|
archivingAt: string | null;
|
|
40882
|
+
statusEnteredAt: string | null;
|
|
40599
40883
|
activityAt: string | null;
|
|
40600
40884
|
projectCustomName?: string | null | undefined;
|
|
40601
40885
|
diffStat?: {
|
|
@@ -40695,11 +40979,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40695
40979
|
type?: "script" | "service" | undefined;
|
|
40696
40980
|
exitCode?: number | null | undefined;
|
|
40697
40981
|
terminalId?: string | null | undefined;
|
|
40982
|
+
localProxyUrl?: string | null | undefined;
|
|
40983
|
+
publicProxyUrl?: string | null | undefined;
|
|
40698
40984
|
proxyUrl?: string | null | undefined;
|
|
40699
40985
|
}[] | undefined;
|
|
40700
40986
|
projectCustomName?: string | null | undefined;
|
|
40701
40987
|
workspaceDirectory?: string | undefined;
|
|
40702
40988
|
archivingAt?: string | null | undefined;
|
|
40989
|
+
statusEnteredAt?: string | null | undefined;
|
|
40703
40990
|
diffStat?: {
|
|
40704
40991
|
additions: number;
|
|
40705
40992
|
deletions: number;
|
|
@@ -40805,6 +41092,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40805
41092
|
proxyUrl: string | null;
|
|
40806
41093
|
lifecycle: "running" | "stopped";
|
|
40807
41094
|
health: "healthy" | "unhealthy" | null;
|
|
41095
|
+
localProxyUrl?: string | null | undefined;
|
|
41096
|
+
publicProxyUrl?: string | null | undefined;
|
|
40808
41097
|
}[];
|
|
40809
41098
|
projectId: string;
|
|
40810
41099
|
projectDisplayName: string;
|
|
@@ -40812,6 +41101,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40812
41101
|
projectKind: "git" | "directory" | "non_git";
|
|
40813
41102
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
40814
41103
|
archivingAt: string | null;
|
|
41104
|
+
statusEnteredAt: string | null;
|
|
40815
41105
|
activityAt: string | null;
|
|
40816
41106
|
projectCustomName?: string | null | undefined;
|
|
40817
41107
|
diffStat?: {
|
|
@@ -40917,11 +41207,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
40917
41207
|
type?: "script" | "service" | undefined;
|
|
40918
41208
|
exitCode?: number | null | undefined;
|
|
40919
41209
|
terminalId?: string | null | undefined;
|
|
41210
|
+
localProxyUrl?: string | null | undefined;
|
|
41211
|
+
publicProxyUrl?: string | null | undefined;
|
|
40920
41212
|
proxyUrl?: string | null | undefined;
|
|
40921
41213
|
}[] | undefined;
|
|
40922
41214
|
projectCustomName?: string | null | undefined;
|
|
40923
41215
|
workspaceDirectory?: string | undefined;
|
|
40924
41216
|
archivingAt?: string | null | undefined;
|
|
41217
|
+
statusEnteredAt?: string | null | undefined;
|
|
40925
41218
|
diffStat?: {
|
|
40926
41219
|
additions: number;
|
|
40927
41220
|
deletions: number;
|
|
@@ -41011,6 +41304,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
41011
41304
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
41012
41305
|
hostname: z.ZodString;
|
|
41013
41306
|
port: z.ZodNullable<z.ZodNumber>;
|
|
41307
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41308
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41014
41309
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
41015
41310
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
41016
41311
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -41026,6 +41321,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
41026
41321
|
proxyUrl: string | null;
|
|
41027
41322
|
lifecycle: "running" | "stopped";
|
|
41028
41323
|
health: "healthy" | "unhealthy" | null;
|
|
41324
|
+
localProxyUrl?: string | null | undefined;
|
|
41325
|
+
publicProxyUrl?: string | null | undefined;
|
|
41029
41326
|
}, {
|
|
41030
41327
|
port: number | null;
|
|
41031
41328
|
scriptName: string;
|
|
@@ -41035,6 +41332,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
41035
41332
|
type?: "script" | "service" | undefined;
|
|
41036
41333
|
exitCode?: number | null | undefined;
|
|
41037
41334
|
terminalId?: string | null | undefined;
|
|
41335
|
+
localProxyUrl?: string | null | undefined;
|
|
41336
|
+
publicProxyUrl?: string | null | undefined;
|
|
41038
41337
|
proxyUrl?: string | null | undefined;
|
|
41039
41338
|
}>, "many">;
|
|
41040
41339
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -41048,6 +41347,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
41048
41347
|
proxyUrl: string | null;
|
|
41049
41348
|
lifecycle: "running" | "stopped";
|
|
41050
41349
|
health: "healthy" | "unhealthy" | null;
|
|
41350
|
+
localProxyUrl?: string | null | undefined;
|
|
41351
|
+
publicProxyUrl?: string | null | undefined;
|
|
41051
41352
|
}[];
|
|
41052
41353
|
workspaceId: string;
|
|
41053
41354
|
}, {
|
|
@@ -41060,6 +41361,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
41060
41361
|
type?: "script" | "service" | undefined;
|
|
41061
41362
|
exitCode?: number | null | undefined;
|
|
41062
41363
|
terminalId?: string | null | undefined;
|
|
41364
|
+
localProxyUrl?: string | null | undefined;
|
|
41365
|
+
publicProxyUrl?: string | null | undefined;
|
|
41063
41366
|
proxyUrl?: string | null | undefined;
|
|
41064
41367
|
}[];
|
|
41065
41368
|
workspaceId: string;
|
|
@@ -41077,6 +41380,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
41077
41380
|
proxyUrl: string | null;
|
|
41078
41381
|
lifecycle: "running" | "stopped";
|
|
41079
41382
|
health: "healthy" | "unhealthy" | null;
|
|
41383
|
+
localProxyUrl?: string | null | undefined;
|
|
41384
|
+
publicProxyUrl?: string | null | undefined;
|
|
41080
41385
|
}[];
|
|
41081
41386
|
workspaceId: string;
|
|
41082
41387
|
};
|
|
@@ -41092,6 +41397,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
41092
41397
|
type?: "script" | "service" | undefined;
|
|
41093
41398
|
exitCode?: number | null | undefined;
|
|
41094
41399
|
terminalId?: string | null | undefined;
|
|
41400
|
+
localProxyUrl?: string | null | undefined;
|
|
41401
|
+
publicProxyUrl?: string | null | undefined;
|
|
41095
41402
|
proxyUrl?: string | null | undefined;
|
|
41096
41403
|
}[];
|
|
41097
41404
|
workspaceId: string;
|
|
@@ -44284,6 +44591,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44284
44591
|
name: z.ZodString;
|
|
44285
44592
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
44286
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>;
|
|
44287
44595
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
44288
44596
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
44289
44597
|
additions: z.ZodNumber;
|
|
@@ -44300,6 +44608,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44300
44608
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
44301
44609
|
hostname: z.ZodString;
|
|
44302
44610
|
port: z.ZodNullable<z.ZodNumber>;
|
|
44611
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
44612
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
44303
44613
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
44304
44614
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
44305
44615
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -44315,6 +44625,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44315
44625
|
proxyUrl: string | null;
|
|
44316
44626
|
lifecycle: "running" | "stopped";
|
|
44317
44627
|
health: "healthy" | "unhealthy" | null;
|
|
44628
|
+
localProxyUrl?: string | null | undefined;
|
|
44629
|
+
publicProxyUrl?: string | null | undefined;
|
|
44318
44630
|
}, {
|
|
44319
44631
|
port: number | null;
|
|
44320
44632
|
scriptName: string;
|
|
@@ -44324,6 +44636,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44324
44636
|
type?: "script" | "service" | undefined;
|
|
44325
44637
|
exitCode?: number | null | undefined;
|
|
44326
44638
|
terminalId?: string | null | undefined;
|
|
44639
|
+
localProxyUrl?: string | null | undefined;
|
|
44640
|
+
publicProxyUrl?: string | null | undefined;
|
|
44327
44641
|
proxyUrl?: string | null | undefined;
|
|
44328
44642
|
}>, "many">>;
|
|
44329
44643
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -44709,6 +45023,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44709
45023
|
proxyUrl: string | null;
|
|
44710
45024
|
lifecycle: "running" | "stopped";
|
|
44711
45025
|
health: "healthy" | "unhealthy" | null;
|
|
45026
|
+
localProxyUrl?: string | null | undefined;
|
|
45027
|
+
publicProxyUrl?: string | null | undefined;
|
|
44712
45028
|
}[];
|
|
44713
45029
|
projectId: string;
|
|
44714
45030
|
projectDisplayName: string;
|
|
@@ -44716,6 +45032,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44716
45032
|
projectKind: "git" | "directory" | "non_git";
|
|
44717
45033
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
44718
45034
|
archivingAt: string | null;
|
|
45035
|
+
statusEnteredAt: string | null;
|
|
44719
45036
|
activityAt: string | null;
|
|
44720
45037
|
projectCustomName?: string | null | undefined;
|
|
44721
45038
|
workspaceDirectory?: string | undefined;
|
|
@@ -44813,11 +45130,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44813
45130
|
type?: "script" | "service" | undefined;
|
|
44814
45131
|
exitCode?: number | null | undefined;
|
|
44815
45132
|
terminalId?: string | null | undefined;
|
|
45133
|
+
localProxyUrl?: string | null | undefined;
|
|
45134
|
+
publicProxyUrl?: string | null | undefined;
|
|
44816
45135
|
proxyUrl?: string | null | undefined;
|
|
44817
45136
|
}[] | undefined;
|
|
44818
45137
|
projectCustomName?: string | null | undefined;
|
|
44819
45138
|
workspaceDirectory?: string | undefined;
|
|
44820
45139
|
archivingAt?: string | null | undefined;
|
|
45140
|
+
statusEnteredAt?: string | null | undefined;
|
|
44821
45141
|
diffStat?: {
|
|
44822
45142
|
additions: number;
|
|
44823
45143
|
deletions: number;
|
|
@@ -44908,6 +45228,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44908
45228
|
proxyUrl: string | null;
|
|
44909
45229
|
lifecycle: "running" | "stopped";
|
|
44910
45230
|
health: "healthy" | "unhealthy" | null;
|
|
45231
|
+
localProxyUrl?: string | null | undefined;
|
|
45232
|
+
publicProxyUrl?: string | null | undefined;
|
|
44911
45233
|
}[];
|
|
44912
45234
|
projectId: string;
|
|
44913
45235
|
projectDisplayName: string;
|
|
@@ -44915,6 +45237,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
44915
45237
|
projectKind: "git" | "directory" | "non_git";
|
|
44916
45238
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
44917
45239
|
archivingAt: string | null;
|
|
45240
|
+
statusEnteredAt: string | null;
|
|
44918
45241
|
activityAt: string | null;
|
|
44919
45242
|
projectCustomName?: string | null | undefined;
|
|
44920
45243
|
diffStat?: {
|
|
@@ -45011,11 +45334,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45011
45334
|
type?: "script" | "service" | undefined;
|
|
45012
45335
|
exitCode?: number | null | undefined;
|
|
45013
45336
|
terminalId?: string | null | undefined;
|
|
45337
|
+
localProxyUrl?: string | null | undefined;
|
|
45338
|
+
publicProxyUrl?: string | null | undefined;
|
|
45014
45339
|
proxyUrl?: string | null | undefined;
|
|
45015
45340
|
}[] | undefined;
|
|
45016
45341
|
projectCustomName?: string | null | undefined;
|
|
45017
45342
|
workspaceDirectory?: string | undefined;
|
|
45018
45343
|
archivingAt?: string | null | undefined;
|
|
45344
|
+
statusEnteredAt?: string | null | undefined;
|
|
45019
45345
|
diffStat?: {
|
|
45020
45346
|
additions: number;
|
|
45021
45347
|
deletions: number;
|
|
@@ -45121,6 +45447,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45121
45447
|
proxyUrl: string | null;
|
|
45122
45448
|
lifecycle: "running" | "stopped";
|
|
45123
45449
|
health: "healthy" | "unhealthy" | null;
|
|
45450
|
+
localProxyUrl?: string | null | undefined;
|
|
45451
|
+
publicProxyUrl?: string | null | undefined;
|
|
45124
45452
|
}[];
|
|
45125
45453
|
projectId: string;
|
|
45126
45454
|
projectDisplayName: string;
|
|
@@ -45128,6 +45456,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45128
45456
|
projectKind: "git" | "directory" | "non_git";
|
|
45129
45457
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
45130
45458
|
archivingAt: string | null;
|
|
45459
|
+
statusEnteredAt: string | null;
|
|
45131
45460
|
activityAt: string | null;
|
|
45132
45461
|
projectCustomName?: string | null | undefined;
|
|
45133
45462
|
diffStat?: {
|
|
@@ -45233,11 +45562,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45233
45562
|
type?: "script" | "service" | undefined;
|
|
45234
45563
|
exitCode?: number | null | undefined;
|
|
45235
45564
|
terminalId?: string | null | undefined;
|
|
45565
|
+
localProxyUrl?: string | null | undefined;
|
|
45566
|
+
publicProxyUrl?: string | null | undefined;
|
|
45236
45567
|
proxyUrl?: string | null | undefined;
|
|
45237
45568
|
}[] | undefined;
|
|
45238
45569
|
projectCustomName?: string | null | undefined;
|
|
45239
45570
|
workspaceDirectory?: string | undefined;
|
|
45240
45571
|
archivingAt?: string | null | undefined;
|
|
45572
|
+
statusEnteredAt?: string | null | undefined;
|
|
45241
45573
|
diffStat?: {
|
|
45242
45574
|
additions: number;
|
|
45243
45575
|
deletions: number;
|
|
@@ -45340,6 +45672,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45340
45672
|
proxyUrl: string | null;
|
|
45341
45673
|
lifecycle: "running" | "stopped";
|
|
45342
45674
|
health: "healthy" | "unhealthy" | null;
|
|
45675
|
+
localProxyUrl?: string | null | undefined;
|
|
45676
|
+
publicProxyUrl?: string | null | undefined;
|
|
45343
45677
|
}[];
|
|
45344
45678
|
projectId: string;
|
|
45345
45679
|
projectDisplayName: string;
|
|
@@ -45347,6 +45681,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45347
45681
|
projectKind: "git" | "directory" | "non_git";
|
|
45348
45682
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
45349
45683
|
archivingAt: string | null;
|
|
45684
|
+
statusEnteredAt: string | null;
|
|
45350
45685
|
activityAt: string | null;
|
|
45351
45686
|
projectCustomName?: string | null | undefined;
|
|
45352
45687
|
diffStat?: {
|
|
@@ -45455,11 +45790,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45455
45790
|
type?: "script" | "service" | undefined;
|
|
45456
45791
|
exitCode?: number | null | undefined;
|
|
45457
45792
|
terminalId?: string | null | undefined;
|
|
45793
|
+
localProxyUrl?: string | null | undefined;
|
|
45794
|
+
publicProxyUrl?: string | null | undefined;
|
|
45458
45795
|
proxyUrl?: string | null | undefined;
|
|
45459
45796
|
}[] | undefined;
|
|
45460
45797
|
projectCustomName?: string | null | undefined;
|
|
45461
45798
|
workspaceDirectory?: string | undefined;
|
|
45462
45799
|
archivingAt?: string | null | undefined;
|
|
45800
|
+
statusEnteredAt?: string | null | undefined;
|
|
45463
45801
|
diffStat?: {
|
|
45464
45802
|
additions: number;
|
|
45465
45803
|
deletions: number;
|
|
@@ -45560,6 +45898,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45560
45898
|
name: z.ZodString;
|
|
45561
45899
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
45562
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>;
|
|
45563
45902
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
45564
45903
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
45565
45904
|
additions: z.ZodNumber;
|
|
@@ -45576,6 +45915,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45576
45915
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
45577
45916
|
hostname: z.ZodString;
|
|
45578
45917
|
port: z.ZodNullable<z.ZodNumber>;
|
|
45918
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
45919
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
45579
45920
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
45580
45921
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
45581
45922
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -45591,6 +45932,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45591
45932
|
proxyUrl: string | null;
|
|
45592
45933
|
lifecycle: "running" | "stopped";
|
|
45593
45934
|
health: "healthy" | "unhealthy" | null;
|
|
45935
|
+
localProxyUrl?: string | null | undefined;
|
|
45936
|
+
publicProxyUrl?: string | null | undefined;
|
|
45594
45937
|
}, {
|
|
45595
45938
|
port: number | null;
|
|
45596
45939
|
scriptName: string;
|
|
@@ -45600,6 +45943,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45600
45943
|
type?: "script" | "service" | undefined;
|
|
45601
45944
|
exitCode?: number | null | undefined;
|
|
45602
45945
|
terminalId?: string | null | undefined;
|
|
45946
|
+
localProxyUrl?: string | null | undefined;
|
|
45947
|
+
publicProxyUrl?: string | null | undefined;
|
|
45603
45948
|
proxyUrl?: string | null | undefined;
|
|
45604
45949
|
}>, "many">>;
|
|
45605
45950
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -45985,6 +46330,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45985
46330
|
proxyUrl: string | null;
|
|
45986
46331
|
lifecycle: "running" | "stopped";
|
|
45987
46332
|
health: "healthy" | "unhealthy" | null;
|
|
46333
|
+
localProxyUrl?: string | null | undefined;
|
|
46334
|
+
publicProxyUrl?: string | null | undefined;
|
|
45988
46335
|
}[];
|
|
45989
46336
|
projectId: string;
|
|
45990
46337
|
projectDisplayName: string;
|
|
@@ -45992,6 +46339,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
45992
46339
|
projectKind: "git" | "directory" | "non_git";
|
|
45993
46340
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
45994
46341
|
archivingAt: string | null;
|
|
46342
|
+
statusEnteredAt: string | null;
|
|
45995
46343
|
activityAt: string | null;
|
|
45996
46344
|
projectCustomName?: string | null | undefined;
|
|
45997
46345
|
workspaceDirectory?: string | undefined;
|
|
@@ -46089,11 +46437,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46089
46437
|
type?: "script" | "service" | undefined;
|
|
46090
46438
|
exitCode?: number | null | undefined;
|
|
46091
46439
|
terminalId?: string | null | undefined;
|
|
46440
|
+
localProxyUrl?: string | null | undefined;
|
|
46441
|
+
publicProxyUrl?: string | null | undefined;
|
|
46092
46442
|
proxyUrl?: string | null | undefined;
|
|
46093
46443
|
}[] | undefined;
|
|
46094
46444
|
projectCustomName?: string | null | undefined;
|
|
46095
46445
|
workspaceDirectory?: string | undefined;
|
|
46096
46446
|
archivingAt?: string | null | undefined;
|
|
46447
|
+
statusEnteredAt?: string | null | undefined;
|
|
46097
46448
|
diffStat?: {
|
|
46098
46449
|
additions: number;
|
|
46099
46450
|
deletions: number;
|
|
@@ -46184,6 +46535,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46184
46535
|
proxyUrl: string | null;
|
|
46185
46536
|
lifecycle: "running" | "stopped";
|
|
46186
46537
|
health: "healthy" | "unhealthy" | null;
|
|
46538
|
+
localProxyUrl?: string | null | undefined;
|
|
46539
|
+
publicProxyUrl?: string | null | undefined;
|
|
46187
46540
|
}[];
|
|
46188
46541
|
projectId: string;
|
|
46189
46542
|
projectDisplayName: string;
|
|
@@ -46191,6 +46544,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46191
46544
|
projectKind: "git" | "directory" | "non_git";
|
|
46192
46545
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
46193
46546
|
archivingAt: string | null;
|
|
46547
|
+
statusEnteredAt: string | null;
|
|
46194
46548
|
activityAt: string | null;
|
|
46195
46549
|
projectCustomName?: string | null | undefined;
|
|
46196
46550
|
diffStat?: {
|
|
@@ -46287,11 +46641,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46287
46641
|
type?: "script" | "service" | undefined;
|
|
46288
46642
|
exitCode?: number | null | undefined;
|
|
46289
46643
|
terminalId?: string | null | undefined;
|
|
46644
|
+
localProxyUrl?: string | null | undefined;
|
|
46645
|
+
publicProxyUrl?: string | null | undefined;
|
|
46290
46646
|
proxyUrl?: string | null | undefined;
|
|
46291
46647
|
}[] | undefined;
|
|
46292
46648
|
projectCustomName?: string | null | undefined;
|
|
46293
46649
|
workspaceDirectory?: string | undefined;
|
|
46294
46650
|
archivingAt?: string | null | undefined;
|
|
46651
|
+
statusEnteredAt?: string | null | undefined;
|
|
46295
46652
|
diffStat?: {
|
|
46296
46653
|
additions: number;
|
|
46297
46654
|
deletions: number;
|
|
@@ -46387,6 +46744,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46387
46744
|
proxyUrl: string | null;
|
|
46388
46745
|
lifecycle: "running" | "stopped";
|
|
46389
46746
|
health: "healthy" | "unhealthy" | null;
|
|
46747
|
+
localProxyUrl?: string | null | undefined;
|
|
46748
|
+
publicProxyUrl?: string | null | undefined;
|
|
46390
46749
|
}[];
|
|
46391
46750
|
projectId: string;
|
|
46392
46751
|
projectDisplayName: string;
|
|
@@ -46394,6 +46753,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46394
46753
|
projectKind: "git" | "directory" | "non_git";
|
|
46395
46754
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
46396
46755
|
archivingAt: string | null;
|
|
46756
|
+
statusEnteredAt: string | null;
|
|
46397
46757
|
activityAt: string | null;
|
|
46398
46758
|
projectCustomName?: string | null | undefined;
|
|
46399
46759
|
diffStat?: {
|
|
@@ -46494,11 +46854,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46494
46854
|
type?: "script" | "service" | undefined;
|
|
46495
46855
|
exitCode?: number | null | undefined;
|
|
46496
46856
|
terminalId?: string | null | undefined;
|
|
46857
|
+
localProxyUrl?: string | null | undefined;
|
|
46858
|
+
publicProxyUrl?: string | null | undefined;
|
|
46497
46859
|
proxyUrl?: string | null | undefined;
|
|
46498
46860
|
}[] | undefined;
|
|
46499
46861
|
projectCustomName?: string | null | undefined;
|
|
46500
46862
|
workspaceDirectory?: string | undefined;
|
|
46501
46863
|
archivingAt?: string | null | undefined;
|
|
46864
|
+
statusEnteredAt?: string | null | undefined;
|
|
46502
46865
|
diffStat?: {
|
|
46503
46866
|
additions: number;
|
|
46504
46867
|
deletions: number;
|
|
@@ -46596,6 +46959,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46596
46959
|
proxyUrl: string | null;
|
|
46597
46960
|
lifecycle: "running" | "stopped";
|
|
46598
46961
|
health: "healthy" | "unhealthy" | null;
|
|
46962
|
+
localProxyUrl?: string | null | undefined;
|
|
46963
|
+
publicProxyUrl?: string | null | undefined;
|
|
46599
46964
|
}[];
|
|
46600
46965
|
projectId: string;
|
|
46601
46966
|
projectDisplayName: string;
|
|
@@ -46603,6 +46968,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46603
46968
|
projectKind: "git" | "directory" | "non_git";
|
|
46604
46969
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
46605
46970
|
archivingAt: string | null;
|
|
46971
|
+
statusEnteredAt: string | null;
|
|
46606
46972
|
activityAt: string | null;
|
|
46607
46973
|
projectCustomName?: string | null | undefined;
|
|
46608
46974
|
diffStat?: {
|
|
@@ -46706,11 +47072,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
46706
47072
|
type?: "script" | "service" | undefined;
|
|
46707
47073
|
exitCode?: number | null | undefined;
|
|
46708
47074
|
terminalId?: string | null | undefined;
|
|
47075
|
+
localProxyUrl?: string | null | undefined;
|
|
47076
|
+
publicProxyUrl?: string | null | undefined;
|
|
46709
47077
|
proxyUrl?: string | null | undefined;
|
|
46710
47078
|
}[] | undefined;
|
|
46711
47079
|
projectCustomName?: string | null | undefined;
|
|
46712
47080
|
workspaceDirectory?: string | undefined;
|
|
46713
47081
|
archivingAt?: string | null | undefined;
|
|
47082
|
+
statusEnteredAt?: string | null | undefined;
|
|
46714
47083
|
diffStat?: {
|
|
46715
47084
|
additions: number;
|
|
46716
47085
|
deletions: number;
|
|
@@ -49198,6 +49567,85 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
49198
49567
|
providerUnavailable?: boolean | undefined;
|
|
49199
49568
|
}[];
|
|
49200
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
|
+
};
|
|
49201
49649
|
}>, z.ZodObject<{
|
|
49202
49650
|
type: z.ZodLiteral<"send_agent_message_response">;
|
|
49203
49651
|
payload: z.ZodObject<{
|
|
@@ -57755,6 +58203,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
57755
58203
|
name: z.ZodString;
|
|
57756
58204
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
57757
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>;
|
|
57758
58207
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
57759
58208
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
57760
58209
|
additions: z.ZodNumber;
|
|
@@ -57771,6 +58220,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
57771
58220
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
57772
58221
|
hostname: z.ZodString;
|
|
57773
58222
|
port: z.ZodNullable<z.ZodNumber>;
|
|
58223
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
58224
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
57774
58225
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
57775
58226
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
57776
58227
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -57786,6 +58237,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
57786
58237
|
proxyUrl: string | null;
|
|
57787
58238
|
lifecycle: "running" | "stopped";
|
|
57788
58239
|
health: "healthy" | "unhealthy" | null;
|
|
58240
|
+
localProxyUrl?: string | null | undefined;
|
|
58241
|
+
publicProxyUrl?: string | null | undefined;
|
|
57789
58242
|
}, {
|
|
57790
58243
|
port: number | null;
|
|
57791
58244
|
scriptName: string;
|
|
@@ -57795,6 +58248,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
57795
58248
|
type?: "script" | "service" | undefined;
|
|
57796
58249
|
exitCode?: number | null | undefined;
|
|
57797
58250
|
terminalId?: string | null | undefined;
|
|
58251
|
+
localProxyUrl?: string | null | undefined;
|
|
58252
|
+
publicProxyUrl?: string | null | undefined;
|
|
57798
58253
|
proxyUrl?: string | null | undefined;
|
|
57799
58254
|
}>, "many">>;
|
|
57800
58255
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -58180,6 +58635,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58180
58635
|
proxyUrl: string | null;
|
|
58181
58636
|
lifecycle: "running" | "stopped";
|
|
58182
58637
|
health: "healthy" | "unhealthy" | null;
|
|
58638
|
+
localProxyUrl?: string | null | undefined;
|
|
58639
|
+
publicProxyUrl?: string | null | undefined;
|
|
58183
58640
|
}[];
|
|
58184
58641
|
projectId: string;
|
|
58185
58642
|
projectDisplayName: string;
|
|
@@ -58187,6 +58644,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58187
58644
|
projectKind: "git" | "directory" | "non_git";
|
|
58188
58645
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
58189
58646
|
archivingAt: string | null;
|
|
58647
|
+
statusEnteredAt: string | null;
|
|
58190
58648
|
activityAt: string | null;
|
|
58191
58649
|
projectCustomName?: string | null | undefined;
|
|
58192
58650
|
workspaceDirectory?: string | undefined;
|
|
@@ -58284,11 +58742,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58284
58742
|
type?: "script" | "service" | undefined;
|
|
58285
58743
|
exitCode?: number | null | undefined;
|
|
58286
58744
|
terminalId?: string | null | undefined;
|
|
58745
|
+
localProxyUrl?: string | null | undefined;
|
|
58746
|
+
publicProxyUrl?: string | null | undefined;
|
|
58287
58747
|
proxyUrl?: string | null | undefined;
|
|
58288
58748
|
}[] | undefined;
|
|
58289
58749
|
projectCustomName?: string | null | undefined;
|
|
58290
58750
|
workspaceDirectory?: string | undefined;
|
|
58291
58751
|
archivingAt?: string | null | undefined;
|
|
58752
|
+
statusEnteredAt?: string | null | undefined;
|
|
58292
58753
|
diffStat?: {
|
|
58293
58754
|
additions: number;
|
|
58294
58755
|
deletions: number;
|
|
@@ -58379,6 +58840,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58379
58840
|
proxyUrl: string | null;
|
|
58380
58841
|
lifecycle: "running" | "stopped";
|
|
58381
58842
|
health: "healthy" | "unhealthy" | null;
|
|
58843
|
+
localProxyUrl?: string | null | undefined;
|
|
58844
|
+
publicProxyUrl?: string | null | undefined;
|
|
58382
58845
|
}[];
|
|
58383
58846
|
projectId: string;
|
|
58384
58847
|
projectDisplayName: string;
|
|
@@ -58386,6 +58849,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58386
58849
|
projectKind: "git" | "directory" | "non_git";
|
|
58387
58850
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
58388
58851
|
archivingAt: string | null;
|
|
58852
|
+
statusEnteredAt: string | null;
|
|
58389
58853
|
activityAt: string | null;
|
|
58390
58854
|
projectCustomName?: string | null | undefined;
|
|
58391
58855
|
diffStat?: {
|
|
@@ -58482,11 +58946,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58482
58946
|
type?: "script" | "service" | undefined;
|
|
58483
58947
|
exitCode?: number | null | undefined;
|
|
58484
58948
|
terminalId?: string | null | undefined;
|
|
58949
|
+
localProxyUrl?: string | null | undefined;
|
|
58950
|
+
publicProxyUrl?: string | null | undefined;
|
|
58485
58951
|
proxyUrl?: string | null | undefined;
|
|
58486
58952
|
}[] | undefined;
|
|
58487
58953
|
projectCustomName?: string | null | undefined;
|
|
58488
58954
|
workspaceDirectory?: string | undefined;
|
|
58489
58955
|
archivingAt?: string | null | undefined;
|
|
58956
|
+
statusEnteredAt?: string | null | undefined;
|
|
58490
58957
|
diffStat?: {
|
|
58491
58958
|
additions: number;
|
|
58492
58959
|
deletions: number;
|
|
@@ -58585,6 +59052,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58585
59052
|
proxyUrl: string | null;
|
|
58586
59053
|
lifecycle: "running" | "stopped";
|
|
58587
59054
|
health: "healthy" | "unhealthy" | null;
|
|
59055
|
+
localProxyUrl?: string | null | undefined;
|
|
59056
|
+
publicProxyUrl?: string | null | undefined;
|
|
58588
59057
|
}[];
|
|
58589
59058
|
projectId: string;
|
|
58590
59059
|
projectDisplayName: string;
|
|
@@ -58592,6 +59061,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58592
59061
|
projectKind: "git" | "directory" | "non_git";
|
|
58593
59062
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
58594
59063
|
archivingAt: string | null;
|
|
59064
|
+
statusEnteredAt: string | null;
|
|
58595
59065
|
activityAt: string | null;
|
|
58596
59066
|
projectCustomName?: string | null | undefined;
|
|
58597
59067
|
diffStat?: {
|
|
@@ -58694,11 +59164,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58694
59164
|
type?: "script" | "service" | undefined;
|
|
58695
59165
|
exitCode?: number | null | undefined;
|
|
58696
59166
|
terminalId?: string | null | undefined;
|
|
59167
|
+
localProxyUrl?: string | null | undefined;
|
|
59168
|
+
publicProxyUrl?: string | null | undefined;
|
|
58697
59169
|
proxyUrl?: string | null | undefined;
|
|
58698
59170
|
}[] | undefined;
|
|
58699
59171
|
projectCustomName?: string | null | undefined;
|
|
58700
59172
|
workspaceDirectory?: string | undefined;
|
|
58701
59173
|
archivingAt?: string | null | undefined;
|
|
59174
|
+
statusEnteredAt?: string | null | undefined;
|
|
58702
59175
|
diffStat?: {
|
|
58703
59176
|
additions: number;
|
|
58704
59177
|
deletions: number;
|
|
@@ -58798,6 +59271,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58798
59271
|
proxyUrl: string | null;
|
|
58799
59272
|
lifecycle: "running" | "stopped";
|
|
58800
59273
|
health: "healthy" | "unhealthy" | null;
|
|
59274
|
+
localProxyUrl?: string | null | undefined;
|
|
59275
|
+
publicProxyUrl?: string | null | undefined;
|
|
58801
59276
|
}[];
|
|
58802
59277
|
projectId: string;
|
|
58803
59278
|
projectDisplayName: string;
|
|
@@ -58805,6 +59280,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58805
59280
|
projectKind: "git" | "directory" | "non_git";
|
|
58806
59281
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
58807
59282
|
archivingAt: string | null;
|
|
59283
|
+
statusEnteredAt: string | null;
|
|
58808
59284
|
activityAt: string | null;
|
|
58809
59285
|
projectCustomName?: string | null | undefined;
|
|
58810
59286
|
diffStat?: {
|
|
@@ -58910,11 +59386,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
58910
59386
|
type?: "script" | "service" | undefined;
|
|
58911
59387
|
exitCode?: number | null | undefined;
|
|
58912
59388
|
terminalId?: string | null | undefined;
|
|
59389
|
+
localProxyUrl?: string | null | undefined;
|
|
59390
|
+
publicProxyUrl?: string | null | undefined;
|
|
58913
59391
|
proxyUrl?: string | null | undefined;
|
|
58914
59392
|
}[] | undefined;
|
|
58915
59393
|
projectCustomName?: string | null | undefined;
|
|
58916
59394
|
workspaceDirectory?: string | undefined;
|
|
58917
59395
|
archivingAt?: string | null | undefined;
|
|
59396
|
+
statusEnteredAt?: string | null | undefined;
|
|
58918
59397
|
diffStat?: {
|
|
58919
59398
|
additions: number;
|
|
58920
59399
|
deletions: number;
|
|
@@ -66957,10 +67436,6 @@ export type WorkspaceDescriptorPayload = z.infer<typeof WorkspaceDescriptorPaylo
|
|
|
66957
67436
|
export type WorkspaceScriptLifecycle = z.infer<typeof WorkspaceScriptLifecycleSchema>;
|
|
66958
67437
|
export type WorkspaceScriptHealth = z.infer<typeof WorkspaceScriptHealthSchema>;
|
|
66959
67438
|
export type WorkspaceScriptPayload = z.infer<typeof WorkspaceScriptPayloadSchema>;
|
|
66960
|
-
export type KnownEditorTargetId = z.infer<typeof KnownEditorTargetIdSchema>;
|
|
66961
|
-
export type LegacyEditorTargetId = z.infer<typeof LegacyEditorTargetIdSchema>;
|
|
66962
|
-
export type EditorTargetId = LiteralUnion<KnownEditorTargetId, string>;
|
|
66963
|
-
export type EditorTargetDescriptorPayload = z.infer<typeof EditorTargetDescriptorPayloadSchema>;
|
|
66964
67439
|
export type FetchAgentsResponseMessage = z.infer<typeof FetchAgentsResponseMessageSchema>;
|
|
66965
67440
|
export type FetchAgentHistoryResponseMessage = z.infer<typeof FetchAgentHistoryResponseMessageSchema>;
|
|
66966
67441
|
export type FetchRecentProviderSessionsResponseMessage = z.infer<typeof FetchRecentProviderSessionsResponseMessageSchema>;
|
|
@@ -66968,8 +67443,8 @@ export type FetchWorkspacesResponseMessage = z.infer<typeof FetchWorkspacesRespo
|
|
|
66968
67443
|
export type ScriptStatusUpdateMessage = z.infer<typeof ScriptStatusUpdateMessageSchema>;
|
|
66969
67444
|
export type OpenProjectResponseMessage = z.infer<typeof OpenProjectResponseMessageSchema>;
|
|
66970
67445
|
export type StartWorkspaceScriptResponseMessage = z.infer<typeof StartWorkspaceScriptResponseMessageSchema>;
|
|
66971
|
-
export type
|
|
66972
|
-
export type
|
|
67446
|
+
export type LegacyListAvailableEditorsResponseMessage = z.infer<typeof LegacyListAvailableEditorsResponseMessageSchema>;
|
|
67447
|
+
export type LegacyOpenInEditorResponseMessage = z.infer<typeof LegacyOpenInEditorResponseMessageSchema>;
|
|
66973
67448
|
export type ArchiveWorkspaceResponseMessage = z.infer<typeof ArchiveWorkspaceResponseMessageSchema>;
|
|
66974
67449
|
export type FetchAgentResponseMessage = z.infer<typeof FetchAgentResponseMessageSchema>;
|
|
66975
67450
|
export type FetchAgentTimelineResponseMessage = z.infer<typeof FetchAgentTimelineResponseMessageSchema>;
|
|
@@ -67132,10 +67607,11 @@ export type PaseoWorktreeListResponse = z.infer<typeof PaseoWorktreeListResponse
|
|
|
67132
67607
|
export type PaseoWorktreeArchiveRequest = z.infer<typeof PaseoWorktreeArchiveRequestSchema>;
|
|
67133
67608
|
export type PaseoWorktreeArchiveResponse = z.infer<typeof PaseoWorktreeArchiveResponseSchema>;
|
|
67134
67609
|
export type WorkspaceSetupStatusRequest = z.infer<typeof WorkspaceSetupStatusRequestSchema>;
|
|
67135
|
-
export type
|
|
67136
|
-
export type
|
|
67610
|
+
export type LegacyListAvailableEditorsRequest = z.infer<typeof LegacyListAvailableEditorsRequestSchema>;
|
|
67611
|
+
export type LegacyOpenInEditorRequest = z.infer<typeof LegacyOpenInEditorRequestSchema>;
|
|
67137
67612
|
export type OpenProjectRequest = z.infer<typeof OpenProjectRequestSchema>;
|
|
67138
67613
|
export type ArchiveWorkspaceRequest = z.infer<typeof ArchiveWorkspaceRequestSchema>;
|
|
67614
|
+
export type WorkspaceClearAttentionRequest = z.infer<typeof WorkspaceClearAttentionRequestSchema>;
|
|
67139
67615
|
export type FileExplorerRequest = z.infer<typeof FileExplorerRequestSchema>;
|
|
67140
67616
|
export type FileExplorerResponse = z.infer<typeof FileExplorerResponseSchema>;
|
|
67141
67617
|
export type ProjectIconRequest = z.infer<typeof ProjectIconRequestSchema>;
|
|
@@ -70488,17 +70964,23 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
70488
70964
|
type: z.ZodLiteral<"open_in_editor_request">;
|
|
70489
70965
|
path: z.ZodString;
|
|
70490
70966
|
editorId: z.ZodString;
|
|
70967
|
+
mode: z.ZodOptional<z.ZodEnum<["open", "reveal"]>>;
|
|
70968
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
70491
70969
|
requestId: z.ZodString;
|
|
70492
70970
|
}, "strip", z.ZodTypeAny, {
|
|
70493
70971
|
type: "open_in_editor_request";
|
|
70494
70972
|
path: string;
|
|
70495
70973
|
requestId: string;
|
|
70496
70974
|
editorId: string;
|
|
70975
|
+
mode?: "open" | "reveal" | undefined;
|
|
70976
|
+
cwd?: string | undefined;
|
|
70497
70977
|
}, {
|
|
70498
70978
|
type: "open_in_editor_request";
|
|
70499
70979
|
path: string;
|
|
70500
70980
|
requestId: string;
|
|
70501
70981
|
editorId: string;
|
|
70982
|
+
mode?: "open" | "reveal" | undefined;
|
|
70983
|
+
cwd?: string | undefined;
|
|
70502
70984
|
}>, z.ZodObject<{
|
|
70503
70985
|
type: z.ZodLiteral<"open_project_request">;
|
|
70504
70986
|
cwd: z.ZodString;
|
|
@@ -70523,6 +71005,18 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
70523
71005
|
type: "archive_workspace_request";
|
|
70524
71006
|
requestId: string;
|
|
70525
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[];
|
|
70526
71020
|
}>, z.ZodObject<{
|
|
70527
71021
|
type: z.ZodLiteral<"file_explorer_request">;
|
|
70528
71022
|
cwd: z.ZodString;
|
|
@@ -72543,6 +73037,8 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
72543
73037
|
path: string;
|
|
72544
73038
|
requestId: string;
|
|
72545
73039
|
editorId: string;
|
|
73040
|
+
mode?: "open" | "reveal" | undefined;
|
|
73041
|
+
cwd?: string | undefined;
|
|
72546
73042
|
} | {
|
|
72547
73043
|
type: "open_project_request";
|
|
72548
73044
|
cwd: string;
|
|
@@ -72551,6 +73047,10 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
72551
73047
|
type: "archive_workspace_request";
|
|
72552
73048
|
requestId: string;
|
|
72553
73049
|
workspaceId: string;
|
|
73050
|
+
} | {
|
|
73051
|
+
type: "workspace.clear_attention.request";
|
|
73052
|
+
requestId: string;
|
|
73053
|
+
workspaceId: string | string[];
|
|
72554
73054
|
} | {
|
|
72555
73055
|
mode: "file" | "list";
|
|
72556
73056
|
type: "file_explorer_request";
|
|
@@ -73438,6 +73938,8 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
73438
73938
|
path: string;
|
|
73439
73939
|
requestId: string;
|
|
73440
73940
|
editorId: string;
|
|
73941
|
+
mode?: "open" | "reveal" | undefined;
|
|
73942
|
+
cwd?: string | undefined;
|
|
73441
73943
|
} | {
|
|
73442
73944
|
type: "open_project_request";
|
|
73443
73945
|
cwd: string;
|
|
@@ -73446,6 +73948,10 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
73446
73948
|
type: "archive_workspace_request";
|
|
73447
73949
|
requestId: string;
|
|
73448
73950
|
workspaceId: string;
|
|
73951
|
+
} | {
|
|
73952
|
+
type: "workspace.clear_attention.request";
|
|
73953
|
+
requestId: string;
|
|
73954
|
+
workspaceId: string | string[];
|
|
73449
73955
|
} | {
|
|
73450
73956
|
mode: "file" | "list";
|
|
73451
73957
|
type: "file_explorer_request";
|
|
@@ -74798,6 +75304,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
74798
75304
|
name: z.ZodString;
|
|
74799
75305
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
74800
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>;
|
|
74801
75308
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
74802
75309
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
74803
75310
|
additions: z.ZodNumber;
|
|
@@ -74814,6 +75321,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
74814
75321
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
74815
75322
|
hostname: z.ZodString;
|
|
74816
75323
|
port: z.ZodNullable<z.ZodNumber>;
|
|
75324
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
75325
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
74817
75326
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
74818
75327
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
74819
75328
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -74829,6 +75338,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
74829
75338
|
proxyUrl: string | null;
|
|
74830
75339
|
lifecycle: "running" | "stopped";
|
|
74831
75340
|
health: "healthy" | "unhealthy" | null;
|
|
75341
|
+
localProxyUrl?: string | null | undefined;
|
|
75342
|
+
publicProxyUrl?: string | null | undefined;
|
|
74832
75343
|
}, {
|
|
74833
75344
|
port: number | null;
|
|
74834
75345
|
scriptName: string;
|
|
@@ -74838,6 +75349,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
74838
75349
|
type?: "script" | "service" | undefined;
|
|
74839
75350
|
exitCode?: number | null | undefined;
|
|
74840
75351
|
terminalId?: string | null | undefined;
|
|
75352
|
+
localProxyUrl?: string | null | undefined;
|
|
75353
|
+
publicProxyUrl?: string | null | undefined;
|
|
74841
75354
|
proxyUrl?: string | null | undefined;
|
|
74842
75355
|
}>, "many">>;
|
|
74843
75356
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -75223,6 +75736,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75223
75736
|
proxyUrl: string | null;
|
|
75224
75737
|
lifecycle: "running" | "stopped";
|
|
75225
75738
|
health: "healthy" | "unhealthy" | null;
|
|
75739
|
+
localProxyUrl?: string | null | undefined;
|
|
75740
|
+
publicProxyUrl?: string | null | undefined;
|
|
75226
75741
|
}[];
|
|
75227
75742
|
projectId: string;
|
|
75228
75743
|
projectDisplayName: string;
|
|
@@ -75230,6 +75745,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75230
75745
|
projectKind: "git" | "directory" | "non_git";
|
|
75231
75746
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
75232
75747
|
archivingAt: string | null;
|
|
75748
|
+
statusEnteredAt: string | null;
|
|
75233
75749
|
activityAt: string | null;
|
|
75234
75750
|
projectCustomName?: string | null | undefined;
|
|
75235
75751
|
workspaceDirectory?: string | undefined;
|
|
@@ -75327,11 +75843,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75327
75843
|
type?: "script" | "service" | undefined;
|
|
75328
75844
|
exitCode?: number | null | undefined;
|
|
75329
75845
|
terminalId?: string | null | undefined;
|
|
75846
|
+
localProxyUrl?: string | null | undefined;
|
|
75847
|
+
publicProxyUrl?: string | null | undefined;
|
|
75330
75848
|
proxyUrl?: string | null | undefined;
|
|
75331
75849
|
}[] | undefined;
|
|
75332
75850
|
projectCustomName?: string | null | undefined;
|
|
75333
75851
|
workspaceDirectory?: string | undefined;
|
|
75334
75852
|
archivingAt?: string | null | undefined;
|
|
75853
|
+
statusEnteredAt?: string | null | undefined;
|
|
75335
75854
|
diffStat?: {
|
|
75336
75855
|
additions: number;
|
|
75337
75856
|
deletions: number;
|
|
@@ -75422,6 +75941,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75422
75941
|
proxyUrl: string | null;
|
|
75423
75942
|
lifecycle: "running" | "stopped";
|
|
75424
75943
|
health: "healthy" | "unhealthy" | null;
|
|
75944
|
+
localProxyUrl?: string | null | undefined;
|
|
75945
|
+
publicProxyUrl?: string | null | undefined;
|
|
75425
75946
|
}[];
|
|
75426
75947
|
projectId: string;
|
|
75427
75948
|
projectDisplayName: string;
|
|
@@ -75429,6 +75950,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75429
75950
|
projectKind: "git" | "directory" | "non_git";
|
|
75430
75951
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
75431
75952
|
archivingAt: string | null;
|
|
75953
|
+
statusEnteredAt: string | null;
|
|
75432
75954
|
activityAt: string | null;
|
|
75433
75955
|
projectCustomName?: string | null | undefined;
|
|
75434
75956
|
diffStat?: {
|
|
@@ -75525,11 +76047,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75525
76047
|
type?: "script" | "service" | undefined;
|
|
75526
76048
|
exitCode?: number | null | undefined;
|
|
75527
76049
|
terminalId?: string | null | undefined;
|
|
76050
|
+
localProxyUrl?: string | null | undefined;
|
|
76051
|
+
publicProxyUrl?: string | null | undefined;
|
|
75528
76052
|
proxyUrl?: string | null | undefined;
|
|
75529
76053
|
}[] | undefined;
|
|
75530
76054
|
projectCustomName?: string | null | undefined;
|
|
75531
76055
|
workspaceDirectory?: string | undefined;
|
|
75532
76056
|
archivingAt?: string | null | undefined;
|
|
76057
|
+
statusEnteredAt?: string | null | undefined;
|
|
75533
76058
|
diffStat?: {
|
|
75534
76059
|
additions: number;
|
|
75535
76060
|
deletions: number;
|
|
@@ -75623,6 +76148,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75623
76148
|
proxyUrl: string | null;
|
|
75624
76149
|
lifecycle: "running" | "stopped";
|
|
75625
76150
|
health: "healthy" | "unhealthy" | null;
|
|
76151
|
+
localProxyUrl?: string | null | undefined;
|
|
76152
|
+
publicProxyUrl?: string | null | undefined;
|
|
75626
76153
|
}[];
|
|
75627
76154
|
projectId: string;
|
|
75628
76155
|
projectDisplayName: string;
|
|
@@ -75630,6 +76157,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75630
76157
|
projectKind: "git" | "directory" | "non_git";
|
|
75631
76158
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
75632
76159
|
archivingAt: string | null;
|
|
76160
|
+
statusEnteredAt: string | null;
|
|
75633
76161
|
activityAt: string | null;
|
|
75634
76162
|
projectCustomName?: string | null | undefined;
|
|
75635
76163
|
diffStat?: {
|
|
@@ -75729,11 +76257,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75729
76257
|
type?: "script" | "service" | undefined;
|
|
75730
76258
|
exitCode?: number | null | undefined;
|
|
75731
76259
|
terminalId?: string | null | undefined;
|
|
76260
|
+
localProxyUrl?: string | null | undefined;
|
|
76261
|
+
publicProxyUrl?: string | null | undefined;
|
|
75732
76262
|
proxyUrl?: string | null | undefined;
|
|
75733
76263
|
}[] | undefined;
|
|
75734
76264
|
projectCustomName?: string | null | undefined;
|
|
75735
76265
|
workspaceDirectory?: string | undefined;
|
|
75736
76266
|
archivingAt?: string | null | undefined;
|
|
76267
|
+
statusEnteredAt?: string | null | undefined;
|
|
75737
76268
|
diffStat?: {
|
|
75738
76269
|
additions: number;
|
|
75739
76270
|
deletions: number;
|
|
@@ -75839,6 +76370,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75839
76370
|
proxyUrl: string | null;
|
|
75840
76371
|
lifecycle: "running" | "stopped";
|
|
75841
76372
|
health: "healthy" | "unhealthy" | null;
|
|
76373
|
+
localProxyUrl?: string | null | undefined;
|
|
76374
|
+
publicProxyUrl?: string | null | undefined;
|
|
75842
76375
|
}[];
|
|
75843
76376
|
projectId: string;
|
|
75844
76377
|
projectDisplayName: string;
|
|
@@ -75846,6 +76379,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75846
76379
|
projectKind: "git" | "directory" | "non_git";
|
|
75847
76380
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
75848
76381
|
archivingAt: string | null;
|
|
76382
|
+
statusEnteredAt: string | null;
|
|
75849
76383
|
activityAt: string | null;
|
|
75850
76384
|
projectCustomName?: string | null | undefined;
|
|
75851
76385
|
diffStat?: {
|
|
@@ -75951,11 +76485,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
75951
76485
|
type?: "script" | "service" | undefined;
|
|
75952
76486
|
exitCode?: number | null | undefined;
|
|
75953
76487
|
terminalId?: string | null | undefined;
|
|
76488
|
+
localProxyUrl?: string | null | undefined;
|
|
76489
|
+
publicProxyUrl?: string | null | undefined;
|
|
75954
76490
|
proxyUrl?: string | null | undefined;
|
|
75955
76491
|
}[] | undefined;
|
|
75956
76492
|
projectCustomName?: string | null | undefined;
|
|
75957
76493
|
workspaceDirectory?: string | undefined;
|
|
75958
76494
|
archivingAt?: string | null | undefined;
|
|
76495
|
+
statusEnteredAt?: string | null | undefined;
|
|
75959
76496
|
diffStat?: {
|
|
75960
76497
|
additions: number;
|
|
75961
76498
|
deletions: number;
|
|
@@ -76045,6 +76582,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
76045
76582
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
76046
76583
|
hostname: z.ZodString;
|
|
76047
76584
|
port: z.ZodNullable<z.ZodNumber>;
|
|
76585
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
76586
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
76048
76587
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
76049
76588
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
76050
76589
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -76060,6 +76599,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
76060
76599
|
proxyUrl: string | null;
|
|
76061
76600
|
lifecycle: "running" | "stopped";
|
|
76062
76601
|
health: "healthy" | "unhealthy" | null;
|
|
76602
|
+
localProxyUrl?: string | null | undefined;
|
|
76603
|
+
publicProxyUrl?: string | null | undefined;
|
|
76063
76604
|
}, {
|
|
76064
76605
|
port: number | null;
|
|
76065
76606
|
scriptName: string;
|
|
@@ -76069,6 +76610,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
76069
76610
|
type?: "script" | "service" | undefined;
|
|
76070
76611
|
exitCode?: number | null | undefined;
|
|
76071
76612
|
terminalId?: string | null | undefined;
|
|
76613
|
+
localProxyUrl?: string | null | undefined;
|
|
76614
|
+
publicProxyUrl?: string | null | undefined;
|
|
76072
76615
|
proxyUrl?: string | null | undefined;
|
|
76073
76616
|
}>, "many">;
|
|
76074
76617
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -76082,6 +76625,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
76082
76625
|
proxyUrl: string | null;
|
|
76083
76626
|
lifecycle: "running" | "stopped";
|
|
76084
76627
|
health: "healthy" | "unhealthy" | null;
|
|
76628
|
+
localProxyUrl?: string | null | undefined;
|
|
76629
|
+
publicProxyUrl?: string | null | undefined;
|
|
76085
76630
|
}[];
|
|
76086
76631
|
workspaceId: string;
|
|
76087
76632
|
}, {
|
|
@@ -76094,6 +76639,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
76094
76639
|
type?: "script" | "service" | undefined;
|
|
76095
76640
|
exitCode?: number | null | undefined;
|
|
76096
76641
|
terminalId?: string | null | undefined;
|
|
76642
|
+
localProxyUrl?: string | null | undefined;
|
|
76643
|
+
publicProxyUrl?: string | null | undefined;
|
|
76097
76644
|
proxyUrl?: string | null | undefined;
|
|
76098
76645
|
}[];
|
|
76099
76646
|
workspaceId: string;
|
|
@@ -76111,6 +76658,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
76111
76658
|
proxyUrl: string | null;
|
|
76112
76659
|
lifecycle: "running" | "stopped";
|
|
76113
76660
|
health: "healthy" | "unhealthy" | null;
|
|
76661
|
+
localProxyUrl?: string | null | undefined;
|
|
76662
|
+
publicProxyUrl?: string | null | undefined;
|
|
76114
76663
|
}[];
|
|
76115
76664
|
workspaceId: string;
|
|
76116
76665
|
};
|
|
@@ -76126,6 +76675,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
76126
76675
|
type?: "script" | "service" | undefined;
|
|
76127
76676
|
exitCode?: number | null | undefined;
|
|
76128
76677
|
terminalId?: string | null | undefined;
|
|
76678
|
+
localProxyUrl?: string | null | undefined;
|
|
76679
|
+
publicProxyUrl?: string | null | undefined;
|
|
76129
76680
|
proxyUrl?: string | null | undefined;
|
|
76130
76681
|
}[];
|
|
76131
76682
|
workspaceId: string;
|
|
@@ -79318,6 +79869,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
79318
79869
|
name: z.ZodString;
|
|
79319
79870
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
79320
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>;
|
|
79321
79873
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
79322
79874
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
79323
79875
|
additions: z.ZodNumber;
|
|
@@ -79334,6 +79886,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
79334
79886
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
79335
79887
|
hostname: z.ZodString;
|
|
79336
79888
|
port: z.ZodNullable<z.ZodNumber>;
|
|
79889
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
79890
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
79337
79891
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
79338
79892
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
79339
79893
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -79349,6 +79903,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
79349
79903
|
proxyUrl: string | null;
|
|
79350
79904
|
lifecycle: "running" | "stopped";
|
|
79351
79905
|
health: "healthy" | "unhealthy" | null;
|
|
79906
|
+
localProxyUrl?: string | null | undefined;
|
|
79907
|
+
publicProxyUrl?: string | null | undefined;
|
|
79352
79908
|
}, {
|
|
79353
79909
|
port: number | null;
|
|
79354
79910
|
scriptName: string;
|
|
@@ -79358,6 +79914,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
79358
79914
|
type?: "script" | "service" | undefined;
|
|
79359
79915
|
exitCode?: number | null | undefined;
|
|
79360
79916
|
terminalId?: string | null | undefined;
|
|
79917
|
+
localProxyUrl?: string | null | undefined;
|
|
79918
|
+
publicProxyUrl?: string | null | undefined;
|
|
79361
79919
|
proxyUrl?: string | null | undefined;
|
|
79362
79920
|
}>, "many">>;
|
|
79363
79921
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -79743,6 +80301,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
79743
80301
|
proxyUrl: string | null;
|
|
79744
80302
|
lifecycle: "running" | "stopped";
|
|
79745
80303
|
health: "healthy" | "unhealthy" | null;
|
|
80304
|
+
localProxyUrl?: string | null | undefined;
|
|
80305
|
+
publicProxyUrl?: string | null | undefined;
|
|
79746
80306
|
}[];
|
|
79747
80307
|
projectId: string;
|
|
79748
80308
|
projectDisplayName: string;
|
|
@@ -79750,6 +80310,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
79750
80310
|
projectKind: "git" | "directory" | "non_git";
|
|
79751
80311
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
79752
80312
|
archivingAt: string | null;
|
|
80313
|
+
statusEnteredAt: string | null;
|
|
79753
80314
|
activityAt: string | null;
|
|
79754
80315
|
projectCustomName?: string | null | undefined;
|
|
79755
80316
|
workspaceDirectory?: string | undefined;
|
|
@@ -79847,11 +80408,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
79847
80408
|
type?: "script" | "service" | undefined;
|
|
79848
80409
|
exitCode?: number | null | undefined;
|
|
79849
80410
|
terminalId?: string | null | undefined;
|
|
80411
|
+
localProxyUrl?: string | null | undefined;
|
|
80412
|
+
publicProxyUrl?: string | null | undefined;
|
|
79850
80413
|
proxyUrl?: string | null | undefined;
|
|
79851
80414
|
}[] | undefined;
|
|
79852
80415
|
projectCustomName?: string | null | undefined;
|
|
79853
80416
|
workspaceDirectory?: string | undefined;
|
|
79854
80417
|
archivingAt?: string | null | undefined;
|
|
80418
|
+
statusEnteredAt?: string | null | undefined;
|
|
79855
80419
|
diffStat?: {
|
|
79856
80420
|
additions: number;
|
|
79857
80421
|
deletions: number;
|
|
@@ -79942,6 +80506,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
79942
80506
|
proxyUrl: string | null;
|
|
79943
80507
|
lifecycle: "running" | "stopped";
|
|
79944
80508
|
health: "healthy" | "unhealthy" | null;
|
|
80509
|
+
localProxyUrl?: string | null | undefined;
|
|
80510
|
+
publicProxyUrl?: string | null | undefined;
|
|
79945
80511
|
}[];
|
|
79946
80512
|
projectId: string;
|
|
79947
80513
|
projectDisplayName: string;
|
|
@@ -79949,6 +80515,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
79949
80515
|
projectKind: "git" | "directory" | "non_git";
|
|
79950
80516
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
79951
80517
|
archivingAt: string | null;
|
|
80518
|
+
statusEnteredAt: string | null;
|
|
79952
80519
|
activityAt: string | null;
|
|
79953
80520
|
projectCustomName?: string | null | undefined;
|
|
79954
80521
|
diffStat?: {
|
|
@@ -80045,11 +80612,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80045
80612
|
type?: "script" | "service" | undefined;
|
|
80046
80613
|
exitCode?: number | null | undefined;
|
|
80047
80614
|
terminalId?: string | null | undefined;
|
|
80615
|
+
localProxyUrl?: string | null | undefined;
|
|
80616
|
+
publicProxyUrl?: string | null | undefined;
|
|
80048
80617
|
proxyUrl?: string | null | undefined;
|
|
80049
80618
|
}[] | undefined;
|
|
80050
80619
|
projectCustomName?: string | null | undefined;
|
|
80051
80620
|
workspaceDirectory?: string | undefined;
|
|
80052
80621
|
archivingAt?: string | null | undefined;
|
|
80622
|
+
statusEnteredAt?: string | null | undefined;
|
|
80053
80623
|
diffStat?: {
|
|
80054
80624
|
additions: number;
|
|
80055
80625
|
deletions: number;
|
|
@@ -80155,6 +80725,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80155
80725
|
proxyUrl: string | null;
|
|
80156
80726
|
lifecycle: "running" | "stopped";
|
|
80157
80727
|
health: "healthy" | "unhealthy" | null;
|
|
80728
|
+
localProxyUrl?: string | null | undefined;
|
|
80729
|
+
publicProxyUrl?: string | null | undefined;
|
|
80158
80730
|
}[];
|
|
80159
80731
|
projectId: string;
|
|
80160
80732
|
projectDisplayName: string;
|
|
@@ -80162,6 +80734,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80162
80734
|
projectKind: "git" | "directory" | "non_git";
|
|
80163
80735
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
80164
80736
|
archivingAt: string | null;
|
|
80737
|
+
statusEnteredAt: string | null;
|
|
80165
80738
|
activityAt: string | null;
|
|
80166
80739
|
projectCustomName?: string | null | undefined;
|
|
80167
80740
|
diffStat?: {
|
|
@@ -80267,11 +80840,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80267
80840
|
type?: "script" | "service" | undefined;
|
|
80268
80841
|
exitCode?: number | null | undefined;
|
|
80269
80842
|
terminalId?: string | null | undefined;
|
|
80843
|
+
localProxyUrl?: string | null | undefined;
|
|
80844
|
+
publicProxyUrl?: string | null | undefined;
|
|
80270
80845
|
proxyUrl?: string | null | undefined;
|
|
80271
80846
|
}[] | undefined;
|
|
80272
80847
|
projectCustomName?: string | null | undefined;
|
|
80273
80848
|
workspaceDirectory?: string | undefined;
|
|
80274
80849
|
archivingAt?: string | null | undefined;
|
|
80850
|
+
statusEnteredAt?: string | null | undefined;
|
|
80275
80851
|
diffStat?: {
|
|
80276
80852
|
additions: number;
|
|
80277
80853
|
deletions: number;
|
|
@@ -80374,6 +80950,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80374
80950
|
proxyUrl: string | null;
|
|
80375
80951
|
lifecycle: "running" | "stopped";
|
|
80376
80952
|
health: "healthy" | "unhealthy" | null;
|
|
80953
|
+
localProxyUrl?: string | null | undefined;
|
|
80954
|
+
publicProxyUrl?: string | null | undefined;
|
|
80377
80955
|
}[];
|
|
80378
80956
|
projectId: string;
|
|
80379
80957
|
projectDisplayName: string;
|
|
@@ -80381,6 +80959,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80381
80959
|
projectKind: "git" | "directory" | "non_git";
|
|
80382
80960
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
80383
80961
|
archivingAt: string | null;
|
|
80962
|
+
statusEnteredAt: string | null;
|
|
80384
80963
|
activityAt: string | null;
|
|
80385
80964
|
projectCustomName?: string | null | undefined;
|
|
80386
80965
|
diffStat?: {
|
|
@@ -80489,11 +81068,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80489
81068
|
type?: "script" | "service" | undefined;
|
|
80490
81069
|
exitCode?: number | null | undefined;
|
|
80491
81070
|
terminalId?: string | null | undefined;
|
|
81071
|
+
localProxyUrl?: string | null | undefined;
|
|
81072
|
+
publicProxyUrl?: string | null | undefined;
|
|
80492
81073
|
proxyUrl?: string | null | undefined;
|
|
80493
81074
|
}[] | undefined;
|
|
80494
81075
|
projectCustomName?: string | null | undefined;
|
|
80495
81076
|
workspaceDirectory?: string | undefined;
|
|
80496
81077
|
archivingAt?: string | null | undefined;
|
|
81078
|
+
statusEnteredAt?: string | null | undefined;
|
|
80497
81079
|
diffStat?: {
|
|
80498
81080
|
additions: number;
|
|
80499
81081
|
deletions: number;
|
|
@@ -80594,6 +81176,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80594
81176
|
name: z.ZodString;
|
|
80595
81177
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
80596
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>;
|
|
80597
81180
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
80598
81181
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
80599
81182
|
additions: z.ZodNumber;
|
|
@@ -80610,6 +81193,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80610
81193
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
80611
81194
|
hostname: z.ZodString;
|
|
80612
81195
|
port: z.ZodNullable<z.ZodNumber>;
|
|
81196
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
81197
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
80613
81198
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
80614
81199
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
80615
81200
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -80625,6 +81210,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80625
81210
|
proxyUrl: string | null;
|
|
80626
81211
|
lifecycle: "running" | "stopped";
|
|
80627
81212
|
health: "healthy" | "unhealthy" | null;
|
|
81213
|
+
localProxyUrl?: string | null | undefined;
|
|
81214
|
+
publicProxyUrl?: string | null | undefined;
|
|
80628
81215
|
}, {
|
|
80629
81216
|
port: number | null;
|
|
80630
81217
|
scriptName: string;
|
|
@@ -80634,6 +81221,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
80634
81221
|
type?: "script" | "service" | undefined;
|
|
80635
81222
|
exitCode?: number | null | undefined;
|
|
80636
81223
|
terminalId?: string | null | undefined;
|
|
81224
|
+
localProxyUrl?: string | null | undefined;
|
|
81225
|
+
publicProxyUrl?: string | null | undefined;
|
|
80637
81226
|
proxyUrl?: string | null | undefined;
|
|
80638
81227
|
}>, "many">>;
|
|
80639
81228
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -81019,6 +81608,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81019
81608
|
proxyUrl: string | null;
|
|
81020
81609
|
lifecycle: "running" | "stopped";
|
|
81021
81610
|
health: "healthy" | "unhealthy" | null;
|
|
81611
|
+
localProxyUrl?: string | null | undefined;
|
|
81612
|
+
publicProxyUrl?: string | null | undefined;
|
|
81022
81613
|
}[];
|
|
81023
81614
|
projectId: string;
|
|
81024
81615
|
projectDisplayName: string;
|
|
@@ -81026,6 +81617,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81026
81617
|
projectKind: "git" | "directory" | "non_git";
|
|
81027
81618
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
81028
81619
|
archivingAt: string | null;
|
|
81620
|
+
statusEnteredAt: string | null;
|
|
81029
81621
|
activityAt: string | null;
|
|
81030
81622
|
projectCustomName?: string | null | undefined;
|
|
81031
81623
|
workspaceDirectory?: string | undefined;
|
|
@@ -81123,11 +81715,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81123
81715
|
type?: "script" | "service" | undefined;
|
|
81124
81716
|
exitCode?: number | null | undefined;
|
|
81125
81717
|
terminalId?: string | null | undefined;
|
|
81718
|
+
localProxyUrl?: string | null | undefined;
|
|
81719
|
+
publicProxyUrl?: string | null | undefined;
|
|
81126
81720
|
proxyUrl?: string | null | undefined;
|
|
81127
81721
|
}[] | undefined;
|
|
81128
81722
|
projectCustomName?: string | null | undefined;
|
|
81129
81723
|
workspaceDirectory?: string | undefined;
|
|
81130
81724
|
archivingAt?: string | null | undefined;
|
|
81725
|
+
statusEnteredAt?: string | null | undefined;
|
|
81131
81726
|
diffStat?: {
|
|
81132
81727
|
additions: number;
|
|
81133
81728
|
deletions: number;
|
|
@@ -81218,6 +81813,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81218
81813
|
proxyUrl: string | null;
|
|
81219
81814
|
lifecycle: "running" | "stopped";
|
|
81220
81815
|
health: "healthy" | "unhealthy" | null;
|
|
81816
|
+
localProxyUrl?: string | null | undefined;
|
|
81817
|
+
publicProxyUrl?: string | null | undefined;
|
|
81221
81818
|
}[];
|
|
81222
81819
|
projectId: string;
|
|
81223
81820
|
projectDisplayName: string;
|
|
@@ -81225,6 +81822,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81225
81822
|
projectKind: "git" | "directory" | "non_git";
|
|
81226
81823
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
81227
81824
|
archivingAt: string | null;
|
|
81825
|
+
statusEnteredAt: string | null;
|
|
81228
81826
|
activityAt: string | null;
|
|
81229
81827
|
projectCustomName?: string | null | undefined;
|
|
81230
81828
|
diffStat?: {
|
|
@@ -81321,11 +81919,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81321
81919
|
type?: "script" | "service" | undefined;
|
|
81322
81920
|
exitCode?: number | null | undefined;
|
|
81323
81921
|
terminalId?: string | null | undefined;
|
|
81922
|
+
localProxyUrl?: string | null | undefined;
|
|
81923
|
+
publicProxyUrl?: string | null | undefined;
|
|
81324
81924
|
proxyUrl?: string | null | undefined;
|
|
81325
81925
|
}[] | undefined;
|
|
81326
81926
|
projectCustomName?: string | null | undefined;
|
|
81327
81927
|
workspaceDirectory?: string | undefined;
|
|
81328
81928
|
archivingAt?: string | null | undefined;
|
|
81929
|
+
statusEnteredAt?: string | null | undefined;
|
|
81329
81930
|
diffStat?: {
|
|
81330
81931
|
additions: number;
|
|
81331
81932
|
deletions: number;
|
|
@@ -81421,6 +82022,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81421
82022
|
proxyUrl: string | null;
|
|
81422
82023
|
lifecycle: "running" | "stopped";
|
|
81423
82024
|
health: "healthy" | "unhealthy" | null;
|
|
82025
|
+
localProxyUrl?: string | null | undefined;
|
|
82026
|
+
publicProxyUrl?: string | null | undefined;
|
|
81424
82027
|
}[];
|
|
81425
82028
|
projectId: string;
|
|
81426
82029
|
projectDisplayName: string;
|
|
@@ -81428,6 +82031,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81428
82031
|
projectKind: "git" | "directory" | "non_git";
|
|
81429
82032
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
81430
82033
|
archivingAt: string | null;
|
|
82034
|
+
statusEnteredAt: string | null;
|
|
81431
82035
|
activityAt: string | null;
|
|
81432
82036
|
projectCustomName?: string | null | undefined;
|
|
81433
82037
|
diffStat?: {
|
|
@@ -81528,11 +82132,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81528
82132
|
type?: "script" | "service" | undefined;
|
|
81529
82133
|
exitCode?: number | null | undefined;
|
|
81530
82134
|
terminalId?: string | null | undefined;
|
|
82135
|
+
localProxyUrl?: string | null | undefined;
|
|
82136
|
+
publicProxyUrl?: string | null | undefined;
|
|
81531
82137
|
proxyUrl?: string | null | undefined;
|
|
81532
82138
|
}[] | undefined;
|
|
81533
82139
|
projectCustomName?: string | null | undefined;
|
|
81534
82140
|
workspaceDirectory?: string | undefined;
|
|
81535
82141
|
archivingAt?: string | null | undefined;
|
|
82142
|
+
statusEnteredAt?: string | null | undefined;
|
|
81536
82143
|
diffStat?: {
|
|
81537
82144
|
additions: number;
|
|
81538
82145
|
deletions: number;
|
|
@@ -81630,6 +82237,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81630
82237
|
proxyUrl: string | null;
|
|
81631
82238
|
lifecycle: "running" | "stopped";
|
|
81632
82239
|
health: "healthy" | "unhealthy" | null;
|
|
82240
|
+
localProxyUrl?: string | null | undefined;
|
|
82241
|
+
publicProxyUrl?: string | null | undefined;
|
|
81633
82242
|
}[];
|
|
81634
82243
|
projectId: string;
|
|
81635
82244
|
projectDisplayName: string;
|
|
@@ -81637,6 +82246,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81637
82246
|
projectKind: "git" | "directory" | "non_git";
|
|
81638
82247
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
81639
82248
|
archivingAt: string | null;
|
|
82249
|
+
statusEnteredAt: string | null;
|
|
81640
82250
|
activityAt: string | null;
|
|
81641
82251
|
projectCustomName?: string | null | undefined;
|
|
81642
82252
|
diffStat?: {
|
|
@@ -81740,11 +82350,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
81740
82350
|
type?: "script" | "service" | undefined;
|
|
81741
82351
|
exitCode?: number | null | undefined;
|
|
81742
82352
|
terminalId?: string | null | undefined;
|
|
82353
|
+
localProxyUrl?: string | null | undefined;
|
|
82354
|
+
publicProxyUrl?: string | null | undefined;
|
|
81743
82355
|
proxyUrl?: string | null | undefined;
|
|
81744
82356
|
}[] | undefined;
|
|
81745
82357
|
projectCustomName?: string | null | undefined;
|
|
81746
82358
|
workspaceDirectory?: string | undefined;
|
|
81747
82359
|
archivingAt?: string | null | undefined;
|
|
82360
|
+
statusEnteredAt?: string | null | undefined;
|
|
81748
82361
|
diffStat?: {
|
|
81749
82362
|
additions: number;
|
|
81750
82363
|
deletions: number;
|
|
@@ -84232,6 +84845,85 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
84232
84845
|
providerUnavailable?: boolean | undefined;
|
|
84233
84846
|
}[];
|
|
84234
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
|
+
};
|
|
84235
84927
|
}>, z.ZodObject<{
|
|
84236
84928
|
type: z.ZodLiteral<"send_agent_message_response">;
|
|
84237
84929
|
payload: z.ZodObject<{
|
|
@@ -92789,6 +93481,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
92789
93481
|
name: z.ZodString;
|
|
92790
93482
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
92791
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>;
|
|
92792
93485
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
92793
93486
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
92794
93487
|
additions: z.ZodNumber;
|
|
@@ -92805,6 +93498,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
92805
93498
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
92806
93499
|
hostname: z.ZodString;
|
|
92807
93500
|
port: z.ZodNullable<z.ZodNumber>;
|
|
93501
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
93502
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
92808
93503
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
92809
93504
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
92810
93505
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -92820,6 +93515,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
92820
93515
|
proxyUrl: string | null;
|
|
92821
93516
|
lifecycle: "running" | "stopped";
|
|
92822
93517
|
health: "healthy" | "unhealthy" | null;
|
|
93518
|
+
localProxyUrl?: string | null | undefined;
|
|
93519
|
+
publicProxyUrl?: string | null | undefined;
|
|
92823
93520
|
}, {
|
|
92824
93521
|
port: number | null;
|
|
92825
93522
|
scriptName: string;
|
|
@@ -92829,6 +93526,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
92829
93526
|
type?: "script" | "service" | undefined;
|
|
92830
93527
|
exitCode?: number | null | undefined;
|
|
92831
93528
|
terminalId?: string | null | undefined;
|
|
93529
|
+
localProxyUrl?: string | null | undefined;
|
|
93530
|
+
publicProxyUrl?: string | null | undefined;
|
|
92832
93531
|
proxyUrl?: string | null | undefined;
|
|
92833
93532
|
}>, "many">>;
|
|
92834
93533
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -93214,6 +93913,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93214
93913
|
proxyUrl: string | null;
|
|
93215
93914
|
lifecycle: "running" | "stopped";
|
|
93216
93915
|
health: "healthy" | "unhealthy" | null;
|
|
93916
|
+
localProxyUrl?: string | null | undefined;
|
|
93917
|
+
publicProxyUrl?: string | null | undefined;
|
|
93217
93918
|
}[];
|
|
93218
93919
|
projectId: string;
|
|
93219
93920
|
projectDisplayName: string;
|
|
@@ -93221,6 +93922,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93221
93922
|
projectKind: "git" | "directory" | "non_git";
|
|
93222
93923
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
93223
93924
|
archivingAt: string | null;
|
|
93925
|
+
statusEnteredAt: string | null;
|
|
93224
93926
|
activityAt: string | null;
|
|
93225
93927
|
projectCustomName?: string | null | undefined;
|
|
93226
93928
|
workspaceDirectory?: string | undefined;
|
|
@@ -93318,11 +94020,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93318
94020
|
type?: "script" | "service" | undefined;
|
|
93319
94021
|
exitCode?: number | null | undefined;
|
|
93320
94022
|
terminalId?: string | null | undefined;
|
|
94023
|
+
localProxyUrl?: string | null | undefined;
|
|
94024
|
+
publicProxyUrl?: string | null | undefined;
|
|
93321
94025
|
proxyUrl?: string | null | undefined;
|
|
93322
94026
|
}[] | undefined;
|
|
93323
94027
|
projectCustomName?: string | null | undefined;
|
|
93324
94028
|
workspaceDirectory?: string | undefined;
|
|
93325
94029
|
archivingAt?: string | null | undefined;
|
|
94030
|
+
statusEnteredAt?: string | null | undefined;
|
|
93326
94031
|
diffStat?: {
|
|
93327
94032
|
additions: number;
|
|
93328
94033
|
deletions: number;
|
|
@@ -93413,6 +94118,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93413
94118
|
proxyUrl: string | null;
|
|
93414
94119
|
lifecycle: "running" | "stopped";
|
|
93415
94120
|
health: "healthy" | "unhealthy" | null;
|
|
94121
|
+
localProxyUrl?: string | null | undefined;
|
|
94122
|
+
publicProxyUrl?: string | null | undefined;
|
|
93416
94123
|
}[];
|
|
93417
94124
|
projectId: string;
|
|
93418
94125
|
projectDisplayName: string;
|
|
@@ -93420,6 +94127,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93420
94127
|
projectKind: "git" | "directory" | "non_git";
|
|
93421
94128
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
93422
94129
|
archivingAt: string | null;
|
|
94130
|
+
statusEnteredAt: string | null;
|
|
93423
94131
|
activityAt: string | null;
|
|
93424
94132
|
projectCustomName?: string | null | undefined;
|
|
93425
94133
|
diffStat?: {
|
|
@@ -93516,11 +94224,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93516
94224
|
type?: "script" | "service" | undefined;
|
|
93517
94225
|
exitCode?: number | null | undefined;
|
|
93518
94226
|
terminalId?: string | null | undefined;
|
|
94227
|
+
localProxyUrl?: string | null | undefined;
|
|
94228
|
+
publicProxyUrl?: string | null | undefined;
|
|
93519
94229
|
proxyUrl?: string | null | undefined;
|
|
93520
94230
|
}[] | undefined;
|
|
93521
94231
|
projectCustomName?: string | null | undefined;
|
|
93522
94232
|
workspaceDirectory?: string | undefined;
|
|
93523
94233
|
archivingAt?: string | null | undefined;
|
|
94234
|
+
statusEnteredAt?: string | null | undefined;
|
|
93524
94235
|
diffStat?: {
|
|
93525
94236
|
additions: number;
|
|
93526
94237
|
deletions: number;
|
|
@@ -93619,6 +94330,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93619
94330
|
proxyUrl: string | null;
|
|
93620
94331
|
lifecycle: "running" | "stopped";
|
|
93621
94332
|
health: "healthy" | "unhealthy" | null;
|
|
94333
|
+
localProxyUrl?: string | null | undefined;
|
|
94334
|
+
publicProxyUrl?: string | null | undefined;
|
|
93622
94335
|
}[];
|
|
93623
94336
|
projectId: string;
|
|
93624
94337
|
projectDisplayName: string;
|
|
@@ -93626,6 +94339,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93626
94339
|
projectKind: "git" | "directory" | "non_git";
|
|
93627
94340
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
93628
94341
|
archivingAt: string | null;
|
|
94342
|
+
statusEnteredAt: string | null;
|
|
93629
94343
|
activityAt: string | null;
|
|
93630
94344
|
projectCustomName?: string | null | undefined;
|
|
93631
94345
|
diffStat?: {
|
|
@@ -93728,11 +94442,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93728
94442
|
type?: "script" | "service" | undefined;
|
|
93729
94443
|
exitCode?: number | null | undefined;
|
|
93730
94444
|
terminalId?: string | null | undefined;
|
|
94445
|
+
localProxyUrl?: string | null | undefined;
|
|
94446
|
+
publicProxyUrl?: string | null | undefined;
|
|
93731
94447
|
proxyUrl?: string | null | undefined;
|
|
93732
94448
|
}[] | undefined;
|
|
93733
94449
|
projectCustomName?: string | null | undefined;
|
|
93734
94450
|
workspaceDirectory?: string | undefined;
|
|
93735
94451
|
archivingAt?: string | null | undefined;
|
|
94452
|
+
statusEnteredAt?: string | null | undefined;
|
|
93736
94453
|
diffStat?: {
|
|
93737
94454
|
additions: number;
|
|
93738
94455
|
deletions: number;
|
|
@@ -93832,6 +94549,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93832
94549
|
proxyUrl: string | null;
|
|
93833
94550
|
lifecycle: "running" | "stopped";
|
|
93834
94551
|
health: "healthy" | "unhealthy" | null;
|
|
94552
|
+
localProxyUrl?: string | null | undefined;
|
|
94553
|
+
publicProxyUrl?: string | null | undefined;
|
|
93835
94554
|
}[];
|
|
93836
94555
|
projectId: string;
|
|
93837
94556
|
projectDisplayName: string;
|
|
@@ -93839,6 +94558,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93839
94558
|
projectKind: "git" | "directory" | "non_git";
|
|
93840
94559
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
93841
94560
|
archivingAt: string | null;
|
|
94561
|
+
statusEnteredAt: string | null;
|
|
93842
94562
|
activityAt: string | null;
|
|
93843
94563
|
projectCustomName?: string | null | undefined;
|
|
93844
94564
|
diffStat?: {
|
|
@@ -93944,11 +94664,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
93944
94664
|
type?: "script" | "service" | undefined;
|
|
93945
94665
|
exitCode?: number | null | undefined;
|
|
93946
94666
|
terminalId?: string | null | undefined;
|
|
94667
|
+
localProxyUrl?: string | null | undefined;
|
|
94668
|
+
publicProxyUrl?: string | null | undefined;
|
|
93947
94669
|
proxyUrl?: string | null | undefined;
|
|
93948
94670
|
}[] | undefined;
|
|
93949
94671
|
projectCustomName?: string | null | undefined;
|
|
93950
94672
|
workspaceDirectory?: string | undefined;
|
|
93951
94673
|
archivingAt?: string | null | undefined;
|
|
94674
|
+
statusEnteredAt?: string | null | undefined;
|
|
93952
94675
|
diffStat?: {
|
|
93953
94676
|
additions: number;
|
|
93954
94677
|
deletions: number;
|
|
@@ -103396,6 +104119,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
103396
104119
|
proxyUrl: string | null;
|
|
103397
104120
|
lifecycle: "running" | "stopped";
|
|
103398
104121
|
health: "healthy" | "unhealthy" | null;
|
|
104122
|
+
localProxyUrl?: string | null | undefined;
|
|
104123
|
+
publicProxyUrl?: string | null | undefined;
|
|
103399
104124
|
}[];
|
|
103400
104125
|
projectId: string;
|
|
103401
104126
|
projectDisplayName: string;
|
|
@@ -103403,6 +104128,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
103403
104128
|
projectKind: "git" | "directory" | "non_git";
|
|
103404
104129
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
103405
104130
|
archivingAt: string | null;
|
|
104131
|
+
statusEnteredAt: string | null;
|
|
103406
104132
|
activityAt: string | null;
|
|
103407
104133
|
projectCustomName?: string | null | undefined;
|
|
103408
104134
|
diffStat?: {
|
|
@@ -103508,6 +104234,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
103508
104234
|
proxyUrl: string | null;
|
|
103509
104235
|
lifecycle: "running" | "stopped";
|
|
103510
104236
|
health: "healthy" | "unhealthy" | null;
|
|
104237
|
+
localProxyUrl?: string | null | undefined;
|
|
104238
|
+
publicProxyUrl?: string | null | undefined;
|
|
103511
104239
|
}[];
|
|
103512
104240
|
projectId: string;
|
|
103513
104241
|
projectDisplayName: string;
|
|
@@ -103515,6 +104243,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
103515
104243
|
projectKind: "git" | "directory" | "non_git";
|
|
103516
104244
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
103517
104245
|
archivingAt: string | null;
|
|
104246
|
+
statusEnteredAt: string | null;
|
|
103518
104247
|
activityAt: string | null;
|
|
103519
104248
|
projectCustomName?: string | null | undefined;
|
|
103520
104249
|
diffStat?: {
|
|
@@ -103610,6 +104339,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
103610
104339
|
proxyUrl: string | null;
|
|
103611
104340
|
lifecycle: "running" | "stopped";
|
|
103612
104341
|
health: "healthy" | "unhealthy" | null;
|
|
104342
|
+
localProxyUrl?: string | null | undefined;
|
|
104343
|
+
publicProxyUrl?: string | null | undefined;
|
|
103613
104344
|
}[];
|
|
103614
104345
|
workspaceId: string;
|
|
103615
104346
|
};
|
|
@@ -103682,6 +104413,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
103682
104413
|
proxyUrl: string | null;
|
|
103683
104414
|
lifecycle: "running" | "stopped";
|
|
103684
104415
|
health: "healthy" | "unhealthy" | null;
|
|
104416
|
+
localProxyUrl?: string | null | undefined;
|
|
104417
|
+
publicProxyUrl?: string | null | undefined;
|
|
103685
104418
|
}[];
|
|
103686
104419
|
projectId: string;
|
|
103687
104420
|
projectDisplayName: string;
|
|
@@ -103689,6 +104422,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
103689
104422
|
projectKind: "git" | "directory" | "non_git";
|
|
103690
104423
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
103691
104424
|
archivingAt: string | null;
|
|
104425
|
+
statusEnteredAt: string | null;
|
|
103692
104426
|
activityAt: string | null;
|
|
103693
104427
|
projectCustomName?: string | null | undefined;
|
|
103694
104428
|
diffStat?: {
|
|
@@ -104092,6 +104826,21 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
104092
104826
|
providerUnavailable?: boolean | undefined;
|
|
104093
104827
|
}[];
|
|
104094
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
|
+
};
|
|
104095
104844
|
} | {
|
|
104096
104845
|
type: "send_agent_message_response";
|
|
104097
104846
|
payload: {
|
|
@@ -105140,6 +105889,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
105140
105889
|
proxyUrl: string | null;
|
|
105141
105890
|
lifecycle: "running" | "stopped";
|
|
105142
105891
|
health: "healthy" | "unhealthy" | null;
|
|
105892
|
+
localProxyUrl?: string | null | undefined;
|
|
105893
|
+
publicProxyUrl?: string | null | undefined;
|
|
105143
105894
|
}[];
|
|
105144
105895
|
projectId: string;
|
|
105145
105896
|
projectDisplayName: string;
|
|
@@ -105147,6 +105898,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
105147
105898
|
projectKind: "git" | "directory" | "non_git";
|
|
105148
105899
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
105149
105900
|
archivingAt: string | null;
|
|
105901
|
+
statusEnteredAt: string | null;
|
|
105150
105902
|
activityAt: string | null;
|
|
105151
105903
|
projectCustomName?: string | null | undefined;
|
|
105152
105904
|
diffStat?: {
|
|
@@ -106909,11 +107661,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
106909
107661
|
type?: "script" | "service" | undefined;
|
|
106910
107662
|
exitCode?: number | null | undefined;
|
|
106911
107663
|
terminalId?: string | null | undefined;
|
|
107664
|
+
localProxyUrl?: string | null | undefined;
|
|
107665
|
+
publicProxyUrl?: string | null | undefined;
|
|
106912
107666
|
proxyUrl?: string | null | undefined;
|
|
106913
107667
|
}[] | undefined;
|
|
106914
107668
|
projectCustomName?: string | null | undefined;
|
|
106915
107669
|
workspaceDirectory?: string | undefined;
|
|
106916
107670
|
archivingAt?: string | null | undefined;
|
|
107671
|
+
statusEnteredAt?: string | null | undefined;
|
|
106917
107672
|
diffStat?: {
|
|
106918
107673
|
additions: number;
|
|
106919
107674
|
deletions: number;
|
|
@@ -107021,11 +107776,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
107021
107776
|
type?: "script" | "service" | undefined;
|
|
107022
107777
|
exitCode?: number | null | undefined;
|
|
107023
107778
|
terminalId?: string | null | undefined;
|
|
107779
|
+
localProxyUrl?: string | null | undefined;
|
|
107780
|
+
publicProxyUrl?: string | null | undefined;
|
|
107024
107781
|
proxyUrl?: string | null | undefined;
|
|
107025
107782
|
}[] | undefined;
|
|
107026
107783
|
projectCustomName?: string | null | undefined;
|
|
107027
107784
|
workspaceDirectory?: string | undefined;
|
|
107028
107785
|
archivingAt?: string | null | undefined;
|
|
107786
|
+
statusEnteredAt?: string | null | undefined;
|
|
107029
107787
|
diffStat?: {
|
|
107030
107788
|
additions: number;
|
|
107031
107789
|
deletions: number;
|
|
@@ -107118,6 +107876,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
107118
107876
|
type?: "script" | "service" | undefined;
|
|
107119
107877
|
exitCode?: number | null | undefined;
|
|
107120
107878
|
terminalId?: string | null | undefined;
|
|
107879
|
+
localProxyUrl?: string | null | undefined;
|
|
107880
|
+
publicProxyUrl?: string | null | undefined;
|
|
107121
107881
|
proxyUrl?: string | null | undefined;
|
|
107122
107882
|
}[];
|
|
107123
107883
|
workspaceId: string;
|
|
@@ -107195,11 +107955,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
107195
107955
|
type?: "script" | "service" | undefined;
|
|
107196
107956
|
exitCode?: number | null | undefined;
|
|
107197
107957
|
terminalId?: string | null | undefined;
|
|
107958
|
+
localProxyUrl?: string | null | undefined;
|
|
107959
|
+
publicProxyUrl?: string | null | undefined;
|
|
107198
107960
|
proxyUrl?: string | null | undefined;
|
|
107199
107961
|
}[] | undefined;
|
|
107200
107962
|
projectCustomName?: string | null | undefined;
|
|
107201
107963
|
workspaceDirectory?: string | undefined;
|
|
107202
107964
|
archivingAt?: string | null | undefined;
|
|
107965
|
+
statusEnteredAt?: string | null | undefined;
|
|
107203
107966
|
diffStat?: {
|
|
107204
107967
|
additions: number;
|
|
107205
107968
|
deletions: number;
|
|
@@ -107601,6 +108364,21 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
107601
108364
|
providerUnavailable?: boolean | undefined;
|
|
107602
108365
|
}[];
|
|
107603
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
|
+
};
|
|
107604
108382
|
} | {
|
|
107605
108383
|
type: "send_agent_message_response";
|
|
107606
108384
|
payload: {
|
|
@@ -108612,11 +109390,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
108612
109390
|
type?: "script" | "service" | undefined;
|
|
108613
109391
|
exitCode?: number | null | undefined;
|
|
108614
109392
|
terminalId?: string | null | undefined;
|
|
109393
|
+
localProxyUrl?: string | null | undefined;
|
|
109394
|
+
publicProxyUrl?: string | null | undefined;
|
|
108615
109395
|
proxyUrl?: string | null | undefined;
|
|
108616
109396
|
}[] | undefined;
|
|
108617
109397
|
projectCustomName?: string | null | undefined;
|
|
108618
109398
|
workspaceDirectory?: string | undefined;
|
|
108619
109399
|
archivingAt?: string | null | undefined;
|
|
109400
|
+
statusEnteredAt?: string | null | undefined;
|
|
108620
109401
|
diffStat?: {
|
|
108621
109402
|
additions: number;
|
|
108622
109403
|
deletions: number;
|
|
@@ -112245,17 +113026,23 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
112245
113026
|
type: z.ZodLiteral<"open_in_editor_request">;
|
|
112246
113027
|
path: z.ZodString;
|
|
112247
113028
|
editorId: z.ZodString;
|
|
113029
|
+
mode: z.ZodOptional<z.ZodEnum<["open", "reveal"]>>;
|
|
113030
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
112248
113031
|
requestId: z.ZodString;
|
|
112249
113032
|
}, "strip", z.ZodTypeAny, {
|
|
112250
113033
|
type: "open_in_editor_request";
|
|
112251
113034
|
path: string;
|
|
112252
113035
|
requestId: string;
|
|
112253
113036
|
editorId: string;
|
|
113037
|
+
mode?: "open" | "reveal" | undefined;
|
|
113038
|
+
cwd?: string | undefined;
|
|
112254
113039
|
}, {
|
|
112255
113040
|
type: "open_in_editor_request";
|
|
112256
113041
|
path: string;
|
|
112257
113042
|
requestId: string;
|
|
112258
113043
|
editorId: string;
|
|
113044
|
+
mode?: "open" | "reveal" | undefined;
|
|
113045
|
+
cwd?: string | undefined;
|
|
112259
113046
|
}>, z.ZodObject<{
|
|
112260
113047
|
type: z.ZodLiteral<"open_project_request">;
|
|
112261
113048
|
cwd: z.ZodString;
|
|
@@ -112280,6 +113067,18 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
112280
113067
|
type: "archive_workspace_request";
|
|
112281
113068
|
requestId: string;
|
|
112282
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[];
|
|
112283
113082
|
}>, z.ZodObject<{
|
|
112284
113083
|
type: z.ZodLiteral<"file_explorer_request">;
|
|
112285
113084
|
cwd: z.ZodString;
|
|
@@ -114300,6 +115099,8 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
114300
115099
|
path: string;
|
|
114301
115100
|
requestId: string;
|
|
114302
115101
|
editorId: string;
|
|
115102
|
+
mode?: "open" | "reveal" | undefined;
|
|
115103
|
+
cwd?: string | undefined;
|
|
114303
115104
|
} | {
|
|
114304
115105
|
type: "open_project_request";
|
|
114305
115106
|
cwd: string;
|
|
@@ -114308,6 +115109,10 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
114308
115109
|
type: "archive_workspace_request";
|
|
114309
115110
|
requestId: string;
|
|
114310
115111
|
workspaceId: string;
|
|
115112
|
+
} | {
|
|
115113
|
+
type: "workspace.clear_attention.request";
|
|
115114
|
+
requestId: string;
|
|
115115
|
+
workspaceId: string | string[];
|
|
114311
115116
|
} | {
|
|
114312
115117
|
mode: "file" | "list";
|
|
114313
115118
|
type: "file_explorer_request";
|
|
@@ -115195,6 +116000,8 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
115195
116000
|
path: string;
|
|
115196
116001
|
requestId: string;
|
|
115197
116002
|
editorId: string;
|
|
116003
|
+
mode?: "open" | "reveal" | undefined;
|
|
116004
|
+
cwd?: string | undefined;
|
|
115198
116005
|
} | {
|
|
115199
116006
|
type: "open_project_request";
|
|
115200
116007
|
cwd: string;
|
|
@@ -115203,6 +116010,10 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
115203
116010
|
type: "archive_workspace_request";
|
|
115204
116011
|
requestId: string;
|
|
115205
116012
|
workspaceId: string;
|
|
116013
|
+
} | {
|
|
116014
|
+
type: "workspace.clear_attention.request";
|
|
116015
|
+
requestId: string;
|
|
116016
|
+
workspaceId: string | string[];
|
|
115206
116017
|
} | {
|
|
115207
116018
|
mode: "file" | "list";
|
|
115208
116019
|
type: "file_explorer_request";
|
|
@@ -116561,6 +117372,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
116561
117372
|
name: z.ZodString;
|
|
116562
117373
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
116563
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>;
|
|
116564
117376
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
116565
117377
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
116566
117378
|
additions: z.ZodNumber;
|
|
@@ -116577,6 +117389,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
116577
117389
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
116578
117390
|
hostname: z.ZodString;
|
|
116579
117391
|
port: z.ZodNullable<z.ZodNumber>;
|
|
117392
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
117393
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
116580
117394
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
116581
117395
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
116582
117396
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -116592,6 +117406,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
116592
117406
|
proxyUrl: string | null;
|
|
116593
117407
|
lifecycle: "running" | "stopped";
|
|
116594
117408
|
health: "healthy" | "unhealthy" | null;
|
|
117409
|
+
localProxyUrl?: string | null | undefined;
|
|
117410
|
+
publicProxyUrl?: string | null | undefined;
|
|
116595
117411
|
}, {
|
|
116596
117412
|
port: number | null;
|
|
116597
117413
|
scriptName: string;
|
|
@@ -116601,6 +117417,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
116601
117417
|
type?: "script" | "service" | undefined;
|
|
116602
117418
|
exitCode?: number | null | undefined;
|
|
116603
117419
|
terminalId?: string | null | undefined;
|
|
117420
|
+
localProxyUrl?: string | null | undefined;
|
|
117421
|
+
publicProxyUrl?: string | null | undefined;
|
|
116604
117422
|
proxyUrl?: string | null | undefined;
|
|
116605
117423
|
}>, "many">>;
|
|
116606
117424
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -116986,6 +117804,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
116986
117804
|
proxyUrl: string | null;
|
|
116987
117805
|
lifecycle: "running" | "stopped";
|
|
116988
117806
|
health: "healthy" | "unhealthy" | null;
|
|
117807
|
+
localProxyUrl?: string | null | undefined;
|
|
117808
|
+
publicProxyUrl?: string | null | undefined;
|
|
116989
117809
|
}[];
|
|
116990
117810
|
projectId: string;
|
|
116991
117811
|
projectDisplayName: string;
|
|
@@ -116993,6 +117813,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
116993
117813
|
projectKind: "git" | "directory" | "non_git";
|
|
116994
117814
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
116995
117815
|
archivingAt: string | null;
|
|
117816
|
+
statusEnteredAt: string | null;
|
|
116996
117817
|
activityAt: string | null;
|
|
116997
117818
|
projectCustomName?: string | null | undefined;
|
|
116998
117819
|
workspaceDirectory?: string | undefined;
|
|
@@ -117090,11 +117911,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117090
117911
|
type?: "script" | "service" | undefined;
|
|
117091
117912
|
exitCode?: number | null | undefined;
|
|
117092
117913
|
terminalId?: string | null | undefined;
|
|
117914
|
+
localProxyUrl?: string | null | undefined;
|
|
117915
|
+
publicProxyUrl?: string | null | undefined;
|
|
117093
117916
|
proxyUrl?: string | null | undefined;
|
|
117094
117917
|
}[] | undefined;
|
|
117095
117918
|
projectCustomName?: string | null | undefined;
|
|
117096
117919
|
workspaceDirectory?: string | undefined;
|
|
117097
117920
|
archivingAt?: string | null | undefined;
|
|
117921
|
+
statusEnteredAt?: string | null | undefined;
|
|
117098
117922
|
diffStat?: {
|
|
117099
117923
|
additions: number;
|
|
117100
117924
|
deletions: number;
|
|
@@ -117185,6 +118009,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117185
118009
|
proxyUrl: string | null;
|
|
117186
118010
|
lifecycle: "running" | "stopped";
|
|
117187
118011
|
health: "healthy" | "unhealthy" | null;
|
|
118012
|
+
localProxyUrl?: string | null | undefined;
|
|
118013
|
+
publicProxyUrl?: string | null | undefined;
|
|
117188
118014
|
}[];
|
|
117189
118015
|
projectId: string;
|
|
117190
118016
|
projectDisplayName: string;
|
|
@@ -117192,6 +118018,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117192
118018
|
projectKind: "git" | "directory" | "non_git";
|
|
117193
118019
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
117194
118020
|
archivingAt: string | null;
|
|
118021
|
+
statusEnteredAt: string | null;
|
|
117195
118022
|
activityAt: string | null;
|
|
117196
118023
|
projectCustomName?: string | null | undefined;
|
|
117197
118024
|
diffStat?: {
|
|
@@ -117288,11 +118115,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117288
118115
|
type?: "script" | "service" | undefined;
|
|
117289
118116
|
exitCode?: number | null | undefined;
|
|
117290
118117
|
terminalId?: string | null | undefined;
|
|
118118
|
+
localProxyUrl?: string | null | undefined;
|
|
118119
|
+
publicProxyUrl?: string | null | undefined;
|
|
117291
118120
|
proxyUrl?: string | null | undefined;
|
|
117292
118121
|
}[] | undefined;
|
|
117293
118122
|
projectCustomName?: string | null | undefined;
|
|
117294
118123
|
workspaceDirectory?: string | undefined;
|
|
117295
118124
|
archivingAt?: string | null | undefined;
|
|
118125
|
+
statusEnteredAt?: string | null | undefined;
|
|
117296
118126
|
diffStat?: {
|
|
117297
118127
|
additions: number;
|
|
117298
118128
|
deletions: number;
|
|
@@ -117386,6 +118216,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117386
118216
|
proxyUrl: string | null;
|
|
117387
118217
|
lifecycle: "running" | "stopped";
|
|
117388
118218
|
health: "healthy" | "unhealthy" | null;
|
|
118219
|
+
localProxyUrl?: string | null | undefined;
|
|
118220
|
+
publicProxyUrl?: string | null | undefined;
|
|
117389
118221
|
}[];
|
|
117390
118222
|
projectId: string;
|
|
117391
118223
|
projectDisplayName: string;
|
|
@@ -117393,6 +118225,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117393
118225
|
projectKind: "git" | "directory" | "non_git";
|
|
117394
118226
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
117395
118227
|
archivingAt: string | null;
|
|
118228
|
+
statusEnteredAt: string | null;
|
|
117396
118229
|
activityAt: string | null;
|
|
117397
118230
|
projectCustomName?: string | null | undefined;
|
|
117398
118231
|
diffStat?: {
|
|
@@ -117492,11 +118325,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117492
118325
|
type?: "script" | "service" | undefined;
|
|
117493
118326
|
exitCode?: number | null | undefined;
|
|
117494
118327
|
terminalId?: string | null | undefined;
|
|
118328
|
+
localProxyUrl?: string | null | undefined;
|
|
118329
|
+
publicProxyUrl?: string | null | undefined;
|
|
117495
118330
|
proxyUrl?: string | null | undefined;
|
|
117496
118331
|
}[] | undefined;
|
|
117497
118332
|
projectCustomName?: string | null | undefined;
|
|
117498
118333
|
workspaceDirectory?: string | undefined;
|
|
117499
118334
|
archivingAt?: string | null | undefined;
|
|
118335
|
+
statusEnteredAt?: string | null | undefined;
|
|
117500
118336
|
diffStat?: {
|
|
117501
118337
|
additions: number;
|
|
117502
118338
|
deletions: number;
|
|
@@ -117602,6 +118438,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117602
118438
|
proxyUrl: string | null;
|
|
117603
118439
|
lifecycle: "running" | "stopped";
|
|
117604
118440
|
health: "healthy" | "unhealthy" | null;
|
|
118441
|
+
localProxyUrl?: string | null | undefined;
|
|
118442
|
+
publicProxyUrl?: string | null | undefined;
|
|
117605
118443
|
}[];
|
|
117606
118444
|
projectId: string;
|
|
117607
118445
|
projectDisplayName: string;
|
|
@@ -117609,6 +118447,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117609
118447
|
projectKind: "git" | "directory" | "non_git";
|
|
117610
118448
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
117611
118449
|
archivingAt: string | null;
|
|
118450
|
+
statusEnteredAt: string | null;
|
|
117612
118451
|
activityAt: string | null;
|
|
117613
118452
|
projectCustomName?: string | null | undefined;
|
|
117614
118453
|
diffStat?: {
|
|
@@ -117714,11 +118553,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117714
118553
|
type?: "script" | "service" | undefined;
|
|
117715
118554
|
exitCode?: number | null | undefined;
|
|
117716
118555
|
terminalId?: string | null | undefined;
|
|
118556
|
+
localProxyUrl?: string | null | undefined;
|
|
118557
|
+
publicProxyUrl?: string | null | undefined;
|
|
117717
118558
|
proxyUrl?: string | null | undefined;
|
|
117718
118559
|
}[] | undefined;
|
|
117719
118560
|
projectCustomName?: string | null | undefined;
|
|
117720
118561
|
workspaceDirectory?: string | undefined;
|
|
117721
118562
|
archivingAt?: string | null | undefined;
|
|
118563
|
+
statusEnteredAt?: string | null | undefined;
|
|
117722
118564
|
diffStat?: {
|
|
117723
118565
|
additions: number;
|
|
117724
118566
|
deletions: number;
|
|
@@ -117808,6 +118650,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117808
118650
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
117809
118651
|
hostname: z.ZodString;
|
|
117810
118652
|
port: z.ZodNullable<z.ZodNumber>;
|
|
118653
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
118654
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
117811
118655
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
117812
118656
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
117813
118657
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -117823,6 +118667,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117823
118667
|
proxyUrl: string | null;
|
|
117824
118668
|
lifecycle: "running" | "stopped";
|
|
117825
118669
|
health: "healthy" | "unhealthy" | null;
|
|
118670
|
+
localProxyUrl?: string | null | undefined;
|
|
118671
|
+
publicProxyUrl?: string | null | undefined;
|
|
117826
118672
|
}, {
|
|
117827
118673
|
port: number | null;
|
|
117828
118674
|
scriptName: string;
|
|
@@ -117832,6 +118678,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117832
118678
|
type?: "script" | "service" | undefined;
|
|
117833
118679
|
exitCode?: number | null | undefined;
|
|
117834
118680
|
terminalId?: string | null | undefined;
|
|
118681
|
+
localProxyUrl?: string | null | undefined;
|
|
118682
|
+
publicProxyUrl?: string | null | undefined;
|
|
117835
118683
|
proxyUrl?: string | null | undefined;
|
|
117836
118684
|
}>, "many">;
|
|
117837
118685
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -117845,6 +118693,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117845
118693
|
proxyUrl: string | null;
|
|
117846
118694
|
lifecycle: "running" | "stopped";
|
|
117847
118695
|
health: "healthy" | "unhealthy" | null;
|
|
118696
|
+
localProxyUrl?: string | null | undefined;
|
|
118697
|
+
publicProxyUrl?: string | null | undefined;
|
|
117848
118698
|
}[];
|
|
117849
118699
|
workspaceId: string;
|
|
117850
118700
|
}, {
|
|
@@ -117857,6 +118707,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117857
118707
|
type?: "script" | "service" | undefined;
|
|
117858
118708
|
exitCode?: number | null | undefined;
|
|
117859
118709
|
terminalId?: string | null | undefined;
|
|
118710
|
+
localProxyUrl?: string | null | undefined;
|
|
118711
|
+
publicProxyUrl?: string | null | undefined;
|
|
117860
118712
|
proxyUrl?: string | null | undefined;
|
|
117861
118713
|
}[];
|
|
117862
118714
|
workspaceId: string;
|
|
@@ -117874,6 +118726,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117874
118726
|
proxyUrl: string | null;
|
|
117875
118727
|
lifecycle: "running" | "stopped";
|
|
117876
118728
|
health: "healthy" | "unhealthy" | null;
|
|
118729
|
+
localProxyUrl?: string | null | undefined;
|
|
118730
|
+
publicProxyUrl?: string | null | undefined;
|
|
117877
118731
|
}[];
|
|
117878
118732
|
workspaceId: string;
|
|
117879
118733
|
};
|
|
@@ -117889,6 +118743,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
117889
118743
|
type?: "script" | "service" | undefined;
|
|
117890
118744
|
exitCode?: number | null | undefined;
|
|
117891
118745
|
terminalId?: string | null | undefined;
|
|
118746
|
+
localProxyUrl?: string | null | undefined;
|
|
118747
|
+
publicProxyUrl?: string | null | undefined;
|
|
117892
118748
|
proxyUrl?: string | null | undefined;
|
|
117893
118749
|
}[];
|
|
117894
118750
|
workspaceId: string;
|
|
@@ -121081,6 +121937,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121081
121937
|
name: z.ZodString;
|
|
121082
121938
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
121083
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>;
|
|
121084
121941
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
121085
121942
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
121086
121943
|
additions: z.ZodNumber;
|
|
@@ -121097,6 +121954,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121097
121954
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
121098
121955
|
hostname: z.ZodString;
|
|
121099
121956
|
port: z.ZodNullable<z.ZodNumber>;
|
|
121957
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
121958
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
121100
121959
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
121101
121960
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
121102
121961
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -121112,6 +121971,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121112
121971
|
proxyUrl: string | null;
|
|
121113
121972
|
lifecycle: "running" | "stopped";
|
|
121114
121973
|
health: "healthy" | "unhealthy" | null;
|
|
121974
|
+
localProxyUrl?: string | null | undefined;
|
|
121975
|
+
publicProxyUrl?: string | null | undefined;
|
|
121115
121976
|
}, {
|
|
121116
121977
|
port: number | null;
|
|
121117
121978
|
scriptName: string;
|
|
@@ -121121,6 +121982,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121121
121982
|
type?: "script" | "service" | undefined;
|
|
121122
121983
|
exitCode?: number | null | undefined;
|
|
121123
121984
|
terminalId?: string | null | undefined;
|
|
121985
|
+
localProxyUrl?: string | null | undefined;
|
|
121986
|
+
publicProxyUrl?: string | null | undefined;
|
|
121124
121987
|
proxyUrl?: string | null | undefined;
|
|
121125
121988
|
}>, "many">>;
|
|
121126
121989
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -121506,6 +122369,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121506
122369
|
proxyUrl: string | null;
|
|
121507
122370
|
lifecycle: "running" | "stopped";
|
|
121508
122371
|
health: "healthy" | "unhealthy" | null;
|
|
122372
|
+
localProxyUrl?: string | null | undefined;
|
|
122373
|
+
publicProxyUrl?: string | null | undefined;
|
|
121509
122374
|
}[];
|
|
121510
122375
|
projectId: string;
|
|
121511
122376
|
projectDisplayName: string;
|
|
@@ -121513,6 +122378,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121513
122378
|
projectKind: "git" | "directory" | "non_git";
|
|
121514
122379
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
121515
122380
|
archivingAt: string | null;
|
|
122381
|
+
statusEnteredAt: string | null;
|
|
121516
122382
|
activityAt: string | null;
|
|
121517
122383
|
projectCustomName?: string | null | undefined;
|
|
121518
122384
|
workspaceDirectory?: string | undefined;
|
|
@@ -121610,11 +122476,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121610
122476
|
type?: "script" | "service" | undefined;
|
|
121611
122477
|
exitCode?: number | null | undefined;
|
|
121612
122478
|
terminalId?: string | null | undefined;
|
|
122479
|
+
localProxyUrl?: string | null | undefined;
|
|
122480
|
+
publicProxyUrl?: string | null | undefined;
|
|
121613
122481
|
proxyUrl?: string | null | undefined;
|
|
121614
122482
|
}[] | undefined;
|
|
121615
122483
|
projectCustomName?: string | null | undefined;
|
|
121616
122484
|
workspaceDirectory?: string | undefined;
|
|
121617
122485
|
archivingAt?: string | null | undefined;
|
|
122486
|
+
statusEnteredAt?: string | null | undefined;
|
|
121618
122487
|
diffStat?: {
|
|
121619
122488
|
additions: number;
|
|
121620
122489
|
deletions: number;
|
|
@@ -121705,6 +122574,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121705
122574
|
proxyUrl: string | null;
|
|
121706
122575
|
lifecycle: "running" | "stopped";
|
|
121707
122576
|
health: "healthy" | "unhealthy" | null;
|
|
122577
|
+
localProxyUrl?: string | null | undefined;
|
|
122578
|
+
publicProxyUrl?: string | null | undefined;
|
|
121708
122579
|
}[];
|
|
121709
122580
|
projectId: string;
|
|
121710
122581
|
projectDisplayName: string;
|
|
@@ -121712,6 +122583,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121712
122583
|
projectKind: "git" | "directory" | "non_git";
|
|
121713
122584
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
121714
122585
|
archivingAt: string | null;
|
|
122586
|
+
statusEnteredAt: string | null;
|
|
121715
122587
|
activityAt: string | null;
|
|
121716
122588
|
projectCustomName?: string | null | undefined;
|
|
121717
122589
|
diffStat?: {
|
|
@@ -121808,11 +122680,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121808
122680
|
type?: "script" | "service" | undefined;
|
|
121809
122681
|
exitCode?: number | null | undefined;
|
|
121810
122682
|
terminalId?: string | null | undefined;
|
|
122683
|
+
localProxyUrl?: string | null | undefined;
|
|
122684
|
+
publicProxyUrl?: string | null | undefined;
|
|
121811
122685
|
proxyUrl?: string | null | undefined;
|
|
121812
122686
|
}[] | undefined;
|
|
121813
122687
|
projectCustomName?: string | null | undefined;
|
|
121814
122688
|
workspaceDirectory?: string | undefined;
|
|
121815
122689
|
archivingAt?: string | null | undefined;
|
|
122690
|
+
statusEnteredAt?: string | null | undefined;
|
|
121816
122691
|
diffStat?: {
|
|
121817
122692
|
additions: number;
|
|
121818
122693
|
deletions: number;
|
|
@@ -121918,6 +122793,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121918
122793
|
proxyUrl: string | null;
|
|
121919
122794
|
lifecycle: "running" | "stopped";
|
|
121920
122795
|
health: "healthy" | "unhealthy" | null;
|
|
122796
|
+
localProxyUrl?: string | null | undefined;
|
|
122797
|
+
publicProxyUrl?: string | null | undefined;
|
|
121921
122798
|
}[];
|
|
121922
122799
|
projectId: string;
|
|
121923
122800
|
projectDisplayName: string;
|
|
@@ -121925,6 +122802,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
121925
122802
|
projectKind: "git" | "directory" | "non_git";
|
|
121926
122803
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
121927
122804
|
archivingAt: string | null;
|
|
122805
|
+
statusEnteredAt: string | null;
|
|
121928
122806
|
activityAt: string | null;
|
|
121929
122807
|
projectCustomName?: string | null | undefined;
|
|
121930
122808
|
diffStat?: {
|
|
@@ -122030,11 +122908,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122030
122908
|
type?: "script" | "service" | undefined;
|
|
122031
122909
|
exitCode?: number | null | undefined;
|
|
122032
122910
|
terminalId?: string | null | undefined;
|
|
122911
|
+
localProxyUrl?: string | null | undefined;
|
|
122912
|
+
publicProxyUrl?: string | null | undefined;
|
|
122033
122913
|
proxyUrl?: string | null | undefined;
|
|
122034
122914
|
}[] | undefined;
|
|
122035
122915
|
projectCustomName?: string | null | undefined;
|
|
122036
122916
|
workspaceDirectory?: string | undefined;
|
|
122037
122917
|
archivingAt?: string | null | undefined;
|
|
122918
|
+
statusEnteredAt?: string | null | undefined;
|
|
122038
122919
|
diffStat?: {
|
|
122039
122920
|
additions: number;
|
|
122040
122921
|
deletions: number;
|
|
@@ -122137,6 +123018,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122137
123018
|
proxyUrl: string | null;
|
|
122138
123019
|
lifecycle: "running" | "stopped";
|
|
122139
123020
|
health: "healthy" | "unhealthy" | null;
|
|
123021
|
+
localProxyUrl?: string | null | undefined;
|
|
123022
|
+
publicProxyUrl?: string | null | undefined;
|
|
122140
123023
|
}[];
|
|
122141
123024
|
projectId: string;
|
|
122142
123025
|
projectDisplayName: string;
|
|
@@ -122144,6 +123027,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122144
123027
|
projectKind: "git" | "directory" | "non_git";
|
|
122145
123028
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
122146
123029
|
archivingAt: string | null;
|
|
123030
|
+
statusEnteredAt: string | null;
|
|
122147
123031
|
activityAt: string | null;
|
|
122148
123032
|
projectCustomName?: string | null | undefined;
|
|
122149
123033
|
diffStat?: {
|
|
@@ -122252,11 +123136,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122252
123136
|
type?: "script" | "service" | undefined;
|
|
122253
123137
|
exitCode?: number | null | undefined;
|
|
122254
123138
|
terminalId?: string | null | undefined;
|
|
123139
|
+
localProxyUrl?: string | null | undefined;
|
|
123140
|
+
publicProxyUrl?: string | null | undefined;
|
|
122255
123141
|
proxyUrl?: string | null | undefined;
|
|
122256
123142
|
}[] | undefined;
|
|
122257
123143
|
projectCustomName?: string | null | undefined;
|
|
122258
123144
|
workspaceDirectory?: string | undefined;
|
|
122259
123145
|
archivingAt?: string | null | undefined;
|
|
123146
|
+
statusEnteredAt?: string | null | undefined;
|
|
122260
123147
|
diffStat?: {
|
|
122261
123148
|
additions: number;
|
|
122262
123149
|
deletions: number;
|
|
@@ -122357,6 +123244,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122357
123244
|
name: z.ZodString;
|
|
122358
123245
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
122359
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>;
|
|
122360
123248
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
122361
123249
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
122362
123250
|
additions: z.ZodNumber;
|
|
@@ -122373,6 +123261,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122373
123261
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
122374
123262
|
hostname: z.ZodString;
|
|
122375
123263
|
port: z.ZodNullable<z.ZodNumber>;
|
|
123264
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
123265
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
122376
123266
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
122377
123267
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
122378
123268
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -122388,6 +123278,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122388
123278
|
proxyUrl: string | null;
|
|
122389
123279
|
lifecycle: "running" | "stopped";
|
|
122390
123280
|
health: "healthy" | "unhealthy" | null;
|
|
123281
|
+
localProxyUrl?: string | null | undefined;
|
|
123282
|
+
publicProxyUrl?: string | null | undefined;
|
|
122391
123283
|
}, {
|
|
122392
123284
|
port: number | null;
|
|
122393
123285
|
scriptName: string;
|
|
@@ -122397,6 +123289,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122397
123289
|
type?: "script" | "service" | undefined;
|
|
122398
123290
|
exitCode?: number | null | undefined;
|
|
122399
123291
|
terminalId?: string | null | undefined;
|
|
123292
|
+
localProxyUrl?: string | null | undefined;
|
|
123293
|
+
publicProxyUrl?: string | null | undefined;
|
|
122400
123294
|
proxyUrl?: string | null | undefined;
|
|
122401
123295
|
}>, "many">>;
|
|
122402
123296
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -122782,6 +123676,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122782
123676
|
proxyUrl: string | null;
|
|
122783
123677
|
lifecycle: "running" | "stopped";
|
|
122784
123678
|
health: "healthy" | "unhealthy" | null;
|
|
123679
|
+
localProxyUrl?: string | null | undefined;
|
|
123680
|
+
publicProxyUrl?: string | null | undefined;
|
|
122785
123681
|
}[];
|
|
122786
123682
|
projectId: string;
|
|
122787
123683
|
projectDisplayName: string;
|
|
@@ -122789,6 +123685,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122789
123685
|
projectKind: "git" | "directory" | "non_git";
|
|
122790
123686
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
122791
123687
|
archivingAt: string | null;
|
|
123688
|
+
statusEnteredAt: string | null;
|
|
122792
123689
|
activityAt: string | null;
|
|
122793
123690
|
projectCustomName?: string | null | undefined;
|
|
122794
123691
|
workspaceDirectory?: string | undefined;
|
|
@@ -122886,11 +123783,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122886
123783
|
type?: "script" | "service" | undefined;
|
|
122887
123784
|
exitCode?: number | null | undefined;
|
|
122888
123785
|
terminalId?: string | null | undefined;
|
|
123786
|
+
localProxyUrl?: string | null | undefined;
|
|
123787
|
+
publicProxyUrl?: string | null | undefined;
|
|
122889
123788
|
proxyUrl?: string | null | undefined;
|
|
122890
123789
|
}[] | undefined;
|
|
122891
123790
|
projectCustomName?: string | null | undefined;
|
|
122892
123791
|
workspaceDirectory?: string | undefined;
|
|
122893
123792
|
archivingAt?: string | null | undefined;
|
|
123793
|
+
statusEnteredAt?: string | null | undefined;
|
|
122894
123794
|
diffStat?: {
|
|
122895
123795
|
additions: number;
|
|
122896
123796
|
deletions: number;
|
|
@@ -122981,6 +123881,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122981
123881
|
proxyUrl: string | null;
|
|
122982
123882
|
lifecycle: "running" | "stopped";
|
|
122983
123883
|
health: "healthy" | "unhealthy" | null;
|
|
123884
|
+
localProxyUrl?: string | null | undefined;
|
|
123885
|
+
publicProxyUrl?: string | null | undefined;
|
|
122984
123886
|
}[];
|
|
122985
123887
|
projectId: string;
|
|
122986
123888
|
projectDisplayName: string;
|
|
@@ -122988,6 +123890,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
122988
123890
|
projectKind: "git" | "directory" | "non_git";
|
|
122989
123891
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
122990
123892
|
archivingAt: string | null;
|
|
123893
|
+
statusEnteredAt: string | null;
|
|
122991
123894
|
activityAt: string | null;
|
|
122992
123895
|
projectCustomName?: string | null | undefined;
|
|
122993
123896
|
diffStat?: {
|
|
@@ -123084,11 +123987,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123084
123987
|
type?: "script" | "service" | undefined;
|
|
123085
123988
|
exitCode?: number | null | undefined;
|
|
123086
123989
|
terminalId?: string | null | undefined;
|
|
123990
|
+
localProxyUrl?: string | null | undefined;
|
|
123991
|
+
publicProxyUrl?: string | null | undefined;
|
|
123087
123992
|
proxyUrl?: string | null | undefined;
|
|
123088
123993
|
}[] | undefined;
|
|
123089
123994
|
projectCustomName?: string | null | undefined;
|
|
123090
123995
|
workspaceDirectory?: string | undefined;
|
|
123091
123996
|
archivingAt?: string | null | undefined;
|
|
123997
|
+
statusEnteredAt?: string | null | undefined;
|
|
123092
123998
|
diffStat?: {
|
|
123093
123999
|
additions: number;
|
|
123094
124000
|
deletions: number;
|
|
@@ -123184,6 +124090,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123184
124090
|
proxyUrl: string | null;
|
|
123185
124091
|
lifecycle: "running" | "stopped";
|
|
123186
124092
|
health: "healthy" | "unhealthy" | null;
|
|
124093
|
+
localProxyUrl?: string | null | undefined;
|
|
124094
|
+
publicProxyUrl?: string | null | undefined;
|
|
123187
124095
|
}[];
|
|
123188
124096
|
projectId: string;
|
|
123189
124097
|
projectDisplayName: string;
|
|
@@ -123191,6 +124099,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123191
124099
|
projectKind: "git" | "directory" | "non_git";
|
|
123192
124100
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
123193
124101
|
archivingAt: string | null;
|
|
124102
|
+
statusEnteredAt: string | null;
|
|
123194
124103
|
activityAt: string | null;
|
|
123195
124104
|
projectCustomName?: string | null | undefined;
|
|
123196
124105
|
diffStat?: {
|
|
@@ -123291,11 +124200,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123291
124200
|
type?: "script" | "service" | undefined;
|
|
123292
124201
|
exitCode?: number | null | undefined;
|
|
123293
124202
|
terminalId?: string | null | undefined;
|
|
124203
|
+
localProxyUrl?: string | null | undefined;
|
|
124204
|
+
publicProxyUrl?: string | null | undefined;
|
|
123294
124205
|
proxyUrl?: string | null | undefined;
|
|
123295
124206
|
}[] | undefined;
|
|
123296
124207
|
projectCustomName?: string | null | undefined;
|
|
123297
124208
|
workspaceDirectory?: string | undefined;
|
|
123298
124209
|
archivingAt?: string | null | undefined;
|
|
124210
|
+
statusEnteredAt?: string | null | undefined;
|
|
123299
124211
|
diffStat?: {
|
|
123300
124212
|
additions: number;
|
|
123301
124213
|
deletions: number;
|
|
@@ -123393,6 +124305,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123393
124305
|
proxyUrl: string | null;
|
|
123394
124306
|
lifecycle: "running" | "stopped";
|
|
123395
124307
|
health: "healthy" | "unhealthy" | null;
|
|
124308
|
+
localProxyUrl?: string | null | undefined;
|
|
124309
|
+
publicProxyUrl?: string | null | undefined;
|
|
123396
124310
|
}[];
|
|
123397
124311
|
projectId: string;
|
|
123398
124312
|
projectDisplayName: string;
|
|
@@ -123400,6 +124314,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123400
124314
|
projectKind: "git" | "directory" | "non_git";
|
|
123401
124315
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
123402
124316
|
archivingAt: string | null;
|
|
124317
|
+
statusEnteredAt: string | null;
|
|
123403
124318
|
activityAt: string | null;
|
|
123404
124319
|
projectCustomName?: string | null | undefined;
|
|
123405
124320
|
diffStat?: {
|
|
@@ -123503,11 +124418,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
123503
124418
|
type?: "script" | "service" | undefined;
|
|
123504
124419
|
exitCode?: number | null | undefined;
|
|
123505
124420
|
terminalId?: string | null | undefined;
|
|
124421
|
+
localProxyUrl?: string | null | undefined;
|
|
124422
|
+
publicProxyUrl?: string | null | undefined;
|
|
123506
124423
|
proxyUrl?: string | null | undefined;
|
|
123507
124424
|
}[] | undefined;
|
|
123508
124425
|
projectCustomName?: string | null | undefined;
|
|
123509
124426
|
workspaceDirectory?: string | undefined;
|
|
123510
124427
|
archivingAt?: string | null | undefined;
|
|
124428
|
+
statusEnteredAt?: string | null | undefined;
|
|
123511
124429
|
diffStat?: {
|
|
123512
124430
|
additions: number;
|
|
123513
124431
|
deletions: number;
|
|
@@ -125995,6 +126913,85 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
125995
126913
|
providerUnavailable?: boolean | undefined;
|
|
125996
126914
|
}[];
|
|
125997
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
|
+
};
|
|
125998
126995
|
}>, z.ZodObject<{
|
|
125999
126996
|
type: z.ZodLiteral<"send_agent_message_response">;
|
|
126000
126997
|
payload: z.ZodObject<{
|
|
@@ -134552,6 +135549,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
134552
135549
|
name: z.ZodString;
|
|
134553
135550
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
134554
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>;
|
|
134555
135553
|
activityAt: z.ZodNullable<z.ZodString>;
|
|
134556
135554
|
diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
134557
135555
|
additions: z.ZodNumber;
|
|
@@ -134568,6 +135566,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
134568
135566
|
type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
|
|
134569
135567
|
hostname: z.ZodString;
|
|
134570
135568
|
port: z.ZodNullable<z.ZodNumber>;
|
|
135569
|
+
localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
135570
|
+
publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
134571
135571
|
proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
134572
135572
|
lifecycle: z.ZodEnum<["running", "stopped"]>;
|
|
134573
135573
|
health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
|
|
@@ -134583,6 +135583,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
134583
135583
|
proxyUrl: string | null;
|
|
134584
135584
|
lifecycle: "running" | "stopped";
|
|
134585
135585
|
health: "healthy" | "unhealthy" | null;
|
|
135586
|
+
localProxyUrl?: string | null | undefined;
|
|
135587
|
+
publicProxyUrl?: string | null | undefined;
|
|
134586
135588
|
}, {
|
|
134587
135589
|
port: number | null;
|
|
134588
135590
|
scriptName: string;
|
|
@@ -134592,6 +135594,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
134592
135594
|
type?: "script" | "service" | undefined;
|
|
134593
135595
|
exitCode?: number | null | undefined;
|
|
134594
135596
|
terminalId?: string | null | undefined;
|
|
135597
|
+
localProxyUrl?: string | null | undefined;
|
|
135598
|
+
publicProxyUrl?: string | null | undefined;
|
|
134595
135599
|
proxyUrl?: string | null | undefined;
|
|
134596
135600
|
}>, "many">>;
|
|
134597
135601
|
gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -134977,6 +135981,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
134977
135981
|
proxyUrl: string | null;
|
|
134978
135982
|
lifecycle: "running" | "stopped";
|
|
134979
135983
|
health: "healthy" | "unhealthy" | null;
|
|
135984
|
+
localProxyUrl?: string | null | undefined;
|
|
135985
|
+
publicProxyUrl?: string | null | undefined;
|
|
134980
135986
|
}[];
|
|
134981
135987
|
projectId: string;
|
|
134982
135988
|
projectDisplayName: string;
|
|
@@ -134984,6 +135990,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
134984
135990
|
projectKind: "git" | "directory" | "non_git";
|
|
134985
135991
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
134986
135992
|
archivingAt: string | null;
|
|
135993
|
+
statusEnteredAt: string | null;
|
|
134987
135994
|
activityAt: string | null;
|
|
134988
135995
|
projectCustomName?: string | null | undefined;
|
|
134989
135996
|
workspaceDirectory?: string | undefined;
|
|
@@ -135081,11 +136088,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135081
136088
|
type?: "script" | "service" | undefined;
|
|
135082
136089
|
exitCode?: number | null | undefined;
|
|
135083
136090
|
terminalId?: string | null | undefined;
|
|
136091
|
+
localProxyUrl?: string | null | undefined;
|
|
136092
|
+
publicProxyUrl?: string | null | undefined;
|
|
135084
136093
|
proxyUrl?: string | null | undefined;
|
|
135085
136094
|
}[] | undefined;
|
|
135086
136095
|
projectCustomName?: string | null | undefined;
|
|
135087
136096
|
workspaceDirectory?: string | undefined;
|
|
135088
136097
|
archivingAt?: string | null | undefined;
|
|
136098
|
+
statusEnteredAt?: string | null | undefined;
|
|
135089
136099
|
diffStat?: {
|
|
135090
136100
|
additions: number;
|
|
135091
136101
|
deletions: number;
|
|
@@ -135176,6 +136186,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135176
136186
|
proxyUrl: string | null;
|
|
135177
136187
|
lifecycle: "running" | "stopped";
|
|
135178
136188
|
health: "healthy" | "unhealthy" | null;
|
|
136189
|
+
localProxyUrl?: string | null | undefined;
|
|
136190
|
+
publicProxyUrl?: string | null | undefined;
|
|
135179
136191
|
}[];
|
|
135180
136192
|
projectId: string;
|
|
135181
136193
|
projectDisplayName: string;
|
|
@@ -135183,6 +136195,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135183
136195
|
projectKind: "git" | "directory" | "non_git";
|
|
135184
136196
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
135185
136197
|
archivingAt: string | null;
|
|
136198
|
+
statusEnteredAt: string | null;
|
|
135186
136199
|
activityAt: string | null;
|
|
135187
136200
|
projectCustomName?: string | null | undefined;
|
|
135188
136201
|
diffStat?: {
|
|
@@ -135279,11 +136292,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135279
136292
|
type?: "script" | "service" | undefined;
|
|
135280
136293
|
exitCode?: number | null | undefined;
|
|
135281
136294
|
terminalId?: string | null | undefined;
|
|
136295
|
+
localProxyUrl?: string | null | undefined;
|
|
136296
|
+
publicProxyUrl?: string | null | undefined;
|
|
135282
136297
|
proxyUrl?: string | null | undefined;
|
|
135283
136298
|
}[] | undefined;
|
|
135284
136299
|
projectCustomName?: string | null | undefined;
|
|
135285
136300
|
workspaceDirectory?: string | undefined;
|
|
135286
136301
|
archivingAt?: string | null | undefined;
|
|
136302
|
+
statusEnteredAt?: string | null | undefined;
|
|
135287
136303
|
diffStat?: {
|
|
135288
136304
|
additions: number;
|
|
135289
136305
|
deletions: number;
|
|
@@ -135382,6 +136398,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135382
136398
|
proxyUrl: string | null;
|
|
135383
136399
|
lifecycle: "running" | "stopped";
|
|
135384
136400
|
health: "healthy" | "unhealthy" | null;
|
|
136401
|
+
localProxyUrl?: string | null | undefined;
|
|
136402
|
+
publicProxyUrl?: string | null | undefined;
|
|
135385
136403
|
}[];
|
|
135386
136404
|
projectId: string;
|
|
135387
136405
|
projectDisplayName: string;
|
|
@@ -135389,6 +136407,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135389
136407
|
projectKind: "git" | "directory" | "non_git";
|
|
135390
136408
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
135391
136409
|
archivingAt: string | null;
|
|
136410
|
+
statusEnteredAt: string | null;
|
|
135392
136411
|
activityAt: string | null;
|
|
135393
136412
|
projectCustomName?: string | null | undefined;
|
|
135394
136413
|
diffStat?: {
|
|
@@ -135491,11 +136510,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135491
136510
|
type?: "script" | "service" | undefined;
|
|
135492
136511
|
exitCode?: number | null | undefined;
|
|
135493
136512
|
terminalId?: string | null | undefined;
|
|
136513
|
+
localProxyUrl?: string | null | undefined;
|
|
136514
|
+
publicProxyUrl?: string | null | undefined;
|
|
135494
136515
|
proxyUrl?: string | null | undefined;
|
|
135495
136516
|
}[] | undefined;
|
|
135496
136517
|
projectCustomName?: string | null | undefined;
|
|
135497
136518
|
workspaceDirectory?: string | undefined;
|
|
135498
136519
|
archivingAt?: string | null | undefined;
|
|
136520
|
+
statusEnteredAt?: string | null | undefined;
|
|
135499
136521
|
diffStat?: {
|
|
135500
136522
|
additions: number;
|
|
135501
136523
|
deletions: number;
|
|
@@ -135595,6 +136617,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135595
136617
|
proxyUrl: string | null;
|
|
135596
136618
|
lifecycle: "running" | "stopped";
|
|
135597
136619
|
health: "healthy" | "unhealthy" | null;
|
|
136620
|
+
localProxyUrl?: string | null | undefined;
|
|
136621
|
+
publicProxyUrl?: string | null | undefined;
|
|
135598
136622
|
}[];
|
|
135599
136623
|
projectId: string;
|
|
135600
136624
|
projectDisplayName: string;
|
|
@@ -135602,6 +136626,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135602
136626
|
projectKind: "git" | "directory" | "non_git";
|
|
135603
136627
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
135604
136628
|
archivingAt: string | null;
|
|
136629
|
+
statusEnteredAt: string | null;
|
|
135605
136630
|
activityAt: string | null;
|
|
135606
136631
|
projectCustomName?: string | null | undefined;
|
|
135607
136632
|
diffStat?: {
|
|
@@ -135707,11 +136732,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
135707
136732
|
type?: "script" | "service" | undefined;
|
|
135708
136733
|
exitCode?: number | null | undefined;
|
|
135709
136734
|
terminalId?: string | null | undefined;
|
|
136735
|
+
localProxyUrl?: string | null | undefined;
|
|
136736
|
+
publicProxyUrl?: string | null | undefined;
|
|
135710
136737
|
proxyUrl?: string | null | undefined;
|
|
135711
136738
|
}[] | undefined;
|
|
135712
136739
|
projectCustomName?: string | null | undefined;
|
|
135713
136740
|
workspaceDirectory?: string | undefined;
|
|
135714
136741
|
archivingAt?: string | null | undefined;
|
|
136742
|
+
statusEnteredAt?: string | null | undefined;
|
|
135715
136743
|
diffStat?: {
|
|
135716
136744
|
additions: number;
|
|
135717
136745
|
deletions: number;
|
|
@@ -145159,6 +146187,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145159
146187
|
proxyUrl: string | null;
|
|
145160
146188
|
lifecycle: "running" | "stopped";
|
|
145161
146189
|
health: "healthy" | "unhealthy" | null;
|
|
146190
|
+
localProxyUrl?: string | null | undefined;
|
|
146191
|
+
publicProxyUrl?: string | null | undefined;
|
|
145162
146192
|
}[];
|
|
145163
146193
|
projectId: string;
|
|
145164
146194
|
projectDisplayName: string;
|
|
@@ -145166,6 +146196,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145166
146196
|
projectKind: "git" | "directory" | "non_git";
|
|
145167
146197
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
145168
146198
|
archivingAt: string | null;
|
|
146199
|
+
statusEnteredAt: string | null;
|
|
145169
146200
|
activityAt: string | null;
|
|
145170
146201
|
projectCustomName?: string | null | undefined;
|
|
145171
146202
|
diffStat?: {
|
|
@@ -145271,6 +146302,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145271
146302
|
proxyUrl: string | null;
|
|
145272
146303
|
lifecycle: "running" | "stopped";
|
|
145273
146304
|
health: "healthy" | "unhealthy" | null;
|
|
146305
|
+
localProxyUrl?: string | null | undefined;
|
|
146306
|
+
publicProxyUrl?: string | null | undefined;
|
|
145274
146307
|
}[];
|
|
145275
146308
|
projectId: string;
|
|
145276
146309
|
projectDisplayName: string;
|
|
@@ -145278,6 +146311,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145278
146311
|
projectKind: "git" | "directory" | "non_git";
|
|
145279
146312
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
145280
146313
|
archivingAt: string | null;
|
|
146314
|
+
statusEnteredAt: string | null;
|
|
145281
146315
|
activityAt: string | null;
|
|
145282
146316
|
projectCustomName?: string | null | undefined;
|
|
145283
146317
|
diffStat?: {
|
|
@@ -145373,6 +146407,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145373
146407
|
proxyUrl: string | null;
|
|
145374
146408
|
lifecycle: "running" | "stopped";
|
|
145375
146409
|
health: "healthy" | "unhealthy" | null;
|
|
146410
|
+
localProxyUrl?: string | null | undefined;
|
|
146411
|
+
publicProxyUrl?: string | null | undefined;
|
|
145376
146412
|
}[];
|
|
145377
146413
|
workspaceId: string;
|
|
145378
146414
|
};
|
|
@@ -145445,6 +146481,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145445
146481
|
proxyUrl: string | null;
|
|
145446
146482
|
lifecycle: "running" | "stopped";
|
|
145447
146483
|
health: "healthy" | "unhealthy" | null;
|
|
146484
|
+
localProxyUrl?: string | null | undefined;
|
|
146485
|
+
publicProxyUrl?: string | null | undefined;
|
|
145448
146486
|
}[];
|
|
145449
146487
|
projectId: string;
|
|
145450
146488
|
projectDisplayName: string;
|
|
@@ -145452,6 +146490,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145452
146490
|
projectKind: "git" | "directory" | "non_git";
|
|
145453
146491
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
145454
146492
|
archivingAt: string | null;
|
|
146493
|
+
statusEnteredAt: string | null;
|
|
145455
146494
|
activityAt: string | null;
|
|
145456
146495
|
projectCustomName?: string | null | undefined;
|
|
145457
146496
|
diffStat?: {
|
|
@@ -145855,6 +146894,21 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
145855
146894
|
providerUnavailable?: boolean | undefined;
|
|
145856
146895
|
}[];
|
|
145857
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
|
+
};
|
|
145858
146912
|
} | {
|
|
145859
146913
|
type: "send_agent_message_response";
|
|
145860
146914
|
payload: {
|
|
@@ -146903,6 +147957,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
146903
147957
|
proxyUrl: string | null;
|
|
146904
147958
|
lifecycle: "running" | "stopped";
|
|
146905
147959
|
health: "healthy" | "unhealthy" | null;
|
|
147960
|
+
localProxyUrl?: string | null | undefined;
|
|
147961
|
+
publicProxyUrl?: string | null | undefined;
|
|
146906
147962
|
}[];
|
|
146907
147963
|
projectId: string;
|
|
146908
147964
|
projectDisplayName: string;
|
|
@@ -146910,6 +147966,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
146910
147966
|
projectKind: "git" | "directory" | "non_git";
|
|
146911
147967
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
146912
147968
|
archivingAt: string | null;
|
|
147969
|
+
statusEnteredAt: string | null;
|
|
146913
147970
|
activityAt: string | null;
|
|
146914
147971
|
projectCustomName?: string | null | undefined;
|
|
146915
147972
|
diffStat?: {
|
|
@@ -148672,11 +149729,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
148672
149729
|
type?: "script" | "service" | undefined;
|
|
148673
149730
|
exitCode?: number | null | undefined;
|
|
148674
149731
|
terminalId?: string | null | undefined;
|
|
149732
|
+
localProxyUrl?: string | null | undefined;
|
|
149733
|
+
publicProxyUrl?: string | null | undefined;
|
|
148675
149734
|
proxyUrl?: string | null | undefined;
|
|
148676
149735
|
}[] | undefined;
|
|
148677
149736
|
projectCustomName?: string | null | undefined;
|
|
148678
149737
|
workspaceDirectory?: string | undefined;
|
|
148679
149738
|
archivingAt?: string | null | undefined;
|
|
149739
|
+
statusEnteredAt?: string | null | undefined;
|
|
148680
149740
|
diffStat?: {
|
|
148681
149741
|
additions: number;
|
|
148682
149742
|
deletions: number;
|
|
@@ -148784,11 +149844,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
148784
149844
|
type?: "script" | "service" | undefined;
|
|
148785
149845
|
exitCode?: number | null | undefined;
|
|
148786
149846
|
terminalId?: string | null | undefined;
|
|
149847
|
+
localProxyUrl?: string | null | undefined;
|
|
149848
|
+
publicProxyUrl?: string | null | undefined;
|
|
148787
149849
|
proxyUrl?: string | null | undefined;
|
|
148788
149850
|
}[] | undefined;
|
|
148789
149851
|
projectCustomName?: string | null | undefined;
|
|
148790
149852
|
workspaceDirectory?: string | undefined;
|
|
148791
149853
|
archivingAt?: string | null | undefined;
|
|
149854
|
+
statusEnteredAt?: string | null | undefined;
|
|
148792
149855
|
diffStat?: {
|
|
148793
149856
|
additions: number;
|
|
148794
149857
|
deletions: number;
|
|
@@ -148881,6 +149944,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
148881
149944
|
type?: "script" | "service" | undefined;
|
|
148882
149945
|
exitCode?: number | null | undefined;
|
|
148883
149946
|
terminalId?: string | null | undefined;
|
|
149947
|
+
localProxyUrl?: string | null | undefined;
|
|
149948
|
+
publicProxyUrl?: string | null | undefined;
|
|
148884
149949
|
proxyUrl?: string | null | undefined;
|
|
148885
149950
|
}[];
|
|
148886
149951
|
workspaceId: string;
|
|
@@ -148958,11 +150023,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
148958
150023
|
type?: "script" | "service" | undefined;
|
|
148959
150024
|
exitCode?: number | null | undefined;
|
|
148960
150025
|
terminalId?: string | null | undefined;
|
|
150026
|
+
localProxyUrl?: string | null | undefined;
|
|
150027
|
+
publicProxyUrl?: string | null | undefined;
|
|
148961
150028
|
proxyUrl?: string | null | undefined;
|
|
148962
150029
|
}[] | undefined;
|
|
148963
150030
|
projectCustomName?: string | null | undefined;
|
|
148964
150031
|
workspaceDirectory?: string | undefined;
|
|
148965
150032
|
archivingAt?: string | null | undefined;
|
|
150033
|
+
statusEnteredAt?: string | null | undefined;
|
|
148966
150034
|
diffStat?: {
|
|
148967
150035
|
additions: number;
|
|
148968
150036
|
deletions: number;
|
|
@@ -149364,6 +150432,21 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
149364
150432
|
providerUnavailable?: boolean | undefined;
|
|
149365
150433
|
}[];
|
|
149366
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
|
+
};
|
|
149367
150450
|
} | {
|
|
149368
150451
|
type: "send_agent_message_response";
|
|
149369
150452
|
payload: {
|
|
@@ -150375,11 +151458,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
150375
151458
|
type?: "script" | "service" | undefined;
|
|
150376
151459
|
exitCode?: number | null | undefined;
|
|
150377
151460
|
terminalId?: string | null | undefined;
|
|
151461
|
+
localProxyUrl?: string | null | undefined;
|
|
151462
|
+
publicProxyUrl?: string | null | undefined;
|
|
150378
151463
|
proxyUrl?: string | null | undefined;
|
|
150379
151464
|
}[] | undefined;
|
|
150380
151465
|
projectCustomName?: string | null | undefined;
|
|
150381
151466
|
workspaceDirectory?: string | undefined;
|
|
150382
151467
|
archivingAt?: string | null | undefined;
|
|
151468
|
+
statusEnteredAt?: string | null | undefined;
|
|
150383
151469
|
diffStat?: {
|
|
150384
151470
|
additions: number;
|
|
150385
151471
|
deletions: number;
|