@kl1/contracts 1.3.39 → 1.3.40

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.
Files changed (33) hide show
  1. package/dist/api-contracts/src/chat/index.d.ts +428 -0
  2. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/chat/schema.d.ts +95 -0
  4. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/validation.d.ts +56 -0
  6. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/contract.d.ts +511 -0
  8. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  9. package/dist/api-contracts/src/facebook-feed/index.d.ts +56 -0
  10. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  11. package/dist/api-contracts/src/hold-label/index.d.ts +57 -3
  12. package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
  13. package/dist/api-contracts/src/instagram/index.d.ts +56 -0
  14. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  15. package/dist/api-contracts/src/line/index.d.ts +56 -0
  16. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/messenger/index.d.ts +56 -0
  18. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  19. package/dist/api-contracts/src/telegram/index.d.ts +56 -0
  20. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/viber/index.d.ts +56 -0
  22. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  23. package/dist/api-contracts/src/webchat/index.d.ts +56 -0
  24. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  25. package/dist/api-contracts/src/whatsapp/index.d.ts +56 -0
  26. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/workflow-rule/index.d.ts +63 -0
  28. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  29. package/dist/index.js +23 -4
  30. package/dist/index.js.map +1 -1
  31. package/dist/index.mjs +23 -4
  32. package/dist/index.mjs.map +1 -1
  33. package/package.json +1 -1
@@ -11816,6 +11816,13 @@ export declare const mainFeedContract: {
11816
11816
  isActive: boolean;
11817
11817
  }>;
11818
11818
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11819
+ resumeLabel: z.ZodObject<{
11820
+ name: z.ZodString;
11821
+ }, "strip", z.ZodTypeAny, {
11822
+ name: string;
11823
+ }, {
11824
+ name: string;
11825
+ }>;
11819
11826
  }, "strip", z.ZodTypeAny, {
11820
11827
  id: string;
11821
11828
  channel: {
@@ -12248,6 +12255,9 @@ export declare const mainFeedContract: {
12248
12255
  deletedAt: Date | null;
12249
12256
  isActive: boolean;
12250
12257
  };
12258
+ resumeLabel: {
12259
+ name: string;
12260
+ };
12251
12261
  automationQueueId?: string | null | undefined;
12252
12262
  }, {
12253
12263
  id: string;
@@ -12681,6 +12691,9 @@ export declare const mainFeedContract: {
12681
12691
  deletedAt: Date | null;
12682
12692
  isActive: boolean;
12683
12693
  };
12694
+ resumeLabel: {
12695
+ name: string;
12696
+ };
12684
12697
  automationQueueId?: string | null | undefined;
12685
12698
  }>;
12686
12699
  platformMessageId: z.ZodString;
@@ -17584,6 +17597,13 @@ export declare const mainFeedContract: {
17584
17597
  isActive: boolean;
17585
17598
  }>;
17586
17599
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
17600
+ resumeLabel: z.ZodObject<{
17601
+ name: z.ZodString;
17602
+ }, "strip", z.ZodTypeAny, {
17603
+ name: string;
17604
+ }, {
17605
+ name: string;
17606
+ }>;
17587
17607
  }, "strip", z.ZodTypeAny, {
17588
17608
  id: string;
17589
17609
  channel: {
@@ -18016,6 +18036,9 @@ export declare const mainFeedContract: {
18016
18036
  deletedAt: Date | null;
18017
18037
  isActive: boolean;
18018
18038
  };
18039
+ resumeLabel: {
18040
+ name: string;
18041
+ };
18019
18042
  automationQueueId?: string | null | undefined;
18020
18043
  }, {
18021
18044
  id: string;
@@ -18449,6 +18472,9 @@ export declare const mainFeedContract: {
18449
18472
  deletedAt: Date | null;
18450
18473
  isActive: boolean;
18451
18474
  };
18475
+ resumeLabel: {
18476
+ name: string;
18477
+ };
18452
18478
  automationQueueId?: string | null | undefined;
18453
18479
  }>;
18454
18480
  upload: z.ZodObject<{
@@ -20655,6 +20681,9 @@ export declare const mainFeedContract: {
20655
20681
  deletedAt: Date | null;
20656
20682
  isActive: boolean;
20657
20683
  };
20684
+ resumeLabel: {
20685
+ name: string;
20686
+ };
20658
20687
  automationQueueId?: string | null | undefined;
20659
20688
  };
20660
20689
  platformMessageId: string;
@@ -21425,6 +21454,9 @@ export declare const mainFeedContract: {
21425
21454
  deletedAt: Date | null;
21426
21455
  isActive: boolean;
21427
21456
  };
21457
+ resumeLabel: {
21458
+ name: string;
21459
+ };
21428
21460
  automationQueueId?: string | null | undefined;
21429
21461
  };
21430
21462
  platformMessageId: string;
@@ -22202,6 +22234,9 @@ export declare const mainFeedContract: {
22202
22234
  deletedAt: Date | null;
22203
22235
  isActive: boolean;
22204
22236
  };
22237
+ resumeLabel: {
22238
+ name: string;
22239
+ };
22205
22240
  automationQueueId?: string | null | undefined;
22206
22241
  };
22207
22242
  platformMessageId: string;
@@ -22967,6 +23002,9 @@ export declare const mainFeedContract: {
22967
23002
  deletedAt: Date | null;
22968
23003
  isActive: boolean;
22969
23004
  };
23005
+ resumeLabel: {
23006
+ name: string;
23007
+ };
22970
23008
  automationQueueId?: string | null | undefined;
22971
23009
  };
22972
23010
  platformMessageId: string;
@@ -23870,6 +23908,9 @@ export declare const mainFeedContract: {
23870
23908
  deletedAt: Date | null;
23871
23909
  isActive: boolean;
23872
23910
  };
23911
+ resumeLabel: {
23912
+ name: string;
23913
+ };
23873
23914
  automationQueueId?: string | null | undefined;
23874
23915
  };
23875
23916
  platformMessageId: string;
@@ -24635,6 +24676,9 @@ export declare const mainFeedContract: {
24635
24676
  deletedAt: Date | null;
24636
24677
  isActive: boolean;
24637
24678
  };
24679
+ resumeLabel: {
24680
+ name: string;
24681
+ };
24638
24682
  automationQueueId?: string | null | undefined;
24639
24683
  };
24640
24684
  platformMessageId: string;
