@getpaseo/protocol 0.1.87 → 0.1.88

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;
@@ -37963,7 +37973,7 @@ export declare const TerminalCellSchema: z.ZodObject<{
37963
37973
  dim: z.ZodOptional<z.ZodBoolean>;
37964
37974
  inverse: z.ZodOptional<z.ZodBoolean>;
37965
37975
  strikethrough: z.ZodOptional<z.ZodBoolean>;
37966
- }, "strict", z.ZodTypeAny, {
37976
+ }, "strip", z.ZodTypeAny, {
37967
37977
  char: string;
37968
37978
  fg?: number | undefined;
37969
37979
  bg?: number | undefined;
@@ -37995,7 +38005,7 @@ export declare const TerminalCursorSchema: z.ZodObject<{
37995
38005
  hidden: z.ZodOptional<z.ZodBoolean>;
37996
38006
  style: z.ZodOptional<z.ZodEnum<["block", "underline", "bar"]>>;
37997
38007
  blink: z.ZodOptional<z.ZodBoolean>;
37998
- }, "strict", z.ZodTypeAny, {
38008
+ }, "strip", z.ZodTypeAny, {
37999
38009
  row: number;
38000
38010
  col: number;
38001
38011
  style?: "underline" | "block" | "bar" | undefined;
@@ -38023,7 +38033,7 @@ export declare const TerminalStateSchema: z.ZodObject<{
38023
38033
  dim: z.ZodOptional<z.ZodBoolean>;
38024
38034
  inverse: z.ZodOptional<z.ZodBoolean>;
38025
38035
  strikethrough: z.ZodOptional<z.ZodBoolean>;
38026
- }, "strict", z.ZodTypeAny, {
38036
+ }, "strip", z.ZodTypeAny, {
38027
38037
  char: string;
38028
38038
  fg?: number | undefined;
38029
38039
  bg?: number | undefined;
@@ -38060,7 +38070,7 @@ export declare const TerminalStateSchema: z.ZodObject<{
38060
38070
  dim: z.ZodOptional<z.ZodBoolean>;
38061
38071
  inverse: z.ZodOptional<z.ZodBoolean>;
38062
38072
  strikethrough: z.ZodOptional<z.ZodBoolean>;
38063
- }, "strict", z.ZodTypeAny, {
38073
+ }, "strip", z.ZodTypeAny, {
38064
38074
  char: string;
38065
38075
  fg?: number | undefined;
38066
38076
  bg?: number | undefined;
@@ -38091,7 +38101,7 @@ export declare const TerminalStateSchema: z.ZodObject<{
38091
38101
  hidden: z.ZodOptional<z.ZodBoolean>;
38092
38102
  style: z.ZodOptional<z.ZodEnum<["block", "underline", "bar"]>>;
38093
38103
  blink: z.ZodOptional<z.ZodBoolean>;
38094
- }, "strict", z.ZodTypeAny, {
38104
+ }, "strip", z.ZodTypeAny, {
38095
38105
  row: number;
38096
38106
  col: number;
38097
38107
  style?: "underline" | "block" | "bar" | undefined;
@@ -38105,7 +38115,9 @@ export declare const TerminalStateSchema: z.ZodObject<{
38105
38115
  blink?: boolean | undefined;
38106
38116
  }>;
38107
38117
  title: z.ZodOptional<z.ZodString>;
38108
- }, "strict", z.ZodTypeAny, {
38118
+ gridWrapped: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
38119
+ scrollbackWrapped: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
38120
+ }, "strip", z.ZodTypeAny, {
38109
38121
  cursor: {
38110
38122
  row: number;
38111
38123
  col: number;
@@ -38142,6 +38154,8 @@ export declare const TerminalStateSchema: z.ZodObject<{
38142
38154
  strikethrough?: boolean | undefined;
38143
38155
  }[][];
38144
38156
  title?: string | undefined;
38157
+ gridWrapped?: boolean[] | undefined;
38158
+ scrollbackWrapped?: boolean[] | undefined;
38145
38159
  }, {
38146
38160
  cursor: {
38147
38161
  row: number;
@@ -38179,6 +38193,8 @@ export declare const TerminalStateSchema: z.ZodObject<{
38179
38193
  strikethrough?: boolean | undefined;
38180
38194
  }[][];
38181
38195
  title?: string | undefined;
38196
+ gridWrapped?: boolean[] | undefined;
38197
+ scrollbackWrapped?: boolean[] | undefined;
38182
38198
  }>;
38183
38199
  export declare const ListTerminalsResponseSchema: z.ZodObject<{
38184
38200
  type: z.ZodLiteral<"list_terminals_response">;
@@ -60910,12 +60926,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
60910
60926
  }>, z.ZodObject<{
60911
60927
  type: z.ZodLiteral<"cron">;
60912
60928
  expression: z.ZodString;
60929
+ timezone: z.ZodOptional<z.ZodString>;
60913
60930
  }, "strip", z.ZodTypeAny, {
60914
60931
  type: "cron";
60915
60932
  expression: string;
60933
+ timezone?: string | undefined;
60916
60934
  }, {
60917
60935
  type: "cron";
60918
60936
  expression: string;
60937
+ timezone?: string | undefined;
60919
60938
  }>]>;
60920
60939
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
60921
60940
  type: z.ZodLiteral<"agent">;
@@ -61081,6 +61100,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61081
61100
  } | {
61082
61101
  type: "cron";
61083
61102
  expression: string;
61103
+ timezone?: string | undefined;
61084
61104
  };
61085
61105
  target: {
61086
61106
  agentId: string;
@@ -61125,6 +61145,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61125
61145
  } | {
61126
61146
  type: "cron";
61127
61147
  expression: string;
61148
+ timezone?: string | undefined;
61128
61149
  };
61129
61150
  target: {
61130
61151
  agentId: string;
@@ -61174,6 +61195,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61174
61195
  } | {
61175
61196
  type: "cron";
61176
61197
  expression: string;
61198
+ timezone?: string | undefined;
61177
61199
  };
61178
61200
  target: {
61179
61201
  agentId: string;
@@ -61222,6 +61244,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61222
61244
  } | {
61223
61245
  type: "cron";
61224
61246
  expression: string;
61247
+ timezone?: string | undefined;
61225
61248
  };
61226
61249
  target: {
61227
61250
  agentId: string;
@@ -61273,6 +61296,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61273
61296
  } | {
61274
61297
  type: "cron";
61275
61298
  expression: string;
61299
+ timezone?: string | undefined;
61276
61300
  };
61277
61301
  target: {
61278
61302
  agentId: string;
@@ -61324,6 +61348,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61324
61348
  } | {
61325
61349
  type: "cron";
61326
61350
  expression: string;
61351
+ timezone?: string | undefined;
61327
61352
  };
61328
61353
  target: {
61329
61354
  agentId: string;
@@ -61377,12 +61402,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61377
61402
  }>, z.ZodObject<{
61378
61403
  type: z.ZodLiteral<"cron">;
61379
61404
  expression: z.ZodString;
61405
+ timezone: z.ZodOptional<z.ZodString>;
61380
61406
  }, "strip", z.ZodTypeAny, {
61381
61407
  type: "cron";
61382
61408
  expression: string;
61409
+ timezone?: string | undefined;
61383
61410
  }, {
61384
61411
  type: "cron";
61385
61412
  expression: string;
61413
+ timezone?: string | undefined;
61386
61414
  }>]>;
61387
61415
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
61388
61416
  type: z.ZodLiteral<"agent">;
@@ -61548,6 +61576,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61548
61576
  } | {
61549
61577
  type: "cron";
61550
61578
  expression: string;
61579
+ timezone?: string | undefined;
61551
61580
  };
61552
61581
  target: {
61553
61582
  agentId: string;
@@ -61592,6 +61621,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61592
61621
  } | {
61593
61622
  type: "cron";
61594
61623
  expression: string;
61624
+ timezone?: string | undefined;
61595
61625
  };
61596
61626
  target: {
61597
61627
  agentId: string;
@@ -61641,6 +61671,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61641
61671
  } | {
61642
61672
  type: "cron";
61643
61673
  expression: string;
61674
+ timezone?: string | undefined;
61644
61675
  };
61645
61676
  target: {
61646
61677
  agentId: string;
@@ -61689,6 +61720,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61689
61720
  } | {
61690
61721
  type: "cron";
61691
61722
  expression: string;
61723
+ timezone?: string | undefined;
61692
61724
  };
61693
61725
  target: {
61694
61726
  agentId: string;
@@ -61740,6 +61772,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61740
61772
  } | {
61741
61773
  type: "cron";
61742
61774
  expression: string;
61775
+ timezone?: string | undefined;
61743
61776
  };
61744
61777
  target: {
61745
61778
  agentId: string;
@@ -61791,6 +61824,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61791
61824
  } | {
61792
61825
  type: "cron";
61793
61826
  expression: string;
61827
+ timezone?: string | undefined;
61794
61828
  };
61795
61829
  target: {
61796
61830
  agentId: string;
@@ -61844,12 +61878,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
61844
61878
  }>, z.ZodObject<{
61845
61879
  type: z.ZodLiteral<"cron">;
61846
61880
  expression: z.ZodString;
61881
+ timezone: z.ZodOptional<z.ZodString>;
61847
61882
  }, "strip", z.ZodTypeAny, {
61848
61883
  type: "cron";
61849
61884
  expression: string;
61885
+ timezone?: string | undefined;
61850
61886
  }, {
61851
61887
  type: "cron";
61852
61888
  expression: string;
61889
+ timezone?: string | undefined;
61853
61890
  }>]>;
61854
61891
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
61855
61892
  type: z.ZodLiteral<"agent">;
@@ -62015,6 +62052,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62015
62052
  } | {
62016
62053
  type: "cron";
62017
62054
  expression: string;
62055
+ timezone?: string | undefined;
62018
62056
  };
