@getpaseo/protocol 0.1.88 → 0.1.89

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.
@@ -15524,6 +15524,8 @@ export declare const WorkspaceScriptPayloadSchema: z.ZodObject<{
15524
15524
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
15525
15525
  hostname: z.ZodString;
15526
15526
  port: z.ZodNullable<z.ZodNumber>;
15527
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15528
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15527
15529
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15528
15530
  lifecycle: z.ZodEnum<["running", "stopped"]>;
15529
15531
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -15539,6 +15541,8 @@ export declare const WorkspaceScriptPayloadSchema: z.ZodObject<{
15539
15541
  proxyUrl: string | null;
15540
15542
  lifecycle: "running" | "stopped";
15541
15543
  health: "healthy" | "unhealthy" | null;
15544
+ localProxyUrl?: string | null | undefined;
15545
+ publicProxyUrl?: string | null | undefined;
15542
15546
  }, {
15543
15547
  port: number | null;
15544
15548
  scriptName: string;
@@ -15548,6 +15552,8 @@ export declare const WorkspaceScriptPayloadSchema: z.ZodObject<{
15548
15552
  type?: "script" | "service" | undefined;
15549
15553
  exitCode?: number | null | undefined;
15550
15554
  terminalId?: string | null | undefined;
15555
+ localProxyUrl?: string | null | undefined;
15556
+ publicProxyUrl?: string | null | undefined;
15551
15557
  proxyUrl?: string | null | undefined;
15552
15558
  }>;
15553
15559
  export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<{
@@ -15578,6 +15584,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
15578
15584
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
15579
15585
  hostname: z.ZodString;
15580
15586
  port: z.ZodNullable<z.ZodNumber>;
15587
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15588
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15581
15589
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15582
15590
  lifecycle: z.ZodEnum<["running", "stopped"]>;
15583
15591
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -15593,6 +15601,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
15593
15601
  proxyUrl: string | null;
15594
15602
  lifecycle: "running" | "stopped";
15595
15603
  health: "healthy" | "unhealthy" | null;
15604
+ localProxyUrl?: string | null | undefined;
15605
+ publicProxyUrl?: string | null | undefined;
15596
15606
  }, {
15597
15607
  port: number | null;
15598
15608
  scriptName: string;
@@ -15602,6 +15612,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
15602
15612
  type?: "script" | "service" | undefined;
15603
15613
  exitCode?: number | null | undefined;
15604
15614
  terminalId?: string | null | undefined;
15615
+ localProxyUrl?: string | null | undefined;
15616
+ publicProxyUrl?: string | null | undefined;
15605
15617
  proxyUrl?: string | null | undefined;
15606
15618
  }>, "many">>;
15607
15619
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -15987,6 +15999,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
15987
15999
  proxyUrl: string | null;
15988
16000
  lifecycle: "running" | "stopped";
15989
16001
  health: "healthy" | "unhealthy" | null;
16002
+ localProxyUrl?: string | null | undefined;
16003
+ publicProxyUrl?: string | null | undefined;
15990
16004
  }[];
15991
16005
  projectId: string;
15992
16006
  projectDisplayName: string;
@@ -16091,6 +16105,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
16091
16105
  type?: "script" | "service" | undefined;
16092
16106
  exitCode?: number | null | undefined;
16093
16107
  terminalId?: string | null | undefined;
16108
+ localProxyUrl?: string | null | undefined;
16109
+ publicProxyUrl?: string | null | undefined;
16094
16110
  proxyUrl?: string | null | undefined;
16095
16111
  }[] | undefined;
16096
16112
  projectCustomName?: string | null | undefined;
@@ -16186,6 +16202,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
16186
16202
  proxyUrl: string | null;
16187
16203
  lifecycle: "running" | "stopped";
16188
16204
  health: "healthy" | "unhealthy" | null;
16205
+ localProxyUrl?: string | null | undefined;
16206
+ publicProxyUrl?: string | null | undefined;
16189
16207
  }[];
16190
16208
  projectId: string;
16191
16209
  projectDisplayName: string;
@@ -16289,6 +16307,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
16289
16307
  type?: "script" | "service" | undefined;
16290
16308
  exitCode?: number | null | undefined;
16291
16309
  terminalId?: string | null | undefined;
16310
+ localProxyUrl?: string | null | undefined;
16311
+ publicProxyUrl?: string | null | undefined;
16292
16312
  proxyUrl?: string | null | undefined;
16293
16313
  }[] | undefined;
16294
16314
  projectCustomName?: string | null | undefined;
@@ -20389,6 +20409,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20389
20409
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
20390
20410
  hostname: z.ZodString;
20391
20411
  port: z.ZodNullable<z.ZodNumber>;
20412
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20413
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20392
20414
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
20393
20415
  lifecycle: z.ZodEnum<["running", "stopped"]>;
20394
20416
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -20404,6 +20426,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20404
20426
  proxyUrl: string | null;
20405
20427
  lifecycle: "running" | "stopped";
20406
20428
  health: "healthy" | "unhealthy" | null;
20429
+ localProxyUrl?: string | null | undefined;
20430
+ publicProxyUrl?: string | null | undefined;
20407
20431
  }, {
20408
20432
  port: number | null;
20409
20433
  scriptName: string;
@@ -20413,6 +20437,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20413
20437
  type?: "script" | "service" | undefined;
20414
20438
  exitCode?: number | null | undefined;
20415
20439
  terminalId?: string | null | undefined;
20440
+ localProxyUrl?: string | null | undefined;
20441
+ publicProxyUrl?: string | null | undefined;
20416
20442
  proxyUrl?: string | null | undefined;
20417
20443
  }>, "many">>;
20418
20444
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -20798,6 +20824,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20798
20824
  proxyUrl: string | null;
20799
20825
  lifecycle: "running" | "stopped";
20800
20826
  health: "healthy" | "unhealthy" | null;
20827
+ localProxyUrl?: string | null | undefined;
20828
+ publicProxyUrl?: string | null | undefined;
20801
20829
  }[];
20802
20830
  projectId: string;
20803
20831
  projectDisplayName: string;
@@ -20902,6 +20930,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20902
20930
  type?: "script" | "service" | undefined;
20903
20931
  exitCode?: number | null | undefined;
20904
20932
  terminalId?: string | null | undefined;
20933
+ localProxyUrl?: string | null | undefined;
20934
+ publicProxyUrl?: string | null | undefined;
20905
20935
  proxyUrl?: string | null | undefined;
20906
20936
  }[] | undefined;
20907
20937
  projectCustomName?: string | null | undefined;
@@ -20997,6 +21027,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20997
21027
  proxyUrl: string | null;
20998
21028
  lifecycle: "running" | "stopped";
20999
21029
  health: "healthy" | "unhealthy" | null;
21030
+ localProxyUrl?: string | null | undefined;
21031
+ publicProxyUrl?: string | null | undefined;
21000
21032
  }[];
21001
21033
  projectId: string;
21002
21034
  projectDisplayName: string;
@@ -21100,6 +21132,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
21100
21132
  type?: "script" | "service" | undefined;
21101
21133
  exitCode?: number | null | undefined;
21102
21134
  terminalId?: string | null | undefined;
21135
+ localProxyUrl?: string | null | undefined;
21136
+ publicProxyUrl?: string | null | undefined;
21103
21137
  proxyUrl?: string | null | undefined;
21104
21138
  }[] | undefined;
21105
21139
  projectCustomName?: string | null | undefined;
@@ -21210,6 +21244,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
21210
21244
  proxyUrl: string | null;
21211
21245
  lifecycle: "running" | "stopped";
21212
21246
  health: "healthy" | "unhealthy" | null;
21247
+ localProxyUrl?: string | null | undefined;
21248
+ publicProxyUrl?: string | null | undefined;
21213
21249
  }[];
21214
21250
  projectId: string;
21215
21251
  projectDisplayName: string;
@@ -21322,6 +21358,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
21322
21358
  type?: "script" | "service" | undefined;
21323
21359
  exitCode?: number | null | undefined;
21324
21360
  terminalId?: string | null | undefined;
21361
+ localProxyUrl?: string | null | undefined;
21362
+ publicProxyUrl?: string | null | undefined;
21325
21363
  proxyUrl?: string | null | undefined;
21326
21364
  }[] | undefined;
21327
21365
  projectCustomName?: string | null | undefined;
@@ -21429,6 +21467,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
21429
21467
  proxyUrl: string | null;
21430
21468
  lifecycle: "running" | "stopped";
21431
21469
  health: "healthy" | "unhealthy" | null;
21470
+ localProxyUrl?: string | null | undefined;
21471
+ publicProxyUrl?: string | null | undefined;
21432
21472
  }[];
21433
21473
  projectId: string;
21434
21474
  projectDisplayName: string;
@@ -21544,6 +21584,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
21544
21584
  type?: "script" | "service" | undefined;
21545
21585
  exitCode?: number | null | undefined;
21546
21586
  terminalId?: string | null | undefined;
21587
+ localProxyUrl?: string | null | undefined;
21588
+ publicProxyUrl?: string | null | undefined;
21547
21589
  proxyUrl?: string | null | undefined;
21548
21590
  }[] | undefined;
21549
21591
  projectCustomName?: string | null | undefined;
@@ -21666,6 +21708,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
21666
21708
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
21667
21709
  hostname: z.ZodString;
21668
21710
  port: z.ZodNullable<z.ZodNumber>;
21711
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21712
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21669
21713
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
21670
21714
  lifecycle: z.ZodEnum<["running", "stopped"]>;
21671
21715
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -21681,6 +21725,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
21681
21725
  proxyUrl: string | null;
21682
21726
  lifecycle: "running" | "stopped";
21683
21727
  health: "healthy" | "unhealthy" | null;
21728
+ localProxyUrl?: string | null | undefined;
21729
+ publicProxyUrl?: string | null | undefined;
21684
21730
  }, {
21685
21731
  port: number | null;
21686
21732
  scriptName: string;
@@ -21690,6 +21736,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
21690
21736
  type?: "script" | "service" | undefined;
21691
21737
  exitCode?: number | null | undefined;
21692
21738
  terminalId?: string | null | undefined;
21739
+ localProxyUrl?: string | null | undefined;
21740
+ publicProxyUrl?: string | null | undefined;
21693
21741
  proxyUrl?: string | null | undefined;
21694
21742
  }>, "many">>;
21695
21743
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -22075,6 +22123,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22075
22123
  proxyUrl: string | null;
22076
22124
  lifecycle: "running" | "stopped";
22077
22125
  health: "healthy" | "unhealthy" | null;
22126
+ localProxyUrl?: string | null | undefined;
22127
+ publicProxyUrl?: string | null | undefined;
22078
22128
  }[];
22079
22129
  projectId: string;
22080
22130
  projectDisplayName: string;
@@ -22179,6 +22229,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22179
22229
  type?: "script" | "service" | undefined;
22180
22230
  exitCode?: number | null | undefined;
22181
22231
  terminalId?: string | null | undefined;
22232
+ localProxyUrl?: string | null | undefined;
22233
+ publicProxyUrl?: string | null | undefined;
22182
22234
  proxyUrl?: string | null | undefined;
22183
22235
  }[] | undefined;
22184
22236
  projectCustomName?: string | null | undefined;
@@ -22274,6 +22326,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22274
22326
  proxyUrl: string | null;
22275
22327
  lifecycle: "running" | "stopped";
22276
22328
  health: "healthy" | "unhealthy" | null;
22329
+ localProxyUrl?: string | null | undefined;
22330
+ publicProxyUrl?: string | null | undefined;
22277
22331
  }[];
22278
22332
  projectId: string;
22279
22333
  projectDisplayName: string;
@@ -22377,6 +22431,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22377
22431
  type?: "script" | "service" | undefined;
22378
22432
  exitCode?: number | null | undefined;
22379
22433
  terminalId?: string | null | undefined;
22434
+ localProxyUrl?: string | null | undefined;
22435
+ publicProxyUrl?: string | null | undefined;
22380
22436
  proxyUrl?: string | null | undefined;
22381
22437
  }[] | undefined;
22382
22438
  projectCustomName?: string | null | undefined;
@@ -22475,6 +22531,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22475
22531
  proxyUrl: string | null;
22476
22532
  lifecycle: "running" | "stopped";
22477
22533
  health: "healthy" | "unhealthy" | null;
22534
+ localProxyUrl?: string | null | undefined;
22535
+ publicProxyUrl?: string | null | undefined;
22478
22536
  }[];
22479
22537
  projectId: string;
22480
22538
  projectDisplayName: string;
@@ -22581,6 +22639,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22581
22639
  type?: "script" | "service" | undefined;
