@kl1/contracts 1.2.26-uat → 1.2.28-uat

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 (65) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +179 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +12 -0
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +14 -0
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +3987 -298
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +1020 -129
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +608 -76
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +5414 -586
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +13 -0
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +11 -0
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/dashboard/index.d.ts +4 -4
  20. package/dist/api-contracts/src/dashboard/schema.d.ts +2 -2
  21. package/dist/api-contracts/src/facebook-feed/index.d.ts +624 -58
  22. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/schema.d.ts +12 -3
  24. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  25. package/dist/api-contracts/src/facebook-feed/validation.d.ts +7 -0
  26. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  27. package/dist/api-contracts/src/hold-label/index.d.ts +133 -2
  28. package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/hold-label/schema.d.ts +25 -0
  30. package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
  31. package/dist/api-contracts/src/hold-label/validation.d.ts +10 -0
  32. package/dist/api-contracts/src/hold-label/validation.d.ts.map +1 -1
  33. package/dist/api-contracts/src/index.d.ts +1 -0
  34. package/dist/api-contracts/src/index.d.ts.map +1 -1
  35. package/dist/api-contracts/src/instagram/index.d.ts +585 -48
  36. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/line/index.d.ts +578 -53
  38. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/line/validation.d.ts +16 -5
  40. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  41. package/dist/api-contracts/src/messenger/index.d.ts +585 -48
  42. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/messenger/validation.d.ts +7 -0
  44. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  45. package/dist/api-contracts/src/sms/index.d.ts +85 -11
  46. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/sms/schema.d.ts +22 -0
  48. package/dist/api-contracts/src/sms/schema.d.ts.map +1 -1
  49. package/dist/api-contracts/src/telegram/index.d.ts +555 -48
  50. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  51. package/dist/api-contracts/src/viber/index.d.ts +555 -48
  52. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  53. package/dist/api-contracts/src/webchat/index.d.ts +1582 -56
  54. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  55. package/dist/api-contracts/src/whatsapp/index.d.ts +569 -48
  56. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  57. package/dist/api-contracts/src/workflow-rule/index.d.ts +362 -10
  58. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  59. package/dist/entities/src/enums/chat.d.ts +3 -0
  60. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  61. package/dist/index.js +4383 -4287
  62. package/dist/index.js.map +1 -1
  63. package/dist/index.mjs +4382 -4287
  64. package/dist/index.mjs.map +1 -1
  65. package/package.json +1 -1
