@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
@@ -149,6 +149,7 @@ export declare const instagramContract: {
149
149
  channelId: z.ZodOptional<z.ZodString>;
150
150
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
151
151
  apiKey: z.ZodOptional<z.ZodString>;
152
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
152
153
  }, "strip", z.ZodTypeAny, {
153
154
  email: string;
154
155
  wabaExternalId: string;
@@ -158,6 +159,7 @@ export declare const instagramContract: {
158
159
  channelId?: string | undefined;
159
160
  status?: "active" | "pending" | undefined;
160
161
  apiKey?: string | undefined;
162
+ tier?: "basic" | "regular" | "premium" | undefined;
161
163
  }, {
162
164
  email: string;
163
165
  wabaExternalId: string;
@@ -167,6 +169,7 @@ export declare const instagramContract: {
167
169
  channelId?: string | undefined;
168
170
  status?: "active" | "pending" | undefined;
169
171
  apiKey?: string | undefined;
172
+ tier?: "basic" | "regular" | "premium" | undefined;
170
173
  }>>;
171
174
  vonageCredentials: z.ZodOptional<z.ZodObject<{
172
175
  mobileNumber: z.ZodString;
@@ -199,6 +202,7 @@ export declare const instagramContract: {
199
202
  channelId?: string | undefined;
200
203
  status?: "active" | "pending" | undefined;
201
204
  apiKey?: string | undefined;
205
+ tier?: "basic" | "regular" | "premium" | undefined;
202
206
  } | undefined;
203
207
  vonageCredentials?: {
204
208
  apiKey: string;
@@ -223,6 +227,7 @@ export declare const instagramContract: {
223
227
  channelId?: string | undefined;
224
228
  status?: "active" | "pending" | undefined;
225
229
  apiKey?: string | undefined;
230
+ tier?: "basic" | "regular" | "premium" | undefined;
226
231
  } | undefined;
227
232
  vonageCredentials?: {
228
233
  apiKey: string;
@@ -277,6 +282,7 @@ export declare const instagramContract: {
277
282
  channelId?: string | undefined;
278
283
  status?: "active" | "pending" | undefined;
279
284
  apiKey?: string | undefined;
285
+ tier?: "basic" | "regular" | "premium" | undefined;
280
286
  } | undefined;
281
287
  vonageCredentials?: {
282
288
  apiKey: string;
@@ -319,6 +325,7 @@ export declare const instagramContract: {
319
325
  channelId?: string | undefined;
320
326
  status?: "active" | "pending" | undefined;
321
327
  apiKey?: string | undefined;
328
+ tier?: "basic" | "regular" | "premium" | undefined;
322
329
  } | undefined;
323
330
  vonageCredentials?: {
324
331
  apiKey: string;
@@ -343,7 +350,7 @@ export declare const instagramContract: {
343
350
  } | undefined;
344
351
  }>;
345
352
  messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
346
- telegramBusinessConnectionId: z.ZodNullable<z.ZodString>;
353
+ telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
347
354
  }, "strip", z.ZodTypeAny, {
348
355
  id: string;
349
356
  channel: {
@@ -366,6 +373,7 @@ export declare const instagramContract: {
366
373
  channelId?: string | undefined;
367
374
  status?: "active" | "pending" | undefined;
368
375
  apiKey?: string | undefined;
376
+ tier?: "basic" | "regular" | "premium" | undefined;
369
377
  } | undefined;
370
378
  vonageCredentials?: {
371
379
  apiKey: string;
@@ -425,11 +433,11 @@ export declare const instagramContract: {
425
433
  id: string;
426
434
  email: string;
427
435
  } | null;
428
- telegramBusinessConnectionId: string | null;
429
436
  lastMessage?: string | undefined;
430
437
  handleTime?: number | undefined;
431
438
  metadata?: any;
432
439
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
440
+ telegramBusinessConnectionId?: string | null | undefined;
433
441
  }, {
434
442
  id: string;
435
443
  channel: {
@@ -452,6 +460,7 @@ export declare const instagramContract: {
452
460
  channelId?: string | undefined;
453
461
  status?: "active" | "pending" | undefined;
454
462
  apiKey?: string | undefined;
463
+ tier?: "basic" | "regular" | "premium" | undefined;
455
464
  } | undefined;
456
465
  vonageCredentials?: {
457
466
  apiKey: string;
@@ -511,17 +520,17 @@ export declare const instagramContract: {
511
520
  id: string;
512
521
  email: string;
513
522
  } | null;
514
- telegramBusinessConnectionId: string | null;
515
523
  lastMessage?: string | undefined;
516
524
  handleTime?: number | undefined;
517
525
  metadata?: any;
518
526
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
527
+ telegramBusinessConnectionId?: string | null | undefined;
519
528
  }>;
520
529
  message: z.ZodObject<{
521
530
  id: z.ZodOptional<z.ZodString>;
522
531
  message: z.ZodOptional<z.ZodString>;
523
532
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
524
- 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"]>;
533
+ 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"]>;
525
534
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
526
535
  metadata: z.ZodOptional<z.ZodAny>;
527
536
  platformId: z.ZodOptional<z.ZodString>;
@@ -577,7 +586,7 @@ export declare const instagramContract: {
577
586
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
578
587
  label: z.ZodOptional<z.ZodString>;
579
588
  }, "strip", z.ZodTypeAny, {
580
- 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";
589
+ 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";
581
590
  direction: "incoming" | "outgoing" | "system";
582
591
  id?: string | undefined;
583
592
  message?: string | undefined;
@@ -612,7 +621,7 @@ export declare const instagramContract: {
612
621
  editedAt?: string | Date | null | undefined;
613
622
  label?: string | undefined;
614
623
  }, {
615
- 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";
624
+ 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";
616
625
  direction: "incoming" | "outgoing" | "system";
617
626
  id?: string | undefined;
618
627
  message?: string | undefined;
@@ -649,7 +658,7 @@ export declare const instagramContract: {
649
658
  }>;
650
659
  }, "strip", z.ZodTypeAny, {
651
660
  message: {
652
- 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";
661
+ 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";
653
662
  direction: "incoming" | "outgoing" | "system";
654
663
  id?: string | undefined;
655
664
  message?: string | undefined;
@@ -706,6 +715,7 @@ export declare const instagramContract: {
706
715
  channelId?: string | undefined;
707
716
  status?: "active" | "pending" | undefined;
708
717
  apiKey?: string | undefined;
718
+ tier?: "basic" | "regular" | "premium" | undefined;
709
719
  } | undefined;
710
720
  vonageCredentials?: {
711
721
  apiKey: string;
@@ -765,16 +775,16 @@ export declare const instagramContract: {
765
775
  id: string;
766
776
  email: string;
767
777
  } | null;
768
- telegramBusinessConnectionId: string | null;
769
778
  lastMessage?: string | undefined;
770
779
  handleTime?: number | undefined;
771
780
  metadata?: any;
772
781
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
782
+ telegramBusinessConnectionId?: string | null | undefined;
773
783
  };
774
784
  isBot: boolean | null;
775
785
  }, {
776
786
  message: {
777
- 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";
787
+ 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";
778
788
  direction: "incoming" | "outgoing" | "system";
779
789
  id?: string | undefined;
780
790
  message?: string | undefined;
@@ -831,6 +841,7 @@ export declare const instagramContract: {
831
841
  channelId?: string | undefined;
832
842
  status?: "active" | "pending" | undefined;
833
843
  apiKey?: string | undefined;
844
+ tier?: "basic" | "regular" | "premium" | undefined;
834
845
  } | undefined;
835
846
  vonageCredentials?: {
836
847
  apiKey: string;
@@ -890,11 +901,11 @@ export declare const instagramContract: {
890
901
  id: string;
891
902
  email: string;
892
903
  } | null;
893
- telegramBusinessConnectionId: string | null;
894
904
  lastMessage?: string | undefined;
895
905
  handleTime?: number | undefined;
896
906
  metadata?: any;
897
907
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
908
+ telegramBusinessConnectionId?: string | null | undefined;
898
909
  };
899
910
  isBot?: boolean | null | undefined;
900
911
  }>;
@@ -903,7 +914,7 @@ export declare const instagramContract: {
903
914
  200: z.ZodObject<{
904
915
  requestId: z.ZodString;
905
916
  data: z.ZodObject<{
906
- 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"]>;
917
+ 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"]>;
907
918
  message: z.ZodString;
908
919
  id: z.ZodString;
909
920
  url: z.ZodString;
@@ -2851,6 +2862,7 @@ export declare const instagramContract: {
2851
2862
  channelId: z.ZodOptional<z.ZodString>;
2852
2863
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2853
2864
  apiKey: z.ZodOptional<z.ZodString>;
2865
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2854
2866
  }, "strip", z.ZodTypeAny, {
2855
2867
  email: string;
2856
2868
  wabaExternalId: string;
@@ -2860,6 +2872,7 @@ export declare const instagramContract: {
2860
2872
  channelId?: string | undefined;
2861
2873
  status?: "active" | "pending" | undefined;
2862
2874
  apiKey?: string | undefined;
2875
+ tier?: "basic" | "regular" | "premium" | undefined;
2863
2876
  }, {
2864
2877
  email: string;
2865
2878
  wabaExternalId: string;
@@ -2869,6 +2882,7 @@ export declare const instagramContract: {
2869
2882
  channelId?: string | undefined;
2870
2883
  status?: "active" | "pending" | undefined;
2871
2884
  apiKey?: string | undefined;
2885
+ tier?: "basic" | "regular" | "premium" | undefined;
2872
2886
  }>>;
2873
2887
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2874
2888
  mobileNumber: z.ZodString;
@@ -2901,6 +2915,7 @@ export declare const instagramContract: {
2901
2915
  channelId?: string | undefined;
2902
2916
  status?: "active" | "pending" | undefined;
2903
2917
  apiKey?: string | undefined;
2918
+ tier?: "basic" | "regular" | "premium" | undefined;
2904
2919
  } | undefined;
2905
2920
  vonageCredentials?: {
2906
2921
  apiKey: string;
@@ -2925,6 +2940,7 @@ export declare const instagramContract: {
2925
2940
  channelId?: string | undefined;
2926
2941
  status?: "active" | "pending" | undefined;
2927
2942
  apiKey?: string | undefined;
2943
+ tier?: "basic" | "regular" | "premium" | undefined;
2928
2944
  } | undefined;
2929
2945
  vonageCredentials?: {
2930
2946
  apiKey: string;
@@ -3183,6 +3199,7 @@ export declare const instagramContract: {
3183
3199
  channelId?: string | undefined;
3184
3200
  status?: "active" | "pending" | undefined;
3185
3201
  apiKey?: string | undefined;
3202
+ tier?: "basic" | "regular" | "premium" | undefined;
3186
3203
  } | undefined;
3187
3204
  vonageCredentials?: {
3188
3205
  apiKey: string;
@@ -3272,6 +3289,7 @@ export declare const instagramContract: {
3272
3289
  channelId?: string | undefined;
3273
3290
  status?: "active" | "pending" | undefined;
3274
3291
  apiKey?: string | undefined;
3292
+ tier?: "basic" | "regular" | "premium" | undefined;
3275
3293
  } | undefined;
3276
3294
  vonageCredentials?: {
3277
3295
  apiKey: string;
@@ -3344,17 +3362,17 @@ export declare const instagramContract: {
3344
3362
  }>;
3345
3363
  cxlog: z.ZodObject<{
3346
3364
  id: z.ZodString;
3365
+ channel: z.ZodNullable<z.ZodString>;
3366
+ direction: z.ZodNullable<z.ZodString>;
3347
3367
  createdAt: z.ZodDate;
3348
3368
  updatedAt: z.ZodDate;
3349
3369
  deletedAt: z.ZodNullable<z.ZodDate>;
3350
- caseId: z.ZodNumber;
3351
3370
  entityId: z.ZodString;
3352
- entityName: z.ZodString;
3353
- contactId: z.ZodNullable<z.ZodString>;
3354
- channel: z.ZodNullable<z.ZodString>;
3355
3371
  queueId: z.ZodNullable<z.ZodString>;
3372
+ contactId: z.ZodNullable<z.ZodString>;
3373
+ caseId: z.ZodNumber;
3374
+ entityName: z.ZodString;
3356
3375
  agentId: z.ZodNullable<z.ZodString>;
3357
- direction: z.ZodNullable<z.ZodString>;
3358
3376
  startedDate: z.ZodNullable<z.ZodDate>;
3359
3377
  handledTime: z.ZodNullable<z.ZodNumber>;
3360
3378
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
@@ -3624,6 +3642,69 @@ export declare const instagramContract: {
3624
3642
  dateValue: Date | null;
3625
3643
  }[] | null | undefined;
3626
3644
  }>>;
3645
+ holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3646
+ id: z.ZodString;
3647
+ createdAt: z.ZodDate;
3648
+ updatedAt: z.ZodDate;
3649
+ deletedAt: z.ZodNullable<z.ZodDate>;
3650
+ startedAt: z.ZodString;
3651
+ endedAt: z.ZodNullable<z.ZodString>;
3652
+ duration: z.ZodNullable<z.ZodNumber>;
3653
+ holdLabel: z.ZodObject<{
3654
+ id: z.ZodString;
3655
+ createdAt: z.ZodDate;
3656
+ updatedAt: z.ZodDate;
3657
+ deletedAt: z.ZodNullable<z.ZodDate>;
3658
+ name: z.ZodString;
3659
+ position: z.ZodNumber;
3660
+ }, "strip", z.ZodTypeAny, {
3661
+ name: string;
3662
+ id: string;
3663
+ position: number;
3664
+ createdAt: Date;
3665
+ updatedAt: Date;
3666
+ deletedAt: Date | null;
3667
+ }, {
3668
+ name: string;
3669
+ id: string;
3670
+ position: number;
3671
+ createdAt: Date;
3672
+ updatedAt: Date;
3673
+ deletedAt: Date | null;
3674
+ }>;
3675
+ }, "strip", z.ZodTypeAny, {
3676
+ id: string;
3677
+ createdAt: Date;
3678
+ updatedAt: Date;
3679
+ deletedAt: Date | null;
3680
+ startedAt: string;
3681
+ endedAt: string | null;
3682
+ duration: number | null;
3683
+ holdLabel: {
3684
+ name: string;
3685
+ id: string;
3686
+ position: number;
3687
+ createdAt: Date;
3688
+ updatedAt: Date;
3689
+ deletedAt: Date | null;
3690
+ };
3691
+ }, {
3692
+ id: string;
3693
+ createdAt: Date;
3694
+ updatedAt: Date;
3695
+ deletedAt: Date | null;
3696
+ startedAt: string;
3697
+ endedAt: string | null;
3698
+ duration: number | null;
3699
+ holdLabel: {
3700
+ name: string;
3701
+ id: string;
3702
+ position: number;
3703
+ createdAt: Date;
3704
+ updatedAt: Date;
3705
+ deletedAt: Date | null;
3706
+ };
3707
+ }>, "many">>>;
3627
3708
  }, "strip", z.ZodTypeAny, {
3628
3709
  id: string;
3629
3710
  channel: string | null;
@@ -3692,6 +3773,23 @@ export declare const instagramContract: {
3692
3773
  dateValue: Date | null;
3693
3774
  }[] | null | undefined;
3694
3775
  } | null;
3776
+ holdLogs?: {
3777
+ id: string;
3778
+ createdAt: Date;
3779
+ updatedAt: Date;
3780
+ deletedAt: Date | null;
3781
+ startedAt: string;
3782
+ endedAt: string | null;
3783
+ duration: number | null;
3784
+ holdLabel: {
3785
+ name: string;
3786
+ id: string;
3787
+ position: number;
3788
+ createdAt: Date;
3789
+ updatedAt: Date;
3790
+ deletedAt: Date | null;
3791
+ };
3792
+ }[] | null | undefined;
3695
3793
  }, {
3696
3794
  id: string;
3697
3795
  channel: string | null;
@@ -3760,6 +3858,23 @@ export declare const instagramContract: {
3760
3858
  dateValue: Date | null;
3761
3859
  }[] | null | undefined;
3762
3860
  } | null;
3861
+ holdLogs?: {
3862
+ id: string;
3863
+ createdAt: Date;
3864
+ updatedAt: Date;
3865
+ deletedAt: Date | null;
3866
+ startedAt: string;
3867
+ endedAt: string | null;
3868
+ duration: number | null;
3869
+ holdLabel: {
3870
+ name: string;
3871
+ id: string;
3872
+ position: number;
3873
+ createdAt: Date;
3874
+ updatedAt: Date;
3875
+ deletedAt: Date | null;
3876
+ };
3877
+ }[] | null | undefined;
3763
3878
  }>;
3764
3879
  workflowRule: z.ZodObject<{
3765
3880
  id: z.ZodString;
@@ -3809,6 +3924,7 @@ export declare const instagramContract: {
3809
3924
  channelId?: string | undefined;
3810
3925
  status?: "active" | "pending" | undefined;
3811
3926
  apiKey?: string | undefined;
3927
+ tier?: "basic" | "regular" | "premium" | undefined;
3812
3928
  } | undefined;
3813
3929
  vonageCredentials?: {
3814
3930
  apiKey: string;
@@ -4176,6 +4292,23 @@ export declare const instagramContract: {
4176
4292
  dateValue: Date | null;
4177
4293
  }[] | null | undefined;
4178
4294
  } | null;
4295
+ holdLogs?: {
4296
+ id: string;
4297
+ createdAt: Date;
4298
+ updatedAt: Date;
4299
+ deletedAt: Date | null;
4300
+ startedAt: string;
4301
+ endedAt: string | null;
4302
+ duration: number | null;
4303
+ holdLabel: {
4304
+ name: string;
4305
+ id: string;
4306
+ position: number;
4307
+ createdAt: Date;
4308
+ updatedAt: Date;
4309
+ deletedAt: Date | null;
4310
+ };
4311
+ }[] | null | undefined;
4179
4312
  };
4180
4313
  workflowRule: {
4181
4314
  name: string;
@@ -4209,6 +4342,7 @@ export declare const instagramContract: {
4209
4342
  channelId?: string | undefined;
4210
4343
  status?: "active" | "pending" | undefined;
4211
4344
  apiKey?: string | undefined;
4345
+ tier?: "basic" | "regular" | "premium" | undefined;
4212
4346
  } | undefined;
4213
4347
  vonageCredentials?: {
4214
4348
  apiKey: string;
@@ -4576,6 +4710,23 @@ export declare const instagramContract: {
4576
4710
  dateValue: Date | null;
4577
4711
  }[] | null | undefined;
4578
4712
  } | null;
4713
+ holdLogs?: {
4714
+ id: string;
4715
+ createdAt: Date;
4716
+ updatedAt: Date;
4717
+ deletedAt: Date | null;
4718
+ startedAt: string;
4719
+ endedAt: string | null;
4720
+ duration: number | null;
4721
+ holdLabel: {
4722
+ name: string;
4723
+ id: string;
4724
+ position: number;
4725
+ createdAt: Date;
4726
+ updatedAt: Date;
4727
+ deletedAt: Date | null;
4728
+ };
4729
+ }[] | null | undefined;
4579
4730
  };
4580
4731
  workflowRule: {
4581
4732
  name: string;
@@ -4626,7 +4777,7 @@ export declare const instagramContract: {
4626
4777
  deletedAt: z.ZodNullable<z.ZodDate>;
4627
4778
  message: z.ZodString;
4628
4779
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
4629
- 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"]>;
4780
+ 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"]>;
4630
4781
  readAt: z.ZodDate;
4631
4782
  metadata: z.ZodAny;
4632
4783
  platformId: z.ZodString;
@@ -5284,7 +5435,7 @@ export declare const instagramContract: {
5284
5435
  };
5285
5436
  }>;
5286
5437
  }, "strip", z.ZodTypeAny, {
5287
- 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";
5438
+ 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";
5288
5439
  message: string;
5289
5440
  id: string;
5290
5441
  url: string;
@@ -5446,7 +5597,7 @@ export declare const instagramContract: {
5446
5597
  metadata?: any;
5447
5598
  template?: any;
5448
5599
  }, {
5449
- 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";
5600
+ 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";
5450
5601
  message: string;
5451
5602
  id: string;
5452
5603
  url: string;
@@ -5820,7 +5971,7 @@ export declare const instagramContract: {
5820
5971
  deletedAt: z.ZodNullable<z.ZodDate>;
5821
5972
  message: z.ZodString;
5822
5973
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
5823
- 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"]>;
5974
+ 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"]>;
5824
5975
  readAt: z.ZodDate;
5825
5976
  metadata: z.ZodAny;
5826
5977
  platformId: z.ZodString;
@@ -7325,6 +7476,7 @@ export declare const instagramContract: {
7325
7476
  channelId: z.ZodOptional<z.ZodString>;
7326
7477
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7327
7478
  apiKey: z.ZodOptional<z.ZodString>;
7479
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7328
7480
  }, "strip", z.ZodTypeAny, {
7329
7481
  email: string;
7330
7482
  wabaExternalId: string;
@@ -7334,6 +7486,7 @@ export declare const instagramContract: {
7334
7486
  channelId?: string | undefined;
7335
7487
  status?: "active" | "pending" | undefined;
7336
7488
  apiKey?: string | undefined;
7489
+ tier?: "basic" | "regular" | "premium" | undefined;
7337
7490
  }, {
7338
7491
  email: string;
7339
7492
  wabaExternalId: string;
@@ -7343,6 +7496,7 @@ export declare const instagramContract: {
7343
7496
  channelId?: string | undefined;
7344
7497
  status?: "active" | "pending" | undefined;
7345
7498
  apiKey?: string | undefined;
7499
+ tier?: "basic" | "regular" | "premium" | undefined;
7346
7500
  }>>;
7347
7501
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7348
7502
  mobileNumber: z.ZodString;
@@ -7375,6 +7529,7 @@ export declare const instagramContract: {
7375
7529
  channelId?: string | undefined;
7376
7530
  status?: "active" | "pending" | undefined;
7377
7531
  apiKey?: string | undefined;
7532
+ tier?: "basic" | "regular" | "premium" | undefined;
7378
7533
  } | undefined;
7379
7534
  vonageCredentials?: {
7380
7535
  apiKey: string;
@@ -7399,6 +7554,7 @@ export declare const instagramContract: {
7399
7554
  channelId?: string | undefined;
7400
7555
  status?: "active" | "pending" | undefined;
7401
7556
  apiKey?: string | undefined;
7557
+ tier?: "basic" | "regular" | "premium" | undefined;
7402
7558
  } | undefined;
7403
7559
  vonageCredentials?: {
7404
7560
  apiKey: string;
@@ -7657,6 +7813,7 @@ export declare const instagramContract: {
7657
7813
  channelId?: string | undefined;
7658
7814
  status?: "active" | "pending" | undefined;
7659
7815
  apiKey?: string | undefined;
7816
+ tier?: "basic" | "regular" | "premium" | undefined;
7660
7817
  } | undefined;
7661
7818
  vonageCredentials?: {
7662
7819
  apiKey: string;
@@ -7746,6 +7903,7 @@ export declare const instagramContract: {
7746
7903
  channelId?: string | undefined;
7747
7904
  status?: "active" | "pending" | undefined;
7748
7905
  apiKey?: string | undefined;
7906
+ tier?: "basic" | "regular" | "premium" | undefined;
7749
7907
  } | undefined;
7750
7908
  vonageCredentials?: {
7751
7909
  apiKey: string;
@@ -7818,17 +7976,17 @@ export declare const instagramContract: {
7818
7976
  }>;
7819
7977
  cxlog: z.ZodObject<{
7820
7978
  id: z.ZodString;
7979
+ channel: z.ZodNullable<z.ZodString>;
7980
+ direction: z.ZodNullable<z.ZodString>;
7821
7981
  createdAt: z.ZodDate;
7822
7982
  updatedAt: z.ZodDate;
7823
7983
  deletedAt: z.ZodNullable<z.ZodDate>;
7824
- caseId: z.ZodNumber;
7825
7984
  entityId: z.ZodString;
7826
- entityName: z.ZodString;
7827
- contactId: z.ZodNullable<z.ZodString>;
7828
- channel: z.ZodNullable<z.ZodString>;
7829
7985
  queueId: z.ZodNullable<z.ZodString>;
7986
+ contactId: z.ZodNullable<z.ZodString>;
7987
+ caseId: z.ZodNumber;
7988
+ entityName: z.ZodString;
7830
7989
  agentId: z.ZodNullable<z.ZodString>;
7831
- direction: z.ZodNullable<z.ZodString>;
7832
7990
  startedDate: z.ZodNullable<z.ZodDate>;
7833
7991
  handledTime: z.ZodNullable<z.ZodNumber>;
7834
7992
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
@@ -8098,6 +8256,69 @@ export declare const instagramContract: {
8098
8256
  dateValue: Date | null;
8099
8257
  }[] | null | undefined;
8100
8258
  }>>;
8259
+ holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
8260
+ id: z.ZodString;
8261
+ createdAt: z.ZodDate;
8262
+ updatedAt: z.ZodDate;
8263
+ deletedAt: z.ZodNullable<z.ZodDate>;
8264
+ startedAt: z.ZodString;
8265
+ endedAt: z.ZodNullable<z.ZodString>;
8266
+ duration: z.ZodNullable<z.ZodNumber>;
8267
+ holdLabel: z.ZodObject<{
8268
+ id: z.ZodString;
8269
+ createdAt: z.ZodDate;
8270
+ updatedAt: z.ZodDate;
8271
+ deletedAt: z.ZodNullable<z.ZodDate>;
8272
+ name: z.ZodString;
8273
+ position: z.ZodNumber;
8274
+ }, "strip", z.ZodTypeAny, {
8275
+ name: string;
8276
+ id: string;
8277
+ position: number;
8278
+ createdAt: Date;
8279
+ updatedAt: Date;
8280
+ deletedAt: Date | null;
8281
+ }, {
8282
+ name: string;
8283
+ id: string;
8284
+ position: number;
8285
+ createdAt: Date;
8286
+ updatedAt: Date;
8287
+ deletedAt: Date | null;
8288
+ }>;
8289
+ }, "strip", z.ZodTypeAny, {
8290
+ id: string;
8291
+ createdAt: Date;
8292
+ updatedAt: Date;
8293
+ deletedAt: Date | null;
8294
+ startedAt: string;
8295
+ endedAt: string | null;
8296
+ duration: number | null;
8297
+ holdLabel: {
8298
+ name: string;
8299
+ id: string;
8300
+ position: number;
8301
+ createdAt: Date;
8302
+ updatedAt: Date;
8303
+ deletedAt: Date | null;
8304
+ };
8305
+ }, {
8306
+ id: string;
8307
+ createdAt: Date;
8308
+ updatedAt: Date;
8309
+ deletedAt: Date | null;
8310
+ startedAt: string;
8311
+ endedAt: string | null;
8312
+ duration: number | null;
8313
+ holdLabel: {
8314
+ name: string;
8315
+ id: string;
8316
+ position: number;
8317
+ createdAt: Date;
8318
+ updatedAt: Date;
8319
+ deletedAt: Date | null;
8320
+ };
8321
+ }>, "many">>>;
8101
8322
  }, "strip", z.ZodTypeAny, {
8102
8323
  id: string;
8103
8324
  channel: string | null;
@@ -8166,6 +8387,23 @@ export declare const instagramContract: {
8166
8387
  dateValue: Date | null;
8167
8388
  }[] | null | undefined;
8168
8389
  } | null;
8390
+ holdLogs?: {
8391
+ id: string;
8392
+ createdAt: Date;
8393
+ updatedAt: Date;
8394
+ deletedAt: Date | null;
8395
+ startedAt: string;
8396
+ endedAt: string | null;
8397
+ duration: number | null;
8398
+ holdLabel: {
8399
+ name: string;
8400
+ id: string;
8401
+ position: number;
8402
+ createdAt: Date;
8403
+ updatedAt: Date;
8404
+ deletedAt: Date | null;
8405
+ };
8406
+ }[] | null | undefined;
8169
8407
  }, {
8170
8408
  id: string;
8171
8409
  channel: string | null;
@@ -8234,6 +8472,23 @@ export declare const instagramContract: {
8234
8472
  dateValue: Date | null;
8235
8473
  }[] | null | undefined;
8236
8474
  } | null;
8475
+ holdLogs?: {
8476
+ id: string;
8477
+ createdAt: Date;
8478
+ updatedAt: Date;
8479
+ deletedAt: Date | null;
8480
+ startedAt: string;
8481
+ endedAt: string | null;
8482
+ duration: number | null;
8483
+ holdLabel: {
8484
+ name: string;
8485
+ id: string;
8486
+ position: number;
8487
+ createdAt: Date;
8488
+ updatedAt: Date;
8489
+ deletedAt: Date | null;
8490
+ };
8491
+ }[] | null | undefined;
8237
8492
  }>;
8238
8493
  workflowRule: z.ZodObject<{
8239
8494
  id: z.ZodString;
@@ -8283,6 +8538,7 @@ export declare const instagramContract: {
8283
8538
  channelId?: string | undefined;
8284
8539
  status?: "active" | "pending" | undefined;
8285
8540
  apiKey?: string | undefined;
8541
+ tier?: "basic" | "regular" | "premium" | undefined;
8286
8542
  } | undefined;
8287
8543
  vonageCredentials?: {
8288
8544
  apiKey: string;
@@ -8650,6 +8906,23 @@ export declare const instagramContract: {
8650
8906
  dateValue: Date | null;
8651
8907
  }[] | null | undefined;
8652
8908
  } | null;
8909
+ holdLogs?: {
8910
+ id: string;
8911
+ createdAt: Date;
8912
+ updatedAt: Date;
8913
+ deletedAt: Date | null;
8914
+ startedAt: string;
8915
+ endedAt: string | null;
8916
+ duration: number | null;
8917
+ holdLabel: {
8918
+ name: string;
8919
+ id: string;
8920
+ position: number;
8921
+ createdAt: Date;
8922
+ updatedAt: Date;
8923
+ deletedAt: Date | null;
8924
+ };
8925
+ }[] | null | undefined;
8653
8926
  };
8654
8927
  workflowRule: {
8655
8928
  name: string;
@@ -8683,6 +8956,7 @@ export declare const instagramContract: {
8683
8956
  channelId?: string | undefined;
8684
8957
  status?: "active" | "pending" | undefined;
8685
8958
  apiKey?: string | undefined;
8959
+ tier?: "basic" | "regular" | "premium" | undefined;
8686
8960
  } | undefined;
8687
8961
  vonageCredentials?: {
8688
8962
  apiKey: string;
@@ -9050,6 +9324,23 @@ export declare const instagramContract: {
9050
9324
  dateValue: Date | null;
9051
9325
  }[] | null | undefined;
9052
9326
  } | null;
9327
+ holdLogs?: {
9328
+ id: string;
9329
+ createdAt: Date;
9330
+ updatedAt: Date;
9331
+ deletedAt: Date | null;
9332
+ startedAt: string;
9333
+ endedAt: string | null;
9334
+ duration: number | null;
9335
+ holdLabel: {
9336
+ name: string;
9337
+ id: string;
9338
+ position: number;
9339
+ createdAt: Date;
9340
+ updatedAt: Date;
9341
+ deletedAt: Date | null;
9342
+ };
9343
+ }[] | null | undefined;
9053
9344
  };
9054
9345
  workflowRule: {
9055
9346
  name: string;
@@ -9103,7 +9394,7 @@ export declare const instagramContract: {
9103
9394
  deletedAt: z.ZodNullable<z.ZodDate>;
9104
9395
  message: z.ZodString;
9105
9396
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
9106
- 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"]>;
9397
+ 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"]>;
9107
9398
  readAt: z.ZodDate;
9108
9399
  metadata: z.ZodAny;
9109
9400
  platformId: z.ZodString;
@@ -9761,7 +10052,7 @@ export declare const instagramContract: {
9761
10052
  };
9762
10053
  }>;
9763
10054
  }, "strip", z.ZodTypeAny, {
9764
- 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";
10055
+ 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";
9765
10056
  message: string;
9766
10057
  id: string;
9767
10058
  url: string;
@@ -9923,7 +10214,7 @@ export declare const instagramContract: {
9923
10214
  metadata?: any;
9924
10215
  template?: any;
9925
10216
  }, {
9926
- 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";
10217
+ 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";
9927
10218
  message: string;
9928
10219
  id: string;
9929
10220
  url: string;
@@ -10725,7 +11016,7 @@ export declare const instagramContract: {
10725
11016
  editedMessageid: z.ZodString;
10726
11017
  label: z.ZodOptional<z.ZodString>;
10727
11018
  }, "strip", z.ZodTypeAny, {
10728
- 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";
11019
+ 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";
10729
11020
  message: string;
10730
11021
  id: string;
10731
11022
  url: string;
@@ -10856,6 +11147,7 @@ export declare const instagramContract: {
10856
11147
  channelId?: string | undefined;
10857
11148
  status?: "active" | "pending" | undefined;
10858
11149
  apiKey?: string | undefined;
11150
+ tier?: "basic" | "regular" | "premium" | undefined;
10859
11151
  } | undefined;
10860
11152
  vonageCredentials?: {
10861
11153
  apiKey: string;
@@ -11223,6 +11515,23 @@ export declare const instagramContract: {
11223
11515
  dateValue: Date | null;
11224
11516
  }[] | null | undefined;
11225
11517
  } | null;
11518
+ holdLogs?: {
11519
+ id: string;
11520
+ createdAt: Date;
11521
+ updatedAt: Date;
11522
+ deletedAt: Date | null;
11523
+ startedAt: string;
11524
+ endedAt: string | null;
11525
+ duration: number | null;
11526
+ holdLabel: {
11527
+ name: string;
11528
+ id: string;
11529
+ position: number;
11530
+ createdAt: Date;
11531
+ updatedAt: Date;
11532
+ deletedAt: Date | null;
11533
+ };
11534
+ }[] | null | undefined;
11226
11535
  };
11227
11536
  workflowRule: {
11228
11537
  name: string;
@@ -11251,7 +11560,7 @@ export declare const instagramContract: {
11251
11560
  previewUrl: string;
11252
11561
  imageSetId: string;
11253
11562
  repliedMessage: {
11254
- 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";
11563
+ 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";
11255
11564
  message: string;
11256
11565
  id: string;
11257
11566
  url: string;
@@ -11462,7 +11771,7 @@ export declare const instagramContract: {
11462
11771
  template?: any;
11463
11772
  label?: string | undefined;
11464
11773
  }, {
11465
- 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";
11774
+ 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";
11466
11775
  message: string;
11467
11776
  id: string;
11468
11777
  url: string;
@@ -11593,6 +11902,7 @@ export declare const instagramContract: {
11593
11902
  channelId?: string | undefined;
11594
11903
  status?: "active" | "pending" | undefined;
11595
11904
  apiKey?: string | undefined;
11905
+ tier?: "basic" | "regular" | "premium" | undefined;
11596
11906
  } | undefined;
11597
11907
  vonageCredentials?: {
11598
11908
  apiKey: string;
@@ -11960,6 +12270,23 @@ export declare const instagramContract: {
11960
12270
  dateValue: Date | null;
11961
12271
  }[] | null | undefined;
11962
12272
  } | null;
12273
+ holdLogs?: {
12274
+ id: string;
12275
+ createdAt: Date;
12276
+ updatedAt: Date;
12277
+ deletedAt: Date | null;
12278
+ startedAt: string;
12279
+ endedAt: string | null;
12280
+ duration: number | null;
12281
+ holdLabel: {
12282
+ name: string;
12283
+ id: string;
12284
+ position: number;
12285
+ createdAt: Date;
12286
+ updatedAt: Date;
12287
+ deletedAt: Date | null;
12288
+ };
12289
+ }[] | null | undefined;
11963
12290
  };
11964
12291
  workflowRule: {
11965
12292
  name: string;
@@ -11988,7 +12315,7 @@ export declare const instagramContract: {
11988
12315
  previewUrl: string;
11989
12316
  imageSetId: string;
11990
12317
  repliedMessage: {
11991
- 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";
12318
+ 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";
11992
12319
  message: string;
11993
12320
  id: string;
11994
12321
  url: string;
@@ -12200,7 +12527,7 @@ export declare const instagramContract: {
12200
12527
  label?: string | undefined;
12201
12528
  }>>>;
12202
12529
  }, "strip", z.ZodTypeAny, {
12203
- 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";
12530
+ 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";
12204
12531
  message: string;
12205
12532
  id: string;
12206
12533
  url: string;
@@ -12331,6 +12658,7 @@ export declare const instagramContract: {
12331
12658
  channelId?: string | undefined;
12332
12659
  status?: "active" | "pending" | undefined;
12333
12660
  apiKey?: string | undefined;
12661
+ tier?: "basic" | "regular" | "premium" | undefined;
12334
12662
  } | undefined;
12335
12663
  vonageCredentials?: {
12336
12664
  apiKey: string;
@@ -12698,6 +13026,23 @@ export declare const instagramContract: {
12698
13026
  dateValue: Date | null;
12699
13027
  }[] | null | undefined;
12700
13028
  } | null;
13029
+ holdLogs?: {
13030
+ id: string;
13031
+ createdAt: Date;
13032
+ updatedAt: Date;
13033
+ deletedAt: Date | null;
13034
+ startedAt: string;
13035
+ endedAt: string | null;
13036
+ duration: number | null;
13037
+ holdLabel: {
13038
+ name: string;
13039
+ id: string;
13040
+ position: number;
13041
+ createdAt: Date;
13042
+ updatedAt: Date;
13043
+ deletedAt: Date | null;
13044
+ };
13045
+ }[] | null | undefined;
12701
13046
  };
12702
13047
  workflowRule: {
12703
13048
  name: string;
@@ -12726,7 +13071,7 @@ export declare const instagramContract: {
12726
13071
  previewUrl: string;
12727
13072
  imageSetId: string;
12728
13073
  repliedMessage: {
12729
- 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";
13074
+ 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";
12730
13075
  message: string;
12731
13076
  id: string;
12732
13077
  url: string;
@@ -12937,7 +13282,7 @@ export declare const instagramContract: {
12937
13282
  template?: any;
12938
13283
  metadata?: any;
12939
13284
  fromMessage?: {
12940
- 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";
13285
+ 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";
12941
13286
  message: string;
12942
13287
  id: string;
12943
13288
  url: string;
@@ -13068,6 +13413,7 @@ export declare const instagramContract: {
13068
13413
  channelId?: string | undefined;
13069
13414
  status?: "active" | "pending" | undefined;
13070
13415
  apiKey?: string | undefined;
13416
+ tier?: "basic" | "regular" | "premium" | undefined;
13071
13417
  } | undefined;
13072
13418
  vonageCredentials?: {
13073
13419
  apiKey: string;
@@ -13435,6 +13781,23 @@ export declare const instagramContract: {
13435
13781
  dateValue: Date | null;
13436
13782
  }[] | null | undefined;
13437
13783
  } | null;
13784
+ holdLogs?: {
13785
+ id: string;
13786
+ createdAt: Date;
13787
+ updatedAt: Date;
13788
+ deletedAt: Date | null;
13789
+ startedAt: string;
13790
+ endedAt: string | null;
13791
+ duration: number | null;
13792
+ holdLabel: {
13793
+ name: string;
13794
+ id: string;
13795
+ position: number;
13796
+ createdAt: Date;
13797
+ updatedAt: Date;
13798
+ deletedAt: Date | null;
13799
+ };
13800
+ }[] | null | undefined;
13438
13801
  };
13439
13802
  workflowRule: {
13440
13803
  name: string;
@@ -13463,7 +13826,7 @@ export declare const instagramContract: {
13463
13826
  previewUrl: string;
13464
13827
  imageSetId: string;
13465
13828
  repliedMessage: {
13466
- 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";
13829
+ 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";
13467
13830
  message: string;
13468
13831
  id: string;
13469
13832
  url: string;
@@ -13675,7 +14038,7 @@ export declare const instagramContract: {
13675
14038
  label?: string | undefined;
13676
14039
  } | null | undefined;
13677
14040
  }, {
13678
- 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";
14041
+ 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";
13679
14042
  message: string;
13680
14043
  id: string;
13681
14044
  url: string;
@@ -13806,6 +14169,7 @@ export declare const instagramContract: {
13806
14169
  channelId?: string | undefined;
13807
14170
  status?: "active" | "pending" | undefined;
13808
14171
  apiKey?: string | undefined;
14172
+ tier?: "basic" | "regular" | "premium" | undefined;
13809
14173
  } | undefined;
13810
14174
  vonageCredentials?: {
13811
14175
  apiKey: string;
@@ -14173,6 +14537,23 @@ export declare const instagramContract: {
14173
14537
  dateValue: Date | null;
14174
14538
  }[] | null | undefined;
14175
14539
  } | null;
14540
+ holdLogs?: {
14541
+ id: string;
14542
+ createdAt: Date;
14543
+ updatedAt: Date;
14544
+ deletedAt: Date | null;
14545
+ startedAt: string;
14546
+ endedAt: string | null;
14547
+ duration: number | null;
14548
+ holdLabel: {
14549
+ name: string;
14550
+ id: string;
14551
+ position: number;
14552
+ createdAt: Date;
14553
+ updatedAt: Date;
14554
+ deletedAt: Date | null;
14555
+ };
14556
+ }[] | null | undefined;
14176
14557
  };
14177
14558
  workflowRule: {
14178
14559
  name: string;
@@ -14201,7 +14582,7 @@ export declare const instagramContract: {
14201
14582
  previewUrl: string;
14202
14583
  imageSetId: string;
14203
14584
  repliedMessage: {
14204
- 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";
14585
+ 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";
14205
14586
  message: string;
14206
14587
  id: string;
14207
14588
  url: string;
@@ -14412,7 +14793,7 @@ export declare const instagramContract: {
14412
14793
  template?: any;
14413
14794
  metadata?: any;
14414
14795
  fromMessage?: {
14415
- 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";
14796
+ 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";
14416
14797
  message: string;
14417
14798
  id: string;
14418
14799
  url: string;
@@ -14543,6 +14924,7 @@ export declare const instagramContract: {
14543
14924
  channelId?: string | undefined;
14544
14925
  status?: "active" | "pending" | undefined;
14545
14926
  apiKey?: string | undefined;
14927
+ tier?: "basic" | "regular" | "premium" | undefined;
14546
14928
  } | undefined;
14547
14929
  vonageCredentials?: {
14548
14930
  apiKey: string;
@@ -14910,6 +15292,23 @@ export declare const instagramContract: {
14910
15292
  dateValue: Date | null;
14911
15293
  }[] | null | undefined;
14912
15294
  } | null;
15295
+ holdLogs?: {
15296
+ id: string;
15297
+ createdAt: Date;
15298
+ updatedAt: Date;
15299
+ deletedAt: Date | null;
15300
+ startedAt: string;
15301
+ endedAt: string | null;
15302
+ duration: number | null;
15303
+ holdLabel: {
15304
+ name: string;
15305
+ id: string;
15306
+ position: number;
15307
+ createdAt: Date;
15308
+ updatedAt: Date;
15309
+ deletedAt: Date | null;
15310
+ };
15311
+ }[] | null | undefined;
14913
15312
  };
14914
15313
  workflowRule: {
14915
15314
  name: string;
@@ -14938,7 +15337,7 @@ export declare const instagramContract: {
14938
15337
  previewUrl: string;
14939
15338
  imageSetId: string;
14940
15339
  repliedMessage: {
14941
- 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";
15340
+ 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";
14942
15341
  message: string;
14943
15342
  id: string;
14944
15343
  url: string;
@@ -15152,7 +15551,7 @@ export declare const instagramContract: {
15152
15551
  }>;
15153
15552
  }, "strip", z.ZodTypeAny, {
15154
15553
  data: {
15155
- 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";
15554
+ 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";
15156
15555
  message: string;
15157
15556
  id: string;
15158
15557
  url: string;
@@ -15283,6 +15682,7 @@ export declare const instagramContract: {
15283
15682
  channelId?: string | undefined;
15284
15683
  status?: "active" | "pending" | undefined;
15285
15684
  apiKey?: string | undefined;
15685
+ tier?: "basic" | "regular" | "premium" | undefined;
15286
15686
  } | undefined;
15287
15687
  vonageCredentials?: {
15288
15688
  apiKey: string;
@@ -15650,6 +16050,23 @@ export declare const instagramContract: {
15650
16050
  dateValue: Date | null;
15651
16051
  }[] | null | undefined;
15652
16052
  } | null;
16053
+ holdLogs?: {
16054
+ id: string;
16055
+ createdAt: Date;
16056
+ updatedAt: Date;
16057
+ deletedAt: Date | null;
16058
+ startedAt: string;
16059
+ endedAt: string | null;
16060
+ duration: number | null;
16061
+ holdLabel: {
16062
+ name: string;
16063
+ id: string;
16064
+ position: number;
16065
+ createdAt: Date;
16066
+ updatedAt: Date;
16067
+ deletedAt: Date | null;
16068
+ };
16069
+ }[] | null | undefined;
15653
16070
  };
15654
16071
  workflowRule: {
15655
16072
  name: string;
@@ -15678,7 +16095,7 @@ export declare const instagramContract: {
15678
16095
  previewUrl: string;
15679
16096
  imageSetId: string;
15680
16097
  repliedMessage: {
15681
- 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";
16098
+ 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";
15682
16099
  message: string;
15683
16100
  id: string;
15684
16101
  url: string;
@@ -15889,7 +16306,7 @@ export declare const instagramContract: {
15889
16306
  template?: any;
15890
16307
  metadata?: any;
15891
16308
  fromMessage?: {
15892
- 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";
16309
+ 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";
15893
16310
  message: string;
15894
16311
  id: string;
15895
16312
  url: string;
@@ -16020,6 +16437,7 @@ export declare const instagramContract: {
16020
16437
  channelId?: string | undefined;
16021
16438
  status?: "active" | "pending" | undefined;
16022
16439
  apiKey?: string | undefined;
16440
+ tier?: "basic" | "regular" | "premium" | undefined;
16023
16441
  } | undefined;
16024
16442
  vonageCredentials?: {
16025
16443
  apiKey: string;
@@ -16387,6 +16805,23 @@ export declare const instagramContract: {
16387
16805
  dateValue: Date | null;
16388
16806
  }[] | null | undefined;
16389
16807
  } | null;
16808
+ holdLogs?: {
16809
+ id: string;
16810
+ createdAt: Date;
16811
+ updatedAt: Date;
16812
+ deletedAt: Date | null;
16813
+ startedAt: string;
16814
+ endedAt: string | null;
16815
+ duration: number | null;
16816
+ holdLabel: {
16817
+ name: string;
16818
+ id: string;
16819
+ position: number;
16820
+ createdAt: Date;
16821
+ updatedAt: Date;
16822
+ deletedAt: Date | null;
16823
+ };
16824
+ }[] | null | undefined;
16390
16825
  };
16391
16826
  workflowRule: {
16392
16827
  name: string;
@@ -16415,7 +16850,7 @@ export declare const instagramContract: {
16415
16850
  previewUrl: string;
16416
16851
  imageSetId: string;
16417
16852
  repliedMessage: {
16418
- 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";
16853
+ 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";
16419
16854
  message: string;
16420
16855
  id: string;
16421
16856
  url: string;
@@ -16630,7 +17065,7 @@ export declare const instagramContract: {
16630
17065
  requestId: string;
16631
17066
  }, {
16632
17067
  data: {
16633
- 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";
17068
+ 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";
16634
17069
  message: string;
16635
17070
  id: string;
16636
17071
  url: string;
@@ -16761,6 +17196,7 @@ export declare const instagramContract: {
16761
17196
  channelId?: string | undefined;
16762
17197
  status?: "active" | "pending" | undefined;
16763
17198
  apiKey?: string | undefined;
17199
+ tier?: "basic" | "regular" | "premium" | undefined;
16764
17200
  } | undefined;
16765
17201
  vonageCredentials?: {
16766
17202
  apiKey: string;
@@ -17128,6 +17564,23 @@ export declare const instagramContract: {
17128
17564
  dateValue: Date | null;
17129
17565
  }[] | null | undefined;
17130
17566
  } | null;
17567
+ holdLogs?: {
17568
+ id: string;
17569
+ createdAt: Date;
17570
+ updatedAt: Date;
17571
+ deletedAt: Date | null;
17572
+ startedAt: string;
17573
+ endedAt: string | null;
17574
+ duration: number | null;
17575
+ holdLabel: {
17576
+ name: string;
17577
+ id: string;
17578
+ position: number;
17579
+ createdAt: Date;
17580
+ updatedAt: Date;
17581
+ deletedAt: Date | null;
17582
+ };
17583
+ }[] | null | undefined;
17131
17584
  };
17132
17585
  workflowRule: {
17133
17586
  name: string;
@@ -17156,7 +17609,7 @@ export declare const instagramContract: {
17156
17609
  previewUrl: string;
17157
17610
  imageSetId: string;
17158
17611
  repliedMessage: {
17159
- 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";
17612
+ 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";
17160
17613
  message: string;
17161
17614
  id: string;
17162
17615
  url: string;
@@ -17367,7 +17820,7 @@ export declare const instagramContract: {
17367
17820
  template?: any;
17368
17821
  metadata?: any;
17369
17822
  fromMessage?: {
17370
- 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";
17823
+ 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";
17371
17824
  message: string;
17372
17825
  id: string;
17373
17826
  url: string;
@@ -17498,6 +17951,7 @@ export declare const instagramContract: {
17498
17951
  channelId?: string | undefined;
17499
17952
  status?: "active" | "pending" | undefined;
17500
17953
  apiKey?: string | undefined;
17954
+ tier?: "basic" | "regular" | "premium" | undefined;
17501
17955
  } | undefined;
17502
17956
  vonageCredentials?: {
17503
17957
  apiKey: string;
@@ -17865,6 +18319,23 @@ export declare const instagramContract: {
17865
18319
  dateValue: Date | null;
17866
18320
  }[] | null | undefined;
17867
18321
  } | null;
18322
+ holdLogs?: {
18323
+ id: string;
18324
+ createdAt: Date;
18325
+ updatedAt: Date;
18326
+ deletedAt: Date | null;
18327
+ startedAt: string;
18328
+ endedAt: string | null;
18329
+ duration: number | null;
18330
+ holdLabel: {
18331
+ name: string;
18332
+ id: string;
18333
+ position: number;
18334
+ createdAt: Date;
18335
+ updatedAt: Date;
18336
+ deletedAt: Date | null;
18337
+ };
18338
+ }[] | null | undefined;
17868
18339
  };
17869
18340
  workflowRule: {
17870
18341
  name: string;
@@ -17893,7 +18364,7 @@ export declare const instagramContract: {
17893
18364
  previewUrl: string;
17894
18365
  imageSetId: string;
17895
18366
  repliedMessage: {
17896
- 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";
18367
+ 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";
17897
18368
  message: string;
17898
18369
  id: string;
17899
18370
  url: string;
@@ -18141,6 +18612,7 @@ export declare const instagramContract: {
18141
18612
  channelId: z.ZodOptional<z.ZodString>;
18142
18613
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18143
18614
  apiKey: z.ZodOptional<z.ZodString>;
18615
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18144
18616
  }, "strip", z.ZodTypeAny, {
18145
18617
  email: string;
18146
18618
  wabaExternalId: string;
@@ -18150,6 +18622,7 @@ export declare const instagramContract: {
18150
18622
  channelId?: string | undefined;
18151
18623
  status?: "active" | "pending" | undefined;
18152
18624
  apiKey?: string | undefined;
18625
+ tier?: "basic" | "regular" | "premium" | undefined;
18153
18626
  }, {
18154
18627
  email: string;
18155
18628
  wabaExternalId: string;
@@ -18159,6 +18632,7 @@ export declare const instagramContract: {
18159
18632
  channelId?: string | undefined;
18160
18633
  status?: "active" | "pending" | undefined;
18161
18634
  apiKey?: string | undefined;
18635
+ tier?: "basic" | "regular" | "premium" | undefined;
18162
18636
  }>>;
18163
18637
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18164
18638
  mobileNumber: z.ZodString;
@@ -18191,6 +18665,7 @@ export declare const instagramContract: {
18191
18665
  channelId?: string | undefined;
18192
18666
  status?: "active" | "pending" | undefined;
18193
18667
  apiKey?: string | undefined;
18668
+ tier?: "basic" | "regular" | "premium" | undefined;
18194
18669
  } | undefined;
18195
18670
  vonageCredentials?: {
18196
18671
  apiKey: string;
@@ -18215,6 +18690,7 @@ export declare const instagramContract: {
18215
18690
  channelId?: string | undefined;
18216
18691
  status?: "active" | "pending" | undefined;
18217
18692
  apiKey?: string | undefined;
18693
+ tier?: "basic" | "regular" | "premium" | undefined;
18218
18694
  } | undefined;
18219
18695
  vonageCredentials?: {
18220
18696
  apiKey: string;
@@ -18269,6 +18745,7 @@ export declare const instagramContract: {
18269
18745
  channelId?: string | undefined;
18270
18746
  status?: "active" | "pending" | undefined;
18271
18747
  apiKey?: string | undefined;
18748
+ tier?: "basic" | "regular" | "premium" | undefined;
18272
18749
  } | undefined;
18273
18750
  vonageCredentials?: {
18274
18751
  apiKey: string;
@@ -18311,6 +18788,7 @@ export declare const instagramContract: {
18311
18788
  channelId?: string | undefined;
18312
18789
  status?: "active" | "pending" | undefined;
18313
18790
  apiKey?: string | undefined;
18791
+ tier?: "basic" | "regular" | "premium" | undefined;
18314
18792
  } | undefined;
18315
18793
  vonageCredentials?: {
18316
18794
  apiKey: string;
@@ -18358,6 +18836,7 @@ export declare const instagramContract: {
18358
18836
  channelId: z.ZodOptional<z.ZodString>;
18359
18837
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18360
18838
  apiKey: z.ZodOptional<z.ZodString>;
18839
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18361
18840
  }, "strip", z.ZodTypeAny, {
18362
18841
  email: string;
18363
18842
  wabaExternalId: string;
@@ -18367,6 +18846,7 @@ export declare const instagramContract: {
18367
18846
  channelId?: string | undefined;
18368
18847
  status?: "active" | "pending" | undefined;
18369
18848
  apiKey?: string | undefined;
18849
+ tier?: "basic" | "regular" | "premium" | undefined;
18370
18850
  }, {
18371
18851
  email: string;
18372
18852
  wabaExternalId: string;
@@ -18376,6 +18856,7 @@ export declare const instagramContract: {
18376
18856
  channelId?: string | undefined;
18377
18857
  status?: "active" | "pending" | undefined;
18378
18858
  apiKey?: string | undefined;
18859
+ tier?: "basic" | "regular" | "premium" | undefined;
18379
18860
  }>>;
18380
18861
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18381
18862
  mobileNumber: z.ZodString;
@@ -18408,6 +18889,7 @@ export declare const instagramContract: {
18408
18889
  channelId?: string | undefined;
18409
18890
  status?: "active" | "pending" | undefined;
18410
18891
  apiKey?: string | undefined;
18892
+ tier?: "basic" | "regular" | "premium" | undefined;
18411
18893
  } | undefined;
18412
18894
  vonageCredentials?: {
18413
18895
  apiKey: string;
@@ -18432,6 +18914,7 @@ export declare const instagramContract: {
18432
18914
  channelId?: string | undefined;
18433
18915
  status?: "active" | "pending" | undefined;
18434
18916
  apiKey?: string | undefined;
18917
+ tier?: "basic" | "regular" | "premium" | undefined;
18435
18918
  } | undefined;
18436
18919
  vonageCredentials?: {
18437
18920
  apiKey: string;
@@ -18486,6 +18969,7 @@ export declare const instagramContract: {
18486
18969
  channelId?: string | undefined;
18487
18970
  status?: "active" | "pending" | undefined;
18488
18971
  apiKey?: string | undefined;
18972
+ tier?: "basic" | "regular" | "premium" | undefined;
18489
18973
  } | undefined;
18490
18974
  vonageCredentials?: {
18491
18975
  apiKey: string;
@@ -18528,6 +19012,7 @@ export declare const instagramContract: {
18528
19012
  channelId?: string | undefined;
18529
19013
  status?: "active" | "pending" | undefined;
18530
19014
  apiKey?: string | undefined;
19015
+ tier?: "basic" | "regular" | "premium" | undefined;
18531
19016
  } | undefined;
18532
19017
  vonageCredentials?: {
18533
19018
  apiKey: string;
@@ -18572,6 +19057,7 @@ export declare const instagramContract: {
18572
19057
  channelId?: string | undefined;
18573
19058
  status?: "active" | "pending" | undefined;
18574
19059
  apiKey?: string | undefined;
19060
+ tier?: "basic" | "regular" | "premium" | undefined;
18575
19061
  } | undefined;
18576
19062
  vonageCredentials?: {
18577
19063
  apiKey: string;
@@ -18617,6 +19103,7 @@ export declare const instagramContract: {
18617
19103
  channelId?: string | undefined;
18618
19104
  status?: "active" | "pending" | undefined;
18619
19105
  apiKey?: string | undefined;
19106
+ tier?: "basic" | "regular" | "premium" | undefined;
18620
19107
  } | undefined;
18621
19108
  vonageCredentials?: {
18622
19109
  apiKey: string;
@@ -18686,6 +19173,7 @@ export declare const instagramContract: {
18686
19173
  channelId: z.ZodOptional<z.ZodString>;
18687
19174
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18688
19175
  apiKey: z.ZodOptional<z.ZodString>;
19176
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18689
19177
  }, "strip", z.ZodTypeAny, {
18690
19178
  email: string;
18691
19179
  wabaExternalId: string;
@@ -18695,6 +19183,7 @@ export declare const instagramContract: {
18695
19183
  channelId?: string | undefined;
18696
19184
  status?: "active" | "pending" | undefined;
18697
19185
  apiKey?: string | undefined;
19186
+ tier?: "basic" | "regular" | "premium" | undefined;
18698
19187
  }, {
18699
19188
  email: string;
18700
19189
  wabaExternalId: string;
@@ -18704,6 +19193,7 @@ export declare const instagramContract: {
18704
19193
  channelId?: string | undefined;
18705
19194
  status?: "active" | "pending" | undefined;
18706
19195
  apiKey?: string | undefined;
19196
+ tier?: "basic" | "regular" | "premium" | undefined;
18707
19197
  }>>;
18708
19198
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18709
19199
  mobileNumber: z.ZodString;
@@ -18736,6 +19226,7 @@ export declare const instagramContract: {
18736
19226
  channelId?: string | undefined;
18737
19227
  status?: "active" | "pending" | undefined;
18738
19228
  apiKey?: string | undefined;
19229
+ tier?: "basic" | "regular" | "premium" | undefined;
18739
19230
  } | undefined;
18740
19231
  vonageCredentials?: {
18741
19232
  apiKey: string;
@@ -18760,6 +19251,7 @@ export declare const instagramContract: {
18760
19251
  channelId?: string | undefined;
18761
19252
  status?: "active" | "pending" | undefined;
18762
19253
  apiKey?: string | undefined;
19254
+ tier?: "basic" | "regular" | "premium" | undefined;
18763
19255
  } | undefined;
18764
19256
  vonageCredentials?: {
18765
19257
  apiKey: string;
@@ -18814,6 +19306,7 @@ export declare const instagramContract: {
18814
19306
  channelId?: string | undefined;
18815
19307
  status?: "active" | "pending" | undefined;
18816
19308
  apiKey?: string | undefined;
19309
+ tier?: "basic" | "regular" | "premium" | undefined;
18817
19310
  } | undefined;
18818
19311
  vonageCredentials?: {
18819
19312
  apiKey: string;
@@ -18856,6 +19349,7 @@ export declare const instagramContract: {
18856
19349
  channelId?: string | undefined;
18857
19350
  status?: "active" | "pending" | undefined;
18858
19351
  apiKey?: string | undefined;
19352
+ tier?: "basic" | "regular" | "premium" | undefined;
18859
19353
  } | undefined;
18860
19354
  vonageCredentials?: {
18861
19355
  apiKey: string;
@@ -18903,6 +19397,7 @@ export declare const instagramContract: {
18903
19397
  channelId: z.ZodOptional<z.ZodString>;
18904
19398
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18905
19399
  apiKey: z.ZodOptional<z.ZodString>;
19400
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18906
19401
  }, "strip", z.ZodTypeAny, {
18907
19402
  email: string;
18908
19403
  wabaExternalId: string;
@@ -18912,6 +19407,7 @@ export declare const instagramContract: {
18912
19407
  channelId?: string | undefined;
18913
19408
  status?: "active" | "pending" | undefined;
18914
19409
  apiKey?: string | undefined;
19410
+ tier?: "basic" | "regular" | "premium" | undefined;
18915
19411
  }, {
18916
19412
  email: string;
18917
19413
  wabaExternalId: string;
@@ -18921,6 +19417,7 @@ export declare const instagramContract: {
18921
19417
  channelId?: string | undefined;
18922
19418
  status?: "active" | "pending" | undefined;
18923
19419
  apiKey?: string | undefined;
19420
+ tier?: "basic" | "regular" | "premium" | undefined;
18924
19421
  }>>;
18925
19422
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18926
19423
  mobileNumber: z.ZodString;
@@ -18953,6 +19450,7 @@ export declare const instagramContract: {
18953
19450
  channelId?: string | undefined;
18954
19451
  status?: "active" | "pending" | undefined;
18955
19452
  apiKey?: string | undefined;
19453
+ tier?: "basic" | "regular" | "premium" | undefined;
18956
19454
  } | undefined;
18957
19455
  vonageCredentials?: {
18958
19456
  apiKey: string;
@@ -18977,6 +19475,7 @@ export declare const instagramContract: {
18977
19475
  channelId?: string | undefined;
18978
19476
  status?: "active" | "pending" | undefined;
18979
19477
  apiKey?: string | undefined;
19478
+ tier?: "basic" | "regular" | "premium" | undefined;
18980
19479
  } | undefined;
18981
19480
  vonageCredentials?: {
18982
19481
  apiKey: string;
@@ -19031,6 +19530,7 @@ export declare const instagramContract: {
19031
19530
  channelId?: string | undefined;
19032
19531
  status?: "active" | "pending" | undefined;
19033
19532
  apiKey?: string | undefined;
19533
+ tier?: "basic" | "regular" | "premium" | undefined;
19034
19534
  } | undefined;
19035
19535
  vonageCredentials?: {
19036
19536
  apiKey: string;
@@ -19073,6 +19573,7 @@ export declare const instagramContract: {
19073
19573
  channelId?: string | undefined;
19074
19574
  status?: "active" | "pending" | undefined;
19075
19575
  apiKey?: string | undefined;
19576
+ tier?: "basic" | "regular" | "premium" | undefined;
19076
19577
  } | undefined;
19077
19578
  vonageCredentials?: {
19078
19579
  apiKey: string;
@@ -19117,6 +19618,7 @@ export declare const instagramContract: {
19117
19618
  channelId?: string | undefined;
19118
19619
  status?: "active" | "pending" | undefined;
19119
19620
  apiKey?: string | undefined;
19621
+ tier?: "basic" | "regular" | "premium" | undefined;
19120
19622
  } | undefined;
19121
19623
  vonageCredentials?: {
19122
19624
  apiKey: string;
@@ -19162,6 +19664,7 @@ export declare const instagramContract: {
19162
19664
  channelId?: string | undefined;
19163
19665
  status?: "active" | "pending" | undefined;
19164
19666
  apiKey?: string | undefined;
19667
+ tier?: "basic" | "regular" | "premium" | undefined;
19165
19668
  } | undefined;
19166
19669
  vonageCredentials?: {
19167
19670
  apiKey: string;
@@ -19243,6 +19746,7 @@ export declare const instagramContract: {
19243
19746
  channelId: z.ZodOptional<z.ZodString>;
19244
19747
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19245
19748
  apiKey: z.ZodOptional<z.ZodString>;
19749
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19246
19750
  }, "strip", z.ZodTypeAny, {
19247
19751
  email: string;
19248
19752
  wabaExternalId: string;
@@ -19252,6 +19756,7 @@ export declare const instagramContract: {
19252
19756
  channelId?: string | undefined;
19253
19757
  status?: "active" | "pending" | undefined;
19254
19758
  apiKey?: string | undefined;
19759
+ tier?: "basic" | "regular" | "premium" | undefined;
19255
19760
  }, {
19256
19761
  email: string;
19257
19762
  wabaExternalId: string;
@@ -19261,6 +19766,7 @@ export declare const instagramContract: {
19261
19766
  channelId?: string | undefined;
19262
19767
  status?: "active" | "pending" | undefined;
19263
19768
  apiKey?: string | undefined;
19769
+ tier?: "basic" | "regular" | "premium" | undefined;
19264
19770
  }>>;
19265
19771
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19266
19772
  mobileNumber: z.ZodString;
@@ -19293,6 +19799,7 @@ export declare const instagramContract: {
19293
19799
  channelId?: string | undefined;
19294
19800
  status?: "active" | "pending" | undefined;
19295
19801
  apiKey?: string | undefined;
19802
+ tier?: "basic" | "regular" | "premium" | undefined;
19296
19803
  } | undefined;
19297
19804
  vonageCredentials?: {
19298
19805
  apiKey: string;
@@ -19317,6 +19824,7 @@ export declare const instagramContract: {
19317
19824
  channelId?: string | undefined;
19318
19825
  status?: "active" | "pending" | undefined;
19319
19826
  apiKey?: string | undefined;
19827
+ tier?: "basic" | "regular" | "premium" | undefined;
19320
19828
  } | undefined;
19321
19829
  vonageCredentials?: {
19322
19830
  apiKey: string;
@@ -19371,6 +19879,7 @@ export declare const instagramContract: {
19371
19879
  channelId?: string | undefined;
19372
19880
  status?: "active" | "pending" | undefined;
19373
19881
  apiKey?: string | undefined;
19882
+ tier?: "basic" | "regular" | "premium" | undefined;
19374
19883
  } | undefined;
19375
19884
  vonageCredentials?: {
19376
19885
  apiKey: string;
@@ -19413,6 +19922,7 @@ export declare const instagramContract: {
19413
19922
  channelId?: string | undefined;
19414
19923
  status?: "active" | "pending" | undefined;
19415
19924
  apiKey?: string | undefined;
19925
+ tier?: "basic" | "regular" | "premium" | undefined;
19416
19926
  } | undefined;
19417
19927
  vonageCredentials?: {
19418
19928
  apiKey: string;
@@ -19457,6 +19967,7 @@ export declare const instagramContract: {
19457
19967
  channelId?: string | undefined;
19458
19968
  status?: "active" | "pending" | undefined;
19459
19969
  apiKey?: string | undefined;
19970
+ tier?: "basic" | "regular" | "premium" | undefined;
19460
19971
  } | undefined;
19461
19972
  vonageCredentials?: {
19462
19973
  apiKey: string;
@@ -19502,6 +20013,7 @@ export declare const instagramContract: {
19502
20013
  channelId?: string | undefined;
19503
20014
  status?: "active" | "pending" | undefined;
19504
20015
  apiKey?: string | undefined;
20016
+ tier?: "basic" | "regular" | "premium" | undefined;
19505
20017
  } | undefined;
19506
20018
  vonageCredentials?: {
19507
20019
  apiKey: string;
@@ -19583,6 +20095,7 @@ export declare const instagramContract: {
19583
20095
  channelId: z.ZodOptional<z.ZodString>;
19584
20096
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19585
20097
  apiKey: z.ZodOptional<z.ZodString>;
20098
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19586
20099
  }, "strip", z.ZodTypeAny, {
19587
20100
  email: string;
19588
20101
  wabaExternalId: string;
@@ -19592,6 +20105,7 @@ export declare const instagramContract: {
19592
20105
  channelId?: string | undefined;
19593
20106
  status?: "active" | "pending" | undefined;
19594
20107
  apiKey?: string | undefined;
20108
+ tier?: "basic" | "regular" | "premium" | undefined;
19595
20109
  }, {
19596
20110
  email: string;
19597
20111
  wabaExternalId: string;
@@ -19601,6 +20115,7 @@ export declare const instagramContract: {
19601
20115
  channelId?: string | undefined;
19602
20116
  status?: "active" | "pending" | undefined;
19603
20117
  apiKey?: string | undefined;
20118
+ tier?: "basic" | "regular" | "premium" | undefined;
19604
20119
  }>>;
19605
20120
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19606
20121
  mobileNumber: z.ZodString;
@@ -19633,6 +20148,7 @@ export declare const instagramContract: {
19633
20148
  channelId?: string | undefined;
19634
20149
  status?: "active" | "pending" | undefined;
19635
20150
  apiKey?: string | undefined;
20151
+ tier?: "basic" | "regular" | "premium" | undefined;
19636
20152
  } | undefined;
19637
20153
  vonageCredentials?: {
19638
20154
  apiKey: string;
@@ -19657,6 +20173,7 @@ export declare const instagramContract: {
19657
20173
  channelId?: string | undefined;
19658
20174
  status?: "active" | "pending" | undefined;
19659
20175
  apiKey?: string | undefined;
20176
+ tier?: "basic" | "regular" | "premium" | undefined;
19660
20177
  } | undefined;
19661
20178
  vonageCredentials?: {
19662
20179
  apiKey: string;
@@ -19711,6 +20228,7 @@ export declare const instagramContract: {
19711
20228
  channelId?: string | undefined;
19712
20229
  status?: "active" | "pending" | undefined;
19713
20230
  apiKey?: string | undefined;
20231
+ tier?: "basic" | "regular" | "premium" | undefined;
19714
20232
  } | undefined;
19715
20233
  vonageCredentials?: {
19716
20234
  apiKey: string;
@@ -19753,6 +20271,7 @@ export declare const instagramContract: {
19753
20271
  channelId?: string | undefined;
19754
20272
  status?: "active" | "pending" | undefined;
19755
20273
  apiKey?: string | undefined;
20274
+ tier?: "basic" | "regular" | "premium" | undefined;
19756
20275
  } | undefined;
19757
20276
  vonageCredentials?: {
19758
20277
  apiKey: string;
@@ -19797,6 +20316,7 @@ export declare const instagramContract: {
19797
20316
  channelId?: string | undefined;
19798
20317
  status?: "active" | "pending" | undefined;
19799
20318
  apiKey?: string | undefined;
20319
+ tier?: "basic" | "regular" | "premium" | undefined;
19800
20320
  } | undefined;
19801
20321
  vonageCredentials?: {
19802
20322
  apiKey: string;
@@ -19842,6 +20362,7 @@ export declare const instagramContract: {
19842
20362
  channelId?: string | undefined;
19843
20363
  status?: "active" | "pending" | undefined;
19844
20364
  apiKey?: string | undefined;
20365
+ tier?: "basic" | "regular" | "premium" | undefined;
19845
20366
  } | undefined;
19846
20367
  vonageCredentials?: {
19847
20368
  apiKey: string;
@@ -19911,6 +20432,7 @@ export declare const instagramContract: {
19911
20432
  channelId: z.ZodOptional<z.ZodString>;
19912
20433
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19913
20434
  apiKey: z.ZodOptional<z.ZodString>;
20435
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19914
20436
  }, "strip", z.ZodTypeAny, {
19915
20437
  email: string;
19916
20438
  wabaExternalId: string;
@@ -19920,6 +20442,7 @@ export declare const instagramContract: {
19920
20442
  channelId?: string | undefined;
19921
20443
  status?: "active" | "pending" | undefined;
19922
20444
  apiKey?: string | undefined;
20445
+ tier?: "basic" | "regular" | "premium" | undefined;
19923
20446
  }, {
19924
20447
  email: string;
19925
20448
  wabaExternalId: string;
@@ -19929,6 +20452,7 @@ export declare const instagramContract: {
19929
20452
  channelId?: string | undefined;
19930
20453
  status?: "active" | "pending" | undefined;
19931
20454
  apiKey?: string | undefined;
20455
+ tier?: "basic" | "regular" | "premium" | undefined;
19932
20456
  }>>;
19933
20457
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19934
20458
  mobileNumber: z.ZodString;
@@ -19961,6 +20485,7 @@ export declare const instagramContract: {
19961
20485
  channelId?: string | undefined;
19962
20486
  status?: "active" | "pending" | undefined;
19963
20487
  apiKey?: string | undefined;
20488
+ tier?: "basic" | "regular" | "premium" | undefined;
19964
20489
  } | undefined;
19965
20490
  vonageCredentials?: {
19966
20491
  apiKey: string;
@@ -19985,6 +20510,7 @@ export declare const instagramContract: {
19985
20510
  channelId?: string | undefined;
19986
20511
  status?: "active" | "pending" | undefined;
19987
20512
  apiKey?: string | undefined;
20513
+ tier?: "basic" | "regular" | "premium" | undefined;
19988
20514
  } | undefined;
19989
20515
  vonageCredentials?: {
19990
20516
  apiKey: string;
@@ -20039,6 +20565,7 @@ export declare const instagramContract: {
20039
20565
  channelId?: string | undefined;
20040
20566
  status?: "active" | "pending" | undefined;
20041
20567
  apiKey?: string | undefined;
20568
+ tier?: "basic" | "regular" | "premium" | undefined;
20042
20569
  } | undefined;
20043
20570
  vonageCredentials?: {
20044
20571
  apiKey: string;
@@ -20081,6 +20608,7 @@ export declare const instagramContract: {
20081
20608
  channelId?: string | undefined;
20082
20609
  status?: "active" | "pending" | undefined;
20083
20610
  apiKey?: string | undefined;
20611
+ tier?: "basic" | "regular" | "premium" | undefined;
20084
20612
  } | undefined;
20085
20613
  vonageCredentials?: {
20086
20614
  apiKey: string;
@@ -20128,6 +20656,7 @@ export declare const instagramContract: {
20128
20656
  channelId: z.ZodOptional<z.ZodString>;
20129
20657
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20130
20658
  apiKey: z.ZodOptional<z.ZodString>;
20659
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20131
20660
  }, "strip", z.ZodTypeAny, {
20132
20661
  email: string;
20133
20662
  wabaExternalId: string;
@@ -20137,6 +20666,7 @@ export declare const instagramContract: {
20137
20666
  channelId?: string | undefined;
20138
20667
  status?: "active" | "pending" | undefined;
20139
20668
  apiKey?: string | undefined;
20669
+ tier?: "basic" | "regular" | "premium" | undefined;
20140
20670
  }, {
20141
20671
  email: string;
20142
20672
  wabaExternalId: string;
@@ -20146,6 +20676,7 @@ export declare const instagramContract: {
20146
20676
  channelId?: string | undefined;
20147
20677
  status?: "active" | "pending" | undefined;
20148
20678
  apiKey?: string | undefined;
20679
+ tier?: "basic" | "regular" | "premium" | undefined;
20149
20680
  }>>;
20150
20681
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20151
20682
  mobileNumber: z.ZodString;
@@ -20178,6 +20709,7 @@ export declare const instagramContract: {
20178
20709
  channelId?: string | undefined;
20179
20710
  status?: "active" | "pending" | undefined;
20180
20711
  apiKey?: string | undefined;
20712
+ tier?: "basic" | "regular" | "premium" | undefined;
20181
20713
  } | undefined;
20182
20714
  vonageCredentials?: {
20183
20715
  apiKey: string;
@@ -20202,6 +20734,7 @@ export declare const instagramContract: {
20202
20734
  channelId?: string | undefined;
20203
20735
  status?: "active" | "pending" | undefined;
20204
20736
  apiKey?: string | undefined;
20737
+ tier?: "basic" | "regular" | "premium" | undefined;
20205
20738
  } | undefined;
20206
20739
  vonageCredentials?: {
20207
20740
  apiKey: string;
@@ -20256,6 +20789,7 @@ export declare const instagramContract: {
20256
20789
  channelId?: string | undefined;
20257
20790
  status?: "active" | "pending" | undefined;
20258
20791
  apiKey?: string | undefined;
20792
+ tier?: "basic" | "regular" | "premium" | undefined;
20259
20793
  } | undefined;
20260
20794
  vonageCredentials?: {
20261
20795
  apiKey: string;
@@ -20298,6 +20832,7 @@ export declare const instagramContract: {
20298
20832
  channelId?: string | undefined;
20299
20833
  status?: "active" | "pending" | undefined;
20300
20834
  apiKey?: string | undefined;
20835
+ tier?: "basic" | "regular" | "premium" | undefined;
20301
20836
  } | undefined;
20302
20837
  vonageCredentials?: {
20303
20838
  apiKey: string;
@@ -20342,6 +20877,7 @@ export declare const instagramContract: {
20342
20877
  channelId?: string | undefined;
20343
20878
  status?: "active" | "pending" | undefined;
20344
20879
  apiKey?: string | undefined;
20880
+ tier?: "basic" | "regular" | "premium" | undefined;
20345
20881
  } | undefined;
20346
20882
  vonageCredentials?: {
20347
20883
  apiKey: string;
@@ -20387,6 +20923,7 @@ export declare const instagramContract: {
20387
20923
  channelId?: string | undefined;
20388
20924
  status?: "active" | "pending" | undefined;
20389
20925
  apiKey?: string | undefined;
20926
+ tier?: "basic" | "regular" | "premium" | undefined;
20390
20927
  } | undefined;
20391
20928
  vonageCredentials?: {
20392
20929
  apiKey: string;