22582
22640
  exitCode?: number | null | undefined;
22583
22641
  terminalId?: string | null | undefined;
22642
+ localProxyUrl?: string | null | undefined;
22643
+ publicProxyUrl?: string | null | undefined;
22584
22644
  proxyUrl?: string | null | undefined;
22585
22645
  }[] | undefined;
22586
22646
  projectCustomName?: string | null | undefined;
@@ -22691,6 +22751,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22691
22751
  proxyUrl: string | null;
22692
22752
  lifecycle: "running" | "stopped";
22693
22753
  health: "healthy" | "unhealthy" | null;
22754
+ localProxyUrl?: string | null | undefined;
22755
+ publicProxyUrl?: string | null | undefined;
22694
22756
  }[];
22695
22757
  projectId: string;
22696
22758
  projectDisplayName: string;
@@ -22803,6 +22865,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22803
22865
  type?: "script" | "service" | undefined;
22804
22866
  exitCode?: number | null | undefined;
22805
22867
  terminalId?: string | null | undefined;
22868
+ localProxyUrl?: string | null | undefined;
22869
+ publicProxyUrl?: string | null | undefined;
22806
22870
  proxyUrl?: string | null | undefined;
22807
22871
  }[] | undefined;
22808
22872
  projectCustomName?: string | null | undefined;
@@ -22898,6 +22962,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22898
22962
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
22899
22963
  hostname: z.ZodString;
22900
22964
  port: z.ZodNullable<z.ZodNumber>;
22965
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22966
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22901
22967
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
22902
22968
  lifecycle: z.ZodEnum<["running", "stopped"]>;
22903
22969
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -22913,6 +22979,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22913
22979
  proxyUrl: string | null;
22914
22980
  lifecycle: "running" | "stopped";
22915
22981
  health: "healthy" | "unhealthy" | null;
22982
+ localProxyUrl?: string | null | undefined;
22983
+ publicProxyUrl?: string | null | undefined;
22916
22984
  }, {
22917
22985
  port: number | null;
22918
22986
  scriptName: string;
@@ -22922,6 +22990,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22922
22990
  type?: "script" | "service" | undefined;
22923
22991
  exitCode?: number | null | undefined;
22924
22992
  terminalId?: string | null | undefined;
22993
+ localProxyUrl?: string | null | undefined;
22994
+ publicProxyUrl?: string | null | undefined;
22925
22995
  proxyUrl?: string | null | undefined;
22926
22996
  }>, "many">;
22927
22997
  }, "strip", z.ZodTypeAny, {
@@ -22935,6 +23005,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22935
23005
  proxyUrl: string | null;
22936
23006
  lifecycle: "running" | "stopped";
22937
23007
  health: "healthy" | "unhealthy" | null;
23008
+ localProxyUrl?: string | null | undefined;
23009
+ publicProxyUrl?: string | null | undefined;
22938
23010
  }[];
22939
23011
  workspaceId: string;
22940
23012
  }, {
@@ -22947,6 +23019,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22947
23019
  type?: "script" | "service" | undefined;
22948
23020
  exitCode?: number | null | undefined;
22949
23021
  terminalId?: string | null | undefined;
23022
+ localProxyUrl?: string | null | undefined;
23023
+ publicProxyUrl?: string | null | undefined;
22950
23024
  proxyUrl?: string | null | undefined;
22951
23025
  }[];
22952
23026
  workspaceId: string;
@@ -22964,6 +23038,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22964
23038
  proxyUrl: string | null;
22965
23039
  lifecycle: "running" | "stopped";
22966
23040
  health: "healthy" | "unhealthy" | null;
23041
+ localProxyUrl?: string | null | undefined;
23042
+ publicProxyUrl?: string | null | undefined;
22967
23043
  }[];
22968
23044
  workspaceId: string;
22969
23045
  };
@@ -22979,6 +23055,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22979
23055
  type?: "script" | "service" | undefined;
22980
23056
  exitCode?: number | null | undefined;
22981
23057
  terminalId?: string | null | undefined;
23058
+ localProxyUrl?: string | null | undefined;
23059
+ publicProxyUrl?: string | null | undefined;
22982
23060
  proxyUrl?: string | null | undefined;
22983
23061
  }[];
22984
23062
  workspaceId: string;
@@ -23485,6 +23563,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
23485
23563
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
23486
23564
  hostname: z.ZodString;
23487
23565
  port: z.ZodNullable<z.ZodNumber>;
23566
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23567
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23488
23568
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
23489
23569
  lifecycle: z.ZodEnum<["running", "stopped"]>;
23490
23570
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -23500,6 +23580,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
23500
23580
  proxyUrl: string | null;
23501
23581
  lifecycle: "running" | "stopped";
23502
23582
  health: "healthy" | "unhealthy" | null;
23583
+ localProxyUrl?: string | null | undefined;
23584
+ publicProxyUrl?: string | null | undefined;
23503
23585
  }, {
23504
23586
  port: number | null;
23505
23587
  scriptName: string;
@@ -23509,6 +23591,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
23509
23591
  type?: "script" | "service" | undefined;
23510
23592
  exitCode?: number | null | undefined;
23511
23593
  terminalId?: string | null | undefined;
23594
+ localProxyUrl?: string | null | undefined;
23595
+ publicProxyUrl?: string | null | undefined;
23512
23596
  proxyUrl?: string | null | undefined;
23513
23597
  }>, "many">>;
23514
23598
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -23894,6 +23978,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
23894
23978
  proxyUrl: string | null;
23895
23979
  lifecycle: "running" | "stopped";
23896
23980
  health: "healthy" | "unhealthy" | null;
23981
+ localProxyUrl?: string | null | undefined;
23982
+ publicProxyUrl?: string | null | undefined;
23897
23983
  }[];
23898
23984
  projectId: string;
23899
23985
  projectDisplayName: string;
@@ -23998,6 +24084,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
23998
24084
  type?: "script" | "service" | undefined;
23999
24085
  exitCode?: number | null | undefined;
24000
24086
  terminalId?: string | null | undefined;
24087
+ localProxyUrl?: string | null | undefined;
24088
+ publicProxyUrl?: string | null | undefined;
24001
24089
  proxyUrl?: string | null | undefined;
24002
24090
  }[] | undefined;
24003
24091
  projectCustomName?: string | null | undefined;
@@ -24093,6 +24181,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24093
24181
  proxyUrl: string | null;
24094
24182
  lifecycle: "running" | "stopped";
24095
24183
  health: "healthy" | "unhealthy" | null;
24184
+ localProxyUrl?: string | null | undefined;
24185
+ publicProxyUrl?: string | null | undefined;
24096
24186
  }[];
24097
24187
  projectId: string;
24098
24188
  projectDisplayName: string;
@@ -24196,6 +24286,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24196
24286
  type?: "script" | "service" | undefined;
24197
24287
  exitCode?: number | null | undefined;
24198
24288
  terminalId?: string | null | undefined;
24289
+ localProxyUrl?: string | null | undefined;
24290
+ publicProxyUrl?: string | null | undefined;
24199
24291
  proxyUrl?: string | null | undefined;
24200
24292
  }[] | undefined;
24201
24293
  projectCustomName?: string | null | undefined;
@@ -24296,6 +24388,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24296
24388
  proxyUrl: string | null;
24297
24389
  lifecycle: "running" | "stopped";
24298
24390
  health: "healthy" | "unhealthy" | null;
24391
+ localProxyUrl?: string | null | undefined;
24392
+ publicProxyUrl?: string | null | undefined;
24299
24393
  }[];
24300
24394
  projectId: string;
24301
24395
  projectDisplayName: string;
@@ -24403,6 +24497,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24403
24497
  type?: "script" | "service" | undefined;
24404
24498
  exitCode?: number | null | undefined;
24405
24499
  terminalId?: string | null | undefined;
24500
+ localProxyUrl?: string | null | undefined;
24501
+ publicProxyUrl?: string | null | undefined;
24406
24502
  proxyUrl?: string | null | undefined;
24407
24503
  }[] | undefined;
24408
24504
  projectCustomName?: string | null | undefined;
@@ -24505,6 +24601,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24505
24601
  proxyUrl: string | null;
24506
24602
  lifecycle: "running" | "stopped";
24507
24603
  health: "healthy" | "unhealthy" | null;
24604
+ localProxyUrl?: string | null | undefined;
24605
+ publicProxyUrl?: string | null | undefined;
24508
24606
  }[];
24509
24607
  projectId: string;
24510
24608
  projectDisplayName: string;
@@ -24615,6 +24713,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24615
24713
  type?: "script" | "service" | undefined;
24616
24714
  exitCode?: number | null | undefined;
24617
24715
  terminalId?: string | null | undefined;
24716
+ localProxyUrl?: string | null | undefined;
24717
+ publicProxyUrl?: string | null | undefined;
24618
24718
  proxyUrl?: string | null | undefined;
24619
24719
  }[] | undefined;
24620
24720
  projectCustomName?: string | null | undefined;
@@ -35747,6 +35847,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
35747
35847
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
35748
35848
  hostname: z.ZodString;
35749
35849
  port: z.ZodNullable<z.ZodNumber>;
35850
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35851
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35750
35852
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
35751
35853
  lifecycle: z.ZodEnum<["running", "stopped"]>;
35752
35854
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -35762,6 +35864,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
35762
35864
  proxyUrl: string | null;
35763
35865
  lifecycle: "running" | "stopped";
35764
35866
  health: "healthy" | "unhealthy" | null;
35867
+ localProxyUrl?: string | null | undefined;
35868
+ publicProxyUrl?: string | null | undefined;
35765
35869
  }, {
35766
35870
  port: number | null;
35767
35871
  scriptName: string;
@@ -35771,6 +35875,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
35771
35875
  type?: "script" | "service" | undefined;
35772
35876
  exitCode?: number | null | undefined;
35773
35877
  terminalId?: string | null | undefined;
35878
+ localProxyUrl?: string | null | undefined;
35879
+ publicProxyUrl?: string | null | undefined;
35774
35880
  proxyUrl?: string | null | undefined;
35775
35881
  }>, "many">>;
35776
35882
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -36156,6 +36262,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36156
36262
  proxyUrl: string | null;
36157
36263
  lifecycle: "running" | "stopped";
36158
36264
  health: "healthy" | "unhealthy" | null;
36265
+ localProxyUrl?: string | null | undefined;
36266
+ publicProxyUrl?: string | null | undefined;
36159
36267
  }[];
36160
36268
  projectId: string;
36161
36269
  projectDisplayName: string;
@@ -36260,6 +36368,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36260
36368
  type?: "script" | "service" | undefined;
36261
36369
  exitCode?: number | null | undefined;
36262
36370
  terminalId?: string | null | undefined;
36371
+ localProxyUrl?: string | null | undefined;
36372
+ publicProxyUrl?: string | null | undefined;
36263
36373
  proxyUrl?: string | null | undefined;
36264
36374
  }[] | undefined;
36265
36375
  projectCustomName?: string | null | undefined;
@@ -36355,6 +36465,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36355
36465
  proxyUrl: string | null;
36356
36466
  lifecycle: "running" | "stopped";
36357
36467
  health: "healthy" | "unhealthy" | null;
36468
+ localProxyUrl?: string | null | undefined;
36469
+ publicProxyUrl?: string | null | undefined;
36358
36470
  }[];
36359
36471
  projectId: string;
36360
36472
  projectDisplayName: string;
@@ -36458,6 +36570,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36458
36570
  type?: "script" | "service" | undefined;
36459
36571
  exitCode?: number | null | undefined;
36460
36572
  terminalId?: string | null | undefined;
36573
+ localProxyUrl?: string | null | undefined;
36574
+ publicProxyUrl?: string | null | undefined;
36461
36575
  proxyUrl?: string | null | undefined;
36462
36576
  }[] | undefined;
36463
36577
  projectCustomName?: string | null | undefined;
@@ -36561,6 +36675,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36561
36675
  proxyUrl: string | null;
36562
36676
  lifecycle: "running" | "stopped";
36563
36677
  health: "healthy" | "unhealthy" | null;
36678
+ localProxyUrl?: string | null | undefined;
36679
+ publicProxyUrl?: string | null | undefined;
36564
36680
  }[];
36565
36681
  projectId: string;
36566
36682
  projectDisplayName: string;
@@ -36670,6 +36786,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36670
36786
  type?: "script" | "service" | undefined;
36671
36787
  exitCode?: number | null | undefined;
36672
36788
  terminalId?: string | null | undefined;