@@ -25540,6 +25584,9 @@ export declare const mainFeedContract: {
25540
25584
  deletedAt: Date | null;
25541
25585
  isActive: boolean;
25542
25586
  };
25587
+ resumeLabel: {
25588
+ name: string;
25589
+ };
25543
25590
  automationQueueId?: string | null | undefined;
25544
25591
  };
25545
25592
  platformMessageId: string;
@@ -26305,6 +26352,9 @@ export declare const mainFeedContract: {
26305
26352
  deletedAt: Date | null;
26306
26353
  isActive: boolean;
26307
26354
  };
26355
+ resumeLabel: {
26356
+ name: string;
26357
+ };
26308
26358
  automationQueueId?: string | null | undefined;
26309
26359
  };
26310
26360
  platformMessageId: string;
@@ -27214,6 +27264,9 @@ export declare const mainFeedContract: {
27214
27264
  deletedAt: Date | null;
27215
27265
  isActive: boolean;
27216
27266
  };
27267
+ resumeLabel: {
27268
+ name: string;
27269
+ };
27217
27270
  automationQueueId?: string | null | undefined;
27218
27271
  };
27219
27272
  platformMessageId: string;
@@ -27979,6 +28032,9 @@ export declare const mainFeedContract: {
27979
28032
  deletedAt: Date | null;
27980
28033
  isActive: boolean;
27981
28034
  };
28035
+ resumeLabel: {
28036
+ name: string;
28037
+ };
27982
28038
  automationQueueId?: string | null | undefined;
27983
28039
  };
27984
28040
  platformMessageId: string;
@@ -31115,6 +31171,13 @@ export declare const mainChatRoomContract: {
31115
31171
  isActive: boolean;
31116
31172
  }>;
31117
31173
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
31174
+ resumeLabel: z.ZodObject<{
31175
+ name: z.ZodString;
31176
+ }, "strip", z.ZodTypeAny, {
31177
+ name: string;
31178
+ }, {
31179
+ name: string;
31180
+ }>;
31118
31181
  }, "strip", z.ZodTypeAny, {
31119
31182
  id: string;
31120
31183
  channel: {
@@ -31547,6 +31610,9 @@ export declare const mainChatRoomContract: {
31547
31610
  deletedAt: Date | null;
31548
31611
  isActive: boolean;
31549
31612
  };
31613
+ resumeLabel: {
31614
+ name: string;
31615
+ };
31550
31616
  automationQueueId?: string | null | undefined;
31551
31617
  }, {
31552
31618
  id: string;
@@ -31980,8 +32046,12 @@ export declare const mainChatRoomContract: {
31980
32046
  deletedAt: Date | null;
31981
32047
  isActive: boolean;
31982
32048
  };
32049
+ resumeLabel: {
32050
+ name: string;
32051
+ };
31983
32052
  automationQueueId?: string | null | undefined;
31984
32053
  }>, "many">;
32054
+ showResumeLabel: z.ZodBoolean;
31985
32055
  unreadCountsByAssignee: z.ZodArray<z.ZodObject<{
31986
32056
  assigneeId: z.ZodString;
31987
32057
  totalUnreadCount: z.ZodNumber;
@@ -32425,12 +32495,16 @@ export declare const mainChatRoomContract: {
32425
32495
  deletedAt: Date | null;
32426
32496
  isActive: boolean;
32427
32497
  };
32498
+ resumeLabel: {
32499
+ name: string;
32500
+ };
32428
32501
  automationQueueId?: string | null | undefined;
32429
32502
  }[];
32430
32503
  total: number;
32431
32504
  page: number;
32432
32505
  pageSize: number;
32433
32506
  requestId: string;
32507
+ showResumeLabel: boolean;
32434
32508
  unreadCountsByAssignee: {
32435
32509
  assigneeId: string;
32436
32510
  totalUnreadCount: number;
@@ -32868,12 +32942,16 @@ export declare const mainChatRoomContract: {
32868
32942
  deletedAt: Date | null;
32869
32943
  isActive: boolean;
32870
32944
  };
32945
+ resumeLabel: {
32946
+ name: string;
32947
+ };
32871
32948
  automationQueueId?: string | null | undefined;
32872
32949
  }[];
32873
32950
  total: number;
32874
32951
  page: number;
32875
32952
  pageSize: number;
32876
32953
  requestId: string;
32954
+ showResumeLabel: boolean;
32877
32955
  unreadCountsByAssignee: {
32878
32956
  assigneeId: string;
32879
32957
  totalUnreadCount: number;
@@ -35533,6 +35611,13 @@ export declare const mainChatRoomContract: {
35533
35611
  isActive: boolean;
35534
35612
  }>;
35535
35613
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
35614
+ resumeLabel: z.ZodObject<{
35615
+ name: z.ZodString;
35616
+ }, "strip", z.ZodTypeAny, {
35617
+ name: string;
35618
+ }, {
35619
+ name: string;
35620
+ }>;
35536
35621
  }, "strip", z.ZodTypeAny, {
35537
35622
  id: string;
35538
35623
  channel: {
@@ -35965,6 +36050,9 @@ export declare const mainChatRoomContract: {
35965
36050
  deletedAt: Date | null;
35966
36051
  isActive: boolean;
35967
36052
  };
36053
+ resumeLabel: {
36054
+ name: string;
36055
+ };
35968
36056
  automationQueueId?: string | null | undefined;
35969
36057
  }, {
35970
36058
  id: string;
@@ -36398,8 +36486,12 @@ export declare const mainChatRoomContract: {
36398
36486
  deletedAt: Date | null;
36399
36487
  isActive: boolean;
36400
36488
  };
36489
+ resumeLabel: {
36490
+ name: string;
36491
+ };
36401
36492
  automationQueueId?: string | null | undefined;
36402
36493
  }>;
36494
+ showResumeLabel: z.ZodBoolean;
36403
36495
  latestIncomingMessage: z.ZodObject<{
36404
36496
  message: z.ZodString;
36405
36497
  direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
@@ -36919,8 +37011,12 @@ export declare const mainChatRoomContract: {
36919
37011
  deletedAt: Date | null;
36920
37012
  isActive: boolean;
36921
37013
  };
37014
+ resumeLabel: {
37015
+ name: string;
37016
+ };
36922
37017
  automationQueueId?: string | null | undefined;
36923
37018
  };
37019
+ showResumeLabel: boolean;
36924
37020
  latestIncomingMessage: {
36925
37021
  type: string;
36926
37022
  message: string;
@@ -37384,8 +37480,12 @@ export declare const mainChatRoomContract: {
37384
37480
  deletedAt: Date | null;
37385
37481
  isActive: boolean;
37386
37482
  };
37483
+ resumeLabel: {
37484
+ name: string;
37485
+ };
37387
37486
  automationQueueId?: string | null | undefined;
37388
37487
  };
37488
+ showResumeLabel: boolean;
37389
37489
  latestIncomingMessage: {
37390
37490
  type: string;
37391
37491
  message: string;
@@ -37851,8 +37951,12 @@ export declare const mainChatRoomContract: {
37851
37951
  deletedAt: Date | null;
37852
37952
  isActive: boolean;
37853
37953
  };
37954
+ resumeLabel: {
37955
+ name: string;
37956
+ };
37854
37957
  automationQueueId?: string | null | undefined;
37855
37958
  };
37959
+ showResumeLabel: boolean;
37856
37960
  latestIncomingMessage: {
37857
37961
  type: string;
37858
37962
  message: string;
@@ -38319,8 +38423,12 @@ export declare const mainChatRoomContract: {
38319
38423
  deletedAt: Date | null;
38320
38424
  isActive: boolean;
38321
38425
  };
38426
+ resumeLabel: {
38427
+ name: string;
38428
+ };
38322
38429
  automationQueueId?: string | null | undefined;
38323
38430
  };
38431
+ showResumeLabel: boolean;
38324
38432
  latestIncomingMessage: {
38325
38433
  type: string;
38326
38434
  message: string;
@@ -41010,6 +41118,13 @@ export declare const mainChatRoomContract: {
41010
41118
  isActive: boolean;
41011
41119
  }>;
41012
41120
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
41121
+ resumeLabel: z.ZodObject<{
41122
+ name: z.ZodString;
41123
+ }, "strip", z.ZodTypeAny, {
41124
+ name: string;
41125
+ }, {
41126
+ name: string;
41127
+ }>;
41013
41128
  solveMessage: z.ZodString;
41014
41129
  }, "strip", z.ZodTypeAny, {
41015
41130
  id: string;
@@ -41443,6 +41558,9 @@ export declare const mainChatRoomContract: {
41443
41558
  deletedAt: Date | null;
41444
41559
  isActive: boolean;
41445
41560
  };
41561
+ resumeLabel: {
41562
+ name: string;
41563
+ };
41446
41564
  solveMessage: string;
41447
41565
  automationQueueId?: string | null | undefined;
41448
41566
  }, {
@@ -41877,6 +41995,9 @@ export declare const mainChatRoomContract: {
41877
41995
  deletedAt: Date | null;
41878
41996
  isActive: boolean;
41879
41997
  };
41998
+ resumeLabel: {
41999
+ name: string;
42000
+ };
41880
42001
  solveMessage: string;
41881
42002
  automationQueueId?: string | null | undefined;
41882
42003
  }>;
@@ -42313,6 +42434,9 @@ export declare const mainChatRoomContract: {
42313
42434
  deletedAt: Date | null;
42314
42435
  isActive: boolean;
42315
42436
  };
42437
+ resumeLabel: {
42438
+ name: string;
42439
+ };
42316
42440
  solveMessage: string;
42317
42441
  automationQueueId?: string | null | undefined;
42318
42442
  };
@@ -42750,6 +42874,9 @@ export declare const mainChatRoomContract: {
42750
42874
  deletedAt: Date | null;
42751
42875
  isActive: boolean;
42752
42876
  };
42877
+ resumeLabel: {
42878
+ name: string;
42879
+ };
42753
42880
  solveMessage: string;
42754
42881
  automationQueueId?: string | null | undefined;
42755
42882
  };
