@getpaseo/protocol 0.1.87 → 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.
@@ -6220,14 +6220,14 @@ export declare const SubscribeTerminalRequestSchema: z.ZodObject<{
6220
6220
  size: z.ZodOptional<z.ZodObject<{
6221
6221
  rows: z.ZodNumber;
6222
6222
  cols: z.ZodNumber;
6223
- }, "strict", z.ZodTypeAny, {
6223
+ }, "strip", z.ZodTypeAny, {
6224
6224
  rows: number;
6225
6225
  cols: number;
6226
6226
  }, {
6227
6227
  rows: number;
6228
6228
  cols: number;
6229
6229
  }>>;
6230
- }, "strict", z.ZodTypeAny, {
6230
+ }, "strip", z.ZodTypeAny, {
6231
6231
  mode: "live" | "visible-snapshot" | "full-snapshot";
6232
6232
  size?: {
6233
6233
  rows: number;
@@ -9904,14 +9904,14 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
9904
9904
  size: z.ZodOptional<z.ZodObject<{
9905
9905
  rows: z.ZodNumber;
9906
9906
  cols: z.ZodNumber;
9907
- }, "strict", z.ZodTypeAny, {
9907
+ }, "strip", z.ZodTypeAny, {
9908
9908
  rows: number;
9909
9909
  cols: number;
9910
9910
  }, {
9911
9911
  rows: number;
9912
9912
  cols: number;
9913
9913
  }>>;
9914
- }, "strict", z.ZodTypeAny, {
9914
+ }, "strip", z.ZodTypeAny, {
9915
9915
  mode: "live" | "visible-snapshot" | "full-snapshot";
9916
9916
  size?: {
9917
9917
  rows: number;
@@ -10194,12 +10194,15 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
10194
10194
  }>, z.ZodObject<{
10195
10195
  type: z.ZodLiteral<"cron">;
10196
10196
  expression: z.ZodString;
10197
+ timezone: z.ZodOptional<z.ZodString>;
10197
10198
  }, "strip", z.ZodTypeAny, {
10198
10199
  type: "cron";
10199
10200
  expression: string;
10201
+ timezone?: string | undefined;
10200
10202
  }, {
10201
10203
  type: "cron";
10202
10204
  expression: string;
10205
+ timezone?: string | undefined;
10203
10206
  }>]>;
10204
10207
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10205
10208
  type: z.ZodLiteral<"self">;
@@ -10338,6 +10341,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
10338
10341
  } | {
10339
10342
  type: "cron";
10340
10343
  expression: string;
10344
+ timezone?: string | undefined;
10341
10345
  };
10342
10346
  target: {
10343
10347
  agentId: string;
@@ -10381,6 +10385,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
10381
10385
  } | {
10382
10386
  type: "cron";
10383
10387
  expression: string;
10388
+ timezone?: string | undefined;
10384
10389
  };
10385
10390
  target: {
10386
10391
  agentId: string;
@@ -10513,12 +10518,15 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
10513
10518
  }>, z.ZodObject<{
10514
10519
  type: z.ZodLiteral<"cron">;
10515
10520
  expression: z.ZodString;
10521
+ timezone: z.ZodOptional<z.ZodString>;
10516
10522
  }, "strip", z.ZodTypeAny, {
10517
10523
  type: "cron";
10518
10524
  expression: string;
10525
+ timezone?: string | undefined;
10519
10526
  }, {
10520
10527
  type: "cron";
10521
10528
  expression: string;
10529
+ timezone?: string | undefined;
10522
10530
  }>]>>;
10523
10531
  newAgentConfig: z.ZodOptional<z.ZodObject<{
10524
10532
  provider: z.ZodOptional<z.ZodString>;
@@ -10550,6 +10558,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
10550
10558
  } | {
10551
10559
  type: "cron";
10552
10560
  expression: string;
10561
+ timezone?: string | undefined;
10553
10562
  } | undefined;
10554
10563
  expiresAt?: string | null | undefined;
10555
10564
  maxRuns?: number | null | undefined;
@@ -10571,6 +10580,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
10571
10580
  } | {
10572
10581
  type: "cron";
10573
10582
  expression: string;
10583
+ timezone?: string | undefined;
10574
10584
  } | undefined;
10575
10585
  expiresAt?: string | null | undefined;
10576
10586
  maxRuns?: number | null | undefined;
@@ -15514,6 +15524,8 @@ export declare const WorkspaceScriptPayloadSchema: z.ZodObject<{
15514
15524
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
15515
15525
  hostname: z.ZodString;
15516
15526
  port: z.ZodNullable<z.ZodNumber>;
15527
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15528
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15517
15529
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15518
15530
  lifecycle: z.ZodEnum<["running", "stopped"]>;
15519
15531
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -15529,6 +15541,8 @@ export declare const WorkspaceScriptPayloadSchema: z.ZodObject<{
15529
15541
  proxyUrl: string | null;
15530
15542
  lifecycle: "running" | "stopped";
15531
15543
  health: "healthy" | "unhealthy" | null;
15544
+ localProxyUrl?: string | null | undefined;
15545
+ publicProxyUrl?: string | null | undefined;
15532
15546
  }, {
15533
15547
  port: number | null;
15534
15548
  scriptName: string;
@@ -15538,6 +15552,8 @@ export declare const WorkspaceScriptPayloadSchema: z.ZodObject<{
15538
15552
  type?: "script" | "service" | undefined;
15539
15553
  exitCode?: number | null | undefined;
15540
15554
  terminalId?: string | null | undefined;
15555
+ localProxyUrl?: string | null | undefined;
15556
+ publicProxyUrl?: string | null | undefined;
15541
15557
  proxyUrl?: string | null | undefined;
15542
15558
  }>;
15543
15559
  export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<{
@@ -15568,6 +15584,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
15568
15584
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
15569
15585
  hostname: z.ZodString;
15570
15586
  port: z.ZodNullable<z.ZodNumber>;
15587
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15588
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15571
15589
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15572
15590
  lifecycle: z.ZodEnum<["running", "stopped"]>;
15573
15591
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -15583,6 +15601,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
15583
15601
  proxyUrl: string | null;
15584
15602
  lifecycle: "running" | "stopped";
15585
15603
  health: "healthy" | "unhealthy" | null;
15604
+ localProxyUrl?: string | null | undefined;
15605
+ publicProxyUrl?: string | null | undefined;
15586
15606
  }, {
15587
15607
  port: number | null;
15588
15608
  scriptName: string;
@@ -15592,6 +15612,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
15592
15612
  type?: "script" | "service" | undefined;
15593
15613
  exitCode?: number | null | undefined;
15594
15614
  terminalId?: string | null | undefined;
15615
+ localProxyUrl?: string | null | undefined;
15616
+ publicProxyUrl?: string | null | undefined;
15595
15617
  proxyUrl?: string | null | undefined;
15596
15618
  }>, "many">>;
15597
15619
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -15977,6 +15999,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
15977
15999
  proxyUrl: string | null;
15978
16000
  lifecycle: "running" | "stopped";
15979
16001
  health: "healthy" | "unhealthy" | null;
16002
+ localProxyUrl?: string | null | undefined;
16003
+ publicProxyUrl?: string | null | undefined;
15980
16004
  }[];
15981
16005
  projectId: string;
15982
16006
  projectDisplayName: string;
@@ -16081,6 +16105,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
16081
16105
  type?: "script" | "service" | undefined;
16082
16106
  exitCode?: number | null | undefined;
16083
16107
  terminalId?: string | null | undefined;
16108
+ localProxyUrl?: string | null | undefined;
16109
+ publicProxyUrl?: string | null | undefined;
16084
16110
  proxyUrl?: string | null | undefined;
16085
16111
  }[] | undefined;
16086
16112
  projectCustomName?: string | null | undefined;
@@ -16176,6 +16202,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
16176
16202
  proxyUrl: string | null;
16177
16203
  lifecycle: "running" | "stopped";
16178
16204
  health: "healthy" | "unhealthy" | null;
16205
+ localProxyUrl?: string | null | undefined;
16206
+ publicProxyUrl?: string | null | undefined;
16179
16207
  }[];
16180
16208
  projectId: string;
16181
16209
  projectDisplayName: string;
@@ -16279,6 +16307,8 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodEffects<z.ZodObject<
16279
16307
  type?: "script" | "service" | undefined;
16280
16308
  exitCode?: number | null | undefined;
16281
16309
  terminalId?: string | null | undefined;
16310
+ localProxyUrl?: string | null | undefined;
16311
+ publicProxyUrl?: string | null | undefined;
16282
16312
  proxyUrl?: string | null | undefined;
16283
16313
  }[] | undefined;
16284
16314
  projectCustomName?: string | null | undefined;
@@ -20379,6 +20409,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20379
20409
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
20380
20410
  hostname: z.ZodString;
20381
20411
  port: z.ZodNullable<z.ZodNumber>;
20412
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20413
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20382
20414
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
20383
20415
  lifecycle: z.ZodEnum<["running", "stopped"]>;
20384
20416
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -20394,6 +20426,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20394
20426
  proxyUrl: string | null;
20395
20427
  lifecycle: "running" | "stopped";
20396
20428
  health: "healthy" | "unhealthy" | null;
20429
+ localProxyUrl?: string | null | undefined;
20430
+ publicProxyUrl?: string | null | undefined;
20397
20431
  }, {
20398
20432
  port: number | null;
20399
20433
  scriptName: string;
@@ -20403,6 +20437,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20403
20437
  type?: "script" | "service" | undefined;
20404
20438
  exitCode?: number | null | undefined;
20405
20439
  terminalId?: string | null | undefined;
20440
+ localProxyUrl?: string | null | undefined;
20441
+ publicProxyUrl?: string | null | undefined;
20406
20442
  proxyUrl?: string | null | undefined;
20407
20443
  }>, "many">>;
20408
20444
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -20788,6 +20824,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20788
20824
  proxyUrl: string | null;
20789
20825
  lifecycle: "running" | "stopped";
20790
20826
  health: "healthy" | "unhealthy" | null;
20827
+ localProxyUrl?: string | null | undefined;
20828
+ publicProxyUrl?: string | null | undefined;
20791
20829
  }[];
20792
20830
  projectId: string;
20793
20831
  projectDisplayName: string;
@@ -20892,6 +20930,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20892
20930
  type?: "script" | "service" | undefined;
20893
20931
  exitCode?: number | null | undefined;
20894
20932
  terminalId?: string | null | undefined;
20933
+ localProxyUrl?: string | null | undefined;
20934
+ publicProxyUrl?: string | null | undefined;
20895
20935
  proxyUrl?: string | null | undefined;
20896
20936
  }[] | undefined;
20897
20937
  projectCustomName?: string | null | undefined;
@@ -20987,6 +21027,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
20987
21027
  proxyUrl: string | null;
20988
21028
  lifecycle: "running" | "stopped";
20989
21029
  health: "healthy" | "unhealthy" | null;
21030
+ localProxyUrl?: string | null | undefined;
21031
+ publicProxyUrl?: string | null | undefined;
20990
21032
  }[];
20991
21033
  projectId: string;
20992
21034
  projectDisplayName: string;
@@ -21090,6 +21132,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
21090
21132
  type?: "script" | "service" | undefined;
21091
21133
  exitCode?: number | null | undefined;
21092
21134
  terminalId?: string | null | undefined;
21135
+ localProxyUrl?: string | null | undefined;
21136
+ publicProxyUrl?: string | null | undefined;
21093
21137
  proxyUrl?: string | null | undefined;
21094
21138
  }[] | undefined;
21095
21139
  projectCustomName?: string | null | undefined;
@@ -21200,6 +21244,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
21200
21244
  proxyUrl: string | null;
21201
21245
  lifecycle: "running" | "stopped";
21202
21246
  health: "healthy" | "unhealthy" | null;
21247
+ localProxyUrl?: string | null | undefined;
21248
+ publicProxyUrl?: string | null | undefined;
21203
21249
  }[];
21204
21250
  projectId: string;
21205
21251
  projectDisplayName: string;
@@ -21312,6 +21358,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
21312
21358
  type?: "script" | "service" | undefined;
21313
21359
  exitCode?: number | null | undefined;
21314
21360
  terminalId?: string | null | undefined;
21361
+ localProxyUrl?: string | null | undefined;
21362
+ publicProxyUrl?: string | null | undefined;
21315
21363
  proxyUrl?: string | null | undefined;
21316
21364
  }[] | undefined;
21317
21365
  projectCustomName?: string | null | undefined;
@@ -21419,6 +21467,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
21419
21467
  proxyUrl: string | null;
21420
21468
  lifecycle: "running" | "stopped";
21421
21469
  health: "healthy" | "unhealthy" | null;
21470
+ localProxyUrl?: string | null | undefined;
21471
+ publicProxyUrl?: string | null | undefined;
21422
21472
  }[];
21423
21473
  projectId: string;
21424
21474
  projectDisplayName: string;
@@ -21534,6 +21584,8 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
21534
21584
  type?: "script" | "service" | undefined;
21535
21585
  exitCode?: number | null | undefined;
21536
21586
  terminalId?: string | null | undefined;
21587
+ localProxyUrl?: string | null | undefined;
21588
+ publicProxyUrl?: string | null | undefined;
21537
21589
  proxyUrl?: string | null | undefined;
21538
21590
  }[] | undefined;
21539
21591
  projectCustomName?: string | null | undefined;
@@ -21656,6 +21708,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
21656
21708
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
21657
21709
  hostname: z.ZodString;
21658
21710
  port: z.ZodNullable<z.ZodNumber>;
21711
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21712
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21659
21713
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
21660
21714
  lifecycle: z.ZodEnum<["running", "stopped"]>;
21661
21715
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -21671,6 +21725,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
21671
21725
  proxyUrl: string | null;
21672
21726
  lifecycle: "running" | "stopped";
21673
21727
  health: "healthy" | "unhealthy" | null;
21728
+ localProxyUrl?: string | null | undefined;
21729
+ publicProxyUrl?: string | null | undefined;
21674
21730
  }, {
21675
21731
  port: number | null;
21676
21732
  scriptName: string;
@@ -21680,6 +21736,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
21680
21736
  type?: "script" | "service" | undefined;
21681
21737
  exitCode?: number | null | undefined;
21682
21738
  terminalId?: string | null | undefined;
21739
+ localProxyUrl?: string | null | undefined;
21740
+ publicProxyUrl?: string | null | undefined;
21683
21741
  proxyUrl?: string | null | undefined;
21684
21742
  }>, "many">>;
21685
21743
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -22065,6 +22123,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22065
22123
  proxyUrl: string | null;
22066
22124
  lifecycle: "running" | "stopped";
22067
22125
  health: "healthy" | "unhealthy" | null;
22126
+ localProxyUrl?: string | null | undefined;
22127
+ publicProxyUrl?: string | null | undefined;
22068
22128
  }[];
22069
22129
  projectId: string;
22070
22130
  projectDisplayName: string;
@@ -22169,6 +22229,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22169
22229
  type?: "script" | "service" | undefined;
22170
22230
  exitCode?: number | null | undefined;
22171
22231
  terminalId?: string | null | undefined;
22232
+ localProxyUrl?: string | null | undefined;
22233
+ publicProxyUrl?: string | null | undefined;
22172
22234
  proxyUrl?: string | null | undefined;
22173
22235
  }[] | undefined;
22174
22236
  projectCustomName?: string | null | undefined;
@@ -22264,6 +22326,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22264
22326
  proxyUrl: string | null;
22265
22327
  lifecycle: "running" | "stopped";
22266
22328
  health: "healthy" | "unhealthy" | null;
22329
+ localProxyUrl?: string | null | undefined;
22330
+ publicProxyUrl?: string | null | undefined;
22267
22331
  }[];
22268
22332
  projectId: string;
22269
22333
  projectDisplayName: string;
@@ -22367,6 +22431,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22367
22431
  type?: "script" | "service" | undefined;
22368
22432
  exitCode?: number | null | undefined;
22369
22433
  terminalId?: string | null | undefined;
22434
+ localProxyUrl?: string | null | undefined;
22435
+ publicProxyUrl?: string | null | undefined;
22370
22436
  proxyUrl?: string | null | undefined;
22371
22437
  }[] | undefined;
22372
22438
  projectCustomName?: string | null | undefined;
@@ -22465,6 +22531,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22465
22531
  proxyUrl: string | null;
22466
22532
  lifecycle: "running" | "stopped";
22467
22533
  health: "healthy" | "unhealthy" | null;
22534
+ localProxyUrl?: string | null | undefined;
22535
+ publicProxyUrl?: string | null | undefined;
22468
22536
  }[];
22469
22537
  projectId: string;
22470
22538
  projectDisplayName: string;
@@ -22571,6 +22639,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22571
22639
  type?: "script" | "service" | undefined;
22572
22640
  exitCode?: number | null | undefined;
22573
22641
  terminalId?: string | null | undefined;
22642
+ localProxyUrl?: string | null | undefined;
22643
+ publicProxyUrl?: string | null | undefined;
22574
22644
  proxyUrl?: string | null | undefined;
22575
22645
  }[] | undefined;
22576
22646
  projectCustomName?: string | null | undefined;
@@ -22681,6 +22751,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22681
22751
  proxyUrl: string | null;
22682
22752
  lifecycle: "running" | "stopped";
22683
22753
  health: "healthy" | "unhealthy" | null;
22754
+ localProxyUrl?: string | null | undefined;
22755
+ publicProxyUrl?: string | null | undefined;
22684
22756
  }[];
22685
22757
  projectId: string;
22686
22758
  projectDisplayName: string;
@@ -22793,6 +22865,8 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
22793
22865
  type?: "script" | "service" | undefined;
22794
22866
  exitCode?: number | null | undefined;
22795
22867
  terminalId?: string | null | undefined;
22868
+ localProxyUrl?: string | null | undefined;
22869
+ publicProxyUrl?: string | null | undefined;
22796
22870
  proxyUrl?: string | null | undefined;
22797
22871
  }[] | undefined;
22798
22872
  projectCustomName?: string | null | undefined;
@@ -22888,6 +22962,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22888
22962
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
22889
22963
  hostname: z.ZodString;
22890
22964
  port: z.ZodNullable<z.ZodNumber>;
22965
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22966
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22891
22967
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
22892
22968
  lifecycle: z.ZodEnum<["running", "stopped"]>;
22893
22969
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -22903,6 +22979,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22903
22979
  proxyUrl: string | null;
22904
22980
  lifecycle: "running" | "stopped";
22905
22981
  health: "healthy" | "unhealthy" | null;
22982
+ localProxyUrl?: string | null | undefined;
22983
+ publicProxyUrl?: string | null | undefined;
22906
22984
  }, {
22907
22985
  port: number | null;
22908
22986
  scriptName: string;
@@ -22912,6 +22990,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22912
22990
  type?: "script" | "service" | undefined;
22913
22991
  exitCode?: number | null | undefined;
22914
22992
  terminalId?: string | null | undefined;
22993
+ localProxyUrl?: string | null | undefined;
22994
+ publicProxyUrl?: string | null | undefined;
22915
22995
  proxyUrl?: string | null | undefined;
22916
22996
  }>, "many">;
22917
22997
  }, "strip", z.ZodTypeAny, {
@@ -22925,6 +23005,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22925
23005
  proxyUrl: string | null;
22926
23006
  lifecycle: "running" | "stopped";
22927
23007
  health: "healthy" | "unhealthy" | null;
23008
+ localProxyUrl?: string | null | undefined;
23009
+ publicProxyUrl?: string | null | undefined;
22928
23010
  }[];
22929
23011
  workspaceId: string;
22930
23012
  }, {
@@ -22937,6 +23019,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22937
23019
  type?: "script" | "service" | undefined;
22938
23020
  exitCode?: number | null | undefined;
22939
23021
  terminalId?: string | null | undefined;
23022
+ localProxyUrl?: string | null | undefined;
23023
+ publicProxyUrl?: string | null | undefined;
22940
23024
  proxyUrl?: string | null | undefined;
22941
23025
  }[];
22942
23026
  workspaceId: string;
@@ -22954,6 +23038,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22954
23038
  proxyUrl: string | null;
22955
23039
  lifecycle: "running" | "stopped";
22956
23040
  health: "healthy" | "unhealthy" | null;
23041
+ localProxyUrl?: string | null | undefined;
23042
+ publicProxyUrl?: string | null | undefined;
22957
23043
  }[];
22958
23044
  workspaceId: string;
22959
23045
  };
@@ -22969,6 +23055,8 @@ export declare const ScriptStatusUpdateMessageSchema: z.ZodObject<{
22969
23055
  type?: "script" | "service" | undefined;
22970
23056
  exitCode?: number | null | undefined;
22971
23057
  terminalId?: string | null | undefined;
23058
+ localProxyUrl?: string | null | undefined;
23059
+ publicProxyUrl?: string | null | undefined;
22972
23060
  proxyUrl?: string | null | undefined;
22973
23061
  }[];
22974
23062
  workspaceId: string;
@@ -23475,6 +23563,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
23475
23563
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
23476
23564
  hostname: z.ZodString;
23477
23565
  port: z.ZodNullable<z.ZodNumber>;
23566
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23567
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23478
23568
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
23479
23569
  lifecycle: z.ZodEnum<["running", "stopped"]>;
23480
23570
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -23490,6 +23580,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
23490
23580
  proxyUrl: string | null;
23491
23581
  lifecycle: "running" | "stopped";
23492
23582
  health: "healthy" | "unhealthy" | null;