36789
+ localProxyUrl?: string | null | undefined;
36790
+ publicProxyUrl?: string | null | undefined;
36673
36791
  proxyUrl?: string | null | undefined;
36674
36792
  }[] | undefined;
36675
36793
  projectCustomName?: string | null | undefined;
@@ -36774,6 +36892,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36774
36892
  proxyUrl: string | null;
36775
36893
  lifecycle: "running" | "stopped";
36776
36894
  health: "healthy" | "unhealthy" | null;
36895
+ localProxyUrl?: string | null | undefined;
36896
+ publicProxyUrl?: string | null | undefined;
36777
36897
  }[];
36778
36898
  projectId: string;
36779
36899
  projectDisplayName: string;
@@ -36886,6 +37006,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36886
37006
  type?: "script" | "service" | undefined;
36887
37007
  exitCode?: number | null | undefined;
36888
37008
  terminalId?: string | null | undefined;
37009
+ localProxyUrl?: string | null | undefined;
37010
+ publicProxyUrl?: string | null | undefined;
36889
37011
  proxyUrl?: string | null | undefined;
36890
37012
  }[] | undefined;
36891
37013
  projectCustomName?: string | null | undefined;
@@ -39780,6 +39902,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
39780
39902
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
39781
39903
  hostname: z.ZodString;
39782
39904
  port: z.ZodNullable<z.ZodNumber>;
39905
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39906
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39783
39907
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
39784
39908
  lifecycle: z.ZodEnum<["running", "stopped"]>;
39785
39909
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -39795,6 +39919,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
39795
39919
  proxyUrl: string | null;
39796
39920
  lifecycle: "running" | "stopped";
39797
39921
  health: "healthy" | "unhealthy" | null;
39922
+ localProxyUrl?: string | null | undefined;
39923
+ publicProxyUrl?: string | null | undefined;
39798
39924
  }, {
39799
39925
  port: number | null;
39800
39926
  scriptName: string;
@@ -39804,6 +39930,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
39804
39930
  type?: "script" | "service" | undefined;
39805
39931
  exitCode?: number | null | undefined;
39806
39932
  terminalId?: string | null | undefined;
39933
+ localProxyUrl?: string | null | undefined;
39934
+ publicProxyUrl?: string | null | undefined;
39807
39935
  proxyUrl?: string | null | undefined;
39808
39936
  }>, "many">>;
39809
39937
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -40189,6 +40317,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40189
40317
  proxyUrl: string | null;
40190
40318
  lifecycle: "running" | "stopped";
40191
40319
  health: "healthy" | "unhealthy" | null;
40320
+ localProxyUrl?: string | null | undefined;
40321
+ publicProxyUrl?: string | null | undefined;
40192
40322
  }[];
40193
40323
  projectId: string;
40194
40324
  projectDisplayName: string;
@@ -40293,6 +40423,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40293
40423
  type?: "script" | "service" | undefined;
40294
40424
  exitCode?: number | null | undefined;
40295
40425
  terminalId?: string | null | undefined;
40426
+ localProxyUrl?: string | null | undefined;
40427
+ publicProxyUrl?: string | null | undefined;
40296
40428
  proxyUrl?: string | null | undefined;
40297
40429
  }[] | undefined;
40298
40430
  projectCustomName?: string | null | undefined;
@@ -40388,6 +40520,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40388
40520
  proxyUrl: string | null;
40389
40521
  lifecycle: "running" | "stopped";
40390
40522
  health: "healthy" | "unhealthy" | null;
40523
+ localProxyUrl?: string | null | undefined;
40524
+ publicProxyUrl?: string | null | undefined;
40391
40525
  }[];
40392
40526
  projectId: string;
40393
40527
  projectDisplayName: string;
@@ -40491,6 +40625,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40491
40625
  type?: "script" | "service" | undefined;
40492
40626
  exitCode?: number | null | undefined;
40493
40627
  terminalId?: string | null | undefined;
40628
+ localProxyUrl?: string | null | undefined;
40629
+ publicProxyUrl?: string | null | undefined;
40494
40630
  proxyUrl?: string | null | undefined;
40495
40631
  }[] | undefined;
40496
40632
  projectCustomName?: string | null | undefined;
@@ -40589,6 +40725,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40589
40725
  proxyUrl: string | null;
40590
40726
  lifecycle: "running" | "stopped";
40591
40727
  health: "healthy" | "unhealthy" | null;
40728
+ localProxyUrl?: string | null | undefined;
40729
+ publicProxyUrl?: string | null | undefined;
40592
40730
  }[];
40593
40731
  projectId: string;
40594
40732
  projectDisplayName: string;
@@ -40695,6 +40833,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40695
40833
  type?: "script" | "service" | undefined;
40696
40834
  exitCode?: number | null | undefined;
40697
40835
  terminalId?: string | null | undefined;
40836
+ localProxyUrl?: string | null | undefined;
40837
+ publicProxyUrl?: string | null | undefined;
40698
40838
  proxyUrl?: string | null | undefined;
40699
40839
  }[] | undefined;
40700
40840
  projectCustomName?: string | null | undefined;
@@ -40805,6 +40945,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40805
40945
  proxyUrl: string | null;
40806
40946
  lifecycle: "running" | "stopped";
40807
40947
  health: "healthy" | "unhealthy" | null;
40948
+ localProxyUrl?: string | null | undefined;
40949
+ publicProxyUrl?: string | null | undefined;
40808
40950
  }[];
40809
40951
  projectId: string;
40810
40952
  projectDisplayName: string;
@@ -40917,6 +41059,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40917
41059
  type?: "script" | "service" | undefined;
40918
41060
  exitCode?: number | null | undefined;
40919
41061
  terminalId?: string | null | undefined;
41062
+ localProxyUrl?: string | null | undefined;
41063
+ publicProxyUrl?: string | null | undefined;
40920
41064
  proxyUrl?: string | null | undefined;
40921
41065
  }[] | undefined;
40922
41066
  projectCustomName?: string | null | undefined;
@@ -41011,6 +41155,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41011
41155
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
41012
41156
  hostname: z.ZodString;
41013
41157
  port: z.ZodNullable<z.ZodNumber>;
41158
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41159
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41014
41160
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
41015
41161
  lifecycle: z.ZodEnum<["running", "stopped"]>;
41016
41162
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -41026,6 +41172,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41026
41172
  proxyUrl: string | null;
41027
41173
  lifecycle: "running" | "stopped";
41028
41174
  health: "healthy" | "unhealthy" | null;
41175
+ localProxyUrl?: string | null | undefined;
41176
+ publicProxyUrl?: string | null | undefined;
41029
41177
  }, {
41030
41178
  port: number | null;
41031
41179
  scriptName: string;
@@ -41035,6 +41183,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41035
41183
  type?: "script" | "service" | undefined;
41036
41184
  exitCode?: number | null | undefined;
41037
41185
  terminalId?: string | null | undefined;
41186
+ localProxyUrl?: string | null | undefined;
41187
+ publicProxyUrl?: string | null | undefined;
41038
41188
  proxyUrl?: string | null | undefined;
41039
41189
  }>, "many">;
41040
41190
  }, "strip", z.ZodTypeAny, {
@@ -41048,6 +41198,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41048
41198
  proxyUrl: string | null;
41049
41199
  lifecycle: "running" | "stopped";
41050
41200
  health: "healthy" | "unhealthy" | null;
41201
+ localProxyUrl?: string | null | undefined;
41202
+ publicProxyUrl?: string | null | undefined;
41051
41203
  }[];
41052
41204
  workspaceId: string;
41053
41205
  }, {
@@ -41060,6 +41212,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41060
41212
  type?: "script" | "service" | undefined;
41061
41213
  exitCode?: number | null | undefined;
41062
41214
  terminalId?: string | null | undefined;
41215
+ localProxyUrl?: string | null | undefined;
41216
+ publicProxyUrl?: string | null | undefined;
41063
41217
  proxyUrl?: string | null | undefined;
41064
41218
  }[];
41065
41219
  workspaceId: string;
@@ -41077,6 +41231,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41077
41231
  proxyUrl: string | null;
41078
41232
  lifecycle: "running" | "stopped";
41079
41233
  health: "healthy" | "unhealthy" | null;
41234
+ localProxyUrl?: string | null | undefined;
41235
+ publicProxyUrl?: string | null | undefined;
41080
41236
  }[];
41081
41237
  workspaceId: string;
41082
41238
  };
@@ -41092,6 +41248,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41092
41248
  type?: "script" | "service" | undefined;
41093
41249
  exitCode?: number | null | undefined;
41094
41250
  terminalId?: string | null | undefined;
41251
+ localProxyUrl?: string | null | undefined;
41252
+ publicProxyUrl?: string | null | undefined;
41095
41253
  proxyUrl?: string | null | undefined;
41096
41254
  }[];
41097
41255
  workspaceId: string;
@@ -44300,6 +44458,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44300
44458
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
44301
44459
  hostname: z.ZodString;
44302
44460
  port: z.ZodNullable<z.ZodNumber>;
44461
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
44462
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
44303
44463
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
44304
44464
  lifecycle: z.ZodEnum<["running", "stopped"]>;
44305
44465
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -44315,6 +44475,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44315
44475
  proxyUrl: string | null;
44316
44476
  lifecycle: "running" | "stopped";
44317
44477
  health: "healthy" | "unhealthy" | null;
44478
+ localProxyUrl?: string | null | undefined;
44479
+ publicProxyUrl?: string | null | undefined;
44318
44480
  }, {
44319
44481
  port: number | null;
44320
44482
  scriptName: string;
@@ -44324,6 +44486,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44324
44486
  type?: "script" | "service" | undefined;
44325
44487
  exitCode?: number | null | undefined;
44326
44488
  terminalId?: string | null | undefined;
44489
+ localProxyUrl?: string | null | undefined;
44490
+ publicProxyUrl?: string | null | undefined;
44327
44491
  proxyUrl?: string | null | undefined;
44328
44492
  }>, "many">>;
44329
44493
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -44709,6 +44873,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44709
44873
  proxyUrl: string | null;
44710
44874
  lifecycle: "running" | "stopped";
44711
44875
  health: "healthy" | "unhealthy" | null;
44876
+ localProxyUrl?: string | null | undefined;
44877
+ publicProxyUrl?: string | null | undefined;
44712
44878
  }[];
44713
44879
  projectId: string;
44714
44880
  projectDisplayName: string;
@@ -44813,6 +44979,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44813
44979
  type?: "script" | "service" | undefined;
44814
44980
  exitCode?: number | null | undefined;
44815
44981
  terminalId?: string | null | undefined;
44982
+ localProxyUrl?: string | null | undefined;
44983
+ publicProxyUrl?: string | null | undefined;
44816
44984
  proxyUrl?: string | null | undefined;
44817
44985
  }[] | undefined;
44818
44986
  projectCustomName?: string | null | undefined;
@@ -44908,6 +45076,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44908
45076
  proxyUrl: string | null;
44909
45077
  lifecycle: "running" | "stopped";
44910
45078
  health: "healthy" | "unhealthy" | null;
45079
+ localProxyUrl?: string | null | undefined;
45080
+ publicProxyUrl?: string | null | undefined;
44911
45081
  }[];
44912
45082
  projectId: string;
44913
45083
  projectDisplayName: string;
@@ -45011,6 +45181,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45011
45181
  type?: "script" | "service" | undefined;
45012
45182
  exitCode?: number | null | undefined;
45013
45183
  terminalId?: string | null | undefined;
45184
+ localProxyUrl?: string | null | undefined;
45185
+ publicProxyUrl?: string | null | undefined;
45014
45186
  proxyUrl?: string | null | undefined;
45015
45187
  }[] | undefined;
45016
45188
  projectCustomName?: string | null | undefined;
@@ -45121,6 +45293,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45121
45293
  proxyUrl: string | null;
45122
45294
  lifecycle: "running" | "stopped";
45123
45295
  health: "healthy" | "unhealthy" | null;
45296
+ localProxyUrl?: string | null | undefined;
45297
+ publicProxyUrl?: string | null | undefined;
45124
45298
  }[];
45125
45299
  projectId: string;
45126
45300
  projectDisplayName: string;
@@ -45233,6 +45407,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45233
45407
  type?: "script" | "service" | undefined;
45234
45408
  exitCode?: number | null | undefined;
45235
45409
  terminalId?: string | null | undefined;
45410
+ localProxyUrl?: string | null | undefined;
45411
+ publicProxyUrl?: string | null | undefined;
45236
45412
  proxyUrl?: string | null | undefined;
45237
45413
  }[] | undefined;
45238
45414
  projectCustomName?: string | null | undefined;