@@ -45409,6 +45536,13 @@ export declare const mainChatRoomContract: {
45409
45536
  isActive: boolean;
45410
45537
  }>;
45411
45538
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
45539
+ resumeLabel: z.ZodObject<{
45540
+ name: z.ZodString;
45541
+ }, "strip", z.ZodTypeAny, {
45542
+ name: string;
45543
+ }, {
45544
+ name: string;
45545
+ }>;
45412
45546
  contact: z.ZodObject<{
45413
45547
  id: z.ZodString;
45414
45548
  createdAt: z.ZodDate;
@@ -46724,6 +46858,9 @@ export declare const mainChatRoomContract: {
46724
46858
  deletedAt: Date | null;
46725
46859
  isActive: boolean;
46726
46860
  };
46861
+ resumeLabel: {
46862
+ name: string;
46863
+ };
46727
46864
  openMessage: string;
46728
46865
  automationQueueId?: string | null | undefined;
46729
46866
  }, {
@@ -47270,6 +47407,9 @@ export declare const mainChatRoomContract: {
47270
47407
  deletedAt: Date | null;
47271
47408
  isActive: boolean;
47272
47409
  };
47410
+ resumeLabel: {
47411
+ name: string;
47412
+ };
47273
47413
  openMessage: string;
47274
47414
  automationQueueId?: string | null | undefined;
47275
47415
  }>;
@@ -47818,6 +47958,9 @@ export declare const mainChatRoomContract: {
47818
47958
  deletedAt: Date | null;
47819
47959
  isActive: boolean;
47820
47960
  };
47961
+ resumeLabel: {
47962
+ name: string;
47963
+ };
47821
47964
  openMessage: string;
47822
47965
  automationQueueId?: string | null | undefined;
47823
47966
  };
@@ -48367,6 +48510,9 @@ export declare const mainChatRoomContract: {
48367
48510
  deletedAt: Date | null;
48368
48511
  isActive: boolean;
48369
48512
  };
48513
+ resumeLabel: {
48514
+ name: string;
48515
+ };
48370
48516
  openMessage: string;
48371
48517
  automationQueueId?: string | null | undefined;
48372
48518
  };
@@ -51016,6 +51162,13 @@ export declare const mainChatRoomContract: {
51016
51162
  isActive: boolean;
51017
51163
  }>;
51018
51164
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
51165
+ resumeLabel: z.ZodObject<{
51166
+ name: z.ZodString;
51167
+ }, "strip", z.ZodTypeAny, {
51168
+ name: string;
51169
+ }, {
51170
+ name: string;
51171
+ }>;
51019
51172
  description: z.ZodNullable<z.ZodString>;