23583
+ localProxyUrl?: string | null | undefined;
23584
+ publicProxyUrl?: string | null | undefined;
23493
23585
  }, {
23494
23586
  port: number | null;
23495
23587
  scriptName: string;
@@ -23499,6 +23591,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
23499
23591
  type?: "script" | "service" | undefined;
23500
23592
  exitCode?: number | null | undefined;
23501
23593
  terminalId?: string | null | undefined;
23594
+ localProxyUrl?: string | null | undefined;
23595
+ publicProxyUrl?: string | null | undefined;
23502
23596
  proxyUrl?: string | null | undefined;
23503
23597
  }>, "many">>;
23504
23598
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -23884,6 +23978,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
23884
23978
  proxyUrl: string | null;
23885
23979
  lifecycle: "running" | "stopped";
23886
23980
  health: "healthy" | "unhealthy" | null;
23981
+ localProxyUrl?: string | null | undefined;
23982
+ publicProxyUrl?: string | null | undefined;
23887
23983
  }[];
23888
23984
  projectId: string;
23889
23985
  projectDisplayName: string;
@@ -23988,6 +24084,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
23988
24084
  type?: "script" | "service" | undefined;
23989
24085
  exitCode?: number | null | undefined;
23990
24086
  terminalId?: string | null | undefined;
24087
+ localProxyUrl?: string | null | undefined;
24088
+ publicProxyUrl?: string | null | undefined;
23991
24089
  proxyUrl?: string | null | undefined;
23992
24090
  }[] | undefined;
23993
24091
  projectCustomName?: string | null | undefined;
@@ -24083,6 +24181,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24083
24181
  proxyUrl: string | null;
24084
24182
  lifecycle: "running" | "stopped";
24085
24183
  health: "healthy" | "unhealthy" | null;
24184
+ localProxyUrl?: string | null | undefined;
24185
+ publicProxyUrl?: string | null | undefined;
24086
24186
  }[];
24087
24187
  projectId: string;
24088
24188
  projectDisplayName: string;
@@ -24186,6 +24286,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24186
24286
  type?: "script" | "service" | undefined;
24187
24287
  exitCode?: number | null | undefined;
24188
24288
  terminalId?: string | null | undefined;
24289
+ localProxyUrl?: string | null | undefined;
24290
+ publicProxyUrl?: string | null | undefined;
24189
24291
  proxyUrl?: string | null | undefined;
24190
24292
  }[] | undefined;
24191
24293
  projectCustomName?: string | null | undefined;
@@ -24286,6 +24388,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24286
24388
  proxyUrl: string | null;
24287
24389
  lifecycle: "running" | "stopped";
24288
24390
  health: "healthy" | "unhealthy" | null;
24391
+ localProxyUrl?: string | null | undefined;
24392
+ publicProxyUrl?: string | null | undefined;
24289
24393
  }[];
24290
24394
  projectId: string;
24291
24395
  projectDisplayName: string;
@@ -24393,6 +24497,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24393
24497
  type?: "script" | "service" | undefined;
24394
24498
  exitCode?: number | null | undefined;
24395
24499
  terminalId?: string | null | undefined;
24500
+ localProxyUrl?: string | null | undefined;
24501
+ publicProxyUrl?: string | null | undefined;
24396
24502
  proxyUrl?: string | null | undefined;
24397
24503
  }[] | undefined;
24398
24504
  projectCustomName?: string | null | undefined;
@@ -24495,6 +24601,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24495
24601
  proxyUrl: string | null;
24496
24602
  lifecycle: "running" | "stopped";
24497
24603
  health: "healthy" | "unhealthy" | null;
24604
+ localProxyUrl?: string | null | undefined;
24605
+ publicProxyUrl?: string | null | undefined;
24498
24606
  }[];
24499
24607
  projectId: string;
24500
24608
  projectDisplayName: string;
@@ -24605,6 +24713,8 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
24605
24713
  type?: "script" | "service" | undefined;
24606
24714
  exitCode?: number | null | undefined;
24607
24715
  terminalId?: string | null | undefined;
24716
+ localProxyUrl?: string | null | undefined;
24717
+ publicProxyUrl?: string | null | undefined;
24608
24718
  proxyUrl?: string | null | undefined;
24609
24719
  }[] | undefined;
24610
24720
  projectCustomName?: string | null | undefined;
@@ -35737,6 +35847,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
35737
35847
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
35738
35848
  hostname: z.ZodString;
35739
35849
  port: z.ZodNullable<z.ZodNumber>;
35850
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35851
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35740
35852
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
35741
35853
  lifecycle: z.ZodEnum<["running", "stopped"]>;
35742
35854
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -35752,6 +35864,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
35752
35864
  proxyUrl: string | null;
35753
35865
  lifecycle: "running" | "stopped";
35754
35866
  health: "healthy" | "unhealthy" | null;
35867
+ localProxyUrl?: string | null | undefined;
35868
+ publicProxyUrl?: string | null | undefined;
35755
35869
  }, {
35756
35870
  port: number | null;
35757
35871
  scriptName: string;
@@ -35761,6 +35875,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
35761
35875
  type?: "script" | "service" | undefined;
35762
35876
  exitCode?: number | null | undefined;
35763
35877
  terminalId?: string | null | undefined;
35878
+ localProxyUrl?: string | null | undefined;
35879
+ publicProxyUrl?: string | null | undefined;
35764
35880
  proxyUrl?: string | null | undefined;
35765
35881
  }>, "many">>;
35766
35882
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -36146,6 +36262,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36146
36262
  proxyUrl: string | null;
36147
36263
  lifecycle: "running" | "stopped";
36148
36264
  health: "healthy" | "unhealthy" | null;
36265
+ localProxyUrl?: string | null | undefined;
36266
+ publicProxyUrl?: string | null | undefined;
36149
36267
  }[];
36150
36268
  projectId: string;
36151
36269
  projectDisplayName: string;
@@ -36250,6 +36368,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36250
36368
  type?: "script" | "service" | undefined;
36251
36369
  exitCode?: number | null | undefined;
36252
36370
  terminalId?: string | null | undefined;
36371
+ localProxyUrl?: string | null | undefined;
36372
+ publicProxyUrl?: string | null | undefined;
36253
36373
  proxyUrl?: string | null | undefined;
36254
36374
  }[] | undefined;
36255
36375
  projectCustomName?: string | null | undefined;
@@ -36345,6 +36465,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36345
36465
  proxyUrl: string | null;
36346
36466
  lifecycle: "running" | "stopped";
36347
36467
  health: "healthy" | "unhealthy" | null;
36468
+ localProxyUrl?: string | null | undefined;
36469
+ publicProxyUrl?: string | null | undefined;
36348
36470
  }[];
36349
36471
  projectId: string;
36350
36472
  projectDisplayName: string;
@@ -36448,6 +36570,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36448
36570
  type?: "script" | "service" | undefined;
36449
36571
  exitCode?: number | null | undefined;
36450
36572
  terminalId?: string | null | undefined;
36573
+ localProxyUrl?: string | null | undefined;
36574
+ publicProxyUrl?: string | null | undefined;
36451
36575
  proxyUrl?: string | null | undefined;
36452
36576
  }[] | undefined;
36453
36577
  projectCustomName?: string | null | undefined;
@@ -36551,6 +36675,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36551
36675
  proxyUrl: string | null;
36552
36676
  lifecycle: "running" | "stopped";
36553
36677
  health: "healthy" | "unhealthy" | null;
36678
+ localProxyUrl?: string | null | undefined;
36679
+ publicProxyUrl?: string | null | undefined;
36554
36680
  }[];
36555
36681
  projectId: string;
36556
36682
  projectDisplayName: string;
@@ -36660,6 +36786,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36660
36786
  type?: "script" | "service" | undefined;
36661
36787
  exitCode?: number | null | undefined;
36662
36788
  terminalId?: string | null | undefined;
36789
+ localProxyUrl?: string | null | undefined;
36790
+ publicProxyUrl?: string | null | undefined;
36663
36791
  proxyUrl?: string | null | undefined;
36664
36792
  }[] | undefined;
36665
36793
  projectCustomName?: string | null | undefined;
@@ -36764,6 +36892,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36764
36892
  proxyUrl: string | null;
36765
36893
  lifecycle: "running" | "stopped";
36766
36894
  health: "healthy" | "unhealthy" | null;
36895
+ localProxyUrl?: string | null | undefined;
36896
+ publicProxyUrl?: string | null | undefined;
36767
36897
  }[];
36768
36898
  projectId: string;
36769
36899
  projectDisplayName: string;
@@ -36876,6 +37006,8 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
36876
37006
  type?: "script" | "service" | undefined;
36877
37007
  exitCode?: number | null | undefined;
36878
37008
  terminalId?: string | null | undefined;
37009
+ localProxyUrl?: string | null | undefined;
37010
+ publicProxyUrl?: string | null | undefined;
36879
37011
  proxyUrl?: string | null | undefined;
36880
37012
  }[] | undefined;
36881
37013
  projectCustomName?: string | null | undefined;
@@ -37963,7 +38095,7 @@ export declare const TerminalCellSchema: z.ZodObject<{
37963
38095
  dim: z.ZodOptional<z.ZodBoolean>;
37964
38096
  inverse: z.ZodOptional<z.ZodBoolean>;
37965
38097
  strikethrough: z.ZodOptional<z.ZodBoolean>;
37966
- }, "strict", z.ZodTypeAny, {
38098
+ }, "strip", z.ZodTypeAny, {
37967
38099
  char: string;
37968
38100
  fg?: number | undefined;
37969
38101
  bg?: number | undefined;
@@ -37995,7 +38127,7 @@ export declare const TerminalCursorSchema: z.ZodObject<{
37995
38127
  hidden: z.ZodOptional<z.ZodBoolean>;
37996
38128
  style: z.ZodOptional<z.ZodEnum<["block", "underline", "bar"]>>;
37997
38129
  blink: z.ZodOptional<z.ZodBoolean>;
37998
- }, "strict", z.ZodTypeAny, {
38130
+ }, "strip", z.ZodTypeAny, {
37999
38131
  row: number;
38000
38132
  col: number;
38001
38133
  style?: "underline" | "block" | "bar" | undefined;
@@ -38023,7 +38155,7 @@ export declare const TerminalStateSchema: z.ZodObject<{
38023
38155
  dim: z.ZodOptional<z.ZodBoolean>;
38024
38156
  inverse: z.ZodOptional<z.ZodBoolean>;
38025
38157
  strikethrough: z.ZodOptional<z.ZodBoolean>;
38026
- }, "strict", z.ZodTypeAny, {
38158
+ }, "strip", z.ZodTypeAny, {
38027
38159
  char: string;
38028
38160
  fg?: number | undefined;
38029
38161
  bg?: number | undefined;
@@ -38060,7 +38192,7 @@ export declare const TerminalStateSchema: z.ZodObject<{
38060
38192
  dim: z.ZodOptional<z.ZodBoolean>;
38061
38193
  inverse: z.ZodOptional<z.ZodBoolean>;
38062
38194
  strikethrough: z.ZodOptional<z.ZodBoolean>;
38063
- }, "strict", z.ZodTypeAny, {
38195
+ }, "strip", z.ZodTypeAny, {
38064
38196
  char: string;
38065
38197
  fg?: number | undefined;
38066
38198
  bg?: number | undefined;
@@ -38091,7 +38223,7 @@ export declare const TerminalStateSchema: z.ZodObject<{
38091
38223
  hidden: z.ZodOptional<z.ZodBoolean>;
38092
38224
  style: z.ZodOptional<z.ZodEnum<["block", "underline", "bar"]>>;
38093
38225
  blink: z.ZodOptional<z.ZodBoolean>;
38094
- }, "strict", z.ZodTypeAny, {
38226
+ }, "strip", z.ZodTypeAny, {
38095
38227
  row: number;
38096
38228
  col: number;
38097
38229
  style?: "underline" | "block" | "bar" | undefined;
@@ -38105,7 +38237,9 @@ export declare const TerminalStateSchema: z.ZodObject<{
38105
38237
  blink?: boolean | undefined;
38106
38238
  }>;
38107
38239
  title: z.ZodOptional<z.ZodString>;
38108
- }, "strict", z.ZodTypeAny, {
38240
+ gridWrapped: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
38241
+ scrollbackWrapped: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
38242
+ }, "strip", z.ZodTypeAny, {
38109
38243
  cursor: {
38110
38244
  row: number;
38111
38245
  col: number;
@@ -38142,6 +38276,8 @@ export declare const TerminalStateSchema: z.ZodObject<{
38142
38276
  strikethrough?: boolean | undefined;
38143
38277
  }[][];
38144
38278
  title?: string | undefined;
38279
+ gridWrapped?: boolean[] | undefined;
38280
+ scrollbackWrapped?: boolean[] | undefined;
38145
38281
  }, {
38146
38282
  cursor: {
38147
38283
  row: number;
@@ -38179,6 +38315,8 @@ export declare const TerminalStateSchema: z.ZodObject<{
38179
38315
  strikethrough?: boolean | undefined;
38180
38316
  }[][];
38181
38317
  title?: string | undefined;
38318
+ gridWrapped?: boolean[] | undefined;
38319
+ scrollbackWrapped?: boolean[] | undefined;
38182
38320
  }>;
38183
38321
  export declare const ListTerminalsResponseSchema: z.ZodObject<{
38184
38322
  type: z.ZodLiteral<"list_terminals_response">;
@@ -39764,6 +39902,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
39764
39902
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
39765
39903
  hostname: z.ZodString;
39766
39904
  port: z.ZodNullable<z.ZodNumber>;
39905
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39906
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39767
39907
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
39768
39908
  lifecycle: z.ZodEnum<["running", "stopped"]>;
39769
39909
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -39779,6 +39919,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
39779
39919
  proxyUrl: string | null;
39780
39920
  lifecycle: "running" | "stopped";
39781
39921
  health: "healthy" | "unhealthy" | null;
39922
+ localProxyUrl?: string | null | undefined;
39923
+ publicProxyUrl?: string | null | undefined;
39782
39924
  }, {
39783
39925
  port: number | null;
39784
39926
  scriptName: string;
@@ -39788,6 +39930,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
39788
39930
  type?: "script" | "service" | undefined;
39789
39931
  exitCode?: number | null | undefined;
39790
39932
  terminalId?: string | null | undefined;
39933
+ localProxyUrl?: string | null | undefined;
39934
+ publicProxyUrl?: string | null | undefined;
39791
39935
  proxyUrl?: string | null | undefined;
39792
39936
  }>, "many">>;
39793
39937
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -40173,6 +40317,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40173
40317
  proxyUrl: string | null;
40174
40318
  lifecycle: "running" | "stopped";
40175
40319
  health: "healthy" | "unhealthy" | null;
40320
+ localProxyUrl?: string | null | undefined;
40321
+ publicProxyUrl?: string | null | undefined;
40176
40322
  }[];
40177
40323
  projectId: string;
40178
40324
  projectDisplayName: string;
@@ -40277,6 +40423,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40277
40423
  type?: "script" | "service" | undefined;
40278
40424
  exitCode?: number | null | undefined;
40279
40425
  terminalId?: string | null | undefined;
40426
+ localProxyUrl?: string | null | undefined;
40427
+ publicProxyUrl?: string | null | undefined;
40280
40428
  proxyUrl?: string | null | undefined;
40281
40429
  }[] | undefined;
40282
40430
  projectCustomName?: string | null | undefined;
@@ -40372,6 +40520,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40372
40520
  proxyUrl: string | null;
40373
40521
  lifecycle: "running" | "stopped";
40374
40522
  health: "healthy" | "unhealthy" | null;
40523
+ localProxyUrl?: string | null | undefined;
40524
+ publicProxyUrl?: string | null | undefined;
40375
40525
  }[];
40376
40526
  projectId: string;
40377
40527
  projectDisplayName: string;
@@ -40475,6 +40625,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40475
40625
  type?: "script" | "service" | undefined;
40476
40626
  exitCode?: number | null | undefined;
40477
40627
  terminalId?: string | null | undefined;
40628
+ localProxyUrl?: string | null | undefined;
40629
+ publicProxyUrl?: string | null | undefined;
40478
40630
  proxyUrl?: string | null | undefined;
40479
40631
  }[] | undefined;
40480
40632
  projectCustomName?: string | null | undefined;
@@ -40573,6 +40725,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40573
40725
  proxyUrl: string | null;
40574
40726
  lifecycle: "running" | "stopped";
40575
40727
  health: "healthy" | "unhealthy" | null;
40728
+ localProxyUrl?: string | null | undefined;
40729
+ publicProxyUrl?: string | null | undefined;
40576
40730
  }[];
40577
40731
  projectId: string;
40578
40732
  projectDisplayName: string;
@@ -40679,6 +40833,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40679
40833
  type?: "script" | "service" | undefined;
40680
40834
  exitCode?: number | null | undefined;
40681
40835
  terminalId?: string | null | undefined;
40836
+ localProxyUrl?: string | null | undefined;
40837
+ publicProxyUrl?: string | null | undefined;
40682
40838
  proxyUrl?: string | null | undefined;
40683
40839
  }[] | undefined;
40684
40840
  projectCustomName?: string | null | undefined;
@@ -40789,6 +40945,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40789
40945
  proxyUrl: string | null;
40790
40946
  lifecycle: "running" | "stopped";
40791
40947
  health: "healthy" | "unhealthy" | null;
40948
+ localProxyUrl?: string | null | undefined;
40949
+ publicProxyUrl?: string | null | undefined;
40792
40950
  }[];
40793
40951
  projectId: string;
40794
40952
  projectDisplayName: string;
@@ -40901,6 +41059,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40901
41059
  type?: "script" | "service" | undefined;
40902
41060
  exitCode?: number | null | undefined;
40903
41061
  terminalId?: string | null | undefined;
41062
+ localProxyUrl?: string | null | undefined;
41063
+ publicProxyUrl?: string | null | undefined;
40904
41064
  proxyUrl?: string | null | undefined;
40905
41065
  }[] | undefined;
40906
41066
  projectCustomName?: string | null | undefined;
@@ -40995,6 +41155,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
40995
41155
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
40996
41156
  hostname: z.ZodString;
40997
41157
  port: z.ZodNullable<z.ZodNumber>;
41158
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41159
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40998
41160
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
40999
41161
  lifecycle: z.ZodEnum<["running", "stopped"]>;
41000
41162
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -41010,6 +41172,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41010
41172
  proxyUrl: string | null;
41011
41173
  lifecycle: "running" | "stopped";
41012
41174
  health: "healthy" | "unhealthy" | null;
41175
+ localProxyUrl?: string | null | undefined;
41176
+ publicProxyUrl?: string | null | undefined;
41013
41177
  }, {
41014
41178
  port: number | null;
41015
41179
  scriptName: string;
@@ -41019,6 +41183,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41019
41183
  type?: "script" | "service" | undefined;
41020
41184
  exitCode?: number | null | undefined;
41021
41185
  terminalId?: string | null | undefined;
41186
+ localProxyUrl?: string | null | undefined;
41187
+ publicProxyUrl?: string | null | undefined;
41022
41188
  proxyUrl?: string | null | undefined;
41023
41189
  }>, "many">;
41024
41190
  }, "strip", z.ZodTypeAny, {
@@ -41032,6 +41198,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41032
41198
  proxyUrl: string | null;
41033
41199
  lifecycle: "running" | "stopped";
41034
41200
  health: "healthy" | "unhealthy" | null;
41201
+ localProxyUrl?: string | null | undefined;
41202
+ publicProxyUrl?: string | null | undefined;
41035
41203
  }[];
41036
41204
  workspaceId: string;
41037
41205
  }, {
@@ -41044,6 +41212,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41044
41212
  type?: "script" | "service" | undefined;
41045
41213
  exitCode?: number | null | undefined;
41046
41214
  terminalId?: string | null | undefined;
41215
+ localProxyUrl?: string | null | undefined;
41216
+ publicProxyUrl?: string | null | undefined;
41047
41217
  proxyUrl?: string | null | undefined;
41048
41218
  }[];
41049
41219
  workspaceId: string;
@@ -41061,6 +41231,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41061
41231
  proxyUrl: string | null;
41062
41232
  lifecycle: "running" | "stopped";
41063
41233
  health: "healthy" | "unhealthy" | null;
41234
+ localProxyUrl?: string | null | undefined;
41235
+ publicProxyUrl?: string | null | undefined;
41064
41236
  }[];
41065
41237
  workspaceId: string;
41066
41238
  };
@@ -41076,6 +41248,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
41076
41248
  type?: "script" | "service" | undefined;
41077
41249
  exitCode?: number | null | undefined;
41078
41250
  terminalId?: string | null | undefined;
41251
+ localProxyUrl?: string | null | undefined;
41252
+ publicProxyUrl?: string | null | undefined;
41079
41253
  proxyUrl?: string | null | undefined;
41080
41254
  }[];
41081
41255
  workspaceId: string;
@@ -44284,6 +44458,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44284
44458
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
44285
44459
  hostname: z.ZodString;
44286
44460
  port: z.ZodNullable<z.ZodNumber>;
44461
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
44462
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
44287
44463
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
44288
44464
  lifecycle: z.ZodEnum<["running", "stopped"]>;
44289
44465
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -44299,6 +44475,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44299
44475
  proxyUrl: string | null;
44300
44476
  lifecycle: "running" | "stopped";
44301
44477
  health: "healthy" | "unhealthy" | null;
44478
+ localProxyUrl?: string | null | undefined;
44479
+ publicProxyUrl?: string | null | undefined;
44302
44480
  }, {
44303
44481
  port: number | null;
44304
44482
  scriptName: string;
@@ -44308,6 +44486,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44308
44486
  type?: "script" | "service" | undefined;
44309
44487
  exitCode?: number | null | undefined;
44310
44488
  terminalId?: string | null | undefined;
44489
+ localProxyUrl?: string | null | undefined;
44490
+ publicProxyUrl?: string | null | undefined;
44311
44491
  proxyUrl?: string | null | undefined;
44312
44492
  }>, "many">>;