62019
62057
  target: {
62020
62058
  agentId: string;
@@ -62069,6 +62107,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62069
62107
  } | {
62070
62108
  type: "cron";
62071
62109
  expression: string;
62110
+ timezone?: string | undefined;
62072
62111
  };
62073
62112
  target: {
62074
62113
  agentId: string;
@@ -62128,6 +62167,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62128
62167
  } | {
62129
62168
  type: "cron";
62130
62169
  expression: string;
62170
+ timezone?: string | undefined;
62131
62171
  };
62132
62172
  target: {
62133
62173
  agentId: string;
@@ -62186,6 +62226,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62186
62226
  } | {
62187
62227
  type: "cron";
62188
62228
  expression: string;
62229
+ timezone?: string | undefined;
62189
62230
  };
62190
62231
  target: {
62191
62232
  agentId: string;
@@ -62247,6 +62288,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62247
62288
  } | {
62248
62289
  type: "cron";
62249
62290
  expression: string;
62291
+ timezone?: string | undefined;
62250
62292
  };
62251
62293
  target: {
62252
62294
  agentId: string;
@@ -62308,6 +62350,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62308
62350
  } | {
62309
62351
  type: "cron";
62310
62352
  expression: string;
62353
+ timezone?: string | undefined;
62311
62354
  };
62312
62355
  target: {
62313
62356
  agentId: string;
@@ -62463,12 +62506,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62463
62506
  }>, z.ZodObject<{
62464
62507
  type: z.ZodLiteral<"cron">;
62465
62508
  expression: z.ZodString;
62509
+ timezone: z.ZodOptional<z.ZodString>;
62466
62510
  }, "strip", z.ZodTypeAny, {
62467
62511
  type: "cron";
62468
62512
  expression: string;
62513
+ timezone?: string | undefined;
62469
62514
  }, {
62470
62515
  type: "cron";
62471
62516
  expression: string;
62517
+ timezone?: string | undefined;
62472
62518
  }>]>;
62473
62519
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
62474
62520
  type: z.ZodLiteral<"agent">;
@@ -62634,6 +62680,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62634
62680
  } | {
62635
62681
  type: "cron";
62636
62682
  expression: string;
62683
+ timezone?: string | undefined;
62637
62684
  };
62638
62685
  target: {
62639
62686
  agentId: string;
@@ -62678,6 +62725,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62678
62725
  } | {
62679
62726
  type: "cron";
62680
62727
  expression: string;
62728
+ timezone?: string | undefined;
62681
62729
  };
62682
62730
  target: {
62683
62731
  agentId: string;
@@ -62727,6 +62775,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62727
62775
  } | {
62728
62776
  type: "cron";
62729
62777
  expression: string;
62778
+ timezone?: string | undefined;
62730
62779
  };
62731
62780
  target: {
62732
62781
  agentId: string;
@@ -62775,6 +62824,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62775
62824
  } | {
62776
62825
  type: "cron";
62777
62826
  expression: string;
62827
+ timezone?: string | undefined;
62778
62828
  };
62779
62829
  target: {
62780
62830
  agentId: string;
@@ -62826,6 +62876,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62826
62876
  } | {
62827
62877
  type: "cron";
62828
62878
  expression: string;
62879
+ timezone?: string | undefined;
62829
62880
  };
62830
62881
  target: {
62831
62882
  agentId: string;
@@ -62877,6 +62928,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62877
62928
  } | {
62878
62929
  type: "cron";
62879
62930
  expression: string;
62931
+ timezone?: string | undefined;
62880
62932
  };
62881
62933
  target: {
62882
62934
  agentId: string;
@@ -62930,12 +62982,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
62930
62982
  }>, z.ZodObject<{
62931
62983
  type: z.ZodLiteral<"cron">;
62932
62984
  expression: z.ZodString;
62985
+ timezone: z.ZodOptional<z.ZodString>;
62933
62986
  }, "strip", z.ZodTypeAny, {
62934
62987
  type: "cron";
62935
62988
  expression: string;
62989
+ timezone?: string | undefined;
62936
62990
  }, {
62937
62991
  type: "cron";
62938
62992
  expression: string;
62993
+ timezone?: string | undefined;
62939
62994
  }>]>;
62940
62995
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
62941
62996
  type: z.ZodLiteral<"agent">;
@@ -63101,6 +63156,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63101
63156
  } | {
63102
63157
  type: "cron";
63103
63158
  expression: string;
63159
+ timezone?: string | undefined;
63104
63160
  };
63105
63161
  target: {
63106
63162
  agentId: string;
@@ -63145,6 +63201,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63145
63201
  } | {
63146
63202
  type: "cron";
63147
63203
  expression: string;
63204
+ timezone?: string | undefined;
63148
63205
  };
63149
63206
  target: {
63150
63207
  agentId: string;
@@ -63194,6 +63251,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63194
63251
  } | {
63195
63252
  type: "cron";
63196
63253
  expression: string;
63254
+ timezone?: string | undefined;
63197
63255
  };
63198
63256
  target: {
63199
63257
  agentId: string;
@@ -63242,6 +63300,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63242
63300
  } | {
63243
63301
  type: "cron";
63244
63302
  expression: string;
63303
+ timezone?: string | undefined;
63245
63304
  };
63246
63305
  target: {
63247
63306
  agentId: string;
@@ -63293,6 +63352,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63293
63352
  } | {
63294
63353
  type: "cron";
63295
63354
  expression: string;
63355
+ timezone?: string | undefined;
63296
63356
  };
63297
63357
  target: {
63298
63358
  agentId: string;
@@ -63344,6 +63404,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63344
63404
  } | {
63345
63405
  type: "cron";
63346
63406
  expression: string;
63407
+ timezone?: string | undefined;
63347
63408
  };
63348
63409
  target: {
63349
63410
  agentId: string;
@@ -63426,12 +63487,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63426
63487
  }>, z.ZodObject<{
63427
63488
  type: z.ZodLiteral<"cron">;
63428
63489
  expression: z.ZodString;
63490
+ timezone: z.ZodOptional<z.ZodString>;
63429
63491
  }, "strip", z.ZodTypeAny, {
63430
63492
  type: "cron";
63431
63493
  expression: string;
63494
+ timezone?: string | undefined;
63432
63495
  }, {
63433
63496
  type: "cron";
63434
63497
  expression: string;
63498
+ timezone?: string | undefined;
63435
63499
  }>]>;
63436
63500
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
63437
63501
  type: z.ZodLiteral<"agent">;
@@ -63597,6 +63661,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63597
63661
  } | {
63598
63662
  type: "cron";
63599
63663
  expression: string;
63664
+ timezone?: string | undefined;
63600
63665
  };
63601
63666
  target: {
63602
63667
  agentId: string;
@@ -63651,6 +63716,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63651
63716
  } | {
63652
63717
  type: "cron";
63653
63718
  expression: string;
63719
+ timezone?: string | undefined;
63654
63720
  };
63655
63721
  target: {
63656
63722
  agentId: string;
@@ -63710,6 +63776,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63710
63776
  } | {
63711
63777
  type: "cron";
63712
63778
  expression: string;
63779
+ timezone?: string | undefined;
63713
63780
  };
63714
63781
  target: {
63715
63782
  agentId: string;
@@ -63768,6 +63835,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63768
63835
  } | {
63769
63836
  type: "cron";
63770
63837
  expression: string;
63838
+ timezone?: string | undefined;
63771
63839
  };
63772
63840
  target: {
63773
63841
  agentId: string;
@@ -63829,6 +63897,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63829
63897
  } | {
63830
63898
  type: "cron";
63831
63899
  expression: string;
63900
+ timezone?: string | undefined;
63832
63901
  };