51020
51173
  }, "strip", z.ZodTypeAny, {
51021
51174
  id: string;
@@ -51450,6 +51603,9 @@ export declare const mainChatRoomContract: {
51450
51603
  deletedAt: Date | null;
51451
51604
  isActive: boolean;
51452
51605
  };
51606
+ resumeLabel: {
51607
+ name: string;
51608
+ };
51453
51609
  automationQueueId?: string | null | undefined;
51454
51610
  }, {
51455
51611
  id: string;
@@ -51884,6 +52040,9 @@ export declare const mainChatRoomContract: {
51884
52040
  deletedAt: Date | null;
51885
52041
  isActive: boolean;
51886
52042
  };
52043
+ resumeLabel: {
52044
+ name: string;
52045
+ };
51887
52046
  automationQueueId?: string | null | undefined;
51888
52047
  }>;
51889
52048
  }, "strip", z.ZodTypeAny, {
@@ -52320,6 +52479,9 @@ export declare const mainChatRoomContract: {
52320
52479
  deletedAt: Date | null;
52321
52480
  isActive: boolean;
52322
52481
  };
52482
+ resumeLabel: {
52483
+ name: string;
52484
+ };
52323
52485
  automationQueueId?: string | null | undefined;
52324
52486
  };
52325
52487
  requestId: string;
@@ -52757,6 +52919,9 @@ export declare const mainChatRoomContract: {
52757
52919
  deletedAt: Date | null;
52758
52920
  isActive: boolean;
52759
52921
  };
52922
+ resumeLabel: {
52923
+ name: string;
52924
+ };
52760
52925
  automationQueueId?: string | null | undefined;
52761
52926
  };
52762
52927
  requestId: string;
@@ -55418,6 +55583,13 @@ export declare const mainChatRoomContract: {
55418
55583
  deletedAt: Date | null;
55419
55584
  isActive: boolean;
55420
55585
  }>;
55586
+ resumeLabel: z.ZodObject<{
55587
+ name: z.ZodString;
55588
+ }, "strip", z.ZodTypeAny, {
55589
+ name: string;
55590
+ }, {
55591
+ name: string;
55592
+ }>;
55421
55593
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
55422
55594
  }, "strip", z.ZodTypeAny, {
55423
55595
  id: string;
@@ -55851,6 +56023,9 @@ export declare const mainChatRoomContract: {
55851
56023
  deletedAt: Date | null;
55852
56024
  isActive: boolean;
55853
56025
  };
56026
+ resumeLabel: {
56027
+ name: string;
56028
+ };
55854
56029
  automationQueueId?: string | null | undefined;
55855
56030
  }, {
55856
56031
  id: string;
@@ -56284,6 +56459,9 @@ export declare const mainChatRoomContract: {
56284
56459
  deletedAt: Date | null;
56285
56460
  isActive: boolean;
56286
56461
  };
56462
+ resumeLabel: {
56463
+ name: string;
56464
+ };
56287
56465
  automationQueueId?: string | null | undefined;
56288
56466
  }>, "many">;
56289
56467
  }, "strip", z.ZodTypeAny, {
@@ -56719,6 +56897,9 @@ export declare const mainChatRoomContract: {
56719
56897
  deletedAt: Date | null;
56720
56898
  isActive: boolean;
56721
56899
  };
56900
+ resumeLabel: {
56901
+ name: string;
56902
+ };
56722
56903
  automationQueueId?: string | null | undefined;
56723
56904
  }[];
56724
56905
  total: number;
@@ -57158,6 +57339,9 @@ export declare const mainChatRoomContract: {
57158
57339
  deletedAt: Date | null;
57159
57340
  isActive: boolean;
57160
57341
  };
57342
+ resumeLabel: {
57343
+ name: string;
57344
+ };
57161
57345
  automationQueueId?: string | null | undefined;
57162
57346
  }[];
57163
57347
  total: number;
@@ -60673,6 +60857,13 @@ export declare const mainChatContract: {
60673
60857
  isActive: boolean;
60674
60858
  }>;
60675
60859
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
60860
+ resumeLabel: z.ZodObject<{
60861
+ name: z.ZodString;
60862
+ }, "strip", z.ZodTypeAny, {
60863
+ name: string;
60864
+ }, {
60865
+ name: string;
60866
+ }>;
60676
60867
  }, "strip", z.ZodTypeAny, {
60677
60868
  id: string;
60678
60869
  channel: {
@@ -61105,6 +61296,9 @@ export declare const mainChatContract: {
61105
61296
  deletedAt: Date | null;
61106
61297
  isActive: boolean;
61107
61298
  };
61299
+ resumeLabel: {
61300
+ name: string;
61301
+ };
61108
61302
  automationQueueId?: string | null | undefined;
61109
61303
  }, {
61110
61304
  id: string;
@@ -61538,6 +61732,9 @@ export declare const mainChatContract: {
61538
61732
  deletedAt: Date | null;
61539
61733
  isActive: boolean;
61540
61734
  };
61735
+ resumeLabel: {
61736
+ name: string;
61737
+ };
61541
61738
  automationQueueId?: string | null | undefined;
61542
61739
  }>;
61543
61740
  platformMessageId: z.ZodString;
@@ -65394,6 +65591,13 @@ export declare const mainChatContract: {
65394
65591
  isActive: boolean;
65395
65592
  }>;
65396
65593
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
65594
+ resumeLabel: z.ZodObject<{
65595
+ name: z.ZodString;
65596
+ }, "strip", z.ZodTypeAny, {
65597
+ name: string;
65598
+ }, {
65599
+ name: string;
65600
+ }>;
65397
65601
  }, "strip", z.ZodTypeAny, {
65398
65602
  id: string;
65399
65603
  channel: {
@@ -65826,6 +66030,9 @@ export declare const mainChatContract: {
65826
66030
  deletedAt: Date | null;
65827
66031
  isActive: boolean;
65828
66032
  };
66033
+ resumeLabel: {
66034
+ name: string;
66035
+ };
65829
66036
  automationQueueId?: string | null | undefined;
65830
66037
  }, {
65831
66038
  id: string;
@@ -66259,6 +66466,9 @@ export declare const mainChatContract: {
66259
66466
  deletedAt: Date | null;
66260
66467
  isActive: boolean;
66261
66468
  };
66469
+ resumeLabel: {
66470
+ name: string;
66471
+ };
66262
66472
  automationQueueId?: string | null | undefined;
66263
66473
  }>;
66264
66474
  upload: z.ZodObject<{
@@ -68465,6 +68675,9 @@ export declare const mainChatContract: {
68465
68675
  deletedAt: Date | null;
68466
68676
  isActive: boolean;
68467
68677
  };
68678
+ resumeLabel: {
68679
+ name: string;
68680
+ };
68468
68681
  automationQueueId?: string | null | undefined;
68469
68682
  };
68470
68683
  platformMessageId: string;
@@ -69235,6 +69448,9 @@ export declare const mainChatContract: {
69235
69448
  deletedAt: Date | null;
69236
69449
  isActive: boolean;
69237
69450
  };
69451
+ resumeLabel: {
69452
+ name: string;
69453
+ };
69238
69454
  automationQueueId?: string | null | undefined;
69239
69455
  };