@@ -153,6 +153,7 @@ export declare const messengerContract: {
153
153
  channelId: z.ZodOptional<z.ZodString>;
154
154
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
155
155
  apiKey: z.ZodOptional<z.ZodString>;
156
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
156
157
  }, "strip", z.ZodTypeAny, {
157
158
  email: string;
158
159
  wabaExternalId: string;
@@ -162,6 +163,7 @@ export declare const messengerContract: {
162
163
  channelId?: string | undefined;
163
164
  status?: "active" | "pending" | undefined;
164
165
  apiKey?: string | undefined;
166
+ tier?: "basic" | "regular" | "premium" | undefined;
165
167
  }, {
166
168
  email: string;
167
169
  wabaExternalId: string;
@@ -171,6 +173,7 @@ export declare const messengerContract: {
171
173
  channelId?: string | undefined;
172
174
  status?: "active" | "pending" | undefined;
173
175
  apiKey?: string | undefined;
176
+ tier?: "basic" | "regular" | "premium" | undefined;
174
177
  }>>;
175
178
  vonageCredentials: z.ZodOptional<z.ZodObject<{
176
179
  mobileNumber: z.ZodString;
@@ -203,6 +206,7 @@ export declare const messengerContract: {
203
206
  channelId?: string | undefined;
204
207
  status?: "active" | "pending" | undefined;
205
208
  apiKey?: string | undefined;
209
+ tier?: "basic" | "regular" | "premium" | undefined;
206
210
  } | undefined;
207
211
  vonageCredentials?: {
208
212
  apiKey: string;
@@ -227,6 +231,7 @@ export declare const messengerContract: {
227
231
  channelId?: string | undefined;
228
232
  status?: "active" | "pending" | undefined;
229
233
  apiKey?: string | undefined;
234
+ tier?: "basic" | "regular" | "premium" | undefined;
230
235
  } | undefined;
231
236
  vonageCredentials?: {
232
237
  apiKey: string;
@@ -281,6 +286,7 @@ export declare const messengerContract: {
281
286
  channelId?: string | undefined;
282
287
  status?: "active" | "pending" | undefined;
283
288
  apiKey?: string | undefined;
289
+ tier?: "basic" | "regular" | "premium" | undefined;
284
290
  } | undefined;
285
291
  vonageCredentials?: {
286
292
  apiKey: string;
@@ -323,6 +329,7 @@ export declare const messengerContract: {
323
329
  channelId?: string | undefined;
324
330
  status?: "active" | "pending" | undefined;
325
331
  apiKey?: string | undefined;
332
+ tier?: "basic" | "regular" | "premium" | undefined;
326
333
  } | undefined;
327
334
  vonageCredentials?: {
328
335
  apiKey: string;
@@ -347,7 +354,7 @@ export declare const messengerContract: {
347
354
  } | undefined;
348
355
  }>;
349
356
  messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
350
- telegramBusinessConnectionId: z.ZodNullable<z.ZodString>;
357
+ telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
351
358
  }, "strip", z.ZodTypeAny, {
352
359
  id: string;
353
360
  channel: {
@@ -370,6 +377,7 @@ export declare const messengerContract: {
370
377
  channelId?: string | undefined;
371
378
  status?: "active" | "pending" | undefined;
372
379
  apiKey?: string | undefined;
380
+ tier?: "basic" | "regular" | "premium" | undefined;
373
381
  } | undefined;
374
382
  vonageCredentials?: {
375
383
  apiKey: string;
@@ -429,11 +437,11 @@ export declare const messengerContract: {
429
437
  id: string;
430
438
  email: string;
431
439
  } | null;
432
- telegramBusinessConnectionId: string | null;
433
440
  lastMessage?: string | undefined;
434
441
  handleTime?: number | undefined;
435
442
  metadata?: any;
436
443
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
444
+ telegramBusinessConnectionId?: string | null | undefined;
437
445
  }, {
438
446
  id: string;
439
447
  channel: {
@@ -456,6 +464,7 @@ export declare const messengerContract: {
456
464
  channelId?: string | undefined;
457
465
  status?: "active" | "pending" | undefined;
458
466
  apiKey?: string | undefined;
467
+ tier?: "basic" | "regular" | "premium" | undefined;
459
468
  } | undefined;
460
469
  vonageCredentials?: {
461
470
  apiKey: string;
@@ -515,17 +524,17 @@ export declare const messengerContract: {
515
524
  id: string;
516
525
  email: string;
517
526
  } | null;
518
- telegramBusinessConnectionId: string | null;
519
527
  lastMessage?: string | undefined;
520
528
  handleTime?: number | undefined;
521
529
  metadata?: any;
522
530
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
531
+ telegramBusinessConnectionId?: string | null | undefined;
523
532
  }>;
524
533
  message: z.ZodObject<{
525
534
  id: z.ZodOptional<z.ZodString>;
526
535
  message: z.ZodOptional<z.ZodString>;
527
536
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
528
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
537
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
529
538
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
530
539
  metadata: z.ZodOptional<z.ZodAny>;
531
540
  platformId: z.ZodOptional<z.ZodString>;
@@ -581,7 +590,7 @@ export declare const messengerContract: {
581
590
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
582
591
  label: z.ZodOptional<z.ZodString>;
583
592
  }, "strip", z.ZodTypeAny, {
584
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
593
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
585
594
  direction: "incoming" | "outgoing" | "system";
586
595
  id?: string | undefined;
587
596
  message?: string | undefined;
@@ -616,7 +625,7 @@ export declare const messengerContract: {
616
625
  editedAt?: string | Date | null | undefined;
617
626
  label?: string | undefined;
618
627
  }, {
619
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
628
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
620
629
  direction: "incoming" | "outgoing" | "system";
621
630
  id?: string | undefined;
622
631
  message?: string | undefined;
@@ -653,7 +662,7 @@ export declare const messengerContract: {
653
662
  }>;
654
663
  }, "strip", z.ZodTypeAny, {
655
664
  message: {
656
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
665
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
657
666
  direction: "incoming" | "outgoing" | "system";
658
667
  id?: string | undefined;
659
668
  message?: string | undefined;
@@ -710,6 +719,7 @@ export declare const messengerContract: {
710
719
  channelId?: string | undefined;
711
720
  status?: "active" | "pending" | undefined;
712
721
  apiKey?: string | undefined;
722
+ tier?: "basic" | "regular" | "premium" | undefined;
713
723
  } | undefined;
714
724
  vonageCredentials?: {
715
725
  apiKey: string;
@@ -769,16 +779,16 @@ export declare const messengerContract: {
769
779
  id: string;
770
780
  email: string;
771
781
  } | null;
772
- telegramBusinessConnectionId: string | null;
773
782
  lastMessage?: string | undefined;
774
783
  handleTime?: number | undefined;
775
784
  metadata?: any;
776
785
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
786
+ telegramBusinessConnectionId?: string | null | undefined;
777
787
  };
778
788
  isBot: boolean | null;
779
789
  }, {
780
790
  message: {
781
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
791
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
782
792
  direction: "incoming" | "outgoing" | "system";
783
793
  id?: string | undefined;
784
794
  message?: string | undefined;
@@ -835,6 +845,7 @@ export declare const messengerContract: {
835
845
  channelId?: string | undefined;
836
846
  status?: "active" | "pending" | undefined;
837
847
  apiKey?: string | undefined;
848
+ tier?: "basic" | "regular" | "premium" | undefined;
838
849
  } | undefined;
839
850
  vonageCredentials?: {
840
851
  apiKey: string;
@@ -894,11 +905,11 @@ export declare const messengerContract: {
894
905
  id: string;
895
906
  email: string;
896
907
  } | null;
897
- telegramBusinessConnectionId: string | null;
898
908
  lastMessage?: string | undefined;
899
909
  handleTime?: number | undefined;
900
910
  metadata?: any;
901
911
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
912
+ telegramBusinessConnectionId?: string | null | undefined;
902
913
  };
903
914
  isBot?: boolean | null | undefined;
904
915
  }>;
@@ -907,7 +918,7 @@ export declare const messengerContract: {
907
918
  200: z.ZodObject<{
908
919
  requestId: z.ZodString;
909
920
  data: z.ZodObject<{
910
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
921
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
911
922
  message: z.ZodString;
912
923
  id: z.ZodString;
913
924
  url: z.ZodString;
@@ -2855,6 +2866,7 @@ export declare const messengerContract: {
2855
2866
  channelId: z.ZodOptional<z.ZodString>;
2856
2867
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2857
2868
  apiKey: z.ZodOptional<z.ZodString>;
2869
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2858
2870
  }, "strip", z.ZodTypeAny, {
2859
2871
  email: string;
2860
2872
  wabaExternalId: string;
@@ -2864,6 +2876,7 @@ export declare const messengerContract: {
2864
2876
  channelId?: string | undefined;
2865
2877
  status?: "active" | "pending" | undefined;
2866
2878
  apiKey?: string | undefined;
2879
+ tier?: "basic" | "regular" | "premium" | undefined;
2867
2880
  }, {
2868
2881
  email: string;
2869
2882
  wabaExternalId: string;
@@ -2873,6 +2886,7 @@ export declare const messengerContract: {
2873
2886
  channelId?: string | undefined;
2874
2887
  status?: "active" | "pending" | undefined;
2875
2888
  apiKey?: string | undefined;
2889
+ tier?: "basic" | "regular" | "premium" | undefined;
2876
2890
  }>>;
2877
2891
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2878
2892
  mobileNumber: z.ZodString;
@@ -2905,6 +2919,7 @@ export declare const messengerContract: {
2905
2919
  channelId?: string | undefined;
2906
2920
  status?: "active" | "pending" | undefined;
2907
2921
  apiKey?: string | undefined;
2922
+ tier?: "basic" | "regular" | "premium" | undefined;
2908
2923
  } | undefined;
2909
2924
  vonageCredentials?: {
2910
2925
  apiKey: string;
@@ -2929,6 +2944,7 @@ export declare const messengerContract: {
2929
2944
  channelId?: string | undefined;
2930
2945
  status?: "active" | "pending" | undefined;
2931
2946
  apiKey?: string | undefined;
2947
+ tier?: "basic" | "regular" | "premium" | undefined;
2932
2948
  } | undefined;
2933
2949
  vonageCredentials?: {
2934
2950
  apiKey: string;
@@ -3187,6 +3203,7 @@ export declare const messengerContract: {
3187
3203
  channelId?: string | undefined;
3188
3204
  status?: "active" | "pending" | undefined;
3189
3205
  apiKey?: string | undefined;
3206
+ tier?: "basic" | "regular" | "premium" | undefined;
3190
3207
  } | undefined;
3191
3208
  vonageCredentials?: {
3192
3209
  apiKey: string;
@@ -3276,6 +3293,7 @@ export declare const messengerContract: {
3276
3293
  channelId?: string | undefined;
3277
3294
  status?: "active" | "pending" | undefined;
3278
3295
  apiKey?: string | undefined;
3296
+ tier?: "basic" | "regular" | "premium" | undefined;
3279
3297
  } | undefined;
3280
3298
  vonageCredentials?: {
3281
3299
  apiKey: string;
@@ -3348,17 +3366,17 @@ export declare const messengerContract: {
3348
3366
  }>;
3349
3367
  cxlog: z.ZodObject<{
3350
3368
  id: z.ZodString;
3369
+ channel: z.ZodNullable<z.ZodString>;
3370
+ direction: z.ZodNullable<z.ZodString>;
3351
3371
  createdAt: z.ZodDate;
3352
3372
  updatedAt: z.ZodDate;
3353
3373
  deletedAt: z.ZodNullable<z.ZodDate>;
3354
- caseId: z.ZodNumber;
3355
3374
  entityId: z.ZodString;
3356
- entityName: z.ZodString;
3357
- contactId: z.ZodNullable<z.ZodString>;
3358
- channel: z.ZodNullable<z.ZodString>;
3359
3375
  queueId: z.ZodNullable<z.ZodString>;
3376
+ contactId: z.ZodNullable<z.ZodString>;
3377
+ caseId: z.ZodNumber;
3378
+ entityName: z.ZodString;
3360
3379
  agentId: z.ZodNullable<z.ZodString>;
3361
- direction: z.ZodNullable<z.ZodString>;
3362
3380
  startedDate: z.ZodNullable<z.ZodDate>;
3363
3381
  handledTime: z.ZodNullable<z.ZodNumber>;
3364
3382
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
@@ -3628,6 +3646,69 @@ export declare const messengerContract: {
3628
3646
  dateValue: Date | null;
3629
3647
  }[] | null | undefined;
3630
3648
  }>>;
3649
+ holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3650
+ id: z.ZodString;
3651
+ createdAt: z.ZodDate;
3652
+ updatedAt: z.ZodDate;
3653
+ deletedAt: z.ZodNullable<z.ZodDate>;
3654
+ startedAt: z.ZodString;
3655
+ endedAt: z.ZodNullable<z.ZodString>;
3656
+ duration: z.ZodNullable<z.ZodNumber>;
3657
+ holdLabel: z.ZodObject<{
3658
+ id: z.ZodString;
3659
+ createdAt: z.ZodDate;
3660
+ updatedAt: z.ZodDate;
3661
+ deletedAt: z.ZodNullable<z.ZodDate>;
3662
+ name: z.ZodString;
3663
+ position: z.ZodNumber;
3664
+ }, "strip", z.ZodTypeAny, {
3665
+ name: string;
3666
+ id: string;
3667
+ position: number;
3668
+ createdAt: Date;
3669
+ updatedAt: Date;
3670
+ deletedAt: Date | null;
3671
+ }, {
3672
+ name: string;
3673
+ id: string;
3674
+ position: number;
3675
+ createdAt: Date;
3676
+ updatedAt: Date;
3677
+ deletedAt: Date | null;
3678
+ }>;
3679
+ }, "strip", z.ZodTypeAny, {
3680
+ id: string;
3681
+ createdAt: Date;
3682
+ updatedAt: Date;
3683
+ deletedAt: Date | null;
3684
+ startedAt: string;
3685
+ endedAt: string | null;
3686
+ duration: number | null;
3687
+ holdLabel: {
3688
+ name: string;
3689
+ id: string;
3690
+ position: number;
3691
+ createdAt: Date;
3692
+ updatedAt: Date;
3693
+ deletedAt: Date | null;
3694
+ };
3695
+ }, {
3696
+ id: string;
3697
+ createdAt: Date;
3698
+ updatedAt: Date;
3699
+ deletedAt: Date | null;
3700
+ startedAt: string;
3701
+ endedAt: string | null;
3702
+ duration: number | null;
3703
+ holdLabel: {
3704
+ name: string;
3705
+ id: string;
3706
+ position: number;
3707
+ createdAt: Date;
3708
+ updatedAt: Date;
3709
+ deletedAt: Date | null;
3710
+ };
3711
+ }>, "many">>>;
3631
3712
  }, "strip", z.ZodTypeAny, {
3632
3713
  id: string;
3633
3714
  channel: string | null;
@@ -3696,6 +3777,23 @@ export declare const messengerContract: {
3696
3777
  dateValue: Date | null;
3697
3778
  }[] | null | undefined;
3698
3779
  } | null;
3780
+ holdLogs?: {
3781
+ id: string;
3782
+ createdAt: Date;
3783
+ updatedAt: Date;
3784
+ deletedAt: Date | null;
3785
+ startedAt: string;
3786
+ endedAt: string | null;
3787
+ duration: number | null;
3788
+ holdLabel: {
3789
+ name: string;
3790
+ id: string;
3791
+ position: number;
3792
+ createdAt: Date;
3793
+ updatedAt: Date;
3794
+ deletedAt: Date | null;
3795
+ };
3796
+ }[] | null | undefined;
3699
3797
  }, {
3700
3798
  id: string;
3701
3799
  channel: string | null;
@@ -3764,6 +3862,23 @@ export declare const messengerContract: {
3764
3862
  dateValue: Date | null;
3765
3863
  }[] | null | undefined;
3766
3864
  } | null;
3865
+ holdLogs?: {
3866
+ id: string;
3867
+ createdAt: Date;
3868
+ updatedAt: Date;
3869
+ deletedAt: Date | null;
3870
+ startedAt: string;
3871
+ endedAt: string | null;
3872
+ duration: number | null;
3873
+ holdLabel: {
3874
+ name: string;
3875
+ id: string;
3876
+ position: number;
3877
+ createdAt: Date;
3878
+ updatedAt: Date;
3879
+ deletedAt: Date | null;
3880
+ };
3881
+ }[] | null | undefined;
3767
3882
  }>;
3768
3883
  workflowRule: z.ZodObject<{
3769
3884
  id: z.ZodString;
@@ -3813,6 +3928,7 @@ export declare const messengerContract: {
3813
3928
  channelId?: string | undefined;
3814
3929
  status?: "active" | "pending" | undefined;
3815
3930
  apiKey?: string | undefined;
3931
+ tier?: "basic" | "regular" | "premium" | undefined;
3816
3932
  } | undefined;
3817
3933
  vonageCredentials?: {
3818
3934
  apiKey: string;
@@ -4180,6 +4296,23 @@ export declare const messengerContract: {
4180
4296
  dateValue: Date | null;
4181
4297
  }[] | null | undefined;
4182
4298
  } | null;
4299
+ holdLogs?: {
4300
+ id: string;
4301
+ createdAt: Date;
4302
+ updatedAt: Date;
4303
+ deletedAt: Date | null;
4304
+ startedAt: string;
4305
+ endedAt: string | null;
4306
+ duration: number | null;
4307
+ holdLabel: {
4308
+ name: string;
4309
+ id: string;
4310
+ position: number;
4311
+ createdAt: Date;
4312
+ updatedAt: Date;
4313
+ deletedAt: Date | null;
4314
+ };
4315
+ }[] | null | undefined;
4183
4316
  };
4184
4317
  workflowRule: {
4185
4318
  name: string;
@@ -4213,6 +4346,7 @@ export declare const messengerContract: {
4213
4346
  channelId?: string | undefined;
4214
4347
  status?: "active" | "pending" | undefined;
4215
4348
  apiKey?: string | undefined;
4349
+ tier?: "basic" | "regular" | "premium" | undefined;
4216
4350
  } | undefined;
4217
4351
  vonageCredentials?: {
4218
4352
  apiKey: string;
@@ -4580,6 +4714,23 @@ export declare const messengerContract: {
4580
4714
  dateValue: Date | null;
4581
4715
  }[] | null | undefined;
4582
4716
  } | null;
4717
+ holdLogs?: {
4718
+ id: string;
4719
+ createdAt: Date;
4720
+ updatedAt: Date;
4721
+ deletedAt: Date | null;
4722
+ startedAt: string;
4723
+ endedAt: string | null;
4724
+ duration: number | null;
4725
+ holdLabel: {
4726
+ name: string;
4727
+ id: string;
4728
+ position: number;
4729
+ createdAt: Date;
4730
+ updatedAt: Date;
4731
+ deletedAt: Date | null;
4732
+ };
4733
+ }[] | null | undefined;
4583
4734
  };
4584
4735
  workflowRule: {
4585
4736
  name: string;
@@ -4630,7 +4781,7 @@ export declare const messengerContract: {
4630
4781
  deletedAt: z.ZodNullable<z.ZodDate>;
4631
4782
  message: z.ZodString;
4632
4783
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
4633
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
4784
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
4634
4785
  readAt: z.ZodDate;
4635
4786
  metadata: z.ZodAny;
4636
4787
  platformId: z.ZodString;
@@ -5288,7 +5439,7 @@ export declare const messengerContract: {
5288
5439
  };
5289
5440
  }>;
5290
5441
  }, "strip", z.ZodTypeAny, {
5291
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
5442
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
5292
5443
  message: string;
5293
5444
  id: string;
5294
5445
  url: string;
@@ -5450,7 +5601,7 @@ export declare const messengerContract: {
5450
5601
  metadata?: any;
5451
5602
  template?: any;
5452
5603
  }, {
5453
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
5604
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
5454
5605
  message: string;
5455
5606
  id: string;
5456
5607
  url: string;
@@ -5824,7 +5975,7 @@ export declare const messengerContract: {
5824
5975
  deletedAt: z.ZodNullable<z.ZodDate>;
5825
5976
  message: z.ZodString;
5826
5977
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
5827
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
5978
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
5828
5979
  readAt: z.ZodDate;
5829
5980
  metadata: z.ZodAny;
5830
5981
  platformId: z.ZodString;
@@ -7329,6 +7480,7 @@ export declare const messengerContract: {
7329
7480
  channelId: z.ZodOptional<z.ZodString>;
7330
7481
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7331
7482
  apiKey: z.ZodOptional<z.ZodString>;
7483
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7332
7484
  }, "strip", z.ZodTypeAny, {
7333
7485
  email: string;
7334
7486
  wabaExternalId: string;
@@ -7338,6 +7490,7 @@ export declare const messengerContract: {
7338
7490
  channelId?: string | undefined;
7339
7491
  status?: "active" | "pending" | undefined;
7340
7492
  apiKey?: string | undefined;
7493
+ tier?: "basic" | "regular" | "premium" | undefined;
7341
7494
  }, {
7342
7495
  email: string;
7343
7496
  wabaExternalId: string;
@@ -7347,6 +7500,7 @@ export declare const messengerContract: {
7347
7500
  channelId?: string | undefined;
7348
7501
  status?: "active" | "pending" | undefined;
7349
7502
  apiKey?: string | undefined;
7503
+ tier?: "basic" | "regular" | "premium" | undefined;
7350
7504
  }>>;
7351
7505
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7352
7506
  mobileNumber: z.ZodString;
@@ -7379,6 +7533,7 @@ export declare const messengerContract: {
7379
7533
  channelId?: string | undefined;
7380
7534
  status?: "active" | "pending" | undefined;
7381
7535
  apiKey?: string | undefined;
7536
+ tier?: "basic" | "regular" | "premium" | undefined;
7382
7537
  } | undefined;
7383
7538
  vonageCredentials?: {
7384
7539
  apiKey: string;
@@ -7403,6 +7558,7 @@ export declare const messengerContract: {
7403
7558
  channelId?: string | undefined;
7404
7559
  status?: "active" | "pending" | undefined;
7405
7560
  apiKey?: string | undefined;
7561
+ tier?: "basic" | "regular" | "premium" | undefined;
7406
7562
  } | undefined;
7407
7563
  vonageCredentials?: {
7408
7564
  apiKey: string;
@@ -7661,6 +7817,7 @@ export declare const messengerContract: {
7661
7817
  channelId?: string | undefined;
7662
7818
  status?: "active" | "pending" | undefined;
7663
7819
  apiKey?: string | undefined;
7820
+ tier?: "basic" | "regular" | "premium" | undefined;
7664
7821
  } | undefined;
7665
7822
  vonageCredentials?: {
7666
7823
  apiKey: string;
@@ -7750,6 +7907,7 @@ export declare const messengerContract: {
7750
7907
  channelId?: string | undefined;
7751
7908
  status?: "active" | "pending" | undefined;
7752
7909
  apiKey?: string | undefined;
7910
+ tier?: "basic" | "regular" | "premium" | undefined;
7753
7911
  } | undefined;
7754
7912
  vonageCredentials?: {
7755
7913
  apiKey: string;
@@ -7822,17 +7980,17 @@ export declare const messengerContract: {
7822
7980
  }>;
7823
7981
  cxlog: z.ZodObject<{
7824
7982
  id: z.ZodString;
7983
+ channel: z.ZodNullable<z.ZodString>;
7984
+ direction: z.ZodNullable<z.ZodString>;
7825
7985
  createdAt: z.ZodDate;
7826
7986
  updatedAt: z.ZodDate;
7827
7987
  deletedAt: z.ZodNullable<z.ZodDate>;
7828
- caseId: z.ZodNumber;
7829
7988
  entityId: z.ZodString;
7830
- entityName: z.ZodString;
7831
- contactId: z.ZodNullable<z.ZodString>;
7832
- channel: z.ZodNullable<z.ZodString>;
7833
7989
  queueId: z.ZodNullable<z.ZodString>;
7990
+ contactId: z.ZodNullable<z.ZodString>;
7991
+ caseId: z.ZodNumber;
7992
+ entityName: z.ZodString;
7834
7993
  agentId: z.ZodNullable<z.ZodString>;
7835
- direction: z.ZodNullable<z.ZodString>;
7836
7994
  startedDate: z.ZodNullable<z.ZodDate>;
7837
7995
  handledTime: z.ZodNullable<z.ZodNumber>;
7838
7996
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
@@ -8102,6 +8260,69 @@ export declare const messengerContract: {
8102
8260
  dateValue: Date | null;
8103
8261
  }[] | null | undefined;
8104
8262
  }>>;
8263
+ holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
8264
+ id: z.ZodString;
8265
+ createdAt: z.ZodDate;
8266
+ updatedAt: z.ZodDate;
8267
+ deletedAt: z.ZodNullable<z.ZodDate>;
8268
+ startedAt: z.ZodString;
8269
+ endedAt: z.ZodNullable<z.ZodString>;
8270
+ duration: z.ZodNullable<z.ZodNumber>;
8271
+ holdLabel: z.ZodObject<{
8272
+ id: z.ZodString;
8273
+ createdAt: z.ZodDate;
8274
+ updatedAt: z.ZodDate;
8275
+ deletedAt: z.ZodNullable<z.ZodDate>;
8276
+ name: z.ZodString;
8277
+ position: z.ZodNumber;
8278
+ }, "strip", z.ZodTypeAny, {
8279
+ name: string;
8280
+ id: string;
8281
+ position: number;
8282
+ createdAt: Date;
8283
+ updatedAt: Date;
8284
+ deletedAt: Date | null;
8285
+ }, {
8286
+ name: string;
8287
+ id: string;
8288
+ position: number;
8289
+ createdAt: Date;
8290
+ updatedAt: Date;
8291
+ deletedAt: Date | null;
8292
+ }>;
8293
+ }, "strip", z.ZodTypeAny, {
8294
+ id: string;
8295
+ createdAt: Date;
8296
+ updatedAt: Date;
8297
+ deletedAt: Date | null;
8298
+ startedAt: string;
8299
+ endedAt: string | null;
8300
+ duration: number | null;
8301
+ holdLabel: {
8302
+ name: string;
8303
+ id: string;
8304
+ position: number;
8305
+ createdAt: Date;
8306
+ updatedAt: Date;
8307
+ deletedAt: Date | null;
8308
+ };
8309
+ }, {
8310
+ id: string;
8311
+ createdAt: Date;
8312
+ updatedAt: Date;
8313
+ deletedAt: Date | null;
8314
+ startedAt: string;
8315
+ endedAt: string | null;
8316
+ duration: number | null;
8317
+ holdLabel: {
8318
+ name: string;
8319
+ id: string;
8320
+ position: number;
8321
+ createdAt: Date;
8322
+ updatedAt: Date;
8323
+ deletedAt: Date | null;
8324
+ };
8325
+ }>, "many">>>;
8105
8326
  }, "strip", z.ZodTypeAny, {
8106
8327
  id: string;
8107
8328
  channel: string | null;
@@ -8170,6 +8391,23 @@ export declare const messengerContract: {
8170
8391
  dateValue: Date | null;
8171
8392
  }[] | null | undefined;
8172
8393
  } | null;
8394
+ holdLogs?: {
8395
+ id: string;
8396
+ createdAt: Date;
8397
+ updatedAt: Date;
8398
+ deletedAt: Date | null;
8399
+ startedAt: string;
8400
+ endedAt: string | null;
8401
+ duration: number | null;
8402
+ holdLabel: {
8403
+ name: string;
8404
+ id: string;
8405
+ position: number;
8406
+ createdAt: Date;
8407
+ updatedAt: Date;
8408
+ deletedAt: Date | null;
8409
+ };
8410
+ }[] | null | undefined;
8173
8411
  }, {
8174
8412
  id: string;
8175
8413
  channel: string | null;
@@ -8238,6 +8476,23 @@ export declare const messengerContract: {
8238
8476
  dateValue: Date | null;
8239
8477
  }[] | null | undefined;
8240
8478
  } | null;
8479
+ holdLogs?: {
8480
+ id: string;
8481
+ createdAt: Date;
8482
+ updatedAt: Date;
8483
+ deletedAt: Date | null;
8484
+ startedAt: string;
8485
+ endedAt: string | null;
8486
+ duration: number | null;
8487
+ holdLabel: {
8488
+ name: string;
8489
+ id: string;
8490
+ position: number;
8491
+ createdAt: Date;
8492
+ updatedAt: Date;
8493
+ deletedAt: Date | null;
8494
+ };
8495
+ }[] | null | undefined;
8241
8496
  }>;
8242
8497
  workflowRule: z.ZodObject<{
8243
8498
  id: z.ZodString;
@@ -8287,6 +8542,7 @@ export declare const messengerContract: {
8287
8542
  channelId?: string | undefined;
8288
8543
  status?: "active" | "pending" | undefined;
8289
8544
  apiKey?: string | undefined;
8545
+ tier?: "basic" | "regular" | "premium" | undefined;
8290
8546
  } | undefined;
8291
8547
  vonageCredentials?: {
8292
8548
  apiKey: string;
@@ -8654,6 +8910,23 @@ export declare const messengerContract: {
8654
8910
  dateValue: Date | null;
8655
8911
  }[] | null | undefined;
8656
8912
  } | null;
8913
+ holdLogs?: {
8914
+ id: string;
8915
+ createdAt: Date;
8916
+ updatedAt: Date;
8917
+ deletedAt: Date | null;
8918
+ startedAt: string;
8919
+ endedAt: string | null;
8920
+ duration: number | null;
8921
+ holdLabel: {
8922
+ name: string;
8923
+ id: string;
8924
+ position: number;
8925
+ createdAt: Date;
8926
+ updatedAt: Date;
8927
+ deletedAt: Date | null;
8928
+ };
8929
+ }[] | null | undefined;
8657
8930
  };
8658
8931
  workflowRule: {
8659
8932
  name: string;
@@ -8687,6 +8960,7 @@ export declare const messengerContract: {
8687
8960
  channelId?: string | undefined;
8688
8961
  status?: "active" | "pending" | undefined;
8689
8962
  apiKey?: string | undefined;
8963
+ tier?: "basic" | "regular" | "premium" | undefined;
8690
8964
  } | undefined;
8691
8965
  vonageCredentials?: {
8692
8966
  apiKey: string;
@@ -9054,6 +9328,23 @@ export declare const messengerContract: {
9054
9328
  dateValue: Date | null;
9055
9329
  }[] | null | undefined;
9056
9330
  } | null;
9331
+ holdLogs?: {
9332
+ id: string;
9333
+ createdAt: Date;
9334
+ updatedAt: Date;
9335
+ deletedAt: Date | null;
9336
+ startedAt: string;
9337
+ endedAt: string | null;
9338
+ duration: number | null;
9339
+ holdLabel: {
9340
+ name: string;
9341
+ id: string;
9342
+ position: number;
9343
+ createdAt: Date;
9344
+ updatedAt: Date;
9345
+ deletedAt: Date | null;
9346
+ };
9347
+ }[] | null | undefined;
9057
9348
  };
9058
9349
  workflowRule: {
9059
9350
  name: string;
@@ -9107,7 +9398,7 @@ export declare const messengerContract: {
9107
9398
  deletedAt: z.ZodNullable<z.ZodDate>;
9108
9399
  message: z.ZodString;
9109
9400
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
9110
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
9401
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
9111
9402
  readAt: z.ZodDate;
9112
9403
  metadata: z.ZodAny;
9113
9404
  platformId: z.ZodString;
@@ -9765,7 +10056,7 @@ export declare const messengerContract: {
9765
10056
  };
9766
10057
  }>;
9767
10058
  }, "strip", z.ZodTypeAny, {
9768
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
10059
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
9769
10060
  message: string;
9770
10061
  id: string;
9771
10062
  url: string;
@@ -9927,7 +10218,7 @@ export declare const messengerContract: {
9927
10218
  metadata?: any;
9928
10219
  template?: any;
9929
10220
  }, {
9930
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
10221
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
9931
10222
  message: string;
9932
10223
  id: string;
9933
10224
  url: string;
@@ -10729,7 +11020,7 @@ export declare const messengerContract: {
10729
11020
  editedMessageid: z.ZodString;
10730
11021
  label: z.ZodOptional<z.ZodString>;
10731
11022
  }, "strip", z.ZodTypeAny, {
10732
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
11023
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
10733
11024
  message: string;
10734
11025
  id: string;
10735
11026
  url: string;
@@ -10860,6 +11151,7 @@ export declare const messengerContract: {
10860
11151
  channelId?: string | undefined;
10861
11152
  status?: "active" | "pending" | undefined;
10862
11153
  apiKey?: string | undefined;
11154
+ tier?: "basic" | "regular" | "premium" | undefined;
10863
11155
  } | undefined;
10864
11156
  vonageCredentials?: {
10865
11157
  apiKey: string;
@@ -11227,6 +11519,23 @@ export declare const messengerContract: {
11227
11519
  dateValue: Date | null;
11228
11520
  }[] | null | undefined;
11229
11521
  } | null;
11522
+ holdLogs?: {
11523
+ id: string;
11524
+ createdAt: Date;
11525
+ updatedAt: Date;
11526
+ deletedAt: Date | null;
11527
+ startedAt: string;
11528
+ endedAt: string | null;
11529
+ duration: number | null;
11530
+ holdLabel: {
11531
+ name: string;
11532
+ id: string;
11533
+ position: number;
11534
+ createdAt: Date;
11535
+ updatedAt: Date;
11536
+ deletedAt: Date | null;
11537
+ };
11538
+ }[] | null | undefined;
11230
11539
  };
11231
11540
  workflowRule: {
11232
11541
  name: string;
@@ -11255,7 +11564,7 @@ export declare const messengerContract: {
11255
11564
  previewUrl: string;
11256
11565
  imageSetId: string;
11257
11566
  repliedMessage: {
11258
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
11567
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
11259
11568
  message: string;
11260
11569
  id: string;
11261
11570
  url: string;
@@ -11466,7 +11775,7 @@ export declare const messengerContract: {
11466
11775
  template?: any;
11467
11776
  label?: string | undefined;
11468
11777
  }, {
11469
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
11778
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
11470
11779
  message: string;
11471
11780
  id: string;
11472
11781
  url: string;
@@ -11597,6 +11906,7 @@ export declare const messengerContract: {
11597
11906
  channelId?: string | undefined;
11598
11907
  status?: "active" | "pending" | undefined;
11599
11908
  apiKey?: string | undefined;
11909
+ tier?: "basic" | "regular" | "premium" | undefined;
11600
11910
  } | undefined;
11601
11911
  vonageCredentials?: {
11602
11912
  apiKey: string;
@@ -11964,6 +12274,23 @@ export declare const messengerContract: {
11964
12274
  dateValue: Date | null;
11965
12275
  }[] | null | undefined;
11966
12276
  } | null;
12277
+ holdLogs?: {
12278
+ id: string;
12279
+ createdAt: Date;
12280
+ updatedAt: Date;
12281
+ deletedAt: Date | null;
12282
+ startedAt: string;
12283
+ endedAt: string | null;
12284
+ duration: number | null;
12285
+ holdLabel: {
12286
+ name: string;
12287
+ id: string;
12288
+ position: number;
12289
+ createdAt: Date;
12290
+ updatedAt: Date;
12291
+ deletedAt: Date | null;
12292
+ };
12293
+ }[] | null | undefined;
11967
12294
  };
11968
12295
  workflowRule: {
11969
12296
  name: string;
@@ -11992,7 +12319,7 @@ export declare const messengerContract: {
11992
12319
  previewUrl: string;
11993
12320
  imageSetId: string;
11994
12321
  repliedMessage: {
11995
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
12322
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
11996
12323
  message: string;
11997
12324
  id: string;
11998
12325
  url: string;
@@ -12204,7 +12531,7 @@ export declare const messengerContract: {
12204
12531
  label?: string | undefined;
12205
12532
  }>>>;
12206
12533
  }, "strip", z.ZodTypeAny, {
12207
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
12534
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
12208
12535
  message: string;
12209
12536
  id: string;
12210
12537
  url: string;
@@ -12335,6 +12662,7 @@ export declare const messengerContract: {
12335
12662
  channelId?: string | undefined;
12336
12663
  status?: "active" | "pending" | undefined;
12337
12664
  apiKey?: string | undefined;
12665
+ tier?: "basic" | "regular" | "premium" | undefined;
12338
12666
  } | undefined;
12339
12667
  vonageCredentials?: {
12340
12668
  apiKey: string;
@@ -12702,6 +13030,23 @@ export declare const messengerContract: {
12702
13030
  dateValue: Date | null;
12703
13031
  }[] | null | undefined;
12704
13032
  } | null;
13033
+ holdLogs?: {
13034
+ id: string;
13035
+ createdAt: Date;
13036
+ updatedAt: Date;
13037
+ deletedAt: Date | null;
13038
+ startedAt: string;
13039
+ endedAt: string | null;
13040
+ duration: number | null;
13041
+ holdLabel: {
13042
+ name: string;
13043
+ id: string;
13044
+ position: number;
13045
+ createdAt: Date;
13046
+ updatedAt: Date;
13047
+ deletedAt: Date | null;
13048
+ };
13049
+ }[] | null | undefined;
12705
13050
  };
12706
13051
  workflowRule: {
12707
13052
  name: string;
@@ -12730,7 +13075,7 @@ export declare const messengerContract: {
12730
13075
  previewUrl: string;
12731
13076
  imageSetId: string;
12732
13077
  repliedMessage: {
12733
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13078
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
12734
13079
  message: string;
12735
13080
  id: string;
12736
13081
  url: string;
@@ -12941,7 +13286,7 @@ export declare const messengerContract: {
12941
13286
  template?: any;
12942
13287
  metadata?: any;
12943
13288
  fromMessage?: {
12944
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13289
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
12945
13290
  message: string;
12946
13291
  id: string;
12947
13292
  url: string;
@@ -13072,6 +13417,7 @@ export declare const messengerContract: {
13072
13417
  channelId?: string | undefined;
13073
13418
  status?: "active" | "pending" | undefined;
13074
13419
  apiKey?: string | undefined;
13420
+ tier?: "basic" | "regular" | "premium" | undefined;
13075
13421
  } | undefined;
13076
13422
  vonageCredentials?: {
13077
13423
  apiKey: string;
@@ -13439,6 +13785,23 @@ export declare const messengerContract: {
13439
13785
  dateValue: Date | null;
13440
13786
  }[] | null | undefined;
13441
13787
  } | null;
13788
+ holdLogs?: {
13789
+ id: string;
13790
+ createdAt: Date;
13791
+ updatedAt: Date;
13792
+ deletedAt: Date | null;
13793
+ startedAt: string;
13794
+ endedAt: string | null;
13795
+ duration: number | null;
13796
+ holdLabel: {
13797
+ name: string;
13798
+ id: string;
13799
+ position: number;
13800
+ createdAt: Date;
13801
+ updatedAt: Date;
13802
+ deletedAt: Date | null;
13803
+ };
13804
+ }[] | null | undefined;
13442
13805
  };
13443
13806
  workflowRule: {
13444
13807
  name: string;
@@ -13467,7 +13830,7 @@ export declare const messengerContract: {
13467
13830
  previewUrl: string;
13468
13831
  imageSetId: string;
13469
13832
  repliedMessage: {
13470
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13833
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13471
13834
  message: string;
13472
13835
  id: string;
13473
13836
  url: string;
@@ -13679,7 +14042,7 @@ export declare const messengerContract: {
13679
14042
  label?: string | undefined;
13680
14043
  } | null | undefined;
13681
14044
  }, {
13682
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14045
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13683
14046
  message: string;
13684
14047
  id: string;
13685
14048
  url: string;
@@ -13810,6 +14173,7 @@ export declare const messengerContract: {
13810
14173
  channelId?: string | undefined;
13811
14174
  status?: "active" | "pending" | undefined;
13812
14175
  apiKey?: string | undefined;
14176
+ tier?: "basic" | "regular" | "premium" | undefined;
13813
14177
  } | undefined;
13814
14178
  vonageCredentials?: {
13815
14179
  apiKey: string;
@@ -14177,6 +14541,23 @@ export declare const messengerContract: {
14177
14541
  dateValue: Date | null;
14178
14542
  }[] | null | undefined;
14179
14543
  } | null;
14544
+ holdLogs?: {
14545
+ id: string;
14546
+ createdAt: Date;
14547
+ updatedAt: Date;
14548
+ deletedAt: Date | null;
14549
+ startedAt: string;
14550
+ endedAt: string | null;
14551
+ duration: number | null;
14552
+ holdLabel: {
14553
+ name: string;
14554
+ id: string;
14555
+ position: number;
14556
+ createdAt: Date;
14557
+ updatedAt: Date;
14558
+ deletedAt: Date | null;
14559
+ };
14560
+ }[] | null | undefined;
14180
14561
  };
14181
14562
  workflowRule: {
14182
14563
  name: string;
@@ -14205,7 +14586,7 @@ export declare const messengerContract: {
14205
14586
  previewUrl: string;
14206
14587
  imageSetId: string;
14207
14588
  repliedMessage: {
14208
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14589
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14209
14590
  message: string;
14210
14591
  id: string;
14211
14592
  url: string;
@@ -14416,7 +14797,7 @@ export declare const messengerContract: {
14416
14797
  template?: any;
14417
14798
  metadata?: any;
14418
14799
  fromMessage?: {
14419
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14800
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14420
14801
  message: string;
14421
14802
  id: string;
14422
14803
  url: string;
@@ -14547,6 +14928,7 @@ export declare const messengerContract: {
14547
14928
  channelId?: string | undefined;
14548
14929
  status?: "active" | "pending" | undefined;
14549
14930
  apiKey?: string | undefined;
14931
+ tier?: "basic" | "regular" | "premium" | undefined;
14550
14932
  } | undefined;
14551
14933
  vonageCredentials?: {
14552
14934
  apiKey: string;
@@ -14914,6 +15296,23 @@ export declare const messengerContract: {
14914
15296
  dateValue: Date | null;
14915
15297
  }[] | null | undefined;
14916
15298
  } | null;
15299
+ holdLogs?: {
15300
+ id: string;
15301
+ createdAt: Date;
15302
+ updatedAt: Date;
15303
+ deletedAt: Date | null;
15304
+ startedAt: string;
15305
+ endedAt: string | null;
15306
+ duration: number | null;
15307
+ holdLabel: {
15308
+ name: string;
15309
+ id: string;
15310
+ position: number;
15311
+ createdAt: Date;
15312
+ updatedAt: Date;
15313
+ deletedAt: Date | null;
15314
+ };
15315
+ }[] | null | undefined;
14917
15316
  };
14918
15317
  workflowRule: {
14919
15318
  name: string;
@@ -14942,7 +15341,7 @@ export declare const messengerContract: {
14942
15341
  previewUrl: string;
14943
15342
  imageSetId: string;
14944
15343
  repliedMessage: {
14945
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
15344
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14946
15345
  message: string;
14947
15346
  id: string;
14948
15347
  url: string;
@@ -15156,7 +15555,7 @@ export declare const messengerContract: {
15156
15555
  }>;
15157
15556
  }, "strip", z.ZodTypeAny, {
15158
15557
  data: {
15159
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
15558
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15160
15559
  message: string;
15161
15560
  id: string;
15162
15561
  url: string;
@@ -15287,6 +15686,7 @@ export declare const messengerContract: {
15287
15686
  channelId?: string | undefined;
15288
15687
  status?: "active" | "pending" | undefined;
15289
15688
  apiKey?: string | undefined;
15689
+ tier?: "basic" | "regular" | "premium" | undefined;
15290
15690
  } | undefined;
15291
15691
  vonageCredentials?: {
15292
15692
  apiKey: string;
@@ -15654,6 +16054,23 @@ export declare const messengerContract: {
15654
16054
  dateValue: Date | null;
15655
16055
  }[] | null | undefined;
15656
16056
  } | null;
16057
+ holdLogs?: {
16058
+ id: string;
16059
+ createdAt: Date;
16060
+ updatedAt: Date;
16061
+ deletedAt: Date | null;
16062
+ startedAt: string;
16063
+ endedAt: string | null;
16064
+ duration: number | null;
16065
+ holdLabel: {
16066
+ name: string;
16067
+ id: string;
16068
+ position: number;
16069
+ createdAt: Date;
16070
+ updatedAt: Date;
16071
+ deletedAt: Date | null;
16072
+ };
16073
+ }[] | null | undefined;
15657
16074
  };
15658
16075
  workflowRule: {
15659
16076
  name: string;
@@ -15682,7 +16099,7 @@ export declare const messengerContract: {
15682
16099
  previewUrl: string;
15683
16100
  imageSetId: string;
15684
16101
  repliedMessage: {
15685
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16102
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15686
16103
  message: string;
15687
16104
  id: string;
15688
16105
  url: string;
@@ -15893,7 +16310,7 @@ export declare const messengerContract: {
15893
16310
  template?: any;
15894
16311
  metadata?: any;
15895
16312
  fromMessage?: {
15896
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16313
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15897
16314
  message: string;
15898
16315
  id: string;
15899
16316
  url: string;
@@ -16024,6 +16441,7 @@ export declare const messengerContract: {
16024
16441
  channelId?: string | undefined;
16025
16442
  status?: "active" | "pending" | undefined;
16026
16443
  apiKey?: string | undefined;
16444
+ tier?: "basic" | "regular" | "premium" | undefined;
16027
16445
  } | undefined;
16028
16446
  vonageCredentials?: {
16029
16447
  apiKey: string;
@@ -16391,6 +16809,23 @@ export declare const messengerContract: {
16391
16809
  dateValue: Date | null;
16392
16810
  }[] | null | undefined;
16393
16811
  } | null;
16812
+ holdLogs?: {
16813
+ id: string;
16814
+ createdAt: Date;
16815
+ updatedAt: Date;
16816
+ deletedAt: Date | null;
16817
+ startedAt: string;
16818
+ endedAt: string | null;
16819
+ duration: number | null;
16820
+ holdLabel: {
16821
+ name: string;
16822
+ id: string;
16823
+ position: number;
16824
+ createdAt: Date;
16825
+ updatedAt: Date;
16826
+ deletedAt: Date | null;
16827
+ };
16828
+ }[] | null | undefined;
16394
16829
  };
16395
16830
  workflowRule: {
16396
16831
  name: string;
@@ -16419,7 +16854,7 @@ export declare const messengerContract: {
16419
16854
  previewUrl: string;
16420
16855
  imageSetId: string;
16421
16856
  repliedMessage: {
16422
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16857
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16423
16858
  message: string;
16424
16859
  id: string;
16425
16860
  url: string;
@@ -16634,7 +17069,7 @@ export declare const messengerContract: {
16634
17069
  requestId: string;
16635
17070
  }, {
16636
17071
  data: {
16637
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17072
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16638
17073
  message: string;
16639
17074
  id: string;
16640
17075
  url: string;
@@ -16765,6 +17200,7 @@ export declare const messengerContract: {
16765
17200
  channelId?: string | undefined;
16766
17201
  status?: "active" | "pending" | undefined;
16767
17202
  apiKey?: string | undefined;
17203
+ tier?: "basic" | "regular" | "premium" | undefined;
16768
17204
  } | undefined;
16769
17205
  vonageCredentials?: {
16770
17206
  apiKey: string;
@@ -17132,6 +17568,23 @@ export declare const messengerContract: {
17132
17568
  dateValue: Date | null;
17133
17569
  }[] | null | undefined;
17134
17570
  } | null;
17571
+ holdLogs?: {
17572
+ id: string;
17573
+ createdAt: Date;
17574
+ updatedAt: Date;
17575
+ deletedAt: Date | null;
17576
+ startedAt: string;
17577
+ endedAt: string | null;
17578
+ duration: number | null;
17579
+ holdLabel: {
17580
+ name: string;
17581
+ id: string;
17582
+ position: number;
17583
+ createdAt: Date;
17584
+ updatedAt: Date;
17585
+ deletedAt: Date | null;
17586
+ };
17587
+ }[] | null | undefined;
17135
17588
  };
17136
17589
  workflowRule: {
17137
17590
  name: string;
@@ -17160,7 +17613,7 @@ export declare const messengerContract: {
17160
17613
  previewUrl: string;
17161
17614
  imageSetId: string;
17162
17615
  repliedMessage: {
17163
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17616
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17164
17617
  message: string;
17165
17618
  id: string;
17166
17619
  url: string;
@@ -17371,7 +17824,7 @@ export declare const messengerContract: {
17371
17824
  template?: any;
17372
17825
  metadata?: any;
17373
17826
  fromMessage?: {
17374
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17827
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17375
17828
  message: string;
17376
17829
  id: string;
17377
17830
  url: string;
@@ -17502,6 +17955,7 @@ export declare const messengerContract: {
17502
17955
  channelId?: string | undefined;
17503
17956
  status?: "active" | "pending" | undefined;
17504
17957
  apiKey?: string | undefined;
17958
+ tier?: "basic" | "regular" | "premium" | undefined;
17505
17959
  } | undefined;
17506
17960
  vonageCredentials?: {
17507
17961
  apiKey: string;
@@ -17869,6 +18323,23 @@ export declare const messengerContract: {
17869
18323
  dateValue: Date | null;
17870
18324
  }[] | null | undefined;
17871
18325
  } | null;
18326
+ holdLogs?: {
18327
+ id: string;
18328
+ createdAt: Date;
18329
+ updatedAt: Date;
18330
+ deletedAt: Date | null;
18331
+ startedAt: string;
18332
+ endedAt: string | null;
18333
+ duration: number | null;
18334
+ holdLabel: {
18335
+ name: string;
18336
+ id: string;
18337
+ position: number;
18338
+ createdAt: Date;
18339
+ updatedAt: Date;
18340
+ deletedAt: Date | null;
18341
+ };
18342
+ }[] | null | undefined;
17872
18343
  };
17873
18344
  workflowRule: {
17874
18345
  name: string;
@@ -17897,7 +18368,7 @@ export declare const messengerContract: {
17897
18368
  previewUrl: string;
17898
18369
  imageSetId: string;
17899
18370
  repliedMessage: {
17900
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
18371
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17901
18372
  message: string;
17902
18373
  id: string;
17903
18374
  url: string;
@@ -18155,6 +18626,7 @@ export declare const messengerContract: {
18155
18626
  channelId: z.ZodOptional<z.ZodString>;
18156
18627
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18157
18628
  apiKey: z.ZodOptional<z.ZodString>;
18629
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18158
18630
  }, "strip", z.ZodTypeAny, {
18159
18631
  email: string;
18160
18632
  wabaExternalId: string;
@@ -18164,6 +18636,7 @@ export declare const messengerContract: {
18164
18636
  channelId?: string | undefined;
18165
18637
  status?: "active" | "pending" | undefined;
18166
18638
  apiKey?: string | undefined;
18639
+ tier?: "basic" | "regular" | "premium" | undefined;
18167
18640
  }, {
18168
18641
  email: string;
18169
18642
  wabaExternalId: string;
@@ -18173,6 +18646,7 @@ export declare const messengerContract: {
18173
18646
  channelId?: string | undefined;
18174
18647
  status?: "active" | "pending" | undefined;
18175
18648
  apiKey?: string | undefined;
18649
+ tier?: "basic" | "regular" | "premium" | undefined;
18176
18650
  }>>;
18177
18651
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18178
18652
  mobileNumber: z.ZodString;
@@ -18205,6 +18679,7 @@ export declare const messengerContract: {
18205
18679
  channelId?: string | undefined;
18206
18680
  status?: "active" | "pending" | undefined;
18207
18681
  apiKey?: string | undefined;
18682
+ tier?: "basic" | "regular" | "premium" | undefined;
18208
18683
  } | undefined;
18209
18684
  vonageCredentials?: {
18210
18685
  apiKey: string;
@@ -18229,6 +18704,7 @@ export declare const messengerContract: {
18229
18704
  channelId?: string | undefined;
18230
18705
  status?: "active" | "pending" | undefined;
18231
18706
  apiKey?: string | undefined;
18707
+ tier?: "basic" | "regular" | "premium" | undefined;
18232
18708
  } | undefined;
18233
18709
  vonageCredentials?: {
18234
18710
  apiKey: string;
@@ -18283,6 +18759,7 @@ export declare const messengerContract: {
18283
18759
  channelId?: string | undefined;
18284
18760
  status?: "active" | "pending" | undefined;
18285
18761
  apiKey?: string | undefined;
18762
+ tier?: "basic" | "regular" | "premium" | undefined;
18286
18763
  } | undefined;
18287
18764
  vonageCredentials?: {
18288
18765
  apiKey: string;
@@ -18325,6 +18802,7 @@ export declare const messengerContract: {
18325
18802
  channelId?: string | undefined;
18326
18803
  status?: "active" | "pending" | undefined;
18327
18804
  apiKey?: string | undefined;
18805
+ tier?: "basic" | "regular" | "premium" | undefined;
18328
18806
  } | undefined;
18329
18807
  vonageCredentials?: {
18330
18808
  apiKey: string;
@@ -18372,6 +18850,7 @@ export declare const messengerContract: {
18372
18850
  channelId: z.ZodOptional<z.ZodString>;
18373
18851
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18374
18852
  apiKey: z.ZodOptional<z.ZodString>;
18853
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18375
18854
  }, "strip", z.ZodTypeAny, {
18376
18855
  email: string;
18377
18856
  wabaExternalId: string;
@@ -18381,6 +18860,7 @@ export declare const messengerContract: {
18381
18860
  channelId?: string | undefined;
18382
18861
  status?: "active" | "pending" | undefined;
18383
18862
  apiKey?: string | undefined;
18863
+ tier?: "basic" | "regular" | "premium" | undefined;
18384
18864
  }, {
18385
18865
  email: string;
18386
18866
  wabaExternalId: string;
@@ -18390,6 +18870,7 @@ export declare const messengerContract: {
18390
18870
  channelId?: string | undefined;
18391
18871
  status?: "active" | "pending" | undefined;
18392
18872
  apiKey?: string | undefined;
18873
+ tier?: "basic" | "regular" | "premium" | undefined;
18393
18874
  }>>;
18394
18875
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18395
18876
  mobileNumber: z.ZodString;
@@ -18422,6 +18903,7 @@ export declare const messengerContract: {
18422
18903
  channelId?: string | undefined;
18423
18904
  status?: "active" | "pending" | undefined;
18424
18905
  apiKey?: string | undefined;
18906
+ tier?: "basic" | "regular" | "premium" | undefined;
18425
18907
  } | undefined;
18426
18908
  vonageCredentials?: {
18427
18909
  apiKey: string;
@@ -18446,6 +18928,7 @@ export declare const messengerContract: {
18446
18928
  channelId?: string | undefined;
18447
18929
  status?: "active" | "pending" | undefined;
18448
18930
  apiKey?: string | undefined;
18931
+ tier?: "basic" | "regular" | "premium" | undefined;
18449
18932
  } | undefined;
18450
18933
  vonageCredentials?: {
18451
18934
  apiKey: string;
@@ -18500,6 +18983,7 @@ export declare const messengerContract: {
18500
18983
  channelId?: string | undefined;
18501
18984
  status?: "active" | "pending" | undefined;
18502
18985
  apiKey?: string | undefined;
18986
+ tier?: "basic" | "regular" | "premium" | undefined;
18503
18987
  } | undefined;
18504
18988
  vonageCredentials?: {
18505
18989
  apiKey: string;
@@ -18542,6 +19026,7 @@ export declare const messengerContract: {
18542
19026
  channelId?: string | undefined;
18543
19027
  status?: "active" | "pending" | undefined;
18544
19028
  apiKey?: string | undefined;
19029
+ tier?: "basic" | "regular" | "premium" | undefined;
18545
19030
  } | undefined;
18546
19031
  vonageCredentials?: {
18547
19032
  apiKey: string;
@@ -18586,6 +19071,7 @@ export declare const messengerContract: {
18586
19071
  channelId?: string | undefined;
18587
19072
  status?: "active" | "pending" | undefined;
18588
19073
  apiKey?: string | undefined;
19074
+ tier?: "basic" | "regular" | "premium" | undefined;
18589
19075
  } | undefined;
18590
19076
  vonageCredentials?: {
18591
19077
  apiKey: string;
@@ -18631,6 +19117,7 @@ export declare const messengerContract: {
18631
19117
  channelId?: string | undefined;
18632
19118
  status?: "active" | "pending" | undefined;
18633
19119
  apiKey?: string | undefined;
19120
+ tier?: "basic" | "regular" | "premium" | undefined;
18634
19121
  } | undefined;
18635
19122
  vonageCredentials?: {
18636
19123
  apiKey: string;
@@ -18700,6 +19187,7 @@ export declare const messengerContract: {
18700
19187
  channelId: z.ZodOptional<z.ZodString>;
18701
19188
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18702
19189
  apiKey: z.ZodOptional<z.ZodString>;
19190
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18703
19191
  }, "strip", z.ZodTypeAny, {
18704
19192
  email: string;
18705
19193
  wabaExternalId: string;
@@ -18709,6 +19197,7 @@ export declare const messengerContract: {
18709
19197
  channelId?: string | undefined;
18710
19198
  status?: "active" | "pending" | undefined;
18711
19199
  apiKey?: string | undefined;
19200
+ tier?: "basic" | "regular" | "premium" | undefined;
18712
19201
  }, {
18713
19202
  email: string;
18714
19203
  wabaExternalId: string;
@@ -18718,6 +19207,7 @@ export declare const messengerContract: {
18718
19207
  channelId?: string | undefined;
18719
19208
  status?: "active" | "pending" | undefined;
18720
19209
  apiKey?: string | undefined;
19210
+ tier?: "basic" | "regular" | "premium" | undefined;
18721
19211
  }>>;
18722
19212
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18723
19213
  mobileNumber: z.ZodString;
@@ -18750,6 +19240,7 @@ export declare const messengerContract: {
18750
19240
  channelId?: string | undefined;
18751
19241
  status?: "active" | "pending" | undefined;
18752
19242
  apiKey?: string | undefined;
19243
+ tier?: "basic" | "regular" | "premium" | undefined;
18753
19244
  } | undefined;
18754
19245
  vonageCredentials?: {
18755
19246
  apiKey: string;
@@ -18774,6 +19265,7 @@ export declare const messengerContract: {
18774
19265
  channelId?: string | undefined;
18775
19266
  status?: "active" | "pending" | undefined;
18776
19267
  apiKey?: string | undefined;
19268
+ tier?: "basic" | "regular" | "premium" | undefined;
18777
19269
  } | undefined;
18778
19270
  vonageCredentials?: {
18779
19271
  apiKey: string;
@@ -18828,6 +19320,7 @@ export declare const messengerContract: {
18828
19320
  channelId?: string | undefined;
18829
19321
  status?: "active" | "pending" | undefined;
18830
19322
  apiKey?: string | undefined;
19323
+ tier?: "basic" | "regular" | "premium" | undefined;
18831
19324
  } | undefined;
18832
19325
  vonageCredentials?: {
18833
19326
  apiKey: string;
@@ -18870,6 +19363,7 @@ export declare const messengerContract: {
18870
19363
  channelId?: string | undefined;
18871
19364
  status?: "active" | "pending" | undefined;
18872
19365
  apiKey?: string | undefined;
19366
+ tier?: "basic" | "regular" | "premium" | undefined;
18873
19367
  } | undefined;
18874
19368
  vonageCredentials?: {
18875
19369
  apiKey: string;
@@ -18917,6 +19411,7 @@ export declare const messengerContract: {
18917
19411
  channelId: z.ZodOptional<z.ZodString>;
18918
19412
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18919
19413
  apiKey: z.ZodOptional<z.ZodString>;
19414
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18920
19415
  }, "strip", z.ZodTypeAny, {
18921
19416
  email: string;
18922
19417
  wabaExternalId: string;
@@ -18926,6 +19421,7 @@ export declare const messengerContract: {
18926
19421
  channelId?: string | undefined;
18927
19422
  status?: "active" | "pending" | undefined;
18928
19423
  apiKey?: string | undefined;
19424
+ tier?: "basic" | "regular" | "premium" | undefined;
18929
19425
  }, {
18930
19426
  email: string;
18931
19427
  wabaExternalId: string;
@@ -18935,6 +19431,7 @@ export declare const messengerContract: {
18935
19431
  channelId?: string | undefined;
18936
19432
  status?: "active" | "pending" | undefined;
18937
19433
  apiKey?: string | undefined;
19434
+ tier?: "basic" | "regular" | "premium" | undefined;
18938
19435
  }>>;
18939
19436
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18940
19437
  mobileNumber: z.ZodString;
@@ -18967,6 +19464,7 @@ export declare const messengerContract: {
18967
19464
  channelId?: string | undefined;
18968
19465
  status?: "active" | "pending" | undefined;
18969
19466
  apiKey?: string | undefined;
19467
+ tier?: "basic" | "regular" | "premium" | undefined;
18970
19468
  } | undefined;
18971
19469
  vonageCredentials?: {
18972
19470
  apiKey: string;
@@ -18991,6 +19489,7 @@ export declare const messengerContract: {
18991
19489
  channelId?: string | undefined;
18992
19490
  status?: "active" | "pending" | undefined;
18993
19491
  apiKey?: string | undefined;
19492
+ tier?: "basic" | "regular" | "premium" | undefined;
18994
19493
  } | undefined;
18995
19494
  vonageCredentials?: {
18996
19495
  apiKey: string;
@@ -19045,6 +19544,7 @@ export declare const messengerContract: {
19045
19544
  channelId?: string | undefined;
19046
19545
  status?: "active" | "pending" | undefined;
19047
19546
  apiKey?: string | undefined;
19547
+ tier?: "basic" | "regular" | "premium" | undefined;
19048
19548
  } | undefined;
19049
19549
  vonageCredentials?: {
19050
19550
  apiKey: string;
@@ -19087,6 +19587,7 @@ export declare const messengerContract: {
19087
19587
  channelId?: string | undefined;
19088
19588
  status?: "active" | "pending" | undefined;
19089
19589
  apiKey?: string | undefined;
19590
+ tier?: "basic" | "regular" | "premium" | undefined;
19090
19591
  } | undefined;
19091
19592
  vonageCredentials?: {
19092
19593
  apiKey: string;
@@ -19131,6 +19632,7 @@ export declare const messengerContract: {
19131
19632
  channelId?: string | undefined;
19132
19633
  status?: "active" | "pending" | undefined;
19133
19634
  apiKey?: string | undefined;
19635
+ tier?: "basic" | "regular" | "premium" | undefined;
19134
19636
  } | undefined;
19135
19637
  vonageCredentials?: {
19136
19638
  apiKey: string;
@@ -19176,6 +19678,7 @@ export declare const messengerContract: {
19176
19678
  channelId?: string | undefined;
19177
19679
  status?: "active" | "pending" | undefined;
19178
19680
  apiKey?: string | undefined;
19681
+ tier?: "basic" | "regular" | "premium" | undefined;
19179
19682
  } | undefined;
19180
19683
  vonageCredentials?: {
19181
19684
  apiKey: string;
@@ -19257,6 +19760,7 @@ export declare const messengerContract: {
19257
19760
  channelId: z.ZodOptional<z.ZodString>;
19258
19761
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19259
19762
  apiKey: z.ZodOptional<z.ZodString>;
19763
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19260
19764
  }, "strip", z.ZodTypeAny, {
19261
19765
  email: string;
19262
19766
  wabaExternalId: string;
@@ -19266,6 +19770,7 @@ export declare const messengerContract: {
19266
19770
  channelId?: string | undefined;
19267
19771
  status?: "active" | "pending" | undefined;
19268
19772
  apiKey?: string | undefined;
19773
+ tier?: "basic" | "regular" | "premium" | undefined;
19269
19774
  }, {
19270
19775
  email: string;
19271
19776
  wabaExternalId: string;
@@ -19275,6 +19780,7 @@ export declare const messengerContract: {
19275
19780
  channelId?: string | undefined;
19276
19781
  status?: "active" | "pending" | undefined;
19277
19782
  apiKey?: string | undefined;
19783
+ tier?: "basic" | "regular" | "premium" | undefined;
19278
19784
  }>>;
19279
19785
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19280
19786
  mobileNumber: z.ZodString;
@@ -19307,6 +19813,7 @@ export declare const messengerContract: {
19307
19813
  channelId?: string | undefined;
19308
19814
  status?: "active" | "pending" | undefined;
19309
19815
  apiKey?: string | undefined;
19816
+ tier?: "basic" | "regular" | "premium" | undefined;
19310
19817
  } | undefined;
19311
19818
  vonageCredentials?: {
19312
19819
  apiKey: string;
@@ -19331,6 +19838,7 @@ export declare const messengerContract: {
19331
19838
  channelId?: string | undefined;
19332
19839
  status?: "active" | "pending" | undefined;
19333
19840
  apiKey?: string | undefined;
19841
+ tier?: "basic" | "regular" | "premium" | undefined;
19334
19842
  } | undefined;
19335
19843
  vonageCredentials?: {
19336
19844
  apiKey: string;
@@ -19385,6 +19893,7 @@ export declare const messengerContract: {
19385
19893
  channelId?: string | undefined;
19386
19894
  status?: "active" | "pending" | undefined;
19387
19895
  apiKey?: string | undefined;
19896
+ tier?: "basic" | "regular" | "premium" | undefined;
19388
19897
  } | undefined;
19389
19898
  vonageCredentials?: {
19390
19899
  apiKey: string;
@@ -19427,6 +19936,7 @@ export declare const messengerContract: {
19427
19936
  channelId?: string | undefined;
19428
19937
  status?: "active" | "pending" | undefined;
19429
19938
  apiKey?: string | undefined;
19939
+ tier?: "basic" | "regular" | "premium" | undefined;
19430
19940
  } | undefined;
19431
19941
  vonageCredentials?: {
19432
19942
  apiKey: string;
@@ -19471,6 +19981,7 @@ export declare const messengerContract: {
19471
19981
  channelId?: string | undefined;
19472
19982
  status?: "active" | "pending" | undefined;
19473
19983
  apiKey?: string | undefined;
19984
+ tier?: "basic" | "regular" | "premium" | undefined;
19474
19985
  } | undefined;
19475
19986
  vonageCredentials?: {
19476
19987
  apiKey: string;
@@ -19516,6 +20027,7 @@ export declare const messengerContract: {
19516
20027
  channelId?: string | undefined;
19517
20028
  status?: "active" | "pending" | undefined;
19518
20029
  apiKey?: string | undefined;
20030
+ tier?: "basic" | "regular" | "premium" | undefined;
19519
20031
  } | undefined;
19520
20032
  vonageCredentials?: {
19521
20033
  apiKey: string;
@@ -19597,6 +20109,7 @@ export declare const messengerContract: {
19597
20109
  channelId: z.ZodOptional<z.ZodString>;
19598
20110
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19599
20111
  apiKey: z.ZodOptional<z.ZodString>;
20112
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19600
20113
  }, "strip", z.ZodTypeAny, {
19601
20114
  email: string;
19602
20115
  wabaExternalId: string;
@@ -19606,6 +20119,7 @@ export declare const messengerContract: {
19606
20119
  channelId?: string | undefined;
19607
20120
  status?: "active" | "pending" | undefined;
19608
20121
  apiKey?: string | undefined;
20122
+ tier?: "basic" | "regular" | "premium" | undefined;
19609
20123
  }, {
19610
20124
  email: string;
19611
20125
  wabaExternalId: string;
@@ -19615,6 +20129,7 @@ export declare const messengerContract: {
19615
20129
  channelId?: string | undefined;
19616
20130
  status?: "active" | "pending" | undefined;
19617
20131
  apiKey?: string | undefined;
20132
+ tier?: "basic" | "regular" | "premium" | undefined;
19618
20133
  }>>;
19619
20134
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19620
20135
  mobileNumber: z.ZodString;
@@ -19647,6 +20162,7 @@ export declare const messengerContract: {
19647
20162
  channelId?: string | undefined;
19648
20163
  status?: "active" | "pending" | undefined;
19649
20164
  apiKey?: string | undefined;
20165
+ tier?: "basic" | "regular" | "premium" | undefined;
19650
20166
  } | undefined;
19651
20167
  vonageCredentials?: {
19652
20168
  apiKey: string;
@@ -19671,6 +20187,7 @@ export declare const messengerContract: {
19671
20187
  channelId?: string | undefined;
19672
20188
  status?: "active" | "pending" | undefined;
19673
20189
  apiKey?: string | undefined;
20190
+ tier?: "basic" | "regular" | "premium" | undefined;
19674
20191
  } | undefined;
19675
20192
  vonageCredentials?: {
19676
20193
  apiKey: string;
@@ -19725,6 +20242,7 @@ export declare const messengerContract: {
19725
20242
  channelId?: string | undefined;
19726
20243
  status?: "active" | "pending" | undefined;
19727
20244
  apiKey?: string | undefined;
20245
+ tier?: "basic" | "regular" | "premium" | undefined;
19728
20246
  } | undefined;
19729
20247
  vonageCredentials?: {
19730
20248
  apiKey: string;
@@ -19767,6 +20285,7 @@ export declare const messengerContract: {
19767
20285
  channelId?: string | undefined;
19768
20286
  status?: "active" | "pending" | undefined;
19769
20287
  apiKey?: string | undefined;
20288
+ tier?: "basic" | "regular" | "premium" | undefined;
19770
20289
  } | undefined;
19771
20290
  vonageCredentials?: {
19772
20291
  apiKey: string;
@@ -19811,6 +20330,7 @@ export declare const messengerContract: {
19811
20330
  channelId?: string | undefined;
19812
20331
  status?: "active" | "pending" | undefined;
19813
20332
  apiKey?: string | undefined;
20333
+ tier?: "basic" | "regular" | "premium" | undefined;
19814
20334
  } | undefined;
19815
20335
  vonageCredentials?: {
19816
20336
  apiKey: string;
@@ -19856,6 +20376,7 @@ export declare const messengerContract: {
19856
20376
  channelId?: string | undefined;
19857
20377
  status?: "active" | "pending" | undefined;
19858
20378
  apiKey?: string | undefined;
20379
+ tier?: "basic" | "regular" | "premium" | undefined;
19859
20380
  } | undefined;
19860
20381
  vonageCredentials?: {
19861
20382
  apiKey: string;
@@ -19924,6 +20445,7 @@ export declare const messengerContract: {
19924
20445
  channelId: z.ZodOptional<z.ZodString>;
19925
20446
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19926
20447
  apiKey: z.ZodOptional<z.ZodString>;
20448
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19927
20449
  }, "strip", z.ZodTypeAny, {
19928
20450
  email: string;
19929
20451
  wabaExternalId: string;
@@ -19933,6 +20455,7 @@ export declare const messengerContract: {
19933
20455
  channelId?: string | undefined;
19934
20456
  status?: "active" | "pending" | undefined;
19935
20457
  apiKey?: string | undefined;
20458
+ tier?: "basic" | "regular" | "premium" | undefined;
19936
20459
  }, {
19937
20460
  email: string;
19938
20461
  wabaExternalId: string;
@@ -19942,6 +20465,7 @@ export declare const messengerContract: {
19942
20465
  channelId?: string | undefined;
19943
20466
  status?: "active" | "pending" | undefined;
19944
20467
  apiKey?: string | undefined;
20468
+ tier?: "basic" | "regular" | "premium" | undefined;
19945
20469
  }>>;
19946
20470
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19947
20471
  mobileNumber: z.ZodString;
@@ -19974,6 +20498,7 @@ export declare const messengerContract: {
19974
20498
  channelId?: string | undefined;
19975
20499
  status?: "active" | "pending" | undefined;
19976
20500
  apiKey?: string | undefined;
20501
+ tier?: "basic" | "regular" | "premium" | undefined;
19977
20502
  } | undefined;
19978
20503
  vonageCredentials?: {
19979
20504
  apiKey: string;
@@ -19998,6 +20523,7 @@ export declare const messengerContract: {
19998
20523
  channelId?: string | undefined;
19999
20524
  status?: "active" | "pending" | undefined;
20000
20525
  apiKey?: string | undefined;
20526
+ tier?: "basic" | "regular" | "premium" | undefined;
20001
20527
  } | undefined;
20002
20528
  vonageCredentials?: {
20003
20529
  apiKey: string;
@@ -20057,6 +20583,7 @@ export declare const messengerContract: {
20057
20583
  channelId?: string | undefined;
20058
20584
  status?: "active" | "pending" | undefined;
20059
20585
  apiKey?: string | undefined;
20586
+ tier?: "basic" | "regular" | "premium" | undefined;
20060
20587
  } | undefined;
20061
20588
  vonageCredentials?: {
20062
20589
  apiKey: string;
@@ -20103,6 +20630,7 @@ export declare const messengerContract: {
20103
20630
  channelId?: string | undefined;
20104
20631
  status?: "active" | "pending" | undefined;
20105
20632
  apiKey?: string | undefined;
20633
+ tier?: "basic" | "regular" | "premium" | undefined;
20106
20634
  } | undefined;
20107
20635
  vonageCredentials?: {
20108
20636
  apiKey: string;
@@ -20154,6 +20682,7 @@ export declare const messengerContract: {
20154
20682
  channelId: z.ZodOptional<z.ZodString>;
20155
20683
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20156
20684
  apiKey: z.ZodOptional<z.ZodString>;
20685
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20157
20686
  }, "strip", z.ZodTypeAny, {
20158
20687
  email: string;
20159
20688
  wabaExternalId: string;
@@ -20163,6 +20692,7 @@ export declare const messengerContract: {
20163
20692
  channelId?: string | undefined;
20164
20693
  status?: "active" | "pending" | undefined;
20165
20694
  apiKey?: string | undefined;
20695
+ tier?: "basic" | "regular" | "premium" | undefined;
20166
20696
  }, {
20167
20697
  email: string;
20168
20698
  wabaExternalId: string;
@@ -20172,6 +20702,7 @@ export declare const messengerContract: {
20172
20702
  channelId?: string | undefined;
20173
20703
  status?: "active" | "pending" | undefined;
20174
20704
  apiKey?: string | undefined;
20705
+ tier?: "basic" | "regular" | "premium" | undefined;
20175
20706
  }>>;
20176
20707
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20177
20708
  mobileNumber: z.ZodString;
@@ -20204,6 +20735,7 @@ export declare const messengerContract: {
20204
20735
  channelId?: string | undefined;
20205
20736
  status?: "active" | "pending" | undefined;
20206
20737
  apiKey?: string | undefined;
20738
+ tier?: "basic" | "regular" | "premium" | undefined;
20207
20739
  } | undefined;
20208
20740
  vonageCredentials?: {
20209
20741
  apiKey: string;
@@ -20228,6 +20760,7 @@ export declare const messengerContract: {
20228
20760
  channelId?: string | undefined;
20229
20761
  status?: "active" | "pending" | undefined;
20230
20762
  apiKey?: string | undefined;
20763
+ tier?: "basic" | "regular" | "premium" | undefined;
20231
20764
  } | undefined;
20232
20765
  vonageCredentials?: {
20233
20766
  apiKey: string;
@@ -20282,6 +20815,7 @@ export declare const messengerContract: {
20282
20815
  channelId?: string | undefined;
20283
20816
  status?: "active" | "pending" | undefined;
20284
20817
  apiKey?: string | undefined;
20818
+ tier?: "basic" | "regular" | "premium" | undefined;
20285
20819
  } | undefined;
20286
20820
  vonageCredentials?: {
20287
20821
  apiKey: string;
@@ -20324,6 +20858,7 @@ export declare const messengerContract: {
20324
20858
  channelId?: string | undefined;
20325
20859
  status?: "active" | "pending" | undefined;
20326
20860
  apiKey?: string | undefined;
20861
+ tier?: "basic" | "regular" | "premium" | undefined;
20327
20862
  } | undefined;
20328
20863
  vonageCredentials?: {
20329
20864
  apiKey: string;
@@ -20368,6 +20903,7 @@ export declare const messengerContract: {
20368
20903
  channelId?: string | undefined;
20369
20904
  status?: "active" | "pending" | undefined;
20370
20905
  apiKey?: string | undefined;
20906
+ tier?: "basic" | "regular" | "premium" | undefined;
20371
20907
  } | undefined;
20372
20908
  vonageCredentials?: {
20373
20909
  apiKey: string;
@@ -20413,6 +20949,7 @@ export declare const messengerContract: {
20413
20949
  channelId?: string | undefined;
20414
20950
  status?: "active" | "pending" | undefined;
20415
20951
  apiKey?: string | undefined;
20952
+ tier?: "basic" | "regular" | "premium" | undefined;
20416
20953
  } | undefined;
20417
20954
  vonageCredentials?: {
20418
20955
  apiKey: string;