44313
44493
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -44693,6 +44873,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44693
44873
  proxyUrl: string | null;
44694
44874
  lifecycle: "running" | "stopped";
44695
44875
  health: "healthy" | "unhealthy" | null;
44876
+ localProxyUrl?: string | null | undefined;
44877
+ publicProxyUrl?: string | null | undefined;
44696
44878
  }[];
44697
44879
  projectId: string;
44698
44880
  projectDisplayName: string;
@@ -44797,6 +44979,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44797
44979
  type?: "script" | "service" | undefined;
44798
44980
  exitCode?: number | null | undefined;
44799
44981
  terminalId?: string | null | undefined;
44982
+ localProxyUrl?: string | null | undefined;
44983
+ publicProxyUrl?: string | null | undefined;
44800
44984
  proxyUrl?: string | null | undefined;
44801
44985
  }[] | undefined;
44802
44986
  projectCustomName?: string | null | undefined;
@@ -44892,6 +45076,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44892
45076
  proxyUrl: string | null;
44893
45077
  lifecycle: "running" | "stopped";
44894
45078
  health: "healthy" | "unhealthy" | null;
45079
+ localProxyUrl?: string | null | undefined;
45080
+ publicProxyUrl?: string | null | undefined;
44895
45081
  }[];
44896
45082
  projectId: string;
44897
45083
  projectDisplayName: string;
@@ -44995,6 +45181,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
44995
45181
  type?: "script" | "service" | undefined;
44996
45182
  exitCode?: number | null | undefined;
44997
45183
  terminalId?: string | null | undefined;
45184
+ localProxyUrl?: string | null | undefined;
45185
+ publicProxyUrl?: string | null | undefined;
44998
45186
  proxyUrl?: string | null | undefined;
44999
45187
  }[] | undefined;
45000
45188
  projectCustomName?: string | null | undefined;
@@ -45105,6 +45293,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45105
45293
  proxyUrl: string | null;
45106
45294
  lifecycle: "running" | "stopped";
45107
45295
  health: "healthy" | "unhealthy" | null;
45296
+ localProxyUrl?: string | null | undefined;
45297
+ publicProxyUrl?: string | null | undefined;
45108
45298
  }[];
45109
45299
  projectId: string;
45110
45300
  projectDisplayName: string;
@@ -45217,6 +45407,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45217
45407
  type?: "script" | "service" | undefined;
45218
45408
  exitCode?: number | null | undefined;
45219
45409
  terminalId?: string | null | undefined;
45410
+ localProxyUrl?: string | null | undefined;
45411
+ publicProxyUrl?: string | null | undefined;
45220
45412
  proxyUrl?: string | null | undefined;
45221
45413
  }[] | undefined;
45222
45414
  projectCustomName?: string | null | undefined;
@@ -45324,6 +45516,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45324
45516
  proxyUrl: string | null;
45325
45517
  lifecycle: "running" | "stopped";
45326
45518
  health: "healthy" | "unhealthy" | null;
45519
+ localProxyUrl?: string | null | undefined;
45520
+ publicProxyUrl?: string | null | undefined;
45327
45521
  }[];
45328
45522
  projectId: string;
45329
45523
  projectDisplayName: string;
@@ -45439,6 +45633,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45439
45633
  type?: "script" | "service" | undefined;
45440
45634
  exitCode?: number | null | undefined;
45441
45635
  terminalId?: string | null | undefined;
45636
+ localProxyUrl?: string | null | undefined;
45637
+ publicProxyUrl?: string | null | undefined;
45442
45638
  proxyUrl?: string | null | undefined;
45443
45639
  }[] | undefined;
45444
45640
  projectCustomName?: string | null | undefined;
@@ -45560,6 +45756,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45560
45756
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
45561
45757
  hostname: z.ZodString;
45562
45758
  port: z.ZodNullable<z.ZodNumber>;
45759
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45760
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45563
45761
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
45564
45762
  lifecycle: z.ZodEnum<["running", "stopped"]>;
45565
45763
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -45575,6 +45773,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45575
45773
  proxyUrl: string | null;
45576
45774
  lifecycle: "running" | "stopped";
45577
45775
  health: "healthy" | "unhealthy" | null;
45776
+ localProxyUrl?: string | null | undefined;
45777
+ publicProxyUrl?: string | null | undefined;
45578
45778
  }, {
45579
45779
  port: number | null;
45580
45780
  scriptName: string;
@@ -45584,6 +45784,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45584
45784
  type?: "script" | "service" | undefined;
45585
45785
  exitCode?: number | null | undefined;
45586
45786
  terminalId?: string | null | undefined;
45787
+ localProxyUrl?: string | null | undefined;
45788
+ publicProxyUrl?: string | null | undefined;
45587
45789
  proxyUrl?: string | null | undefined;
45588
45790
  }>, "many">>;
45589
45791
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -45969,6 +46171,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
45969
46171
  proxyUrl: string | null;
45970
46172
  lifecycle: "running" | "stopped";
45971
46173
  health: "healthy" | "unhealthy" | null;
46174
+ localProxyUrl?: string | null | undefined;
46175
+ publicProxyUrl?: string | null | undefined;
45972
46176
  }[];
45973
46177
  projectId: string;
45974
46178
  projectDisplayName: string;
@@ -46073,6 +46277,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46073
46277
  type?: "script" | "service" | undefined;
46074
46278
  exitCode?: number | null | undefined;
46075
46279
  terminalId?: string | null | undefined;
46280
+ localProxyUrl?: string | null | undefined;
46281
+ publicProxyUrl?: string | null | undefined;
46076
46282
  proxyUrl?: string | null | undefined;
46077
46283
  }[] | undefined;
46078
46284
  projectCustomName?: string | null | undefined;
@@ -46168,6 +46374,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46168
46374
  proxyUrl: string | null;
46169
46375
  lifecycle: "running" | "stopped";
46170
46376
  health: "healthy" | "unhealthy" | null;
46377
+ localProxyUrl?: string | null | undefined;
46378
+ publicProxyUrl?: string | null | undefined;
46171
46379
  }[];
46172
46380
  projectId: string;
46173
46381
  projectDisplayName: string;
@@ -46271,6 +46479,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46271
46479
  type?: "script" | "service" | undefined;
46272
46480
  exitCode?: number | null | undefined;
46273
46481
  terminalId?: string | null | undefined;
46482
+ localProxyUrl?: string | null | undefined;
46483
+ publicProxyUrl?: string | null | undefined;
46274
46484
  proxyUrl?: string | null | undefined;
46275
46485
  }[] | undefined;
46276
46486
  projectCustomName?: string | null | undefined;
@@ -46371,6 +46581,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46371
46581
  proxyUrl: string | null;
46372
46582
  lifecycle: "running" | "stopped";
46373
46583
  health: "healthy" | "unhealthy" | null;
46584
+ localProxyUrl?: string | null | undefined;
46585
+ publicProxyUrl?: string | null | undefined;
46374
46586
  }[];
46375
46587
  projectId: string;
46376
46588
  projectDisplayName: string;
@@ -46478,6 +46690,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46478
46690
  type?: "script" | "service" | undefined;
46479
46691
  exitCode?: number | null | undefined;
46480
46692
  terminalId?: string | null | undefined;
46693
+ localProxyUrl?: string | null | undefined;
46694
+ publicProxyUrl?: string | null | undefined;
46481
46695
  proxyUrl?: string | null | undefined;
46482
46696
  }[] | undefined;
46483
46697
  projectCustomName?: string | null | undefined;
@@ -46580,6 +46794,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46580
46794
  proxyUrl: string | null;
46581
46795
  lifecycle: "running" | "stopped";
46582
46796
  health: "healthy" | "unhealthy" | null;
46797
+ localProxyUrl?: string | null | undefined;
46798
+ publicProxyUrl?: string | null | undefined;
46583
46799
  }[];
46584
46800
  projectId: string;
46585
46801
  projectDisplayName: string;
@@ -46690,6 +46906,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
46690
46906
  type?: "script" | "service" | undefined;
46691
46907
  exitCode?: number | null | undefined;
46692
46908
  terminalId?: string | null | undefined;
46909
+ localProxyUrl?: string | null | undefined;
46910
+ publicProxyUrl?: string | null | undefined;
46693
46911
  proxyUrl?: string | null | undefined;
46694
46912
  }[] | undefined;
46695
46913
  projectCustomName?: string | null | undefined;
@@ -57755,6 +57973,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
57755
57973
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
57756
57974
  hostname: z.ZodString;
57757
57975
  port: z.ZodNullable<z.ZodNumber>;
57976
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57977
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57758
57978
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
57759
57979
  lifecycle: z.ZodEnum<["running", "stopped"]>;
57760
57980
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -57770,6 +57990,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
57770
57990
  proxyUrl: string | null;
57771
57991
  lifecycle: "running" | "stopped";
57772
57992
  health: "healthy" | "unhealthy" | null;
57993
+ localProxyUrl?: string | null | undefined;
57994
+ publicProxyUrl?: string | null | undefined;
57773
57995
  }, {
57774
57996
  port: number | null;
57775
57997
  scriptName: string;
@@ -57779,6 +58001,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
57779
58001
  type?: "script" | "service" | undefined;
57780
58002
  exitCode?: number | null | undefined;
57781
58003
  terminalId?: string | null | undefined;
58004
+ localProxyUrl?: string | null | undefined;
58005
+ publicProxyUrl?: string | null | undefined;
57782
58006
  proxyUrl?: string | null | undefined;
57783
58007
  }>, "many">>;
57784
58008
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -58164,6 +58388,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58164
58388
  proxyUrl: string | null;
58165
58389
  lifecycle: "running" | "stopped";
58166
58390
  health: "healthy" | "unhealthy" | null;
58391
+ localProxyUrl?: string | null | undefined;
58392
+ publicProxyUrl?: string | null | undefined;
58167
58393
  }[];
58168
58394
  projectId: string;
58169
58395
  projectDisplayName: string;
@@ -58268,6 +58494,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58268
58494
  type?: "script" | "service" | undefined;
58269
58495
  exitCode?: number | null | undefined;
58270
58496
  terminalId?: string | null | undefined;
58497
+ localProxyUrl?: string | null | undefined;
58498
+ publicProxyUrl?: string | null | undefined;
58271
58499
  proxyUrl?: string | null | undefined;
58272
58500
  }[] | undefined;
58273
58501
  projectCustomName?: string | null | undefined;
@@ -58363,6 +58591,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58363
58591
  proxyUrl: string | null;
58364
58592
  lifecycle: "running" | "stopped";
58365
58593
  health: "healthy" | "unhealthy" | null;
58594
+ localProxyUrl?: string | null | undefined;
58595
+ publicProxyUrl?: string | null | undefined;
58366
58596
  }[];
58367
58597
  projectId: string;
58368
58598
  projectDisplayName: string;
@@ -58466,6 +58696,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58466
58696
  type?: "script" | "service" | undefined;
58467
58697
  exitCode?: number | null | undefined;
58468
58698
  terminalId?: string | null | undefined;
58699
+ localProxyUrl?: string | null | undefined;
58700
+ publicProxyUrl?: string | null | undefined;
58469
58701
  proxyUrl?: string | null | undefined;
58470
58702
  }[] | undefined;
58471
58703
  projectCustomName?: string | null | undefined;
@@ -58569,6 +58801,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58569
58801
  proxyUrl: string | null;
58570
58802
  lifecycle: "running" | "stopped";
58571
58803
  health: "healthy" | "unhealthy" | null;
58804
+ localProxyUrl?: string | null | undefined;
58805
+ publicProxyUrl?: string | null | undefined;
58572
58806
  }[];
58573
58807
  projectId: string;
58574
58808
  projectDisplayName: string;
@@ -58678,6 +58912,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58678
58912
  type?: "script" | "service" | undefined;
58679
58913
  exitCode?: number | null | undefined;
58680
58914
  terminalId?: string | null | undefined;
58915
+ localProxyUrl?: string | null | undefined;
58916
+ publicProxyUrl?: string | null | undefined;
58681
58917
  proxyUrl?: string | null | undefined;
58682
58918
  }[] | undefined;
58683
58919
  projectCustomName?: string | null | undefined;
@@ -58782,6 +59018,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58782
59018
  proxyUrl: string | null;
58783
59019
  lifecycle: "running" | "stopped";
58784
59020
  health: "healthy" | "unhealthy" | null;
59021
+ localProxyUrl?: string | null | undefined;
59022
+ publicProxyUrl?: string | null | undefined;
58785
59023
  }[];
58786
59024
  projectId: string;
58787
59025
  projectDisplayName: string;
@@ -58894,6 +59132,8 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
58894
59132
  type?: "script" | "service" | undefined;
58895
59133
  exitCode?: number | null | undefined;
58896
59134
  terminalId?: string | null | undefined;
59135
+ localProxyUrl?: string | null | undefined;
59136
+ publicProxyUrl?: string | null | undefined;
58897
59137
  proxyUrl?: string | null | undefined;
58898
59138
  }[] | undefined;
58899
59139
  projectCustomName?: string | null | undefined;
@@ -60910,12 +61150,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
60910
61150
  }>, z.ZodObject<{
60911
61151
  type: z.ZodLiteral<"cron">;
60912
61152
  expression: z.ZodString;
61153
+ timezone: z.ZodOptional<z.ZodString>;
60913
61154
  }, "strip", z.ZodTypeAny, {
60914
61155
  type: "cron";
60915
61156
  expression: string;
61157
+ timezone?: string | undefined;
60916
61158
  }, {
60917
61159
  type: "cron";
60918
61160
  expression: string;
61161
+ timezone?: string | undefined;
60919
61162
  }>]>;
60920
61163
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
60921
61164
  type: z.ZodLiteral<"agent">;
@@ -61081,6 +61324,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61081
61324
  } | {
61082
61325
  type: "cron";
61083
61326
  expression: string;
61327
+ timezone?: string | undefined;
61084
61328
  };
61085
61329
  target: {
61086
61330
  agentId: string;
@@ -61125,6 +61369,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61125
61369
  } | {
61126
61370
  type: "cron";
61127
61371
  expression: string;
61372
+ timezone?: string | undefined;
61128
61373
  };
61129
61374
  target: {
61130
61375
  agentId: string;
@@ -61174,6 +61419,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61174
61419
  } | {
61175
61420
  type: "cron";
61176
61421
  expression: string;
61422
+ timezone?: string | undefined;
61177
61423
  };
61178
61424
  target: {
61179
61425
  agentId: string;
@@ -61222,6 +61468,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61222
61468
  } | {
61223
61469
  type: "cron";
61224
61470
  expression: string;
61471
+ timezone?: string | undefined;
61225
61472
  };
61226
61473
  target: {
61227
61474
  agentId: string;
@@ -61273,6 +61520,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61273
61520
  } | {
61274
61521
  type: "cron";
61275
61522
  expression: string;
61523
+ timezone?: string | undefined;
61276
61524
  };
61277
61525
  target: {
61278
61526
  agentId: string;
@@ -61324,6 +61572,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61324
61572
  } | {
61325
61573
  type: "cron";
61326
61574
  expression: string;
61575
+ timezone?: string | undefined;
61327
61576
  };
61328
61577
  target: {
61329
61578
  agentId: string;
@@ -61377,12 +61626,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61377
61626
  }>, z.ZodObject<{
61378
61627
  type: z.ZodLiteral<"cron">;
61379
61628
  expression: z.ZodString;
61629
+ timezone: z.ZodOptional<z.ZodString>;
61380
61630
  }, "strip", z.ZodTypeAny, {
61381
61631
  type: "cron";
61382
61632
  expression: string;
61633
+ timezone?: string | undefined;
61383
61634
  }, {
61384
61635
  type: "cron";
61385
61636
  expression: string;
61637
+ timezone?: string | undefined;
61386
61638
  }>]>;
61387
61639
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
61388
61640
  type: z.ZodLiteral<"agent">;
@@ -61548,6 +61800,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61548
61800
  } | {
61549
61801
  type: "cron";
61550
61802
  expression: string;
61803
+ timezone?: string | undefined;
61551
61804
  };
61552
61805
  target: {
61553
61806
  agentId: string;
@@ -61592,6 +61845,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61592
61845
  } | {
61593
61846
  type: "cron";
61594
61847
  expression: string;
61848
+ timezone?: string | undefined;
61595
61849
  };
61596
61850
  target: {
61597
61851
  agentId: string;
@@ -61641,6 +61895,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61641
61895
  } | {
61642
61896
  type: "cron";
61643
61897
  expression: string;
61898
+ timezone?: string | undefined;
61644
61899
  };
61645
61900
  target: {
61646
61901
  agentId: string;
@@ -61689,6 +61944,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61689
61944
  } | {
61690
61945
  type: "cron";
61691
61946
  expression: string;
61947
+ timezone?: string | undefined;
61692
61948
  };
61693
61949
  target: {
61694
61950
  agentId: string;
@@ -61740,6 +61996,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61740
61996
  } | {
61741
61997
  type: "cron";
61742
61998
  expression: string;
61999
+ timezone?: string | undefined;
61743
62000
  };
61744
62001
  target: {
61745
62002
  agentId: string;
@@ -61791,6 +62048,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61791
62048
  } | {
61792
62049
  type: "cron";
61793
62050
  expression: string;
62051
+ timezone?: string | undefined;
61794
62052
  };
61795
62053
  target: {
61796
62054
  agentId: string;
@@ -61844,12 +62102,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61844
62102
  }>, z.ZodObject<{
61845
62103
  type: z.ZodLiteral<"cron">;
61846
62104
  expression: z.ZodString;
62105
+ timezone: z.ZodOptional<z.ZodString>;
61847
62106
  }, "strip", z.ZodTypeAny, {
61848
62107
  type: "cron";
61849
62108
  expression: string;
62109
+ timezone?: string | undefined;
61850
62110
  }, {
61851
62111
  type: "cron";
61852
62112
  expression: string;
62113
+ timezone?: string | undefined;
61853
62114
  }>]>;
61854
62115
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
61855
62116
  type: z.ZodLiteral<"agent">;
@@ -62015,6 +62276,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62015
62276
  } | {
62016
62277
  type: "cron";
62017
62278
  expression: string;
62279
+ timezone?: string | undefined;
62018
62280
  };
62019
62281
  target: {
62020
62282
  agentId: string;
@@ -62069,6 +62331,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62069
62331
  } | {
62070
62332
  type: "cron";
62071
62333
  expression: string;
62334
+ timezone?: string | undefined;
62072
62335
  };
62073
62336
  target: {
62074
62337
  agentId: string;
@@ -62128,6 +62391,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62128
62391
  } | {
62129
62392
  type: "cron";
62130
62393
  expression: string;
62394
+ timezone?: string | undefined;
62131
62395
  };
62132
62396
  target: {
62133
62397
  agentId: string;
@@ -62186,6 +62450,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62186
62450
  } | {
62187
62451
  type: "cron";
62188
62452
  expression: string;
62453
+ timezone?: string | undefined;
62189
62454
  };
62190
62455
  target: {
62191
62456
  agentId: string;
@@ -62247,6 +62512,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62247
62512
  } | {
62248
62513
  type: "cron";
62249
62514
  expression: string;
62515
+ timezone?: string | undefined;
62250
62516
  };
62251
62517
  target: {
62252
62518
  agentId: string;
@@ -62308,6 +62574,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62308
62574
  } | {
62309
62575
  type: "cron";
62310
62576
  expression: string;
62577
+ timezone?: string | undefined;
62311
62578
  };
62312
62579
  target: {
62313
62580
  agentId: string;
@@ -62463,12 +62730,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62463
62730
  }>, z.ZodObject<{
62464
62731
  type: z.ZodLiteral<"cron">;
62465
62732
  expression: z.ZodString;
62733
+ timezone: z.ZodOptional<z.ZodString>;
62466
62734
  }, "strip", z.ZodTypeAny, {
62467
62735
  type: "cron";
62468
62736
  expression: string;
62737
+ timezone?: string | undefined;
62469
62738
  }, {
62470
62739
  type: "cron";
62471
62740
  expression: string;
62741
+ timezone?: string | undefined;
62472
62742
  }>]>;
62473
62743
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
62474
62744
  type: z.ZodLiteral<"agent">;
@@ -62634,6 +62904,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62634
62904
  } | {
62635
62905
  type: "cron";
62636
62906
  expression: string;
62907
+ timezone?: string | undefined;
62637
62908
  };
62638
62909
  target: {
62639
62910
  agentId: string;
@@ -62678,6 +62949,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62678
62949
  } | {
62679
62950
  type: "cron";
62680
62951
  expression: string;
62952
+ timezone?: string | undefined;
62681
62953
  };
62682
62954
  target: {
62683
62955
  agentId: string;
@@ -62727,6 +62999,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62727
62999
  } | {
62728
63000
  type: "cron";
62729
63001
  expression: string;
63002
+ timezone?: string | undefined;
62730
63003
  };
62731
63004
  target: {
62732
63005
  agentId: string;
@@ -62775,6 +63048,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62775
63048
  } | {
62776
63049
  type: "cron";
62777
63050
  expression: string;
63051
+ timezone?: string | undefined;
62778
63052
  };
62779
63053
  target: {
62780
63054
  agentId: string;
@@ -62826,6 +63100,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62826
63100
  } | {
62827
63101
  type: "cron";
62828
63102
  expression: string;
63103
+ timezone?: string | undefined;
62829
63104
  };