69240
69456
  platformMessageId: string;
@@ -70006,6 +70222,9 @@ export declare const mainChatContract: {
70006
70222
  deletedAt: Date | null;
70007
70223
  isActive: boolean;
70008
70224
  };
70225
+ resumeLabel: {
70226
+ name: string;
70227
+ };
70009
70228
  automationQueueId?: string | null | undefined;
70010
70229
  };
70011
70230
  platformMessageId: string;
@@ -70776,6 +70995,9 @@ export declare const mainChatContract: {
70776
70995
  deletedAt: Date | null;
70777
70996
  isActive: boolean;
70778
70997
  };
70998
+ resumeLabel: {
70999
+ name: string;
71000
+ };
70779
71001
  automationQueueId?: string | null | undefined;
70780
71002
  };
70781
71003
  platformMessageId: string;
@@ -71547,6 +71769,9 @@ export declare const mainChatContract: {
71547
71769
  deletedAt: Date | null;
71548
71770
  isActive: boolean;
71549
71771
  };
71772
+ resumeLabel: {
71773
+ name: string;
71774
+ };
71550
71775
  automationQueueId?: string | null | undefined;
71551
71776
  };
71552
71777
  platformMessageId: string;
@@ -72317,6 +72542,9 @@ export declare const mainChatContract: {
72317
72542
  deletedAt: Date | null;
72318
72543
  isActive: boolean;
72319
72544
  };
72545
+ resumeLabel: {
72546
+ name: string;
72547
+ };
72320
72548
  automationQueueId?: string | null | undefined;
72321
72549
  };
72322
72550
  platformMessageId: string;
@@ -73090,6 +73318,9 @@ export declare const mainChatContract: {
73090
73318
  deletedAt: Date | null;
73091
73319
  isActive: boolean;
73092
73320
  };
73321
+ resumeLabel: {
73322
+ name: string;
73323
+ };
73093
73324
  automationQueueId?: string | null | undefined;
73094
73325
  };
73095
73326
  platformMessageId: string;
@@ -73860,6 +74091,9 @@ export declare const mainChatContract: {
73860
74091
  deletedAt: Date | null;
73861
74092
  isActive: boolean;
73862
74093
  };
74094
+ resumeLabel: {
74095
+ name: string;
74096
+ };
73863
74097
  automationQueueId?: string | null | undefined;
73864
74098
  };
73865
74099
  platformMessageId: string;
@@ -74634,6 +74868,9 @@ export declare const mainChatContract: {
74634
74868
  deletedAt: Date | null;
74635
74869
  isActive: boolean;
74636
74870
  };
74871
+ resumeLabel: {
74872
+ name: string;
74873
+ };
74637
74874
  automationQueueId?: string | null | undefined;
74638
74875
  };
74639
74876
  platformMessageId: string;
@@ -75404,6 +75641,9 @@ export declare const mainChatContract: {
75404
75641
  deletedAt: Date | null;
75405
75642
  isActive: boolean;
75406
75643
  };
75644
+ resumeLabel: {
75645
+ name: string;
75646
+ };
75407
75647
  automationQueueId?: string | null | undefined;
75408
75648
  };
75409
75649
  platformMessageId: string;
@@ -78879,6 +79119,13 @@ export declare const mainChatContract: {
78879
79119
  isActive: boolean;
78880
79120
  }>;
78881
79121
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
79122
+ resumeLabel: z.ZodObject<{
79123
+ name: z.ZodString;
79124
+ }, "strip", z.ZodTypeAny, {
79125
+ name: string;
79126
+ }, {
79127
+ name: string;
79128
+ }>;
78882
79129
  }, "strip", z.ZodTypeAny, {
78883
79130
  id: string;
78884
79131
  channel: {
@@ -79311,6 +79558,9 @@ export declare const mainChatContract: {
79311
79558
  deletedAt: Date | null;
79312
79559
  isActive: boolean;
79313
79560
  };
79561
+ resumeLabel: {
79562
+ name: string;
79563
+ };
79314
79564
  automationQueueId?: string | null | undefined;
79315
79565
  }, {
79316
79566
  id: string;
@@ -79744,6 +79994,9 @@ export declare const mainChatContract: {
79744
79994
  deletedAt: Date | null;
79745
79995
  isActive: boolean;
79746
79996
  };
79997
+ resumeLabel: {
79998
+ name: string;
79999
+ };
79747
80000
  automationQueueId?: string | null | undefined;
79748
80001
  }>;
79749
80002
  platformMessageId: z.ZodString;
@@ -83933,6 +84186,9 @@ export declare const mainChatContract: {
83933
84186
  deletedAt: Date | null;
83934
84187
  isActive: boolean;
83935
84188
  };
84189
+ resumeLabel: {
84190
+ name: string;
84191
+ };
83936
84192
  automationQueueId?: string | null | undefined;
83937
84193
  };
83938
84194
  platformMessageId: string;
@@ -84993,6 +85249,9 @@ export declare const mainChatContract: {
84993
85249
  deletedAt: Date | null;
84994
85250
  isActive: boolean;
84995
85251
  };
85252
+ resumeLabel: {
85253
+ name: string;
85254
+ };
84996
85255
  automationQueueId?: string | null | undefined;
84997
85256
  };
84998
85257
  platformMessageId: string;
@@ -86055,6 +86314,9 @@ export declare const mainChatContract: {
86055
86314
  deletedAt: Date | null;
86056
86315
  isActive: boolean;
86057
86316
  };
86317
+ resumeLabel: {
86318
+ name: string;
86319
+ };
86058
86320
  automationQueueId?: string | null | undefined;
86059
86321
  };
86060
86322
  platformMessageId: string;