63833
63902
  target: {
63834
63903
  agentId: string;
@@ -63890,6 +63959,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63890
63959
  } | {
63891
63960
  type: "cron";
63892
63961
  expression: string;
63962
+ timezone?: string | undefined;
63893
63963
  };
63894
63964
  target: {
63895
63965
  agentId: string;
@@ -63953,12 +64023,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
63953
64023
  }>, z.ZodObject<{
63954
64024
  type: z.ZodLiteral<"cron">;
63955
64025
  expression: z.ZodString;
64026
+ timezone: z.ZodOptional<z.ZodString>;
63956
64027
  }, "strip", z.ZodTypeAny, {
63957
64028
  type: "cron";
63958
64029
  expression: string;
64030
+ timezone?: string | undefined;
63959
64031
  }, {
63960
64032
  type: "cron";
63961
64033
  expression: string;
64034
+ timezone?: string | undefined;
63962
64035
  }>]>;
63963
64036
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
63964
64037
  type: z.ZodLiteral<"agent">;
@@ -64124,6 +64197,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64124
64197
  } | {
64125
64198
  type: "cron";
64126
64199
  expression: string;
64200
+ timezone?: string | undefined;
64127
64201
  };
64128
64202
  target: {
64129
64203
  agentId: string;
@@ -64178,6 +64252,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64178
64252
  } | {
64179
64253
  type: "cron";
64180
64254
  expression: string;
64255
+ timezone?: string | undefined;
64181
64256
  };
64182
64257
  target: {
64183
64258
  agentId: string;
@@ -64237,6 +64312,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64237
64312
  } | {
64238
64313
  type: "cron";
64239
64314
  expression: string;
64315
+ timezone?: string | undefined;
64240
64316
  };
64241
64317
  target: {
64242
64318
  agentId: string;
@@ -64295,6 +64371,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64295
64371
  } | {
64296
64372
  type: "cron";
64297
64373
  expression: string;
64374
+ timezone?: string | undefined;
64298
64375
  };
64299
64376
  target: {
64300
64377
  agentId: string;
@@ -64356,6 +64433,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64356
64433
  } | {
64357
64434
  type: "cron";
64358
64435
  expression: string;
64436
+ timezone?: string | undefined;
64359
64437
  };
64360
64438
  target: {
64361
64439
  agentId: string;
@@ -64417,6 +64495,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
64417
64495
  } | {
64418
64496
  type: "cron";
64419
64497
  expression: string;
64498
+ timezone?: string | undefined;
64420
64499
  };
64421
64500
  target: {
64422
64501
  agentId: string;
@@ -67123,16 +67202,19 @@ export declare const WSHelloMessageSchema: z.ZodObject<{
67123
67202
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
67124
67203
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
67125
67204
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
67205
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
67126
67206
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
67127
67207
  voice: z.ZodOptional<z.ZodBoolean>;
67128
67208
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
67129
67209
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
67130
67210
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
67211
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
67131
67212
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
67132
67213
  voice: z.ZodOptional<z.ZodBoolean>;
67133
67214
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
67134
67215
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
67135
67216
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
67217
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
67136
67218
  }, z.ZodTypeAny, "passthrough">>>;
67137
67219
  }, "strip", z.ZodTypeAny, {
67138
67220
  type: "hello";
@@ -67144,6 +67226,7 @@ export declare const WSHelloMessageSchema: z.ZodObject<{
67144
67226
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
67145
67227
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
67146
67228
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
67229
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
67147
67230
  }, z.ZodTypeAny, "passthrough"> | undefined;
67148
67231
  appVersion?: string | undefined;
67149
67232
  }, {
@@ -67156,6 +67239,7 @@ export declare const WSHelloMessageSchema: z.ZodObject<{
67156
67239
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
67157
67240
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
67158
67241
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
67242
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
67159
67243
  }, z.ZodTypeAny, "passthrough"> | undefined;
67160
67244
  appVersion?: string | undefined;
67161
67245
  }>;
@@ -70685,14 +70769,14 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
70685
70769
  size: z.ZodOptional<z.ZodObject<{
70686
70770
  rows: z.ZodNumber;
70687
70771
  cols: z.ZodNumber;
70688
- }, "strict", z.ZodTypeAny, {
70772
+ }, "strip", z.ZodTypeAny, {
70689
70773
  rows: number;
70690
70774
  cols: number;
70691
70775
  }, {
70692
70776
  rows: number;
70693
70777
  cols: number;
70694
70778
  }>>;
70695
- }, "strict", z.ZodTypeAny, {
70779
+ }, "strip", z.ZodTypeAny, {
70696
70780
  mode: "live" | "visible-snapshot" | "full-snapshot";
70697
70781
  size?: {
70698
70782
  rows: number;
@@ -70975,12 +71059,15 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
70975
71059
  }>, z.ZodObject<{
70976
71060
  type: z.ZodLiteral<"cron">;
70977
71061
  expression: z.ZodString;
71062
+ timezone: z.ZodOptional<z.ZodString>;
70978
71063
  }, "strip", z.ZodTypeAny, {
70979
71064
  type: "cron";
70980
71065
  expression: string;
71066
+ timezone?: string | undefined;
70981
71067
  }, {
70982
71068
  type: "cron";
70983
71069
  expression: string;
71070
+ timezone?: string | undefined;
70984
71071
  }>]>;
70985
71072
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
70986
71073
  type: z.ZodLiteral<"self">;
@@ -71119,6 +71206,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71119
71206
  } | {
71120
71207
  type: "cron";
71121
71208
  expression: string;
71209
+ timezone?: string | undefined;
71122
71210
  };
71123
71211
  target: {
71124
71212
  agentId: string;
@@ -71162,6 +71250,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71162
71250
  } | {
71163
71251
  type: "cron";
71164
71252
  expression: string;
71253
+ timezone?: string | undefined;
71165
71254
  };
71166
71255
  target: {
71167
71256
  agentId: string;
@@ -71294,12 +71383,15 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71294
71383
  }>, z.ZodObject<{
71295
71384
  type: z.ZodLiteral<"cron">;
71296
71385
  expression: z.ZodString;
71386
+ timezone: z.ZodOptional<z.ZodString>;
71297
71387
  }, "strip", z.ZodTypeAny, {
71298
71388
  type: "cron";
71299
71389
  expression: string;
71390
+ timezone?: string | undefined;
71300
71391
  }, {
71301
71392
  type: "cron";
71302
71393
  expression: string;
71394
+ timezone?: string | undefined;
71303
71395
  }>]>>;
71304
71396
  newAgentConfig: z.ZodOptional<z.ZodObject<{
71305
71397
  provider: z.ZodOptional<z.ZodString>;
@@ -71331,6 +71423,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71331
71423
  } | {
71332
71424
  type: "cron";
71333
71425
  expression: string;
71426
+ timezone?: string | undefined;
71334
71427
  } | undefined;
71335
71428
  expiresAt?: string | null | undefined;
71336
71429
  maxRuns?: number | null | undefined;
@@ -71352,6 +71445,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71352
71445
  } | {
71353
71446
  type: "cron";
71354
71447
  expression: string;
71448
+ timezone?: string | undefined;
71355
71449
  } | undefined;
71356
71450
  expiresAt?: string | null | undefined;
71357
71451
  maxRuns?: number | null | undefined;
@@ -71518,6 +71612,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71518
71612
  } | {
71519
71613
  type: "cron";
71520
71614
  expression: string;
71615
+ timezone?: string | undefined;
71521
71616
  };
71522
71617
  target: {
71523
71618
  agentId: string;
@@ -71590,6 +71685,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
71590
71685
  } | {
71591
71686
  type: "cron";
71592
71687
  expression: string;
71688
+ timezone?: string | undefined;
71593
71689
  } | undefined;
71594
71690
  expiresAt?: string | null | undefined;
71595
71691
  maxRuns?: number | null | undefined;
@@ -72632,6 +72728,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
72632
72728
  } | {
72633
72729
  type: "cron";
72634
72730
  expression: string;
72731
+ timezone?: string | undefined;
72635
72732
  };
72636
72733
  target: {
72637
72734
  agentId: string;
@@ -72704,6 +72801,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
72704
72801
  } | {
72705
72802
  type: "cron";
72706
72803
  expression: string;
72804
+ timezone?: string | undefined;
72707
72805
  } | undefined;
72708
72806
  expiresAt?: string | null | undefined;
72709
72807
  maxRuns?: number | null | undefined;
@@ -95862,12 +95960,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
95862
95960
  }>, z.ZodObject<{
95863
95961
  type: z.ZodLiteral<"cron">;
95864
95962
  expression: z.ZodString;
95963
+ timezone: z.ZodOptional<z.ZodString>;
95865
95964
  }, "strip", z.ZodTypeAny, {
95866
95965
  type: "cron";
95867
95966
  expression: string;
95967
+ timezone?: string | undefined;
95868
95968
  }, {
95869
95969
  type: "cron";
95870
95970
  expression: string;
95971
+ timezone?: string | undefined;
95871
95972
  }>]>;