62830
63105
  target: {
62831
63106
  agentId: string;
@@ -62877,6 +63152,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62877
63152
  } | {
62878
63153
  type: "cron";
62879
63154
  expression: string;
63155
+ timezone?: string | undefined;
62880
63156
  };
62881
63157
  target: {
62882
63158
  agentId: string;
@@ -62930,12 +63206,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62930
63206
  }>, z.ZodObject<{
62931
63207
  type: z.ZodLiteral<"cron">;
62932
63208
  expression: z.ZodString;
63209
+ timezone: z.ZodOptional<z.ZodString>;
62933
63210
  }, "strip", z.ZodTypeAny, {
62934
63211
  type: "cron";
62935
63212
  expression: string;
63213
+ timezone?: string | undefined;
62936
63214
  }, {
62937
63215
  type: "cron";
62938
63216
  expression: string;
63217
+ timezone?: string | undefined;
62939
63218
  }>]>;
62940
63219
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
62941
63220
  type: z.ZodLiteral<"agent">;
@@ -63101,6 +63380,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63101
63380
  } | {
63102
63381
  type: "cron";
63103
63382
  expression: string;
63383
+ timezone?: string | undefined;
63104
63384
  };
63105
63385
  target: {
63106
63386
  agentId: string;
@@ -63145,6 +63425,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63145
63425
  } | {
63146
63426
  type: "cron";
63147
63427
  expression: string;
63428
+ timezone?: string | undefined;
63148
63429
  };
63149
63430
  target: {
63150
63431
  agentId: string;
@@ -63194,6 +63475,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63194
63475
  } | {
63195
63476
  type: "cron";
63196
63477
  expression: string;
63478
+ timezone?: string | undefined;
63197
63479
  };
63198
63480
  target: {
63199
63481
  agentId: string;
@@ -63242,6 +63524,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63242
63524
  } | {
63243
63525
  type: "cron";
63244
63526
  expression: string;
63527
+ timezone?: string | undefined;
63245
63528
  };
63246
63529
  target: {
63247
63530
  agentId: string;
@@ -63293,6 +63576,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63293
63576
  } | {
63294
63577
  type: "cron";
63295
63578
  expression: string;
63579
+ timezone?: string | undefined;
63296
63580
  };
63297
63581
  target: {
63298
63582
  agentId: string;
@@ -63344,6 +63628,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63344
63628
  } | {
63345
63629
  type: "cron";
63346
63630
  expression: string;
63631
+ timezone?: string | undefined;
63347
63632
  };
63348
63633
  target: {
63349
63634
  agentId: string;
@@ -63426,12 +63711,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63426
63711
  }>, z.ZodObject<{
63427
63712
  type: z.ZodLiteral<"cron">;
63428
63713
  expression: z.ZodString;
63714
+ timezone: z.ZodOptional<z.ZodString>;
63429
63715
  }, "strip", z.ZodTypeAny, {
63430
63716
  type: "cron";
63431
63717
  expression: string;
63718
+ timezone?: string | undefined;
63432
63719
  }, {
63433
63720
  type: "cron";
63434
63721
  expression: string;
63722
+ timezone?: string | undefined;
63435
63723
  }>]>;
63436
63724
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
63437
63725
  type: z.ZodLiteral<"agent">;
@@ -63597,6 +63885,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63597
63885
  } | {
63598
63886
  type: "cron";
63599
63887
  expression: string;
63888
+ timezone?: string | undefined;
63600
63889
  };
63601
63890
  target: {
63602
63891
  agentId: string;
@@ -63651,6 +63940,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63651
63940
  } | {
63652
63941
  type: "cron";
63653
63942
  expression: string;
63943
+ timezone?: string | undefined;
63654
63944
  };
63655
63945
  target: {
63656
63946
  agentId: string;
@@ -63710,6 +64000,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63710
64000
  } | {
63711
64001
  type: "cron";
63712
64002
  expression: string;
64003
+ timezone?: string | undefined;
63713
64004
  };
63714
64005
  target: {
63715
64006
  agentId: string;
@@ -63768,6 +64059,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63768
64059
  } | {
63769
64060
  type: "cron";
63770
64061
  expression: string;
64062
+ timezone?: string | undefined;
63771
64063
  };
63772
64064
  target: {
63773
64065
  agentId: string;
@@ -63829,6 +64121,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63829
64121
  } | {
63830
64122
  type: "cron";
63831
64123
  expression: string;
64124
+ timezone?: string | undefined;
63832
64125
  };
63833
64126
  target: {
63834
64127
  agentId: string;
@@ -63890,6 +64183,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63890
64183
  } | {
63891
64184
  type: "cron";
63892
64185
  expression: string;
64186
+ timezone?: string | undefined;
63893
64187
  };
63894
64188
  target: {
63895
64189
  agentId: string;
@@ -63953,12 +64247,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63953
64247
  }>, z.ZodObject<{
63954
64248
  type: z.ZodLiteral<"cron">;
63955
64249
  expression: z.ZodString;
64250
+ timezone: z.ZodOptional<z.ZodString>;
63956
64251
  }, "strip", z.ZodTypeAny, {
63957
64252
  type: "cron";
63958
64253
  expression: string;
64254
+ timezone?: string | undefined;
63959
64255
  }, {
63960
64256
  type: "cron";
63961
64257
  expression: string;
64258
+ timezone?: string | undefined;
63962
64259
  }>]>;
63963
64260
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
63964
64261
  type: z.ZodLiteral<"agent">;
@@ -64124,6 +64421,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64124
64421
  } | {
64125
64422
  type: "cron";
64126
64423
  expression: string;
64424
+ timezone?: string | undefined;
64127
64425
  };
64128
64426
  target: {
64129
64427
  agentId: string;
@@ -64178,6 +64476,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64178
64476
  } | {
64179
64477
  type: "cron";
64180
64478
  expression: string;
64479
+ timezone?: string | undefined;
64181
64480
  };
64182
64481
  target: {
64183
64482
  agentId: string;
@@ -64237,6 +64536,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64237
64536
  } | {
64238
64537
  type: "cron";
64239
64538
  expression: string;
64539
+ timezone?: string | undefined;
64240
64540
  };
64241
64541
  target: {
64242
64542
  agentId: string;
@@ -64295,6 +64595,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64295
64595
  } | {
64296
64596
  type: "cron";
64297
64597
  expression: string;
64598
+ timezone?: string | undefined;
64298
64599
  };
64299
64600
  target: {
64300
64601
  agentId: string;
@@ -64356,6 +64657,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64356
64657
  } | {
64357
64658
  type: "cron";
64358
64659
  expression: string;
64660
+ timezone?: string | undefined;
64359
64661
  };
64360
64662
  target: {
64361
64663
  agentId: string;
@@ -64417,6 +64719,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64417
64719
  } | {
64418
64720
  type: "cron";
64419
64721
  expression: string;
64722
+ timezone?: string | undefined;
64420
64723
  };
64421
64724
  target: {
64422
64725
  agentId: string;
@@ -67123,16 +67426,19 @@ export declare const WSHelloMessageSchema: z.ZodObject<{
67123
67426
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
67124
67427
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
67125
67428
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
67429
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
67126
67430
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
67127
67431
  voice: z.ZodOptional<z.ZodBoolean>;
67128
67432
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
67129
67433
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
67130
67434
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
67435
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
67131
67436
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
67132
67437
  voice: z.ZodOptional<z.ZodBoolean>;
67133
67438
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
67134
67439
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
67135
67440
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
67441
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
67136
67442
  }, z.ZodTypeAny, "passthrough">>>;
67137
67443
  }, "strip", z.ZodTypeAny, {
67138
67444
  type: "hello";
@@ -67144,6 +67450,7 @@ export declare const WSHelloMessageSchema: z.ZodObject<{
67144
67450
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
67145
67451
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
67146
67452
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
67453
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
67147
67454
  }, z.ZodTypeAny, "passthrough"> | undefined;
67148
67455
  appVersion?: string | undefined;
67149
67456
  }, {
@@ -67156,6 +67463,7 @@ export declare const WSHelloMessageSchema: z.ZodObject<{
67156
67463
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
67157
67464
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
67158
67465
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
67466
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
67159
67467
  }, z.ZodTypeAny, "passthrough"> | undefined;
67160
67468
  appVersion?: string | undefined;
67161
67469
  }>;
@@ -70685,14 +70993,14 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
70685
70993
  size: z.ZodOptional<z.ZodObject<{
70686
70994
  rows: z.ZodNumber;
70687
70995
  cols: z.ZodNumber;
70688
- }, "strict", z.ZodTypeAny, {
70996
+ }, "strip", z.ZodTypeAny, {
70689
70997
  rows: number;
70690
70998
  cols: number;
70691
70999
  }, {
70692
71000
  rows: number;
70693
71001
  cols: number;
70694
71002
  }>>;
70695
- }, "strict", z.ZodTypeAny, {
71003
+ }, "strip", z.ZodTypeAny, {
70696
71004
  mode: "live" | "visible-snapshot" | "full-snapshot";
70697
71005
  size?: {
70698
71006
  rows: number;
@@ -70975,12 +71283,15 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
70975
71283
  }>, z.ZodObject<{
70976
71284
  type: z.ZodLiteral<"cron">;
70977
71285
  expression: z.ZodString;
71286
+ timezone: z.ZodOptional<z.ZodString>;
70978
71287
  }, "strip", z.ZodTypeAny, {
70979
71288
  type: "cron";
70980
71289
  expression: string;
71290
+ timezone?: string | undefined;
70981
71291
  }, {
70982
71292
  type: "cron";
70983
71293
  expression: string;
71294
+ timezone?: string | undefined;
70984
71295
  }>]>;
70985
71296
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
70986
71297
  type: z.ZodLiteral<"self">;
@@ -71119,6 +71430,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71119
71430
  } | {
71120
71431
  type: "cron";
71121
71432
  expression: string;
71433
+ timezone?: string | undefined;
71122
71434
  };
71123
71435
  target: {
71124
71436
  agentId: string;
@@ -71162,6 +71474,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71162
71474
  } | {
71163
71475
  type: "cron";
71164
71476
  expression: string;
71477
+ timezone?: string | undefined;
71165
71478
  };
71166
71479
  target: {
71167
71480
  agentId: string;
@@ -71294,12 +71607,15 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71294
71607
  }>, z.ZodObject<{
71295
71608
  type: z.ZodLiteral<"cron">;
71296
71609
  expression: z.ZodString;
71610
+ timezone: z.ZodOptional<z.ZodString>;
71297
71611
  }, "strip", z.ZodTypeAny, {
71298
71612
  type: "cron";
71299
71613
  expression: string;
71614
+ timezone?: string | undefined;
71300
71615
  }, {
71301
71616
  type: "cron";
71302
71617
  expression: string;
71618
+ timezone?: string | undefined;
71303
71619
  }>]>>;
71304
71620
  newAgentConfig: z.ZodOptional<z.ZodObject<{
71305
71621
  provider: z.ZodOptional<z.ZodString>;
@@ -71331,6 +71647,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71331
71647
  } | {
71332
71648
  type: "cron";
71333
71649
  expression: string;
71650
+ timezone?: string | undefined;
71334
71651
  } | undefined;
71335
71652
  expiresAt?: string | null | undefined;
71336
71653
  maxRuns?: number | null | undefined;
@@ -71352,6 +71669,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71352
71669
  } | {
71353
71670
  type: "cron";
71354
71671
  expression: string;
71672
+ timezone?: string | undefined;
71355
71673
  } | undefined;
71356
71674
  expiresAt?: string | null | undefined;
71357
71675
  maxRuns?: number | null | undefined;
@@ -71518,6 +71836,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71518
71836
  } | {
71519
71837
  type: "cron";
71520
71838
  expression: string;
71839
+ timezone?: string | undefined;
71521
71840
  };
71522
71841
  target: {
71523
71842
  agentId: string;
@@ -71590,6 +71909,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71590
71909
  } | {
71591
71910
  type: "cron";
71592
71911
  expression: string;
71912
+ timezone?: string | undefined;
71593
71913
  } | undefined;
71594
71914
  expiresAt?: string | null | undefined;
71595
71915
  maxRuns?: number | null | undefined;
@@ -72632,6 +72952,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
72632
72952
  } | {
72633
72953
  type: "cron";
72634
72954
  expression: string;
72955
+ timezone?: string | undefined;
72635
72956
  };
72636
72957
  target: {
72637
72958
  agentId: string;
@@ -72704,6 +73025,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
72704
73025
  } | {
72705
73026
  type: "cron";
72706
73027
  expression: string;
73028
+ timezone?: string | undefined;
72707
73029
  } | undefined;
72708
73030
  expiresAt?: string | null | undefined;
72709
73031
  maxRuns?: number | null | undefined;
@@ -74716,6 +75038,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
74716
75038
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
74717
75039
  hostname: z.ZodString;
74718
75040
  port: z.ZodNullable<z.ZodNumber>;
75041
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
75042
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74719
75043
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
74720
75044
  lifecycle: z.ZodEnum<["running", "stopped"]>;
74721
75045
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -74731,6 +75055,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
74731
75055
  proxyUrl: string | null;
74732
75056
  lifecycle: "running" | "stopped";
74733
75057
  health: "healthy" | "unhealthy" | null;
75058
+ localProxyUrl?: string | null | undefined;
75059
+ publicProxyUrl?: string | null | undefined;
74734
75060
  }, {
74735
75061
  port: number | null;
74736
75062
  scriptName: string;
@@ -74740,6 +75066,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
74740
75066
  type?: "script" | "service" | undefined;
74741
75067
  exitCode?: number | null | undefined;
74742
75068
  terminalId?: string | null | undefined;
75069
+ localProxyUrl?: string | null | undefined;
75070
+ publicProxyUrl?: string | null | undefined;
74743
75071
  proxyUrl?: string | null | undefined;
74744
75072
  }>, "many">>;
74745
75073
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -75125,6 +75453,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75125
75453
  proxyUrl: string | null;
75126
75454
  lifecycle: "running" | "stopped";
75127
75455
  health: "healthy" | "unhealthy" | null;
75456
+ localProxyUrl?: string | null | undefined;
75457
+ publicProxyUrl?: string | null | undefined;
75128
75458
  }[];
75129
75459
  projectId: string;
75130
75460
  projectDisplayName: string;
@@ -75229,6 +75559,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75229
75559
  type?: "script" | "service" | undefined;
75230
75560
  exitCode?: number | null | undefined;
75231
75561
  terminalId?: string | null | undefined;
75562
+ localProxyUrl?: string | null | undefined;
75563
+ publicProxyUrl?: string | null | undefined;
75232
75564
  proxyUrl?: string | null | undefined;
75233
75565
  }[] | undefined;
75234
75566
  projectCustomName?: string | null | undefined;
@@ -75324,6 +75656,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75324
75656
  proxyUrl: string | null;
75325
75657
  lifecycle: "running" | "stopped";
75326
75658
  health: "healthy" | "unhealthy" | null;
75659
+ localProxyUrl?: string | null | undefined;
75660
+ publicProxyUrl?: string | null | undefined;
75327
75661
  }[];
75328
75662
  projectId: string;
75329
75663
  projectDisplayName: string;
@@ -75427,6 +75761,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75427
75761
  type?: "script" | "service" | undefined;
75428
75762
  exitCode?: number | null | undefined;
75429
75763
  terminalId?: string | null | undefined;
75764
+ localProxyUrl?: string | null | undefined;
75765
+ publicProxyUrl?: string | null | undefined;
75430
75766
  proxyUrl?: string | null | undefined;
75431
75767
  }[] | undefined;
75432
75768
  projectCustomName?: string | null | undefined;
@@ -75525,6 +75861,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75525
75861
  proxyUrl: string | null;
75526
75862
  lifecycle: "running" | "stopped";
75527
75863
  health: "healthy" | "unhealthy" | null;
75864
+ localProxyUrl?: string | null | undefined;
75865
+ publicProxyUrl?: string | null | undefined;
75528
75866
  }[];
75529
75867
  projectId: string;
75530
75868
  projectDisplayName: string;
@@ -75631,6 +75969,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75631
75969
  type?: "script" | "service" | undefined;
75632
75970
  exitCode?: number | null | undefined;
75633
75971
  terminalId?: string | null | undefined;
75972
+ localProxyUrl?: string | null | undefined;
75973
+ publicProxyUrl?: string | null | undefined;
75634
75974
  proxyUrl?: string | null | undefined;
75635
75975
  }[] | undefined;
75636
75976
  projectCustomName?: string | null | undefined;
@@ -75741,6 +76081,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75741
76081
  proxyUrl: string | null;
75742
76082
  lifecycle: "running" | "stopped";
75743
76083
  health: "healthy" | "unhealthy" | null;
76084
+ localProxyUrl?: string | null | undefined;
76085
+ publicProxyUrl?: string | null | undefined;
75744
76086
  }[];
75745
76087
  projectId: string;
75746
76088
  projectDisplayName: string;
@@ -75853,6 +76195,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75853
76195
  type?: "script" | "service" | undefined;
75854
76196
  exitCode?: number | null | undefined;
75855
76197
  terminalId?: string | null | undefined;
76198
+ localProxyUrl?: string | null | undefined;
76199
+ publicProxyUrl?: string | null | undefined;
75856
76200
  proxyUrl?: string | null | undefined;
75857
76201
  }[] | undefined;
75858
76202
  projectCustomName?: string | null | undefined;
@@ -75947,6 +76291,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75947
76291
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
75948
76292
  hostname: z.ZodString;
75949
76293
  port: z.ZodNullable<z.ZodNumber>;
76294
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
76295
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
75950
76296
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
75951
76297
  lifecycle: z.ZodEnum<["running", "stopped"]>;
75952
76298
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -75962,6 +76308,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75962
76308
  proxyUrl: string | null;
75963
76309
  lifecycle: "running" | "stopped";
75964
76310
  health: "healthy" | "unhealthy" | null;
76311
+ localProxyUrl?: string | null | undefined;
76312
+ publicProxyUrl?: string | null | undefined;
75965
76313
  }, {
75966
76314
  port: number | null;
75967
76315
  scriptName: string;
@@ -75971,6 +76319,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75971
76319
  type?: "script" | "service" | undefined;
75972
76320
  exitCode?: number | null | undefined;
75973
76321
  terminalId?: string | null | undefined;
76322
+ localProxyUrl?: string | null | undefined;
76323
+ publicProxyUrl?: string | null | undefined;
75974
76324
  proxyUrl?: string | null | undefined;
75975
76325
  }>, "many">;
75976
76326
  }, "strip", z.ZodTypeAny, {
@@ -75984,6 +76334,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75984
76334
  proxyUrl: string | null;
75985
76335
  lifecycle: "running" | "stopped";
75986
76336
  health: "healthy" | "unhealthy" | null;
76337
+ localProxyUrl?: string | null | undefined;
76338
+ publicProxyUrl?: string | null | undefined;
75987
76339
  }[];
75988
76340
  workspaceId: string;
75989
76341
  }, {
@@ -75996,6 +76348,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
75996
76348
  type?: "script" | "service" | undefined;
75997
76349
  exitCode?: number | null | undefined;
75998
76350
  terminalId?: string | null | undefined;
76351
+ localProxyUrl?: string | null | undefined;
76352
+ publicProxyUrl?: string | null | undefined;
75999
76353
  proxyUrl?: string | null | undefined;
76000
76354
  }[];
76001
76355
  workspaceId: string;
@@ -76013,6 +76367,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
76013
76367
  proxyUrl: string | null;
76014
76368
  lifecycle: "running" | "stopped";
76015
76369
  health: "healthy" | "unhealthy" | null;
76370
+ localProxyUrl?: string | null | undefined;
76371
+ publicProxyUrl?: string | null | undefined;
76016
76372
  }[];
76017
76373
  workspaceId: string;
76018
76374
  };
@@ -76028,6 +76384,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
76028
76384
  type?: "script" | "service" | undefined;
76029
76385
  exitCode?: number | null | undefined;
76030
76386
  terminalId?: string | null | undefined;
76387
+ localProxyUrl?: string | null | undefined;
76388
+ publicProxyUrl?: string | null | undefined;
76031
76389
  proxyUrl?: string | null | undefined;
76032
76390
  }[];
76033
76391
  workspaceId: string;
@@ -79236,6 +79594,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79236
79594
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
79237
79595
  hostname: z.ZodString;
79238
79596
  port: z.ZodNullable<z.ZodNumber>;
79597
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
79598
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
79239
79599
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
79240
79600
  lifecycle: z.ZodEnum<["running", "stopped"]>;
79241
79601
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -79251,6 +79611,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79251
79611
  proxyUrl: string | null;
79252
79612
  lifecycle: "running" | "stopped";
79253
79613
  health: "healthy" | "unhealthy" | null;
79614
+ localProxyUrl?: string | null | undefined;
79615
+ publicProxyUrl?: string | null | undefined;
79254
79616
  }, {
79255
79617
  port: number | null;
79256
79618
  scriptName: string;
@@ -79260,6 +79622,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79260
79622
  type?: "script" | "service" | undefined;
79261
79623
  exitCode?: number | null | undefined;
79262
79624
  terminalId?: string | null | undefined;
79625
+ localProxyUrl?: string | null | undefined;
79626
+ publicProxyUrl?: string | null | undefined;
79263
79627
  proxyUrl?: string | null | undefined;
79264
79628
  }>, "many">>;
79265
79629
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -79645,6 +80009,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79645
80009
  proxyUrl: string | null;
79646
80010
  lifecycle: "running" | "stopped";
79647
80011
  health: "healthy" | "unhealthy" | null;
80012
+ localProxyUrl?: string | null | undefined;
80013
+ publicProxyUrl?: string | null | undefined;
79648
80014
  }[];