@@ -45340,6 +45516,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45340
45516
  proxyUrl: string | null;
45341
45517
  lifecycle: "running" | "stopped";
45342
45518
  health: "healthy" | "unhealthy" | null;
45519
+ localProxyUrl?: string | null | undefined;
45520
+ publicProxyUrl?: string | null | undefined;
45343
45521
  }[];
45344
45522
  projectId: string;
45345
45523
  projectDisplayName: string;
@@ -45455,6 +45633,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45455
45633
  type?: "script" | "service" | undefined;
45456
45634
  exitCode?: number | null | undefined;
45457
45635
  terminalId?: string | null | undefined;
45636
+ localProxyUrl?: string | null | undefined;
45637
+ publicProxyUrl?: string | null | undefined;
45458
45638
  proxyUrl?: string | null | undefined;
45459
45639
  }[] | undefined;
45460
45640
  projectCustomName?: string | null | undefined;
@@ -45576,6 +45756,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45576
45756
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
45577
45757
  hostname: z.ZodString;
45578
45758
  port: z.ZodNullable<z.ZodNumber>;
45759
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45760
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45579
45761
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
45580
45762
  lifecycle: z.ZodEnum<["running", "stopped"]>;
45581
45763
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -45591,6 +45773,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45591
45773
  proxyUrl: string | null;
45592
45774
  lifecycle: "running" | "stopped";
45593
45775
  health: "healthy" | "unhealthy" | null;
45776
+ localProxyUrl?: string | null | undefined;
45777
+ publicProxyUrl?: string | null | undefined;
45594
45778
  }, {
45595
45779
  port: number | null;
45596
45780
  scriptName: string;
@@ -45600,6 +45784,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45600
45784
  type?: "script" | "service" | undefined;
45601
45785
  exitCode?: number | null | undefined;
45602
45786
  terminalId?: string | null | undefined;
45787
+ localProxyUrl?: string | null | undefined;
45788
+ publicProxyUrl?: string | null | undefined;
45603
45789
  proxyUrl?: string | null | undefined;
45604
45790
  }>, "many">>;
45605
45791
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -45985,6 +46171,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45985
46171
  proxyUrl: string | null;
45986
46172
  lifecycle: "running" | "stopped";
45987
46173
  health: "healthy" | "unhealthy" | null;
46174
+ localProxyUrl?: string | null | undefined;
46175
+ publicProxyUrl?: string | null | undefined;
45988
46176
  }[];
45989
46177
  projectId: string;
45990
46178
  projectDisplayName: string;
@@ -46089,6 +46277,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46089
46277
  type?: "script" | "service" | undefined;
46090
46278
  exitCode?: number | null | undefined;
46091
46279
  terminalId?: string | null | undefined;
46280
+ localProxyUrl?: string | null | undefined;
46281
+ publicProxyUrl?: string | null | undefined;
46092
46282
  proxyUrl?: string | null | undefined;
46093
46283
  }[] | undefined;
46094
46284
  projectCustomName?: string | null | undefined;
@@ -46184,6 +46374,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46184
46374
  proxyUrl: string | null;
46185
46375
  lifecycle: "running" | "stopped";
46186
46376
  health: "healthy" | "unhealthy" | null;
46377
+ localProxyUrl?: string | null | undefined;
46378
+ publicProxyUrl?: string | null | undefined;
46187
46379
  }[];
46188
46380
  projectId: string;
46189
46381
  projectDisplayName: string;
@@ -46287,6 +46479,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46287
46479
  type?: "script" | "service" | undefined;
46288
46480
  exitCode?: number | null | undefined;
46289
46481
  terminalId?: string | null | undefined;
46482
+ localProxyUrl?: string | null | undefined;
46483
+ publicProxyUrl?: string | null | undefined;
46290
46484
  proxyUrl?: string | null | undefined;
46291
46485
  }[] | undefined;
46292
46486
  projectCustomName?: string | null | undefined;
@@ -46387,6 +46581,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46387
46581
  proxyUrl: string | null;
46388
46582
  lifecycle: "running" | "stopped";
46389
46583
  health: "healthy" | "unhealthy" | null;
46584
+ localProxyUrl?: string | null | undefined;
46585
+ publicProxyUrl?: string | null | undefined;
46390
46586
  }[];
46391
46587
  projectId: string;
46392
46588
  projectDisplayName: string;
@@ -46494,6 +46690,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46494
46690
  type?: "script" | "service" | undefined;
46495
46691
  exitCode?: number | null | undefined;
46496
46692
  terminalId?: string | null | undefined;
46693
+ localProxyUrl?: string | null | undefined;
46694
+ publicProxyUrl?: string | null | undefined;
46497
46695
  proxyUrl?: string | null | undefined;
46498
46696
  }[] | undefined;
46499
46697
  projectCustomName?: string | null | undefined;
@@ -46596,6 +46794,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46596
46794
  proxyUrl: string | null;
46597
46795
  lifecycle: "running" | "stopped";
46598
46796
  health: "healthy" | "unhealthy" | null;
46797
+ localProxyUrl?: string | null | undefined;
46798
+ publicProxyUrl?: string | null | undefined;
46599
46799
  }[];
46600
46800
  projectId: string;
46601
46801
  projectDisplayName: string;
@@ -46706,6 +46906,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46706
46906
  type?: "script" | "service" | undefined;
46707
46907
  exitCode?: number | null | undefined;
46708
46908
  terminalId?: string | null | undefined;
46909
+ localProxyUrl?: string | null | undefined;
46910
+ publicProxyUrl?: string | null | undefined;
46709
46911
  proxyUrl?: string | null | undefined;
46710
46912
  }[] | undefined;
46711
46913
  projectCustomName?: string | null | undefined;
@@ -57771,6 +57973,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
57771
57973
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
57772
57974
  hostname: z.ZodString;
57773
57975
  port: z.ZodNullable<z.ZodNumber>;
57976
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57977
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57774
57978
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
57775
57979
  lifecycle: z.ZodEnum<["running", "stopped"]>;
57776
57980
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -57786,6 +57990,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
57786
57990
  proxyUrl: string | null;
57787
57991
  lifecycle: "running" | "stopped";
57788
57992
  health: "healthy" | "unhealthy" | null;
57993
+ localProxyUrl?: string | null | undefined;
57994
+ publicProxyUrl?: string | null | undefined;
57789
57995
  }, {
57790
57996
  port: number | null;
57791
57997
  scriptName: string;
@@ -57795,6 +58001,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
57795
58001
  type?: "script" | "service" | undefined;
57796
58002
  exitCode?: number | null | undefined;
57797
58003
  terminalId?: string | null | undefined;
58004
+ localProxyUrl?: string | null | undefined;
58005
+ publicProxyUrl?: string | null | undefined;
57798
58006
  proxyUrl?: string | null | undefined;
57799
58007
  }>, "many">>;
57800
58008
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -58180,6 +58388,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58180
58388
  proxyUrl: string | null;
58181
58389
  lifecycle: "running" | "stopped";
58182
58390
  health: "healthy" | "unhealthy" | null;
58391
+ localProxyUrl?: string | null | undefined;
58392
+ publicProxyUrl?: string | null | undefined;
58183
58393
  }[];
58184
58394
  projectId: string;
58185
58395
  projectDisplayName: string;
@@ -58284,6 +58494,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58284
58494
  type?: "script" | "service" | undefined;
58285
58495
  exitCode?: number | null | undefined;
58286
58496
  terminalId?: string | null | undefined;
58497
+ localProxyUrl?: string | null | undefined;
58498
+ publicProxyUrl?: string | null | undefined;
58287
58499
  proxyUrl?: string | null | undefined;
58288
58500
  }[] | undefined;
58289
58501
  projectCustomName?: string | null | undefined;
@@ -58379,6 +58591,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58379
58591
  proxyUrl: string | null;
58380
58592
  lifecycle: "running" | "stopped";
58381
58593
  health: "healthy" | "unhealthy" | null;
58594
+ localProxyUrl?: string | null | undefined;
58595
+ publicProxyUrl?: string | null | undefined;
58382
58596
  }[];
58383
58597
  projectId: string;
58384
58598
  projectDisplayName: string;
@@ -58482,6 +58696,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58482
58696
  type?: "script" | "service" | undefined;
58483
58697
  exitCode?: number | null | undefined;
58484
58698
  terminalId?: string | null | undefined;
58699
+ localProxyUrl?: string | null | undefined;
58700
+ publicProxyUrl?: string | null | undefined;
58485
58701
  proxyUrl?: string | null | undefined;
58486
58702
  }[] | undefined;
58487
58703
  projectCustomName?: string | null | undefined;
@@ -58585,6 +58801,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58585
58801
  proxyUrl: string | null;
58586
58802
  lifecycle: "running" | "stopped";
58587
58803
  health: "healthy" | "unhealthy" | null;
58804
+ localProxyUrl?: string | null | undefined;
58805
+ publicProxyUrl?: string | null | undefined;
58588
58806
  }[];
58589
58807
  projectId: string;
58590
58808
  projectDisplayName: string;
@@ -58694,6 +58912,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58694
58912
  type?: "script" | "service" | undefined;
58695
58913
  exitCode?: number | null | undefined;
58696
58914
  terminalId?: string | null | undefined;
58915
+ localProxyUrl?: string | null | undefined;
58916
+ publicProxyUrl?: string | null | undefined;
58697
58917
  proxyUrl?: string | null | undefined;
58698
58918
  }[] | undefined;
58699
58919
  projectCustomName?: string | null | undefined;
@@ -58798,6 +59018,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58798
59018
  proxyUrl: string | null;
58799
59019
  lifecycle: "running" | "stopped";
58800
59020
  health: "healthy" | "unhealthy" | null;
59021
+ localProxyUrl?: string | null | undefined;
59022
+ publicProxyUrl?: string | null | undefined;
58801
59023
  }[];
58802
59024
  projectId: string;
58803
59025
  projectDisplayName: string;
@@ -58910,6 +59132,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58910
59132
  type?: "script" | "service" | undefined;
58911
59133
  exitCode?: number | null | undefined;
58912
59134
  terminalId?: string | null | undefined;
59135
+ localProxyUrl?: string | null | undefined;
59136
+ publicProxyUrl?: string | null | undefined;
58913
59137
  proxyUrl?: string | null | undefined;
58914
59138
  }[] | undefined;
58915
59139
  projectCustomName?: string | null | undefined;
@@ -74814,6 +75038,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
74814
75038
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
74815
75039
  hostname: z.ZodString;
74816
75040
  port: z.ZodNullable<z.ZodNumber>;
75041
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
75042
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74817
75043
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
74818
75044
  lifecycle: z.ZodEnum<["running", "stopped"]>;
74819
75045
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -74829,6 +75055,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
74829
75055
  proxyUrl: string | null;
74830
75056
  lifecycle: "running" | "stopped";
74831
75057
  health: "healthy" | "unhealthy" | null;
75058
+ localProxyUrl?: string | null | undefined;
75059
+ publicProxyUrl?: string | null | undefined;
74832
75060
  }, {
74833
75061
  port: number | null;
74834
75062
  scriptName: string;
@@ -74838,6 +75066,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
74838
75066
  type?: "script" | "service" | undefined;
74839
75067
  exitCode?: number | null | undefined;
74840
75068
  terminalId?: string | null | undefined;
75069
+ localProxyUrl?: string | null | undefined;
75070
+ publicProxyUrl?: string | null | undefined;
74841
75071
  proxyUrl?: string | null | undefined;
74842
75072
  }>, "many">>;
74843
75073
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -75223,6 +75453,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75223
75453
  proxyUrl: string | null;
75224
75454
  lifecycle: "running" | "stopped";
75225
75455
  health: "healthy" | "unhealthy" | null;
75456
+ localProxyUrl?: string | null | undefined;
75457
+ publicProxyUrl?: string | null | undefined;
75226
75458
  }[];
75227
75459
  projectId: string;
75228
75460
  projectDisplayName: string;
@@ -75327,6 +75559,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75327
75559
  type?: "script" | "service" | undefined;
75328
75560
  exitCode?: number | null | undefined;
75329
75561
  terminalId?: string | null | undefined;
75562
+ localProxyUrl?: string | null | undefined;
75563
+ publicProxyUrl?: string | null | undefined;
75330
75564
  proxyUrl?: string | null | undefined;
75331
75565
  }[] | undefined;
75332
75566
  projectCustomName?: string | null | undefined;
@@ -75422,6 +75656,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75422
75656
  proxyUrl: string | null;
75423
75657
  lifecycle: "running" | "stopped";
75424
75658
  health: "healthy" | "unhealthy" | null;