95872
95973
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
95873
95974
  type: z.ZodLiteral<"agent">;
@@ -96033,6 +96134,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96033
96134
  } | {
96034
96135
  type: "cron";
96035
96136
  expression: string;
96137
+ timezone?: string | undefined;
96036
96138
  };
96037
96139
  target: {
96038
96140
  agentId: string;
@@ -96077,6 +96179,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96077
96179
  } | {
96078
96180
  type: "cron";
96079
96181
  expression: string;
96182
+ timezone?: string | undefined;
96080
96183
  };
96081
96184
  target: {
96082
96185
  agentId: string;
@@ -96126,6 +96229,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96126
96229
  } | {
96127
96230
  type: "cron";
96128
96231
  expression: string;
96232
+ timezone?: string | undefined;
96129
96233
  };
96130
96234
  target: {
96131
96235
  agentId: string;
@@ -96174,6 +96278,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96174
96278
  } | {
96175
96279
  type: "cron";
96176
96280
  expression: string;
96281
+ timezone?: string | undefined;
96177
96282
  };
96178
96283
  target: {
96179
96284
  agentId: string;
@@ -96225,6 +96330,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96225
96330
  } | {
96226
96331
  type: "cron";
96227
96332
  expression: string;
96333
+ timezone?: string | undefined;
96228
96334
  };
96229
96335
  target: {
96230
96336
  agentId: string;
@@ -96276,6 +96382,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96276
96382
  } | {
96277
96383
  type: "cron";
96278
96384
  expression: string;
96385
+ timezone?: string | undefined;
96279
96386
  };
96280
96387
  target: {
96281
96388
  agentId: string;
@@ -96329,12 +96436,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96329
96436
  }>, z.ZodObject<{
96330
96437
  type: z.ZodLiteral<"cron">;
96331
96438
  expression: z.ZodString;
96439
+ timezone: z.ZodOptional<z.ZodString>;
96332
96440
  }, "strip", z.ZodTypeAny, {
96333
96441
  type: "cron";
96334
96442
  expression: string;
96443
+ timezone?: string | undefined;
96335
96444
  }, {
96336
96445
  type: "cron";
96337
96446
  expression: string;
96447
+ timezone?: string | undefined;
96338
96448
  }>]>;
96339
96449
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
96340
96450
  type: z.ZodLiteral<"agent">;
@@ -96500,6 +96610,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96500
96610
  } | {
96501
96611
  type: "cron";
96502
96612
  expression: string;
96613
+ timezone?: string | undefined;
96503
96614
  };
96504
96615
  target: {
96505
96616
  agentId: string;
@@ -96544,6 +96655,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96544
96655
  } | {
96545
96656
  type: "cron";
96546
96657
  expression: string;
96658
+ timezone?: string | undefined;
96547
96659
  };
96548
96660
  target: {
96549
96661
  agentId: string;
@@ -96593,6 +96705,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96593
96705
  } | {
96594
96706
  type: "cron";
96595
96707
  expression: string;
96708
+ timezone?: string | undefined;
96596
96709
  };
96597
96710
  target: {
96598
96711
  agentId: string;
@@ -96641,6 +96754,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96641
96754
  } | {
96642
96755
  type: "cron";
96643
96756
  expression: string;
96757
+ timezone?: string | undefined;
96644
96758
  };
96645
96759
  target: {
96646
96760
  agentId: string;
@@ -96692,6 +96806,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96692
96806
  } | {
96693
96807
  type: "cron";
96694
96808
  expression: string;
96809
+ timezone?: string | undefined;
96695
96810
  };
96696
96811
  target: {
96697
96812
  agentId: string;
@@ -96743,6 +96858,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96743
96858
  } | {
96744
96859
  type: "cron";
96745
96860
  expression: string;
96861
+ timezone?: string | undefined;
96746
96862
  };
96747
96863
  target: {
96748
96864
  agentId: string;
@@ -96796,12 +96912,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96796
96912
  }>, z.ZodObject<{
96797
96913
  type: z.ZodLiteral<"cron">;
96798
96914
  expression: z.ZodString;
96915
+ timezone: z.ZodOptional<z.ZodString>;
96799
96916
  }, "strip", z.ZodTypeAny, {
96800
96917
  type: "cron";
96801
96918
  expression: string;
96919
+ timezone?: string | undefined;
96802
96920
  }, {
96803
96921
  type: "cron";
96804
96922
  expression: string;
96923
+ timezone?: string | undefined;
96805
96924
  }>]>;
96806
96925
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
96807
96926
  type: z.ZodLiteral<"agent">;
@@ -96967,6 +97086,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
96967
97086
  } | {
96968
97087
  type: "cron";
96969
97088
  expression: string;
97089
+ timezone?: string | undefined;
96970
97090
  };
96971
97091
  target: {
96972
97092
  agentId: string;
@@ -97021,6 +97141,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97021
97141
  } | {
97022
97142
  type: "cron";
97023
97143
  expression: string;
97144
+ timezone?: string | undefined;
97024
97145
  };
97025
97146
  target: {
97026
97147
  agentId: string;
@@ -97080,6 +97201,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97080
97201
  } | {
97081
97202
  type: "cron";
97082
97203
  expression: string;
97204
+ timezone?: string | undefined;
97083
97205
  };
97084
97206
  target: {
97085
97207
  agentId: string;
@@ -97138,6 +97260,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97138
97260
  } | {
97139
97261
  type: "cron";
97140
97262
  expression: string;
97263
+ timezone?: string | undefined;
97141
97264
  };
97142
97265
  target: {
97143
97266
  agentId: string;
@@ -97199,6 +97322,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97199
97322
  } | {
97200
97323
  type: "cron";
97201
97324
  expression: string;
97325
+ timezone?: string | undefined;
97202
97326
  };
97203
97327
  target: {
97204
97328
  agentId: string;
@@ -97260,6 +97384,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97260
97384
  } | {
97261
97385
  type: "cron";
97262
97386
  expression: string;
97387
+ timezone?: string | undefined;
97263
97388
  };
97264
97389
  target: {
97265
97390
  agentId: string;
@@ -97415,12 +97540,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97415
97540
  }>, z.ZodObject<{
97416
97541
  type: z.ZodLiteral<"cron">;
97417
97542
  expression: z.ZodString;
97543
+ timezone: z.ZodOptional<z.ZodString>;
97418
97544
  }, "strip", z.ZodTypeAny, {
97419
97545
  type: "cron";
97420
97546
  expression: string;
97547
+ timezone?: string | undefined;
97421
97548
  }, {
97422
97549
  type: "cron";
97423
97550
  expression: string;
97551
+ timezone?: string | undefined;
97424
97552
  }>]>;
97425
97553
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
97426
97554
  type: z.ZodLiteral<"agent">;
@@ -97586,6 +97714,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97586
97714
  } | {
97587
97715
  type: "cron";
97588
97716
  expression: string;
97717
+ timezone?: string | undefined;
97589
97718
  };
97590
97719
  target: {
97591
97720
  agentId: string;
@@ -97630,6 +97759,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97630
97759
  } | {
97631
97760
  type: "cron";
97632
97761
  expression: string;
97762
+ timezone?: string | undefined;
97633
97763
  };
97634
97764
  target: {
97635
97765
  agentId: string;
@@ -97679,6 +97809,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97679
97809
  } | {
97680
97810
  type: "cron";
97681
97811
  expression: string;
97812
+ timezone?: string | undefined;
97682
97813
  };
97683
97814
  target: {
97684
97815
  agentId: string;
@@ -97727,6 +97858,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97727
97858
  } | {
97728
97859
  type: "cron";
97729
97860
  expression: string;
97861
+ timezone?: string | undefined;
97730
97862
  };
97731
97863
  target: {
97732
97864
  agentId: string;
@@ -97778,6 +97910,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97778
97910
  } | {
97779
97911
  type: "cron";
97780
97912
  expression: string;
97913
+ timezone?: string | undefined;
97781
97914
  };
97782
97915
  target: {
97783
97916
  agentId: string;
@@ -97829,6 +97962,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97829
97962
  } | {
97830
97963
  type: "cron";
97831
97964
  expression: string;
97965
+ timezone?: string | undefined;
97832
97966
  };