79649
80015
  projectId: string;
79650
80016
  projectDisplayName: string;
@@ -79749,6 +80115,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79749
80115
  type?: "script" | "service" | undefined;
79750
80116
  exitCode?: number | null | undefined;
79751
80117
  terminalId?: string | null | undefined;
80118
+ localProxyUrl?: string | null | undefined;
80119
+ publicProxyUrl?: string | null | undefined;
79752
80120
  proxyUrl?: string | null | undefined;
79753
80121
  }[] | undefined;
79754
80122
  projectCustomName?: string | null | undefined;
@@ -79844,6 +80212,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79844
80212
  proxyUrl: string | null;
79845
80213
  lifecycle: "running" | "stopped";
79846
80214
  health: "healthy" | "unhealthy" | null;
80215
+ localProxyUrl?: string | null | undefined;
80216
+ publicProxyUrl?: string | null | undefined;
79847
80217
  }[];
79848
80218
  projectId: string;
79849
80219
  projectDisplayName: string;
@@ -79947,6 +80317,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
79947
80317
  type?: "script" | "service" | undefined;
79948
80318
  exitCode?: number | null | undefined;
79949
80319
  terminalId?: string | null | undefined;
80320
+ localProxyUrl?: string | null | undefined;
80321
+ publicProxyUrl?: string | null | undefined;
79950
80322
  proxyUrl?: string | null | undefined;
79951
80323
  }[] | undefined;
79952
80324
  projectCustomName?: string | null | undefined;
@@ -80057,6 +80429,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80057
80429
  proxyUrl: string | null;
80058
80430
  lifecycle: "running" | "stopped";
80059
80431
  health: "healthy" | "unhealthy" | null;
80432
+ localProxyUrl?: string | null | undefined;
80433
+ publicProxyUrl?: string | null | undefined;
80060
80434
  }[];
80061
80435
  projectId: string;
80062
80436
  projectDisplayName: string;
@@ -80169,6 +80543,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80169
80543
  type?: "script" | "service" | undefined;
80170
80544
  exitCode?: number | null | undefined;
80171
80545
  terminalId?: string | null | undefined;
80546
+ localProxyUrl?: string | null | undefined;
80547
+ publicProxyUrl?: string | null | undefined;
80172
80548
  proxyUrl?: string | null | undefined;
80173
80549
  }[] | undefined;
80174
80550
  projectCustomName?: string | null | undefined;
@@ -80276,6 +80652,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80276
80652
  proxyUrl: string | null;
80277
80653
  lifecycle: "running" | "stopped";
80278
80654
  health: "healthy" | "unhealthy" | null;
80655
+ localProxyUrl?: string | null | undefined;
80656
+ publicProxyUrl?: string | null | undefined;
80279
80657
  }[];
80280
80658
  projectId: string;
80281
80659
  projectDisplayName: string;
@@ -80391,6 +80769,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80391
80769
  type?: "script" | "service" | undefined;
80392
80770
  exitCode?: number | null | undefined;
80393
80771
  terminalId?: string | null | undefined;
80772
+ localProxyUrl?: string | null | undefined;
80773
+ publicProxyUrl?: string | null | undefined;
80394
80774
  proxyUrl?: string | null | undefined;
80395
80775
  }[] | undefined;
80396
80776
  projectCustomName?: string | null | undefined;
@@ -80512,6 +80892,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80512
80892
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
80513
80893
  hostname: z.ZodString;
80514
80894
  port: z.ZodNullable<z.ZodNumber>;
80895
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
80896
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
80515
80897
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
80516
80898
  lifecycle: z.ZodEnum<["running", "stopped"]>;
80517
80899
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -80527,6 +80909,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80527
80909
  proxyUrl: string | null;
80528
80910
  lifecycle: "running" | "stopped";
80529
80911
  health: "healthy" | "unhealthy" | null;
80912
+ localProxyUrl?: string | null | undefined;
80913
+ publicProxyUrl?: string | null | undefined;
80530
80914
  }, {
80531
80915
  port: number | null;
80532
80916
  scriptName: string;
@@ -80536,6 +80920,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80536
80920
  type?: "script" | "service" | undefined;
80537
80921
  exitCode?: number | null | undefined;
80538
80922
  terminalId?: string | null | undefined;
80923
+ localProxyUrl?: string | null | undefined;
80924
+ publicProxyUrl?: string | null | undefined;
80539
80925
  proxyUrl?: string | null | undefined;
80540
80926
  }>, "many">>;
80541
80927
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -80921,6 +81307,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
80921
81307
  proxyUrl: string | null;
80922
81308
  lifecycle: "running" | "stopped";
80923
81309
  health: "healthy" | "unhealthy" | null;
81310
+ localProxyUrl?: string | null | undefined;
81311
+ publicProxyUrl?: string | null | undefined;
80924
81312
  }[];
80925
81313
  projectId: string;
80926
81314
  projectDisplayName: string;
@@ -81025,6 +81413,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81025
81413
  type?: "script" | "service" | undefined;
81026
81414
  exitCode?: number | null | undefined;
81027
81415
  terminalId?: string | null | undefined;
81416
+ localProxyUrl?: string | null | undefined;
81417
+ publicProxyUrl?: string | null | undefined;
81028
81418
  proxyUrl?: string | null | undefined;
81029
81419
  }[] | undefined;
81030
81420
  projectCustomName?: string | null | undefined;
@@ -81120,6 +81510,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81120
81510
  proxyUrl: string | null;
81121
81511
  lifecycle: "running" | "stopped";
81122
81512
  health: "healthy" | "unhealthy" | null;
81513
+ localProxyUrl?: string | null | undefined;
81514
+ publicProxyUrl?: string | null | undefined;
81123
81515
  }[];
81124
81516
  projectId: string;
81125
81517
  projectDisplayName: string;
@@ -81223,6 +81615,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81223
81615
  type?: "script" | "service" | undefined;
81224
81616
  exitCode?: number | null | undefined;
81225
81617
  terminalId?: string | null | undefined;
81618
+ localProxyUrl?: string | null | undefined;
81619
+ publicProxyUrl?: string | null | undefined;
81226
81620
  proxyUrl?: string | null | undefined;
81227
81621
  }[] | undefined;
81228
81622
  projectCustomName?: string | null | undefined;
@@ -81323,6 +81717,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81323
81717
  proxyUrl: string | null;
81324
81718
  lifecycle: "running" | "stopped";
81325
81719
  health: "healthy" | "unhealthy" | null;
81720
+ localProxyUrl?: string | null | undefined;
81721
+ publicProxyUrl?: string | null | undefined;
81326
81722
  }[];
81327
81723
  projectId: string;
81328
81724
  projectDisplayName: string;
@@ -81430,6 +81826,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81430
81826
  type?: "script" | "service" | undefined;
81431
81827
  exitCode?: number | null | undefined;
81432
81828
  terminalId?: string | null | undefined;
81829
+ localProxyUrl?: string | null | undefined;
81830
+ publicProxyUrl?: string | null | undefined;
81433
81831
  proxyUrl?: string | null | undefined;
81434
81832
  }[] | undefined;
81435
81833
  projectCustomName?: string | null | undefined;
@@ -81532,6 +81930,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81532
81930
  proxyUrl: string | null;
81533
81931
  lifecycle: "running" | "stopped";
81534
81932
  health: "healthy" | "unhealthy" | null;
81933
+ localProxyUrl?: string | null | undefined;
81934
+ publicProxyUrl?: string | null | undefined;
81535
81935
  }[];
81536
81936
  projectId: string;
81537
81937
  projectDisplayName: string;
@@ -81642,6 +82042,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
81642
82042
  type?: "script" | "service" | undefined;
81643
82043
  exitCode?: number | null | undefined;
81644
82044
  terminalId?: string | null | undefined;
82045
+ localProxyUrl?: string | null | undefined;
82046
+ publicProxyUrl?: string | null | undefined;
81645
82047
  proxyUrl?: string | null | undefined;
81646
82048
  }[] | undefined;
81647
82049
  projectCustomName?: string | null | undefined;
@@ -92707,6 +93109,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
92707
93109
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
92708
93110
  hostname: z.ZodString;
92709
93111
  port: z.ZodNullable<z.ZodNumber>;
93112
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
93113
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
92710
93114
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
92711
93115
  lifecycle: z.ZodEnum<["running", "stopped"]>;
92712
93116
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -92722,6 +93126,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
92722
93126
  proxyUrl: string | null;
92723
93127
  lifecycle: "running" | "stopped";
92724
93128
  health: "healthy" | "unhealthy" | null;
93129
+ localProxyUrl?: string | null | undefined;
93130
+ publicProxyUrl?: string | null | undefined;
92725
93131
  }, {
92726
93132
  port: number | null;
92727
93133
  scriptName: string;
@@ -92731,6 +93137,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
92731
93137
  type?: "script" | "service" | undefined;
92732
93138
  exitCode?: number | null | undefined;
92733
93139
  terminalId?: string | null | undefined;
93140
+ localProxyUrl?: string | null | undefined;
93141
+ publicProxyUrl?: string | null | undefined;
92734
93142
  proxyUrl?: string | null | undefined;
92735
93143
  }>, "many">>;
92736
93144
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -93116,6 +93524,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93116
93524
  proxyUrl: string | null;
93117
93525
  lifecycle: "running" | "stopped";
93118
93526
  health: "healthy" | "unhealthy" | null;
93527
+ localProxyUrl?: string | null | undefined;
93528
+ publicProxyUrl?: string | null | undefined;
93119
93529
  }[];
93120
93530
  projectId: string;
93121
93531
  projectDisplayName: string;
@@ -93220,6 +93630,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93220
93630
  type?: "script" | "service" | undefined;
93221
93631
  exitCode?: number | null | undefined;
93222
93632
  terminalId?: string | null | undefined;
93633
+ localProxyUrl?: string | null | undefined;
93634
+ publicProxyUrl?: string | null | undefined;
93223
93635
  proxyUrl?: string | null | undefined;
93224
93636
  }[] | undefined;
93225
93637
  projectCustomName?: string | null | undefined;
@@ -93315,6 +93727,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93315
93727
  proxyUrl: string | null;
93316
93728
  lifecycle: "running" | "stopped";
93317
93729
  health: "healthy" | "unhealthy" | null;
93730
+ localProxyUrl?: string | null | undefined;
93731
+ publicProxyUrl?: string | null | undefined;
93318
93732
  }[];
93319
93733
  projectId: string;
93320
93734
  projectDisplayName: string;
@@ -93418,6 +93832,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93418
93832
  type?: "script" | "service" | undefined;
93419
93833
  exitCode?: number | null | undefined;
93420
93834
  terminalId?: string | null | undefined;
93835
+ localProxyUrl?: string | null | undefined;
93836
+ publicProxyUrl?: string | null | undefined;
93421
93837
  proxyUrl?: string | null | undefined;
93422
93838
  }[] | undefined;
93423
93839
  projectCustomName?: string | null | undefined;
@@ -93521,6 +93937,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93521
93937
  proxyUrl: string | null;
93522
93938
  lifecycle: "running" | "stopped";
93523
93939
  health: "healthy" | "unhealthy" | null;
93940
+ localProxyUrl?: string | null | undefined;
93941
+ publicProxyUrl?: string | null | undefined;
93524
93942
  }[];
93525
93943
  projectId: string;
93526
93944
  projectDisplayName: string;
@@ -93630,6 +94048,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93630
94048
  type?: "script" | "service" | undefined;
93631
94049
  exitCode?: number | null | undefined;
93632
94050
  terminalId?: string | null | undefined;
94051
+ localProxyUrl?: string | null | undefined;
94052
+ publicProxyUrl?: string | null | undefined;
93633
94053
  proxyUrl?: string | null | undefined;
93634
94054
  }[] | undefined;
93635
94055
  projectCustomName?: string | null | undefined;
@@ -93734,6 +94154,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93734
94154
  proxyUrl: string | null;
93735
94155
  lifecycle: "running" | "stopped";
93736
94156
  health: "healthy" | "unhealthy" | null;
94157
+ localProxyUrl?: string | null | undefined;
94158
+ publicProxyUrl?: string | null | undefined;
93737
94159
  }[];
93738
94160
  projectId: string;
93739
94161
  projectDisplayName: string;
@@ -93846,6 +94268,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
93846
94268
  type?: "script" | "service" | undefined;
93847
94269
  exitCode?: number | null | undefined;
93848
94270
  terminalId?: string | null | undefined;
94271
+ localProxyUrl?: string | null | undefined;
94272
+ publicProxyUrl?: string | null | undefined;
93849
94273
  proxyUrl?: string | null | undefined;
93850
94274
  }[] | undefined;
93851
94275
  projectCustomName?: string | null | undefined;
@@ -95862,12 +96286,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
95862
96286
  }>, z.ZodObject<{
95863
96287
  type: z.ZodLiteral<"cron">;
95864
96288
  expression: z.ZodString;
96289
+ timezone: z.ZodOptional<z.ZodString>;
95865
96290
  }, "strip", z.ZodTypeAny, {
95866
96291
  type: "cron";
95867
96292
  expression: string;
96293
+ timezone?: string | undefined;
95868
96294
  }, {
95869
96295
  type: "cron";
95870
96296
  expression: string;
96297
+ timezone?: string | undefined;
95871
96298
  }>]>;
95872
96299
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
95873
96300
  type: z.ZodLiteral<"agent">;
@@ -96033,6 +96460,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96033
96460
  } | {
96034
96461
  type: "cron";
96035
96462
  expression: string;
96463
+ timezone?: string | undefined;
96036
96464
  };
96037
96465
  target: {
96038
96466
  agentId: string;
@@ -96077,6 +96505,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96077
96505
  } | {
96078
96506
  type: "cron";
96079
96507
  expression: string;
96508
+ timezone?: string | undefined;
96080
96509
  };
96081
96510
  target: {
96082
96511
  agentId: string;
@@ -96126,6 +96555,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96126
96555
  } | {
96127
96556
  type: "cron";
96128
96557
  expression: string;
96558
+ timezone?: string | undefined;
96129
96559
  };
96130
96560
  target: {
96131
96561
  agentId: string;
@@ -96174,6 +96604,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96174
96604
  } | {
96175
96605
  type: "cron";
96176
96606
  expression: string;
96607
+ timezone?: string | undefined;
96177
96608
  };
96178
96609
  target: {
96179
96610
  agentId: string;
@@ -96225,6 +96656,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96225
96656
  } | {
96226
96657
  type: "cron";
96227
96658
  expression: string;
96659
+ timezone?: string | undefined;
96228
96660
  };
96229
96661
  target: {
96230
96662
  agentId: string;
@@ -96276,6 +96708,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96276
96708
  } | {
96277
96709
  type: "cron";
96278
96710
  expression: string;
96711
+ timezone?: string | undefined;
96279
96712
  };
96280
96713
  target: {
96281
96714
  agentId: string;
@@ -96329,12 +96762,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96329
96762
  }>, z.ZodObject<{
96330
96763
  type: z.ZodLiteral<"cron">;
96331
96764
  expression: z.ZodString;
96765
+ timezone: z.ZodOptional<z.ZodString>;
96332
96766
  }, "strip", z.ZodTypeAny, {
96333
96767
  type: "cron";
96334
96768
  expression: string;
96769
+ timezone?: string | undefined;
96335
96770
  }, {
96336
96771
  type: "cron";
96337
96772
  expression: string;
96773
+ timezone?: string | undefined;
96338
96774
  }>]>;
96339
96775
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
96340
96776
  type: z.ZodLiteral<"agent">;
@@ -96500,6 +96936,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96500
96936
  } | {
96501
96937
  type: "cron";
96502
96938
  expression: string;
96939
+ timezone?: string | undefined;
96503
96940
  };
96504
96941
  target: {
96505
96942
  agentId: string;
@@ -96544,6 +96981,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96544
96981
  } | {
96545
96982
  type: "cron";
96546
96983
  expression: string;
96984
+ timezone?: string | undefined;
96547
96985
  };
96548
96986
  target: {
96549
96987
  agentId: string;
@@ -96593,6 +97031,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96593
97031
  } | {
96594
97032
  type: "cron";
96595
97033
  expression: string;
97034
+ timezone?: string | undefined;
96596
97035
  };
96597
97036
  target: {
96598
97037
  agentId: string;
@@ -96641,6 +97080,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96641
97080
  } | {
96642
97081
  type: "cron";
96643
97082
  expression: string;
97083
+ timezone?: string | undefined;
96644
97084
  };
96645
97085
  target: {
96646
97086
  agentId: string;
@@ -96692,6 +97132,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96692
97132
  } | {
96693
97133
  type: "cron";
96694
97134
  expression: string;
97135
+ timezone?: string | undefined;
96695
97136
  };
96696
97137
  target: {
96697
97138
  agentId: string;
@@ -96743,6 +97184,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96743
97184
  } | {
96744
97185
  type: "cron";
96745
97186
  expression: string;
97187
+ timezone?: string | undefined;
96746
97188
  };
96747
97189
  target: {
96748
97190
  agentId: string;
@@ -96796,12 +97238,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96796
97238
  }>, z.ZodObject<{
96797
97239
  type: z.ZodLiteral<"cron">;
96798
97240
  expression: z.ZodString;
97241
+ timezone: z.ZodOptional<z.ZodString>;
96799
97242
  }, "strip", z.ZodTypeAny, {
96800
97243
  type: "cron";
96801
97244
  expression: string;
97245
+ timezone?: string | undefined;
96802
97246
  }, {
96803
97247
  type: "cron";
96804
97248
  expression: string;
97249
+ timezone?: string | undefined;
96805
97250
  }>]>;
96806
97251
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
96807
97252
  type: z.ZodLiteral<"agent">;
@@ -96967,6 +97412,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96967
97412
  } | {
96968
97413
  type: "cron";
96969
97414
  expression: string;
97415
+ timezone?: string | undefined;
96970
97416
  };
96971
97417
  target: {
96972
97418
  agentId: string;
@@ -97021,6 +97467,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97021
97467
  } | {
97022
97468
  type: "cron";
97023
97469
  expression: string;
97470
+ timezone?: string | undefined;
97024
97471
  };
97025
97472
  target: {
97026
97473
  agentId: string;
@@ -97080,6 +97527,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97080
97527
  } | {
97081
97528
  type: "cron";
97082
97529
  expression: string;
97530
+ timezone?: string | undefined;
97083
97531
  };
97084
97532
  target: {
97085
97533
  agentId: string;
@@ -97138,6 +97586,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97138
97586
  } | {
97139
97587
  type: "cron";
97140
97588
  expression: string;
97589
+ timezone?: string | undefined;
97141
97590
  };
97142
97591
  target: {
97143
97592
  agentId: string;
@@ -97199,6 +97648,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97199
97648
  } | {
97200
97649
  type: "cron";
97201
97650
  expression: string;
97651
+ timezone?: string | undefined;
97202
97652
  };
97203
97653
  target: {
97204
97654
  agentId: string;
@@ -97260,6 +97710,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97260
97710
  } | {
97261
97711
  type: "cron";
97262
97712
  expression: string;
97713
+ timezone?: string | undefined;
97263
97714
  };
97264
97715
  target: {
97265
97716
  agentId: string;
@@ -97415,12 +97866,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97415
97866
  }>, z.ZodObject<{
97416
97867
  type: z.ZodLiteral<"cron">;
97417
97868
  expression: z.ZodString;
97869
+ timezone: z.ZodOptional<z.ZodString>;
97418
97870
  }, "strip", z.ZodTypeAny, {
97419
97871
  type: "cron";
97420
97872
  expression: string;
97873
+ timezone?: string | undefined;
97421
97874
  }, {
97422
97875
  type: "cron";
97423
97876
  expression: string;
97877
+ timezone?: string | undefined;
97424
97878
  }>]>;
97425
97879
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
97426
97880
  type: z.ZodLiteral<"agent">;
@@ -97586,6 +98040,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97586
98040
  } | {
97587
98041
  type: "cron";
97588
98042
  expression: string;
98043
+ timezone?: string | undefined;
97589
98044
  };
97590
98045
  target: {
97591
98046
  agentId: string;
@@ -97630,6 +98085,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97630
98085
  } | {
97631
98086
  type: "cron";
97632
98087
  expression: string;
98088
+ timezone?: string | undefined;
97633
98089
  };
97634
98090
  target: {
97635
98091
  agentId: string;
@@ -97679,6 +98135,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97679
98135
  } | {
97680
98136
  type: "cron";
97681
98137
  expression: string;
98138
+ timezone?: string | undefined;
97682
98139
  };
97683
98140
  target: {
97684
98141
  agentId: string;
@@ -97727,6 +98184,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97727
98184
  } | {
97728
98185
  type: "cron";
97729
98186
  expression: string;
98187
+ timezone?: string | undefined;
97730
98188
  };
97731
98189
  target: {
97732
98190
  agentId: string;
@@ -97778,6 +98236,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97778
98236
  } | {
97779
98237
  type: "cron";
97780
98238
  expression: string;
98239
+ timezone?: string | undefined;
97781
98240
  };
97782
98241
  target: {
97783
98242
  agentId: string;
@@ -97829,6 +98288,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97829
98288
  } | {
97830
98289
  type: "cron";
97831
98290
  expression: string;
98291
+ timezone?: string | undefined;
97832
98292
  };
97833
98293
  target: {
97834
98294
  agentId: string;
@@ -97882,12 +98342,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97882
98342
  }>, z.ZodObject<{
97883
98343
  type: z.ZodLiteral<"cron">;
97884
98344
  expression: z.ZodString;
98345
+ timezone: z.ZodOptional<z.ZodString>;
97885
98346
  }, "strip", z.ZodTypeAny, {
97886
98347
  type: "cron";
97887
98348
  expression: string;
98349
+ timezone?: string | undefined;
97888
98350
  }, {
97889
98351
  type: "cron";
97890
98352
  expression: string;
98353
+ timezone?: string | undefined;
97891
98354
  }>]>;