@@ -87121,6 +87383,9 @@ export declare const mainChatContract: {
87121
87383
  deletedAt: Date | null;
87122
87384
  isActive: boolean;
87123
87385
  };
87386
+ resumeLabel: {
87387
+ name: string;
87388
+ };
87124
87389
  automationQueueId?: string | null | undefined;
87125
87390
  };
87126
87391
  platformMessageId: string;
@@ -90294,6 +90559,13 @@ export declare const mainChatContract: {
90294
90559
  isActive: boolean;
90295
90560
  }>;
90296
90561
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
90562
+ resumeLabel: z.ZodObject<{
90563
+ name: z.ZodString;
90564
+ }, "strip", z.ZodTypeAny, {
90565
+ name: string;
90566
+ }, {
90567
+ name: string;
90568
+ }>;
90297
90569
  }, "strip", z.ZodTypeAny, {
90298
90570
  id: string;
90299
90571
  channel: {
@@ -90726,6 +90998,9 @@ export declare const mainChatContract: {
90726
90998
  deletedAt: Date | null;
90727
90999
  isActive: boolean;
90728
91000
  };
91001
+ resumeLabel: {
91002
+ name: string;
91003
+ };
90729
91004
  automationQueueId?: string | null | undefined;
90730
91005
  }, {
90731
91006
  id: string;
@@ -91159,6 +91434,9 @@ export declare const mainChatContract: {
91159
91434
  deletedAt: Date | null;
91160
91435
  isActive: boolean;
91161
91436
  };
91437
+ resumeLabel: {
91438
+ name: string;
91439
+ };
91162
91440
  automationQueueId?: string | null | undefined;
91163
91441
  }>, "many">;
91164
91442
  }, "strip", z.ZodTypeAny, {
@@ -91594,6 +91872,9 @@ export declare const mainChatContract: {
91594
91872
  deletedAt: Date | null;
91595
91873
  isActive: boolean;
91596
91874
  };
91875
+ resumeLabel: {
91876
+ name: string;
91877
+ };
91597
91878
  automationQueueId?: string | null | undefined;
91598
91879
  }[];
91599
91880
  requestId: string;
@@ -92030,6 +92311,9 @@ export declare const mainChatContract: {
92030
92311
  deletedAt: Date | null;
92031
92312
  isActive: boolean;
92032
92313
  };
92314
+ resumeLabel: {
92315
+ name: string;
92316
+ };
92033
92317
  automationQueueId?: string | null | undefined;
92034
92318
  }[];
92035
92319
  requestId: string;
@@ -94693,6 +94977,13 @@ export declare const mainChatContract: {
94693
94977
  isActive: boolean;
94694
94978
  }>;
94695
94979
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
94980
+ resumeLabel: z.ZodObject<{
94981
+ name: z.ZodString;
94982
+ }, "strip", z.ZodTypeAny, {
94983
+ name: string;
94984
+ }, {
94985
+ name: string;
94986
+ }>;
94696
94987
  }, "strip", z.ZodTypeAny, {
94697
94988
  id: string;
94698
94989
  channel: {
@@ -95125,6 +95416,9 @@ export declare const mainChatContract: {
95125
95416
  deletedAt: Date | null;
95126
95417
  isActive: boolean;
95127
95418
  };
95419
+ resumeLabel: {
95420
+ name: string;
95421
+ };
95128
95422
  automationQueueId?: string | null | undefined;
95129
95423
  }, {
95130
95424
  id: string;
@@ -95558,6 +95852,9 @@ export declare const mainChatContract: {
95558
95852
  deletedAt: Date | null;
95559
95853
  isActive: boolean;
95560
95854
  };
95855
+ resumeLabel: {
95856
+ name: string;
95857
+ };
95561
95858
  automationQueueId?: string | null | undefined;
95562
95859
  }>;
95563
95860
  }, "strip", z.ZodTypeAny, {
@@ -95993,6 +96290,9 @@ export declare const mainChatContract: {
95993
96290
  deletedAt: Date | null;
95994
96291
  isActive: boolean;
95995
96292
  };
96293
+ resumeLabel: {
96294
+ name: string;
96295
+ };
95996
96296
  automationQueueId?: string | null | undefined;
95997
96297
  };
95998
96298
  requestId: string;
@@ -96429,6 +96729,9 @@ export declare const mainChatContract: {
96429
96729
  deletedAt: Date | null;
96430
96730
  isActive: boolean;
96431
96731
  };
96732
+ resumeLabel: {
96733
+ name: string;
96734
+ };
96432
96735
  automationQueueId?: string | null | undefined;
96433
96736
  };
96434
96737
  requestId: string;
@@ -100153,6 +100456,13 @@ export declare const mainChatContract: {
100153
100456
  isActive: boolean;
100154
100457
  }>;
100155
100458
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
100459
+ resumeLabel: z.ZodObject<{
100460
+ name: z.ZodString;
100461
+ }, "strip", z.ZodTypeAny, {
100462
+ name: string;
100463
+ }, {
100464
+ name: string;
100465
+ }>;
100156
100466
  }, "strip", z.ZodTypeAny, {
100157
100467
  id: string;
100158
100468
  channel: {
@@ -100585,6 +100895,9 @@ export declare const mainChatContract: {
100585
100895
  deletedAt: Date | null;
100586
100896
  isActive: boolean;
100587
100897
  };
100898
+ resumeLabel: {
100899
+ name: string;
100900
+ };
100588
100901
  automationQueueId?: string | null | undefined;
100589
100902
  }, {
100590
100903
  id: string;
@@ -101018,6 +101331,9 @@ export declare const mainChatContract: {
101018
101331
  deletedAt: Date | null;
101019
101332
  isActive: boolean;
101020
101333
  };
101334
+ resumeLabel: {
101335
+ name: string;
101336
+ };
101021
101337
  automationQueueId?: string | null | undefined;
101022
101338
  }>;
101023
101339
  }, "strip", z.ZodTypeAny, {
@@ -101453,6 +101769,9 @@ export declare const mainChatContract: {
101453
101769
  deletedAt: Date | null;
101454
101770
  isActive: boolean;
101455
101771
  };
101772
+ resumeLabel: {
101773
+ name: string;
101774
+ };
101456
101775
  automationQueueId?: string | null | undefined;
101457
101776
  };
101458
101777
  requestId: string;
