@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
@@ -150,6 +150,7 @@ export declare const whatsappContract: {
150
150
  channelId: z.ZodOptional<z.ZodString>;
151
151
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
152
152
  apiKey: z.ZodOptional<z.ZodString>;
153
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
153
154
  }, "strip", z.ZodTypeAny, {
154
155
  email: string;
155
156
  wabaExternalId: string;
@@ -159,6 +160,7 @@ export declare const whatsappContract: {
159
160
  channelId?: string | undefined;
160
161
  status?: "active" | "pending" | undefined;
161
162
  apiKey?: string | undefined;
163
+ tier?: "basic" | "regular" | "premium" | undefined;
162
164
  }, {
163
165
  email: string;
164
166
  wabaExternalId: string;
@@ -168,6 +170,7 @@ export declare const whatsappContract: {
168
170
  channelId?: string | undefined;
169
171
  status?: "active" | "pending" | undefined;
170
172
  apiKey?: string | undefined;
173
+ tier?: "basic" | "regular" | "premium" | undefined;
171
174
  }>>;
172
175
  vonageCredentials: z.ZodOptional<z.ZodObject<{
173
176
  mobileNumber: z.ZodString;
@@ -200,6 +203,7 @@ export declare const whatsappContract: {
200
203
  channelId?: string | undefined;
201
204
  status?: "active" | "pending" | undefined;
202
205
  apiKey?: string | undefined;
206
+ tier?: "basic" | "regular" | "premium" | undefined;
203
207
  } | undefined;
204
208
  vonageCredentials?: {
205
209
  apiKey: string;
@@ -224,6 +228,7 @@ export declare const whatsappContract: {
224
228
  channelId?: string | undefined;
225
229
  status?: "active" | "pending" | undefined;
226
230
  apiKey?: string | undefined;
231
+ tier?: "basic" | "regular" | "premium" | undefined;
227
232
  } | undefined;
228
233
  vonageCredentials?: {
229
234
  apiKey: string;
@@ -278,6 +283,7 @@ export declare const whatsappContract: {
278
283
  channelId?: string | undefined;
279
284
  status?: "active" | "pending" | undefined;
280
285
  apiKey?: string | undefined;
286
+ tier?: "basic" | "regular" | "premium" | undefined;
281
287
  } | undefined;
282
288
  vonageCredentials?: {
283
289
  apiKey: string;
@@ -320,6 +326,7 @@ export declare const whatsappContract: {
320
326
  channelId?: string | undefined;
321
327
  status?: "active" | "pending" | undefined;
322
328
  apiKey?: string | undefined;
329
+ tier?: "basic" | "regular" | "premium" | undefined;
323
330
  } | undefined;
324
331
  vonageCredentials?: {
325
332
  apiKey: string;
@@ -344,7 +351,7 @@ export declare const whatsappContract: {
344
351
  } | undefined;
345
352
  }>;
346
353
  messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
347
- telegramBusinessConnectionId: z.ZodNullable<z.ZodString>;
354
+ telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
348
355
  }, "strip", z.ZodTypeAny, {
349
356
  id: string;
350
357
  channel: {
@@ -367,6 +374,7 @@ export declare const whatsappContract: {
367
374
  channelId?: string | undefined;
368
375
  status?: "active" | "pending" | undefined;
369
376
  apiKey?: string | undefined;
377
+ tier?: "basic" | "regular" | "premium" | undefined;
370
378
  } | undefined;
371
379
  vonageCredentials?: {
372
380
  apiKey: string;
@@ -426,11 +434,11 @@ export declare const whatsappContract: {
426
434
  id: string;
427
435
  email: string;
428
436
  } | null;
429
- telegramBusinessConnectionId: string | null;
430
437
  lastMessage?: string | undefined;
431
438
  handleTime?: number | undefined;
432
439
  metadata?: any;
433
440
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
441
+ telegramBusinessConnectionId?: string | null | undefined;
434
442
  }, {
435
443
  id: string;
436
444
  channel: {
@@ -453,6 +461,7 @@ export declare const whatsappContract: {
453
461
  channelId?: string | undefined;
454
462
  status?: "active" | "pending" | undefined;
455
463
  apiKey?: string | undefined;
464
+ tier?: "basic" | "regular" | "premium" | undefined;
456
465
  } | undefined;
457
466
  vonageCredentials?: {
458
467
  apiKey: string;
@@ -512,17 +521,17 @@ export declare const whatsappContract: {
512
521
  id: string;
513
522
  email: string;
514
523
  } | null;
515
- telegramBusinessConnectionId: string | null;
516
524
  lastMessage?: string | undefined;
517
525
  handleTime?: number | undefined;
518
526
  metadata?: any;
519
527
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
528
+ telegramBusinessConnectionId?: string | null | undefined;
520
529
  }>;
521
530
  message: z.ZodObject<{
522
531
  id: z.ZodOptional<z.ZodString>;
523
532
  message: z.ZodOptional<z.ZodString>;
524
533
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
525
- 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"]>;
534
+ 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"]>;
526
535
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
527
536
  metadata: z.ZodOptional<z.ZodAny>;
528
537
  platformId: z.ZodOptional<z.ZodString>;
@@ -578,7 +587,7 @@ export declare const whatsappContract: {
578
587
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
579
588
  label: z.ZodOptional<z.ZodString>;
580
589
  }, "strip", z.ZodTypeAny, {
581
- 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";
590
+ 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";
582
591
  direction: "incoming" | "outgoing" | "system";
583
592
  id?: string | undefined;
584
593
  message?: string | undefined;
@@ -613,7 +622,7 @@ export declare const whatsappContract: {
613
622
  editedAt?: string | Date | null | undefined;
614
623
  label?: string | undefined;
615
624
  }, {
616
- 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";
625
+ 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";
617
626
  direction: "incoming" | "outgoing" | "system";
618
627
  id?: string | undefined;
619
628
  message?: string | undefined;
@@ -650,7 +659,7 @@ export declare const whatsappContract: {
650
659
  }>;
651
660
  }, "strip", z.ZodTypeAny, {
652
661
  message: {
653
- 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";
662
+ 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";
654
663
  direction: "incoming" | "outgoing" | "system";
655
664
  id?: string | undefined;
656
665
  message?: string | undefined;
@@ -707,6 +716,7 @@ export declare const whatsappContract: {
707
716
  channelId?: string | undefined;
708
717
  status?: "active" | "pending" | undefined;
709
718
  apiKey?: string | undefined;
719
+ tier?: "basic" | "regular" | "premium" | undefined;
710
720
  } | undefined;
711
721
  vonageCredentials?: {
712
722
  apiKey: string;
@@ -766,16 +776,16 @@ export declare const whatsappContract: {
766
776
  id: string;
767
777
  email: string;
768
778
  } | null;
769
- telegramBusinessConnectionId: string | null;
770
779
  lastMessage?: string | undefined;
771
780
  handleTime?: number | undefined;
772
781
  metadata?: any;
773
782
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
783
+ telegramBusinessConnectionId?: string | null | undefined;
774
784
  };
775
785
  isBot: boolean | null;
776
786
  }, {
777
787
  message: {
778
- 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";
788
+ 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";
779
789
  direction: "incoming" | "outgoing" | "system";
780
790
  id?: string | undefined;
781
791
  message?: string | undefined;
@@ -832,6 +842,7 @@ export declare const whatsappContract: {
832
842
  channelId?: string | undefined;
833
843
  status?: "active" | "pending" | undefined;
834
844
  apiKey?: string | undefined;
845
+ tier?: "basic" | "regular" | "premium" | undefined;
835
846
  } | undefined;
836
847
  vonageCredentials?: {
837
848
  apiKey: string;
@@ -891,11 +902,11 @@ export declare const whatsappContract: {
891
902
  id: string;
892
903
  email: string;
893
904
  } | null;
894
- telegramBusinessConnectionId: string | null;
895
905
  lastMessage?: string | undefined;
896
906
  handleTime?: number | undefined;
897
907
  metadata?: any;
898
908
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
909
+ telegramBusinessConnectionId?: string | null | undefined;
899
910
  };
900
911
  isBot?: boolean | null | undefined;
901
912
  }>;
@@ -904,7 +915,7 @@ export declare const whatsappContract: {
904
915
  200: z.ZodObject<{
905
916
  requestId: z.ZodString;
906
917
  data: z.ZodObject<{
907
- 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"]>;
918
+ 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"]>;
908
919
  message: z.ZodString;
909
920
  id: z.ZodString;
910
921
  url: z.ZodString;
@@ -2852,6 +2863,7 @@ export declare const whatsappContract: {
2852
2863
  channelId: z.ZodOptional<z.ZodString>;
2853
2864
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2854
2865
  apiKey: z.ZodOptional<z.ZodString>;
2866
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2855
2867
  }, "strip", z.ZodTypeAny, {
2856
2868
  email: string;
2857
2869
  wabaExternalId: string;
@@ -2861,6 +2873,7 @@ export declare const whatsappContract: {
2861
2873
  channelId?: string | undefined;
2862
2874
  status?: "active" | "pending" | undefined;
2863
2875
  apiKey?: string | undefined;
2876
+ tier?: "basic" | "regular" | "premium" | undefined;
2864
2877
  }, {
2865
2878
  email: string;
2866
2879
  wabaExternalId: string;
@@ -2870,6 +2883,7 @@ export declare const whatsappContract: {
2870
2883
  channelId?: string | undefined;
2871
2884
  status?: "active" | "pending" | undefined;
2872
2885
  apiKey?: string | undefined;
2886
+ tier?: "basic" | "regular" | "premium" | undefined;
2873
2887
  }>>;
2874
2888
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2875
2889
  mobileNumber: z.ZodString;
@@ -2902,6 +2916,7 @@ export declare const whatsappContract: {
2902
2916
  channelId?: string | undefined;
2903
2917
  status?: "active" | "pending" | undefined;
2904
2918
  apiKey?: string | undefined;
2919
+ tier?: "basic" | "regular" | "premium" | undefined;
2905
2920
  } | undefined;
2906
2921
  vonageCredentials?: {
2907
2922
  apiKey: string;
@@ -2926,6 +2941,7 @@ export declare const whatsappContract: {
2926
2941
  channelId?: string | undefined;
2927
2942
  status?: "active" | "pending" | undefined;
2928
2943
  apiKey?: string | undefined;
2944
+ tier?: "basic" | "regular" | "premium" | undefined;
2929
2945
  } | undefined;
2930
2946
  vonageCredentials?: {
2931
2947
  apiKey: string;
@@ -3184,6 +3200,7 @@ export declare const whatsappContract: {
3184
3200
  channelId?: string | undefined;
3185
3201
  status?: "active" | "pending" | undefined;
3186
3202
  apiKey?: string | undefined;
3203
+ tier?: "basic" | "regular" | "premium" | undefined;
3187
3204
  } | undefined;
3188
3205
  vonageCredentials?: {
3189
3206
  apiKey: string;
@@ -3273,6 +3290,7 @@ export declare const whatsappContract: {
3273
3290
  channelId?: string | undefined;
3274
3291
  status?: "active" | "pending" | undefined;
3275
3292
  apiKey?: string | undefined;
3293
+ tier?: "basic" | "regular" | "premium" | undefined;
3276
3294
  } | undefined;
3277
3295
  vonageCredentials?: {
3278
3296
  apiKey: string;
@@ -3345,17 +3363,17 @@ export declare const whatsappContract: {
3345
3363
  }>;
3346
3364
  cxlog: z.ZodObject<{
3347
3365
  id: z.ZodString;
3366
+ channel: z.ZodNullable<z.ZodString>;
3367
+ direction: z.ZodNullable<z.ZodString>;
3348
3368
  createdAt: z.ZodDate;
3349
3369
  updatedAt: z.ZodDate;
3350
3370
  deletedAt: z.ZodNullable<z.ZodDate>;
3351
- caseId: z.ZodNumber;
3352
3371
  entityId: z.ZodString;
3353
- entityName: z.ZodString;
3354
- contactId: z.ZodNullable<z.ZodString>;
3355
- channel: z.ZodNullable<z.ZodString>;
3356
3372
  queueId: z.ZodNullable<z.ZodString>;
3373
+ contactId: z.ZodNullable<z.ZodString>;
3374
+ caseId: z.ZodNumber;
3375
+ entityName: z.ZodString;
3357
3376
  agentId: z.ZodNullable<z.ZodString>;
3358
- direction: z.ZodNullable<z.ZodString>;
3359
3377
  startedDate: z.ZodNullable<z.ZodDate>;
3360
3378
  handledTime: z.ZodNullable<z.ZodNumber>;
3361
3379
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
@@ -3625,6 +3643,69 @@ export declare const whatsappContract: {
3625
3643
  dateValue: Date | null;
3626
3644
  }[] | null | undefined;
3627
3645
  }>>;
3646
+ holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3647
+ id: z.ZodString;
3648
+ createdAt: z.ZodDate;
3649
+ updatedAt: z.ZodDate;
3650
+ deletedAt: z.ZodNullable<z.ZodDate>;
3651
+ startedAt: z.ZodString;
3652
+ endedAt: z.ZodNullable<z.ZodString>;
3653
+ duration: z.ZodNullable<z.ZodNumber>;
3654
+ holdLabel: z.ZodObject<{
3655
+ id: z.ZodString;
3656
+ createdAt: z.ZodDate;
3657
+ updatedAt: z.ZodDate;
3658
+ deletedAt: z.ZodNullable<z.ZodDate>;
3659
+ name: z.ZodString;
3660
+ position: z.ZodNumber;
3661
+ }, "strip", z.ZodTypeAny, {
3662
+ name: string;
3663
+ id: string;
3664
+ position: number;
3665
+ createdAt: Date;
3666
+ updatedAt: Date;
3667
+ deletedAt: Date | null;
3668
+ }, {
3669
+ name: string;
3670
+ id: string;
3671
+ position: number;
3672
+ createdAt: Date;
3673
+ updatedAt: Date;
3674
+ deletedAt: Date | null;
3675
+ }>;
3676
+ }, "strip", z.ZodTypeAny, {
3677
+ id: string;
3678
+ createdAt: Date;
3679
+ updatedAt: Date;
3680
+ deletedAt: Date | null;
3681
+ startedAt: string;
3682
+ endedAt: string | null;
3683
+ duration: number | null;
3684
+ holdLabel: {
3685
+ name: string;
3686
+ id: string;
3687
+ position: number;
3688
+ createdAt: Date;
3689
+ updatedAt: Date;
3690
+ deletedAt: Date | null;
3691
+ };
3692
+ }, {
3693
+ id: string;
3694
+ createdAt: Date;
3695
+ updatedAt: Date;
3696
+ deletedAt: Date | null;
3697
+ startedAt: string;
3698
+ endedAt: string | null;
3699
+ duration: number | null;
3700
+ holdLabel: {
3701
+ name: string;
3702
+ id: string;
3703
+ position: number;
3704
+ createdAt: Date;
3705
+ updatedAt: Date;
3706
+ deletedAt: Date | null;
3707
+ };
3708
+ }>, "many">>>;
3628
3709
  }, "strip", z.ZodTypeAny, {
3629
3710
  id: string;
3630
3711
  channel: string | null;
@@ -3693,6 +3774,23 @@ export declare const whatsappContract: {
3693
3774
  dateValue: Date | null;
3694
3775
  }[] | null | undefined;
3695
3776
  } | null;
3777
+ holdLogs?: {
3778
+ id: string;
3779
+ createdAt: Date;
3780
+ updatedAt: Date;
3781
+ deletedAt: Date | null;
3782
+ startedAt: string;
3783
+ endedAt: string | null;
3784
+ duration: number | null;
3785
+ holdLabel: {
3786
+ name: string;
3787
+ id: string;
3788
+ position: number;
3789
+ createdAt: Date;
3790
+ updatedAt: Date;
3791
+ deletedAt: Date | null;
3792
+ };
3793
+ }[] | null | undefined;
3696
3794
  }, {
3697
3795
  id: string;
3698
3796
  channel: string | null;
@@ -3761,6 +3859,23 @@ export declare const whatsappContract: {
3761
3859
  dateValue: Date | null;
3762
3860
  }[] | null | undefined;
3763
3861
  } | null;
3862
+ holdLogs?: {
3863
+ id: string;
3864
+ createdAt: Date;
3865
+ updatedAt: Date;
3866
+ deletedAt: Date | null;
3867
+ startedAt: string;
3868
+ endedAt: string | null;
3869
+ duration: number | null;
3870
+ holdLabel: {
3871
+ name: string;
3872
+ id: string;
3873
+ position: number;
3874
+ createdAt: Date;
3875
+ updatedAt: Date;
3876
+ deletedAt: Date | null;
3877
+ };
3878
+ }[] | null | undefined;
3764
3879
  }>;
3765
3880
  workflowRule: z.ZodObject<{
3766
3881
  id: z.ZodString;
@@ -3810,6 +3925,7 @@ export declare const whatsappContract: {
3810
3925
  channelId?: string | undefined;
3811
3926
  status?: "active" | "pending" | undefined;
3812
3927
  apiKey?: string | undefined;
3928
+ tier?: "basic" | "regular" | "premium" | undefined;
3813
3929
  } | undefined;
3814
3930
  vonageCredentials?: {
3815
3931
  apiKey: string;
@@ -4177,6 +4293,23 @@ export declare const whatsappContract: {
4177
4293
  dateValue: Date | null;
4178
4294
  }[] | null | undefined;
4179
4295
  } | null;
4296
+ holdLogs?: {
4297
+ id: string;
4298
+ createdAt: Date;
4299
+ updatedAt: Date;
4300
+ deletedAt: Date | null;
4301
+ startedAt: string;
4302
+ endedAt: string | null;
4303
+ duration: number | null;
4304
+ holdLabel: {
4305
+ name: string;
4306
+ id: string;
4307
+ position: number;
4308
+ createdAt: Date;
4309
+ updatedAt: Date;
4310
+ deletedAt: Date | null;
4311
+ };
4312
+ }[] | null | undefined;
4180
4313
  };
4181
4314
  workflowRule: {
4182
4315
  name: string;
@@ -4210,6 +4343,7 @@ export declare const whatsappContract: {
4210
4343
  channelId?: string | undefined;
4211
4344
  status?: "active" | "pending" | undefined;
4212
4345
  apiKey?: string | undefined;
4346
+ tier?: "basic" | "regular" | "premium" | undefined;
4213
4347
  } | undefined;
4214
4348
  vonageCredentials?: {
4215
4349
  apiKey: string;
@@ -4577,6 +4711,23 @@ export declare const whatsappContract: {
4577
4711
  dateValue: Date | null;
4578
4712
  }[] | null | undefined;
4579
4713
  } | null;
4714
+ holdLogs?: {
4715
+ id: string;
4716
+ createdAt: Date;
4717
+ updatedAt: Date;
4718
+ deletedAt: Date | null;
4719
+ startedAt: string;
4720
+ endedAt: string | null;
4721
+ duration: number | null;
4722
+ holdLabel: {
4723
+ name: string;
4724
+ id: string;
4725
+ position: number;
4726
+ createdAt: Date;
4727
+ updatedAt: Date;
4728
+ deletedAt: Date | null;
4729
+ };
4730
+ }[] | null | undefined;
4580
4731
  };
4581
4732
  workflowRule: {
4582
4733
  name: string;
@@ -4627,7 +4778,7 @@ export declare const whatsappContract: {
4627
4778
  deletedAt: z.ZodNullable<z.ZodDate>;
4628
4779
  message: z.ZodString;
4629
4780
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
4630
- 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"]>;
4781
+ 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"]>;
4631
4782
  readAt: z.ZodDate;
4632
4783
  metadata: z.ZodAny;
4633
4784
  platformId: z.ZodString;
@@ -5285,7 +5436,7 @@ export declare const whatsappContract: {
5285
5436
  };
5286
5437
  }>;
5287
5438
  }, "strip", z.ZodTypeAny, {
5288
- 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";
5439
+ 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";
5289
5440
  message: string;
5290
5441
  id: string;
5291
5442
  url: string;
@@ -5447,7 +5598,7 @@ export declare const whatsappContract: {
5447
5598
  metadata?: any;
5448
5599
  template?: any;
5449
5600
  }, {
5450
- 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";
5601
+ 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";
5451
5602
  message: string;
5452
5603
  id: string;
5453
5604
  url: string;
@@ -5821,7 +5972,7 @@ export declare const whatsappContract: {
5821
5972
  deletedAt: z.ZodNullable<z.ZodDate>;
5822
5973
  message: z.ZodString;
5823
5974
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
5824
- 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"]>;
5975
+ 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"]>;
5825
5976
  readAt: z.ZodDate;
5826
5977
  metadata: z.ZodAny;
5827
5978
  platformId: z.ZodString;
@@ -7326,6 +7477,7 @@ export declare const whatsappContract: {
7326
7477
  channelId: z.ZodOptional<z.ZodString>;
7327
7478
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7328
7479
  apiKey: z.ZodOptional<z.ZodString>;
7480
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7329
7481
  }, "strip", z.ZodTypeAny, {
7330
7482
  email: string;
7331
7483
  wabaExternalId: string;
@@ -7335,6 +7487,7 @@ export declare const whatsappContract: {
7335
7487
  channelId?: string | undefined;
7336
7488
  status?: "active" | "pending" | undefined;
7337
7489
  apiKey?: string | undefined;
7490
+ tier?: "basic" | "regular" | "premium" | undefined;
7338
7491
  }, {
7339
7492
  email: string;
7340
7493
  wabaExternalId: string;
@@ -7344,6 +7497,7 @@ export declare const whatsappContract: {
7344
7497
  channelId?: string | undefined;
7345
7498
  status?: "active" | "pending" | undefined;
7346
7499
  apiKey?: string | undefined;
7500
+ tier?: "basic" | "regular" | "premium" | undefined;
7347
7501
  }>>;
7348
7502
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7349
7503
  mobileNumber: z.ZodString;
@@ -7376,6 +7530,7 @@ export declare const whatsappContract: {
7376
7530
  channelId?: string | undefined;
7377
7531
  status?: "active" | "pending" | undefined;
7378
7532
  apiKey?: string | undefined;
7533
+ tier?: "basic" | "regular" | "premium" | undefined;
7379
7534
  } | undefined;
7380
7535
  vonageCredentials?: {
7381
7536
  apiKey: string;
@@ -7400,6 +7555,7 @@ export declare const whatsappContract: {
7400
7555
  channelId?: string | undefined;
7401
7556
  status?: "active" | "pending" | undefined;
7402
7557
  apiKey?: string | undefined;
7558
+ tier?: "basic" | "regular" | "premium" | undefined;
7403
7559
  } | undefined;
7404
7560
  vonageCredentials?: {
7405
7561
  apiKey: string;
@@ -7658,6 +7814,7 @@ export declare const whatsappContract: {
7658
7814
  channelId?: string | undefined;
7659
7815
  status?: "active" | "pending" | undefined;
7660
7816
  apiKey?: string | undefined;
7817
+ tier?: "basic" | "regular" | "premium" | undefined;
7661
7818
  } | undefined;
7662
7819
  vonageCredentials?: {
7663
7820
  apiKey: string;
@@ -7747,6 +7904,7 @@ export declare const whatsappContract: {
7747
7904
  channelId?: string | undefined;
7748
7905
  status?: "active" | "pending" | undefined;
7749
7906
  apiKey?: string | undefined;
7907
+ tier?: "basic" | "regular" | "premium" | undefined;
7750
7908
  } | undefined;
7751
7909
  vonageCredentials?: {
7752
7910
  apiKey: string;
@@ -7819,17 +7977,17 @@ export declare const whatsappContract: {
7819
7977
  }>;
7820
7978
  cxlog: z.ZodObject<{
7821
7979
  id: z.ZodString;
7980
+ channel: z.ZodNullable<z.ZodString>;
7981
+ direction: z.ZodNullable<z.ZodString>;
7822
7982
  createdAt: z.ZodDate;
7823
7983
  updatedAt: z.ZodDate;
7824
7984
  deletedAt: z.ZodNullable<z.ZodDate>;
7825
- caseId: z.ZodNumber;
7826
7985
  entityId: z.ZodString;
7827
- entityName: z.ZodString;
7828
- contactId: z.ZodNullable<z.ZodString>;
7829
- channel: z.ZodNullable<z.ZodString>;
7830
7986
  queueId: z.ZodNullable<z.ZodString>;
7987
+ contactId: z.ZodNullable<z.ZodString>;
7988
+ caseId: z.ZodNumber;
7989
+ entityName: z.ZodString;
7831
7990
  agentId: z.ZodNullable<z.ZodString>;
7832
- direction: z.ZodNullable<z.ZodString>;
7833
7991
  startedDate: z.ZodNullable<z.ZodDate>;
7834
7992
  handledTime: z.ZodNullable<z.ZodNumber>;
7835
7993
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
@@ -8099,6 +8257,69 @@ export declare const whatsappContract: {
8099
8257
  dateValue: Date | null;
8100
8258
  }[] | null | undefined;
8101
8259
  }>>;
8260
+ holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
8261
+ id: z.ZodString;
8262
+ createdAt: z.ZodDate;
8263
+ updatedAt: z.ZodDate;
8264
+ deletedAt: z.ZodNullable<z.ZodDate>;
8265
+ startedAt: z.ZodString;
8266
+ endedAt: z.ZodNullable<z.ZodString>;
8267
+ duration: z.ZodNullable<z.ZodNumber>;
8268
+ holdLabel: z.ZodObject<{
8269
+ id: z.ZodString;
8270
+ createdAt: z.ZodDate;
8271
+ updatedAt: z.ZodDate;
8272
+ deletedAt: z.ZodNullable<z.ZodDate>;
8273
+ name: z.ZodString;
8274
+ position: z.ZodNumber;
8275
+ }, "strip", z.ZodTypeAny, {
8276
+ name: string;
8277
+ id: string;
8278
+ position: number;
8279
+ createdAt: Date;
8280
+ updatedAt: Date;
8281
+ deletedAt: Date | null;
8282
+ }, {
8283
+ name: string;
8284
+ id: string;
8285
+ position: number;
8286
+ createdAt: Date;
8287
+ updatedAt: Date;
8288
+ deletedAt: Date | null;
8289
+ }>;
8290
+ }, "strip", z.ZodTypeAny, {
8291
+ id: string;
8292
+ createdAt: Date;
8293
+ updatedAt: Date;
8294
+ deletedAt: Date | null;
8295
+ startedAt: string;
8296
+ endedAt: string | null;
8297
+ duration: number | null;
8298
+ holdLabel: {
8299
+ name: string;
8300
+ id: string;
8301
+ position: number;
8302
+ createdAt: Date;
8303
+ updatedAt: Date;
8304
+ deletedAt: Date | null;
8305
+ };
8306
+ }, {
8307
+ id: string;
8308
+ createdAt: Date;
8309
+ updatedAt: Date;
8310
+ deletedAt: Date | null;
8311
+ startedAt: string;
8312
+ endedAt: string | null;
8313
+ duration: number | null;
8314
+ holdLabel: {
8315
+ name: string;
8316
+ id: string;
8317
+ position: number;
8318
+ createdAt: Date;
8319
+ updatedAt: Date;
8320
+ deletedAt: Date | null;
8321
+ };
8322
+ }>, "many">>>;
8102
8323
  }, "strip", z.ZodTypeAny, {
8103
8324
  id: string;
8104
8325
  channel: string | null;
@@ -8167,6 +8388,23 @@ export declare const whatsappContract: {
8167
8388
  dateValue: Date | null;
8168
8389
  }[] | null | undefined;
8169
8390
  } | null;
8391
+ holdLogs?: {
8392
+ id: string;
8393
+ createdAt: Date;
8394
+ updatedAt: Date;
8395
+ deletedAt: Date | null;
8396
+ startedAt: string;
8397
+ endedAt: string | null;
8398
+ duration: number | null;
8399
+ holdLabel: {
8400
+ name: string;
8401
+ id: string;
8402
+ position: number;
8403
+ createdAt: Date;
8404
+ updatedAt: Date;
8405
+ deletedAt: Date | null;
8406
+ };
8407
+ }[] | null | undefined;
8170
8408
  }, {
8171
8409
  id: string;
8172
8410
  channel: string | null;
@@ -8235,6 +8473,23 @@ export declare const whatsappContract: {
8235
8473
  dateValue: Date | null;
8236
8474
  }[] | null | undefined;
8237
8475
  } | null;
8476
+ holdLogs?: {
8477
+ id: string;
8478
+ createdAt: Date;
8479
+ updatedAt: Date;
8480
+ deletedAt: Date | null;
8481
+ startedAt: string;
8482
+ endedAt: string | null;
8483
+ duration: number | null;
8484
+ holdLabel: {
8485
+ name: string;
8486
+ id: string;
8487
+ position: number;
8488
+ createdAt: Date;
8489
+ updatedAt: Date;
8490
+ deletedAt: Date | null;
8491
+ };
8492
+ }[] | null | undefined;
8238
8493
  }>;
8239
8494
  workflowRule: z.ZodObject<{
8240
8495
  id: z.ZodString;
@@ -8284,6 +8539,7 @@ export declare const whatsappContract: {
8284
8539
  channelId?: string | undefined;
8285
8540
  status?: "active" | "pending" | undefined;
8286
8541
  apiKey?: string | undefined;
8542
+ tier?: "basic" | "regular" | "premium" | undefined;
8287
8543
  } | undefined;
8288
8544
  vonageCredentials?: {
8289
8545
  apiKey: string;
@@ -8651,6 +8907,23 @@ export declare const whatsappContract: {
8651
8907
  dateValue: Date | null;
8652
8908
  }[] | null | undefined;
8653
8909
  } | null;
8910
+ holdLogs?: {
8911
+ id: string;
8912
+ createdAt: Date;
8913
+ updatedAt: Date;
8914
+ deletedAt: Date | null;
8915
+ startedAt: string;
8916
+ endedAt: string | null;
8917
+ duration: number | null;
8918
+ holdLabel: {
8919
+ name: string;
8920
+ id: string;
8921
+ position: number;
8922
+ createdAt: Date;
8923
+ updatedAt: Date;
8924
+ deletedAt: Date | null;
8925
+ };
8926
+ }[] | null | undefined;
8654
8927
  };
8655
8928
  workflowRule: {
8656
8929
  name: string;
@@ -8684,6 +8957,7 @@ export declare const whatsappContract: {
8684
8957
  channelId?: string | undefined;
8685
8958
  status?: "active" | "pending" | undefined;
8686
8959
  apiKey?: string | undefined;
8960
+ tier?: "basic" | "regular" | "premium" | undefined;
8687
8961
  } | undefined;
8688
8962
  vonageCredentials?: {
8689
8963
  apiKey: string;
@@ -9051,6 +9325,23 @@ export declare const whatsappContract: {
9051
9325
  dateValue: Date | null;
9052
9326
  }[] | null | undefined;
9053
9327
  } | null;
9328
+ holdLogs?: {
9329
+ id: string;
9330
+ createdAt: Date;
9331
+ updatedAt: Date;
9332
+ deletedAt: Date | null;
9333
+ startedAt: string;
9334
+ endedAt: string | null;
9335
+ duration: number | null;
9336
+ holdLabel: {
9337
+ name: string;
9338
+ id: string;
9339
+ position: number;
9340
+ createdAt: Date;
9341
+ updatedAt: Date;
9342
+ deletedAt: Date | null;
9343
+ };
9344
+ }[] | null | undefined;
9054
9345
  };
9055
9346
  workflowRule: {
9056
9347
  name: string;
@@ -9104,7 +9395,7 @@ export declare const whatsappContract: {
9104
9395
  deletedAt: z.ZodNullable<z.ZodDate>;
9105
9396
  message: z.ZodString;
9106
9397
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
9107
- 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"]>;
9398
+ 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"]>;
9108
9399
  readAt: z.ZodDate;
9109
9400
  metadata: z.ZodAny;
9110
9401
  platformId: z.ZodString;
@@ -9762,7 +10053,7 @@ export declare const whatsappContract: {
9762
10053
  };
9763
10054
  }>;
9764
10055
  }, "strip", z.ZodTypeAny, {
9765
- 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";
10056
+ 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";
9766
10057
  message: string;
9767
10058
  id: string;
9768
10059
  url: string;
@@ -9924,7 +10215,7 @@ export declare const whatsappContract: {
9924
10215
  metadata?: any;
9925
10216
  template?: any;
9926
10217
  }, {
9927
- 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";
10218
+ 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";
9928
10219
  message: string;
9929
10220
  id: string;
9930
10221
  url: string;
@@ -10726,7 +11017,7 @@ export declare const whatsappContract: {
10726
11017
  editedMessageid: z.ZodString;
10727
11018
  label: z.ZodOptional<z.ZodString>;
10728
11019
  }, "strip", z.ZodTypeAny, {
10729
- 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";
11020
+ 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";
10730
11021
  message: string;
10731
11022
  id: string;
10732
11023
  url: string;
@@ -10857,6 +11148,7 @@ export declare const whatsappContract: {
10857
11148
  channelId?: string | undefined;
10858
11149
  status?: "active" | "pending" | undefined;
10859
11150
  apiKey?: string | undefined;
11151
+ tier?: "basic" | "regular" | "premium" | undefined;
10860
11152
  } | undefined;
10861
11153
  vonageCredentials?: {
10862
11154
  apiKey: string;
@@ -11224,6 +11516,23 @@ export declare const whatsappContract: {
11224
11516
  dateValue: Date | null;
11225
11517
  }[] | null | undefined;
11226
11518
  } | null;
11519
+ holdLogs?: {
11520
+ id: string;
11521
+ createdAt: Date;
11522
+ updatedAt: Date;
11523
+ deletedAt: Date | null;
11524
+ startedAt: string;
11525
+ endedAt: string | null;
11526
+ duration: number | null;
11527
+ holdLabel: {
11528
+ name: string;
11529
+ id: string;
11530
+ position: number;
11531
+ createdAt: Date;
11532
+ updatedAt: Date;
11533
+ deletedAt: Date | null;
11534
+ };
11535
+ }[] | null | undefined;
11227
11536
  };
11228
11537
  workflowRule: {
11229
11538
  name: string;
@@ -11252,7 +11561,7 @@ export declare const whatsappContract: {
11252
11561
  previewUrl: string;
11253
11562
  imageSetId: string;
11254
11563
  repliedMessage: {
11255
- 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";
11564
+ 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";
11256
11565
  message: string;
11257
11566
  id: string;
11258
11567
  url: string;
@@ -11463,7 +11772,7 @@ export declare const whatsappContract: {
11463
11772
  template?: any;
11464
11773
  label?: string | undefined;
11465
11774
  }, {
11466
- 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";
11775
+ 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";
11467
11776
  message: string;
11468
11777
  id: string;
11469
11778
  url: string;
@@ -11594,6 +11903,7 @@ export declare const whatsappContract: {
11594
11903
  channelId?: string | undefined;
11595
11904
  status?: "active" | "pending" | undefined;
11596
11905
  apiKey?: string | undefined;
11906
+ tier?: "basic" | "regular" | "premium" | undefined;
11597
11907
  } | undefined;
11598
11908
  vonageCredentials?: {
11599
11909
  apiKey: string;
@@ -11961,6 +12271,23 @@ export declare const whatsappContract: {
11961
12271
  dateValue: Date | null;
11962
12272
  }[] | null | undefined;
11963
12273
  } | null;
12274
+ holdLogs?: {
12275
+ id: string;
12276
+ createdAt: Date;
12277
+ updatedAt: Date;
12278
+ deletedAt: Date | null;
12279
+ startedAt: string;
12280
+ endedAt: string | null;
12281
+ duration: number | null;
12282
+ holdLabel: {
12283
+ name: string;
12284
+ id: string;
12285
+ position: number;
12286
+ createdAt: Date;
12287
+ updatedAt: Date;
12288
+ deletedAt: Date | null;
12289
+ };
12290
+ }[] | null | undefined;
11964
12291
  };
11965
12292
  workflowRule: {
11966
12293
  name: string;
@@ -11989,7 +12316,7 @@ export declare const whatsappContract: {
11989
12316
  previewUrl: string;
11990
12317
  imageSetId: string;
11991
12318
  repliedMessage: {
11992
- 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";
12319
+ 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";
11993
12320
  message: string;
11994
12321
  id: string;
11995
12322
  url: string;
@@ -12201,7 +12528,7 @@ export declare const whatsappContract: {
12201
12528
  label?: string | undefined;
12202
12529
  }>>>;
12203
12530
  }, "strip", z.ZodTypeAny, {
12204
- 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";
12531
+ 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";
12205
12532
  message: string;
12206
12533
  id: string;
12207
12534
  url: string;
@@ -12332,6 +12659,7 @@ export declare const whatsappContract: {
12332
12659
  channelId?: string | undefined;
12333
12660
  status?: "active" | "pending" | undefined;
12334
12661
  apiKey?: string | undefined;
12662
+ tier?: "basic" | "regular" | "premium" | undefined;
12335
12663
  } | undefined;
12336
12664
  vonageCredentials?: {
12337
12665
  apiKey: string;
@@ -12699,6 +13027,23 @@ export declare const whatsappContract: {
12699
13027
  dateValue: Date | null;
12700
13028
  }[] | null | undefined;
12701
13029
  } | null;
13030
+ holdLogs?: {
13031
+ id: string;
13032
+ createdAt: Date;
13033
+ updatedAt: Date;
13034
+ deletedAt: Date | null;
13035
+ startedAt: string;
13036
+ endedAt: string | null;
13037
+ duration: number | null;
13038
+ holdLabel: {
13039
+ name: string;
13040
+ id: string;
13041
+ position: number;
13042
+ createdAt: Date;
13043
+ updatedAt: Date;
13044
+ deletedAt: Date | null;
13045
+ };
13046
+ }[] | null | undefined;
12702
13047
  };
12703
13048
  workflowRule: {
12704
13049
  name: string;
@@ -12727,7 +13072,7 @@ export declare const whatsappContract: {
12727
13072
  previewUrl: string;
12728
13073
  imageSetId: string;
12729
13074
  repliedMessage: {
12730
- 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";
13075
+ 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";
12731
13076
  message: string;
12732
13077
  id: string;
12733
13078
  url: string;
@@ -12938,7 +13283,7 @@ export declare const whatsappContract: {
12938
13283
  template?: any;
12939
13284
  metadata?: any;
12940
13285
  fromMessage?: {
12941
- 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";
13286
+ 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";
12942
13287
  message: string;
12943
13288
  id: string;
12944
13289
  url: string;
@@ -13069,6 +13414,7 @@ export declare const whatsappContract: {
13069
13414
  channelId?: string | undefined;
13070
13415
  status?: "active" | "pending" | undefined;
13071
13416
  apiKey?: string | undefined;
13417
+ tier?: "basic" | "regular" | "premium" | undefined;
13072
13418
  } | undefined;
13073
13419
  vonageCredentials?: {
13074
13420
  apiKey: string;
@@ -13436,6 +13782,23 @@ export declare const whatsappContract: {
13436
13782
  dateValue: Date | null;
13437
13783
  }[] | null | undefined;
13438
13784
  } | null;
13785
+ holdLogs?: {
13786
+ id: string;
13787
+ createdAt: Date;
13788
+ updatedAt: Date;
13789
+ deletedAt: Date | null;
13790
+ startedAt: string;
13791
+ endedAt: string | null;
13792
+ duration: number | null;
13793
+ holdLabel: {
13794
+ name: string;
13795
+ id: string;
13796
+ position: number;
13797
+ createdAt: Date;
13798
+ updatedAt: Date;
13799
+ deletedAt: Date | null;
13800
+ };
13801
+ }[] | null | undefined;
13439
13802
  };
13440
13803
  workflowRule: {
13441
13804
  name: string;
@@ -13464,7 +13827,7 @@ export declare const whatsappContract: {
13464
13827
  previewUrl: string;
13465
13828
  imageSetId: string;
13466
13829
  repliedMessage: {
13467
- 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";
13830
+ 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";
13468
13831
  message: string;
13469
13832
  id: string;
13470
13833
  url: string;
@@ -13676,7 +14039,7 @@ export declare const whatsappContract: {
13676
14039
  label?: string | undefined;
13677
14040
  } | null | undefined;
13678
14041
  }, {
13679
- 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";
14042
+ 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";
13680
14043
  message: string;
13681
14044
  id: string;
13682
14045
  url: string;
@@ -13807,6 +14170,7 @@ export declare const whatsappContract: {
13807
14170
  channelId?: string | undefined;
13808
14171
  status?: "active" | "pending" | undefined;
13809
14172
  apiKey?: string | undefined;
14173
+ tier?: "basic" | "regular" | "premium" | undefined;
13810
14174
  } | undefined;
13811
14175
  vonageCredentials?: {
13812
14176
  apiKey: string;
@@ -14174,6 +14538,23 @@ export declare const whatsappContract: {
14174
14538
  dateValue: Date | null;
14175
14539
  }[] | null | undefined;
14176
14540
  } | null;
14541
+ holdLogs?: {
14542
+ id: string;
14543
+ createdAt: Date;
14544
+ updatedAt: Date;
14545
+ deletedAt: Date | null;
14546
+ startedAt: string;
14547
+ endedAt: string | null;
14548
+ duration: number | null;
14549
+ holdLabel: {
14550
+ name: string;
14551
+ id: string;
14552
+ position: number;
14553
+ createdAt: Date;
14554
+ updatedAt: Date;
14555
+ deletedAt: Date | null;
14556
+ };
14557
+ }[] | null | undefined;
14177
14558
  };
14178
14559
  workflowRule: {
14179
14560
  name: string;
@@ -14202,7 +14583,7 @@ export declare const whatsappContract: {
14202
14583
  previewUrl: string;
14203
14584
  imageSetId: string;
14204
14585
  repliedMessage: {
14205
- 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";
14586
+ 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";
14206
14587
  message: string;
14207
14588
  id: string;
14208
14589
  url: string;
@@ -14413,7 +14794,7 @@ export declare const whatsappContract: {
14413
14794
  template?: any;
14414
14795
  metadata?: any;
14415
14796
  fromMessage?: {
14416
- 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";
14797
+ 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";
14417
14798
  message: string;
14418
14799
  id: string;
14419
14800
  url: string;
@@ -14544,6 +14925,7 @@ export declare const whatsappContract: {
14544
14925
  channelId?: string | undefined;
14545
14926
  status?: "active" | "pending" | undefined;
14546
14927
  apiKey?: string | undefined;
14928
+ tier?: "basic" | "regular" | "premium" | undefined;
14547
14929
  } | undefined;
14548
14930
  vonageCredentials?: {
14549
14931
  apiKey: string;
@@ -14911,6 +15293,23 @@ export declare const whatsappContract: {
14911
15293
  dateValue: Date | null;
14912
15294
  }[] | null | undefined;
14913
15295
  } | null;
15296
+ holdLogs?: {
15297
+ id: string;
15298
+ createdAt: Date;
15299
+ updatedAt: Date;
15300
+ deletedAt: Date | null;
15301
+ startedAt: string;
15302
+ endedAt: string | null;
15303
+ duration: number | null;
15304
+ holdLabel: {
15305
+ name: string;
15306
+ id: string;
15307
+ position: number;
15308
+ createdAt: Date;
15309
+ updatedAt: Date;
15310
+ deletedAt: Date | null;
15311
+ };
15312
+ }[] | null | undefined;
14914
15313
  };
14915
15314
  workflowRule: {
14916
15315
  name: string;
@@ -14939,7 +15338,7 @@ export declare const whatsappContract: {
14939
15338
  previewUrl: string;
14940
15339
  imageSetId: string;
14941
15340
  repliedMessage: {
14942
- 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";
15341
+ 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";
14943
15342
  message: string;
14944
15343
  id: string;
14945
15344
  url: string;
@@ -15153,7 +15552,7 @@ export declare const whatsappContract: {
15153
15552
  }>;
15154
15553
  }, "strip", z.ZodTypeAny, {
15155
15554
  data: {
15156
- 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";
15555
+ 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";
15157
15556
  message: string;
15158
15557
  id: string;
15159
15558
  url: string;
@@ -15284,6 +15683,7 @@ export declare const whatsappContract: {
15284
15683
  channelId?: string | undefined;
15285
15684
  status?: "active" | "pending" | undefined;
15286
15685
  apiKey?: string | undefined;
15686
+ tier?: "basic" | "regular" | "premium" | undefined;
15287
15687
  } | undefined;
15288
15688
  vonageCredentials?: {
15289
15689
  apiKey: string;
@@ -15651,6 +16051,23 @@ export declare const whatsappContract: {
15651
16051
  dateValue: Date | null;
15652
16052
  }[] | null | undefined;
15653
16053
  } | null;
16054
+ holdLogs?: {
16055
+ id: string;
16056
+ createdAt: Date;
16057
+ updatedAt: Date;
16058
+ deletedAt: Date | null;
16059
+ startedAt: string;
16060
+ endedAt: string | null;
16061
+ duration: number | null;
16062
+ holdLabel: {
16063
+ name: string;
16064
+ id: string;
16065
+ position: number;
16066
+ createdAt: Date;
16067
+ updatedAt: Date;
16068
+ deletedAt: Date | null;
16069
+ };
16070
+ }[] | null | undefined;
15654
16071
  };
15655
16072
  workflowRule: {
15656
16073
  name: string;
@@ -15679,7 +16096,7 @@ export declare const whatsappContract: {
15679
16096
  previewUrl: string;
15680
16097
  imageSetId: string;
15681
16098
  repliedMessage: {
15682
- 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";
16099
+ 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";
15683
16100
  message: string;
15684
16101
  id: string;
15685
16102
  url: string;
@@ -15890,7 +16307,7 @@ export declare const whatsappContract: {
15890
16307
  template?: any;
15891
16308
  metadata?: any;
15892
16309
  fromMessage?: {
15893
- 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";
16310
+ 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";
15894
16311
  message: string;
15895
16312
  id: string;
15896
16313
  url: string;
@@ -16021,6 +16438,7 @@ export declare const whatsappContract: {
16021
16438
  channelId?: string | undefined;
16022
16439
  status?: "active" | "pending" | undefined;
16023
16440
  apiKey?: string | undefined;
16441
+ tier?: "basic" | "regular" | "premium" | undefined;
16024
16442
  } | undefined;
16025
16443
  vonageCredentials?: {
16026
16444
  apiKey: string;
@@ -16388,6 +16806,23 @@ export declare const whatsappContract: {
16388
16806
  dateValue: Date | null;
16389
16807
  }[] | null | undefined;
16390
16808
  } | null;
16809
+ holdLogs?: {
16810
+ id: string;
16811
+ createdAt: Date;
16812
+ updatedAt: Date;
16813
+ deletedAt: Date | null;
16814
+ startedAt: string;
16815
+ endedAt: string | null;
16816
+ duration: number | null;
16817
+ holdLabel: {
16818
+ name: string;
16819
+ id: string;
16820
+ position: number;
16821
+ createdAt: Date;
16822
+ updatedAt: Date;
16823
+ deletedAt: Date | null;
16824
+ };
16825
+ }[] | null | undefined;
16391
16826
  };
16392
16827
  workflowRule: {
16393
16828
  name: string;
@@ -16416,7 +16851,7 @@ export declare const whatsappContract: {
16416
16851
  previewUrl: string;
16417
16852
  imageSetId: string;
16418
16853
  repliedMessage: {
16419
- 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";
16854
+ 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";
16420
16855
  message: string;
16421
16856
  id: string;
16422
16857
  url: string;
@@ -16631,7 +17066,7 @@ export declare const whatsappContract: {
16631
17066
  requestId: string;
16632
17067
  }, {
16633
17068
  data: {
16634
- 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";
17069
+ 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";
16635
17070
  message: string;
16636
17071
  id: string;
16637
17072
  url: string;
@@ -16762,6 +17197,7 @@ export declare const whatsappContract: {
16762
17197
  channelId?: string | undefined;
16763
17198
  status?: "active" | "pending" | undefined;
16764
17199
  apiKey?: string | undefined;
17200
+ tier?: "basic" | "regular" | "premium" | undefined;
16765
17201
  } | undefined;
16766
17202
  vonageCredentials?: {
16767
17203
  apiKey: string;
@@ -17129,6 +17565,23 @@ export declare const whatsappContract: {
17129
17565
  dateValue: Date | null;
17130
17566
  }[] | null | undefined;
17131
17567
  } | null;
17568
+ holdLogs?: {
17569
+ id: string;
17570
+ createdAt: Date;
17571
+ updatedAt: Date;
17572
+ deletedAt: Date | null;
17573
+ startedAt: string;
17574
+ endedAt: string | null;
17575
+ duration: number | null;
17576
+ holdLabel: {
17577
+ name: string;
17578
+ id: string;
17579
+ position: number;
17580
+ createdAt: Date;
17581
+ updatedAt: Date;
17582
+ deletedAt: Date | null;
17583
+ };
17584
+ }[] | null | undefined;
17132
17585
  };
17133
17586
  workflowRule: {
17134
17587
  name: string;
@@ -17157,7 +17610,7 @@ export declare const whatsappContract: {
17157
17610
  previewUrl: string;
17158
17611
  imageSetId: string;
17159
17612
  repliedMessage: {
17160
- 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";
17613
+ 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";
17161
17614
  message: string;
17162
17615
  id: string;
17163
17616
  url: string;
@@ -17368,7 +17821,7 @@ export declare const whatsappContract: {
17368
17821
  template?: any;
17369
17822
  metadata?: any;
17370
17823
  fromMessage?: {
17371
- 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";
17824
+ 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";
17372
17825
  message: string;
17373
17826
  id: string;
17374
17827
  url: string;
@@ -17499,6 +17952,7 @@ export declare const whatsappContract: {
17499
17952
  channelId?: string | undefined;
17500
17953
  status?: "active" | "pending" | undefined;
17501
17954
  apiKey?: string | undefined;
17955
+ tier?: "basic" | "regular" | "premium" | undefined;
17502
17956
  } | undefined;
17503
17957
  vonageCredentials?: {
17504
17958
  apiKey: string;
@@ -17866,6 +18320,23 @@ export declare const whatsappContract: {
17866
18320
  dateValue: Date | null;
17867
18321
  }[] | null | undefined;
17868
18322
  } | null;
18323
+ holdLogs?: {
18324
+ id: string;
18325
+ createdAt: Date;
18326
+ updatedAt: Date;
18327
+ deletedAt: Date | null;
18328
+ startedAt: string;
18329
+ endedAt: string | null;
18330
+ duration: number | null;
18331
+ holdLabel: {
18332
+ name: string;
18333
+ id: string;
18334
+ position: number;
18335
+ createdAt: Date;
18336
+ updatedAt: Date;
18337
+ deletedAt: Date | null;
18338
+ };
18339
+ }[] | null | undefined;
17869
18340
  };
17870
18341
  workflowRule: {
17871
18342
  name: string;
@@ -17894,7 +18365,7 @@ export declare const whatsappContract: {
17894
18365
  previewUrl: string;
17895
18366
  imageSetId: string;
17896
18367
  repliedMessage: {
17897
- 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";
18368
+ 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";
17898
18369
  message: string;
17899
18370
  id: string;
17900
18371
  url: string;
@@ -18152,6 +18623,7 @@ export declare const whatsappContract: {
18152
18623
  channelId: z.ZodOptional<z.ZodString>;
18153
18624
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18154
18625
  apiKey: z.ZodOptional<z.ZodString>;
18626
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18155
18627
  }, "strip", z.ZodTypeAny, {
18156
18628
  email: string;
18157
18629
  wabaExternalId: string;
@@ -18161,6 +18633,7 @@ export declare const whatsappContract: {
18161
18633
  channelId?: string | undefined;
18162
18634
  status?: "active" | "pending" | undefined;
18163
18635
  apiKey?: string | undefined;
18636
+ tier?: "basic" | "regular" | "premium" | undefined;
18164
18637
  }, {
18165
18638
  email: string;
18166
18639
  wabaExternalId: string;
@@ -18170,6 +18643,7 @@ export declare const whatsappContract: {
18170
18643
  channelId?: string | undefined;
18171
18644
  status?: "active" | "pending" | undefined;
18172
18645
  apiKey?: string | undefined;
18646
+ tier?: "basic" | "regular" | "premium" | undefined;
18173
18647
  }>>;
18174
18648
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18175
18649
  mobileNumber: z.ZodString;
@@ -18202,6 +18676,7 @@ export declare const whatsappContract: {
18202
18676
  channelId?: string | undefined;
18203
18677
  status?: "active" | "pending" | undefined;
18204
18678
  apiKey?: string | undefined;
18679
+ tier?: "basic" | "regular" | "premium" | undefined;
18205
18680
  } | undefined;
18206
18681
  vonageCredentials?: {
18207
18682
  apiKey: string;
@@ -18226,6 +18701,7 @@ export declare const whatsappContract: {
18226
18701
  channelId?: string | undefined;
18227
18702
  status?: "active" | "pending" | undefined;
18228
18703
  apiKey?: string | undefined;
18704
+ tier?: "basic" | "regular" | "premium" | undefined;
18229
18705
  } | undefined;
18230
18706
  vonageCredentials?: {
18231
18707
  apiKey: string;
@@ -18280,6 +18756,7 @@ export declare const whatsappContract: {
18280
18756
  channelId?: string | undefined;
18281
18757
  status?: "active" | "pending" | undefined;
18282
18758
  apiKey?: string | undefined;
18759
+ tier?: "basic" | "regular" | "premium" | undefined;
18283
18760
  } | undefined;
18284
18761
  vonageCredentials?: {
18285
18762
  apiKey: string;
@@ -18322,6 +18799,7 @@ export declare const whatsappContract: {
18322
18799
  channelId?: string | undefined;
18323
18800
  status?: "active" | "pending" | undefined;
18324
18801
  apiKey?: string | undefined;
18802
+ tier?: "basic" | "regular" | "premium" | undefined;
18325
18803
  } | undefined;
18326
18804
  vonageCredentials?: {
18327
18805
  apiKey: string;
@@ -18369,6 +18847,7 @@ export declare const whatsappContract: {
18369
18847
  channelId: z.ZodOptional<z.ZodString>;
18370
18848
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18371
18849
  apiKey: z.ZodOptional<z.ZodString>;
18850
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18372
18851
  }, "strip", z.ZodTypeAny, {
18373
18852
  email: string;
18374
18853
  wabaExternalId: string;
@@ -18378,6 +18857,7 @@ export declare const whatsappContract: {
18378
18857
  channelId?: string | undefined;
18379
18858
  status?: "active" | "pending" | undefined;
18380
18859
  apiKey?: string | undefined;
18860
+ tier?: "basic" | "regular" | "premium" | undefined;
18381
18861
  }, {
18382
18862
  email: string;
18383
18863
  wabaExternalId: string;
@@ -18387,6 +18867,7 @@ export declare const whatsappContract: {
18387
18867
  channelId?: string | undefined;
18388
18868
  status?: "active" | "pending" | undefined;
18389
18869
  apiKey?: string | undefined;
18870
+ tier?: "basic" | "regular" | "premium" | undefined;
18390
18871
  }>>;
18391
18872
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18392
18873
  mobileNumber: z.ZodString;
@@ -18419,6 +18900,7 @@ export declare const whatsappContract: {
18419
18900
  channelId?: string | undefined;
18420
18901
  status?: "active" | "pending" | undefined;
18421
18902
  apiKey?: string | undefined;
18903
+ tier?: "basic" | "regular" | "premium" | undefined;
18422
18904
  } | undefined;
18423
18905
  vonageCredentials?: {
18424
18906
  apiKey: string;
@@ -18443,6 +18925,7 @@ export declare const whatsappContract: {
18443
18925
  channelId?: string | undefined;
18444
18926
  status?: "active" | "pending" | undefined;
18445
18927
  apiKey?: string | undefined;
18928
+ tier?: "basic" | "regular" | "premium" | undefined;
18446
18929
  } | undefined;
18447
18930
  vonageCredentials?: {
18448
18931
  apiKey: string;
@@ -18497,6 +18980,7 @@ export declare const whatsappContract: {
18497
18980
  channelId?: string | undefined;
18498
18981
  status?: "active" | "pending" | undefined;
18499
18982
  apiKey?: string | undefined;
18983
+ tier?: "basic" | "regular" | "premium" | undefined;
18500
18984
  } | undefined;
18501
18985
  vonageCredentials?: {
18502
18986
  apiKey: string;
@@ -18539,6 +19023,7 @@ export declare const whatsappContract: {
18539
19023
  channelId?: string | undefined;
18540
19024
  status?: "active" | "pending" | undefined;
18541
19025
  apiKey?: string | undefined;
19026
+ tier?: "basic" | "regular" | "premium" | undefined;
18542
19027
  } | undefined;
18543
19028
  vonageCredentials?: {
18544
19029
  apiKey: string;
@@ -18583,6 +19068,7 @@ export declare const whatsappContract: {
18583
19068
  channelId?: string | undefined;
18584
19069
  status?: "active" | "pending" | undefined;
18585
19070
  apiKey?: string | undefined;
19071
+ tier?: "basic" | "regular" | "premium" | undefined;
18586
19072
  } | undefined;
18587
19073
  vonageCredentials?: {
18588
19074
  apiKey: string;
@@ -18628,6 +19114,7 @@ export declare const whatsappContract: {
18628
19114
  channelId?: string | undefined;
18629
19115
  status?: "active" | "pending" | undefined;
18630
19116
  apiKey?: string | undefined;
19117
+ tier?: "basic" | "regular" | "premium" | undefined;
18631
19118
  } | undefined;
18632
19119
  vonageCredentials?: {
18633
19120
  apiKey: string;
@@ -18697,6 +19184,7 @@ export declare const whatsappContract: {
18697
19184
  channelId: z.ZodOptional<z.ZodString>;
18698
19185
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18699
19186
  apiKey: z.ZodOptional<z.ZodString>;
19187
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18700
19188
  }, "strip", z.ZodTypeAny, {
18701
19189
  email: string;
18702
19190
  wabaExternalId: string;
@@ -18706,6 +19194,7 @@ export declare const whatsappContract: {
18706
19194
  channelId?: string | undefined;
18707
19195
  status?: "active" | "pending" | undefined;
18708
19196
  apiKey?: string | undefined;
19197
+ tier?: "basic" | "regular" | "premium" | undefined;
18709
19198
  }, {
18710
19199
  email: string;
18711
19200
  wabaExternalId: string;
@@ -18715,6 +19204,7 @@ export declare const whatsappContract: {
18715
19204
  channelId?: string | undefined;
18716
19205
  status?: "active" | "pending" | undefined;
18717
19206
  apiKey?: string | undefined;
19207
+ tier?: "basic" | "regular" | "premium" | undefined;
18718
19208
  }>>;
18719
19209
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18720
19210
  mobileNumber: z.ZodString;
@@ -18747,6 +19237,7 @@ export declare const whatsappContract: {
18747
19237
  channelId?: string | undefined;
18748
19238
  status?: "active" | "pending" | undefined;
18749
19239
  apiKey?: string | undefined;
19240
+ tier?: "basic" | "regular" | "premium" | undefined;
18750
19241
  } | undefined;
18751
19242
  vonageCredentials?: {
18752
19243
  apiKey: string;
@@ -18771,6 +19262,7 @@ export declare const whatsappContract: {
18771
19262
  channelId?: string | undefined;
18772
19263
  status?: "active" | "pending" | undefined;
18773
19264
  apiKey?: string | undefined;
19265
+ tier?: "basic" | "regular" | "premium" | undefined;
18774
19266
  } | undefined;
18775
19267
  vonageCredentials?: {
18776
19268
  apiKey: string;
@@ -18825,6 +19317,7 @@ export declare const whatsappContract: {
18825
19317
  channelId?: string | undefined;
18826
19318
  status?: "active" | "pending" | undefined;
18827
19319
  apiKey?: string | undefined;
19320
+ tier?: "basic" | "regular" | "premium" | undefined;
18828
19321
  } | undefined;
18829
19322
  vonageCredentials?: {
18830
19323
  apiKey: string;
@@ -18867,6 +19360,7 @@ export declare const whatsappContract: {
18867
19360
  channelId?: string | undefined;
18868
19361
  status?: "active" | "pending" | undefined;
18869
19362
  apiKey?: string | undefined;
19363
+ tier?: "basic" | "regular" | "premium" | undefined;
18870
19364
  } | undefined;
18871
19365
  vonageCredentials?: {
18872
19366
  apiKey: string;
@@ -18914,6 +19408,7 @@ export declare const whatsappContract: {
18914
19408
  channelId: z.ZodOptional<z.ZodString>;
18915
19409
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18916
19410
  apiKey: z.ZodOptional<z.ZodString>;
19411
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18917
19412
  }, "strip", z.ZodTypeAny, {
18918
19413
  email: string;
18919
19414
  wabaExternalId: string;
@@ -18923,6 +19418,7 @@ export declare const whatsappContract: {
18923
19418
  channelId?: string | undefined;
18924
19419
  status?: "active" | "pending" | undefined;
18925
19420
  apiKey?: string | undefined;
19421
+ tier?: "basic" | "regular" | "premium" | undefined;
18926
19422
  }, {
18927
19423
  email: string;
18928
19424
  wabaExternalId: string;
@@ -18932,6 +19428,7 @@ export declare const whatsappContract: {
18932
19428
  channelId?: string | undefined;
18933
19429
  status?: "active" | "pending" | undefined;
18934
19430
  apiKey?: string | undefined;
19431
+ tier?: "basic" | "regular" | "premium" | undefined;
18935
19432
  }>>;
18936
19433
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18937
19434
  mobileNumber: z.ZodString;
@@ -18964,6 +19461,7 @@ export declare const whatsappContract: {
18964
19461
  channelId?: string | undefined;
18965
19462
  status?: "active" | "pending" | undefined;
18966
19463
  apiKey?: string | undefined;
19464
+ tier?: "basic" | "regular" | "premium" | undefined;
18967
19465
  } | undefined;
18968
19466
  vonageCredentials?: {
18969
19467
  apiKey: string;
@@ -18988,6 +19486,7 @@ export declare const whatsappContract: {
18988
19486
  channelId?: string | undefined;
18989
19487
  status?: "active" | "pending" | undefined;
18990
19488
  apiKey?: string | undefined;
19489
+ tier?: "basic" | "regular" | "premium" | undefined;
18991
19490
  } | undefined;
18992
19491
  vonageCredentials?: {
18993
19492
  apiKey: string;
@@ -19042,6 +19541,7 @@ export declare const whatsappContract: {
19042
19541
  channelId?: string | undefined;
19043
19542
  status?: "active" | "pending" | undefined;
19044
19543
  apiKey?: string | undefined;
19544
+ tier?: "basic" | "regular" | "premium" | undefined;
19045
19545
  } | undefined;
19046
19546
  vonageCredentials?: {
19047
19547
  apiKey: string;
@@ -19084,6 +19584,7 @@ export declare const whatsappContract: {
19084
19584
  channelId?: string | undefined;
19085
19585
  status?: "active" | "pending" | undefined;
19086
19586
  apiKey?: string | undefined;
19587
+ tier?: "basic" | "regular" | "premium" | undefined;
19087
19588
  } | undefined;
19088
19589
  vonageCredentials?: {
19089
19590
  apiKey: string;
@@ -19128,6 +19629,7 @@ export declare const whatsappContract: {
19128
19629
  channelId?: string | undefined;
19129
19630
  status?: "active" | "pending" | undefined;
19130
19631
  apiKey?: string | undefined;
19632
+ tier?: "basic" | "regular" | "premium" | undefined;
19131
19633
  } | undefined;
19132
19634
  vonageCredentials?: {
19133
19635
  apiKey: string;
@@ -19173,6 +19675,7 @@ export declare const whatsappContract: {
19173
19675
  channelId?: string | undefined;
19174
19676
  status?: "active" | "pending" | undefined;
19175
19677
  apiKey?: string | undefined;
19678
+ tier?: "basic" | "regular" | "premium" | undefined;
19176
19679
  } | undefined;
19177
19680
  vonageCredentials?: {
19178
19681
  apiKey: string;
@@ -19254,6 +19757,7 @@ export declare const whatsappContract: {
19254
19757
  channelId: z.ZodOptional<z.ZodString>;
19255
19758
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19256
19759
  apiKey: z.ZodOptional<z.ZodString>;
19760
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19257
19761
  }, "strip", z.ZodTypeAny, {
19258
19762
  email: string;
19259
19763
  wabaExternalId: string;
@@ -19263,6 +19767,7 @@ export declare const whatsappContract: {
19263
19767
  channelId?: string | undefined;
19264
19768
  status?: "active" | "pending" | undefined;
19265
19769
  apiKey?: string | undefined;
19770
+ tier?: "basic" | "regular" | "premium" | undefined;
19266
19771
  }, {
19267
19772
  email: string;
19268
19773
  wabaExternalId: string;
@@ -19272,6 +19777,7 @@ export declare const whatsappContract: {
19272
19777
  channelId?: string | undefined;
19273
19778
  status?: "active" | "pending" | undefined;
19274
19779
  apiKey?: string | undefined;
19780
+ tier?: "basic" | "regular" | "premium" | undefined;
19275
19781
  }>>;
19276
19782
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19277
19783
  mobileNumber: z.ZodString;
@@ -19304,6 +19810,7 @@ export declare const whatsappContract: {
19304
19810
  channelId?: string | undefined;
19305
19811
  status?: "active" | "pending" | undefined;
19306
19812
  apiKey?: string | undefined;
19813
+ tier?: "basic" | "regular" | "premium" | undefined;
19307
19814
  } | undefined;
19308
19815
  vonageCredentials?: {
19309
19816
  apiKey: string;
@@ -19328,6 +19835,7 @@ export declare const whatsappContract: {
19328
19835
  channelId?: string | undefined;
19329
19836
  status?: "active" | "pending" | undefined;
19330
19837
  apiKey?: string | undefined;
19838
+ tier?: "basic" | "regular" | "premium" | undefined;
19331
19839
  } | undefined;
19332
19840
  vonageCredentials?: {
19333
19841
  apiKey: string;
@@ -19382,6 +19890,7 @@ export declare const whatsappContract: {
19382
19890
  channelId?: string | undefined;
19383
19891
  status?: "active" | "pending" | undefined;
19384
19892
  apiKey?: string | undefined;
19893
+ tier?: "basic" | "regular" | "premium" | undefined;
19385
19894
  } | undefined;
19386
19895
  vonageCredentials?: {
19387
19896
  apiKey: string;
@@ -19424,6 +19933,7 @@ export declare const whatsappContract: {
19424
19933
  channelId?: string | undefined;
19425
19934
  status?: "active" | "pending" | undefined;
19426
19935
  apiKey?: string | undefined;
19936
+ tier?: "basic" | "regular" | "premium" | undefined;
19427
19937
  } | undefined;
19428
19938
  vonageCredentials?: {
19429
19939
  apiKey: string;
@@ -19468,6 +19978,7 @@ export declare const whatsappContract: {
19468
19978
  channelId?: string | undefined;
19469
19979
  status?: "active" | "pending" | undefined;
19470
19980
  apiKey?: string | undefined;
19981
+ tier?: "basic" | "regular" | "premium" | undefined;
19471
19982
  } | undefined;
19472
19983
  vonageCredentials?: {
19473
19984
  apiKey: string;
@@ -19513,6 +20024,7 @@ export declare const whatsappContract: {
19513
20024
  channelId?: string | undefined;
19514
20025
  status?: "active" | "pending" | undefined;
19515
20026
  apiKey?: string | undefined;
20027
+ tier?: "basic" | "regular" | "premium" | undefined;
19516
20028
  } | undefined;
19517
20029
  vonageCredentials?: {
19518
20030
  apiKey: string;
@@ -19594,6 +20106,7 @@ export declare const whatsappContract: {
19594
20106
  channelId: z.ZodOptional<z.ZodString>;
19595
20107
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19596
20108
  apiKey: z.ZodOptional<z.ZodString>;
20109
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19597
20110
  }, "strip", z.ZodTypeAny, {
19598
20111
  email: string;
19599
20112
  wabaExternalId: string;
@@ -19603,6 +20116,7 @@ export declare const whatsappContract: {
19603
20116
  channelId?: string | undefined;
19604
20117
  status?: "active" | "pending" | undefined;
19605
20118
  apiKey?: string | undefined;
20119
+ tier?: "basic" | "regular" | "premium" | undefined;
19606
20120
  }, {
19607
20121
  email: string;
19608
20122
  wabaExternalId: string;
@@ -19612,6 +20126,7 @@ export declare const whatsappContract: {
19612
20126
  channelId?: string | undefined;
19613
20127
  status?: "active" | "pending" | undefined;
19614
20128
  apiKey?: string | undefined;
20129
+ tier?: "basic" | "regular" | "premium" | undefined;
19615
20130
  }>>;
19616
20131
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19617
20132
  mobileNumber: z.ZodString;
@@ -19644,6 +20159,7 @@ export declare const whatsappContract: {
19644
20159
  channelId?: string | undefined;
19645
20160
  status?: "active" | "pending" | undefined;
19646
20161
  apiKey?: string | undefined;
20162
+ tier?: "basic" | "regular" | "premium" | undefined;
19647
20163
  } | undefined;
19648
20164
  vonageCredentials?: {
19649
20165
  apiKey: string;
@@ -19668,6 +20184,7 @@ export declare const whatsappContract: {
19668
20184
  channelId?: string | undefined;
19669
20185
  status?: "active" | "pending" | undefined;
19670
20186
  apiKey?: string | undefined;
20187
+ tier?: "basic" | "regular" | "premium" | undefined;
19671
20188
  } | undefined;
19672
20189
  vonageCredentials?: {
19673
20190
  apiKey: string;
@@ -19722,6 +20239,7 @@ export declare const whatsappContract: {
19722
20239
  channelId?: string | undefined;
19723
20240
  status?: "active" | "pending" | undefined;
19724
20241
  apiKey?: string | undefined;
20242
+ tier?: "basic" | "regular" | "premium" | undefined;
19725
20243
  } | undefined;
19726
20244
  vonageCredentials?: {
19727
20245
  apiKey: string;
@@ -19764,6 +20282,7 @@ export declare const whatsappContract: {
19764
20282
  channelId?: string | undefined;
19765
20283
  status?: "active" | "pending" | undefined;
19766
20284
  apiKey?: string | undefined;
20285
+ tier?: "basic" | "regular" | "premium" | undefined;
19767
20286
  } | undefined;
19768
20287
  vonageCredentials?: {
19769
20288
  apiKey: string;
@@ -19808,6 +20327,7 @@ export declare const whatsappContract: {
19808
20327
  channelId?: string | undefined;
19809
20328
  status?: "active" | "pending" | undefined;
19810
20329
  apiKey?: string | undefined;
20330
+ tier?: "basic" | "regular" | "premium" | undefined;
19811
20331
  } | undefined;
19812
20332
  vonageCredentials?: {
19813
20333
  apiKey: string;
@@ -19853,6 +20373,7 @@ export declare const whatsappContract: {
19853
20373
  channelId?: string | undefined;
19854
20374
  status?: "active" | "pending" | undefined;
19855
20375
  apiKey?: string | undefined;
20376
+ tier?: "basic" | "regular" | "premium" | undefined;
19856
20377
  } | undefined;
19857
20378
  vonageCredentials?: {
19858
20379
  apiKey: string;