97892
98355
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
97893
98356
  type: z.ZodLiteral<"agent">;
@@ -98053,6 +98516,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98053
98516
  } | {
98054
98517
  type: "cron";
98055
98518
  expression: string;
98519
+ timezone?: string | undefined;
98056
98520
  };
98057
98521
  target: {
98058
98522
  agentId: string;
@@ -98097,6 +98561,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98097
98561
  } | {
98098
98562
  type: "cron";
98099
98563
  expression: string;
98564
+ timezone?: string | undefined;
98100
98565
  };
98101
98566
  target: {
98102
98567
  agentId: string;
@@ -98146,6 +98611,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98146
98611
  } | {
98147
98612
  type: "cron";
98148
98613
  expression: string;
98614
+ timezone?: string | undefined;
98149
98615
  };
98150
98616
  target: {
98151
98617
  agentId: string;
@@ -98194,6 +98660,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98194
98660
  } | {
98195
98661
  type: "cron";
98196
98662
  expression: string;
98663
+ timezone?: string | undefined;
98197
98664
  };
98198
98665
  target: {
98199
98666
  agentId: string;
@@ -98245,6 +98712,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98245
98712
  } | {
98246
98713
  type: "cron";
98247
98714
  expression: string;
98715
+ timezone?: string | undefined;
98248
98716
  };
98249
98717
  target: {
98250
98718
  agentId: string;
@@ -98296,6 +98764,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98296
98764
  } | {
98297
98765
  type: "cron";
98298
98766
  expression: string;
98767
+ timezone?: string | undefined;
98299
98768
  };
98300
98769
  target: {
98301
98770
  agentId: string;
@@ -98378,12 +98847,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98378
98847
  }>, z.ZodObject<{
98379
98848
  type: z.ZodLiteral<"cron">;
98380
98849
  expression: z.ZodString;
98850
+ timezone: z.ZodOptional<z.ZodString>;
98381
98851
  }, "strip", z.ZodTypeAny, {
98382
98852
  type: "cron";
98383
98853
  expression: string;
98854
+ timezone?: string | undefined;
98384
98855
  }, {
98385
98856
  type: "cron";
98386
98857
  expression: string;
98858
+ timezone?: string | undefined;
98387
98859
  }>]>;
98388
98860
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
98389
98861
  type: z.ZodLiteral<"agent">;
@@ -98549,6 +99021,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98549
99021
  } | {
98550
99022
  type: "cron";
98551
99023
  expression: string;
99024
+ timezone?: string | undefined;
98552
99025
  };
98553
99026
  target: {
98554
99027
  agentId: string;
@@ -98603,6 +99076,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98603
99076
  } | {
98604
99077
  type: "cron";
98605
99078
  expression: string;
99079
+ timezone?: string | undefined;
98606
99080
  };
98607
99081
  target: {
98608
99082
  agentId: string;
@@ -98662,6 +99136,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98662
99136
  } | {
98663
99137
  type: "cron";
98664
99138
  expression: string;
99139
+ timezone?: string | undefined;
98665
99140
  };
98666
99141
  target: {
98667
99142
  agentId: string;
@@ -98720,6 +99195,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98720
99195
  } | {
98721
99196
  type: "cron";
98722
99197
  expression: string;
99198
+ timezone?: string | undefined;
98723
99199
  };
98724
99200
  target: {
98725
99201
  agentId: string;
@@ -98781,6 +99257,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98781
99257
  } | {
98782
99258
  type: "cron";
98783
99259
  expression: string;
99260
+ timezone?: string | undefined;
98784
99261
  };
98785
99262
  target: {
98786
99263
  agentId: string;
@@ -98842,6 +99319,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98842
99319
  } | {
98843
99320
  type: "cron";
98844
99321
  expression: string;
99322
+ timezone?: string | undefined;
98845
99323
  };
98846
99324
  target: {
98847
99325
  agentId: string;
@@ -98905,12 +99383,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98905
99383
  }>, z.ZodObject<{
98906
99384
  type: z.ZodLiteral<"cron">;
98907
99385
  expression: z.ZodString;
99386
+ timezone: z.ZodOptional<z.ZodString>;
98908
99387
  }, "strip", z.ZodTypeAny, {
98909
99388
  type: "cron";
98910
99389
  expression: string;
99390
+ timezone?: string | undefined;
98911
99391
  }, {
98912
99392
  type: "cron";
98913
99393
  expression: string;
99394
+ timezone?: string | undefined;
98914
99395
  }>]>;
98915
99396
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
98916
99397
  type: z.ZodLiteral<"agent">;
@@ -99076,6 +99557,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99076
99557
  } | {
99077
99558
  type: "cron";
99078
99559
  expression: string;
99560
+ timezone?: string | undefined;
99079
99561
  };
99080
99562
  target: {
99081
99563
  agentId: string;
@@ -99130,6 +99612,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99130
99612
  } | {
99131
99613
  type: "cron";
99132
99614
  expression: string;
99615
+ timezone?: string | undefined;
99133
99616
  };
99134
99617
  target: {
99135
99618
  agentId: string;
@@ -99189,6 +99672,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99189
99672
  } | {
99190
99673
  type: "cron";
99191
99674
  expression: string;
99675
+ timezone?: string | undefined;
99192
99676
  };
99193
99677
  target: {
99194
99678
  agentId: string;
@@ -99247,6 +99731,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99247
99731
  } | {
99248
99732
  type: "cron";
99249
99733
  expression: string;
99734
+ timezone?: string | undefined;
99250
99735
  };
99251
99736
  target: {
99252
99737
  agentId: string;
@@ -99308,6 +99793,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99308
99793
  } | {
99309
99794
  type: "cron";
99310
99795
  expression: string;
99796
+ timezone?: string | undefined;
99311
99797
  };
99312
99798
  target: {
99313
99799
  agentId: string;
@@ -99369,6 +99855,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99369
99855
  } | {
99370
99856
  type: "cron";
99371
99857
  expression: string;
99858
+ timezone?: string | undefined;
99372
99859
  };
99373
99860
  target: {
99374
99861
  agentId: string;
@@ -101931,6 +102418,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
101931
102418
  } | {
101932
102419
  type: "cron";
101933
102420
  expression: string;
102421
+ timezone?: string | undefined;
101934
102422
  };
101935
102423
  target: {
101936
102424
  agentId: string;
@@ -101982,6 +102470,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
101982
102470
  } | {
101983
102471
  type: "cron";
101984
102472
  expression: string;
102473
+ timezone?: string | undefined;
101985
102474
  };
101986
102475
  target: {
101987
102476
  agentId: string;
@@ -102033,6 +102522,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
102033
102522
  } | {
102034
102523
  type: "cron";
102035
102524
  expression: string;
102525
+ timezone?: string | undefined;
102036
102526
  };
102037
102527
  target: {
102038
102528
  agentId: string;
@@ -102110,6 +102600,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
102110
102600
  } | {
102111
102601
  type: "cron";
102112
102602
  expression: string;
102603
+ timezone?: string | undefined;
102113
102604
  };
102114
102605
  target: {
102115
102606
  agentId: string;
@@ -102161,6 +102652,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
102161
102652
  } | {
102162
102653
  type: "cron";
102163
102654
  expression: string;
102655
+ timezone?: string | undefined;
102164
102656
  };
102165
102657
  target: {
102166
102658
  agentId: string;
@@ -102219,6 +102711,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
102219
102711
  } | {
102220
102712
  type: "cron";
102221
102713
  expression: string;
102714
+ timezone?: string | undefined;
102222
102715
  };
102223
102716
  target: {
102224
102717
  agentId: string;
@@ -102280,6 +102773,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
102280
102773
  } | {
102281
102774
  type: "cron";
102282
102775
  expression: string;
102776
+ timezone?: string | undefined;
102283
102777
  };
102284
102778
  target: {
102285
102779
  agentId: string;
@@ -103228,6 +103722,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
103228
103722
  proxyUrl: string | null;
103229
103723
  lifecycle: "running" | "stopped";
103230
103724
  health: "healthy" | "unhealthy" | null;
103725
+ localProxyUrl?: string | null | undefined;
103726
+ publicProxyUrl?: string | null | undefined;
103231
103727
  }[];
103232
103728
  projectId: string;
103233
103729
  projectDisplayName: string;
@@ -103340,6 +103836,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
103340
103836
  proxyUrl: string | null;
103341
103837
  lifecycle: "running" | "stopped";
103342
103838
  health: "healthy" | "unhealthy" | null;
103839
+ localProxyUrl?: string | null | undefined;
103840
+ publicProxyUrl?: string | null | undefined;
103343
103841
  }[];
103344
103842
  projectId: string;
103345
103843
  projectDisplayName: string;
@@ -103442,6 +103940,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
103442
103940
  proxyUrl: string | null;
103443
103941
  lifecycle: "running" | "stopped";
103444
103942
  health: "healthy" | "unhealthy" | null;
103943
+ localProxyUrl?: string | null | undefined;
103944
+ publicProxyUrl?: string | null | undefined;
103445
103945
  }[];
103446
103946
  workspaceId: string;
103447
103947
  };
@@ -103514,6 +104014,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
103514
104014
  proxyUrl: string | null;
103515
104015
  lifecycle: "running" | "stopped";
103516
104016
  health: "healthy" | "unhealthy" | null;
104017
+ localProxyUrl?: string | null | undefined;
104018
+ publicProxyUrl?: string | null | undefined;
103517
104019
  }[];
103518
104020
  projectId: string;
103519
104021
  projectDisplayName: string;
@@ -104972,6 +105474,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
104972
105474
  proxyUrl: string | null;
104973
105475
  lifecycle: "running" | "stopped";
104974
105476
  health: "healthy" | "unhealthy" | null;
105477
+ localProxyUrl?: string | null | undefined;
105478
+ publicProxyUrl?: string | null | undefined;
104975
105479
  }[];
104976
105480
  projectId: string;
104977
105481
  projectDisplayName: string;
@@ -105433,6 +105937,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105433
105937
  } | {
105434
105938
  type: "cron";
105435
105939
  expression: string;
105940
+ timezone?: string | undefined;
105436
105941
  };
105437
105942
  target: {
105438
105943
  agentId: string;
@@ -105484,6 +105989,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105484
105989
  } | {
105485
105990
  type: "cron";
105486
105991
  expression: string;
105992
+ timezone?: string | undefined;
105487
105993
  };
105488
105994
  target: {
105489
105995
  agentId: string;
@@ -105535,6 +106041,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105535
106041
  } | {
105536
106042
  type: "cron";
105537
106043
  expression: string;
106044
+ timezone?: string | undefined;
105538
106045
  };
105539
106046
  target: {
105540
106047
  agentId: string;
@@ -105612,6 +106119,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105612
106119
  } | {
105613
106120
  type: "cron";
105614
106121
  expression: string;
106122
+ timezone?: string | undefined;
105615
106123
  };
105616
106124
  target: {
105617
106125
  agentId: string;
@@ -105663,6 +106171,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105663
106171
  } | {
105664
106172
  type: "cron";
105665
106173
  expression: string;
106174
+ timezone?: string | undefined;
105666
106175
  };
105667
106176
  target: {
105668
106177
  agentId: string;
@@ -105721,6 +106230,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105721
106230
  } | {
105722
106231
  type: "cron";
105723
106232
  expression: string;
106233
+ timezone?: string | undefined;
105724
106234
  };
105725
106235
  target: {
105726
106236
  agentId: string;
@@ -105782,6 +106292,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105782
106292
  } | {
105783
106293
  type: "cron";
105784
106294
  expression: string;
106295
+ timezone?: string | undefined;
105785
106296
  };
105786
106297
  target: {
105787
106298
  agentId: string;
@@ -106734,6 +107245,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
106734
107245
  type?: "script" | "service" | undefined;
106735
107246
  exitCode?: number | null | undefined;
106736
107247
  terminalId?: string | null | undefined;
107248
+ localProxyUrl?: string | null | undefined;
107249
+ publicProxyUrl?: string | null | undefined;
106737
107250
  proxyUrl?: string | null | undefined;
106738
107251
  }[] | undefined;
106739
107252
  projectCustomName?: string | null | undefined;
@@ -106846,6 +107359,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
106846
107359
  type?: "script" | "service" | undefined;
106847
107360
  exitCode?: number | null | undefined;
106848
107361
  terminalId?: string | null | undefined;
107362
+ localProxyUrl?: string | null | undefined;
107363
+ publicProxyUrl?: string | null | undefined;
106849
107364
  proxyUrl?: string | null | undefined;
106850
107365
  }[] | undefined;
106851
107366
  projectCustomName?: string | null | undefined;
@@ -106943,6 +107458,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
106943
107458
  type?: "script" | "service" | undefined;
106944
107459
  exitCode?: number | null | undefined;
106945
107460
  terminalId?: string | null | undefined;
107461
+ localProxyUrl?: string | null | undefined;
107462
+ publicProxyUrl?: string | null | undefined;
106946
107463
  proxyUrl?: string | null | undefined;
106947
107464
  }[];
106948
107465
  workspaceId: string;
@@ -107020,6 +107537,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
107020
107537
  type?: "script" | "service" | undefined;
107021
107538
  exitCode?: number | null | undefined;
107022
107539
  terminalId?: string | null | undefined;
107540
+ localProxyUrl?: string | null | undefined;
107541
+ publicProxyUrl?: string | null | undefined;
107023
107542
  proxyUrl?: string | null | undefined;
107024
107543
  }[] | undefined;
107025
107544
  projectCustomName?: string | null | undefined;
@@ -108437,6 +108956,8 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
108437
108956
  type?: "script" | "service" | undefined;
108438
108957
  exitCode?: number | null | undefined;
108439
108958
  terminalId?: string | null | undefined;
108959
+ localProxyUrl?: string | null | undefined;
108960
+ publicProxyUrl?: string | null | undefined;
108440
108961
  proxyUrl?: string | null | undefined;
108441
108962
  }[] | undefined;
108442
108963
  projectCustomName?: string | null | undefined;
@@ -108786,16 +109307,19 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
108786
109307
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
108787
109308
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
108788
109309
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
109310
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
108789
109311
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
108790
109312
  voice: z.ZodOptional<z.ZodBoolean>;
108791
109313
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
108792
109314
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
108793
109315
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
109316
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
108794
109317
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
108795
109318
  voice: z.ZodOptional<z.ZodBoolean>;
108796
109319
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
108797
109320
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
108798
109321
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
109322
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
108799
109323
  }, z.ZodTypeAny, "passthrough">>>;
108800
109324
  }, "strip", z.ZodTypeAny, {
108801
109325
  type: "hello";
@@ -108807,6 +109331,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
108807
109331
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
108808
109332
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
108809
109333
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
109334
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
108810
109335
  }, z.ZodTypeAny, "passthrough"> | undefined;
108811
109336
  appVersion?: string | undefined;
108812
109337
  }, {
@@ -108819,6 +109344,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
108819
109344
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
108820
109345
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
108821
109346
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
109347
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
108822
109348
  }, z.ZodTypeAny, "passthrough"> | undefined;
108823
109349
  appVersion?: string | undefined;
108824
109350
  }>, z.ZodObject<{
@@ -112346,14 +112872,14 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112346
112872
  size: z.ZodOptional<z.ZodObject<{
112347
112873
  rows: z.ZodNumber;
112348
112874
  cols: z.ZodNumber;
112349
- }, "strict", z.ZodTypeAny, {
112875
+ }, "strip", z.ZodTypeAny, {
112350
112876
  rows: number;
112351
112877
  cols: number;
112352
112878
  }, {
112353
112879
  rows: number;
112354
112880
  cols: number;
112355
112881
  }>>;
112356
- }, "strict", z.ZodTypeAny, {
112882
+ }, "strip", z.ZodTypeAny, {
112357
112883
  mode: "live" | "visible-snapshot" | "full-snapshot";
112358
112884
  size?: {
112359
112885
  rows: number;
@@ -112636,12 +113162,15 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112636
113162
  }>, z.ZodObject<{
112637
113163
  type: z.ZodLiteral<"cron">;
112638
113164
  expression: z.ZodString;
113165
+ timezone: z.ZodOptional<z.ZodString>;
112639
113166
  }, "strip", z.ZodTypeAny, {
112640
113167
  type: "cron";
112641
113168
  expression: string;
113169
+ timezone?: string | undefined;
112642
113170
  }, {
112643
113171
  type: "cron";
112644
113172
  expression: string;
113173
+ timezone?: string | undefined;
112645
113174
  }>]>;
112646
113175
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
112647
113176
  type: z.ZodLiteral<"self">;
@@ -112780,6 +113309,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112780
113309
  } | {
112781
113310
  type: "cron";
112782
113311
  expression: string;
113312
+ timezone?: string | undefined;
112783
113313
  };
112784
113314
  target: {
112785
113315
  agentId: string;
@@ -112823,6 +113353,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112823
113353
  } | {
112824
113354
  type: "cron";
112825
113355
  expression: string;
113356
+ timezone?: string | undefined;
112826
113357
  };
112827
113358
  target: {
112828
113359
  agentId: string;
@@ -112955,12 +113486,15 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112955
113486
  }>, z.ZodObject<{
112956
113487
  type: z.ZodLiteral<"cron">;
112957
113488
  expression: z.ZodString;
113489
+ timezone: z.ZodOptional<z.ZodString>;
112958
113490
  }, "strip", z.ZodTypeAny, {
112959
113491
  type: "cron";
112960
113492
  expression: string;
113493
+ timezone?: string | undefined;
112961
113494
  }, {
112962
113495
  type: "cron";
112963
113496
  expression: string;
113497
+ timezone?: string | undefined;
112964
113498
  }>]>>;
112965
113499
  newAgentConfig: z.ZodOptional<z.ZodObject<{
112966
113500
  provider: z.ZodOptional<z.ZodString>;
@@ -112992,6 +113526,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112992
113526
  } | {
112993
113527
  type: "cron";
112994
113528
  expression: string;
113529
+ timezone?: string | undefined;
112995
113530
  } | undefined;
112996
113531
  expiresAt?: string | null | undefined;
112997
113532
  maxRuns?: number | null | undefined;
@@ -113013,6 +113548,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
113013
113548
  } | {
113014
113549
  type: "cron";
113015
113550
  expression: string;
113551
+ timezone?: string | undefined;
113016
113552
  } | undefined;
113017
113553
  expiresAt?: string | null | undefined;
113018
113554
  maxRuns?: number | null | undefined;
@@ -113179,6 +113715,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
113179
113715
  } | {
113180
113716
  type: "cron";
113181
113717
  expression: string;
113718
+ timezone?: string | undefined;
113182
113719
  };
113183
113720
  target: {
113184
113721
  agentId: string;
@@ -113251,6 +113788,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
113251
113788
  } | {
113252
113789
  type: "cron";
113253
113790
  expression: string;
113791
+ timezone?: string | undefined;
113254
113792
  } | undefined;
113255
113793
  expiresAt?: string | null | undefined;
113256
113794
  maxRuns?: number | null | undefined;
@@ -114293,6 +114831,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
114293
114831
  } | {
114294
114832
  type: "cron";
114295
114833
  expression: string;
114834
+ timezone?: string | undefined;
114296
114835
  };
114297
114836
  target: {
114298
114837
  agentId: string;
@@ -114365,6 +114904,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
114365
114904
  } | {
114366
114905
  type: "cron";
114367
114906
  expression: string;
114907
+ timezone?: string | undefined;
114368
114908
  } | undefined;
114369
114909
  expiresAt?: string | null | undefined;
114370
114910
  maxRuns?: number | null | undefined;
@@ -116383,6 +116923,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
116383
116923
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
116384
116924
  hostname: z.ZodString;
116385
116925
  port: z.ZodNullable<z.ZodNumber>;
116926
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
116927
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
116386
116928
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
116387
116929
  lifecycle: z.ZodEnum<["running", "stopped"]>;
116388
116930
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -116398,6 +116940,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
116398
116940
  proxyUrl: string | null;
116399
116941
  lifecycle: "running" | "stopped";
116400
116942
  health: "healthy" | "unhealthy" | null;
116943
+ localProxyUrl?: string | null | undefined;
116944
+ publicProxyUrl?: string | null | undefined;
116401
116945
  }, {
116402
116946
  port: number | null;
116403
116947
  scriptName: string;
@@ -116407,6 +116951,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
116407
116951
  type?: "script" | "service" | undefined;
116408
116952
  exitCode?: number | null | undefined;
116409
116953
  terminalId?: string | null | undefined;
116954
+ localProxyUrl?: string | null | undefined;
116955
+ publicProxyUrl?: string | null | undefined;
116410
116956
  proxyUrl?: string | null | undefined;
116411
116957
  }>, "many">>;
116412
116958
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -116792,6 +117338,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
116792
117338
  proxyUrl: string | null;
116793
117339
  lifecycle: "running" | "stopped";
116794
117340
  health: "healthy" | "unhealthy" | null;
117341
+ localProxyUrl?: string | null | undefined;
117342
+ publicProxyUrl?: string | null | undefined;
116795
117343
  }[];
116796
117344
  projectId: string;
116797
117345
  projectDisplayName: string;
@@ -116896,6 +117444,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
116896
117444
  type?: "script" | "service" | undefined;
116897
117445
  exitCode?: number | null | undefined;
116898
117446
  terminalId?: string | null | undefined;