75659
+ localProxyUrl?: string | null | undefined;
75660
+ publicProxyUrl?: string | null | undefined;
75425
75661
  }[];
75426
75662
  projectId: string;
75427
75663
  projectDisplayName: string;
@@ -75525,6 +75761,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75525
75761
  type?: "script" | "service" | undefined;
75526
75762
  exitCode?: number | null | undefined;
75527
75763
  terminalId?: string | null | undefined;
75764
+ localProxyUrl?: string | null | undefined;
75765
+ publicProxyUrl?: string | null | undefined;
75528
75766
  proxyUrl?: string | null | undefined;
75529
75767
  }[] | undefined;
75530
75768
  projectCustomName?: string | null | undefined;
@@ -75623,6 +75861,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75623
75861
  proxyUrl: string | null;
75624
75862
  lifecycle: "running" | "stopped";
75625
75863
  health: "healthy" | "unhealthy" | null;
75864
+ localProxyUrl?: string | null | undefined;
75865
+ publicProxyUrl?: string | null | undefined;
75626
75866
  }[];
75627
75867
  projectId: string;
75628
75868
  projectDisplayName: string;
@@ -75729,6 +75969,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75729
75969
  type?: "script" | "service" | undefined;
75730
75970
  exitCode?: number | null | undefined;
75731
75971
  terminalId?: string | null | undefined;
75972
+ localProxyUrl?: string | null | undefined;
75973
+ publicProxyUrl?: string | null | undefined;
75732
75974
  proxyUrl?: string | null | undefined;
75733
75975
  }[] | undefined;
75734
75976
  projectCustomName?: string | null | undefined;
@@ -75839,6 +76081,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75839
76081
  proxyUrl: string | null;
75840
76082
  lifecycle: "running" | "stopped";
75841
76083
  health: "healthy" | "unhealthy" | null;
76084
+ localProxyUrl?: string | null | undefined;
76085
+ publicProxyUrl?: string | null | undefined;
75842
76086
  }[];
75843
76087
  projectId: string;
75844
76088
  projectDisplayName: string;
@@ -75951,6 +76195,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75951
76195
  type?: "script" | "service" | undefined;
75952
76196
  exitCode?: number | null | undefined;
75953
76197
  terminalId?: string | null | undefined;
76198
+ localProxyUrl?: string | null | undefined;
76199
+ publicProxyUrl?: string | null | undefined;
75954
76200
  proxyUrl?: string | null | undefined;
75955
76201
  }[] | undefined;
75956
76202
  projectCustomName?: string | null | undefined;
@@ -76045,6 +76291,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
76045
76291
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
76046
76292
  hostname: z.ZodString;
76047
76293
  port: z.ZodNullable<z.ZodNumber>;
76294
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
76295
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
76048
76296
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
76049
76297
  lifecycle: z.ZodEnum<["running", "stopped"]>;
76050
76298
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -76060,6 +76308,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
76060
76308
  proxyUrl: string | null;
76061
76309
  lifecycle: "running" | "stopped";
76062
76310
  health: "healthy" | "unhealthy" | null;
76311
+ localProxyUrl?: string | null | undefined;
76312
+ publicProxyUrl?: string | null | undefined;
76063
76313
  }, {
76064
76314
  port: number | null;
76065
76315
  scriptName: string;
@@ -76069,6 +76319,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
76069
76319
  type?: "script" | "service" | undefined;
76070
76320
  exitCode?: number | null | undefined;
76071
76321
  terminalId?: string | null | undefined;
76322
+ localProxyUrl?: string | null | undefined;
76323
+ publicProxyUrl?: string | null | undefined;
76072
76324
  proxyUrl?: string | null | undefined;
76073
76325
  }>, "many">;
76074
76326
  }, "strip", z.ZodTypeAny, {
@@ -76082,6 +76334,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
76082
76334
  proxyUrl: string | null;
76083
76335
  lifecycle: "running" | "stopped";
76084
76336
  health: "healthy" | "unhealthy" | null;
76337
+ localProxyUrl?: string | null | undefined;
76338
+ publicProxyUrl?: string | null | undefined;
76085
76339
  }[];
76086
76340
  workspaceId: string;
76087
76341
  }, {
@@ -76094,6 +76348,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
76094
76348
  type?: "script" | "service" | undefined;
76095
76349
  exitCode?: number | null | undefined;
76096
76350
  terminalId?: string | null | undefined;
76351
+ localProxyUrl?: string | null | undefined;
76352
+ publicProxyUrl?: string | null | undefined;
76097
76353
  proxyUrl?: string | null | undefined;
76098
76354
  }[];
76099
76355
  workspaceId: string;
@@ -76111,6 +76367,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
76111
76367
  proxyUrl: string | null;
76112
76368
  lifecycle: "running" | "stopped";
76113
76369
  health: "healthy" | "unhealthy" | null;
76370
+ localProxyUrl?: string | null | undefined;
76371
+ publicProxyUrl?: string | null | undefined;
76114
76372
  }[];
76115
76373
  workspaceId: string;
76116
76374
  };
@@ -76126,6 +76384,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
76126
76384
  type?: "script" | "service" | undefined;
76127
76385
  exitCode?: number | null | undefined;
76128
76386
  terminalId?: string | null | undefined;
76387
+ localProxyUrl?: string | null | undefined;
76388
+ publicProxyUrl?: string | null | undefined;
76129
76389
  proxyUrl?: string | null | undefined;
76130
76390
  }[];
76131
76391
  workspaceId: string;
@@ -79334,6 +79594,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79334
79594
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
79335
79595
  hostname: z.ZodString;
79336
79596
  port: z.ZodNullable<z.ZodNumber>;
79597
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
79598
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
79337
79599
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
79338
79600
  lifecycle: z.ZodEnum<["running", "stopped"]>;
79339
79601
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -79349,6 +79611,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79349
79611
  proxyUrl: string | null;
79350
79612
  lifecycle: "running" | "stopped";
79351
79613
  health: "healthy" | "unhealthy" | null;
79614
+ localProxyUrl?: string | null | undefined;
79615
+ publicProxyUrl?: string | null | undefined;
79352
79616
  }, {
79353
79617
  port: number | null;
79354
79618
  scriptName: string;
@@ -79358,6 +79622,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79358
79622
  type?: "script" | "service" | undefined;
79359
79623
  exitCode?: number | null | undefined;
79360
79624
  terminalId?: string | null | undefined;
79625
+ localProxyUrl?: string | null | undefined;
79626
+ publicProxyUrl?: string | null | undefined;
79361
79627
  proxyUrl?: string | null | undefined;
79362
79628
  }>, "many">>;
79363
79629
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -79743,6 +80009,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79743
80009
  proxyUrl: string | null;
79744
80010
  lifecycle: "running" | "stopped";
79745
80011
  health: "healthy" | "unhealthy" | null;
80012
+ localProxyUrl?: string | null | undefined;
80013
+ publicProxyUrl?: string | null | undefined;
79746
80014
  }[];
79747
80015
  projectId: string;
79748
80016
  projectDisplayName: string;
@@ -79847,6 +80115,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79847
80115
  type?: "script" | "service" | undefined;
79848
80116
  exitCode?: number | null | undefined;
79849
80117
  terminalId?: string | null | undefined;
80118
+ localProxyUrl?: string | null | undefined;
80119
+ publicProxyUrl?: string | null | undefined;
79850
80120
  proxyUrl?: string | null | undefined;
79851
80121
  }[] | undefined;
79852
80122
  projectCustomName?: string | null | undefined;
@@ -79942,6 +80212,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79942
80212
  proxyUrl: string | null;
79943
80213
  lifecycle: "running" | "stopped";
79944
80214
  health: "healthy" | "unhealthy" | null;
80215
+ localProxyUrl?: string | null | undefined;
80216
+ publicProxyUrl?: string | null | undefined;
79945
80217
  }[];
79946
80218
  projectId: string;
79947
80219
  projectDisplayName: string;
@@ -80045,6 +80317,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80045
80317
  type?: "script" | "service" | undefined;
80046
80318
  exitCode?: number | null | undefined;
80047
80319
  terminalId?: string | null | undefined;
80320
+ localProxyUrl?: string | null | undefined;
80321
+ publicProxyUrl?: string | null | undefined;
80048
80322
  proxyUrl?: string | null | undefined;
80049
80323
  }[] | undefined;
80050
80324
  projectCustomName?: string | null | undefined;
@@ -80155,6 +80429,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80155
80429
  proxyUrl: string | null;
80156
80430
  lifecycle: "running" | "stopped";
80157
80431
  health: "healthy" | "unhealthy" | null;
80432
+ localProxyUrl?: string | null | undefined;
80433
+ publicProxyUrl?: string | null | undefined;
80158
80434
  }[];
80159
80435
  projectId: string;
80160
80436
  projectDisplayName: string;
@@ -80267,6 +80543,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80267
80543
  type?: "script" | "service" | undefined;
80268
80544
  exitCode?: number | null | undefined;
80269
80545
  terminalId?: string | null | undefined;
80546
+ localProxyUrl?: string | null | undefined;
80547
+ publicProxyUrl?: string | null | undefined;
80270
80548
  proxyUrl?: string | null | undefined;
80271
80549
  }[] | undefined;
80272
80550
  projectCustomName?: string | null | undefined;
@@ -80374,6 +80652,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80374
80652
  proxyUrl: string | null;
80375
80653
  lifecycle: "running" | "stopped";
80376
80654
  health: "healthy" | "unhealthy" | null;
80655
+ localProxyUrl?: string | null | undefined;
80656
+ publicProxyUrl?: string | null | undefined;
80377
80657
  }[];
80378
80658
  projectId: string;
80379
80659
  projectDisplayName: string;
@@ -80489,6 +80769,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80489
80769
  type?: "script" | "service" | undefined;
80490
80770
  exitCode?: number | null | undefined;
80491
80771
  terminalId?: string | null | undefined;
80772
+ localProxyUrl?: string | null | undefined;
80773
+ publicProxyUrl?: string | null | undefined;
80492
80774
  proxyUrl?: string | null | undefined;
80493
80775
  }[] | undefined;
80494
80776
  projectCustomName?: string | null | undefined;
@@ -80610,6 +80892,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80610
80892
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
80611
80893
  hostname: z.ZodString;
80612
80894
  port: z.ZodNullable<z.ZodNumber>;
80895
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
80896
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
80613
80897
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
80614
80898
  lifecycle: z.ZodEnum<["running", "stopped"]>;
80615
80899
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -80625,6 +80909,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80625
80909
  proxyUrl: string | null;
80626
80910
  lifecycle: "running" | "stopped";
80627
80911
  health: "healthy" | "unhealthy" | null;
80912
+ localProxyUrl?: string | null | undefined;
80913
+ publicProxyUrl?: string | null | undefined;
80628
80914
  }, {
80629
80915
  port: number | null;
80630
80916
  scriptName: string;
@@ -80634,6 +80920,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80634
80920
  type?: "script" | "service" | undefined;
80635
80921
  exitCode?: number | null | undefined;
80636
80922
  terminalId?: string | null | undefined;
80923
+ localProxyUrl?: string | null | undefined;
80924
+ publicProxyUrl?: string | null | undefined;
80637
80925
  proxyUrl?: string | null | undefined;
80638
80926
  }>, "many">>;
80639
80927
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -81019,6 +81307,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81019
81307
  proxyUrl: string | null;
81020
81308
  lifecycle: "running" | "stopped";
81021
81309
  health: "healthy" | "unhealthy" | null;
81310
+ localProxyUrl?: string | null | undefined;
81311
+ publicProxyUrl?: string | null | undefined;
81022
81312
  }[];
81023
81313
  projectId: string;
81024
81314
  projectDisplayName: string;
@@ -81123,6 +81413,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81123
81413
  type?: "script" | "service" | undefined;
81124
81414
  exitCode?: number | null | undefined;
81125
81415
  terminalId?: string | null | undefined;
81416
+ localProxyUrl?: string | null | undefined;
81417
+ publicProxyUrl?: string | null | undefined;
81126
81418
  proxyUrl?: string | null | undefined;
81127
81419
  }[] | undefined;
81128
81420
  projectCustomName?: string | null | undefined;
@@ -81218,6 +81510,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81218
81510
  proxyUrl: string | null;
81219
81511
  lifecycle: "running" | "stopped";
81220
81512
  health: "healthy" | "unhealthy" | null;
81513
+ localProxyUrl?: string | null | undefined;
81514
+ publicProxyUrl?: string | null | undefined;
81221
81515
  }[];
81222
81516
  projectId: string;
81223
81517
  projectDisplayName: string;
