@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
@@ -150,6 +150,7 @@ export declare const whatsappContract: {
150
150
  channelId: z.ZodOptional<z.ZodString>;
151
151
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
152
152
  apiKey: z.ZodOptional<z.ZodString>;
153
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
153
154
  }, "strip", z.ZodTypeAny, {
154
155
  email: string;
155
156
  wabaExternalId: string;
@@ -159,6 +160,7 @@ export declare const whatsappContract: {
159
160
  channelId?: string | undefined;
160
161
  status?: "active" | "pending" | undefined;
161
162
  apiKey?: string | undefined;
163
+ tier?: "basic" | "regular" | "premium" | undefined;
162
164
  }, {
163
165
  email: string;
164
166
  wabaExternalId: string;
@@ -168,6 +170,7 @@ export declare const whatsappContract: {
168
170
  channelId?: string | undefined;
169
171
  status?: "active" | "pending" | undefined;
170
172
  apiKey?: string | undefined;
173
+ tier?: "basic" | "regular" | "premium" | undefined;
171
174
  }>>;
172
175
  vonageCredentials: z.ZodOptional<z.ZodObject<{
173
176
  mobileNumber: z.ZodString;
@@ -200,6 +203,7 @@ export declare const whatsappContract: {
200
203
  channelId?: string | undefined;
201
204
  status?: "active" | "pending" | undefined;
202
205
  apiKey?: string | undefined;
206
+ tier?: "basic" | "regular" | "premium" | undefined;
203
207
  } | undefined;
204
208
  vonageCredentials?: {
205
209
  apiKey: string;
@@ -224,6 +228,7 @@ export declare const whatsappContract: {
224
228
  channelId?: string | undefined;
225
229
  status?: "active" | "pending" | undefined;
226
230
  apiKey?: string | undefined;
231
+ tier?: "basic" | "regular" | "premium" | undefined;
227
232
  } | undefined;
228
233
  vonageCredentials?: {
229
234
  apiKey: string;
@@ -278,6 +283,7 @@ export declare const whatsappContract: {
278
283
  channelId?: string | undefined;
279
284
  status?: "active" | "pending" | undefined;
280
285
  apiKey?: string | undefined;
286
+ tier?: "basic" | "regular" | "premium" | undefined;
281
287
  } | undefined;
282
288
  vonageCredentials?: {
283
289
  apiKey: string;
@@ -320,6 +326,7 @@ export declare const whatsappContract: {
320
326
  channelId?: string | undefined;
321
327
  status?: "active" | "pending" | undefined;
322
328
  apiKey?: string | undefined;
329
+ tier?: "basic" | "regular" | "premium" | undefined;
323
330
  } | undefined;
324
331
  vonageCredentials?: {
325
332
  apiKey: string;
@@ -344,7 +351,7 @@ export declare const whatsappContract: {
344
351
  } | undefined;
345
352
  }>;
346
353
  messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
347
- telegramBusinessConnectionId: z.ZodNullable<z.ZodString>;
354
+ telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
348
355
  }, "strip", z.ZodTypeAny, {
349
356
  id: string;
350
357
  channel: {
@@ -367,6 +374,7 @@ export declare const whatsappContract: {
367
374
  channelId?: string | undefined;
368
375
  status?: "active" | "pending" | undefined;
369
376
  apiKey?: string | undefined;
377
+ tier?: "basic" | "regular" | "premium" | undefined;
370
378
  } | undefined;
371
379
  vonageCredentials?: {
372
380
  apiKey: string;
@@ -426,11 +434,11 @@ export declare const whatsappContract: {
426
434
  id: string;
427
435
  email: string;
428
436
  } | null;
429
- telegramBusinessConnectionId: string | null;
430
437
  lastMessage?: string | undefined;
431
438
  handleTime?: number | undefined;
432
439
  metadata?: any;
433
440
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
441
+ telegramBusinessConnectionId?: string | null | undefined;
434
442
  }, {
435
443
  id: string;
436
444
  channel: {
@@ -453,6 +461,7 @@ export declare const whatsappContract: {
453
461
  channelId?: string | undefined;
454
462
  status?: "active" | "pending" | undefined;
455
463
  apiKey?: string | undefined;
464
+ tier?: "basic" | "regular" | "premium" | undefined;
456
465
  } | undefined;
457
466
  vonageCredentials?: {
458
467
  apiKey: string;
@@ -512,11 +521,11 @@ export declare const whatsappContract: {
512
521
  id: string;
513
522
  email: string;
514
523
  } | null;
515
- telegramBusinessConnectionId: string | null;
516
524
  lastMessage?: string | undefined;
517
525
  handleTime?: number | undefined;
518
526
  metadata?: any;
519
527
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
528
+ telegramBusinessConnectionId?: string | null | undefined;
520
529
  }>;
521
530
  message: z.ZodObject<{
522
531
  id: z.ZodOptional<z.ZodString>;
@@ -707,6 +716,7 @@ export declare const whatsappContract: {
707
716
  channelId?: string | undefined;
708
717
  status?: "active" | "pending" | undefined;
709
718
  apiKey?: string | undefined;
719
+ tier?: "basic" | "regular" | "premium" | undefined;
710
720
  } | undefined;
711
721
  vonageCredentials?: {
712
722
  apiKey: string;
@@ -766,11 +776,11 @@ export declare const whatsappContract: {
766
776
  id: string;
767
777
  email: string;
768
778
  } | null;
769
- telegramBusinessConnectionId: string | null;
770
779
  lastMessage?: string | undefined;
771
780
  handleTime?: number | undefined;
772
781
  metadata?: any;
773
782
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
783
+ telegramBusinessConnectionId?: string | null | undefined;
774
784
  };
775
785
  isBot: boolean | null;
776
786
  }, {
@@ -832,6 +842,7 @@ export declare const whatsappContract: {
832
842
  channelId?: string | undefined;
833
843
  status?: "active" | "pending" | undefined;
834
844
  apiKey?: string | undefined;
845
+ tier?: "basic" | "regular" | "premium" | undefined;
835
846
  } | undefined;
836
847
  vonageCredentials?: {
837
848
  apiKey: string;
@@ -891,11 +902,11 @@ export declare const whatsappContract: {
891
902
  id: string;
892
903
  email: string;
893
904
  } | null;
894
- telegramBusinessConnectionId: string | null;
895
905
  lastMessage?: string | undefined;
896
906
  handleTime?: number | undefined;
897
907
  metadata?: any;
898
908
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
909
+ telegramBusinessConnectionId?: string | null | undefined;
899
910
  };
900
911
  isBot?: boolean | null | undefined;
901
912
  }>;
@@ -2852,6 +2863,7 @@ export declare const whatsappContract: {
2852
2863
  channelId: z.ZodOptional<z.ZodString>;
2853
2864
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2854
2865
  apiKey: z.ZodOptional<z.ZodString>;
2866
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2855
2867
  }, "strip", z.ZodTypeAny, {
2856
2868
  email: string;
2857
2869
  wabaExternalId: string;
@@ -2861,6 +2873,7 @@ export declare const whatsappContract: {
2861
2873
  channelId?: string | undefined;
2862
2874
  status?: "active" | "pending" | undefined;
2863
2875
  apiKey?: string | undefined;
2876
+ tier?: "basic" | "regular" | "premium" | undefined;
2864
2877
  }, {
2865
2878
  email: string;
2866
2879
  wabaExternalId: string;
@@ -2870,6 +2883,7 @@ export declare const whatsappContract: {
2870
2883
  channelId?: string | undefined;
2871
2884
  status?: "active" | "pending" | undefined;
2872
2885
  apiKey?: string | undefined;
2886
+ tier?: "basic" | "regular" | "premium" | undefined;
2873
2887
  }>>;
2874
2888
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2875
2889
  mobileNumber: z.ZodString;
@@ -2902,6 +2916,7 @@ export declare const whatsappContract: {
2902
2916
  channelId?: string | undefined;
2903
2917
  status?: "active" | "pending" | undefined;
2904
2918
  apiKey?: string | undefined;
2919
+ tier?: "basic" | "regular" | "premium" | undefined;
2905
2920
  } | undefined;
2906
2921
  vonageCredentials?: {
2907
2922
  apiKey: string;
@@ -2926,6 +2941,7 @@ export declare const whatsappContract: {
2926
2941
  channelId?: string | undefined;
2927
2942
  status?: "active" | "pending" | undefined;
2928
2943
  apiKey?: string | undefined;
2944
+ tier?: "basic" | "regular" | "premium" | undefined;
2929
2945
  } | undefined;
2930
2946
  vonageCredentials?: {
2931
2947
  apiKey: string;
@@ -3184,6 +3200,7 @@ export declare const whatsappContract: {
3184
3200
  channelId?: string | undefined;
3185
3201
  status?: "active" | "pending" | undefined;
3186
3202
  apiKey?: string | undefined;
3203
+ tier?: "basic" | "regular" | "premium" | undefined;
3187
3204
  } | undefined;
3188
3205
  vonageCredentials?: {
3189
3206
  apiKey: string;
@@ -3273,6 +3290,7 @@ export declare const whatsappContract: {
3273
3290
  channelId?: string | undefined;
3274
3291
  status?: "active" | "pending" | undefined;
3275
3292
  apiKey?: string | undefined;
3293
+ tier?: "basic" | "regular" | "premium" | undefined;
3276
3294
  } | undefined;
3277
3295
  vonageCredentials?: {
3278
3296
  apiKey: string;
@@ -3810,6 +3828,7 @@ export declare const whatsappContract: {
3810
3828
  channelId?: string | undefined;
3811
3829
  status?: "active" | "pending" | undefined;
3812
3830
  apiKey?: string | undefined;
3831
+ tier?: "basic" | "regular" | "premium" | undefined;
3813
3832
  } | undefined;
3814
3833
  vonageCredentials?: {
3815
3834
  apiKey: string;
@@ -4210,6 +4229,7 @@ export declare const whatsappContract: {
4210
4229
  channelId?: string | undefined;
4211
4230
  status?: "active" | "pending" | undefined;
4212
4231
  apiKey?: string | undefined;
4232
+ tier?: "basic" | "regular" | "premium" | undefined;
4213
4233
  } | undefined;
4214
4234
  vonageCredentials?: {
4215
4235
  apiKey: string;
@@ -7326,6 +7346,7 @@ export declare const whatsappContract: {
7326
7346
  channelId: z.ZodOptional<z.ZodString>;
7327
7347
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7328
7348
  apiKey: z.ZodOptional<z.ZodString>;
7349
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7329
7350
  }, "strip", z.ZodTypeAny, {
7330
7351
  email: string;
7331
7352
  wabaExternalId: string;
@@ -7335,6 +7356,7 @@ export declare const whatsappContract: {
7335
7356
  channelId?: string | undefined;
7336
7357
  status?: "active" | "pending" | undefined;
7337
7358
  apiKey?: string | undefined;
7359
+ tier?: "basic" | "regular" | "premium" | undefined;
7338
7360
  }, {
7339
7361
  email: string;
7340
7362
  wabaExternalId: string;
@@ -7344,6 +7366,7 @@ export declare const whatsappContract: {
7344
7366
  channelId?: string | undefined;
7345
7367
  status?: "active" | "pending" | undefined;
7346
7368
  apiKey?: string | undefined;
7369
+ tier?: "basic" | "regular" | "premium" | undefined;
7347
7370
  }>>;
7348
7371
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7349
7372
  mobileNumber: z.ZodString;
@@ -7376,6 +7399,7 @@ export declare const whatsappContract: {
7376
7399
  channelId?: string | undefined;
7377
7400
  status?: "active" | "pending" | undefined;
7378
7401
  apiKey?: string | undefined;
7402
+ tier?: "basic" | "regular" | "premium" | undefined;
7379
7403
  } | undefined;
7380
7404
  vonageCredentials?: {
7381
7405
  apiKey: string;
@@ -7400,6 +7424,7 @@ export declare const whatsappContract: {
7400
7424
  channelId?: string | undefined;
7401
7425
  status?: "active" | "pending" | undefined;
7402
7426
  apiKey?: string | undefined;
7427
+ tier?: "basic" | "regular" | "premium" | undefined;
7403
7428
  } | undefined;
7404
7429
  vonageCredentials?: {
7405
7430
  apiKey: string;
@@ -7658,6 +7683,7 @@ export declare const whatsappContract: {
7658
7683
  channelId?: string | undefined;
7659
7684
  status?: "active" | "pending" | undefined;
7660
7685
  apiKey?: string | undefined;
7686
+ tier?: "basic" | "regular" | "premium" | undefined;
7661
7687
  } | undefined;
7662
7688
  vonageCredentials?: {
7663
7689
  apiKey: string;
@@ -7747,6 +7773,7 @@ export declare const whatsappContract: {
7747
7773
  channelId?: string | undefined;
7748
7774
  status?: "active" | "pending" | undefined;
7749
7775
  apiKey?: string | undefined;
7776
+ tier?: "basic" | "regular" | "premium" | undefined;
7750
7777
  } | undefined;
7751
7778
  vonageCredentials?: {
7752
7779
  apiKey: string;
@@ -8284,6 +8311,7 @@ export declare const whatsappContract: {
8284
8311
  channelId?: string | undefined;
8285
8312
  status?: "active" | "pending" | undefined;
8286
8313
  apiKey?: string | undefined;
8314
+ tier?: "basic" | "regular" | "premium" | undefined;
8287
8315
  } | undefined;
8288
8316
  vonageCredentials?: {
8289
8317
  apiKey: string;
@@ -8684,6 +8712,7 @@ export declare const whatsappContract: {
8684
8712
  channelId?: string | undefined;
8685
8713
  status?: "active" | "pending" | undefined;
8686
8714
  apiKey?: string | undefined;
8715
+ tier?: "basic" | "regular" | "premium" | undefined;
8687
8716
  } | undefined;
8688
8717
  vonageCredentials?: {
8689
8718
  apiKey: string;
@@ -10857,6 +10886,7 @@ export declare const whatsappContract: {
10857
10886
  channelId?: string | undefined;
10858
10887
  status?: "active" | "pending" | undefined;
10859
10888
  apiKey?: string | undefined;
10889
+ tier?: "basic" | "regular" | "premium" | undefined;
10860
10890
  } | undefined;
10861
10891
  vonageCredentials?: {
10862
10892
  apiKey: string;
@@ -11594,6 +11624,7 @@ export declare const whatsappContract: {
11594
11624
  channelId?: string | undefined;
11595
11625
  status?: "active" | "pending" | undefined;
11596
11626
  apiKey?: string | undefined;
11627
+ tier?: "basic" | "regular" | "premium" | undefined;
11597
11628
  } | undefined;
11598
11629
  vonageCredentials?: {
11599
11630
  apiKey: string;
@@ -12332,6 +12363,7 @@ export declare const whatsappContract: {
12332
12363
  channelId?: string | undefined;
12333
12364
  status?: "active" | "pending" | undefined;
12334
12365
  apiKey?: string | undefined;
12366
+ tier?: "basic" | "regular" | "premium" | undefined;
12335
12367
  } | undefined;
12336
12368
  vonageCredentials?: {
12337
12369
  apiKey: string;
@@ -13069,6 +13101,7 @@ export declare const whatsappContract: {
13069
13101
  channelId?: string | undefined;
13070
13102
  status?: "active" | "pending" | undefined;
13071
13103
  apiKey?: string | undefined;
13104
+ tier?: "basic" | "regular" | "premium" | undefined;
13072
13105
  } | undefined;
13073
13106
  vonageCredentials?: {
13074
13107
  apiKey: string;
@@ -13807,6 +13840,7 @@ export declare const whatsappContract: {
13807
13840
  channelId?: string | undefined;
13808
13841
  status?: "active" | "pending" | undefined;
13809
13842
  apiKey?: string | undefined;
13843
+ tier?: "basic" | "regular" | "premium" | undefined;
13810
13844
  } | undefined;
13811
13845
  vonageCredentials?: {
13812
13846
  apiKey: string;
@@ -14544,6 +14578,7 @@ export declare const whatsappContract: {
14544
14578
  channelId?: string | undefined;
14545
14579
  status?: "active" | "pending" | undefined;
14546
14580
  apiKey?: string | undefined;
14581
+ tier?: "basic" | "regular" | "premium" | undefined;
14547
14582
  } | undefined;
14548
14583
  vonageCredentials?: {
14549
14584
  apiKey: string;
@@ -15284,6 +15319,7 @@ export declare const whatsappContract: {
15284
15319
  channelId?: string | undefined;
15285
15320
  status?: "active" | "pending" | undefined;
15286
15321
  apiKey?: string | undefined;
15322
+ tier?: "basic" | "regular" | "premium" | undefined;
15287
15323
  } | undefined;
15288
15324
  vonageCredentials?: {
15289
15325
  apiKey: string;
@@ -16021,6 +16057,7 @@ export declare const whatsappContract: {
16021
16057
  channelId?: string | undefined;
16022
16058
  status?: "active" | "pending" | undefined;
16023
16059
  apiKey?: string | undefined;
16060
+ tier?: "basic" | "regular" | "premium" | undefined;
16024
16061
  } | undefined;
16025
16062
  vonageCredentials?: {
16026
16063
  apiKey: string;
@@ -16762,6 +16799,7 @@ export declare const whatsappContract: {
16762
16799
  channelId?: string | undefined;
16763
16800
  status?: "active" | "pending" | undefined;
16764
16801
  apiKey?: string | undefined;
16802
+ tier?: "basic" | "regular" | "premium" | undefined;
16765
16803
  } | undefined;
16766
16804
  vonageCredentials?: {
16767
16805
  apiKey: string;
@@ -17499,6 +17537,7 @@ export declare const whatsappContract: {
17499
17537
  channelId?: string | undefined;
17500
17538
  status?: "active" | "pending" | undefined;
17501
17539
  apiKey?: string | undefined;
17540
+ tier?: "basic" | "regular" | "premium" | undefined;
17502
17541
  } | undefined;
17503
17542
  vonageCredentials?: {
17504
17543
  apiKey: string;
@@ -18152,6 +18191,7 @@ export declare const whatsappContract: {
18152
18191
  channelId: z.ZodOptional<z.ZodString>;
18153
18192
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18154
18193
  apiKey: z.ZodOptional<z.ZodString>;
18194
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18155
18195
  }, "strip", z.ZodTypeAny, {
18156
18196
  email: string;
18157
18197
  wabaExternalId: string;
@@ -18161,6 +18201,7 @@ export declare const whatsappContract: {
18161
18201
  channelId?: string | undefined;
18162
18202
  status?: "active" | "pending" | undefined;
18163
18203
  apiKey?: string | undefined;
18204
+ tier?: "basic" | "regular" | "premium" | undefined;
18164
18205
  }, {
18165
18206
  email: string;
18166
18207
  wabaExternalId: string;
@@ -18170,6 +18211,7 @@ export declare const whatsappContract: {
18170
18211
  channelId?: string | undefined;
18171
18212
  status?: "active" | "pending" | undefined;
18172
18213
  apiKey?: string | undefined;
18214
+ tier?: "basic" | "regular" | "premium" | undefined;
18173
18215
  }>>;
18174
18216
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18175
18217
  mobileNumber: z.ZodString;
@@ -18202,6 +18244,7 @@ export declare const whatsappContract: {
18202
18244
  channelId?: string | undefined;
18203
18245
  status?: "active" | "pending" | undefined;
18204
18246
  apiKey?: string | undefined;
18247
+ tier?: "basic" | "regular" | "premium" | undefined;
18205
18248
  } | undefined;
18206
18249
  vonageCredentials?: {
18207
18250
  apiKey: string;
@@ -18226,6 +18269,7 @@ export declare const whatsappContract: {
18226
18269
  channelId?: string | undefined;
18227
18270
  status?: "active" | "pending" | undefined;
18228
18271
  apiKey?: string | undefined;
18272
+ tier?: "basic" | "regular" | "premium" | undefined;
18229
18273
  } | undefined;
18230
18274
  vonageCredentials?: {
18231
18275
  apiKey: string;
@@ -18280,6 +18324,7 @@ export declare const whatsappContract: {
18280
18324
  channelId?: string | undefined;
18281
18325
  status?: "active" | "pending" | undefined;
18282
18326
  apiKey?: string | undefined;
18327
+ tier?: "basic" | "regular" | "premium" | undefined;
18283
18328
  } | undefined;
18284
18329
  vonageCredentials?: {
18285
18330
  apiKey: string;
@@ -18322,6 +18367,7 @@ export declare const whatsappContract: {
18322
18367
  channelId?: string | undefined;
18323
18368
  status?: "active" | "pending" | undefined;
18324
18369
  apiKey?: string | undefined;
18370
+ tier?: "basic" | "regular" | "premium" | undefined;
18325
18371
  } | undefined;
18326
18372
  vonageCredentials?: {
18327
18373
  apiKey: string;
@@ -18369,6 +18415,7 @@ export declare const whatsappContract: {
18369
18415
  channelId: z.ZodOptional<z.ZodString>;
18370
18416
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18371
18417
  apiKey: z.ZodOptional<z.ZodString>;
18418
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18372
18419
  }, "strip", z.ZodTypeAny, {
18373
18420
  email: string;
18374
18421
  wabaExternalId: string;
@@ -18378,6 +18425,7 @@ export declare const whatsappContract: {
18378
18425
  channelId?: string | undefined;
18379
18426
  status?: "active" | "pending" | undefined;
18380
18427
  apiKey?: string | undefined;
18428
+ tier?: "basic" | "regular" | "premium" | undefined;
18381
18429
  }, {
18382
18430
  email: string;
18383
18431
  wabaExternalId: string;
@@ -18387,6 +18435,7 @@ export declare const whatsappContract: {
18387
18435
  channelId?: string | undefined;
18388
18436
  status?: "active" | "pending" | undefined;
18389
18437
  apiKey?: string | undefined;
18438
+ tier?: "basic" | "regular" | "premium" | undefined;
18390
18439
  }>>;
18391
18440
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18392
18441
  mobileNumber: z.ZodString;
@@ -18419,6 +18468,7 @@ export declare const whatsappContract: {
18419
18468
  channelId?: string | undefined;
18420
18469
  status?: "active" | "pending" | undefined;
18421
18470
  apiKey?: string | undefined;
18471
+ tier?: "basic" | "regular" | "premium" | undefined;
18422
18472
  } | undefined;
18423
18473
  vonageCredentials?: {
18424
18474
  apiKey: string;
@@ -18443,6 +18493,7 @@ export declare const whatsappContract: {
18443
18493
  channelId?: string | undefined;
18444
18494
  status?: "active" | "pending" | undefined;
18445
18495
  apiKey?: string | undefined;
18496
+ tier?: "basic" | "regular" | "premium" | undefined;
18446
18497
  } | undefined;
18447
18498
  vonageCredentials?: {
18448
18499
  apiKey: string;
@@ -18497,6 +18548,7 @@ export declare const whatsappContract: {
18497
18548
  channelId?: string | undefined;
18498
18549
  status?: "active" | "pending" | undefined;
18499
18550
  apiKey?: string | undefined;
18551
+ tier?: "basic" | "regular" | "premium" | undefined;
18500
18552
  } | undefined;
18501
18553
  vonageCredentials?: {
18502
18554
  apiKey: string;
@@ -18539,6 +18591,7 @@ export declare const whatsappContract: {
18539
18591
  channelId?: string | undefined;
18540
18592
  status?: "active" | "pending" | undefined;
18541
18593
  apiKey?: string | undefined;
18594
+ tier?: "basic" | "regular" | "premium" | undefined;
18542
18595
  } | undefined;
18543
18596
  vonageCredentials?: {
18544
18597
  apiKey: string;
@@ -18583,6 +18636,7 @@ export declare const whatsappContract: {
18583
18636
  channelId?: string | undefined;
18584
18637
  status?: "active" | "pending" | undefined;
18585
18638
  apiKey?: string | undefined;
18639
+ tier?: "basic" | "regular" | "premium" | undefined;
18586
18640
  } | undefined;
18587
18641
  vonageCredentials?: {
18588
18642
  apiKey: string;
@@ -18628,6 +18682,7 @@ export declare const whatsappContract: {
18628
18682
  channelId?: string | undefined;
18629
18683
  status?: "active" | "pending" | undefined;
18630
18684
  apiKey?: string | undefined;
18685
+ tier?: "basic" | "regular" | "premium" | undefined;
18631
18686
  } | undefined;
18632
18687
  vonageCredentials?: {
18633
18688
  apiKey: string;
@@ -18697,6 +18752,7 @@ export declare const whatsappContract: {
18697
18752
  channelId: z.ZodOptional<z.ZodString>;
18698
18753
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18699
18754
  apiKey: z.ZodOptional<z.ZodString>;
18755
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18700
18756
  }, "strip", z.ZodTypeAny, {
18701
18757
  email: string;
18702
18758
  wabaExternalId: string;
@@ -18706,6 +18762,7 @@ export declare const whatsappContract: {
18706
18762
  channelId?: string | undefined;
18707
18763
  status?: "active" | "pending" | undefined;
18708
18764
  apiKey?: string | undefined;
18765
+ tier?: "basic" | "regular" | "premium" | undefined;
18709
18766
  }, {
18710
18767
  email: string;
18711
18768
  wabaExternalId: string;
@@ -18715,6 +18772,7 @@ export declare const whatsappContract: {
18715
18772
  channelId?: string | undefined;
18716
18773
  status?: "active" | "pending" | undefined;
18717
18774
  apiKey?: string | undefined;
18775
+ tier?: "basic" | "regular" | "premium" | undefined;
18718
18776
  }>>;
18719
18777
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18720
18778
  mobileNumber: z.ZodString;
@@ -18747,6 +18805,7 @@ export declare const whatsappContract: {
18747
18805
  channelId?: string | undefined;
18748
18806
  status?: "active" | "pending" | undefined;
18749
18807
  apiKey?: string | undefined;
18808
+ tier?: "basic" | "regular" | "premium" | undefined;
18750
18809
  } | undefined;
18751
18810
  vonageCredentials?: {
18752
18811
  apiKey: string;
@@ -18771,6 +18830,7 @@ export declare const whatsappContract: {
18771
18830
  channelId?: string | undefined;
18772
18831
  status?: "active" | "pending" | undefined;
18773
18832
  apiKey?: string | undefined;
18833
+ tier?: "basic" | "regular" | "premium" | undefined;
18774
18834
  } | undefined;
18775
18835
  vonageCredentials?: {
18776
18836
  apiKey: string;
@@ -18825,6 +18885,7 @@ export declare const whatsappContract: {
18825
18885
  channelId?: string | undefined;
18826
18886
  status?: "active" | "pending" | undefined;
18827
18887
  apiKey?: string | undefined;
18888
+ tier?: "basic" | "regular" | "premium" | undefined;
18828
18889
  } | undefined;
18829
18890
  vonageCredentials?: {
18830
18891
  apiKey: string;
@@ -18867,6 +18928,7 @@ export declare const whatsappContract: {
18867
18928
  channelId?: string | undefined;
18868
18929
  status?: "active" | "pending" | undefined;
18869
18930
  apiKey?: string | undefined;
18931
+ tier?: "basic" | "regular" | "premium" | undefined;
18870
18932
  } | undefined;
18871
18933
  vonageCredentials?: {
18872
18934
  apiKey: string;
@@ -18914,6 +18976,7 @@ export declare const whatsappContract: {
18914
18976
  channelId: z.ZodOptional<z.ZodString>;
18915
18977
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18916
18978
  apiKey: z.ZodOptional<z.ZodString>;
18979
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18917
18980
  }, "strip", z.ZodTypeAny, {
18918
18981
  email: string;
18919
18982
  wabaExternalId: string;
@@ -18923,6 +18986,7 @@ export declare const whatsappContract: {
18923
18986
  channelId?: string | undefined;
18924
18987
  status?: "active" | "pending" | undefined;
18925
18988
  apiKey?: string | undefined;
18989
+ tier?: "basic" | "regular" | "premium" | undefined;
18926
18990
  }, {
18927
18991
  email: string;
18928
18992
  wabaExternalId: string;
@@ -18932,6 +18996,7 @@ export declare const whatsappContract: {
18932
18996
  channelId?: string | undefined;
18933
18997
  status?: "active" | "pending" | undefined;
18934
18998
  apiKey?: string | undefined;
18999
+ tier?: "basic" | "regular" | "premium" | undefined;
18935
19000
  }>>;
18936
19001
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18937
19002
  mobileNumber: z.ZodString;
@@ -18964,6 +19029,7 @@ export declare const whatsappContract: {
18964
19029
  channelId?: string | undefined;
18965
19030
  status?: "active" | "pending" | undefined;
18966
19031
  apiKey?: string | undefined;
19032
+ tier?: "basic" | "regular" | "premium" | undefined;
18967
19033
  } | undefined;
18968
19034
  vonageCredentials?: {
18969
19035
  apiKey: string;
@@ -18988,6 +19054,7 @@ export declare const whatsappContract: {
18988
19054
  channelId?: string | undefined;
18989
19055
  status?: "active" | "pending" | undefined;
18990
19056
  apiKey?: string | undefined;
19057
+ tier?: "basic" | "regular" | "premium" | undefined;
18991
19058
  } | undefined;
18992
19059
  vonageCredentials?: {
18993
19060
  apiKey: string;
@@ -19042,6 +19109,7 @@ export declare const whatsappContract: {
19042
19109
  channelId?: string | undefined;
19043
19110
  status?: "active" | "pending" | undefined;
19044
19111
  apiKey?: string | undefined;
19112
+ tier?: "basic" | "regular" | "premium" | undefined;
19045
19113
  } | undefined;
19046
19114
  vonageCredentials?: {
19047
19115
  apiKey: string;
@@ -19084,6 +19152,7 @@ export declare const whatsappContract: {
19084
19152
  channelId?: string | undefined;
19085
19153
  status?: "active" | "pending" | undefined;
19086
19154
  apiKey?: string | undefined;
19155
+ tier?: "basic" | "regular" | "premium" | undefined;
19087
19156
  } | undefined;
19088
19157
  vonageCredentials?: {
19089
19158
  apiKey: string;
@@ -19128,6 +19197,7 @@ export declare const whatsappContract: {
19128
19197
  channelId?: string | undefined;
19129
19198
  status?: "active" | "pending" | undefined;
19130
19199
  apiKey?: string | undefined;
19200
+ tier?: "basic" | "regular" | "premium" | undefined;
19131
19201
  } | undefined;
19132
19202
  vonageCredentials?: {
19133
19203
  apiKey: string;
@@ -19173,6 +19243,7 @@ export declare const whatsappContract: {
19173
19243
  channelId?: string | undefined;
19174
19244
  status?: "active" | "pending" | undefined;
19175
19245
  apiKey?: string | undefined;
19246
+ tier?: "basic" | "regular" | "premium" | undefined;
19176
19247
  } | undefined;
19177
19248
  vonageCredentials?: {
19178
19249
  apiKey: string;
@@ -19254,6 +19325,7 @@ export declare const whatsappContract: {
19254
19325
  channelId: z.ZodOptional<z.ZodString>;
19255
19326
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19256
19327
  apiKey: z.ZodOptional<z.ZodString>;
19328
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19257
19329
  }, "strip", z.ZodTypeAny, {
19258
19330
  email: string;
19259
19331
  wabaExternalId: string;
@@ -19263,6 +19335,7 @@ export declare const whatsappContract: {
19263
19335
  channelId?: string | undefined;
19264
19336
  status?: "active" | "pending" | undefined;
19265
19337
  apiKey?: string | undefined;
19338
+ tier?: "basic" | "regular" | "premium" | undefined;
19266
19339
  }, {
19267
19340
  email: string;
19268
19341
  wabaExternalId: string;
@@ -19272,6 +19345,7 @@ export declare const whatsappContract: {
19272
19345
  channelId?: string | undefined;
19273
19346
  status?: "active" | "pending" | undefined;
19274
19347
  apiKey?: string | undefined;
19348
+ tier?: "basic" | "regular" | "premium" | undefined;
19275
19349
  }>>;
19276
19350
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19277
19351
  mobileNumber: z.ZodString;
@@ -19304,6 +19378,7 @@ export declare const whatsappContract: {
19304
19378
  channelId?: string | undefined;
19305
19379
  status?: "active" | "pending" | undefined;
19306
19380
  apiKey?: string | undefined;
19381
+ tier?: "basic" | "regular" | "premium" | undefined;
19307
19382
  } | undefined;
19308
19383
  vonageCredentials?: {
19309
19384
  apiKey: string;
@@ -19328,6 +19403,7 @@ export declare const whatsappContract: {
19328
19403
  channelId?: string | undefined;
19329
19404
  status?: "active" | "pending" | undefined;
19330
19405
  apiKey?: string | undefined;
19406
+ tier?: "basic" | "regular" | "premium" | undefined;
19331
19407
  } | undefined;
19332
19408
  vonageCredentials?: {
19333
19409
  apiKey: string;
@@ -19382,6 +19458,7 @@ export declare const whatsappContract: {
19382
19458
  channelId?: string | undefined;
19383
19459
  status?: "active" | "pending" | undefined;
19384
19460
  apiKey?: string | undefined;
19461
+ tier?: "basic" | "regular" | "premium" | undefined;
19385
19462
  } | undefined;
19386
19463
  vonageCredentials?: {
19387
19464
  apiKey: string;
@@ -19424,6 +19501,7 @@ export declare const whatsappContract: {
19424
19501
  channelId?: string | undefined;
19425
19502
  status?: "active" | "pending" | undefined;
19426
19503
  apiKey?: string | undefined;
19504
+ tier?: "basic" | "regular" | "premium" | undefined;
19427
19505
  } | undefined;
19428
19506
  vonageCredentials?: {
19429
19507
  apiKey: string;
@@ -19468,6 +19546,7 @@ export declare const whatsappContract: {
19468
19546
  channelId?: string | undefined;
19469
19547
  status?: "active" | "pending" | undefined;
19470
19548
  apiKey?: string | undefined;
19549
+ tier?: "basic" | "regular" | "premium" | undefined;
19471
19550
  } | undefined;
19472
19551
  vonageCredentials?: {
19473
19552
  apiKey: string;
@@ -19513,6 +19592,7 @@ export declare const whatsappContract: {
19513
19592
  channelId?: string | undefined;
19514
19593
  status?: "active" | "pending" | undefined;
19515
19594
  apiKey?: string | undefined;
19595
+ tier?: "basic" | "regular" | "premium" | undefined;
19516
19596
  } | undefined;
19517
19597
  vonageCredentials?: {
19518
19598
  apiKey: string;
@@ -19594,6 +19674,7 @@ export declare const whatsappContract: {
19594
19674
  channelId: z.ZodOptional<z.ZodString>;
19595
19675
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19596
19676
  apiKey: z.ZodOptional<z.ZodString>;
19677
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19597
19678
  }, "strip", z.ZodTypeAny, {
19598
19679
  email: string;
19599
19680
  wabaExternalId: string;
@@ -19603,6 +19684,7 @@ export declare const whatsappContract: {
19603
19684
  channelId?: string | undefined;
19604
19685
  status?: "active" | "pending" | undefined;
19605
19686
  apiKey?: string | undefined;
19687
+ tier?: "basic" | "regular" | "premium" | undefined;
19606
19688
  }, {
19607
19689
  email: string;
19608
19690
  wabaExternalId: string;
@@ -19612,6 +19694,7 @@ export declare const whatsappContract: {
19612
19694
  channelId?: string | undefined;
19613
19695
  status?: "active" | "pending" | undefined;
19614
19696
  apiKey?: string | undefined;
19697
+ tier?: "basic" | "regular" | "premium" | undefined;
19615
19698
  }>>;
19616
19699
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19617
19700
  mobileNumber: z.ZodString;
@@ -19644,6 +19727,7 @@ export declare const whatsappContract: {
19644
19727
  channelId?: string | undefined;
19645
19728
  status?: "active" | "pending" | undefined;
19646
19729
  apiKey?: string | undefined;
19730
+ tier?: "basic" | "regular" | "premium" | undefined;
19647
19731
  } | undefined;
19648
19732
  vonageCredentials?: {
19649
19733
  apiKey: string;
@@ -19668,6 +19752,7 @@ export declare const whatsappContract: {
19668
19752
  channelId?: string | undefined;
19669
19753
  status?: "active" | "pending" | undefined;
19670
19754
  apiKey?: string | undefined;
19755
+ tier?: "basic" | "regular" | "premium" | undefined;
19671
19756
  } | undefined;
19672
19757
  vonageCredentials?: {
19673
19758
  apiKey: string;
@@ -19722,6 +19807,7 @@ export declare const whatsappContract: {
19722
19807
  channelId?: string | undefined;
19723
19808
  status?: "active" | "pending" | undefined;
19724
19809
  apiKey?: string | undefined;
19810
+ tier?: "basic" | "regular" | "premium" | undefined;
19725
19811
  } | undefined;
19726
19812
  vonageCredentials?: {
19727
19813
  apiKey: string;
@@ -19764,6 +19850,7 @@ export declare const whatsappContract: {
19764
19850
  channelId?: string | undefined;
19765
19851
  status?: "active" | "pending" | undefined;
19766
19852
  apiKey?: string | undefined;
19853
+ tier?: "basic" | "regular" | "premium" | undefined;
19767
19854
  } | undefined;
19768
19855
  vonageCredentials?: {
19769
19856
  apiKey: string;
@@ -19808,6 +19895,7 @@ export declare const whatsappContract: {
19808
19895
  channelId?: string | undefined;
19809
19896
  status?: "active" | "pending" | undefined;
19810
19897
  apiKey?: string | undefined;
19898
+ tier?: "basic" | "regular" | "premium" | undefined;
19811
19899
  } | undefined;
19812
19900
  vonageCredentials?: {
19813
19901
  apiKey: string;
@@ -19853,6 +19941,7 @@ export declare const whatsappContract: {
19853
19941
  channelId?: string | undefined;
19854
19942
  status?: "active" | "pending" | undefined;
19855
19943
  apiKey?: string | undefined;
19944
+ tier?: "basic" | "regular" | "premium" | undefined;
19856
19945
  } | undefined;
19857
19946
  vonageCredentials?: {
19858
19947
  apiKey: string;