117447
+ localProxyUrl?: string | null | undefined;
117448
+ publicProxyUrl?: string | null | undefined;
116899
117449
  proxyUrl?: string | null | undefined;
116900
117450
  }[] | undefined;
116901
117451
  projectCustomName?: string | null | undefined;
@@ -116991,6 +117541,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
116991
117541
  proxyUrl: string | null;
116992
117542
  lifecycle: "running" | "stopped";
116993
117543
  health: "healthy" | "unhealthy" | null;
117544
+ localProxyUrl?: string | null | undefined;
117545
+ publicProxyUrl?: string | null | undefined;
116994
117546
  }[];
116995
117547
  projectId: string;
116996
117548
  projectDisplayName: string;
@@ -117094,6 +117646,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117094
117646
  type?: "script" | "service" | undefined;
117095
117647
  exitCode?: number | null | undefined;
117096
117648
  terminalId?: string | null | undefined;
117649
+ localProxyUrl?: string | null | undefined;
117650
+ publicProxyUrl?: string | null | undefined;
117097
117651
  proxyUrl?: string | null | undefined;
117098
117652
  }[] | undefined;
117099
117653
  projectCustomName?: string | null | undefined;
@@ -117192,6 +117746,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117192
117746
  proxyUrl: string | null;
117193
117747
  lifecycle: "running" | "stopped";
117194
117748
  health: "healthy" | "unhealthy" | null;
117749
+ localProxyUrl?: string | null | undefined;
117750
+ publicProxyUrl?: string | null | undefined;
117195
117751
  }[];
117196
117752
  projectId: string;
117197
117753
  projectDisplayName: string;
@@ -117298,6 +117854,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117298
117854
  type?: "script" | "service" | undefined;
117299
117855
  exitCode?: number | null | undefined;
117300
117856
  terminalId?: string | null | undefined;
117857
+ localProxyUrl?: string | null | undefined;
117858
+ publicProxyUrl?: string | null | undefined;
117301
117859
  proxyUrl?: string | null | undefined;
117302
117860
  }[] | undefined;
117303
117861
  projectCustomName?: string | null | undefined;
@@ -117408,6 +117966,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117408
117966
  proxyUrl: string | null;
117409
117967
  lifecycle: "running" | "stopped";
117410
117968
  health: "healthy" | "unhealthy" | null;
117969
+ localProxyUrl?: string | null | undefined;
117970
+ publicProxyUrl?: string | null | undefined;
117411
117971
  }[];
117412
117972
  projectId: string;
117413
117973
  projectDisplayName: string;
@@ -117520,6 +118080,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117520
118080
  type?: "script" | "service" | undefined;
117521
118081
  exitCode?: number | null | undefined;
117522
118082
  terminalId?: string | null | undefined;
118083
+ localProxyUrl?: string | null | undefined;
118084
+ publicProxyUrl?: string | null | undefined;
117523
118085
  proxyUrl?: string | null | undefined;
117524
118086
  }[] | undefined;
117525
118087
  projectCustomName?: string | null | undefined;
@@ -117614,6 +118176,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117614
118176
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
117615
118177
  hostname: z.ZodString;
117616
118178
  port: z.ZodNullable<z.ZodNumber>;
118179
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
118180
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
117617
118181
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
117618
118182
  lifecycle: z.ZodEnum<["running", "stopped"]>;
117619
118183
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -117629,6 +118193,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117629
118193
  proxyUrl: string | null;
117630
118194
  lifecycle: "running" | "stopped";
117631
118195
  health: "healthy" | "unhealthy" | null;
118196
+ localProxyUrl?: string | null | undefined;
118197
+ publicProxyUrl?: string | null | undefined;
117632
118198
  }, {
117633
118199
  port: number | null;
117634
118200
  scriptName: string;
@@ -117638,6 +118204,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117638
118204
  type?: "script" | "service" | undefined;
117639
118205
  exitCode?: number | null | undefined;
117640
118206
  terminalId?: string | null | undefined;
118207
+ localProxyUrl?: string | null | undefined;
118208
+ publicProxyUrl?: string | null | undefined;
117641
118209
  proxyUrl?: string | null | undefined;
117642
118210
  }>, "many">;
117643
118211
  }, "strip", z.ZodTypeAny, {
@@ -117651,6 +118219,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117651
118219
  proxyUrl: string | null;
117652
118220
  lifecycle: "running" | "stopped";
117653
118221
  health: "healthy" | "unhealthy" | null;
118222
+ localProxyUrl?: string | null | undefined;
118223
+ publicProxyUrl?: string | null | undefined;
117654
118224
  }[];
117655
118225
  workspaceId: string;
117656
118226
  }, {
@@ -117663,6 +118233,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117663
118233
  type?: "script" | "service" | undefined;
117664
118234
  exitCode?: number | null | undefined;
117665
118235
  terminalId?: string | null | undefined;
118236
+ localProxyUrl?: string | null | undefined;
118237
+ publicProxyUrl?: string | null | undefined;
117666
118238
  proxyUrl?: string | null | undefined;
117667
118239
  }[];
117668
118240
  workspaceId: string;
@@ -117680,6 +118252,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117680
118252
  proxyUrl: string | null;
117681
118253
  lifecycle: "running" | "stopped";
117682
118254
  health: "healthy" | "unhealthy" | null;
118255
+ localProxyUrl?: string | null | undefined;
118256
+ publicProxyUrl?: string | null | undefined;
117683
118257
  }[];
117684
118258
  workspaceId: string;
117685
118259
  };
@@ -117695,6 +118269,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
117695
118269
  type?: "script" | "service" | undefined;
117696
118270
  exitCode?: number | null | undefined;
117697
118271
  terminalId?: string | null | undefined;
118272
+ localProxyUrl?: string | null | undefined;
118273
+ publicProxyUrl?: string | null | undefined;
117698
118274
  proxyUrl?: string | null | undefined;
117699
118275
  }[];
117700
118276
  workspaceId: string;
@@ -120903,6 +121479,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
120903
121479
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
120904
121480
  hostname: z.ZodString;
120905
121481
  port: z.ZodNullable<z.ZodNumber>;
121482
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
121483
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
120906
121484
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
120907
121485
  lifecycle: z.ZodEnum<["running", "stopped"]>;
120908
121486
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -120918,6 +121496,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
120918
121496
  proxyUrl: string | null;
120919
121497
  lifecycle: "running" | "stopped";
120920
121498
  health: "healthy" | "unhealthy" | null;
121499
+ localProxyUrl?: string | null | undefined;
121500
+ publicProxyUrl?: string | null | undefined;
120921
121501
  }, {
120922
121502
  port: number | null;
120923
121503
  scriptName: string;
@@ -120927,6 +121507,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
120927
121507
  type?: "script" | "service" | undefined;
120928
121508
  exitCode?: number | null | undefined;
120929
121509
  terminalId?: string | null | undefined;
121510
+ localProxyUrl?: string | null | undefined;
121511
+ publicProxyUrl?: string | null | undefined;
120930
121512
  proxyUrl?: string | null | undefined;
120931
121513
  }>, "many">>;
120932
121514
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -121312,6 +121894,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121312
121894
  proxyUrl: string | null;
121313
121895
  lifecycle: "running" | "stopped";
121314
121896
  health: "healthy" | "unhealthy" | null;
121897
+ localProxyUrl?: string | null | undefined;
121898
+ publicProxyUrl?: string | null | undefined;
121315
121899
  }[];
121316
121900
  projectId: string;
121317
121901
  projectDisplayName: string;
@@ -121416,6 +122000,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121416
122000
  type?: "script" | "service" | undefined;
121417
122001
  exitCode?: number | null | undefined;
121418
122002
  terminalId?: string | null | undefined;
122003
+ localProxyUrl?: string | null | undefined;
122004
+ publicProxyUrl?: string | null | undefined;
121419
122005
  proxyUrl?: string | null | undefined;
121420
122006
  }[] | undefined;
121421
122007
  projectCustomName?: string | null | undefined;
@@ -121511,6 +122097,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121511
122097
  proxyUrl: string | null;
121512
122098
  lifecycle: "running" | "stopped";
121513
122099
  health: "healthy" | "unhealthy" | null;
122100
+ localProxyUrl?: string | null | undefined;
122101
+ publicProxyUrl?: string | null | undefined;
121514
122102
  }[];
121515
122103
  projectId: string;
121516
122104
  projectDisplayName: string;
@@ -121614,6 +122202,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121614
122202
  type?: "script" | "service" | undefined;
121615
122203
  exitCode?: number | null | undefined;
121616
122204
  terminalId?: string | null | undefined;
122205
+ localProxyUrl?: string | null | undefined;
122206
+ publicProxyUrl?: string | null | undefined;
121617
122207
  proxyUrl?: string | null | undefined;
121618
122208
  }[] | undefined;
121619
122209
  projectCustomName?: string | null | undefined;
@@ -121724,6 +122314,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121724
122314
  proxyUrl: string | null;
121725
122315
  lifecycle: "running" | "stopped";
121726
122316
  health: "healthy" | "unhealthy" | null;
122317
+ localProxyUrl?: string | null | undefined;
122318
+ publicProxyUrl?: string | null | undefined;
121727
122319
  }[];
121728
122320
  projectId: string;
121729
122321
  projectDisplayName: string;
@@ -121836,6 +122428,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121836
122428
  type?: "script" | "service" | undefined;
121837
122429
  exitCode?: number | null | undefined;
121838
122430
  terminalId?: string | null | undefined;
122431
+ localProxyUrl?: string | null | undefined;
122432
+ publicProxyUrl?: string | null | undefined;
121839
122433
  proxyUrl?: string | null | undefined;
121840
122434
  }[] | undefined;
121841
122435
  projectCustomName?: string | null | undefined;
@@ -121943,6 +122537,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
121943
122537
  proxyUrl: string | null;
121944
122538
  lifecycle: "running" | "stopped";
121945
122539
  health: "healthy" | "unhealthy" | null;
122540
+ localProxyUrl?: string | null | undefined;
122541
+ publicProxyUrl?: string | null | undefined;
121946
122542
  }[];
121947
122543
  projectId: string;
121948
122544
  projectDisplayName: string;
@@ -122058,6 +122654,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122058
122654
  type?: "script" | "service" | undefined;
122059
122655
  exitCode?: number | null | undefined;
122060
122656
  terminalId?: string | null | undefined;
122657
+ localProxyUrl?: string | null | undefined;
122658
+ publicProxyUrl?: string | null | undefined;
122061
122659
  proxyUrl?: string | null | undefined;
122062
122660
  }[] | undefined;
122063
122661
  projectCustomName?: string | null | undefined;
@@ -122179,6 +122777,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122179
122777
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
122180
122778
  hostname: z.ZodString;
122181
122779
  port: z.ZodNullable<z.ZodNumber>;
122780
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
122781
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
122182
122782
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
122183
122783
  lifecycle: z.ZodEnum<["running", "stopped"]>;
122184
122784
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -122194,6 +122794,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122194
122794
  proxyUrl: string | null;
122195
122795
  lifecycle: "running" | "stopped";
122196
122796
  health: "healthy" | "unhealthy" | null;
122797
+ localProxyUrl?: string | null | undefined;
122798
+ publicProxyUrl?: string | null | undefined;
122197
122799
  }, {
122198
122800
  port: number | null;
122199
122801
  scriptName: string;
@@ -122203,6 +122805,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122203
122805
  type?: "script" | "service" | undefined;
122204
122806
  exitCode?: number | null | undefined;
122205
122807
  terminalId?: string | null | undefined;
122808
+ localProxyUrl?: string | null | undefined;
122809
+ publicProxyUrl?: string | null | undefined;
122206
122810
  proxyUrl?: string | null | undefined;
122207
122811
  }>, "many">>;
122208
122812
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -122588,6 +123192,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122588
123192
  proxyUrl: string | null;
122589
123193
  lifecycle: "running" | "stopped";
122590
123194
  health: "healthy" | "unhealthy" | null;
123195
+ localProxyUrl?: string | null | undefined;
123196
+ publicProxyUrl?: string | null | undefined;
122591
123197
  }[];
122592
123198
  projectId: string;
122593
123199
  projectDisplayName: string;
@@ -122692,6 +123298,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122692
123298
  type?: "script" | "service" | undefined;
122693
123299
  exitCode?: number | null | undefined;
122694
123300
  terminalId?: string | null | undefined;
123301
+ localProxyUrl?: string | null | undefined;
123302
+ publicProxyUrl?: string | null | undefined;
122695
123303
  proxyUrl?: string | null | undefined;
122696
123304
  }[] | undefined;
122697
123305
  projectCustomName?: string | null | undefined;
@@ -122787,6 +123395,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122787
123395
  proxyUrl: string | null;
122788
123396
  lifecycle: "running" | "stopped";
122789
123397
  health: "healthy" | "unhealthy" | null;
123398
+ localProxyUrl?: string | null | undefined;
123399
+ publicProxyUrl?: string | null | undefined;
122790
123400
  }[];
122791
123401
  projectId: string;
122792
123402
  projectDisplayName: string;
@@ -122890,6 +123500,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122890
123500
  type?: "script" | "service" | undefined;
122891
123501
  exitCode?: number | null | undefined;
122892
123502
  terminalId?: string | null | undefined;
123503
+ localProxyUrl?: string | null | undefined;
123504
+ publicProxyUrl?: string | null | undefined;
122893
123505
  proxyUrl?: string | null | undefined;
122894
123506
  }[] | undefined;
122895
123507
  projectCustomName?: string | null | undefined;
@@ -122990,6 +123602,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
122990
123602
  proxyUrl: string | null;
122991
123603
  lifecycle: "running" | "stopped";
122992
123604
  health: "healthy" | "unhealthy" | null;
123605
+ localProxyUrl?: string | null | undefined;
123606
+ publicProxyUrl?: string | null | undefined;
122993
123607
  }[];
122994
123608
  projectId: string;
122995
123609
  projectDisplayName: string;
@@ -123097,6 +123711,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
123097
123711
  type?: "script" | "service" | undefined;
123098
123712
  exitCode?: number | null | undefined;
123099
123713
  terminalId?: string | null | undefined;
123714
+ localProxyUrl?: string | null | undefined;
123715
+ publicProxyUrl?: string | null | undefined;
123100
123716
  proxyUrl?: string | null | undefined;
123101
123717
  }[] | undefined;
123102
123718
  projectCustomName?: string | null | undefined;
@@ -123199,6 +123815,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
123199
123815
  proxyUrl: string | null;
123200
123816
  lifecycle: "running" | "stopped";
123201
123817
  health: "healthy" | "unhealthy" | null;
123818
+ localProxyUrl?: string | null | undefined;
123819
+ publicProxyUrl?: string | null | undefined;
123202
123820
  }[];
123203
123821
  projectId: string;
123204
123822
  projectDisplayName: string;
@@ -123309,6 +123927,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
123309
123927
  type?: "script" | "service" | undefined;
123310
123928
  exitCode?: number | null | undefined;
123311
123929
  terminalId?: string | null | undefined;
123930
+ localProxyUrl?: string | null | undefined;
123931
+ publicProxyUrl?: string | null | undefined;
123312
123932
  proxyUrl?: string | null | undefined;
123313
123933
  }[] | undefined;
123314
123934
  projectCustomName?: string | null | undefined;
@@ -134374,6 +134994,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
134374
134994
  type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["script", "service"]>>>;
134375
134995
  hostname: z.ZodString;
134376
134996
  port: z.ZodNullable<z.ZodNumber>;
134997
+ localProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
134998
+ publicProxyUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
134377
134999
  proxyUrl: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
134378
135000
  lifecycle: z.ZodEnum<["running", "stopped"]>;
134379
135001
  health: z.ZodNullable<z.ZodEnum<["healthy", "unhealthy"]>>;
@@ -134389,6 +135011,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
134389
135011
  proxyUrl: string | null;
134390
135012
  lifecycle: "running" | "stopped";
134391
135013
  health: "healthy" | "unhealthy" | null;
135014
+ localProxyUrl?: string | null | undefined;
135015
+ publicProxyUrl?: string | null | undefined;
134392
135016
  }, {
134393
135017
  port: number | null;
134394
135018
  scriptName: string;
@@ -134398,6 +135022,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
134398
135022
  type?: "script" | "service" | undefined;
134399
135023
  exitCode?: number | null | undefined;
134400
135024
  terminalId?: string | null | undefined;
135025
+ localProxyUrl?: string | null | undefined;
135026
+ publicProxyUrl?: string | null | undefined;
134401
135027
  proxyUrl?: string | null | undefined;
134402
135028
  }>, "many">>;
134403
135029
  gitRuntime: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -134783,6 +135409,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
134783
135409
  proxyUrl: string | null;
134784
135410
  lifecycle: "running" | "stopped";
134785
135411
  health: "healthy" | "unhealthy" | null;
135412
+ localProxyUrl?: string | null | undefined;
135413
+ publicProxyUrl?: string | null | undefined;
134786
135414
  }[];
134787
135415
  projectId: string;
134788
135416
  projectDisplayName: string;
@@ -134887,6 +135515,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
134887
135515
  type?: "script" | "service" | undefined;
134888
135516
  exitCode?: number | null | undefined;
134889
135517
  terminalId?: string | null | undefined;
135518
+ localProxyUrl?: string | null | undefined;
135519
+ publicProxyUrl?: string | null | undefined;
134890
135520
  proxyUrl?: string | null | undefined;
134891
135521
  }[] | undefined;
134892
135522
  projectCustomName?: string | null | undefined;
@@ -134982,6 +135612,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
134982
135612
  proxyUrl: string | null;
134983
135613
  lifecycle: "running" | "stopped";
134984
135614
  health: "healthy" | "unhealthy" | null;
135615
+ localProxyUrl?: string | null | undefined;
135616
+ publicProxyUrl?: string | null | undefined;
134985
135617
  }[];
134986
135618
  projectId: string;
134987
135619
  projectDisplayName: string;
@@ -135085,6 +135717,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135085
135717
  type?: "script" | "service" | undefined;
135086
135718
  exitCode?: number | null | undefined;
135087
135719
  terminalId?: string | null | undefined;
135720
+ localProxyUrl?: string | null | undefined;
135721
+ publicProxyUrl?: string | null | undefined;
135088
135722
  proxyUrl?: string | null | undefined;
135089
135723
  }[] | undefined;
135090
135724
  projectCustomName?: string | null | undefined;
@@ -135188,6 +135822,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135188
135822
  proxyUrl: string | null;
135189
135823
  lifecycle: "running" | "stopped";
135190
135824
  health: "healthy" | "unhealthy" | null;
135825
+ localProxyUrl?: string | null | undefined;
135826
+ publicProxyUrl?: string | null | undefined;
135191
135827
  }[];
135192
135828
  projectId: string;
135193
135829
  projectDisplayName: string;
@@ -135297,6 +135933,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135297
135933
  type?: "script" | "service" | undefined;
135298
135934
  exitCode?: number | null | undefined;
135299
135935
  terminalId?: string | null | undefined;
135936
+ localProxyUrl?: string | null | undefined;
135937
+ publicProxyUrl?: string | null | undefined;
135300
135938
  proxyUrl?: string | null | undefined;
135301
135939
  }[] | undefined;
135302
135940
  projectCustomName?: string | null | undefined;
@@ -135401,6 +136039,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135401
136039
  proxyUrl: string | null;
135402
136040
  lifecycle: "running" | "stopped";
135403
136041
  health: "healthy" | "unhealthy" | null;
136042
+ localProxyUrl?: string | null | undefined;
136043
+ publicProxyUrl?: string | null | undefined;
135404
136044
  }[];
135405
136045
  projectId: string;
135406
136046
  projectDisplayName: string;
@@ -135513,6 +136153,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
135513
136153
  type?: "script" | "service" | undefined;
135514
136154
  exitCode?: number | null | undefined;
135515
136155
  terminalId?: string | null | undefined;
136156
+ localProxyUrl?: string | null | undefined;
136157
+ publicProxyUrl?: string | null | undefined;
135516
136158
  proxyUrl?: string | null | undefined;
135517
136159
  }[] | undefined;
135518
136160
  projectCustomName?: string | null | undefined;
@@ -137529,12 +138171,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137529
138171
  }>, z.ZodObject<{
137530
138172
  type: z.ZodLiteral<"cron">;
137531
138173
  expression: z.ZodString;
138174
+ timezone: z.ZodOptional<z.ZodString>;
137532
138175
  }, "strip", z.ZodTypeAny, {
137533
138176
  type: "cron";
137534
138177
  expression: string;
138178
+ timezone?: string | undefined;
137535
138179
  }, {
137536
138180
  type: "cron";
137537
138181
  expression: string;
138182
+ timezone?: string | undefined;
137538
138183
  }>]>;
137539
138184
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
137540
138185
  type: z.ZodLiteral<"agent">;
@@ -137700,6 +138345,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137700
138345
  } | {
137701
138346
  type: "cron";
137702
138347
  expression: string;
138348
+ timezone?: string | undefined;
137703
138349
  };
137704
138350
  target: {
137705
138351
  agentId: string;
@@ -137744,6 +138390,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137744
138390
  } | {
137745
138391
  type: "cron";
137746
138392
  expression: string;
138393
+ timezone?: string | undefined;
137747
138394
  };
137748
138395
  target: {
137749
138396
  agentId: string;
@@ -137793,6 +138440,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137793
138440
  } | {
137794
138441
  type: "cron";
137795
138442
  expression: string;
138443
+ timezone?: string | undefined;
137796
138444
  };
137797
138445
  target: {
137798
138446
  agentId: string;
@@ -137841,6 +138489,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137841
138489
  } | {
137842
138490
  type: "cron";
137843
138491
  expression: string;
138492
+ timezone?: string | undefined;
137844
138493
  };