97833
97967
  target: {
97834
97968
  agentId: string;
@@ -97882,12 +98016,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
97882
98016
  }>, z.ZodObject<{
97883
98017
  type: z.ZodLiteral<"cron">;
97884
98018
  expression: z.ZodString;
98019
+ timezone: z.ZodOptional<z.ZodString>;
97885
98020
  }, "strip", z.ZodTypeAny, {
97886
98021
  type: "cron";
97887
98022
  expression: string;
98023
+ timezone?: string | undefined;
97888
98024
  }, {
97889
98025
  type: "cron";
97890
98026
  expression: string;
98027
+ timezone?: string | undefined;
97891
98028
  }>]>;
97892
98029
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
97893
98030
  type: z.ZodLiteral<"agent">;
@@ -98053,6 +98190,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98053
98190
  } | {
98054
98191
  type: "cron";
98055
98192
  expression: string;
98193
+ timezone?: string | undefined;
98056
98194
  };
98057
98195
  target: {
98058
98196
  agentId: string;
@@ -98097,6 +98235,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98097
98235
  } | {
98098
98236
  type: "cron";
98099
98237
  expression: string;
98238
+ timezone?: string | undefined;
98100
98239
  };
98101
98240
  target: {
98102
98241
  agentId: string;
@@ -98146,6 +98285,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98146
98285
  } | {
98147
98286
  type: "cron";
98148
98287
  expression: string;
98288
+ timezone?: string | undefined;
98149
98289
  };
98150
98290
  target: {
98151
98291
  agentId: string;
@@ -98194,6 +98334,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98194
98334
  } | {
98195
98335
  type: "cron";
98196
98336
  expression: string;
98337
+ timezone?: string | undefined;
98197
98338
  };
98198
98339
  target: {
98199
98340
  agentId: string;
@@ -98245,6 +98386,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98245
98386
  } | {
98246
98387
  type: "cron";
98247
98388
  expression: string;
98389
+ timezone?: string | undefined;
98248
98390
  };
98249
98391
  target: {
98250
98392
  agentId: string;
@@ -98296,6 +98438,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98296
98438
  } | {
98297
98439
  type: "cron";
98298
98440
  expression: string;
98441
+ timezone?: string | undefined;
98299
98442
  };
98300
98443
  target: {
98301
98444
  agentId: string;
@@ -98378,12 +98521,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98378
98521
  }>, z.ZodObject<{
98379
98522
  type: z.ZodLiteral<"cron">;
98380
98523
  expression: z.ZodString;
98524
+ timezone: z.ZodOptional<z.ZodString>;
98381
98525
  }, "strip", z.ZodTypeAny, {
98382
98526
  type: "cron";
98383
98527
  expression: string;
98528
+ timezone?: string | undefined;
98384
98529
  }, {
98385
98530
  type: "cron";
98386
98531
  expression: string;
98532
+ timezone?: string | undefined;
98387
98533
  }>]>;
98388
98534
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
98389
98535
  type: z.ZodLiteral<"agent">;
@@ -98549,6 +98695,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98549
98695
  } | {
98550
98696
  type: "cron";
98551
98697
  expression: string;
98698
+ timezone?: string | undefined;
98552
98699
  };
98553
98700
  target: {
98554
98701
  agentId: string;
@@ -98603,6 +98750,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98603
98750
  } | {
98604
98751
  type: "cron";
98605
98752
  expression: string;
98753
+ timezone?: string | undefined;
98606
98754
  };
98607
98755
  target: {
98608
98756
  agentId: string;
@@ -98662,6 +98810,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98662
98810
  } | {
98663
98811
  type: "cron";
98664
98812
  expression: string;
98813
+ timezone?: string | undefined;
98665
98814
  };
98666
98815
  target: {
98667
98816
  agentId: string;
@@ -98720,6 +98869,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98720
98869
  } | {
98721
98870
  type: "cron";
98722
98871
  expression: string;
98872
+ timezone?: string | undefined;
98723
98873
  };
98724
98874
  target: {
98725
98875
  agentId: string;
@@ -98781,6 +98931,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98781
98931
  } | {
98782
98932
  type: "cron";
98783
98933
  expression: string;
98934
+ timezone?: string | undefined;
98784
98935
  };
98785
98936
  target: {
98786
98937
  agentId: string;
@@ -98842,6 +98993,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98842
98993
  } | {
98843
98994
  type: "cron";
98844
98995
  expression: string;
98996
+ timezone?: string | undefined;
98845
98997
  };
98846
98998
  target: {
98847
98999
  agentId: string;
@@ -98905,12 +99057,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
98905
99057
  }>, z.ZodObject<{
98906
99058
  type: z.ZodLiteral<"cron">;
98907
99059
  expression: z.ZodString;
99060
+ timezone: z.ZodOptional<z.ZodString>;
98908
99061
  }, "strip", z.ZodTypeAny, {
98909
99062
  type: "cron";
98910
99063
  expression: string;
99064
+ timezone?: string | undefined;
98911
99065
  }, {
98912
99066
  type: "cron";
98913
99067
  expression: string;
99068
+ timezone?: string | undefined;
98914
99069
  }>]>;
98915
99070
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
98916
99071
  type: z.ZodLiteral<"agent">;
@@ -99076,6 +99231,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99076
99231
  } | {
99077
99232
  type: "cron";
99078
99233
  expression: string;
99234
+ timezone?: string | undefined;
99079
99235
  };
99080
99236
  target: {
99081
99237
  agentId: string;
@@ -99130,6 +99286,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99130
99286
  } | {
99131
99287
  type: "cron";
99132
99288
  expression: string;
99289
+ timezone?: string | undefined;
99133
99290
  };
99134
99291
  target: {
99135
99292
  agentId: string;
@@ -99189,6 +99346,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99189
99346
  } | {
99190
99347
  type: "cron";
99191
99348
  expression: string;
99349
+ timezone?: string | undefined;
99192
99350
  };
99193
99351
  target: {
99194
99352
  agentId: string;
@@ -99247,6 +99405,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99247
99405
  } | {
99248
99406
  type: "cron";
99249
99407
  expression: string;
99408
+ timezone?: string | undefined;
99250
99409
  };
99251
99410
  target: {
99252
99411
  agentId: string;
@@ -99308,6 +99467,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99308
99467
  } | {
99309
99468
  type: "cron";
99310
99469
  expression: string;
99470
+ timezone?: string | undefined;
99311
99471
  };
99312
99472
  target: {
99313
99473
  agentId: string;
@@ -99369,6 +99529,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
99369
99529
  } | {
99370
99530
  type: "cron";
99371
99531
  expression: string;
99532
+ timezone?: string | undefined;
99372
99533
  };
99373
99534
  target: {
99374
99535
  agentId: string;
@@ -101931,6 +102092,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
101931
102092
  } | {
101932
102093
  type: "cron";
101933
102094
  expression: string;
102095
+ timezone?: string | undefined;
101934
102096
  };
101935
102097
  target: {
101936
102098
  agentId: string;
@@ -101982,6 +102144,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
101982
102144
  } | {
101983
102145
  type: "cron";
101984
102146
  expression: string;
102147
+ timezone?: string | undefined;
101985
102148
  };
101986
102149
  target: {
101987
102150
  agentId: string;
@@ -102033,6 +102196,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
102033
102196
  } | {
102034
102197
  type: "cron";
102035
102198
  expression: string;
102199
+ timezone?: string | undefined;
102036
102200
  };
102037
102201
  target: {
102038
102202
  agentId: string;
@@ -102110,6 +102274,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
102110
102274
  } | {
102111
102275
  type: "cron";
102112
102276
  expression: string;
102277
+ timezone?: string | undefined;
102113
102278
  };
102114
102279
  target: {
102115
102280
  agentId: string;
@@ -102161,6 +102326,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
102161
102326
  } | {
102162
102327
  type: "cron";
102163
102328
  expression: string;
102329
+ timezone?: string | undefined;
102164
102330
  };
102165
102331
  target: {
102166
102332
  agentId: string;
@@ -102219,6 +102385,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
102219
102385
  } | {
102220
102386
  type: "cron";
102221
102387
  expression: string;
102388
+ timezone?: string | undefined;
102222
102389
  };
102223
102390
  target: {
102224
102391
  agentId: string;
@@ -102280,6 +102447,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
102280
102447
  } | {
102281
102448
  type: "cron";
102282
102449
  expression: string;
102450
+ timezone?: string | undefined;
102283
102451
  };
102284
102452
  target: {
102285
102453
  agentId: string;
@@ -105433,6 +105601,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105433
105601
  } | {
105434
105602
  type: "cron";
105435
105603
  expression: string;
105604
+ timezone?: string | undefined;
105436
105605
  };
105437
105606
  target: {
105438
105607
  agentId: string;
@@ -105484,6 +105653,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105484
105653
  } | {
105485
105654
  type: "cron";
105486
105655
  expression: string;
105656
+ timezone?: string | undefined;
105487
105657
  };
