@kl1/contracts 1.1.55 → 1.1.56

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 (63) hide show
  1. package/dist/api-contracts/src/automation-queue/index.d.ts +112 -0
  2. package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/index.d.ts +179 -0
  4. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/schema.d.ts +12 -0
  6. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  7. package/dist/api-contracts/src/channel/validation.d.ts +14 -0
  8. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/index.d.ts +377 -0
  10. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/schema.d.ts +66 -0
  12. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  13. package/dist/api-contracts/src/chat/validation.d.ts +107 -10
  14. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  15. package/dist/api-contracts/src/contract.d.ts +1114 -40
  16. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-intelligence/index.d.ts +115 -0
  18. package/dist/api-contracts/src/cx-intelligence/index.d.ts.map +1 -0
  19. package/dist/api-contracts/src/cx-log/index.d.ts +13 -0
  20. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/cx-log/schema.d.ts +11 -0
  22. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/index.d.ts +139 -5
  24. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  25. package/dist/api-contracts/src/facebook-feed/schema.d.ts +9 -0
  26. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  27. package/dist/api-contracts/src/facebook-feed/validation.d.ts +7 -0
  28. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  29. package/dist/api-contracts/src/hold-label/index.d.ts +417 -18
  30. package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
  31. package/dist/api-contracts/src/hold-label/schema.d.ts +144 -2
  32. package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
  33. package/dist/api-contracts/src/hold-label/validation.d.ts +10 -0
  34. package/dist/api-contracts/src/hold-label/validation.d.ts.map +1 -1
  35. package/dist/api-contracts/src/instagram/index.d.ts +110 -5
  36. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/line/index.d.ts +98 -5
  38. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/line/validation.d.ts +11 -0
  40. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  41. package/dist/api-contracts/src/messenger/index.d.ts +110 -5
  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 +25 -5
  46. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/subscription/index.d.ts +184 -184
  48. package/dist/api-contracts/src/subscription/schema.d.ts +216 -216
  49. package/dist/api-contracts/src/telegram/index.d.ts +80 -5
  50. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  51. package/dist/api-contracts/src/viber/index.d.ts +80 -5
  52. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  53. package/dist/api-contracts/src/webchat/index.d.ts +1099 -5
  54. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  55. package/dist/api-contracts/src/whatsapp/index.d.ts +94 -5
  56. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  57. package/dist/api-contracts/src/workflow-rule/index.d.ts +22 -0
  58. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  59. package/dist/index.js +61 -3
  60. package/dist/index.js.map +1 -1
  61. package/dist/index.mjs +61 -3
  62. package/dist/index.mjs.map +1 -1
  63. 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,11 +520,11 @@ 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>;
@@ -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,11 +775,11 @@ 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
  }, {
@@ -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
  }>;
@@ -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;
@@ -3809,6 +3827,7 @@ export declare const instagramContract: {
3809
3827
  channelId?: string | undefined;
3810
3828
  status?: "active" | "pending" | undefined;
3811
3829
  apiKey?: string | undefined;
3830
+ tier?: "basic" | "regular" | "premium" | undefined;
3812
3831
  } | undefined;