137845
138494
  target: {
137846
138495
  agentId: string;
@@ -137892,6 +138541,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137892
138541
  } | {
137893
138542
  type: "cron";
137894
138543
  expression: string;
138544
+ timezone?: string | undefined;
137895
138545
  };
137896
138546
  target: {
137897
138547
  agentId: string;
@@ -137943,6 +138593,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137943
138593
  } | {
137944
138594
  type: "cron";
137945
138595
  expression: string;
138596
+ timezone?: string | undefined;
137946
138597
  };
137947
138598
  target: {
137948
138599
  agentId: string;
@@ -137996,12 +138647,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137996
138647
  }>, z.ZodObject<{
137997
138648
  type: z.ZodLiteral<"cron">;
137998
138649
  expression: z.ZodString;
138650
+ timezone: z.ZodOptional<z.ZodString>;
137999
138651
  }, "strip", z.ZodTypeAny, {
138000
138652
  type: "cron";
138001
138653
  expression: string;
138654
+ timezone?: string | undefined;
138002
138655
  }, {
138003
138656
  type: "cron";
138004
138657
  expression: string;
138658
+ timezone?: string | undefined;
138005
138659
  }>]>;
138006
138660
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
138007
138661
  type: z.ZodLiteral<"agent">;
@@ -138167,6 +138821,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138167
138821
  } | {
138168
138822
  type: "cron";
138169
138823
  expression: string;
138824
+ timezone?: string | undefined;
138170
138825
  };
138171
138826
  target: {
138172
138827
  agentId: string;
@@ -138211,6 +138866,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138211
138866
  } | {
138212
138867
  type: "cron";
138213
138868
  expression: string;
138869
+ timezone?: string | undefined;
138214
138870
  };
138215
138871
  target: {
138216
138872
  agentId: string;
@@ -138260,6 +138916,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138260
138916
  } | {
138261
138917
  type: "cron";
138262
138918
  expression: string;
138919
+ timezone?: string | undefined;
138263
138920
  };
138264
138921
  target: {
138265
138922
  agentId: string;
@@ -138308,6 +138965,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138308
138965
  } | {
138309
138966
  type: "cron";
138310
138967
  expression: string;
138968
+ timezone?: string | undefined;
138311
138969
  };
138312
138970
  target: {
138313
138971
  agentId: string;
@@ -138359,6 +139017,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138359
139017
  } | {
138360
139018
  type: "cron";
138361
139019
  expression: string;
139020
+ timezone?: string | undefined;
138362
139021
  };
138363
139022
  target: {
138364
139023
  agentId: string;
@@ -138410,6 +139069,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138410
139069
  } | {
138411
139070
  type: "cron";
138412
139071
  expression: string;
139072
+ timezone?: string | undefined;
138413
139073
  };
138414
139074
  target: {
138415
139075
  agentId: string;
@@ -138463,12 +139123,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138463
139123
  }>, z.ZodObject<{
138464
139124
  type: z.ZodLiteral<"cron">;
138465
139125
  expression: z.ZodString;
139126
+ timezone: z.ZodOptional<z.ZodString>;
138466
139127
  }, "strip", z.ZodTypeAny, {
138467
139128
  type: "cron";
138468
139129
  expression: string;
139130
+ timezone?: string | undefined;
138469
139131
  }, {
138470
139132
  type: "cron";
138471
139133
  expression: string;
139134
+ timezone?: string | undefined;
138472
139135
  }>]>;
138473
139136
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
138474
139137
  type: z.ZodLiteral<"agent">;
@@ -138634,6 +139297,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138634
139297
  } | {
138635
139298
  type: "cron";
138636
139299
  expression: string;
139300
+ timezone?: string | undefined;
138637
139301
  };
138638
139302
  target: {
138639
139303
  agentId: string;
@@ -138688,6 +139352,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138688
139352
  } | {
138689
139353
  type: "cron";
138690
139354
  expression: string;
139355
+ timezone?: string | undefined;
138691
139356
  };
138692
139357
  target: {
138693
139358
  agentId: string;
@@ -138747,6 +139412,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138747
139412
  } | {
138748
139413
  type: "cron";
138749
139414
  expression: string;
139415
+ timezone?: string | undefined;
138750
139416
  };
138751
139417
  target: {
138752
139418
  agentId: string;
@@ -138805,6 +139471,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138805
139471
  } | {
138806
139472
  type: "cron";
138807
139473
  expression: string;
139474
+ timezone?: string | undefined;
138808
139475
  };
138809
139476
  target: {
138810
139477
  agentId: string;
@@ -138866,6 +139533,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138866
139533
  } | {
138867
139534
  type: "cron";
138868
139535
  expression: string;
139536
+ timezone?: string | undefined;
138869
139537
  };
138870
139538
  target: {
138871
139539
  agentId: string;
@@ -138927,6 +139595,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138927
139595
  } | {
138928
139596
  type: "cron";
138929
139597
  expression: string;
139598
+ timezone?: string | undefined;
138930
139599
  };
138931
139600
  target: {
138932
139601
  agentId: string;
@@ -139082,12 +139751,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139082
139751
  }>, z.ZodObject<{
139083
139752
  type: z.ZodLiteral<"cron">;
139084
139753
  expression: z.ZodString;
139754
+ timezone: z.ZodOptional<z.ZodString>;
139085
139755
  }, "strip", z.ZodTypeAny, {
139086
139756
  type: "cron";
139087
139757
  expression: string;
139758
+ timezone?: string | undefined;
139088
139759
  }, {
139089
139760
  type: "cron";
139090
139761
  expression: string;
139762
+ timezone?: string | undefined;
139091
139763
  }>]>;
139092
139764
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
139093
139765
  type: z.ZodLiteral<"agent">;
@@ -139253,6 +139925,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139253
139925
  } | {
139254
139926
  type: "cron";
139255
139927
  expression: string;
139928
+ timezone?: string | undefined;
139256
139929
  };
139257
139930
  target: {
139258
139931
  agentId: string;
@@ -139297,6 +139970,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139297
139970
  } | {
139298
139971
  type: "cron";
139299
139972
  expression: string;
139973
+ timezone?: string | undefined;
139300
139974
  };
139301
139975
  target: {
139302
139976
  agentId: string;
@@ -139346,6 +140020,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139346
140020
  } | {
139347
140021
  type: "cron";
139348
140022
  expression: string;
140023
+ timezone?: string | undefined;
139349
140024
  };
139350
140025
  target: {
139351
140026
  agentId: string;
@@ -139394,6 +140069,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139394
140069
  } | {
139395
140070
  type: "cron";
139396
140071
  expression: string;
140072
+ timezone?: string | undefined;
139397
140073
  };
139398
140074
  target: {
139399
140075
  agentId: string;
@@ -139445,6 +140121,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139445
140121
  } | {
139446
140122
  type: "cron";
139447
140123
  expression: string;
140124
+ timezone?: string | undefined;
139448
140125
  };
139449
140126
  target: {
139450
140127
  agentId: string;
@@ -139496,6 +140173,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139496
140173
  } | {
139497
140174
  type: "cron";
139498
140175
  expression: string;
140176
+ timezone?: string | undefined;
139499
140177
  };
139500
140178
  target: {
139501
140179
  agentId: string;
@@ -139549,12 +140227,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139549
140227
  }>, z.ZodObject<{
139550
140228
  type: z.ZodLiteral<"cron">;
139551
140229
  expression: z.ZodString;
140230
+ timezone: z.ZodOptional<z.ZodString>;
139552
140231
  }, "strip", z.ZodTypeAny, {
139553
140232
  type: "cron";
139554
140233
  expression: string;
140234
+ timezone?: string | undefined;
139555
140235
  }, {
139556
140236
  type: "cron";
139557
140237
  expression: string;
140238
+ timezone?: string | undefined;
139558
140239
  }>]>;
139559
140240
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
139560
140241
  type: z.ZodLiteral<"agent">;
@@ -139720,6 +140401,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139720
140401
  } | {
139721
140402
  type: "cron";
139722
140403
  expression: string;
140404
+ timezone?: string | undefined;
139723
140405
  };
139724
140406
  target: {
139725
140407
  agentId: string;
@@ -139764,6 +140446,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139764
140446
  } | {
139765
140447
  type: "cron";
139766
140448
  expression: string;
140449
+ timezone?: string | undefined;
139767
140450
  };
139768
140451
  target: {
139769
140452
  agentId: string;
@@ -139813,6 +140496,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139813
140496
  } | {
139814
140497
  type: "cron";
139815
140498
  expression: string;
140499
+ timezone?: string | undefined;
139816
140500
  };
139817
140501
  target: {
139818
140502
  agentId: string;
@@ -139861,6 +140545,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139861
140545
  } | {
139862
140546
  type: "cron";
139863
140547
  expression: string;
140548
+ timezone?: string | undefined;
139864
140549
  };
139865
140550
  target: {
139866
140551
  agentId: string;
@@ -139912,6 +140597,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139912
140597
  } | {
139913
140598
  type: "cron";
139914
140599
  expression: string;
140600
+ timezone?: string | undefined;
139915
140601
  };
139916
140602
  target: {
139917
140603
  agentId: string;
@@ -139963,6 +140649,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139963
140649
  } | {
139964
140650
  type: "cron";
139965
140651
  expression: string;
140652
+ timezone?: string | undefined;
139966
140653
  };
139967
140654
  target: {
139968
140655
  agentId: string;
@@ -140045,12 +140732,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140045
140732
  }>, z.ZodObject<{
140046
140733
  type: z.ZodLiteral<"cron">;
140047
140734
  expression: z.ZodString;
140735
+ timezone: z.ZodOptional<z.ZodString>;
140048
140736
  }, "strip", z.ZodTypeAny, {
140049
140737
  type: "cron";
140050
140738
  expression: string;
140739
+ timezone?: string | undefined;
140051
140740
  }, {
140052
140741
  type: "cron";
140053
140742
  expression: string;
140743
+ timezone?: string | undefined;
140054
140744
  }>]>;
140055
140745
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
140056
140746
  type: z.ZodLiteral<"agent">;
@@ -140216,6 +140906,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140216
140906
  } | {
140217
140907
  type: "cron";
140218
140908
  expression: string;
140909
+ timezone?: string | undefined;
140219
140910
  };
140220
140911
  target: {
140221
140912
  agentId: string;
@@ -140270,6 +140961,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140270
140961
  } | {
140271
140962
  type: "cron";
140272
140963
  expression: string;
140964
+ timezone?: string | undefined;
140273
140965
  };
140274
140966
  target: {
140275
140967
  agentId: string;
@@ -140329,6 +141021,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140329
141021
  } | {
140330
141022
  type: "cron";
140331
141023
  expression: string;
141024
+ timezone?: string | undefined;
140332
141025
  };
140333
141026
  target: {
140334
141027
  agentId: string;
@@ -140387,6 +141080,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140387
141080
  } | {
140388
141081
  type: "cron";
140389
141082
  expression: string;
141083
+ timezone?: string | undefined;
140390
141084
  };
140391
141085
  target: {
140392
141086
  agentId: string;
@@ -140448,6 +141142,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140448
141142
  } | {
140449
141143
  type: "cron";
140450
141144
  expression: string;
141145
+ timezone?: string | undefined;
140451
141146
  };
140452
141147
  target: {
140453
141148
  agentId: string;
@@ -140509,6 +141204,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140509
141204
  } | {
140510
141205
  type: "cron";
140511
141206
  expression: string;
141207
+ timezone?: string | undefined;
140512
141208
  };
140513
141209
  target: {
140514
141210
  agentId: string;
@@ -140572,12 +141268,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140572
141268
  }>, z.ZodObject<{
140573
141269
  type: z.ZodLiteral<"cron">;
140574
141270
  expression: z.ZodString;
141271
+ timezone: z.ZodOptional<z.ZodString>;
140575
141272
  }, "strip", z.ZodTypeAny, {
140576
141273
  type: "cron";
140577
141274
  expression: string;
141275
+ timezone?: string | undefined;
140578
141276
  }, {
140579
141277
  type: "cron";
140580
141278
  expression: string;
141279
+ timezone?: string | undefined;
140581
141280
  }>]>;
140582
141281
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
140583
141282
  type: z.ZodLiteral<"agent">;
@@ -140743,6 +141442,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140743
141442
  } | {
140744
141443
  type: "cron";
140745
141444
  expression: string;
141445
+ timezone?: string | undefined;
140746
141446
  };
140747
141447
  target: {
140748
141448
  agentId: string;
@@ -140797,6 +141497,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140797
141497
  } | {
140798
141498
  type: "cron";
140799
141499
  expression: string;
141500
+ timezone?: string | undefined;
140800
141501
  };
140801
141502
  target: {
140802
141503
  agentId: string;
@@ -140856,6 +141557,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140856
141557
  } | {
140857
141558
  type: "cron";
140858
141559
  expression: string;
141560
+ timezone?: string | undefined;
140859
141561
  };
140860
141562
  target: {
140861
141563
  agentId: string;
@@ -140914,6 +141616,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140914
141616
  } | {
140915
141617
  type: "cron";
140916
141618
  expression: string;
141619
+ timezone?: string | undefined;
140917
141620
  };
140918
141621
  target: {
140919
141622
  agentId: string;
@@ -140975,6 +141678,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140975
141678
  } | {
140976
141679
  type: "cron";
140977
141680
  expression: string;
141681
+ timezone?: string | undefined;
140978
141682
  };
140979
141683
  target: {
140980
141684
  agentId: string;
@@ -141036,6 +141740,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
141036
141740
  } | {
141037
141741
  type: "cron";
141038
141742
  expression: string;
141743
+ timezone?: string | undefined;
141039
141744
  };
141040
141745
  target: {
141041
141746
  agentId: string;
@@ -143598,6 +144303,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143598
144303
  } | {
143599
144304
  type: "cron";
143600
144305
  expression: string;
144306
+ timezone?: string | undefined;
143601
144307
  };
143602
144308
  target: {
143603
144309
  agentId: string;
@@ -143649,6 +144355,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143649
144355
  } | {
143650
144356
  type: "cron";
143651
144357
  expression: string;
144358
+ timezone?: string | undefined;
143652
144359
  };
143653
144360
  target: {
143654
144361
  agentId: string;
@@ -143700,6 +144407,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143700
144407
  } | {
143701
144408
  type: "cron";
143702
144409
  expression: string;
144410
+ timezone?: string | undefined;
143703
144411
  };
143704
144412
  target: {
143705
144413
  agentId: string;
@@ -143777,6 +144485,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143777
144485
  } | {
143778
144486
  type: "cron";
143779
144487
  expression: string;
144488
+ timezone?: string | undefined;
143780
144489
  };
143781
144490
  target: {
143782
144491
  agentId: string;
@@ -143828,6 +144537,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143828
144537
  } | {
143829
144538
  type: "cron";
143830
144539
  expression: string;
144540
+ timezone?: string | undefined;
143831
144541
  };
143832
144542
  target: {
143833
144543
  agentId: string;
@@ -143886,6 +144596,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143886
144596
  } | {
143887
144597
  type: "cron";
143888
144598
  expression: string;
144599
+ timezone?: string | undefined;
143889
144600
  };
143890
144601
  target: {
143891
144602
  agentId: string;
@@ -143947,6 +144658,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143947
144658
  } | {
143948
144659
  type: "cron";
143949
144660
  expression: string;
144661
+ timezone?: string | undefined;
143950
144662
  };
143951
144663
  target: {
143952
144664
  agentId: string;
@@ -144895,6 +145607,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
144895
145607
  proxyUrl: string | null;
144896
145608
  lifecycle: "running" | "stopped";
144897
145609
  health: "healthy" | "unhealthy" | null;
145610
+ localProxyUrl?: string | null | undefined;
145611
+ publicProxyUrl?: string | null | undefined;
144898
145612
  }[];
144899
145613
  projectId: string;
144900
145614
  projectDisplayName: string;
@@ -145007,6 +145721,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
145007
145721
  proxyUrl: string | null;
145008
145722
  lifecycle: "running" | "stopped";
145009
145723
  health: "healthy" | "unhealthy" | null;
145724
+ localProxyUrl?: string | null | undefined;
145725
+ publicProxyUrl?: string | null | undefined;
145010
145726
  }[];
145011
145727
  projectId: string;
145012
145728
  projectDisplayName: string;
@@ -145109,6 +145825,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
145109
145825
  proxyUrl: string | null;
145110
145826
  lifecycle: "running" | "stopped";
145111
145827
  health: "healthy" | "unhealthy" | null;
145828
+ localProxyUrl?: string | null | undefined;
145829
+ publicProxyUrl?: string | null | undefined;
145112
145830
  }[];
145113
145831
  workspaceId: string;
145114
145832
  };
@@ -145181,6 +145899,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
145181
145899
  proxyUrl: string | null;
145182
145900
  lifecycle: "running" | "stopped";
145183
145901
  health: "healthy" | "unhealthy" | null;
145902
+ localProxyUrl?: string | null | undefined;
145903
+ publicProxyUrl?: string | null | undefined;
145184
145904
  }[];
145185
145905
  projectId: string;
145186
145906
  projectDisplayName: string;
@@ -146639,6 +147359,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
146639
147359
  proxyUrl: string | null;
146640
147360
  lifecycle: "running" | "stopped";
146641
147361
  health: "healthy" | "unhealthy" | null;
147362
+ localProxyUrl?: string | null | undefined;
147363
+ publicProxyUrl?: string | null | undefined;
146642
147364
  }[];
146643
147365
  projectId: string;
146644
147366
  projectDisplayName: string;
@@ -147100,6 +147822,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147100
147822
  } | {
147101
147823
  type: "cron";
147102
147824
  expression: string;
147825
+ timezone?: string | undefined;
147103
147826
  };
147104
147827
  target: {
147105
147828
  agentId: string;
@@ -147151,6 +147874,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147151
147874
  } | {
147152
147875
  type: "cron";
147153
147876
  expression: string;
147877
+ timezone?: string | undefined;
147154
147878
  };
147155
147879
  target: {
147156
147880
  agentId: string;
@@ -147202,6 +147926,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147202
147926
  } | {
147203
147927
  type: "cron";
147204
147928
  expression: string;
147929
+ timezone?: string | undefined;
147205
147930
  };
147206
147931
  target: {
147207
147932
  agentId: string;
@@ -147279,6 +148004,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147279
148004
  } | {
147280
148005
  type: "cron";
147281
148006
  expression: string;
148007
+ timezone?: string | undefined;
147282
148008
  };
147283
148009
  target: {
147284
148010
  agentId: string;
@@ -147330,6 +148056,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147330
148056
  } | {
147331
148057
  type: "cron";
147332
148058
  expression: string;
148059
+ timezone?: string | undefined;
147333
148060
  };
147334
148061
  target: {
147335
148062
  agentId: string;
@@ -147388,6 +148115,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147388
148115
  } | {
147389
148116
  type: "cron";
147390
148117
  expression: string;
148118
+ timezone?: string | undefined;
147391
148119
  };
147392
148120
  target: {
147393
148121
  agentId: string;
@@ -147449,6 +148177,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147449
148177
  } | {
147450
148178
  type: "cron";
147451
148179
  expression: string;
148180
+ timezone?: string | undefined;
147452
148181
  };
147453
148182
  target: {
147454
148183
  agentId: string;
@@ -148401,6 +149130,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
148401
149130
  type?: "script" | "service" | undefined;
148402
149131
  exitCode?: number | null | undefined;
148403
149132
  terminalId?: string | null | undefined;
149133
+ localProxyUrl?: string | null | undefined;
149134
+ publicProxyUrl?: string | null | undefined;
148404
149135
  proxyUrl?: string | null | undefined;
148405
149136
  }[] | undefined;
148406
149137
  projectCustomName?: string | null | undefined;
@@ -148513,6 +149244,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
148513
149244
  type?: "script" | "service" | undefined;
148514
149245
  exitCode?: number | null | undefined;
148515
149246
  terminalId?: string | null | undefined;
149247
+ localProxyUrl?: string | null | undefined;
149248
+ publicProxyUrl?: string | null | undefined;
148516
149249
  proxyUrl?: string | null | undefined;
148517
149250
  }[] | undefined;
148518
149251
  projectCustomName?: string | null | undefined;
@@ -148610,6 +149343,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
148610
149343
  type?: "script" | "service" | undefined;
148611
149344
  exitCode?: number | null | undefined;
148612
149345
  terminalId?: string | null | undefined;
149346
+ localProxyUrl?: string | null | undefined;
149347
+ publicProxyUrl?: string | null | undefined;
148613
149348
  proxyUrl?: string | null | undefined;
148614
149349
  }[];
148615
149350
  workspaceId: string;
@@ -148687,6 +149422,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
148687
149422
  type?: "script" | "service" | undefined;
148688
149423
  exitCode?: number | null | undefined;
148689
149424
  terminalId?: string | null | undefined;
149425
+ localProxyUrl?: string | null | undefined;
149426
+ publicProxyUrl?: string | null | undefined;
148690
149427
  proxyUrl?: string | null | undefined;
148691
149428
  }[] | undefined;
148692
149429
  projectCustomName?: string | null | undefined;
@@ -150104,6 +150841,8 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
150104
150841
  type?: "script" | "service" | undefined;
150105
150842
  exitCode?: number | null | undefined;
150106
150843
  terminalId?: string | null | undefined;
150844
+ localProxyUrl?: string | null | undefined;
150845
+ publicProxyUrl?: string | null | undefined;
150107
150846
  proxyUrl?: string | null | undefined;
150108
150847
  }[] | undefined;
150109
150848
  projectCustomName?: string | null | undefined;