@@ -81321,6 +81615,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81321
81615
  type?: "script" | "service" | undefined;
81322
81616
  exitCode?: number | null | undefined;
81323
81617
  terminalId?: string | null | undefined;
81618
+ localProxyUrl?: string | null | undefined;
81619
+ publicProxyUrl?: string | null | undefined;
81324
81620
  proxyUrl?: string | null | undefined;
81325
81621
  }[] | undefined;
81326
81622
  projectCustomName?: string | null | undefined;
@@ -81421,6 +81717,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81421
81717
  proxyUrl: string | null;
81422
81718
  lifecycle: "running" | "stopped";
81423
81719
  health: "healthy" | "unhealthy" | null;
81720
+ localProxyUrl?: string | null | undefined;
81721
+ publicProxyUrl?: string | null | undefined;
81424
81722
  }[];
81425
81723
  projectId: string;
81426
81724
  projectDisplayName: string;
@@ -81528,6 +81826,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81528
81826
  type?: "script" | "service" | undefined;
81529
81827
  exitCode?: number | null | undefined;
81530
81828
  terminalId?: string | null | undefined;
81829
+ localProxyUrl?: string | null | undefined;
81830
+ publicProxyUrl?: string | null | undefined;
81531
81831
  proxyUrl?: string | null | undefined;
81532
81832
  }[] | undefined;
81533
81833
  projectCustomName?: string | null | undefined;
@@ -81630,6 +81930,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81630
81930
  proxyUrl: string | null;
81631
81931
  lifecycle: "running" | "stopped";
81632
81932
  health: "healthy" | "unhealthy" | null;
81933
+ localProxyUrl?: string | null | undefined;
81934
+ publicProxyUrl?: string | null | undefined;
81633
81935
  }[];
81634
81936
  projectId: string;
81635
81937
  projectDisplayName: string;
@@ -81740,6 +82042,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81740
82042
  type?: "script" | "service" | undefined;
81741
82043
  exitCode?: number | null | undefined;
81742
82044
  terminalId?: string | null | undefined;
82045
+ localProxyUrl?: string | null | undefined;
82046
+ publicProxyUrl?: string | null | undefined;
81743
82047
  proxyUrl?: string | null | undefined;
81744
82048
  }[] | undefined;
81745
82049
  projectCustomName?: string | null | undefined;
@@ -92805,6 +93109,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
92805
93109
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
92806
93110
  hostname: z.ZodString;
92807
93111
  port: z.ZodNullable<z.ZodNumber>;
93112
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
93113
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
92808
93114
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
92809
93115
  lifecycle: z.ZodEnum<["running", "stopped"]>;
92810
93116
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -92820,6 +93126,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
92820
93126
  proxyUrl: string | null;
92821
93127
  lifecycle: "running" | "stopped";
92822
93128
  health: "healthy" | "unhealthy" | null;
93129
+ localProxyUrl?: string | null | undefined;
93130
+ publicProxyUrl?: string | null | undefined;
92823
93131
  }, {
92824
93132
  port: number | null;
92825
93133
  scriptName: string;
@@ -92829,6 +93137,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
92829
93137
  type?: "script" | "service" | undefined;
92830
93138
  exitCode?: number | null | undefined;
92831
93139
  terminalId?: string | null | undefined;
93140
+ localProxyUrl?: string | null | undefined;
93141
+ publicProxyUrl?: string | null | undefined;
92832
93142
  proxyUrl?: string | null | undefined;
92833
93143
  }>, "many">>;
92834
93144
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -93214,6 +93524,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93214
93524
  proxyUrl: string | null;
93215
93525
  lifecycle: "running" | "stopped";
93216
93526
  health: "healthy" | "unhealthy" | null;
93527
+ localProxyUrl?: string | null | undefined;
93528
+ publicProxyUrl?: string | null | undefined;
93217
93529
  }[];
93218
93530
  projectId: string;
93219
93531
  projectDisplayName: string;
@@ -93318,6 +93630,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93318
93630
  type?: "script" | "service" | undefined;
93319
93631
  exitCode?: number | null | undefined;
93320
93632
  terminalId?: string | null | undefined;
93633
+ localProxyUrl?: string | null | undefined;
93634
+ publicProxyUrl?: string | null | undefined;
93321
93635
  proxyUrl?: string | null | undefined;
93322
93636
  }[] | undefined;
93323
93637
  projectCustomName?: string | null | undefined;
@@ -93413,6 +93727,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93413
93727
  proxyUrl: string | null;
93414
93728
  lifecycle: "running" | "stopped";
93415
93729
  health: "healthy" | "unhealthy" | null;
93730
+ localProxyUrl?: string | null | undefined;
93731
+ publicProxyUrl?: string | null | undefined;
93416
93732
  }[];
93417
93733
  projectId: string;
93418
93734
  projectDisplayName: string;
@@ -93516,6 +93832,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93516
93832
  type?: "script" | "service" | undefined;
93517
93833
  exitCode?: number | null | undefined;
93518
93834
  terminalId?: string | null | undefined;
93835
+ localProxyUrl?: string | null | undefined;
93836
+ publicProxyUrl?: string | null | undefined;
93519
93837
  proxyUrl?: string | null | undefined;
93520
93838
  }[] | undefined;
93521
93839
  projectCustomName?: string | null | undefined;
@@ -93619,6 +93937,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93619
93937
  proxyUrl: string | null;
93620
93938
  lifecycle: "running" | "stopped";
93621
93939
  health: "healthy" | "unhealthy" | null;
93940
+ localProxyUrl?: string | null | undefined;
93941
+ publicProxyUrl?: string | null | undefined;
93622
93942
  }[];
93623
93943
  projectId: string;
93624
93944
  projectDisplayName: string;
@@ -93728,6 +94048,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93728
94048
  type?: "script" | "service" | undefined;
93729
94049
  exitCode?: number | null | undefined;
93730
94050
  terminalId?: string | null | undefined;
94051
+ localProxyUrl?: string | null | undefined;
94052
+ publicProxyUrl?: string | null | undefined;
93731
94053
  proxyUrl?: string | null | undefined;
93732
94054
  }[] | undefined;
93733
94055
  projectCustomName?: string | null | undefined;
@@ -93832,6 +94154,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93832
94154
  proxyUrl: string | null;
93833
94155
  lifecycle: "running" | "stopped";
93834
94156
  health: "healthy" | "unhealthy" | null;
94157
+ localProxyUrl?: string | null | undefined;
94158
+ publicProxyUrl?: string | null | undefined;
93835
94159
  }[];
93836
94160
  projectId: string;
93837
94161
  projectDisplayName: string;
@@ -93944,6 +94268,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93944
94268
  type?: "script" | "service" | undefined;
93945
94269
  exitCode?: number | null | undefined;
93946
94270
  terminalId?: string | null | undefined;
94271
+ localProxyUrl?: string | null | undefined;
94272
+ publicProxyUrl?: string | null | undefined;
93947
94273
  proxyUrl?: string | null | undefined;
93948
94274
  }[] | undefined;
93949
94275
  projectCustomName?: string | null | undefined;
@@ -103396,6 +103722,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
103396
103722
  proxyUrl: string | null;
103397
103723
  lifecycle: "running" | "stopped";
103398
103724
  health: "healthy" | "unhealthy" | null;
103725
+ localProxyUrl?: string | null | undefined;
103726
+ publicProxyUrl?: string | null | undefined;
103399
103727
  }[];
103400
103728
  projectId: string;
103401
103729
  projectDisplayName: string;
@@ -103508,6 +103836,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
103508
103836
  proxyUrl: string | null;
103509
103837
  lifecycle: "running" | "stopped";
103510
103838
  health: "healthy" | "unhealthy" | null;
103839
+ localProxyUrl?: string | null | undefined;
103840
+ publicProxyUrl?: string | null | undefined;
103511
103841
  }[];
103512
103842
  projectId: string;
103513
103843
  projectDisplayName: string;
@@ -103610,6 +103940,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
103610
103940
  proxyUrl: string | null;
103611
103941
  lifecycle: "running" | "stopped";
103612
103942
  health: "healthy" | "unhealthy" | null;
103943
+ localProxyUrl?: string | null | undefined;
103944
+ publicProxyUrl?: string | null | undefined;
103613
103945
  }[];
103614
103946
  workspaceId: string;
103615
103947
  };
@@ -103682,6 +104014,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
103682
104014
  proxyUrl: string | null;
103683
104015
  lifecycle: "running" | "stopped";
103684
104016
  health: "healthy" | "unhealthy" | null;
104017
+ localProxyUrl?: string | null | undefined;
104018
+ publicProxyUrl?: string | null | undefined;
103685
104019
  }[];
103686
104020
  projectId: string;
103687
104021
  projectDisplayName: string;
@@ -105140,6 +105474,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105140
105474
  proxyUrl: string | null;
105141
105475
  lifecycle: "running" | "stopped";
105142
105476
  health: "healthy" | "unhealthy" | null;
105477
+ localProxyUrl?: string | null | undefined;
105478
+ publicProxyUrl?: string | null | undefined;
105143
105479
  }[];
105144
105480
  projectId: string;
105145
105481
  projectDisplayName: string;
@@ -106909,6 +107245,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
106909
107245
  type?: "script" | "service" | undefined;
106910
107246
  exitCode?: number | null | undefined;
106911
107247
  terminalId?: string | null | undefined;
107248
+ localProxyUrl?: string | null | undefined;
107249
+ publicProxyUrl?: string | null | undefined;
106912
107250
  proxyUrl?: string | null | undefined;
106913
107251
  }[] | undefined;
106914
107252
  projectCustomName?: string | null | undefined;
@@ -107021,6 +107359,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
107021
107359
  type?: "script" | "service" | undefined;
107022
107360
  exitCode?: number | null | undefined;
107023
107361
  terminalId?: string | null | undefined;
107362
+ localProxyUrl?: string | null | undefined;
107363
+ publicProxyUrl?: string | null | undefined;
107024
107364
  proxyUrl?: string | null | undefined;
107025
107365
  }[] | undefined;
107026
107366
  projectCustomName?: string | null | undefined;
@@ -107118,6 +107458,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
107118
107458
  type?: "script" | "service" | undefined;
107119
107459
  exitCode?: number | null | undefined;
107120
107460
  terminalId?: string | null | undefined;
107461
+ localProxyUrl?: string | null | undefined;
107462
+ publicProxyUrl?: string | null | undefined;
107121
107463
  proxyUrl?: string | null | undefined;
107122
107464
  }[];
107123
107465
  workspaceId: string;
@@ -107195,6 +107537,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
107195
107537
  type?: "script" | "service" | undefined;
107196
107538
  exitCode?: number | null | undefined;
107197
107539
  terminalId?: string | null | undefined;
107540
+ localProxyUrl?: string | null | undefined;
107541
+ publicProxyUrl?: string | null | undefined;
107198
107542
  proxyUrl?: string | null | undefined;
107199
107543
  }[] | undefined;
107200
107544
  projectCustomName?: string | null | undefined;
@@ -108612,6 +108956,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
108612
108956
  type?: "script" | "service" | undefined;
108613
108957
  exitCode?: number | null | undefined;
108614
108958
  terminalId?: string | null | undefined;
108959
+ localProxyUrl?: string | null | undefined;
108960
+ publicProxyUrl?: string | null | undefined;
108615
108961
  proxyUrl?: string | null | undefined;
108616
108962
  }[] | undefined;
108617
108963
  projectCustomName?: string | null | undefined;
@@ -116577,6 +116923,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
116577
116923
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
116578
116924
  hostname: z.ZodString;
116579
116925
  port: z.ZodNullable<z.ZodNumber>;
116926
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
116927
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
116580
116928
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
116581
116929
  lifecycle: z.ZodEnum<["running", "stopped"]>;
116582
116930
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -116592,6 +116940,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
116592
116940
  proxyUrl: string | null;
116593
116941
  lifecycle: "running" | "stopped";
116594
116942
  health: "healthy" | "unhealthy" | null;
116943
+ localProxyUrl?: string | null | undefined;
116944
+ publicProxyUrl?: string | null | undefined;
116595
116945
  }, {
116596
116946
  port: number | null;
116597
116947
  scriptName: string;
@@ -116601,6 +116951,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
116601
116951
  type?: "script" | "service" | undefined;
116602
116952
  exitCode?: number | null | undefined;
116603
116953
  terminalId?: string | null | undefined;
116954
+ localProxyUrl?: string | null | undefined;
116955
+ publicProxyUrl?: string | null | undefined;
116604
116956
  proxyUrl?: string | null | undefined;
116605
116957
  }>, "many">>;