@@ -101889,6 +102208,9 @@ export declare const mainChatContract: {
101889
102208
  deletedAt: Date | null;
101890
102209
  isActive: boolean;
101891
102210
  };
102211
+ resumeLabel: {
102212
+ name: string;
102213
+ };
101892
102214
  automationQueueId?: string | null | undefined;
101893
102215
  };
101894
102216
  requestId: string;
@@ -104579,6 +104901,13 @@ export declare const initiateMessageContract: {
104579
104901
  isActive: boolean;
104580
104902
  }>;
104581
104903
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
104904
+ resumeLabel: z.ZodObject<{
104905
+ name: z.ZodString;
104906
+ }, "strip", z.ZodTypeAny, {
104907
+ name: string;
104908
+ }, {
104909
+ name: string;
104910
+ }>;
104582
104911
  }, "strip", z.ZodTypeAny, {
104583
104912
  id: string;
104584
104913
  channel: {
@@ -105011,6 +105340,9 @@ export declare const initiateMessageContract: {
105011
105340
  deletedAt: Date | null;
105012
105341
  isActive: boolean;
105013
105342
  };
105343
+ resumeLabel: {
105344
+ name: string;
105345
+ };
105014
105346
  automationQueueId?: string | null | undefined;
105015
105347
  }, {
105016
105348
  id: string;
@@ -105444,6 +105776,9 @@ export declare const initiateMessageContract: {
105444
105776
  deletedAt: Date | null;
105445
105777
  isActive: boolean;
105446
105778
  };
105779
+ resumeLabel: {
105780
+ name: string;
105781
+ };
105447
105782
  automationQueueId?: string | null | undefined;
105448
105783
  }>;
105449
105784
  upload: z.ZodObject<{
@@ -107650,6 +107985,9 @@ export declare const initiateMessageContract: {
107650
107985
  deletedAt: Date | null;
107651
107986
  isActive: boolean;
107652
107987
  };
107988
+ resumeLabel: {
107989
+ name: string;
107990
+ };
107653
107991
  automationQueueId?: string | null | undefined;
107654
107992
  };
107655
107993
  platformMessageId: string;
@@ -108420,6 +108758,9 @@ export declare const initiateMessageContract: {
108420
108758
  deletedAt: Date | null;
108421
108759
  isActive: boolean;
108422
108760
  };
108761
+ resumeLabel: {
108762
+ name: string;
108763
+ };
108423
108764
  automationQueueId?: string | null | undefined;
108424
108765
  };
108425
108766
  platformMessageId: string;
@@ -109192,6 +109533,9 @@ export declare const initiateMessageContract: {
109192
109533
  deletedAt: Date | null;
109193
109534
  isActive: boolean;
109194
109535
  };
109536
+ resumeLabel: {
109537
+ name: string;
109538
+ };
109195
109539
  automationQueueId?: string | null | undefined;
109196
109540
  };
109197
109541
  platformMessageId: string;
@@ -109965,6 +110309,9 @@ export declare const initiateMessageContract: {
109965
110309
  deletedAt: Date | null;
109966
110310
  isActive: boolean;
109967
110311
  };
110312
+ resumeLabel: {
110313
+ name: string;
110314
+ };
109968
110315
  automationQueueId?: string | null | undefined;
109969
110316
  };
109970
110317
  platformMessageId: string;
@@ -113724,6 +114071,13 @@ export declare const mainChatMessageContract: {
113724
114071
  isActive: boolean;
113725
114072
  }>;
113726
114073
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
114074
+ resumeLabel: z.ZodObject<{
114075
+ name: z.ZodString;
114076
+ }, "strip", z.ZodTypeAny, {
114077
+ name: string;
114078
+ }, {
114079
+ name: string;
114080
+ }>;
113727
114081
  }, "strip", z.ZodTypeAny, {
113728
114082
  id: string;
113729
114083
  channel: {
@@ -114156,6 +114510,9 @@ export declare const mainChatMessageContract: {
114156
114510
  deletedAt: Date | null;
114157
114511
  isActive: boolean;
114158
114512
  };
114513
+ resumeLabel: {
114514
+ name: string;
114515
+ };
114159
114516
  automationQueueId?: string | null | undefined;
114160
114517
  }, {
114161
114518
  id: string;
@@ -114589,6 +114946,9 @@ export declare const mainChatMessageContract: {
114589
114946
  deletedAt: Date | null;
114590
114947
  isActive: boolean;
114591
114948
  };
114949
+ resumeLabel: {
114950
+ name: string;
114951
+ };
114592
114952
  automationQueueId?: string | null | undefined;
114593
114953
  }>;
114594
114954
  platformMessageId: z.ZodString;
@@ -118445,6 +118805,13 @@ export declare const mainChatMessageContract: {
118445
118805
  isActive: boolean;
118446
118806
  }>;
118447
118807
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
118808
+ resumeLabel: z.ZodObject<{
118809
+ name: z.ZodString;
118810
+ }, "strip", z.ZodTypeAny, {
118811
+ name: string;
118812
+ }, {
118813
+ name: string;
118814
+ }>;
118448
118815
  }, "strip", z.ZodTypeAny, {
118449
118816
  id: string;
118450
118817
  channel: {
@@ -118877,6 +119244,9 @@ export declare const mainChatMessageContract: {
118877
119244
  deletedAt: Date | null;
118878
119245
  isActive: boolean;
118879
119246
  };
119247
+ resumeLabel: {
119248
+ name: string;
119249
+ };
118880
119250
  automationQueueId?: string | null | undefined;
118881
119251
  }, {
118882
119252
  id: string;
@@ -119310,6 +119680,9 @@ export declare const mainChatMessageContract: {
119310
119680
  deletedAt: Date | null;
119311
119681
  isActive: boolean;
119312
119682
  };
119683
+ resumeLabel: {
119684
+ name: string;
119685
+ };
119313
119686
  automationQueueId?: string | null | undefined;
119314
119687
  }>;
119315
119688
  upload: z.ZodObject<{
@@ -121516,6 +121889,9 @@ export declare const mainChatMessageContract: {
121516
121889
  deletedAt: Date | null;
121517
121890
  isActive: boolean;
121518
121891
  };
121892
+ resumeLabel: {
121893
+ name: string;
121894
+ };
121519
121895
  automationQueueId?: string | null | undefined;
121520
121896
  };
121521
121897
  platformMessageId: string;
@@ -122286,6 +122662,9 @@ export declare const mainChatMessageContract: {
122286
122662
  deletedAt: Date | null;
122287
122663
  isActive: boolean;
122288
122664
  };
122665
+ resumeLabel: {
122666
+ name: string;
122667
+ };
122289
122668
  automationQueueId?: string | null | undefined;
122290
122669
  };