105488
105658
  target: {
105489
105659
  agentId: string;
@@ -105535,6 +105705,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105535
105705
  } | {
105536
105706
  type: "cron";
105537
105707
  expression: string;
105708
+ timezone?: string | undefined;
105538
105709
  };
105539
105710
  target: {
105540
105711
  agentId: string;
@@ -105612,6 +105783,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105612
105783
  } | {
105613
105784
  type: "cron";
105614
105785
  expression: string;
105786
+ timezone?: string | undefined;
105615
105787
  };
105616
105788
  target: {
105617
105789
  agentId: string;
@@ -105663,6 +105835,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105663
105835
  } | {
105664
105836
  type: "cron";
105665
105837
  expression: string;
105838
+ timezone?: string | undefined;
105666
105839
  };
105667
105840
  target: {
105668
105841
  agentId: string;
@@ -105721,6 +105894,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105721
105894
  } | {
105722
105895
  type: "cron";
105723
105896
  expression: string;
105897
+ timezone?: string | undefined;
105724
105898
  };
105725
105899
  target: {
105726
105900
  agentId: string;
@@ -105782,6 +105956,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
105782
105956
  } | {
105783
105957
  type: "cron";
105784
105958
  expression: string;
105959
+ timezone?: string | undefined;
105785
105960
  };
105786
105961
  target: {
105787
105962
  agentId: string;
@@ -108786,16 +108961,19 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
108786
108961
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
108787
108962
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
108788
108963
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
108964
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
108789
108965
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
108790
108966
  voice: z.ZodOptional<z.ZodBoolean>;
108791
108967
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
108792
108968
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
108793
108969
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
108970
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
108794
108971
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
108795
108972
  voice: z.ZodOptional<z.ZodBoolean>;
108796
108973
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
108797
108974
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
108798
108975
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
108976
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
108799
108977
  }, z.ZodTypeAny, "passthrough">>>;
108800
108978
  }, "strip", z.ZodTypeAny, {
108801
108979
  type: "hello";
@@ -108807,6 +108985,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
108807
108985
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
108808
108986
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
108809
108987
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
108988
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
108810
108989
  }, z.ZodTypeAny, "passthrough"> | undefined;
108811
108990
  appVersion?: string | undefined;
108812
108991
  }, {
@@ -108819,6 +108998,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
108819
108998
  pushNotifications: z.ZodOptional<z.ZodBoolean>;
108820
108999
  reasoning_merge_enum: z.ZodOptional<z.ZodBoolean>;
108821
109000
  custom_mode_icons: z.ZodOptional<z.ZodBoolean>;
109001
+ terminal_reflowable_snapshot: z.ZodOptional<z.ZodBoolean>;
108822
109002
  }, z.ZodTypeAny, "passthrough"> | undefined;
108823
109003
  appVersion?: string | undefined;
108824
109004
  }>, z.ZodObject<{
@@ -112346,14 +112526,14 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112346
112526
  size: z.ZodOptional<z.ZodObject<{
112347
112527
  rows: z.ZodNumber;
112348
112528
  cols: z.ZodNumber;
112349
- }, "strict", z.ZodTypeAny, {
112529
+ }, "strip", z.ZodTypeAny, {
112350
112530
  rows: number;
112351
112531
  cols: number;
112352
112532
  }, {
112353
112533
  rows: number;
112354
112534
  cols: number;
112355
112535
  }>>;
112356
- }, "strict", z.ZodTypeAny, {
112536
+ }, "strip", z.ZodTypeAny, {
112357
112537
  mode: "live" | "visible-snapshot" | "full-snapshot";
112358
112538
  size?: {
112359
112539
  rows: number;
@@ -112636,12 +112816,15 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112636
112816
  }>, z.ZodObject<{
112637
112817
  type: z.ZodLiteral<"cron">;
112638
112818
  expression: z.ZodString;
112819
+ timezone: z.ZodOptional<z.ZodString>;
112639
112820
  }, "strip", z.ZodTypeAny, {
112640
112821
  type: "cron";
112641
112822
  expression: string;
112823
+ timezone?: string | undefined;
112642
112824
  }, {
112643
112825
  type: "cron";
112644
112826
  expression: string;
112827
+ timezone?: string | undefined;
112645
112828
  }>]>;
112646
112829
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
112647
112830
  type: z.ZodLiteral<"self">;
@@ -112780,6 +112963,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112780
112963
  } | {
112781
112964
  type: "cron";
112782
112965
  expression: string;
112966
+ timezone?: string | undefined;
112783
112967
  };
112784
112968
  target: {
112785
112969
  agentId: string;
@@ -112823,6 +113007,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112823
113007
  } | {
112824
113008
  type: "cron";
112825
113009
  expression: string;
113010
+ timezone?: string | undefined;
112826
113011
  };
112827
113012
  target: {
112828
113013
  agentId: string;
@@ -112955,12 +113140,15 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112955
113140
  }>, z.ZodObject<{
112956
113141
  type: z.ZodLiteral<"cron">;
112957
113142
  expression: z.ZodString;
113143
+ timezone: z.ZodOptional<z.ZodString>;
112958
113144
  }, "strip", z.ZodTypeAny, {
112959
113145
  type: "cron";
112960
113146
  expression: string;
113147
+ timezone?: string | undefined;
112961
113148
  }, {
112962
113149
  type: "cron";
112963
113150
  expression: string;
113151
+ timezone?: string | undefined;
112964
113152
  }>]>>;
112965
113153
  newAgentConfig: z.ZodOptional<z.ZodObject<{
112966
113154
  provider: z.ZodOptional<z.ZodString>;
@@ -112992,6 +113180,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112992
113180
  } | {
112993
113181
  type: "cron";
112994
113182
  expression: string;
113183
+ timezone?: string | undefined;
112995
113184
  } | undefined;
112996
113185
  expiresAt?: string | null | undefined;
112997
113186
  maxRuns?: number | null | undefined;
@@ -113013,6 +113202,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
113013
113202
  } | {
113014
113203
  type: "cron";
113015
113204
  expression: string;
113205
+ timezone?: string | undefined;
113016
113206
  } | undefined;
113017
113207
  expiresAt?: string | null | undefined;
113018
113208
  maxRuns?: number | null | undefined;
@@ -113179,6 +113369,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
113179
113369
  } | {
113180
113370
  type: "cron";
113181
113371
  expression: string;
113372
+ timezone?: string | undefined;
113182
113373
  };
113183
113374
  target: {
113184
113375
  agentId: string;
@@ -113251,6 +113442,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
113251
113442
  } | {
113252
113443
  type: "cron";
113253
113444
  expression: string;
113445
+ timezone?: string | undefined;
113254
113446
  } | undefined;
113255
113447
  expiresAt?: string | null | undefined;
113256
113448
  maxRuns?: number | null | undefined;
@@ -114293,6 +114485,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
114293
114485
  } | {
114294
114486
  type: "cron";
114295
114487
  expression: string;
114488
+ timezone?: string | undefined;
114296
114489
  };
114297
114490
  target: {
114298
114491
  agentId: string;
@@ -114365,6 +114558,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
114365
114558
  } | {
114366
114559
  type: "cron";
114367
114560
  expression: string;
114561
+ timezone?: string | undefined;
114368
114562
  } | undefined;
114369
114563
  expiresAt?: string | null | undefined;
114370
114564
  maxRuns?: number | null | undefined;
@@ -137529,12 +137723,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137529
137723
  }>, z.ZodObject<{
137530
137724
  type: z.ZodLiteral<"cron">;
137531
137725
  expression: z.ZodString;
137726
+ timezone: z.ZodOptional<z.ZodString>;
137532
137727
  }, "strip", z.ZodTypeAny, {
137533
137728
  type: "cron";
137534
137729
  expression: string;
137730
+ timezone?: string | undefined;
137535
137731
  }, {
137536
137732
  type: "cron";
137537
137733
  expression: string;
137734
+ timezone?: string | undefined;
137538
137735
  }>]>;
137539
137736
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
137540
137737
  type: z.ZodLiteral<"agent">;
@@ -137700,6 +137897,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137700
137897
  } | {
137701
137898
  type: "cron";
137702
137899
  expression: string;
137900
+ timezone?: string | undefined;
137703
137901
  };
137704
137902
  target: {
137705
137903
  agentId: string;
@@ -137744,6 +137942,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137744
137942
  } | {
137745
137943
  type: "cron";
137746
137944
  expression: string;
137945
+ timezone?: string | undefined;
137747
137946
  };
137748
137947
  target: {
137749
137948
  agentId: string;
@@ -137793,6 +137992,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137793
137992
  } | {
137794
137993
  type: "cron";
137795
137994
  expression: string;
137995
+ timezone?: string | undefined;
137796
137996
  };
137797
137997
  target: {
137798
137998
  agentId: string;
@@ -137841,6 +138041,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137841
138041
  } | {
137842
138042
  type: "cron";
137843
138043
  expression: string;
138044
+ timezone?: string | undefined;
137844
138045
  };