116606
116958
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -116986,6 +117338,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
116986
117338
  proxyUrl: string | null;
116987
117339
  lifecycle: "running" | "stopped";
116988
117340
  health: "healthy" | "unhealthy" | null;
117341
+ localProxyUrl?: string | null | undefined;
117342
+ publicProxyUrl?: string | null | undefined;
116989
117343
  }[];
116990
117344
  projectId: string;
116991
117345
  projectDisplayName: string;
@@ -117090,6 +117444,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117090
117444
  type?: "script" | "service" | undefined;
117091
117445
  exitCode?: number | null | undefined;
117092
117446
  terminalId?: string | null | undefined;
117447
+ localProxyUrl?: string | null | undefined;
117448
+ publicProxyUrl?: string | null | undefined;
117093
117449
  proxyUrl?: string | null | undefined;
117094
117450
  }[] | undefined;
117095
117451
  projectCustomName?: string | null | undefined;
@@ -117185,6 +117541,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117185
117541
  proxyUrl: string | null;
117186
117542
  lifecycle: "running" | "stopped";
117187
117543
  health: "healthy" | "unhealthy" | null;
117544
+ localProxyUrl?: string | null | undefined;
117545
+ publicProxyUrl?: string | null | undefined;
117188
117546
  }[];
117189
117547
  projectId: string;
117190
117548
  projectDisplayName: string;
@@ -117288,6 +117646,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117288
117646
  type?: "script" | "service" | undefined;
117289
117647
  exitCode?: number | null | undefined;
117290
117648
  terminalId?: string | null | undefined;
117649
+ localProxyUrl?: string | null | undefined;
117650
+ publicProxyUrl?: string | null | undefined;
117291
117651
  proxyUrl?: string | null | undefined;
117292
117652
  }[] | undefined;
117293
117653
  projectCustomName?: string | null | undefined;
@@ -117386,6 +117746,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117386
117746
  proxyUrl: string | null;
117387
117747
  lifecycle: "running" | "stopped";
117388
117748
  health: "healthy" | "unhealthy" | null;
117749
+ localProxyUrl?: string | null | undefined;
117750
+ publicProxyUrl?: string | null | undefined;
117389
117751
  }[];
117390
117752
  projectId: string;
117391
117753
  projectDisplayName: string;
@@ -117492,6 +117854,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117492
117854
  type?: "script" | "service" | undefined;
117493
117855
  exitCode?: number | null | undefined;
117494
117856
  terminalId?: string | null | undefined;
117857
+ localProxyUrl?: string | null | undefined;
117858
+ publicProxyUrl?: string | null | undefined;
117495
117859
  proxyUrl?: string | null | undefined;
117496
117860
  }[] | undefined;
117497
117861
  projectCustomName?: string | null | undefined;
@@ -117602,6 +117966,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117602
117966
  proxyUrl: string | null;
117603
117967
  lifecycle: "running" | "stopped";
117604
117968
  health: "healthy" | "unhealthy" | null;
117969
+ localProxyUrl?: string | null | undefined;
117970
+ publicProxyUrl?: string | null | undefined;
117605
117971
  }[];
117606
117972
  projectId: string;
117607
117973
  projectDisplayName: string;
@@ -117714,6 +118080,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117714
118080
  type?: "script" | "service" | undefined;
117715
118081
  exitCode?: number | null | undefined;
117716
118082
  terminalId?: string | null | undefined;
118083
+ localProxyUrl?: string | null | undefined;
118084
+ publicProxyUrl?: string | null | undefined;
117717
118085
  proxyUrl?: string | null | undefined;
117718
118086
  }[] | undefined;
117719
118087
  projectCustomName?: string | null | undefined;
@@ -117808,6 +118176,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117808
118176
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
117809
118177
  hostname: z.ZodString;
117810
118178
  port: z.ZodNullable<z.ZodNumber>;
118179
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
118180
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
117811
118181
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
117812
118182
  lifecycle: z.ZodEnum<["running", "stopped"]>;
117813
118183
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -117823,6 +118193,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117823
118193
  proxyUrl: string | null;
117824
118194
  lifecycle: "running" | "stopped";
117825
118195
  health: "healthy" | "unhealthy" | null;
118196
+ localProxyUrl?: string | null | undefined;
118197
+ publicProxyUrl?: string | null | undefined;
117826
118198
  }, {
117827
118199
  port: number | null;
117828
118200
  scriptName: string;
@@ -117832,6 +118204,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117832
118204
  type?: "script" | "service" | undefined;
117833
118205
  exitCode?: number | null | undefined;
117834
118206
  terminalId?: string | null | undefined;
118207
+ localProxyUrl?: string | null | undefined;
118208
+ publicProxyUrl?: string | null | undefined;
117835
118209
  proxyUrl?: string | null | undefined;
117836
118210
  }>, "many">;
117837
118211
  }, "strip", z.ZodTypeAny, {
@@ -117845,6 +118219,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117845
118219
  proxyUrl: string | null;
117846
118220
  lifecycle: "running" | "stopped";
117847
118221
  health: "healthy" | "unhealthy" | null;
118222
+ localProxyUrl?: string | null | undefined;
118223
+ publicProxyUrl?: string | null | undefined;
117848
118224
  }[];
117849
118225
  workspaceId: string;
117850
118226
  }, {
@@ -117857,6 +118233,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117857
118233
  type?: "script" | "service" | undefined;
117858
118234
  exitCode?: number | null | undefined;
117859
118235
  terminalId?: string | null | undefined;
118236
+ localProxyUrl?: string | null | undefined;
118237
+ publicProxyUrl?: string | null | undefined;
117860
118238
  proxyUrl?: string | null | undefined;
117861
118239
  }[];
117862
118240
  workspaceId: string;
@@ -117874,6 +118252,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117874
118252
  proxyUrl: string | null;
117875
118253
  lifecycle: "running" | "stopped";
117876
118254
  health: "healthy" | "unhealthy" | null;
118255
+ localProxyUrl?: string | null | undefined;
118256
+ publicProxyUrl?: string | null | undefined;
117877
118257
  }[];
117878
118258
  workspaceId: string;
117879
118259
  };
@@ -117889,6 +118269,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117889
118269
  type?: "script" | "service" | undefined;
117890
118270
  exitCode?: number | null | undefined;
117891
118271
  terminalId?: string | null | undefined;
118272
+ localProxyUrl?: string | null | undefined;
118273
+ publicProxyUrl?: string | null | undefined;
117892
118274
  proxyUrl?: string | null | undefined;
117893
118275
  }[];
117894
118276
  workspaceId: string;
@@ -121097,6 +121479,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121097
121479
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
121098
121480
  hostname: z.ZodString;
121099
121481
  port: z.ZodNullable<z.ZodNumber>;
121482
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
121483
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
121100
121484
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
121101
121485
  lifecycle: z.ZodEnum<["running", "stopped"]>;
121102
121486
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -121112,6 +121496,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121112
121496
  proxyUrl: string | null;
121113
121497
  lifecycle: "running" | "stopped";
121114
121498
  health: "healthy" | "unhealthy" | null;
121499
+ localProxyUrl?: string | null | undefined;
121500
+ publicProxyUrl?: string | null | undefined;
121115
121501
  }, {
121116
121502
  port: number | null;
121117
121503
  scriptName: string;
@@ -121121,6 +121507,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121121
121507
  type?: "script" | "service" | undefined;
121122
121508
  exitCode?: number | null | undefined;
121123
121509
  terminalId?: string | null | undefined;
121510
+ localProxyUrl?: string | null | undefined;
121511
+ publicProxyUrl?: string | null | undefined;
121124
121512
  proxyUrl?: string | null | undefined;
121125
121513
  }>, "many">>;
121126
121514
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -121506,6 +121894,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121506
121894
  proxyUrl: string | null;
121507
121895
  lifecycle: "running" | "stopped";
121508
121896
  health: "healthy" | "unhealthy" | null;
121897
+ localProxyUrl?: string | null | undefined;
121898
+ publicProxyUrl?: string | null | undefined;
121509
121899
  }[];
121510
121900
  projectId: string;
121511
121901
  projectDisplayName: string;
@@ -121610,6 +122000,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121610
122000
  type?: "script" | "service" | undefined;
121611
122001
  exitCode?: number | null | undefined;
121612
122002
  terminalId?: string | null | undefined;
122003
+ localProxyUrl?: string | null | undefined;
122004
+ publicProxyUrl?: string | null | undefined;
121613
122005
  proxyUrl?: string | null | undefined;
121614
122006
  }[] | undefined;
121615
122007
  projectCustomName?: string | null | undefined;
@@ -121705,6 +122097,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121705
122097
  proxyUrl: string | null;
121706
122098
  lifecycle: "running" | "stopped";
121707
122099
  health: "healthy" | "unhealthy" | null;
122100
+ localProxyUrl?: string | null | undefined;
122101
+ publicProxyUrl?: string | null | undefined;
121708
122102
  }[];
121709
122103
  projectId: string;
121710
122104
  projectDisplayName: string;
@@ -121808,6 +122202,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121808
122202
  type?: "script" | "service" | undefined;
121809
122203
  exitCode?: number | null | undefined;
121810
122204
  terminalId?: string | null | undefined;
122205
+ localProxyUrl?: string | null | undefined;
122206
+ publicProxyUrl?: string | null | undefined;
121811
122207
  proxyUrl?: string | null | undefined;
121812
122208
  }[] | undefined;
121813
122209
  projectCustomName?: string | null | undefined;
@@ -121918,6 +122314,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121918
122314
  proxyUrl: string | null;
121919
122315
  lifecycle: "running" | "stopped";
121920
122316
  health: "healthy" | "unhealthy" | null;
122317
+ localProxyUrl?: string | null | undefined;
122318
+ publicProxyUrl?: string | null | undefined;
121921
122319
  }[];
121922
122320
  projectId: string;
121923
122321
  projectDisplayName: string;
@@ -122030,6 +122428,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122030
122428
  type?: "script" | "service" | undefined;
122031
122429
  exitCode?: number | null | undefined;
122032
122430
  terminalId?: string | null | undefined;
122431
+ localProxyUrl?: string | null | undefined;
122432
+ publicProxyUrl?: string | null | undefined;
122033
122433
  proxyUrl?: string | null | undefined;
122034
122434
  }[] | undefined;
122035
122435
  projectCustomName?: string | null | undefined;
@@ -122137,6 +122537,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122137
122537
  proxyUrl: string | null;
122138
122538
  lifecycle: "running" | "stopped";
122139
122539
  health: "healthy" | "unhealthy" | null;
122540
+ localProxyUrl?: string | null | undefined;
122541
+ publicProxyUrl?: string | null | undefined;
122140
122542
  }[];
122141
122543
  projectId: string;
122142
122544
  projectDisplayName: string;
@@ -122252,6 +122654,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122252
122654
  type?: "script" | "service" | undefined;
122253
122655
  exitCode?: number | null | undefined;
122254
122656
  terminalId?: string | null | undefined;
122657
+ localProxyUrl?: string | null | undefined;
122658
+ publicProxyUrl?: string | null | undefined;
122255
122659
  proxyUrl?: string | null | undefined;
122256
122660
  }[] | undefined;
122257
122661
  projectCustomName?: string | null | undefined;
@@ -122373,6 +122777,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122373
122777
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
122374
122778
  hostname: z.ZodString;
122375
122779
  port: z.ZodNullable<z.ZodNumber>;
122780
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
122781
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
122376
122782
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
122377
122783
  lifecycle: z.ZodEnum<["running", "stopped"]>;
122378
122784
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -122388,6 +122794,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122388
122794
  proxyUrl: string | null;
122389
122795
  lifecycle: "running" | "stopped";
122390
122796
  health: "healthy" | "unhealthy" | null;
122797
+ localProxyUrl?: string | null | undefined;
122798
+ publicProxyUrl?: string | null | undefined;
122391
122799
  }, {
122392
122800
  port: number | null;
122393
122801
  scriptName: string;
@@ -122397,6 +122805,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122397
122805
  type?: "script" | "service" | undefined;
122398
122806
  exitCode?: number | null | undefined;
122399
122807
  terminalId?: string | null | undefined;
122808
+ localProxyUrl?: string | null | undefined;
122809
+ publicProxyUrl?: string | null | undefined;
122400
122810
  proxyUrl?: string | null | undefined;
122401
122811
  }>, "many">>;
122402
122812
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -122782,6 +123192,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122782
123192
  proxyUrl: string | null;
122783
123193
  lifecycle: "running" | "stopped";
122784
123194
  health: "healthy" | "unhealthy" | null;