122291
122670
  platformMessageId: string;
@@ -123057,6 +123436,9 @@ export declare const mainChatMessageContract: {
123057
123436
  deletedAt: Date | null;
123058
123437
  isActive: boolean;
123059
123438
  };
123439
+ resumeLabel: {
123440
+ name: string;
123441
+ };
123060
123442
  automationQueueId?: string | null | undefined;
123061
123443
  };
123062
123444
  platformMessageId: string;
@@ -123827,6 +124209,9 @@ export declare const mainChatMessageContract: {
123827
124209
  deletedAt: Date | null;
123828
124210
  isActive: boolean;
123829
124211
  };
124212
+ resumeLabel: {
124213
+ name: string;
124214
+ };
123830
124215
  automationQueueId?: string | null | undefined;
123831
124216
  };
123832
124217
  platformMessageId: string;
@@ -124598,6 +124983,9 @@ export declare const mainChatMessageContract: {
124598
124983
  deletedAt: Date | null;
124599
124984
  isActive: boolean;
124600
124985
  };
124986
+ resumeLabel: {
124987
+ name: string;
124988
+ };
124601
124989
  automationQueueId?: string | null | undefined;
124602
124990
  };
124603
124991
  platformMessageId: string;
@@ -125368,6 +125756,9 @@ export declare const mainChatMessageContract: {
125368
125756
  deletedAt: Date | null;
125369
125757
  isActive: boolean;
125370
125758
  };
125759
+ resumeLabel: {
125760
+ name: string;
125761
+ };
125371
125762
  automationQueueId?: string | null | undefined;
125372
125763
  };
125373
125764
  platformMessageId: string;
@@ -126141,6 +126532,9 @@ export declare const mainChatMessageContract: {
126141
126532
  deletedAt: Date | null;
126142
126533
  isActive: boolean;
126143
126534
  };
126535
+ resumeLabel: {
126536
+ name: string;
126537
+ };
126144
126538
  automationQueueId?: string | null | undefined;
126145
126539
  };
126146
126540
  platformMessageId: string;
@@ -126911,6 +127305,9 @@ export declare const mainChatMessageContract: {
126911
127305
  deletedAt: Date | null;
126912
127306
  isActive: boolean;
126913
127307
  };
127308
+ resumeLabel: {
127309
+ name: string;
127310
+ };
126914
127311
  automationQueueId?: string | null | undefined;
126915
127312
  };
126916
127313
  platformMessageId: string;
@@ -127685,6 +128082,9 @@ export declare const mainChatMessageContract: {
127685
128082
  deletedAt: Date | null;
127686
128083
  isActive: boolean;
127687
128084
  };
128085
+ resumeLabel: {
128086
+ name: string;
128087
+ };
127688
128088
  automationQueueId?: string | null | undefined;
127689
128089
  };
127690
128090
  platformMessageId: string;
@@ -128455,6 +128855,9 @@ export declare const mainChatMessageContract: {
128455
128855
  deletedAt: Date | null;
128456
128856
  isActive: boolean;
128457
128857
  };
128858
+ resumeLabel: {
128859
+ name: string;
128860
+ };
128458
128861
  automationQueueId?: string | null | undefined;
128459
128862
  };
128460
128863
  platformMessageId: string;
@@ -132295,6 +132698,13 @@ export declare const mainChatMessageContract: {
132295
132698
  isActive: boolean;
132296
132699
  }>;
132297
132700
  automationQueueId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
132701
+ resumeLabel: z.ZodObject<{
132702
+ name: z.ZodString;
132703
+ }, "strip", z.ZodTypeAny, {
132704
+ name: string;
132705
+ }, {
132706
+ name: string;
132707
+ }>;
132298
132708
  }, "strip", z.ZodTypeAny, {
132299
132709
  id: string;
132300
132710
  channel: {
@@ -132727,6 +133137,9 @@ export declare const mainChatMessageContract: {
132727
133137
  deletedAt: Date | null;
132728
133138
  isActive: boolean;
132729
133139
  };
133140
+ resumeLabel: {
133141
+ name: string;
133142
+ };
132730
133143
  automationQueueId?: string | null | undefined;
132731
133144
  }, {
132732
133145
  id: string;
@@ -133160,6 +133573,9 @@ export declare const mainChatMessageContract: {
133160
133573
  deletedAt: Date | null;
133161
133574
  isActive: boolean;
133162
133575
  };
133576
+ resumeLabel: {
133577
+ name: string;
133578
+ };
133163
133579
  automationQueueId?: string | null | undefined;
133164
133580
  }>;
133165
133581
  upload: z.ZodObject<{
@@ -135366,6 +135782,9 @@ export declare const mainChatMessageContract: {
135366
135782
  deletedAt: Date | null;
135367
135783
  isActive: boolean;
135368
135784
  };
135785
+ resumeLabel: {
135786
+ name: string;
135787
+ };
135369
135788
  automationQueueId?: string | null | undefined;
135370
135789
  };
135371
135790
  platformMessageId: string;
@@ -136136,6 +136555,9 @@ export declare const mainChatMessageContract: {
136136
136555
  deletedAt: Date | null;
136137
136556
  isActive: boolean;
136138
136557
  };
136558
+ resumeLabel: {
136559
+ name: string;
136560
+ };
136139
136561
  automationQueueId?: string | null | undefined;
136140
136562
  };
136141
136563
  platformMessageId: string;
@@ -136908,6 +137330,9 @@ export declare const mainChatMessageContract: {
136908
137330
  deletedAt: Date | null;
136909
137331
  isActive: boolean;
136910
137332
  };
137333
+ resumeLabel: {
137334
+ name: string;
137335
+ };
136911
137336
  automationQueueId?: string | null | undefined;
136912
137337
  };
136913
137338
  platformMessageId: string;
@@ -137681,6 +138106,9 @@ export declare const mainChatMessageContract: {
137681
138106
  deletedAt: Date | null;
137682
138107
  isActive: boolean;
137683
138108
  };
138109
+ resumeLabel: {
138110
+ name: string;
138111
+ };
137684
138112
  automationQueueId?: string | null | undefined;
137685
138113
  };
137686
138114
  platformMessageId: string;