3813
3832
  vonageCredentials?: {
3814
3833
  apiKey: string;
@@ -4209,6 +4228,7 @@ export declare const instagramContract: {
4209
4228
  channelId?: string | undefined;
4210
4229
  status?: "active" | "pending" | undefined;
4211
4230
  apiKey?: string | undefined;
4231
+ tier?: "basic" | "regular" | "premium" | undefined;
4212
4232
  } | undefined;
4213
4233
  vonageCredentials?: {
4214
4234
  apiKey: string;
@@ -7325,6 +7345,7 @@ export declare const instagramContract: {
7325
7345
  channelId: z.ZodOptional<z.ZodString>;
7326
7346
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7327
7347
  apiKey: z.ZodOptional<z.ZodString>;
7348
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7328
7349
  }, "strip", z.ZodTypeAny, {
7329
7350
  email: string;
7330
7351
  wabaExternalId: string;
@@ -7334,6 +7355,7 @@ export declare const instagramContract: {
7334
7355
  channelId?: string | undefined;
7335
7356
  status?: "active" | "pending" | undefined;
7336
7357
  apiKey?: string | undefined;
7358
+ tier?: "basic" | "regular" | "premium" | undefined;
7337
7359
  }, {
7338
7360
  email: string;
7339
7361
  wabaExternalId: string;
@@ -7343,6 +7365,7 @@ export declare const instagramContract: {
7343
7365
  channelId?: string | undefined;
7344
7366
  status?: "active" | "pending" | undefined;
7345
7367
  apiKey?: string | undefined;
7368
+ tier?: "basic" | "regular" | "premium" | undefined;
7346
7369
  }>>;
7347
7370
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7348
7371
  mobileNumber: z.ZodString;
@@ -7375,6 +7398,7 @@ export declare const instagramContract: {
7375
7398
  channelId?: string | undefined;
7376
7399
  status?: "active" | "pending" | undefined;
7377
7400
  apiKey?: string | undefined;
7401
+ tier?: "basic" | "regular" | "premium" | undefined;
7378
7402
  } | undefined;
7379
7403
  vonageCredentials?: {
7380
7404
  apiKey: string;
@@ -7399,6 +7423,7 @@ export declare const instagramContract: {
7399
7423
  channelId?: string | undefined;
7400
7424
  status?: "active" | "pending" | undefined;
7401
7425
  apiKey?: string | undefined;
7426
+ tier?: "basic" | "regular" | "premium" | undefined;
7402
7427
  } | undefined;
7403
7428
  vonageCredentials?: {
7404
7429
  apiKey: string;
@@ -7657,6 +7682,7 @@ export declare const instagramContract: {
7657
7682
  channelId?: string | undefined;
7658
7683
  status?: "active" | "pending" | undefined;
7659
7684
  apiKey?: string | undefined;
7685
+ tier?: "basic" | "regular" | "premium" | undefined;
7660
7686
  } | undefined;
7661
7687
  vonageCredentials?: {
7662
7688
  apiKey: string;
@@ -7746,6 +7772,7 @@ export declare const instagramContract: {
7746
7772
  channelId?: string | undefined;
7747
7773
  status?: "active" | "pending" | undefined;
7748
7774
  apiKey?: string | undefined;
7775
+ tier?: "basic" | "regular" | "premium" | undefined;
7749
7776
  } | undefined;
7750
7777
  vonageCredentials?: {
7751
7778
  apiKey: string;
@@ -8283,6 +8310,7 @@ export declare const instagramContract: {
8283
8310
  channelId?: string | undefined;
8284
8311
  status?: "active" | "pending" | undefined;
8285
8312
  apiKey?: string | undefined;
8313
+ tier?: "basic" | "regular" | "premium" | undefined;
8286
8314
  } | undefined;
8287
8315
  vonageCredentials?: {
8288
8316
  apiKey: string;
@@ -8683,6 +8711,7 @@ export declare const instagramContract: {
8683
8711
  channelId?: string | undefined;
8684
8712
  status?: "active" | "pending" | undefined;
8685
8713
  apiKey?: string | undefined;
8714
+ tier?: "basic" | "regular" | "premium" | undefined;
8686
8715
  } | undefined;
8687
8716
  vonageCredentials?: {
8688
8717
  apiKey: string;
@@ -10856,6 +10885,7 @@ export declare const instagramContract: {
10856
10885
  channelId?: string | undefined;
10857
10886
  status?: "active" | "pending" | undefined;
10858
10887
  apiKey?: string | undefined;
10888
+ tier?: "basic" | "regular" | "premium" | undefined;
10859
10889
  } | undefined;
10860
10890
  vonageCredentials?: {
10861
10891
  apiKey: string;
@@ -11593,6 +11623,7 @@ export declare const instagramContract: {
11593
11623
  channelId?: string | undefined;
11594
11624
  status?: "active" | "pending" | undefined;
11595
11625
  apiKey?: string | undefined;
11626
+ tier?: "basic" | "regular" | "premium" | undefined;
11596
11627
  } | undefined;
11597
11628
  vonageCredentials?: {
11598
11629
  apiKey: string;
@@ -12331,6 +12362,7 @@ export declare const instagramContract: {
12331
12362
  channelId?: string | undefined;
12332
12363
  status?: "active" | "pending" | undefined;
12333
12364
  apiKey?: string | undefined;
12365
+ tier?: "basic" | "regular" | "premium" | undefined;
12334
12366
  } | undefined;
12335
12367
  vonageCredentials?: {
12336
12368
  apiKey: string;
@@ -13068,6 +13100,7 @@ export declare const instagramContract: {
13068
13100
  channelId?: string | undefined;
13069
13101
  status?: "active" | "pending" | undefined;
13070
13102
  apiKey?: string | undefined;
13103
+ tier?: "basic" | "regular" | "premium" | undefined;
13071
13104
  } | undefined;
13072
13105
  vonageCredentials?: {
13073
13106
  apiKey: string;
@@ -13806,6 +13839,7 @@ export declare const instagramContract: {
13806
13839
  channelId?: string | undefined;
13807
13840
  status?: "active" | "pending" | undefined;
13808
13841
  apiKey?: string | undefined;
13842
+ tier?: "basic" | "regular" | "premium" | undefined;
13809
13843
  } | undefined;
13810
13844
  vonageCredentials?: {
13811
13845
  apiKey: string;
@@ -14543,6 +14577,7 @@ export declare const instagramContract: {
14543
14577
  channelId?: string | undefined;
14544
14578
  status?: "active" | "pending" | undefined;
14545
14579
  apiKey?: string | undefined;
14580
+ tier?: "basic" | "regular" | "premium" | undefined;
14546
14581
  } | undefined;
14547
14582
  vonageCredentials?: {
14548
14583
  apiKey: string;
@@ -15283,6 +15318,7 @@ export declare const instagramContract: {
15283
15318
  channelId?: string | undefined;
15284
15319
  status?: "active" | "pending" | undefined;
15285
15320
  apiKey?: string | undefined;
15321
+ tier?: "basic" | "regular" | "premium" | undefined;
15286
15322
  } | undefined;
15287
15323
  vonageCredentials?: {
15288
15324
  apiKey: string;
@@ -16020,6 +16056,7 @@ export declare const instagramContract: {
16020
16056
  channelId?: string | undefined;
16021
16057
  status?: "active" | "pending" | undefined;
16022
16058
  apiKey?: string | undefined;
16059
+ tier?: "basic" | "regular" | "premium" | undefined;
16023
16060
  } | undefined;
16024
16061
  vonageCredentials?: {
16025
16062
  apiKey: string;
@@ -16761,6 +16798,7 @@ export declare const instagramContract: {
16761
16798
  channelId?: string | undefined;
16762
16799
  status?: "active" | "pending" | undefined;
16763
16800
  apiKey?: string | undefined;
16801
+ tier?: "basic" | "regular" | "premium" | undefined;
16764
16802
  } | undefined;
16765
16803
  vonageCredentials?: {
16766
16804
  apiKey: string;
@@ -17498,6 +17536,7 @@ export declare const instagramContract: {
17498
17536
  channelId?: string | undefined;
17499
17537
  status?: "active" | "pending" | undefined;
17500
17538
  apiKey?: string | undefined;
17539
+ tier?: "basic" | "regular" | "premium" | undefined;
17501
17540
  } | undefined;
17502
17541
  vonageCredentials?: {
17503
17542
  apiKey: string;
@@ -18141,6 +18180,7 @@ export declare const instagramContract: {
18141
18180
  channelId: z.ZodOptional<z.ZodString>;
18142
18181
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18143
18182
  apiKey: z.ZodOptional<z.ZodString>;
18183
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18144
18184
  }, "strip", z.ZodTypeAny, {
18145
18185
  email: string;
18146
18186
  wabaExternalId: string;
@@ -18150,6 +18190,7 @@ export declare const instagramContract: {
18150
18190
  channelId?: string | undefined;
18151
18191
  status?: "active" | "pending" | undefined;
18152
18192
  apiKey?: string | undefined;
18193
+ tier?: "basic" | "regular" | "premium" | undefined;
18153
18194
  }, {
18154
18195
  email: string;
18155
18196
  wabaExternalId: string;
@@ -18159,6 +18200,7 @@ export declare const instagramContract: {
18159
18200
  channelId?: string | undefined;
18160
18201
  status?: "active" | "pending" | undefined;
18161
18202
  apiKey?: string | undefined;
18203
+ tier?: "basic" | "regular" | "premium" | undefined;
18162
18204
  }>>;
18163
18205
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18164
18206
  mobileNumber: z.ZodString;
@@ -18191,6 +18233,7 @@ export declare const instagramContract: {
18191
18233
  channelId?: string | undefined;
18192
18234
  status?: "active" | "pending" | undefined;
18193
18235
  apiKey?: string | undefined;
18236
+ tier?: "basic" | "regular" | "premium" | undefined;
18194
18237
  } | undefined;
18195
18238
  vonageCredentials?: {
18196
18239
  apiKey: string;
@@ -18215,6 +18258,7 @@ export declare const instagramContract: {
18215
18258
  channelId?: string | undefined;
18216
18259
  status?: "active" | "pending" | undefined;
18217
18260
  apiKey?: string | undefined;
18261
+ tier?: "basic" | "regular" | "premium" | undefined;
18218
18262
  } | undefined;
18219
18263
  vonageCredentials?: {
18220
18264
  apiKey: string;
@@ -18269,6 +18313,7 @@ export declare const instagramContract: {
18269
18313
  channelId?: string | undefined;
18270
18314
  status?: "active" | "pending" | undefined;
18271
18315
  apiKey?: string | undefined;
18316
+ tier?: "basic" | "regular" | "premium" | undefined;
18272
18317
  } | undefined;
18273
18318
  vonageCredentials?: {
18274
18319
  apiKey: string;
@@ -18311,6 +18356,7 @@ export declare const instagramContract: {
18311
18356
  channelId?: string | undefined;
18312
18357
  status?: "active" | "pending" | undefined;
18313
18358
  apiKey?: string | undefined;
18359
+ tier?: "basic" | "regular" | "premium" | undefined;
18314
18360
  } | undefined;
18315
18361
  vonageCredentials?: {
18316
18362
  apiKey: string;
@@ -18358,6 +18404,7 @@ export declare const instagramContract: {
18358
18404
  channelId: z.ZodOptional<z.ZodString>;
18359
18405
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18360
18406
  apiKey: z.ZodOptional<z.ZodString>;
18407
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18361
18408
  }, "strip", z.ZodTypeAny, {
18362
18409
  email: string;
18363
18410
  wabaExternalId: string;
@@ -18367,6 +18414,7 @@ export declare const instagramContract: {
18367
18414
  channelId?: string | undefined;
18368
18415
  status?: "active" | "pending" | undefined;
18369
18416
  apiKey?: string | undefined;
18417
+ tier?: "basic" | "regular" | "premium" | undefined;
18370
18418
  }, {
18371
18419
  email: string;
18372
18420
  wabaExternalId: string;
@@ -18376,6 +18424,7 @@ export declare const instagramContract: {
18376
18424
  channelId?: string | undefined;
18377
18425
  status?: "active" | "pending" | undefined;
18378
18426
  apiKey?: string | undefined;
18427
+ tier?: "basic" | "regular" | "premium" | undefined;
18379
18428
  }>>;
18380
18429
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18381
18430
  mobileNumber: z.ZodString;
@@ -18408,6 +18457,7 @@ export declare const instagramContract: {
18408
18457
  channelId?: string | undefined;
18409
18458
  status?: "active" | "pending" | undefined;
18410
18459
  apiKey?: string | undefined;
18460
+ tier?: "basic" | "regular" | "premium" | undefined;
18411
18461
  } | undefined;
18412
18462
  vonageCredentials?: {
18413
18463
  apiKey: string;
@@ -18432,6 +18482,7 @@ export declare const instagramContract: {
18432
18482
  channelId?: string | undefined;
18433
18483
  status?: "active" | "pending" | undefined;
18434
18484
  apiKey?: string | undefined;
18485
+ tier?: "basic" | "regular" | "premium" | undefined;
18435
18486
  } | undefined;
18436
18487
  vonageCredentials?: {
18437
18488
  apiKey: string;
@@ -18486,6 +18537,7 @@ export declare const instagramContract: {
18486
18537
  channelId?: string | undefined;
18487
18538
  status?: "active" | "pending" | undefined;
18488
18539
  apiKey?: string | undefined;
18540
+ tier?: "basic" | "regular" | "premium" | undefined;
18489
18541
  } | undefined;
18490
18542
  vonageCredentials?: {
18491
18543
  apiKey: string;
@@ -18528,6 +18580,7 @@ export declare const instagramContract: {
18528
18580
  channelId?: string | undefined;
18529
18581
  status?: "active" | "pending" | undefined;
18530
18582
  apiKey?: string | undefined;
18583
+ tier?: "basic" | "regular" | "premium" | undefined;
18531
18584
  } | undefined;
18532
18585
  vonageCredentials?: {
18533
18586
  apiKey: string;
@@ -18572,6 +18625,7 @@ export declare const instagramContract: {
18572
18625
  channelId?: string | undefined;
18573
18626
  status?: "active" | "pending" | undefined;
18574
18627
  apiKey?: string | undefined;
18628
+ tier?: "basic" | "regular" | "premium" | undefined;
18575
18629
  } | undefined;
18576
18630
  vonageCredentials?: {
18577
18631
  apiKey: string;
@@ -18617,6 +18671,7 @@ export declare const instagramContract: {
18617
18671
  channelId?: string | undefined;
18618
18672
  status?: "active" | "pending" | undefined;
18619
18673
  apiKey?: string | undefined;
18674
+ tier?: "basic" | "regular" | "premium" | undefined;
18620
18675
  } | undefined;
18621
18676
  vonageCredentials?: {
18622
18677
  apiKey: string;
@@ -18686,6 +18741,7 @@ export declare const instagramContract: {
18686
18741
  channelId: z.ZodOptional<z.ZodString>;
18687
18742
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18688
18743
  apiKey: z.ZodOptional<z.ZodString>;
18744
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18689
18745
  }, "strip", z.ZodTypeAny, {
18690
18746
  email: string;
18691
18747
  wabaExternalId: string;
@@ -18695,6 +18751,7 @@ export declare const instagramContract: {
18695
18751
  channelId?: string | undefined;
18696
18752
  status?: "active" | "pending" | undefined;
18697
18753
  apiKey?: string | undefined;
18754
+ tier?: "basic" | "regular" | "premium" | undefined;
18698
18755
  }, {
18699
18756
  email: string;
18700
18757
  wabaExternalId: string;
@@ -18704,6 +18761,7 @@ export declare const instagramContract: {
18704
18761
  channelId?: string | undefined;
18705
18762
  status?: "active" | "pending" | undefined;
18706
18763
  apiKey?: string | undefined;
18764
+ tier?: "basic" | "regular" | "premium" | undefined;
18707
18765
  }>>;
18708
18766
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18709
18767
  mobileNumber: z.ZodString;
@@ -18736,6 +18794,7 @@ export declare const instagramContract: {
18736
18794
  channelId?: string | undefined;
18737
18795
  status?: "active" | "pending" | undefined;
18738
18796
  apiKey?: string | undefined;
18797
+ tier?: "basic" | "regular" | "premium" | undefined;
18739
18798
  } | undefined;
18740
18799
  vonageCredentials?: {
18741
18800
  apiKey: string;
@@ -18760,6 +18819,7 @@ export declare const instagramContract: {
18760
18819
  channelId?: string | undefined;
18761
18820
  status?: "active" | "pending" | undefined;
18762
18821
  apiKey?: string | undefined;
18822
+ tier?: "basic" | "regular" | "premium" | undefined;
18763
18823
  } | undefined;
18764
18824
  vonageCredentials?: {
18765
18825
  apiKey: string;
@@ -18814,6 +18874,7 @@ export declare const instagramContract: {
18814
18874
  channelId?: string | undefined;
18815
18875
  status?: "active" | "pending" | undefined;
18816
18876
  apiKey?: string | undefined;
18877
+ tier?: "basic" | "regular" | "premium" | undefined;
18817
18878
  } | undefined;
18818
18879
  vonageCredentials?: {
18819
18880
  apiKey: string;
@@ -18856,6 +18917,7 @@ export declare const instagramContract: {
18856
18917
  channelId?: string | undefined;
18857
18918
  status?: "active" | "pending" | undefined;
18858
18919
  apiKey?: string | undefined;
18920
+ tier?: "basic" | "regular" | "premium" | undefined;
18859
18921
  } | undefined;
18860
18922
  vonageCredentials?: {
18861
18923
  apiKey: string;
@@ -18903,6 +18965,7 @@ export declare const instagramContract: {
18903
18965
  channelId: z.ZodOptional<z.ZodString>;
18904
18966
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18905
18967
  apiKey: z.ZodOptional<z.ZodString>;
18968
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18906
18969
  }, "strip", z.ZodTypeAny, {
18907
18970
  email: string;
18908
18971
  wabaExternalId: string;
@@ -18912,6 +18975,7 @@ export declare const instagramContract: {
18912
18975
  channelId?: string | undefined;
18913
18976
  status?: "active" | "pending" | undefined;
18914
18977
  apiKey?: string | undefined;
18978
+ tier?: "basic" | "regular" | "premium" | undefined;
18915
18979
  }, {
18916
18980
  email: string;
18917
18981
  wabaExternalId: string;
@@ -18921,6 +18985,7 @@ export declare const instagramContract: {
18921
18985
  channelId?: string | undefined;
18922
18986
  status?: "active" | "pending" | undefined;
18923
18987
  apiKey?: string | undefined;
18988
+ tier?: "basic" | "regular" | "premium" | undefined;
18924
18989
  }>>;
18925
18990
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18926
18991
  mobileNumber: z.ZodString;
@@ -18953,6 +19018,7 @@ export declare const instagramContract: {
18953
19018
  channelId?: string | undefined;
18954
19019
  status?: "active" | "pending" | undefined;
18955
19020
  apiKey?: string | undefined;
19021
+ tier?: "basic" | "regular" | "premium" | undefined;
18956
19022
  } | undefined;
18957
19023
  vonageCredentials?: {
18958
19024
  apiKey: string;
@@ -18977,6 +19043,7 @@ export declare const instagramContract: {
18977
19043
  channelId?: string | undefined;
18978
19044
  status?: "active" | "pending" | undefined;
18979
19045
  apiKey?: string | undefined;
19046
+ tier?: "basic" | "regular" | "premium" | undefined;
18980
19047
  } | undefined;
18981
19048
  vonageCredentials?: {
18982
19049
  apiKey: string;
@@ -19031,6 +19098,7 @@ export declare const instagramContract: {
19031
19098
  channelId?: string | undefined;
19032
19099
  status?: "active" | "pending" | undefined;
19033
19100
  apiKey?: string | undefined;
19101
+ tier?: "basic" | "regular" | "premium" | undefined;
19034
19102
  } | undefined;
19035
19103
  vonageCredentials?: {
19036
19104
  apiKey: string;
@@ -19073,6 +19141,7 @@ export declare const instagramContract: {
19073
19141
  channelId?: string | undefined;
19074
19142
  status?: "active" | "pending" | undefined;
19075
19143
  apiKey?: string | undefined;
19144
+ tier?: "basic" | "regular" | "premium" | undefined;
19076
19145
  } | undefined;
19077
19146
  vonageCredentials?: {
19078
19147
  apiKey: string;
@@ -19117,6 +19186,7 @@ export declare const instagramContract: {
19117
19186
  channelId?: string | undefined;
19118
19187
  status?: "active" | "pending" | undefined;
19119
19188
  apiKey?: string | undefined;
19189
+ tier?: "basic" | "regular" | "premium" | undefined;
19120
19190
  } | undefined;
19121
19191
  vonageCredentials?: {
19122
19192
  apiKey: string;
@@ -19162,6 +19232,7 @@ export declare const instagramContract: {
19162
19232
  channelId?: string | undefined;
19163
19233
  status?: "active" | "pending" | undefined;
19164
19234
  apiKey?: string | undefined;
19235
+ tier?: "basic" | "regular" | "premium" | undefined;
19165
19236
  } | undefined;
19166
19237
  vonageCredentials?: {
19167
19238
  apiKey: string;
@@ -19243,6 +19314,7 @@ export declare const instagramContract: {
19243
19314
  channelId: z.ZodOptional<z.ZodString>;
19244
19315
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19245
19316
  apiKey: z.ZodOptional<z.ZodString>;
19317
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19246
19318
  }, "strip", z.ZodTypeAny, {
19247
19319
  email: string;
19248
19320
  wabaExternalId: string;
@@ -19252,6 +19324,7 @@ export declare const instagramContract: {
19252
19324
  channelId?: string | undefined;
19253
19325
  status?: "active" | "pending" | undefined;
19254
19326
  apiKey?: string | undefined;
19327
+ tier?: "basic" | "regular" | "premium" | undefined;
19255
19328
  }, {
19256
19329
  email: string;
19257
19330
  wabaExternalId: string;
@@ -19261,6 +19334,7 @@ export declare const instagramContract: {
19261
19334
  channelId?: string | undefined;
19262
19335
  status?: "active" | "pending" | undefined;
19263
19336
  apiKey?: string | undefined;
19337
+ tier?: "basic" | "regular" | "premium" | undefined;
19264
19338
  }>>;
19265
19339
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19266
19340
  mobileNumber: z.ZodString;
@@ -19293,6 +19367,7 @@ export declare const instagramContract: {
19293
19367
  channelId?: string | undefined;
19294
19368
  status?: "active" | "pending" | undefined;
19295
19369
  apiKey?: string | undefined;
19370
+ tier?: "basic" | "regular" | "premium" | undefined;
19296
19371
  } | undefined;
19297
19372
  vonageCredentials?: {
19298
19373
  apiKey: string;
@@ -19317,6 +19392,7 @@ export declare const instagramContract: {
19317
19392
  channelId?: string | undefined;
19318
19393
  status?: "active" | "pending" | undefined;
19319
19394
  apiKey?: string | undefined;
19395
+ tier?: "basic" | "regular" | "premium" | undefined;
19320
19396
  } | undefined;
19321
19397
  vonageCredentials?: {
19322
19398
  apiKey: string;
@@ -19371,6 +19447,7 @@ export declare const instagramContract: {
19371
19447
  channelId?: string | undefined;
19372
19448
  status?: "active" | "pending" | undefined;
19373
19449
  apiKey?: string | undefined;
19450
+ tier?: "basic" | "regular" | "premium" | undefined;
19374
19451
  } | undefined;
19375
19452
  vonageCredentials?: {
19376
19453
  apiKey: string;
@@ -19413,6 +19490,7 @@ export declare const instagramContract: {
19413
19490
  channelId?: string | undefined;
19414
19491
  status?: "active" | "pending" | undefined;
19415
19492
  apiKey?: string | undefined;
19493
+ tier?: "basic" | "regular" | "premium" | undefined;
19416
19494
  } | undefined;
19417
19495
  vonageCredentials?: {
19418
19496
  apiKey: string;
@@ -19457,6 +19535,7 @@ export declare const instagramContract: {
19457
19535
  channelId?: string | undefined;
19458
19536
  status?: "active" | "pending" | undefined;
19459
19537
  apiKey?: string | undefined;
19538
+ tier?: "basic" | "regular" | "premium" | undefined;
19460
19539
  } | undefined;
19461
19540
  vonageCredentials?: {
19462
19541
  apiKey: string;
@@ -19502,6 +19581,7 @@ export declare const instagramContract: {
19502
19581
  channelId?: string | undefined;
19503
19582
  status?: "active" | "pending" | undefined;
19504
19583
  apiKey?: string | undefined;
19584
+ tier?: "basic" | "regular" | "premium" | undefined;
19505
19585
  } | undefined;
19506
19586
  vonageCredentials?: {
19507
19587
  apiKey: string;
@@ -19583,6 +19663,7 @@ export declare const instagramContract: {
19583
19663
  channelId: z.ZodOptional<z.ZodString>;
19584
19664
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19585
19665
  apiKey: z.ZodOptional<z.ZodString>;
19666
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19586
19667
  }, "strip", z.ZodTypeAny, {
19587
19668
  email: string;
19588
19669
  wabaExternalId: string;
@@ -19592,6 +19673,7 @@ export declare const instagramContract: {
19592
19673
  channelId?: string | undefined;
19593
19674
  status?: "active" | "pending" | undefined;
19594
19675
  apiKey?: string | undefined;
19676
+ tier?: "basic" | "regular" | "premium" | undefined;
19595
19677
  }, {
19596
19678
  email: string;
19597
19679
  wabaExternalId: string;
@@ -19601,6 +19683,7 @@ export declare const instagramContract: {
19601
19683
  channelId?: string | undefined;
19602
19684
  status?: "active" | "pending" | undefined;
19603
19685
  apiKey?: string | undefined;
19686
+ tier?: "basic" | "regular" | "premium" | undefined;
19604
19687
  }>>;
19605
19688
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19606
19689
  mobileNumber: z.ZodString;
@@ -19633,6 +19716,7 @@ export declare const instagramContract: {
19633
19716
  channelId?: string | undefined;
19634
19717
  status?: "active" | "pending" | undefined;
19635
19718
  apiKey?: string | undefined;
19719
+ tier?: "basic" | "regular" | "premium" | undefined;
19636
19720
  } | undefined;
19637
19721
  vonageCredentials?: {
19638
19722
  apiKey: string;
@@ -19657,6 +19741,7 @@ export declare const instagramContract: {
19657
19741
  channelId?: string | undefined;
19658
19742
  status?: "active" | "pending" | undefined;
19659
19743
  apiKey?: string | undefined;
19744
+ tier?: "basic" | "regular" | "premium" | undefined;
19660
19745
  } | undefined;
19661
19746
  vonageCredentials?: {
19662
19747
  apiKey: string;
@@ -19711,6 +19796,7 @@ export declare const instagramContract: {
19711
19796
  channelId?: string | undefined;
19712
19797
  status?: "active" | "pending" | undefined;
19713
19798
  apiKey?: string | undefined;
19799
+ tier?: "basic" | "regular" | "premium" | undefined;
19714
19800
  } | undefined;
19715
19801
  vonageCredentials?: {
19716
19802
  apiKey: string;
@@ -19753,6 +19839,7 @@ export declare const instagramContract: {
19753
19839
  channelId?: string | undefined;
19754
19840
  status?: "active" | "pending" | undefined;
19755
19841
  apiKey?: string | undefined;
19842
+ tier?: "basic" | "regular" | "premium" | undefined;
19756
19843
  } | undefined;
19757
19844
  vonageCredentials?: {
19758
19845
  apiKey: string;
@@ -19797,6 +19884,7 @@ export declare const instagramContract: {
19797
19884
  channelId?: string | undefined;
19798
19885
  status?: "active" | "pending" | undefined;
19799
19886
  apiKey?: string | undefined;
19887
+ tier?: "basic" | "regular" | "premium" | undefined;
19800
19888
  } | undefined;
19801
19889
  vonageCredentials?: {
19802
19890
  apiKey: string;
@@ -19842,6 +19930,7 @@ export declare const instagramContract: {
19842
19930
  channelId?: string | undefined;
19843
19931
  status?: "active" | "pending" | undefined;
19844
19932
  apiKey?: string | undefined;
19933
+ tier?: "basic" | "regular" | "premium" | undefined;
19845
19934
  } | undefined;
19846
19935
  vonageCredentials?: {
19847
19936
  apiKey: string;
@@ -19911,6 +20000,7 @@ export declare const instagramContract: {
19911
20000
  channelId: z.ZodOptional<z.ZodString>;
19912
20001
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19913
20002
  apiKey: z.ZodOptional<z.ZodString>;
20003
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19914
20004
  }, "strip", z.ZodTypeAny, {
19915
20005
  email: string;
19916
20006
  wabaExternalId: string;
@@ -19920,6 +20010,7 @@ export declare const instagramContract: {
19920
20010
  channelId?: string | undefined;
19921
20011
  status?: "active" | "pending" | undefined;
19922
20012
  apiKey?: string | undefined;
20013
+ tier?: "basic" | "regular" | "premium" | undefined;
19923
20014
  }, {
19924
20015
  email: string;
19925
20016
  wabaExternalId: string;
@@ -19929,6 +20020,7 @@ export declare const instagramContract: {
19929
20020
  channelId?: string | undefined;
19930
20021
  status?: "active" | "pending" | undefined;
19931
20022
  apiKey?: string | undefined;
20023
+ tier?: "basic" | "regular" | "premium" | undefined;
19932
20024
  }>>;
19933
20025
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19934
20026
  mobileNumber: z.ZodString;
@@ -19961,6 +20053,7 @@ export declare const instagramContract: {
19961
20053
  channelId?: string | undefined;
19962
20054
  status?: "active" | "pending" | undefined;
19963
20055
  apiKey?: string | undefined;
20056
+ tier?: "basic" | "regular" | "premium" | undefined;
19964
20057
  } | undefined;
19965
20058
  vonageCredentials?: {
19966
20059
  apiKey: string;
@@ -19985,6 +20078,7 @@ export declare const instagramContract: {
19985
20078
  channelId?: string | undefined;
19986
20079
  status?: "active" | "pending" | undefined;
19987
20080
  apiKey?: string | undefined;
20081
+ tier?: "basic" | "regular" | "premium" | undefined;
19988
20082
  } | undefined;
19989
20083
  vonageCredentials?: {
19990
20084
  apiKey: string;
@@ -20039,6 +20133,7 @@ export declare const instagramContract: {
20039
20133
  channelId?: string | undefined;
20040
20134
  status?: "active" | "pending" | undefined;
20041
20135
  apiKey?: string | undefined;
20136
+ tier?: "basic" | "regular" | "premium" | undefined;
20042
20137
  } | undefined;
20043
20138
  vonageCredentials?: {
20044
20139
  apiKey: string;
@@ -20081,6 +20176,7 @@ export declare const instagramContract: {
20081
20176
  channelId?: string | undefined;
20082
20177
  status?: "active" | "pending" | undefined;
20083
20178
  apiKey?: string | undefined;
20179
+ tier?: "basic" | "regular" | "premium" | undefined;
20084
20180
  } | undefined;
20085
20181
  vonageCredentials?: {
20086
20182
  apiKey: string;
@@ -20128,6 +20224,7 @@ export declare const instagramContract: {
20128
20224
  channelId: z.ZodOptional<z.ZodString>;
20129
20225
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20130
20226
  apiKey: z.ZodOptional<z.ZodString>;
20227
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20131
20228
  }, "strip", z.ZodTypeAny, {
20132
20229
  email: string;
20133
20230
  wabaExternalId: string;
@@ -20137,6 +20234,7 @@ export declare const instagramContract: {
20137
20234
  channelId?: string | undefined;
20138
20235
  status?: "active" | "pending" | undefined;
20139
20236
  apiKey?: string | undefined;
20237
+ tier?: "basic" | "regular" | "premium" | undefined;
20140
20238
  }, {
20141
20239
  email: string;
20142
20240
  wabaExternalId: string;
@@ -20146,6 +20244,7 @@ export declare const instagramContract: {
20146
20244
  channelId?: string | undefined;
20147
20245
  status?: "active" | "pending" | undefined;
20148
20246
  apiKey?: string | undefined;
20247
+ tier?: "basic" | "regular" | "premium" | undefined;
20149
20248
  }>>;
20150
20249
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20151
20250
  mobileNumber: z.ZodString;
@@ -20178,6 +20277,7 @@ export declare const instagramContract: {
20178
20277
  channelId?: string | undefined;
20179
20278
  status?: "active" | "pending" | undefined;
20180
20279
  apiKey?: string | undefined;
20280
+ tier?: "basic" | "regular" | "premium" | undefined;
20181
20281
  } | undefined;
20182
20282
  vonageCredentials?: {
20183
20283
  apiKey: string;
@@ -20202,6 +20302,7 @@ export declare const instagramContract: {
20202
20302
  channelId?: string | undefined;
20203
20303
  status?: "active" | "pending" | undefined;
20204
20304
  apiKey?: string | undefined;
20305
+ tier?: "basic" | "regular" | "premium" | undefined;
20205
20306
  } | undefined;
20206
20307
  vonageCredentials?: {
20207
20308
  apiKey: string;
@@ -20256,6 +20357,7 @@ export declare const instagramContract: {
20256
20357
  channelId?: string | undefined;
20257
20358
  status?: "active" | "pending" | undefined;
20258
20359
  apiKey?: string | undefined;
20360
+ tier?: "basic" | "regular" | "premium" | undefined;
20259
20361
  } | undefined;
20260
20362
  vonageCredentials?: {
20261
20363
  apiKey: string;
@@ -20298,6 +20400,7 @@ export declare const instagramContract: {
20298
20400
  channelId?: string | undefined;
20299
20401
  status?: "active" | "pending" | undefined;
20300
20402
  apiKey?: string | undefined;
20403
+ tier?: "basic" | "regular" | "premium" | undefined;
20301
20404
  } | undefined;
20302
20405
  vonageCredentials?: {
20303
20406
  apiKey: string;
@@ -20342,6 +20445,7 @@ export declare const instagramContract: {
20342
20445
  channelId?: string | undefined;
20343
20446
  status?: "active" | "pending" | undefined;
20344
20447
  apiKey?: string | undefined;
20448
+ tier?: "basic" | "regular" | "premium" | undefined;
20345
20449
  } | undefined;
20346
20450
  vonageCredentials?: {
20347
20451
  apiKey: string;
@@ -20387,6 +20491,7 @@ export declare const instagramContract: {
20387
20491
  channelId?: string | undefined;
20388
20492
  status?: "active" | "pending" | undefined;
20389
20493
  apiKey?: string | undefined;
20494
+ tier?: "basic" | "regular" | "premium" | undefined;
20390
20495
  } | undefined;
20391
20496
  vonageCredentials?: {
20392
20497
  apiKey: string;