123195
+ localProxyUrl?: string | null | undefined;
123196
+ publicProxyUrl?: string | null | undefined;
122785
123197
  }[];
122786
123198
  projectId: string;
122787
123199
  projectDisplayName: string;
@@ -122886,6 +123298,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122886
123298
  type?: "script" | "service" | undefined;
122887
123299
  exitCode?: number | null | undefined;
122888
123300
  terminalId?: string | null | undefined;
123301
+ localProxyUrl?: string | null | undefined;
123302
+ publicProxyUrl?: string | null | undefined;
122889
123303
  proxyUrl?: string | null | undefined;
122890
123304
  }[] | undefined;
122891
123305
  projectCustomName?: string | null | undefined;
@@ -122981,6 +123395,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122981
123395
  proxyUrl: string | null;
122982
123396
  lifecycle: "running" | "stopped";
122983
123397
  health: "healthy" | "unhealthy" | null;
123398
+ localProxyUrl?: string | null | undefined;
123399
+ publicProxyUrl?: string | null | undefined;
122984
123400
  }[];
122985
123401
  projectId: string;
122986
123402
  projectDisplayName: string;
@@ -123084,6 +123500,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
123084
123500
  type?: "script" | "service" | undefined;
123085
123501
  exitCode?: number | null | undefined;
123086
123502
  terminalId?: string | null | undefined;
123503
+ localProxyUrl?: string | null | undefined;
123504
+ publicProxyUrl?: string | null | undefined;
123087
123505
  proxyUrl?: string | null | undefined;
123088
123506
  }[] | undefined;
123089
123507
  projectCustomName?: string | null | undefined;
@@ -123184,6 +123602,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
123184
123602
  proxyUrl: string | null;
123185
123603
  lifecycle: "running" | "stopped";
123186
123604
  health: "healthy" | "unhealthy" | null;
123605
+ localProxyUrl?: string | null | undefined;
123606
+ publicProxyUrl?: string | null | undefined;
123187
123607
  }[];
123188
123608
  projectId: string;
123189
123609
  projectDisplayName: string;
@@ -123291,6 +123711,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
123291
123711
  type?: "script" | "service" | undefined;
123292
123712
  exitCode?: number | null | undefined;
123293
123713
  terminalId?: string | null | undefined;
123714
+ localProxyUrl?: string | null | undefined;
123715
+ publicProxyUrl?: string | null | undefined;
123294
123716
  proxyUrl?: string | null | undefined;
123295
123717
  }[] | undefined;
123296
123718
  projectCustomName?: string | null | undefined;
@@ -123393,6 +123815,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
123393
123815
  proxyUrl: string | null;
123394
123816
  lifecycle: "running" | "stopped";
123395
123817
  health: "healthy" | "unhealthy" | null;
123818
+ localProxyUrl?: string | null | undefined;
123819
+ publicProxyUrl?: string | null | undefined;
123396
123820
  }[];
123397
123821
  projectId: string;
123398
123822
  projectDisplayName: string;
@@ -123503,6 +123927,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
123503
123927
  type?: "script" | "service" | undefined;
123504
123928
  exitCode?: number | null | undefined;
123505
123929
  terminalId?: string | null | undefined;
123930
+ localProxyUrl?: string | null | undefined;
123931
+ publicProxyUrl?: string | null | undefined;
123506
123932
  proxyUrl?: string | null | undefined;
123507
123933
  }[] | undefined;
123508
123934
  projectCustomName?: string | null | undefined;
@@ -134568,6 +134994,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
134568
134994
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
134569
134995
  hostname: z.ZodString;
134570
134996
  port: z.ZodNullable<z.ZodNumber>;
134997
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
134998
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
134571
134999
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
134572
135000
  lifecycle: z.ZodEnum<["running", "stopped"]>;
134573
135001
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -134583,6 +135011,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
134583
135011
  proxyUrl: string | null;
134584
135012
  lifecycle: "running" | "stopped";
134585
135013
  health: "healthy" | "unhealthy" | null;
135014
+ localProxyUrl?: string | null | undefined;
135015
+ publicProxyUrl?: string | null | undefined;
134586
135016
  }, {
134587
135017
  port: number | null;
134588
135018
  scriptName: string;
@@ -134592,6 +135022,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
134592
135022
  type?: "script" | "service" | undefined;
134593
135023
  exitCode?: number | null | undefined;
134594
135024
  terminalId?: string | null | undefined;
135025
+ localProxyUrl?: string | null | undefined;
135026
+ publicProxyUrl?: string | null | undefined;
134595
135027
  proxyUrl?: string | null | undefined;
134596
135028
  }>, "many">>;
134597
135029
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -134977,6 +135409,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
134977
135409
  proxyUrl: string | null;
134978
135410
  lifecycle: "running" | "stopped";
134979
135411
  health: "healthy" | "unhealthy" | null;
135412
+ localProxyUrl?: string | null | undefined;
135413
+ publicProxyUrl?: string | null | undefined;
134980
135414
  }[];
134981
135415
  projectId: string;
134982
135416
  projectDisplayName: string;
@@ -135081,6 +135515,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135081
135515
  type?: "script" | "service" | undefined;
135082
135516
  exitCode?: number | null | undefined;
135083
135517
  terminalId?: string | null | undefined;
135518
+ localProxyUrl?: string | null | undefined;
135519
+ publicProxyUrl?: string | null | undefined;
135084
135520
  proxyUrl?: string | null | undefined;
135085
135521
  }[] | undefined;
135086
135522
  projectCustomName?: string | null | undefined;
@@ -135176,6 +135612,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135176
135612
  proxyUrl: string | null;
135177
135613
  lifecycle: "running" | "stopped";
135178
135614
  health: "healthy" | "unhealthy" | null;
135615
+ localProxyUrl?: string | null | undefined;
135616
+ publicProxyUrl?: string | null | undefined;
135179
135617
  }[];
135180
135618
  projectId: string;
135181
135619
  projectDisplayName: string;
@@ -135279,6 +135717,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135279
135717
  type?: "script" | "service" | undefined;
135280
135718
  exitCode?: number | null | undefined;
135281
135719
  terminalId?: string | null | undefined;
135720
+ localProxyUrl?: string | null | undefined;
135721
+ publicProxyUrl?: string | null | undefined;
135282
135722
  proxyUrl?: string | null | undefined;
135283
135723
  }[] | undefined;
135284
135724
  projectCustomName?: string | null | undefined;
@@ -135382,6 +135822,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135382
135822
  proxyUrl: string | null;
135383
135823
  lifecycle: "running" | "stopped";
135384
135824
  health: "healthy" | "unhealthy" | null;
135825
+ localProxyUrl?: string | null | undefined;
135826
+ publicProxyUrl?: string | null | undefined;
135385
135827
  }[];
135386
135828
  projectId: string;
135387
135829
  projectDisplayName: string;
@@ -135491,6 +135933,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135491
135933
  type?: "script" | "service" | undefined;
135492
135934
  exitCode?: number | null | undefined;
135493
135935
  terminalId?: string | null | undefined;
135936
+ localProxyUrl?: string | null | undefined;
135937
+ publicProxyUrl?: string | null | undefined;
135494
135938
  proxyUrl?: string | null | undefined;
135495
135939
  }[] | undefined;
135496
135940
  projectCustomName?: string | null | undefined;
@@ -135595,6 +136039,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135595
136039
  proxyUrl: string | null;
135596
136040
  lifecycle: "running" | "stopped";
135597
136041
  health: "healthy" | "unhealthy" | null;
136042
+ localProxyUrl?: string | null | undefined;
136043
+ publicProxyUrl?: string | null | undefined;
135598
136044
  }[];
135599
136045
  projectId: string;
135600
136046
  projectDisplayName: string;
@@ -135707,6 +136153,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135707
136153
  type?: "script" | "service" | undefined;
135708
136154
  exitCode?: number | null | undefined;
135709
136155
  terminalId?: string | null | undefined;
136156
+ localProxyUrl?: string | null | undefined;
136157
+ publicProxyUrl?: string | null | undefined;
135710
136158
  proxyUrl?: string | null | undefined;
135711
136159
  }[] | undefined;
135712
136160
  projectCustomName?: string | null | undefined;
@@ -145159,6 +145607,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
145159
145607
  proxyUrl: string | null;
145160
145608
  lifecycle: "running" | "stopped";
145161
145609
  health: "healthy" | "unhealthy" | null;
145610
+ localProxyUrl?: string | null | undefined;
145611
+ publicProxyUrl?: string | null | undefined;
145162
145612
  }[];
145163
145613
  projectId: string;
145164
145614
  projectDisplayName: string;
@@ -145271,6 +145721,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
145271
145721
  proxyUrl: string | null;
145272
145722
  lifecycle: "running" | "stopped";
145273
145723
  health: "healthy" | "unhealthy" | null;
145724
+ localProxyUrl?: string | null | undefined;
145725
+ publicProxyUrl?: string | null | undefined;
145274
145726
  }[];
145275
145727
  projectId: string;
145276
145728
  projectDisplayName: string;
@@ -145373,6 +145825,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
145373
145825
  proxyUrl: string | null;
145374
145826
  lifecycle: "running" | "stopped";
145375
145827
  health: "healthy" | "unhealthy" | null;
145828
+ localProxyUrl?: string | null | undefined;
145829
+ publicProxyUrl?: string | null | undefined;
145376
145830
  }[];
145377
145831
  workspaceId: string;
145378
145832
  };
@@ -145445,6 +145899,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
145445
145899
  proxyUrl: string | null;
145446
145900
  lifecycle: "running" | "stopped";
145447
145901
  health: "healthy" | "unhealthy" | null;
145902
+ localProxyUrl?: string | null | undefined;
145903
+ publicProxyUrl?: string | null | undefined;
145448
145904
  }[];
145449
145905
  projectId: string;
145450
145906
  projectDisplayName: string;
@@ -146903,6 +147359,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
146903
147359
  proxyUrl: string | null;
146904
147360
  lifecycle: "running" | "stopped";
146905
147361
  health: "healthy" | "unhealthy" | null;
147362
+ localProxyUrl?: string | null | undefined;
147363
+ publicProxyUrl?: string | null | undefined;
146906
147364
  }[];
146907
147365
  projectId: string;
146908
147366
  projectDisplayName: string;
@@ -148672,6 +149130,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
148672
149130
  type?: "script" | "service" | undefined;
148673
149131
  exitCode?: number | null | undefined;
148674
149132
  terminalId?: string | null | undefined;
149133
+ localProxyUrl?: string | null | undefined;
149134
+ publicProxyUrl?: string | null | undefined;
148675
149135
  proxyUrl?: string | null | undefined;
148676
149136
  }[] | undefined;
148677
149137
  projectCustomName?: string | null | undefined;
@@ -148784,6 +149244,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
148784
149244
  type?: "script" | "service" | undefined;
148785
149245
  exitCode?: number | null | undefined;
148786
149246
  terminalId?: string | null | undefined;
149247
+ localProxyUrl?: string | null | undefined;
149248
+ publicProxyUrl?: string | null | undefined;
148787
149249
  proxyUrl?: string | null | undefined;
148788
149250
  }[] | undefined;
148789
149251
  projectCustomName?: string | null | undefined;
@@ -148881,6 +149343,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
148881
149343
  type?: "script" | "service" | undefined;
148882
149344
  exitCode?: number | null | undefined;
148883
149345
  terminalId?: string | null | undefined;
149346
+ localProxyUrl?: string | null | undefined;
149347
+ publicProxyUrl?: string | null | undefined;
148884
149348
  proxyUrl?: string | null | undefined;
148885
149349
  }[];
148886
149350
  workspaceId: string;
@@ -148958,6 +149422,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
148958
149422
  type?: "script" | "service" | undefined;
148959
149423
  exitCode?: number | null | undefined;
148960
149424
  terminalId?: string | null | undefined;
149425
+ localProxyUrl?: string | null | undefined;
149426
+ publicProxyUrl?: string | null | undefined;
148961
149427
  proxyUrl?: string | null | undefined;
148962
149428
  }[] | undefined;
148963
149429
  projectCustomName?: string | null | undefined;
@@ -150375,6 +150841,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
150375
150841
  type?: "script" | "service" | undefined;
150376
150842
  exitCode?: number | null | undefined;
150377
150843
  terminalId?: string | null | undefined;
150844
+ localProxyUrl?: string | null | undefined;
150845
+ publicProxyUrl?: string | null | undefined;
150378
150846
  proxyUrl?: string | null | undefined;
150379
150847
  }[] | undefined;
150380
150848
  projectCustomName?: string | null | undefined;