137845
138046
  target: {
137846
138047
  agentId: string;
@@ -137892,6 +138093,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137892
138093
  } | {
137893
138094
  type: "cron";
137894
138095
  expression: string;
138096
+ timezone?: string | undefined;
137895
138097
  };
137896
138098
  target: {
137897
138099
  agentId: string;
@@ -137943,6 +138145,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137943
138145
  } | {
137944
138146
  type: "cron";
137945
138147
  expression: string;
138148
+ timezone?: string | undefined;
137946
138149
  };
137947
138150
  target: {
137948
138151
  agentId: string;
@@ -137996,12 +138199,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
137996
138199
  }>, z.ZodObject<{
137997
138200
  type: z.ZodLiteral<"cron">;
137998
138201
  expression: z.ZodString;
138202
+ timezone: z.ZodOptional<z.ZodString>;
137999
138203
  }, "strip", z.ZodTypeAny, {
138000
138204
  type: "cron";
138001
138205
  expression: string;
138206
+ timezone?: string | undefined;
138002
138207
  }, {
138003
138208
  type: "cron";
138004
138209
  expression: string;
138210
+ timezone?: string | undefined;
138005
138211
  }>]>;
138006
138212
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
138007
138213
  type: z.ZodLiteral<"agent">;
@@ -138167,6 +138373,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138167
138373
  } | {
138168
138374
  type: "cron";
138169
138375
  expression: string;
138376
+ timezone?: string | undefined;
138170
138377
  };
138171
138378
  target: {
138172
138379
  agentId: string;
@@ -138211,6 +138418,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138211
138418
  } | {
138212
138419
  type: "cron";
138213
138420
  expression: string;
138421
+ timezone?: string | undefined;
138214
138422
  };
138215
138423
  target: {
138216
138424
  agentId: string;
@@ -138260,6 +138468,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138260
138468
  } | {
138261
138469
  type: "cron";
138262
138470
  expression: string;
138471
+ timezone?: string | undefined;
138263
138472
  };
138264
138473
  target: {
138265
138474
  agentId: string;
@@ -138308,6 +138517,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138308
138517
  } | {
138309
138518
  type: "cron";
138310
138519
  expression: string;
138520
+ timezone?: string | undefined;
138311
138521
  };
138312
138522
  target: {
138313
138523
  agentId: string;
@@ -138359,6 +138569,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138359
138569
  } | {
138360
138570
  type: "cron";
138361
138571
  expression: string;
138572
+ timezone?: string | undefined;
138362
138573
  };
138363
138574
  target: {
138364
138575
  agentId: string;
@@ -138410,6 +138621,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138410
138621
  } | {
138411
138622
  type: "cron";
138412
138623
  expression: string;
138624
+ timezone?: string | undefined;
138413
138625
  };
138414
138626
  target: {
138415
138627
  agentId: string;
@@ -138463,12 +138675,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138463
138675
  }>, z.ZodObject<{
138464
138676
  type: z.ZodLiteral<"cron">;
138465
138677
  expression: z.ZodString;
138678
+ timezone: z.ZodOptional<z.ZodString>;
138466
138679
  }, "strip", z.ZodTypeAny, {
138467
138680
  type: "cron";
138468
138681
  expression: string;
138682
+ timezone?: string | undefined;
138469
138683
  }, {
138470
138684
  type: "cron";
138471
138685
  expression: string;
138686
+ timezone?: string | undefined;
138472
138687
  }>]>;
138473
138688
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
138474
138689
  type: z.ZodLiteral<"agent">;
@@ -138634,6 +138849,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138634
138849
  } | {
138635
138850
  type: "cron";
138636
138851
  expression: string;
138852
+ timezone?: string | undefined;
138637
138853
  };
138638
138854
  target: {
138639
138855
  agentId: string;
@@ -138688,6 +138904,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138688
138904
  } | {
138689
138905
  type: "cron";
138690
138906
  expression: string;
138907
+ timezone?: string | undefined;
138691
138908
  };
138692
138909
  target: {
138693
138910
  agentId: string;
@@ -138747,6 +138964,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138747
138964
  } | {
138748
138965
  type: "cron";
138749
138966
  expression: string;
138967
+ timezone?: string | undefined;
138750
138968
  };
138751
138969
  target: {
138752
138970
  agentId: string;
@@ -138805,6 +139023,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138805
139023
  } | {
138806
139024
  type: "cron";
138807
139025
  expression: string;
139026
+ timezone?: string | undefined;
138808
139027
  };
138809
139028
  target: {
138810
139029
  agentId: string;
@@ -138866,6 +139085,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138866
139085
  } | {
138867
139086
  type: "cron";
138868
139087
  expression: string;
139088
+ timezone?: string | undefined;
138869
139089
  };
138870
139090
  target: {
138871
139091
  agentId: string;
@@ -138927,6 +139147,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
138927
139147
  } | {
138928
139148
  type: "cron";
138929
139149
  expression: string;
139150
+ timezone?: string | undefined;
138930
139151
  };
138931
139152
  target: {
138932
139153
  agentId: string;
@@ -139082,12 +139303,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139082
139303
  }>, z.ZodObject<{
139083
139304
  type: z.ZodLiteral<"cron">;
139084
139305
  expression: z.ZodString;
139306
+ timezone: z.ZodOptional<z.ZodString>;
139085
139307
  }, "strip", z.ZodTypeAny, {
139086
139308
  type: "cron";
139087
139309
  expression: string;
139310
+ timezone?: string | undefined;
139088
139311
  }, {
139089
139312
  type: "cron";
139090
139313
  expression: string;
139314
+ timezone?: string | undefined;
139091
139315
  }>]>;
139092
139316
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
139093
139317
  type: z.ZodLiteral<"agent">;
@@ -139253,6 +139477,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139253
139477
  } | {
139254
139478
  type: "cron";
139255
139479
  expression: string;
139480
+ timezone?: string | undefined;
139256
139481
  };
139257
139482
  target: {
139258
139483
  agentId: string;
@@ -139297,6 +139522,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139297
139522
  } | {
139298
139523
  type: "cron";
139299
139524
  expression: string;
139525
+ timezone?: string | undefined;
139300
139526
  };
139301
139527
  target: {
139302
139528
  agentId: string;
@@ -139346,6 +139572,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139346
139572
  } | {
139347
139573
  type: "cron";
139348
139574
  expression: string;
139575
+ timezone?: string | undefined;
139349
139576
  };
139350
139577
  target: {
139351
139578
  agentId: string;
@@ -139394,6 +139621,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139394
139621
  } | {
139395
139622
  type: "cron";
139396
139623
  expression: string;
139624
+ timezone?: string | undefined;
139397
139625
  };
139398
139626
  target: {
139399
139627
  agentId: string;
@@ -139445,6 +139673,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139445
139673
  } | {
139446
139674
  type: "cron";
139447
139675
  expression: string;
139676
+ timezone?: string | undefined;
139448
139677
  };
139449
139678
  target: {
139450
139679
  agentId: string;
@@ -139496,6 +139725,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139496
139725
  } | {
139497
139726
  type: "cron";
139498
139727
  expression: string;
139728
+ timezone?: string | undefined;
139499
139729
  };
139500
139730
  target: {
139501
139731
  agentId: string;
@@ -139549,12 +139779,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139549
139779
  }>, z.ZodObject<{
139550
139780
  type: z.ZodLiteral<"cron">;
139551
139781
  expression: z.ZodString;
139782
+ timezone: z.ZodOptional<z.ZodString>;
139552
139783
  }, "strip", z.ZodTypeAny, {
139553
139784
  type: "cron";
139554
139785
  expression: string;
139786
+ timezone?: string | undefined;
139555
139787
  }, {
139556
139788
  type: "cron";
139557
139789
  expression: string;
139790
+ timezone?: string | undefined;
139558
139791
  }>]>;
139559
139792
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
139560
139793
  type: z.ZodLiteral<"agent">;
@@ -139720,6 +139953,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139720
139953
  } | {
139721
139954
  type: "cron";
139722
139955
  expression: string;
139956
+ timezone?: string | undefined;
139723
139957
  };
139724
139958
  target: {
139725
139959
  agentId: string;
@@ -139764,6 +139998,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139764
139998
  } | {
139765
139999
  type: "cron";
139766
140000
  expression: string;
140001
+ timezone?: string | undefined;
139767
140002
  };
139768
140003
  target: {
139769
140004
  agentId: string;
@@ -139813,6 +140048,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139813
140048
  } | {
139814
140049
  type: "cron";
139815
140050
  expression: string;
140051
+ timezone?: string | undefined;
139816
140052
  };
139817
140053
  target: {
139818
140054
  agentId: string;
@@ -139861,6 +140097,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139861
140097
  } | {
139862
140098
  type: "cron";
139863
140099
  expression: string;
140100
+ timezone?: string | undefined;
139864
140101
  };
139865
140102
  target: {
139866
140103
  agentId: string;
@@ -139912,6 +140149,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139912
140149
  } | {
139913
140150
  type: "cron";
139914
140151
  expression: string;
140152
+ timezone?: string | undefined;
139915
140153
  };
139916
140154
  target: {
139917
140155
  agentId: string;
@@ -139963,6 +140201,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
139963
140201
  } | {
139964
140202
  type: "cron";
139965
140203
  expression: string;
140204
+ timezone?: string | undefined;
139966
140205
  };
139967
140206
  target: {
139968
140207
  agentId: string;
@@ -140045,12 +140284,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140045
140284
  }>, z.ZodObject<{
140046
140285
  type: z.ZodLiteral<"cron">;
140047
140286
  expression: z.ZodString;
140287
+ timezone: z.ZodOptional<z.ZodString>;
140048
140288
  }, "strip", z.ZodTypeAny, {
140049
140289
  type: "cron";
140050
140290
  expression: string;
140291
+ timezone?: string | undefined;
140051
140292
  }, {
140052
140293
  type: "cron";
140053
140294
  expression: string;
140295
+ timezone?: string | undefined;
140054
140296
  }>]>;
140055
140297
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
140056
140298
  type: z.ZodLiteral<"agent">;
@@ -140216,6 +140458,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140216
140458
  } | {
140217
140459
  type: "cron";
140218
140460
  expression: string;
140461
+ timezone?: string | undefined;
140219
140462
  };
140220
140463
  target: {
140221
140464
  agentId: string;
@@ -140270,6 +140513,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140270
140513
  } | {
140271
140514
  type: "cron";
140272
140515
  expression: string;
140516
+ timezone?: string | undefined;
140273
140517
  };
140274
140518
  target: {
140275
140519
  agentId: string;
@@ -140329,6 +140573,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140329
140573
  } | {
140330
140574
  type: "cron";
140331
140575
  expression: string;
140576
+ timezone?: string | undefined;
140332
140577
  };
140333
140578
  target: {
140334
140579
  agentId: string;
@@ -140387,6 +140632,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140387
140632
  } | {
140388
140633
  type: "cron";
140389
140634
  expression: string;
140635
+ timezone?: string | undefined;
140390
140636
  };
140391
140637
  target: {
140392
140638
  agentId: string;
@@ -140448,6 +140694,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140448
140694
  } | {
140449
140695
  type: "cron";
140450
140696
  expression: string;
140697
+ timezone?: string | undefined;
140451
140698
  };
140452
140699
  target: {
140453
140700
  agentId: string;
@@ -140509,6 +140756,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140509
140756
  } | {
140510
140757
  type: "cron";
140511
140758
  expression: string;
140759
+ timezone?: string | undefined;
140512
140760
  };
140513
140761
  target: {
140514
140762
  agentId: string;
@@ -140572,12 +140820,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140572
140820
  }>, z.ZodObject<{
140573
140821
  type: z.ZodLiteral<"cron">;
140574
140822
  expression: z.ZodString;
140823
+ timezone: z.ZodOptional<z.ZodString>;
140575
140824
  }, "strip", z.ZodTypeAny, {
140576
140825
  type: "cron";
140577
140826
  expression: string;
140827
+ timezone?: string | undefined;
140578
140828
  }, {
140579
140829
  type: "cron";
140580
140830
  expression: string;
140831
+ timezone?: string | undefined;
140581
140832
  }>]>;
140582
140833
  target: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
140583
140834
  type: z.ZodLiteral<"agent">;
@@ -140743,6 +140994,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140743
140994
  } | {
140744
140995
  type: "cron";
140745
140996
  expression: string;
140997
+ timezone?: string | undefined;
140746
140998
  };
140747
140999
  target: {
140748
141000
  agentId: string;
@@ -140797,6 +141049,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140797
141049
  } | {
140798
141050
  type: "cron";
140799
141051
  expression: string;
141052
+ timezone?: string | undefined;
140800
141053
  };
140801
141054
  target: {
140802
141055
  agentId: string;
@@ -140856,6 +141109,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140856
141109
  } | {
140857
141110
  type: "cron";
140858
141111
  expression: string;
141112
+ timezone?: string | undefined;
140859
141113
  };
140860
141114
  target: {
140861
141115
  agentId: string;
@@ -140914,6 +141168,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140914
141168
  } | {
140915
141169
  type: "cron";
140916
141170
  expression: string;
141171
+ timezone?: string | undefined;
140917
141172
  };
140918
141173
  target: {
140919
141174
  agentId: string;
@@ -140975,6 +141230,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
140975
141230
  } | {
140976
141231
  type: "cron";
140977
141232
  expression: string;
141233
+ timezone?: string | undefined;
140978
141234
  };
140979
141235
  target: {
140980
141236
  agentId: string;
@@ -141036,6 +141292,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
141036
141292
  } | {
141037
141293
  type: "cron";
141038
141294
  expression: string;
141295
+ timezone?: string | undefined;
141039
141296
  };
141040
141297
  target: {
141041
141298
  agentId: string;
@@ -143598,6 +143855,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143598
143855
  } | {
143599
143856
  type: "cron";
143600
143857
  expression: string;
143858
+ timezone?: string | undefined;
143601
143859
  };
143602
143860
  target: {
143603
143861
  agentId: string;
@@ -143649,6 +143907,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143649
143907
  } | {
143650
143908
  type: "cron";
143651
143909
  expression: string;
143910
+ timezone?: string | undefined;
143652
143911
  };
143653
143912
  target: {
143654
143913
  agentId: string;
@@ -143700,6 +143959,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143700
143959
  } | {
143701
143960
  type: "cron";
143702
143961
  expression: string;
143962
+ timezone?: string | undefined;
143703
143963
  };
143704
143964
  target: {
143705
143965
  agentId: string;
@@ -143777,6 +144037,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143777
144037
  } | {
143778
144038
  type: "cron";
143779
144039
  expression: string;
144040
+ timezone?: string | undefined;
143780
144041
  };
143781
144042
  target: {
143782
144043
  agentId: string;
@@ -143828,6 +144089,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143828
144089
  } | {
143829
144090
  type: "cron";
143830
144091
  expression: string;
144092
+ timezone?: string | undefined;
143831
144093
  };
143832
144094
  target: {
143833
144095
  agentId: string;
@@ -143886,6 +144148,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143886
144148
  } | {
143887
144149
  type: "cron";
143888
144150
  expression: string;
144151
+ timezone?: string | undefined;
143889
144152
  };
143890
144153
  target: {
143891
144154
  agentId: string;
@@ -143947,6 +144210,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
143947
144210
  } | {
143948
144211
  type: "cron";
143949
144212
  expression: string;
144213
+ timezone?: string | undefined;
143950
144214
  };
143951
144215
  target: {
143952
144216
  agentId: string;
@@ -147100,6 +147364,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147100
147364
  } | {
147101
147365
  type: "cron";
147102
147366
  expression: string;
147367
+ timezone?: string | undefined;
147103
147368
  };
147104
147369
  target: {
147105
147370
  agentId: string;
@@ -147151,6 +147416,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147151
147416
  } | {
147152
147417
  type: "cron";
147153
147418
  expression: string;
147419
+ timezone?: string | undefined;
147154
147420
  };
147155
147421
  target: {
147156
147422
  agentId: string;
@@ -147202,6 +147468,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147202
147468
  } | {
147203
147469
  type: "cron";
147204
147470
  expression: string;
147471
+ timezone?: string | undefined;
147205
147472
  };
147206
147473
  target: {
147207
147474
  agentId: string;
@@ -147279,6 +147546,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147279
147546
  } | {
147280
147547
  type: "cron";
147281
147548
  expression: string;
147549
+ timezone?: string | undefined;
147282
147550
  };
147283
147551
  target: {
147284
147552
  agentId: string;
@@ -147330,6 +147598,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147330
147598
  } | {
147331
147599
  type: "cron";
147332
147600
  expression: string;
147601
+ timezone?: string | undefined;
147333
147602
  };
147334
147603
  target: {
147335
147604
  agentId: string;
@@ -147388,6 +147657,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147388
147657
  } | {
147389
147658
  type: "cron";
147390
147659
  expression: string;
147660
+ timezone?: string | undefined;
147391
147661
  };
147392
147662
  target: {
147393
147663
  agentId: string;
@@ -147449,6 +147719,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
147449
147719
  } | {
147450
147720
  type: "cron";
147451
147721
  expression: string;
147722
+ timezone?: string | undefined;
147452
147723
  };
147453
147724
  target: {
147454
147725
  agentId: string;