@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
@@ -1424,6 +1424,7 @@ export declare const receiveMessageContract: {
1424
1424
  channelId: z.ZodOptional<z.ZodString>;
1425
1425
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1426
1426
  apiKey: z.ZodOptional<z.ZodString>;
1427
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1427
1428
  }, "strip", z.ZodTypeAny, {
1428
1429
  email: string;
1429
1430
  wabaExternalId: string;
@@ -1433,6 +1434,7 @@ export declare const receiveMessageContract: {
1433
1434
  channelId?: string | undefined;
1434
1435
  status?: "active" | "pending" | undefined;
1435
1436
  apiKey?: string | undefined;
1437
+ tier?: "basic" | "regular" | "premium" | undefined;
1436
1438
  }, {
1437
1439
  email: string;
1438
1440
  wabaExternalId: string;
@@ -1442,6 +1444,7 @@ export declare const receiveMessageContract: {
1442
1444
  channelId?: string | undefined;
1443
1445
  status?: "active" | "pending" | undefined;
1444
1446
  apiKey?: string | undefined;
1447
+ tier?: "basic" | "regular" | "premium" | undefined;
1445
1448
  }>>;
1446
1449
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1447
1450
  mobileNumber: z.ZodString;
@@ -1474,6 +1477,7 @@ export declare const receiveMessageContract: {
1474
1477
  channelId?: string | undefined;
1475
1478
  status?: "active" | "pending" | undefined;
1476
1479
  apiKey?: string | undefined;
1480
+ tier?: "basic" | "regular" | "premium" | undefined;
1477
1481
  } | undefined;
1478
1482
  vonageCredentials?: {
1479
1483
  apiKey: string;
@@ -1498,6 +1502,7 @@ export declare const receiveMessageContract: {
1498
1502
  channelId?: string | undefined;
1499
1503
  status?: "active" | "pending" | undefined;
1500
1504
  apiKey?: string | undefined;
1505
+ tier?: "basic" | "regular" | "premium" | undefined;
1501
1506
  } | undefined;
1502
1507
  vonageCredentials?: {
1503
1508
  apiKey: string;
@@ -1552,6 +1557,7 @@ export declare const receiveMessageContract: {
1552
1557
  channelId?: string | undefined;
1553
1558
  status?: "active" | "pending" | undefined;
1554
1559
  apiKey?: string | undefined;
1560
+ tier?: "basic" | "regular" | "premium" | undefined;
1555
1561
  } | undefined;
1556
1562
  vonageCredentials?: {
1557
1563
  apiKey: string;
@@ -1594,6 +1600,7 @@ export declare const receiveMessageContract: {
1594
1600
  channelId?: string | undefined;
1595
1601
  status?: "active" | "pending" | undefined;
1596
1602
  apiKey?: string | undefined;
1603
+ tier?: "basic" | "regular" | "premium" | undefined;
1597
1604
  } | undefined;
1598
1605
  vonageCredentials?: {
1599
1606
  apiKey: string;
@@ -2269,6 +2276,7 @@ export declare const receiveMessageContract: {
2269
2276
  channelId?: string | undefined;
2270
2277
  status?: "active" | "pending" | undefined;
2271
2278
  apiKey?: string | undefined;
2279
+ tier?: "basic" | "regular" | "premium" | undefined;
2272
2280
  } | undefined;
2273
2281
  vonageCredentials?: {
2274
2282
  apiKey: string;
@@ -2594,6 +2602,7 @@ export declare const receiveMessageContract: {
2594
2602
  channelId?: string | undefined;
2595
2603
  status?: "active" | "pending" | undefined;
2596
2604
  apiKey?: string | undefined;
2605
+ tier?: "basic" | "regular" | "premium" | undefined;
2597
2606
  } | undefined;
2598
2607
  vonageCredentials?: {
2599
2608
  apiKey: string;
@@ -3575,6 +3584,7 @@ export declare const receiveMessageContract: {
3575
3584
  channelId?: string | undefined;
3576
3585
  status?: "active" | "pending" | undefined;
3577
3586
  apiKey?: string | undefined;
3587
+ tier?: "basic" | "regular" | "premium" | undefined;
3578
3588
  } | undefined;
3579
3589
  vonageCredentials?: {
3580
3590
  apiKey: string;
@@ -4063,6 +4073,7 @@ export declare const receiveMessageContract: {
4063
4073
  channelId?: string | undefined;
4064
4074
  status?: "active" | "pending" | undefined;
4065
4075
  apiKey?: string | undefined;
4076
+ tier?: "basic" | "regular" | "premium" | undefined;
4066
4077
  } | undefined;
4067
4078
  vonageCredentials?: {
4068
4079
  apiKey: string;
@@ -4553,6 +4564,7 @@ export declare const receiveMessageContract: {
4553
4564
  channelId?: string | undefined;
4554
4565
  status?: "active" | "pending" | undefined;
4555
4566
  apiKey?: string | undefined;
4567
+ tier?: "basic" | "regular" | "premium" | undefined;
4556
4568
  } | undefined;
4557
4569
  vonageCredentials?: {
4558
4570
  apiKey: string;
@@ -5043,6 +5055,7 @@ export declare const receiveMessageContract: {
5043
5055
  channelId?: string | undefined;
5044
5056
  status?: "active" | "pending" | undefined;
5045
5057
  apiKey?: string | undefined;
5058
+ tier?: "basic" | "regular" | "premium" | undefined;
5046
5059
  } | undefined;
5047
5060
  vonageCredentials?: {
5048
5061
  apiKey: string;
@@ -5371,6 +5384,7 @@ export declare const mainFeedContract: {
5371
5384
  channelId: z.ZodOptional<z.ZodString>;
5372
5385
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
5373
5386
  apiKey: z.ZodOptional<z.ZodString>;
5387
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
5374
5388
  }, "strip", z.ZodTypeAny, {
5375
5389
  email: string;
5376
5390
  wabaExternalId: string;
@@ -5380,6 +5394,7 @@ export declare const mainFeedContract: {
5380
5394
  channelId?: string | undefined;
5381
5395
  status?: "active" | "pending" | undefined;
5382
5396
  apiKey?: string | undefined;
5397
+ tier?: "basic" | "regular" | "premium" | undefined;
5383
5398
  }, {
5384
5399
  email: string;
5385
5400
  wabaExternalId: string;
@@ -5389,6 +5404,7 @@ export declare const mainFeedContract: {
5389
5404
  channelId?: string | undefined;
5390
5405
  status?: "active" | "pending" | undefined;
5391
5406
  apiKey?: string | undefined;
5407
+ tier?: "basic" | "regular" | "premium" | undefined;
5392
5408
  }>>;
5393
5409
  vonageCredentials: z.ZodOptional<z.ZodObject<{
5394
5410
  mobileNumber: z.ZodString;
@@ -5421,6 +5437,7 @@ export declare const mainFeedContract: {
5421
5437
  channelId?: string | undefined;
5422
5438
  status?: "active" | "pending" | undefined;
5423
5439
  apiKey?: string | undefined;
5440
+ tier?: "basic" | "regular" | "premium" | undefined;
5424
5441
  } | undefined;
5425
5442
  vonageCredentials?: {
5426
5443
  apiKey: string;
@@ -5445,6 +5462,7 @@ export declare const mainFeedContract: {
5445
5462
  channelId?: string | undefined;
5446
5463
  status?: "active" | "pending" | undefined;
5447
5464
  apiKey?: string | undefined;
5465
+ tier?: "basic" | "regular" | "premium" | undefined;
5448
5466
  } | undefined;
5449
5467
  vonageCredentials?: {
5450
5468
  apiKey: string;
@@ -5703,6 +5721,7 @@ export declare const mainFeedContract: {
5703
5721
  channelId?: string | undefined;
5704
5722
  status?: "active" | "pending" | undefined;
5705
5723
  apiKey?: string | undefined;
5724
+ tier?: "basic" | "regular" | "premium" | undefined;
5706
5725
  } | undefined;
5707
5726
  vonageCredentials?: {
5708
5727
  apiKey: string;
@@ -5792,6 +5811,7 @@ export declare const mainFeedContract: {
5792
5811
  channelId?: string | undefined;
5793
5812
  status?: "active" | "pending" | undefined;
5794
5813
  apiKey?: string | undefined;
5814
+ tier?: "basic" | "regular" | "premium" | undefined;
5795
5815
  } | undefined;
5796
5816
  vonageCredentials?: {
5797
5817
  apiKey: string;
@@ -7138,6 +7158,7 @@ export declare const mainFeedContract: {
7138
7158
  channelId?: string | undefined;
7139
7159
  status?: "active" | "pending" | undefined;
7140
7160
  apiKey?: string | undefined;
7161
+ tier?: "basic" | "regular" | "premium" | undefined;
7141
7162
  } | undefined;
7142
7163
  vonageCredentials?: {
7143
7164
  apiKey: string;
@@ -7414,6 +7435,7 @@ export declare const mainFeedContract: {
7414
7435
  channelId?: string | undefined;
7415
7436
  status?: "active" | "pending" | undefined;
7416
7437
  apiKey?: string | undefined;
7438
+ tier?: "basic" | "regular" | "premium" | undefined;
7417
7439
  } | undefined;
7418
7440
  vonageCredentials?: {
7419
7441
  apiKey: string;
@@ -7692,6 +7714,7 @@ export declare const mainFeedContract: {
7692
7714
  channelId?: string | undefined;
7693
7715
  status?: "active" | "pending" | undefined;
7694
7716
  apiKey?: string | undefined;
7717
+ tier?: "basic" | "regular" | "premium" | undefined;
7695
7718
  } | undefined;
7696
7719
  vonageCredentials?: {
7697
7720
  apiKey: string;
@@ -7971,6 +7994,7 @@ export declare const mainFeedContract: {
7971
7994
  channelId?: string | undefined;
7972
7995
  status?: "active" | "pending" | undefined;
7973
7996
  apiKey?: string | undefined;
7997
+ tier?: "basic" | "regular" | "premium" | undefined;
7974
7998
  } | undefined;
7975
7999
  vonageCredentials?: {
7976
8000
  apiKey: string;
@@ -10220,6 +10244,7 @@ export declare const mainFeedContract: {
10220
10244
  channelId: z.ZodOptional<z.ZodString>;
10221
10245
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
10222
10246
  apiKey: z.ZodOptional<z.ZodString>;
10247
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
10223
10248
  }, "strip", z.ZodTypeAny, {
10224
10249
  email: string;
10225
10250
  wabaExternalId: string;
@@ -10229,6 +10254,7 @@ export declare const mainFeedContract: {
10229
10254
  channelId?: string | undefined;
10230
10255
  status?: "active" | "pending" | undefined;
10231
10256
  apiKey?: string | undefined;
10257
+ tier?: "basic" | "regular" | "premium" | undefined;
10232
10258
  }, {
10233
10259
  email: string;
10234
10260
  wabaExternalId: string;
@@ -10238,6 +10264,7 @@ export declare const mainFeedContract: {
10238
10264
  channelId?: string | undefined;
10239
10265
  status?: "active" | "pending" | undefined;
10240
10266
  apiKey?: string | undefined;
10267
+ tier?: "basic" | "regular" | "premium" | undefined;
10241
10268
  }>>;
10242
10269
  vonageCredentials: z.ZodOptional<z.ZodObject<{
10243
10270
  mobileNumber: z.ZodString;
@@ -10270,6 +10297,7 @@ export declare const mainFeedContract: {
10270
10297
  channelId?: string | undefined;
10271
10298
  status?: "active" | "pending" | undefined;
10272
10299
  apiKey?: string | undefined;
10300
+ tier?: "basic" | "regular" | "premium" | undefined;
10273
10301
  } | undefined;
10274
10302
  vonageCredentials?: {
10275
10303
  apiKey: string;
@@ -10294,6 +10322,7 @@ export declare const mainFeedContract: {
10294
10322
  channelId?: string | undefined;
10295
10323
  status?: "active" | "pending" | undefined;
10296
10324
  apiKey?: string | undefined;
10325
+ tier?: "basic" | "regular" | "premium" | undefined;
10297
10326
  } | undefined;
10298
10327
  vonageCredentials?: {
10299
10328
  apiKey: string;
@@ -10552,6 +10581,7 @@ export declare const mainFeedContract: {
10552
10581
  channelId?: string | undefined;
10553
10582
  status?: "active" | "pending" | undefined;
10554
10583
  apiKey?: string | undefined;
10584
+ tier?: "basic" | "regular" | "premium" | undefined;
10555
10585
  } | undefined;
10556
10586
  vonageCredentials?: {
10557
10587
  apiKey: string;
@@ -10641,6 +10671,7 @@ export declare const mainFeedContract: {
10641
10671
  channelId?: string | undefined;
10642
10672
  status?: "active" | "pending" | undefined;
10643
10673
  apiKey?: string | undefined;
10674
+ tier?: "basic" | "regular" | "premium" | undefined;
10644
10675
  } | undefined;
10645
10676
  vonageCredentials?: {
10646
10677
  apiKey: string;
@@ -11178,6 +11209,7 @@ export declare const mainFeedContract: {
11178
11209
  channelId?: string | undefined;
11179
11210
  status?: "active" | "pending" | undefined;
11180
11211
  apiKey?: string | undefined;
11212
+ tier?: "basic" | "regular" | "premium" | undefined;
11181
11213
  } | undefined;
11182
11214
  vonageCredentials?: {
11183
11215
  apiKey: string;
@@ -11578,6 +11610,7 @@ export declare const mainFeedContract: {
11578
11610
  channelId?: string | undefined;
11579
11611
  status?: "active" | "pending" | undefined;
11580
11612
  apiKey?: string | undefined;
11613
+ tier?: "basic" | "regular" | "premium" | undefined;
11581
11614
  } | undefined;
11582
11615
  vonageCredentials?: {
11583
11616
  apiKey: string;
@@ -15741,6 +15774,7 @@ export declare const mainFeedContract: {
15741
15774
  channelId: z.ZodOptional<z.ZodString>;
15742
15775
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
15743
15776
  apiKey: z.ZodOptional<z.ZodString>;
15777
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
15744
15778
  }, "strip", z.ZodTypeAny, {
15745
15779
  email: string;
15746
15780
  wabaExternalId: string;
@@ -15750,6 +15784,7 @@ export declare const mainFeedContract: {
15750
15784
  channelId?: string | undefined;
15751
15785
  status?: "active" | "pending" | undefined;
15752
15786
  apiKey?: string | undefined;
15787
+ tier?: "basic" | "regular" | "premium" | undefined;
15753
15788
  }, {
15754
15789
  email: string;
15755
15790
  wabaExternalId: string;
@@ -15759,6 +15794,7 @@ export declare const mainFeedContract: {
15759
15794
  channelId?: string | undefined;
15760
15795
  status?: "active" | "pending" | undefined;
15761
15796
  apiKey?: string | undefined;
15797
+ tier?: "basic" | "regular" | "premium" | undefined;
15762
15798
  }>>;
15763
15799
  vonageCredentials: z.ZodOptional<z.ZodObject<{
15764
15800
  mobileNumber: z.ZodString;
@@ -15791,6 +15827,7 @@ export declare const mainFeedContract: {
15791
15827
  channelId?: string | undefined;
15792
15828
  status?: "active" | "pending" | undefined;
15793
15829
  apiKey?: string | undefined;
15830
+ tier?: "basic" | "regular" | "premium" | undefined;
15794
15831
  } | undefined;
15795
15832
  vonageCredentials?: {
15796
15833
  apiKey: string;
@@ -15815,6 +15852,7 @@ export declare const mainFeedContract: {
15815
15852
  channelId?: string | undefined;
15816
15853
  status?: "active" | "pending" | undefined;
15817
15854
  apiKey?: string | undefined;
15855
+ tier?: "basic" | "regular" | "premium" | undefined;
15818
15856
  } | undefined;
15819
15857
  vonageCredentials?: {
15820
15858
  apiKey: string;
@@ -16073,6 +16111,7 @@ export declare const mainFeedContract: {
16073
16111
  channelId?: string | undefined;
16074
16112
  status?: "active" | "pending" | undefined;
16075
16113
  apiKey?: string | undefined;
16114
+ tier?: "basic" | "regular" | "premium" | undefined;
16076
16115
  } | undefined;
16077
16116
  vonageCredentials?: {
16078
16117
  apiKey: string;
@@ -16162,6 +16201,7 @@ export declare const mainFeedContract: {
16162
16201
  channelId?: string | undefined;
16163
16202
  status?: "active" | "pending" | undefined;
16164
16203
  apiKey?: string | undefined;
16204
+ tier?: "basic" | "regular" | "premium" | undefined;
16165
16205
  } | undefined;
16166
16206
  vonageCredentials?: {
16167
16207
  apiKey: string;
@@ -16699,6 +16739,7 @@ export declare const mainFeedContract: {
16699
16739
  channelId?: string | undefined;
16700
16740
  status?: "active" | "pending" | undefined;
16701
16741
  apiKey?: string | undefined;
16742
+ tier?: "basic" | "regular" | "premium" | undefined;
16702
16743
  } | undefined;
16703
16744
  vonageCredentials?: {
16704
16745
  apiKey: string;
@@ -17099,6 +17140,7 @@ export declare const mainFeedContract: {
17099
17140
  channelId?: string | undefined;
17100
17141
  status?: "active" | "pending" | undefined;
17101
17142
  apiKey?: string | undefined;
17143
+ tier?: "basic" | "regular" | "premium" | undefined;
17102
17144
  } | undefined;
17103
17145
  vonageCredentials?: {
17104
17146
  apiKey: string;
@@ -19272,6 +19314,7 @@ export declare const mainFeedContract: {
19272
19314
  channelId?: string | undefined;
19273
19315
  status?: "active" | "pending" | undefined;
19274
19316
  apiKey?: string | undefined;
19317
+ tier?: "basic" | "regular" | "premium" | undefined;
19275
19318
  } | undefined;
19276
19319
  vonageCredentials?: {
19277
19320
  apiKey: string;
@@ -20009,6 +20052,7 @@ export declare const mainFeedContract: {
20009
20052
  channelId?: string | undefined;
20010
20053
  status?: "active" | "pending" | undefined;
20011
20054
  apiKey?: string | undefined;
20055
+ tier?: "basic" | "regular" | "premium" | undefined;
20012
20056
  } | undefined;
20013
20057
  vonageCredentials?: {
20014
20058
  apiKey: string;
@@ -20753,6 +20797,7 @@ export declare const mainFeedContract: {
20753
20797
  channelId?: string | undefined;
20754
20798
  status?: "active" | "pending" | undefined;
20755
20799
  apiKey?: string | undefined;
20800
+ tier?: "basic" | "regular" | "premium" | undefined;
20756
20801
  } | undefined;
20757
20802
  vonageCredentials?: {
20758
20803
  apiKey: string;
@@ -21485,6 +21530,7 @@ export declare const mainFeedContract: {
21485
21530
  channelId?: string | undefined;
21486
21531
  status?: "active" | "pending" | undefined;
21487
21532
  apiKey?: string | undefined;
21533
+ tier?: "basic" | "regular" | "premium" | undefined;
21488
21534
  } | undefined;
21489
21535
  vonageCredentials?: {
21490
21536
  apiKey: string;
@@ -22355,6 +22401,7 @@ export declare const mainFeedContract: {
22355
22401
  channelId?: string | undefined;
22356
22402
  status?: "active" | "pending" | undefined;
22357
22403
  apiKey?: string | undefined;
22404
+ tier?: "basic" | "regular" | "premium" | undefined;
22358
22405
  } | undefined;
22359
22406
  vonageCredentials?: {
22360
22407
  apiKey: string;
@@ -23087,6 +23134,7 @@ export declare const mainFeedContract: {
23087
23134
  channelId?: string | undefined;
23088
23135
  status?: "active" | "pending" | undefined;
23089
23136
  apiKey?: string | undefined;
23137
+ tier?: "basic" | "regular" | "premium" | undefined;
23090
23138
  } | undefined;
23091
23139
  vonageCredentials?: {
23092
23140
  apiKey: string;
@@ -23959,6 +24007,7 @@ export declare const mainFeedContract: {
23959
24007
  channelId?: string | undefined;
23960
24008
  status?: "active" | "pending" | undefined;
23961
24009
  apiKey?: string | undefined;
24010
+ tier?: "basic" | "regular" | "premium" | undefined;
23962
24011
  } | undefined;
23963
24012
  vonageCredentials?: {
23964
24013
  apiKey: string;
@@ -24691,6 +24740,7 @@ export declare const mainFeedContract: {
24691
24740
  channelId?: string | undefined;
24692
24741
  status?: "active" | "pending" | undefined;
24693
24742
  apiKey?: string | undefined;
24743
+ tier?: "basic" | "regular" | "premium" | undefined;
24694
24744
  } | undefined;
24695
24745
  vonageCredentials?: {
24696
24746
  apiKey: string;
@@ -25567,6 +25617,7 @@ export declare const mainFeedContract: {
25567
25617
  channelId?: string | undefined;
25568
25618
  status?: "active" | "pending" | undefined;
25569
25619
  apiKey?: string | undefined;
25620
+ tier?: "basic" | "regular" | "premium" | undefined;
25570
25621
  } | undefined;
25571
25622
  vonageCredentials?: {
25572
25623
  apiKey: string;
@@ -26299,6 +26350,7 @@ export declare const mainFeedContract: {
26299
26350
  channelId?: string | undefined;
26300
26351
  status?: "active" | "pending" | undefined;
26301
26352
  apiKey?: string | undefined;
26353
+ tier?: "basic" | "regular" | "premium" | undefined;
26302
26354
  } | undefined;
26303
26355
  vonageCredentials?: {
26304
26356
  apiKey: string;
@@ -28692,6 +28744,7 @@ export declare const mainChatRoomContract: {
28692
28744
  channelId: z.ZodOptional<z.ZodString>;
28693
28745
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
28694
28746
  apiKey: z.ZodOptional<z.ZodString>;
28747
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
28695
28748
  }, "strip", z.ZodTypeAny, {
28696
28749
  email: string;
28697
28750
  wabaExternalId: string;
@@ -28701,6 +28754,7 @@ export declare const mainChatRoomContract: {
28701
28754
  channelId?: string | undefined;
28702
28755
  status?: "active" | "pending" | undefined;
28703
28756
  apiKey?: string | undefined;
28757
+ tier?: "basic" | "regular" | "premium" | undefined;
28704
28758
  }, {
28705
28759
  email: string;
28706
28760
  wabaExternalId: string;
@@ -28710,6 +28764,7 @@ export declare const mainChatRoomContract: {
28710
28764
  channelId?: string | undefined;
28711
28765
  status?: "active" | "pending" | undefined;
28712
28766
  apiKey?: string | undefined;
28767
+ tier?: "basic" | "regular" | "premium" | undefined;
28713
28768
  }>>;
28714
28769
  vonageCredentials: z.ZodOptional<z.ZodObject<{
28715
28770
  mobileNumber: z.ZodString;
@@ -28742,6 +28797,7 @@ export declare const mainChatRoomContract: {
28742
28797
  channelId?: string | undefined;
28743
28798
  status?: "active" | "pending" | undefined;
28744
28799
  apiKey?: string | undefined;
28800
+ tier?: "basic" | "regular" | "premium" | undefined;
28745
28801
  } | undefined;
28746
28802
  vonageCredentials?: {
28747
28803
  apiKey: string;
@@ -28766,6 +28822,7 @@ export declare const mainChatRoomContract: {
28766
28822
  channelId?: string | undefined;
28767
28823
  status?: "active" | "pending" | undefined;
28768
28824
  apiKey?: string | undefined;
28825
+ tier?: "basic" | "regular" | "premium" | undefined;
28769
28826
  } | undefined;
28770
28827
  vonageCredentials?: {
28771
28828
  apiKey: string;
@@ -29024,6 +29081,7 @@ export declare const mainChatRoomContract: {
29024
29081
  channelId?: string | undefined;
29025
29082
  status?: "active" | "pending" | undefined;
29026
29083
  apiKey?: string | undefined;
29084
+ tier?: "basic" | "regular" | "premium" | undefined;
29027
29085
  } | undefined;
29028
29086
  vonageCredentials?: {
29029
29087
  apiKey: string;
@@ -29113,6 +29171,7 @@ export declare const mainChatRoomContract: {
29113
29171
  channelId?: string | undefined;
29114
29172
  status?: "active" | "pending" | undefined;
29115
29173
  apiKey?: string | undefined;
29174
+ tier?: "basic" | "regular" | "premium" | undefined;
29116
29175
  } | undefined;
29117
29176
  vonageCredentials?: {
29118
29177
  apiKey: string;
@@ -29650,6 +29709,7 @@ export declare const mainChatRoomContract: {
29650
29709
  channelId?: string | undefined;
29651
29710
  status?: "active" | "pending" | undefined;
29652
29711
  apiKey?: string | undefined;
29712
+ tier?: "basic" | "regular" | "premium" | undefined;
29653
29713
  } | undefined;
29654
29714
  vonageCredentials?: {
29655
29715
  apiKey: string;
@@ -30050,6 +30110,7 @@ export declare const mainChatRoomContract: {
30050
30110
  channelId?: string | undefined;
30051
30111
  status?: "active" | "pending" | undefined;
30052
30112
  apiKey?: string | undefined;
30113
+ tier?: "basic" | "regular" | "premium" | undefined;
30053
30114
  } | undefined;
30054
30115
  vonageCredentials?: {
30055
30116
  apiKey: string;
@@ -30462,6 +30523,7 @@ export declare const mainChatRoomContract: {
30462
30523
  channelId?: string | undefined;
30463
30524
  status?: "active" | "pending" | undefined;
30464
30525
  apiKey?: string | undefined;
30526
+ tier?: "basic" | "regular" | "premium" | undefined;
30465
30527
  } | undefined;
30466
30528
  vonageCredentials?: {
30467
30529
  apiKey: string;
@@ -30872,6 +30934,7 @@ export declare const mainChatRoomContract: {
30872
30934
  channelId?: string | undefined;
30873
30935
  status?: "active" | "pending" | undefined;
30874
30936
  apiKey?: string | undefined;
30937
+ tier?: "basic" | "regular" | "premium" | undefined;
30875
30938
  } | undefined;
30876
30939
  vonageCredentials?: {
30877
30940
  apiKey: string;
@@ -32797,6 +32860,7 @@ export declare const mainChatRoomContract: {
32797
32860
  channelId: z.ZodOptional<z.ZodString>;
32798
32861
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
32799
32862
  apiKey: z.ZodOptional<z.ZodString>;
32863
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
32800
32864
  }, "strip", z.ZodTypeAny, {
32801
32865
  email: string;
32802
32866
  wabaExternalId: string;
@@ -32806,6 +32870,7 @@ export declare const mainChatRoomContract: {
32806
32870
  channelId?: string | undefined;
32807
32871
  status?: "active" | "pending" | undefined;
32808
32872
  apiKey?: string | undefined;
32873
+ tier?: "basic" | "regular" | "premium" | undefined;
32809
32874
  }, {
32810
32875
  email: string;
32811
32876
  wabaExternalId: string;
@@ -32815,6 +32880,7 @@ export declare const mainChatRoomContract: {
32815
32880
  channelId?: string | undefined;
32816
32881
  status?: "active" | "pending" | undefined;
32817
32882
  apiKey?: string | undefined;
32883
+ tier?: "basic" | "regular" | "premium" | undefined;
32818
32884
  }>>;
32819
32885
  vonageCredentials: z.ZodOptional<z.ZodObject<{
32820
32886
  mobileNumber: z.ZodString;
@@ -32847,6 +32913,7 @@ export declare const mainChatRoomContract: {
32847
32913
  channelId?: string | undefined;
32848
32914
  status?: "active" | "pending" | undefined;
32849
32915
  apiKey?: string | undefined;
32916
+ tier?: "basic" | "regular" | "premium" | undefined;
32850
32917
  } | undefined;
32851
32918
  vonageCredentials?: {
32852
32919
  apiKey: string;
@@ -32871,6 +32938,7 @@ export declare const mainChatRoomContract: {
32871
32938
  channelId?: string | undefined;
32872
32939
  status?: "active" | "pending" | undefined;
32873
32940
  apiKey?: string | undefined;
32941
+ tier?: "basic" | "regular" | "premium" | undefined;
32874
32942
  } | undefined;
32875
32943
  vonageCredentials?: {
32876
32944
  apiKey: string;
@@ -33129,6 +33197,7 @@ export declare const mainChatRoomContract: {
33129
33197
  channelId?: string | undefined;
33130
33198
  status?: "active" | "pending" | undefined;
33131
33199
  apiKey?: string | undefined;
33200
+ tier?: "basic" | "regular" | "premium" | undefined;
33132
33201
  } | undefined;
33133
33202
  vonageCredentials?: {
33134
33203
  apiKey: string;
@@ -33218,6 +33287,7 @@ export declare const mainChatRoomContract: {
33218
33287
  channelId?: string | undefined;
33219
33288
  status?: "active" | "pending" | undefined;
33220
33289
  apiKey?: string | undefined;
33290
+ tier?: "basic" | "regular" | "premium" | undefined;
33221
33291
  } | undefined;
33222
33292
  vonageCredentials?: {
33223
33293
  apiKey: string;
@@ -33755,6 +33825,7 @@ export declare const mainChatRoomContract: {
33755
33825
  channelId?: string | undefined;
33756
33826
  status?: "active" | "pending" | undefined;
33757
33827
  apiKey?: string | undefined;
33828
+ tier?: "basic" | "regular" | "premium" | undefined;
33758
33829
  } | undefined;
33759
33830
  vonageCredentials?: {
33760
33831
  apiKey: string;
@@ -34155,6 +34226,7 @@ export declare const mainChatRoomContract: {
34155
34226
  channelId?: string | undefined;
34156
34227
  status?: "active" | "pending" | undefined;
34157
34228
  apiKey?: string | undefined;
34229
+ tier?: "basic" | "regular" | "premium" | undefined;
34158
34230
  } | undefined;
34159
34231
  vonageCredentials?: {
34160
34232
  apiKey: string;
@@ -34577,6 +34649,49 @@ export declare const mainChatRoomContract: {
34577
34649
  metadata?: any;
34578
34650
  template?: any;
34579
34651
  }>;
34652
+ latestMessage: z.ZodObject<{
34653
+ message: z.ZodString;
34654
+ direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
34655
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
34656
+ readAt: z.ZodDate;
34657
+ metadata: z.ZodAny;
34658
+ platformId: z.ZodString;
34659
+ platformMessageId: z.ZodString;
34660
+ replyPlatformMessageId: z.ZodString;
34661
+ template: z.ZodAny;
34662
+ locale: z.ZodEnum<["mm", "en", "th", ""]>;
34663
+ url: z.ZodString;
34664
+ previewUrl: z.ZodString;
34665
+ imageSetId: z.ZodString;
34666
+ }, "strip", z.ZodTypeAny, {
34667
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
34668
+ message: string;
34669
+ url: string;
34670
+ direction: "incoming" | "outgoing" | "system";
34671
+ platformId: string;
34672
+ platformMessageId: string;
34673
+ readAt: Date;
34674
+ replyPlatformMessageId: string;
34675
+ locale: "" | "th" | "mm" | "en";
34676
+ previewUrl: string;
34677
+ imageSetId: string;
34678
+ metadata?: any;
34679
+ template?: any;
34680
+ }, {
34681
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
34682
+ message: string;
34683
+ url: string;
34684
+ direction: "incoming" | "outgoing" | "system";
34685
+ platformId: string;
34686
+ platformMessageId: string;
34687
+ readAt: Date;
34688
+ replyPlatformMessageId: string;
34689
+ locale: "" | "th" | "mm" | "en";
34690
+ previewUrl: string;
34691
+ imageSetId: string;
34692
+ metadata?: any;
34693
+ template?: any;
34694
+ }>;
34580
34695
  }, "strip", z.ZodTypeAny, {
34581
34696
  room: {
34582
34697
  id: string;
@@ -34600,6 +34715,7 @@ export declare const mainChatRoomContract: {
34600
34715
  channelId?: string | undefined;
34601
34716
  status?: "active" | "pending" | undefined;
34602
34717
  apiKey?: string | undefined;
34718
+ tier?: "basic" | "regular" | "premium" | undefined;
34603
34719
  } | undefined;
34604
34720
  vonageCredentials?: {
34605
34721
  apiKey: string;
@@ -34994,6 +35110,21 @@ export declare const mainChatRoomContract: {
34994
35110
  metadata?: any;
34995
35111
  template?: any;
34996
35112
  };
35113
+ latestMessage: {
35114
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
35115
+ message: string;
35116
+ url: string;
35117
+ direction: "incoming" | "outgoing" | "system";
35118
+ platformId: string;
35119
+ platformMessageId: string;
35120
+ readAt: Date;
35121
+ replyPlatformMessageId: string;
35122
+ locale: "" | "th" | "mm" | "en";
35123
+ previewUrl: string;
35124
+ imageSetId: string;
35125
+ metadata?: any;
35126
+ template?: any;
35127
+ };
34997
35128
  }, {
34998
35129
  room: {
34999
35130
  id: string;
@@ -35017,6 +35148,7 @@ export declare const mainChatRoomContract: {
35017
35148
  channelId?: string | undefined;
35018
35149
  status?: "active" | "pending" | undefined;
35019
35150
  apiKey?: string | undefined;
35151
+ tier?: "basic" | "regular" | "premium" | undefined;
35020
35152
  } | undefined;
35021
35153
  vonageCredentials?: {
35022
35154
  apiKey: string;
@@ -35411,6 +35543,21 @@ export declare const mainChatRoomContract: {
35411
35543
  metadata?: any;
35412
35544
  template?: any;
35413
35545
  };
35546
+ latestMessage: {
35547
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
35548
+ message: string;
35549
+ url: string;
35550
+ direction: "incoming" | "outgoing" | "system";
35551
+ platformId: string;
35552
+ platformMessageId: string;
35553
+ readAt: Date;
35554
+ replyPlatformMessageId: string;
35555
+ locale: "" | "th" | "mm" | "en";
35556
+ previewUrl: string;
35557
+ imageSetId: string;
35558
+ metadata?: any;
35559
+ template?: any;
35560
+ };
35414
35561
  }>;
35415
35562
  }, "strip", z.ZodTypeAny, {
35416
35563
  data: {
@@ -35436,6 +35583,7 @@ export declare const mainChatRoomContract: {
35436
35583
  channelId?: string | undefined;
35437
35584
  status?: "active" | "pending" | undefined;
35438
35585
  apiKey?: string | undefined;
35586
+ tier?: "basic" | "regular" | "premium" | undefined;
35439
35587
  } | undefined;
35440
35588
  vonageCredentials?: {
35441
35589
  apiKey: string;
@@ -35830,6 +35978,21 @@ export declare const mainChatRoomContract: {
35830
35978
  metadata?: any;
35831
35979
  template?: any;
35832
35980
  };
35981
+ latestMessage: {
35982
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
35983
+ message: string;
35984
+ url: string;
35985
+ direction: "incoming" | "outgoing" | "system";
35986
+ platformId: string;
35987
+ platformMessageId: string;
35988
+ readAt: Date;
35989
+ replyPlatformMessageId: string;
35990
+ locale: "" | "th" | "mm" | "en";
35991
+ previewUrl: string;
35992
+ imageSetId: string;
35993
+ metadata?: any;
35994
+ template?: any;
35995
+ };
35833
35996
  };
35834
35997
  requestId: string;
35835
35998
  }, {
@@ -35856,6 +36019,7 @@ export declare const mainChatRoomContract: {
35856
36019
  channelId?: string | undefined;
35857
36020
  status?: "active" | "pending" | undefined;
35858
36021
  apiKey?: string | undefined;
36022
+ tier?: "basic" | "regular" | "premium" | undefined;
35859
36023
  } | undefined;
35860
36024
  vonageCredentials?: {
35861
36025
  apiKey: string;
@@ -36250,6 +36414,21 @@ export declare const mainChatRoomContract: {
36250
36414
  metadata?: any;
36251
36415
  template?: any;
36252
36416
  };
36417
+ latestMessage: {
36418
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
36419
+ message: string;
36420
+ url: string;
36421
+ direction: "incoming" | "outgoing" | "system";
36422
+ platformId: string;
36423
+ platformMessageId: string;
36424
+ readAt: Date;
36425
+ replyPlatformMessageId: string;
36426
+ locale: "" | "th" | "mm" | "en";
36427
+ previewUrl: string;
36428
+ imageSetId: string;
36429
+ metadata?: any;
36430
+ template?: any;
36431
+ };
36253
36432
  };
36254
36433
  requestId: string;
36255
36434
  }>;
@@ -36323,6 +36502,7 @@ export declare const mainChatRoomContract: {
36323
36502
  channelId: z.ZodOptional<z.ZodString>;
36324
36503
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
36325
36504
  apiKey: z.ZodOptional<z.ZodString>;
36505
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
36326
36506
  }, "strip", z.ZodTypeAny, {
36327
36507
  email: string;
36328
36508
  wabaExternalId: string;
@@ -36332,6 +36512,7 @@ export declare const mainChatRoomContract: {
36332
36512
  channelId?: string | undefined;
36333
36513
  status?: "active" | "pending" | undefined;
36334
36514
  apiKey?: string | undefined;
36515
+ tier?: "basic" | "regular" | "premium" | undefined;
36335
36516
  }, {
36336
36517
  email: string;
36337
36518
  wabaExternalId: string;
@@ -36341,6 +36522,7 @@ export declare const mainChatRoomContract: {
36341
36522
  channelId?: string | undefined;
36342
36523
  status?: "active" | "pending" | undefined;
36343
36524
  apiKey?: string | undefined;
36525
+ tier?: "basic" | "regular" | "premium" | undefined;
36344
36526
  }>>;
36345
36527
  vonageCredentials: z.ZodOptional<z.ZodObject<{
36346
36528
  mobileNumber: z.ZodString;
@@ -36373,6 +36555,7 @@ export declare const mainChatRoomContract: {
36373
36555
  channelId?: string | undefined;
36374
36556
  status?: "active" | "pending" | undefined;
36375
36557
  apiKey?: string | undefined;
36558
+ tier?: "basic" | "regular" | "premium" | undefined;
36376
36559
  } | undefined;
36377
36560
  vonageCredentials?: {
36378
36561
  apiKey: string;
@@ -36397,6 +36580,7 @@ export declare const mainChatRoomContract: {
36397
36580
  channelId?: string | undefined;
36398
36581
  status?: "active" | "pending" | undefined;
36399
36582
  apiKey?: string | undefined;
36583
+ tier?: "basic" | "regular" | "premium" | undefined;
36400
36584
  } | undefined;
36401
36585
  vonageCredentials?: {
36402
36586
  apiKey: string;
@@ -36655,6 +36839,7 @@ export declare const mainChatRoomContract: {
36655
36839
  channelId?: string | undefined;
36656
36840
  status?: "active" | "pending" | undefined;
36657
36841
  apiKey?: string | undefined;
36842
+ tier?: "basic" | "regular" | "premium" | undefined;
36658
36843
  } | undefined;
36659
36844
  vonageCredentials?: {
36660
36845
  apiKey: string;
@@ -36744,6 +36929,7 @@ export declare const mainChatRoomContract: {
36744
36929
  channelId?: string | undefined;
36745
36930
  status?: "active" | "pending" | undefined;
36746
36931
  apiKey?: string | undefined;
36932
+ tier?: "basic" | "regular" | "premium" | undefined;
36747
36933
  } | undefined;
36748
36934
  vonageCredentials?: {
36749
36935
  apiKey: string;
@@ -38751,6 +38937,7 @@ export declare const mainChatRoomContract: {
38751
38937
  channelId?: string | undefined;
38752
38938
  status?: "active" | "pending" | undefined;
38753
38939
  apiKey?: string | undefined;
38940
+ tier?: "basic" | "regular" | "premium" | undefined;
38754
38941
  } | undefined;
38755
38942
  vonageCredentials?: {
38756
38943
  apiKey: string;
@@ -39152,6 +39339,7 @@ export declare const mainChatRoomContract: {
39152
39339
  channelId?: string | undefined;
39153
39340
  status?: "active" | "pending" | undefined;
39154
39341
  apiKey?: string | undefined;
39342
+ tier?: "basic" | "regular" | "premium" | undefined;
39155
39343
  } | undefined;
39156
39344
  vonageCredentials?: {
39157
39345
  apiKey: string;
@@ -39555,6 +39743,7 @@ export declare const mainChatRoomContract: {
39555
39743
  channelId?: string | undefined;
39556
39744
  status?: "active" | "pending" | undefined;
39557
39745
  apiKey?: string | undefined;
39746
+ tier?: "basic" | "regular" | "premium" | undefined;
39558
39747
  } | undefined;
39559
39748
  vonageCredentials?: {
39560
39749
  apiKey: string;
@@ -39959,6 +40148,7 @@ export declare const mainChatRoomContract: {
39959
40148
  channelId?: string | undefined;
39960
40149
  status?: "active" | "pending" | undefined;
39961
40150
  apiKey?: string | undefined;
40151
+ tier?: "basic" | "regular" | "premium" | undefined;
39962
40152
  } | undefined;
39963
40153
  vonageCredentials?: {
39964
40154
  apiKey: string;
@@ -40409,6 +40599,7 @@ export declare const mainChatRoomContract: {
40409
40599
  channelId: z.ZodOptional<z.ZodString>;
40410
40600
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
40411
40601
  apiKey: z.ZodOptional<z.ZodString>;
40602
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
40412
40603
  }, "strip", z.ZodTypeAny, {
40413
40604
  email: string;
40414
40605
  wabaExternalId: string;
@@ -40418,6 +40609,7 @@ export declare const mainChatRoomContract: {
40418
40609
  channelId?: string | undefined;
40419
40610
  status?: "active" | "pending" | undefined;
40420
40611
  apiKey?: string | undefined;
40612
+ tier?: "basic" | "regular" | "premium" | undefined;
40421
40613
  }, {
40422
40614
  email: string;
40423
40615
  wabaExternalId: string;
@@ -40427,6 +40619,7 @@ export declare const mainChatRoomContract: {
40427
40619
  channelId?: string | undefined;
40428
40620
  status?: "active" | "pending" | undefined;
40429
40621
  apiKey?: string | undefined;
40622
+ tier?: "basic" | "regular" | "premium" | undefined;
40430
40623
  }>>;
40431
40624
  vonageCredentials: z.ZodOptional<z.ZodObject<{
40432
40625
  mobileNumber: z.ZodString;
@@ -40459,6 +40652,7 @@ export declare const mainChatRoomContract: {
40459
40652
  channelId?: string | undefined;
40460
40653
  status?: "active" | "pending" | undefined;
40461
40654
  apiKey?: string | undefined;
40655
+ tier?: "basic" | "regular" | "premium" | undefined;
40462
40656
  } | undefined;
40463
40657
  vonageCredentials?: {
40464
40658
  apiKey: string;
@@ -40483,6 +40677,7 @@ export declare const mainChatRoomContract: {
40483
40677
  channelId?: string | undefined;
40484
40678
  status?: "active" | "pending" | undefined;
40485
40679
  apiKey?: string | undefined;
40680
+ tier?: "basic" | "regular" | "premium" | undefined;
40486
40681
  } | undefined;
40487
40682
  vonageCredentials?: {
40488
40683
  apiKey: string;
@@ -40741,6 +40936,7 @@ export declare const mainChatRoomContract: {
40741
40936
  channelId?: string | undefined;
40742
40937
  status?: "active" | "pending" | undefined;
40743
40938
  apiKey?: string | undefined;
40939
+ tier?: "basic" | "regular" | "premium" | undefined;
40744
40940
  } | undefined;
40745
40941
  vonageCredentials?: {
40746
40942
  apiKey: string;
@@ -40830,6 +41026,7 @@ export declare const mainChatRoomContract: {
40830
41026
  channelId?: string | undefined;
40831
41027
  status?: "active" | "pending" | undefined;
40832
41028
  apiKey?: string | undefined;
41029
+ tier?: "basic" | "regular" | "premium" | undefined;
40833
41030
  } | undefined;
40834
41031
  vonageCredentials?: {
40835
41032
  apiKey: string;
@@ -43607,6 +43804,7 @@ export declare const mainChatRoomContract: {
43607
43804
  channelId?: string | undefined;
43608
43805
  status?: "active" | "pending" | undefined;
43609
43806
  apiKey?: string | undefined;
43807
+ tier?: "basic" | "regular" | "premium" | undefined;
43610
43808
  } | undefined;
43611
43809
  vonageCredentials?: {
43612
43810
  apiKey: string;
@@ -44120,6 +44318,7 @@ export declare const mainChatRoomContract: {
44120
44318
  channelId?: string | undefined;
44121
44319
  status?: "active" | "pending" | undefined;
44122
44320
  apiKey?: string | undefined;
44321
+ tier?: "basic" | "regular" | "premium" | undefined;
44123
44322
  } | undefined;
44124
44323
  vonageCredentials?: {
44125
44324
  apiKey: string;
@@ -44635,6 +44834,7 @@ export declare const mainChatRoomContract: {
44635
44834
  channelId?: string | undefined;
44636
44835
  status?: "active" | "pending" | undefined;
44637
44836
  apiKey?: string | undefined;
44837
+ tier?: "basic" | "regular" | "premium" | undefined;
44638
44838
  } | undefined;
44639
44839
  vonageCredentials?: {
44640
44840
  apiKey: string;
@@ -45151,6 +45351,7 @@ export declare const mainChatRoomContract: {
45151
45351
  channelId?: string | undefined;
45152
45352
  status?: "active" | "pending" | undefined;
45153
45353
  apiKey?: string | undefined;
45354
+ tier?: "basic" | "regular" | "premium" | undefined;
45154
45355
  } | undefined;
45155
45356
  vonageCredentials?: {
45156
45357
  apiKey: string;
@@ -45703,6 +45904,7 @@ export declare const mainChatRoomContract: {
45703
45904
  channelId: z.ZodOptional<z.ZodString>;
45704
45905
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
45705
45906
  apiKey: z.ZodOptional<z.ZodString>;
45907
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
45706
45908
  }, "strip", z.ZodTypeAny, {
45707
45909
  email: string;
45708
45910
  wabaExternalId: string;
@@ -45712,6 +45914,7 @@ export declare const mainChatRoomContract: {
45712
45914
  channelId?: string | undefined;
45713
45915
  status?: "active" | "pending" | undefined;
45714
45916
  apiKey?: string | undefined;
45917
+ tier?: "basic" | "regular" | "premium" | undefined;
45715
45918
  }, {
45716
45919
  email: string;
45717
45920
  wabaExternalId: string;
@@ -45721,6 +45924,7 @@ export declare const mainChatRoomContract: {
45721
45924
  channelId?: string | undefined;
45722
45925
  status?: "active" | "pending" | undefined;
45723
45926
  apiKey?: string | undefined;
45927
+ tier?: "basic" | "regular" | "premium" | undefined;
45724
45928
  }>>;
45725
45929
  vonageCredentials: z.ZodOptional<z.ZodObject<{
45726
45930
  mobileNumber: z.ZodString;
@@ -45753,6 +45957,7 @@ export declare const mainChatRoomContract: {
45753
45957
  channelId?: string | undefined;
45754
45958
  status?: "active" | "pending" | undefined;
45755
45959
  apiKey?: string | undefined;
45960
+ tier?: "basic" | "regular" | "premium" | undefined;
45756
45961
  } | undefined;
45757
45962
  vonageCredentials?: {
45758
45963
  apiKey: string;
@@ -45777,6 +45982,7 @@ export declare const mainChatRoomContract: {
45777
45982
  channelId?: string | undefined;
45778
45983
  status?: "active" | "pending" | undefined;
45779
45984
  apiKey?: string | undefined;
45985
+ tier?: "basic" | "regular" | "premium" | undefined;
45780
45986
  } | undefined;
45781
45987
  vonageCredentials?: {
45782
45988
  apiKey: string;
@@ -46035,6 +46241,7 @@ export declare const mainChatRoomContract: {
46035
46241
  channelId?: string | undefined;
46036
46242
  status?: "active" | "pending" | undefined;
46037
46243
  apiKey?: string | undefined;
46244
+ tier?: "basic" | "regular" | "premium" | undefined;
46038
46245
  } | undefined;
46039
46246
  vonageCredentials?: {
46040
46247
  apiKey: string;
@@ -46124,6 +46331,7 @@ export declare const mainChatRoomContract: {
46124
46331
  channelId?: string | undefined;
46125
46332
  status?: "active" | "pending" | undefined;
46126
46333
  apiKey?: string | undefined;
46334
+ tier?: "basic" | "regular" | "premium" | undefined;
46127
46335
  } | undefined;
46128
46336
  vonageCredentials?: {
46129
46337
  apiKey: string;
@@ -48131,6 +48339,7 @@ export declare const mainChatRoomContract: {
48131
48339
  channelId?: string | undefined;
48132
48340
  status?: "active" | "pending" | undefined;
48133
48341
  apiKey?: string | undefined;
48342
+ tier?: "basic" | "regular" | "premium" | undefined;
48134
48343
  } | undefined;
48135
48344
  vonageCredentials?: {
48136
48345
  apiKey: string;
@@ -48532,6 +48741,7 @@ export declare const mainChatRoomContract: {
48532
48741
  channelId?: string | undefined;
48533
48742
  status?: "active" | "pending" | undefined;
48534
48743
  apiKey?: string | undefined;
48744
+ tier?: "basic" | "regular" | "premium" | undefined;
48535
48745
  } | undefined;
48536
48746
  vonageCredentials?: {
48537
48747
  apiKey: string;
@@ -48935,6 +49145,7 @@ export declare const mainChatRoomContract: {
48935
49145
  channelId?: string | undefined;
48936
49146
  status?: "active" | "pending" | undefined;
48937
49147
  apiKey?: string | undefined;
49148
+ tier?: "basic" | "regular" | "premium" | undefined;
48938
49149
  } | undefined;
48939
49150
  vonageCredentials?: {
48940
49151
  apiKey: string;
@@ -49339,6 +49550,7 @@ export declare const mainChatRoomContract: {
49339
49550
  channelId?: string | undefined;
49340
49551
  status?: "active" | "pending" | undefined;
49341
49552
  apiKey?: string | undefined;
49553
+ tier?: "basic" | "regular" | "premium" | undefined;
49342
49554
  } | undefined;
49343
49555
  vonageCredentials?: {
49344
49556
  apiKey: string;
@@ -49793,6 +50005,7 @@ export declare const mainChatRoomContract: {
49793
50005
  channelId: z.ZodOptional<z.ZodString>;
49794
50006
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
49795
50007
  apiKey: z.ZodOptional<z.ZodString>;
50008
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
49796
50009
  }, "strip", z.ZodTypeAny, {
49797
50010
  email: string;
49798
50011
  wabaExternalId: string;
@@ -49802,6 +50015,7 @@ export declare const mainChatRoomContract: {
49802
50015
  channelId?: string | undefined;
49803
50016
  status?: "active" | "pending" | undefined;
49804
50017
  apiKey?: string | undefined;
50018
+ tier?: "basic" | "regular" | "premium" | undefined;
49805
50019
  }, {
49806
50020
  email: string;
49807
50021
  wabaExternalId: string;
@@ -49811,6 +50025,7 @@ export declare const mainChatRoomContract: {
49811
50025
  channelId?: string | undefined;
49812
50026
  status?: "active" | "pending" | undefined;
49813
50027
  apiKey?: string | undefined;
50028
+ tier?: "basic" | "regular" | "premium" | undefined;
49814
50029
  }>>;
49815
50030
  vonageCredentials: z.ZodOptional<z.ZodObject<{
49816
50031
  mobileNumber: z.ZodString;
@@ -49843,6 +50058,7 @@ export declare const mainChatRoomContract: {
49843
50058
  channelId?: string | undefined;
49844
50059
  status?: "active" | "pending" | undefined;
49845
50060
  apiKey?: string | undefined;
50061
+ tier?: "basic" | "regular" | "premium" | undefined;
49846
50062
  } | undefined;
49847
50063
  vonageCredentials?: {
49848
50064
  apiKey: string;
@@ -49867,6 +50083,7 @@ export declare const mainChatRoomContract: {
49867
50083
  channelId?: string | undefined;
49868
50084
  status?: "active" | "pending" | undefined;
49869
50085
  apiKey?: string | undefined;
50086
+ tier?: "basic" | "regular" | "premium" | undefined;
49870
50087
  } | undefined;
49871
50088
  vonageCredentials?: {
49872
50089
  apiKey: string;
@@ -50125,6 +50342,7 @@ export declare const mainChatRoomContract: {
50125
50342
  channelId?: string | undefined;
50126
50343
  status?: "active" | "pending" | undefined;
50127
50344
  apiKey?: string | undefined;
50345
+ tier?: "basic" | "regular" | "premium" | undefined;
50128
50346
  } | undefined;
50129
50347
  vonageCredentials?: {
50130
50348
  apiKey: string;
@@ -50214,6 +50432,7 @@ export declare const mainChatRoomContract: {
50214
50432
  channelId?: string | undefined;
50215
50433
  status?: "active" | "pending" | undefined;
50216
50434
  apiKey?: string | undefined;
50435
+ tier?: "basic" | "regular" | "premium" | undefined;
50217
50436
  } | undefined;
50218
50437
  vonageCredentials?: {
50219
50438
  apiKey: string;
@@ -52220,6 +52439,7 @@ export declare const mainChatRoomContract: {
52220
52439
  channelId?: string | undefined;
52221
52440
  status?: "active" | "pending" | undefined;
52222
52441
  apiKey?: string | undefined;
52442
+ tier?: "basic" | "regular" | "premium" | undefined;
52223
52443
  } | undefined;
52224
52444
  vonageCredentials?: {
52225
52445
  apiKey: string;
@@ -52620,6 +52840,7 @@ export declare const mainChatRoomContract: {
52620
52840
  channelId?: string | undefined;
52621
52841
  status?: "active" | "pending" | undefined;
52622
52842
  apiKey?: string | undefined;
52843
+ tier?: "basic" | "regular" | "premium" | undefined;
52623
52844
  } | undefined;
52624
52845
  vonageCredentials?: {
52625
52846
  apiKey: string;
@@ -53022,6 +53243,7 @@ export declare const mainChatRoomContract: {
53022
53243
  channelId?: string | undefined;
53023
53244
  status?: "active" | "pending" | undefined;
53024
53245
  apiKey?: string | undefined;
53246
+ tier?: "basic" | "regular" | "premium" | undefined;
53025
53247
  } | undefined;
53026
53248
  vonageCredentials?: {
53027
53249
  apiKey: string;
@@ -53428,6 +53650,7 @@ export declare const mainChatRoomContract: {
53428
53650
  channelId?: string | undefined;
53429
53651
  status?: "active" | "pending" | undefined;
53430
53652
  apiKey?: string | undefined;
53653
+ tier?: "basic" | "regular" | "premium" | undefined;
53431
53654
  } | undefined;
53432
53655
  vonageCredentials?: {
53433
53656
  apiKey: string;
@@ -56193,6 +56416,7 @@ export declare const mainChatContract: {
56193
56416
  channelId: z.ZodOptional<z.ZodString>;
56194
56417
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
56195
56418
  apiKey: z.ZodOptional<z.ZodString>;
56419
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
56196
56420
  }, "strip", z.ZodTypeAny, {
56197
56421
  email: string;
56198
56422
  wabaExternalId: string;
@@ -56202,6 +56426,7 @@ export declare const mainChatContract: {
56202
56426
  channelId?: string | undefined;
56203
56427
  status?: "active" | "pending" | undefined;
56204
56428
  apiKey?: string | undefined;
56429
+ tier?: "basic" | "regular" | "premium" | undefined;
56205
56430
  }, {
56206
56431
  email: string;
56207
56432
  wabaExternalId: string;
@@ -56211,6 +56436,7 @@ export declare const mainChatContract: {
56211
56436
  channelId?: string | undefined;
56212
56437
  status?: "active" | "pending" | undefined;
56213
56438
  apiKey?: string | undefined;
56439
+ tier?: "basic" | "regular" | "premium" | undefined;
56214
56440
  }>>;
56215
56441
  vonageCredentials: z.ZodOptional<z.ZodObject<{
56216
56442
  mobileNumber: z.ZodString;
@@ -56243,6 +56469,7 @@ export declare const mainChatContract: {
56243
56469
  channelId?: string | undefined;
56244
56470
  status?: "active" | "pending" | undefined;
56245
56471
  apiKey?: string | undefined;
56472
+ tier?: "basic" | "regular" | "premium" | undefined;
56246
56473
  } | undefined;
56247
56474
  vonageCredentials?: {
56248
56475
  apiKey: string;
@@ -56267,6 +56494,7 @@ export declare const mainChatContract: {
56267
56494
  channelId?: string | undefined;
56268
56495
  status?: "active" | "pending" | undefined;
56269
56496
  apiKey?: string | undefined;
56497
+ tier?: "basic" | "regular" | "premium" | undefined;
56270
56498
  } | undefined;
56271
56499
  vonageCredentials?: {
56272
56500
  apiKey: string;
@@ -56525,6 +56753,7 @@ export declare const mainChatContract: {
56525
56753
  channelId?: string | undefined;
56526
56754
  status?: "active" | "pending" | undefined;
56527
56755
  apiKey?: string | undefined;
56756
+ tier?: "basic" | "regular" | "premium" | undefined;
56528
56757
  } | undefined;
56529
56758
  vonageCredentials?: {
56530
56759
  apiKey: string;
@@ -56614,6 +56843,7 @@ export declare const mainChatContract: {
56614
56843
  channelId?: string | undefined;
56615
56844
  status?: "active" | "pending" | undefined;
56616
56845
  apiKey?: string | undefined;
56846
+ tier?: "basic" | "regular" | "premium" | undefined;
56617
56847
  } | undefined;
56618
56848
  vonageCredentials?: {
56619
56849
  apiKey: string;
@@ -57151,6 +57381,7 @@ export declare const mainChatContract: {
57151
57381
  channelId?: string | undefined;
57152
57382
  status?: "active" | "pending" | undefined;
57153
57383
  apiKey?: string | undefined;
57384
+ tier?: "basic" | "regular" | "premium" | undefined;
57154
57385
  } | undefined;
57155
57386
  vonageCredentials?: {
57156
57387
  apiKey: string;
@@ -57551,6 +57782,7 @@ export declare const mainChatContract: {
57551
57782
  channelId?: string | undefined;
57552
57783
  status?: "active" | "pending" | undefined;
57553
57784
  apiKey?: string | undefined;
57785
+ tier?: "basic" | "regular" | "premium" | undefined;
57554
57786
  } | undefined;
57555
57787
  vonageCredentials?: {
57556
57788
  apiKey: string;
@@ -60667,6 +60899,7 @@ export declare const mainChatContract: {
60667
60899
  channelId: z.ZodOptional<z.ZodString>;
60668
60900
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
60669
60901
  apiKey: z.ZodOptional<z.ZodString>;
60902
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
60670
60903
  }, "strip", z.ZodTypeAny, {
60671
60904
  email: string;
60672
60905
  wabaExternalId: string;
@@ -60676,6 +60909,7 @@ export declare const mainChatContract: {
60676
60909
  channelId?: string | undefined;
60677
60910
  status?: "active" | "pending" | undefined;
60678
60911
  apiKey?: string | undefined;
60912
+ tier?: "basic" | "regular" | "premium" | undefined;
60679
60913
  }, {
60680
60914
  email: string;
60681
60915
  wabaExternalId: string;
@@ -60685,6 +60919,7 @@ export declare const mainChatContract: {
60685
60919
  channelId?: string | undefined;
60686
60920
  status?: "active" | "pending" | undefined;
60687
60921
  apiKey?: string | undefined;
60922
+ tier?: "basic" | "regular" | "premium" | undefined;
60688
60923
  }>>;
60689
60924
  vonageCredentials: z.ZodOptional<z.ZodObject<{
60690
60925
  mobileNumber: z.ZodString;
@@ -60717,6 +60952,7 @@ export declare const mainChatContract: {
60717
60952
  channelId?: string | undefined;
60718
60953
  status?: "active" | "pending" | undefined;
60719
60954
  apiKey?: string | undefined;
60955
+ tier?: "basic" | "regular" | "premium" | undefined;
60720
60956
  } | undefined;
60721
60957
  vonageCredentials?: {
60722
60958
  apiKey: string;
@@ -60741,6 +60977,7 @@ export declare const mainChatContract: {
60741
60977
  channelId?: string | undefined;
60742
60978
  status?: "active" | "pending" | undefined;
60743
60979
  apiKey?: string | undefined;
60980
+ tier?: "basic" | "regular" | "premium" | undefined;
60744
60981
  } | undefined;
60745
60982
  vonageCredentials?: {
60746
60983
  apiKey: string;
@@ -60999,6 +61236,7 @@ export declare const mainChatContract: {
60999
61236
  channelId?: string | undefined;
61000
61237
  status?: "active" | "pending" | undefined;
61001
61238
  apiKey?: string | undefined;
61239
+ tier?: "basic" | "regular" | "premium" | undefined;
61002
61240
  } | undefined;
61003
61241
  vonageCredentials?: {
61004
61242
  apiKey: string;
@@ -61088,6 +61326,7 @@ export declare const mainChatContract: {
61088
61326
  channelId?: string | undefined;
61089
61327
  status?: "active" | "pending" | undefined;
61090
61328
  apiKey?: string | undefined;
61329
+ tier?: "basic" | "regular" | "premium" | undefined;
61091
61330
  } | undefined;
61092
61331
  vonageCredentials?: {
61093
61332
  apiKey: string;
@@ -61625,6 +61864,7 @@ export declare const mainChatContract: {
61625
61864
  channelId?: string | undefined;
61626
61865
  status?: "active" | "pending" | undefined;
61627
61866
  apiKey?: string | undefined;
61867
+ tier?: "basic" | "regular" | "premium" | undefined;
61628
61868
  } | undefined;
61629
61869
  vonageCredentials?: {
61630
61870
  apiKey: string;
@@ -62025,6 +62265,7 @@ export declare const mainChatContract: {
62025
62265
  channelId?: string | undefined;
62026
62266
  status?: "active" | "pending" | undefined;
62027
62267
  apiKey?: string | undefined;
62268
+ tier?: "basic" | "regular" | "premium" | undefined;
62028
62269
  } | undefined;
62029
62270
  vonageCredentials?: {
62030
62271
  apiKey: string;
@@ -64198,6 +64439,7 @@ export declare const mainChatContract: {
64198
64439
  channelId?: string | undefined;
64199
64440
  status?: "active" | "pending" | undefined;
64200
64441
  apiKey?: string | undefined;
64442
+ tier?: "basic" | "regular" | "premium" | undefined;
64201
64443
  } | undefined;
64202
64444
  vonageCredentials?: {
64203
64445
  apiKey: string;
@@ -64935,6 +65177,7 @@ export declare const mainChatContract: {
64935
65177
  channelId?: string | undefined;
64936
65178
  status?: "active" | "pending" | undefined;
64937
65179
  apiKey?: string | undefined;
65180
+ tier?: "basic" | "regular" | "premium" | undefined;
64938
65181
  } | undefined;
64939
65182
  vonageCredentials?: {
64940
65183
  apiKey: string;
@@ -65673,6 +65916,7 @@ export declare const mainChatContract: {
65673
65916
  channelId?: string | undefined;
65674
65917
  status?: "active" | "pending" | undefined;
65675
65918
  apiKey?: string | undefined;
65919
+ tier?: "basic" | "regular" | "premium" | undefined;
65676
65920
  } | undefined;
65677
65921
  vonageCredentials?: {
65678
65922
  apiKey: string;
@@ -66410,6 +66654,7 @@ export declare const mainChatContract: {
66410
66654
  channelId?: string | undefined;
66411
66655
  status?: "active" | "pending" | undefined;
66412
66656
  apiKey?: string | undefined;
66657
+ tier?: "basic" | "regular" | "premium" | undefined;
66413
66658
  } | undefined;
66414
66659
  vonageCredentials?: {
66415
66660
  apiKey: string;
@@ -67148,6 +67393,7 @@ export declare const mainChatContract: {
67148
67393
  channelId?: string | undefined;
67149
67394
  status?: "active" | "pending" | undefined;
67150
67395
  apiKey?: string | undefined;
67396
+ tier?: "basic" | "regular" | "premium" | undefined;
67151
67397
  } | undefined;
67152
67398
  vonageCredentials?: {
67153
67399
  apiKey: string;
@@ -67885,6 +68131,7 @@ export declare const mainChatContract: {
67885
68131
  channelId?: string | undefined;
67886
68132
  status?: "active" | "pending" | undefined;
67887
68133
  apiKey?: string | undefined;
68134
+ tier?: "basic" | "regular" | "premium" | undefined;
67888
68135
  } | undefined;
67889
68136
  vonageCredentials?: {
67890
68137
  apiKey: string;
@@ -68625,6 +68872,7 @@ export declare const mainChatContract: {
68625
68872
  channelId?: string | undefined;
68626
68873
  status?: "active" | "pending" | undefined;
68627
68874
  apiKey?: string | undefined;
68875
+ tier?: "basic" | "regular" | "premium" | undefined;
68628
68876
  } | undefined;
68629
68877
  vonageCredentials?: {
68630
68878
  apiKey: string;
@@ -69362,6 +69610,7 @@ export declare const mainChatContract: {
69362
69610
  channelId?: string | undefined;
69363
69611
  status?: "active" | "pending" | undefined;
69364
69612
  apiKey?: string | undefined;
69613
+ tier?: "basic" | "regular" | "premium" | undefined;
69365
69614
  } | undefined;
69366
69615
  vonageCredentials?: {
69367
69616
  apiKey: string;
@@ -70103,6 +70352,7 @@ export declare const mainChatContract: {
70103
70352
  channelId?: string | undefined;
70104
70353
  status?: "active" | "pending" | undefined;
70105
70354
  apiKey?: string | undefined;
70355
+ tier?: "basic" | "regular" | "premium" | undefined;
70106
70356
  } | undefined;
70107
70357
  vonageCredentials?: {
70108
70358
  apiKey: string;
@@ -70840,6 +71090,7 @@ export declare const mainChatContract: {
70840
71090
  channelId?: string | undefined;
70841
71091
  status?: "active" | "pending" | undefined;
70842
71092
  apiKey?: string | undefined;
71093
+ tier?: "basic" | "regular" | "premium" | undefined;
70843
71094
  } | undefined;
70844
71095
  vonageCredentials?: {
70845
71096
  apiKey: string;
@@ -73575,6 +73826,7 @@ export declare const mainChatContract: {
73575
73826
  channelId: z.ZodOptional<z.ZodString>;
73576
73827
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
73577
73828
  apiKey: z.ZodOptional<z.ZodString>;
73829
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
73578
73830
  }, "strip", z.ZodTypeAny, {
73579
73831
  email: string;
73580
73832
  wabaExternalId: string;
@@ -73584,6 +73836,7 @@ export declare const mainChatContract: {
73584
73836
  channelId?: string | undefined;
73585
73837
  status?: "active" | "pending" | undefined;
73586
73838
  apiKey?: string | undefined;
73839
+ tier?: "basic" | "regular" | "premium" | undefined;
73587
73840
  }, {
73588
73841
  email: string;
73589
73842
  wabaExternalId: string;
@@ -73593,6 +73846,7 @@ export declare const mainChatContract: {
73593
73846
  channelId?: string | undefined;
73594
73847
  status?: "active" | "pending" | undefined;
73595
73848
  apiKey?: string | undefined;
73849
+ tier?: "basic" | "regular" | "premium" | undefined;
73596
73850
  }>>;
73597
73851
  vonageCredentials: z.ZodOptional<z.ZodObject<{
73598
73852
  mobileNumber: z.ZodString;
@@ -73625,6 +73879,7 @@ export declare const mainChatContract: {
73625
73879
  channelId?: string | undefined;
73626
73880
  status?: "active" | "pending" | undefined;
73627
73881
  apiKey?: string | undefined;
73882
+ tier?: "basic" | "regular" | "premium" | undefined;
73628
73883
  } | undefined;
73629
73884
  vonageCredentials?: {
73630
73885
  apiKey: string;
@@ -73649,6 +73904,7 @@ export declare const mainChatContract: {
73649
73904
  channelId?: string | undefined;
73650
73905
  status?: "active" | "pending" | undefined;
73651
73906
  apiKey?: string | undefined;
73907
+ tier?: "basic" | "regular" | "premium" | undefined;
73652
73908
  } | undefined;
73653
73909
  vonageCredentials?: {
73654
73910
  apiKey: string;
@@ -73907,6 +74163,7 @@ export declare const mainChatContract: {
73907
74163
  channelId?: string | undefined;
73908
74164
  status?: "active" | "pending" | undefined;
73909
74165
  apiKey?: string | undefined;
74166
+ tier?: "basic" | "regular" | "premium" | undefined;
73910
74167
  } | undefined;
73911
74168
  vonageCredentials?: {
73912
74169
  apiKey: string;
@@ -73996,6 +74253,7 @@ export declare const mainChatContract: {
73996
74253
  channelId?: string | undefined;
73997
74254
  status?: "active" | "pending" | undefined;
73998
74255
  apiKey?: string | undefined;
74256
+ tier?: "basic" | "regular" | "premium" | undefined;
73999
74257
  } | undefined;
74000
74258
  vonageCredentials?: {
74001
74259
  apiKey: string;
@@ -74533,6 +74791,7 @@ export declare const mainChatContract: {
74533
74791
  channelId?: string | undefined;
74534
74792
  status?: "active" | "pending" | undefined;
74535
74793
  apiKey?: string | undefined;
74794
+ tier?: "basic" | "regular" | "premium" | undefined;
74536
74795
  } | undefined;
74537
74796
  vonageCredentials?: {
74538
74797
  apiKey: string;
@@ -74933,6 +75192,7 @@ export declare const mainChatContract: {
74933
75192
  channelId?: string | undefined;
74934
75193
  status?: "active" | "pending" | undefined;
74935
75194
  apiKey?: string | undefined;
75195
+ tier?: "basic" | "regular" | "premium" | undefined;
74936
75196
  } | undefined;
74937
75197
  vonageCredentials?: {
74938
75198
  apiKey: string;
@@ -76576,6 +76836,7 @@ export declare const mainChatContract: {
76576
76836
  channelId: z.ZodOptional<z.ZodString>;
76577
76837
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
76578
76838
  apiKey: z.ZodOptional<z.ZodString>;
76839
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
76579
76840
  }, "strip", z.ZodTypeAny, {
76580
76841
  email: string;
76581
76842
  wabaExternalId: string;
@@ -76585,6 +76846,7 @@ export declare const mainChatContract: {
76585
76846
  channelId?: string | undefined;
76586
76847
  status?: "active" | "pending" | undefined;
76587
76848
  apiKey?: string | undefined;
76849
+ tier?: "basic" | "regular" | "premium" | undefined;
76588
76850
  }, {
76589
76851
  email: string;
76590
76852
  wabaExternalId: string;
@@ -76594,6 +76856,7 @@ export declare const mainChatContract: {
76594
76856
  channelId?: string | undefined;
76595
76857
  status?: "active" | "pending" | undefined;
76596
76858
  apiKey?: string | undefined;
76859
+ tier?: "basic" | "regular" | "premium" | undefined;
76597
76860
  }>>;
76598
76861
  vonageCredentials: z.ZodOptional<z.ZodObject<{
76599
76862
  mobileNumber: z.ZodString;
@@ -76626,6 +76889,7 @@ export declare const mainChatContract: {
76626
76889
  channelId?: string | undefined;
76627
76890
  status?: "active" | "pending" | undefined;
76628
76891
  apiKey?: string | undefined;
76892
+ tier?: "basic" | "regular" | "premium" | undefined;
76629
76893
  } | undefined;
76630
76894
  vonageCredentials?: {
76631
76895
  apiKey: string;
@@ -76650,6 +76914,7 @@ export declare const mainChatContract: {
76650
76914
  channelId?: string | undefined;
76651
76915
  status?: "active" | "pending" | undefined;
76652
76916
  apiKey?: string | undefined;
76917
+ tier?: "basic" | "regular" | "premium" | undefined;
76653
76918
  } | undefined;
76654
76919
  vonageCredentials?: {
76655
76920
  apiKey: string;
@@ -76908,6 +77173,7 @@ export declare const mainChatContract: {
76908
77173
  channelId?: string | undefined;
76909
77174
  status?: "active" | "pending" | undefined;
76910
77175
  apiKey?: string | undefined;
77176
+ tier?: "basic" | "regular" | "premium" | undefined;
76911
77177
  } | undefined;
76912
77178
  vonageCredentials?: {
76913
77179
  apiKey: string;
@@ -76997,6 +77263,7 @@ export declare const mainChatContract: {
76997
77263
  channelId?: string | undefined;
76998
77264
  status?: "active" | "pending" | undefined;
76999
77265
  apiKey?: string | undefined;
77266
+ tier?: "basic" | "regular" | "premium" | undefined;
77000
77267
  } | undefined;
77001
77268
  vonageCredentials?: {
77002
77269
  apiKey: string;
@@ -78343,6 +78610,7 @@ export declare const mainChatContract: {
78343
78610
  channelId?: string | undefined;
78344
78611
  status?: "active" | "pending" | undefined;
78345
78612
  apiKey?: string | undefined;
78613
+ tier?: "basic" | "regular" | "premium" | undefined;
78346
78614
  } | undefined;
78347
78615
  vonageCredentials?: {
78348
78616
  apiKey: string;
@@ -78619,6 +78887,7 @@ export declare const mainChatContract: {
78619
78887
  channelId?: string | undefined;
78620
78888
  status?: "active" | "pending" | undefined;
78621
78889
  apiKey?: string | undefined;
78890
+ tier?: "basic" | "regular" | "premium" | undefined;
78622
78891
  } | undefined;
78623
78892
  vonageCredentials?: {
78624
78893
  apiKey: string;
@@ -79005,6 +79274,7 @@ export declare const mainChatContract: {
79005
79274
  channelId?: string | undefined;
79006
79275
  status?: "active" | "pending" | undefined;
79007
79276
  apiKey?: string | undefined;
79277
+ tier?: "basic" | "regular" | "premium" | undefined;
79008
79278
  } | undefined;
79009
79279
  vonageCredentials?: {
79010
79280
  apiKey: string;
@@ -79633,6 +79903,7 @@ export declare const mainChatContract: {
79633
79903
  channelId?: string | undefined;
79634
79904
  status?: "active" | "pending" | undefined;
79635
79905
  apiKey?: string | undefined;
79906
+ tier?: "basic" | "regular" | "premium" | undefined;
79636
79907
  } | undefined;
79637
79908
  vonageCredentials?: {
79638
79909
  apiKey: string;
@@ -80022,6 +80293,7 @@ export declare const mainChatContract: {
80022
80293
  channelId?: string | undefined;
80023
80294
  status?: "active" | "pending" | undefined;
80024
80295
  apiKey?: string | undefined;
80296
+ tier?: "basic" | "regular" | "premium" | undefined;
80025
80297
  } | undefined;
80026
80298
  vonageCredentials?: {
80027
80299
  apiKey: string;
@@ -80650,6 +80922,7 @@ export declare const mainChatContract: {
80650
80922
  channelId?: string | undefined;
80651
80923
  status?: "active" | "pending" | undefined;
80652
80924
  apiKey?: string | undefined;
80925
+ tier?: "basic" | "regular" | "premium" | undefined;
80653
80926
  } | undefined;
80654
80927
  vonageCredentials?: {
80655
80928
  apiKey: string;
@@ -81041,6 +81314,7 @@ export declare const mainChatContract: {
81041
81314
  channelId?: string | undefined;
81042
81315
  status?: "active" | "pending" | undefined;
81043
81316
  apiKey?: string | undefined;
81317
+ tier?: "basic" | "regular" | "premium" | undefined;
81044
81318
  } | undefined;
81045
81319
  vonageCredentials?: {
81046
81320
  apiKey: string;
@@ -81669,6 +81943,7 @@ export declare const mainChatContract: {
81669
81943
  channelId?: string | undefined;
81670
81944
  status?: "active" | "pending" | undefined;
81671
81945
  apiKey?: string | undefined;
81946
+ tier?: "basic" | "regular" | "premium" | undefined;
81672
81947
  } | undefined;
81673
81948
  vonageCredentials?: {
81674
81949
  apiKey: string;
@@ -82064,6 +82339,7 @@ export declare const mainChatContract: {
82064
82339
  channelId?: string | undefined;
82065
82340
  status?: "active" | "pending" | undefined;
82066
82341
  apiKey?: string | undefined;
82342
+ tier?: "basic" | "regular" | "premium" | undefined;
82067
82343
  } | undefined;
82068
82344
  vonageCredentials?: {
82069
82345
  apiKey: string;
@@ -82692,6 +82968,7 @@ export declare const mainChatContract: {
82692
82968
  channelId?: string | undefined;
82693
82969
  status?: "active" | "pending" | undefined;
82694
82970
  apiKey?: string | undefined;
82971
+ tier?: "basic" | "regular" | "premium" | undefined;
82695
82972
  } | undefined;
82696
82973
  vonageCredentials?: {
82697
82974
  apiKey: string;
@@ -84487,6 +84764,7 @@ export declare const mainChatContract: {
84487
84764
  channelId: z.ZodOptional<z.ZodString>;
84488
84765
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
84489
84766
  apiKey: z.ZodOptional<z.ZodString>;
84767
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
84490
84768
  }, "strip", z.ZodTypeAny, {
84491
84769
  email: string;
84492
84770
  wabaExternalId: string;
@@ -84496,6 +84774,7 @@ export declare const mainChatContract: {
84496
84774
  channelId?: string | undefined;
84497
84775
  status?: "active" | "pending" | undefined;
84498
84776
  apiKey?: string | undefined;
84777
+ tier?: "basic" | "regular" | "premium" | undefined;
84499
84778
  }, {
84500
84779
  email: string;
84501
84780
  wabaExternalId: string;
@@ -84505,6 +84784,7 @@ export declare const mainChatContract: {
84505
84784
  channelId?: string | undefined;
84506
84785
  status?: "active" | "pending" | undefined;
84507
84786
  apiKey?: string | undefined;
84787
+ tier?: "basic" | "regular" | "premium" | undefined;
84508
84788
  }>>;
84509
84789
  vonageCredentials: z.ZodOptional<z.ZodObject<{
84510
84790
  mobileNumber: z.ZodString;
@@ -84537,6 +84817,7 @@ export declare const mainChatContract: {
84537
84817
  channelId?: string | undefined;
84538
84818
  status?: "active" | "pending" | undefined;
84539
84819
  apiKey?: string | undefined;
84820
+ tier?: "basic" | "regular" | "premium" | undefined;
84540
84821
  } | undefined;
84541
84822
  vonageCredentials?: {
84542
84823
  apiKey: string;
@@ -84561,6 +84842,7 @@ export declare const mainChatContract: {
84561
84842
  channelId?: string | undefined;
84562
84843
  status?: "active" | "pending" | undefined;
84563
84844
  apiKey?: string | undefined;
84845
+ tier?: "basic" | "regular" | "premium" | undefined;
84564
84846
  } | undefined;
84565
84847
  vonageCredentials?: {
84566
84848
  apiKey: string;
@@ -84819,6 +85101,7 @@ export declare const mainChatContract: {
84819
85101
  channelId?: string | undefined;
84820
85102
  status?: "active" | "pending" | undefined;
84821
85103
  apiKey?: string | undefined;
85104
+ tier?: "basic" | "regular" | "premium" | undefined;
84822
85105
  } | undefined;
84823
85106
  vonageCredentials?: {
84824
85107
  apiKey: string;
@@ -84908,6 +85191,7 @@ export declare const mainChatContract: {
84908
85191
  channelId?: string | undefined;
84909
85192
  status?: "active" | "pending" | undefined;
84910
85193
  apiKey?: string | undefined;
85194
+ tier?: "basic" | "regular" | "premium" | undefined;
84911
85195
  } | undefined;
84912
85196
  vonageCredentials?: {
84913
85197
  apiKey: string;
@@ -85445,6 +85729,7 @@ export declare const mainChatContract: {
85445
85729
  channelId?: string | undefined;
85446
85730
  status?: "active" | "pending" | undefined;
85447
85731
  apiKey?: string | undefined;
85732
+ tier?: "basic" | "regular" | "premium" | undefined;
85448
85733
  } | undefined;
85449
85734
  vonageCredentials?: {
85450
85735
  apiKey: string;
@@ -85845,6 +86130,7 @@ export declare const mainChatContract: {
85845
86130
  channelId?: string | undefined;
85846
86131
  status?: "active" | "pending" | undefined;
85847
86132
  apiKey?: string | undefined;
86133
+ tier?: "basic" | "regular" | "premium" | undefined;
85848
86134
  } | undefined;
85849
86135
  vonageCredentials?: {
85850
86136
  apiKey: string;
@@ -86247,6 +86533,7 @@ export declare const mainChatContract: {
86247
86533
  channelId?: string | undefined;
86248
86534
  status?: "active" | "pending" | undefined;
86249
86535
  apiKey?: string | undefined;
86536
+ tier?: "basic" | "regular" | "premium" | undefined;
86250
86537
  } | undefined;
86251
86538
  vonageCredentials?: {
86252
86539
  apiKey: string;
@@ -86650,6 +86937,7 @@ export declare const mainChatContract: {
86650
86937
  channelId?: string | undefined;
86651
86938
  status?: "active" | "pending" | undefined;
86652
86939
  apiKey?: string | undefined;
86940
+ tier?: "basic" | "regular" | "premium" | undefined;
86653
86941
  } | undefined;
86654
86942
  vonageCredentials?: {
86655
86943
  apiKey: string;
@@ -88573,6 +88861,7 @@ export declare const mainChatContract: {
88573
88861
  channelId: z.ZodOptional<z.ZodString>;
88574
88862
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
88575
88863
  apiKey: z.ZodOptional<z.ZodString>;
88864
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
88576
88865
  }, "strip", z.ZodTypeAny, {
88577
88866
  email: string;
88578
88867
  wabaExternalId: string;
@@ -88582,6 +88871,7 @@ export declare const mainChatContract: {
88582
88871
  channelId?: string | undefined;
88583
88872
  status?: "active" | "pending" | undefined;
88584
88873
  apiKey?: string | undefined;
88874
+ tier?: "basic" | "regular" | "premium" | undefined;
88585
88875
  }, {
88586
88876
  email: string;
88587
88877
  wabaExternalId: string;
@@ -88591,6 +88881,7 @@ export declare const mainChatContract: {
88591
88881
  channelId?: string | undefined;
88592
88882
  status?: "active" | "pending" | undefined;
88593
88883
  apiKey?: string | undefined;
88884
+ tier?: "basic" | "regular" | "premium" | undefined;
88594
88885
  }>>;
88595
88886
  vonageCredentials: z.ZodOptional<z.ZodObject<{
88596
88887
  mobileNumber: z.ZodString;
@@ -88623,6 +88914,7 @@ export declare const mainChatContract: {
88623
88914
  channelId?: string | undefined;
88624
88915
  status?: "active" | "pending" | undefined;
88625
88916
  apiKey?: string | undefined;
88917
+ tier?: "basic" | "regular" | "premium" | undefined;
88626
88918
  } | undefined;
88627
88919
  vonageCredentials?: {
88628
88920
  apiKey: string;
@@ -88647,6 +88939,7 @@ export declare const mainChatContract: {
88647
88939
  channelId?: string | undefined;
88648
88940
  status?: "active" | "pending" | undefined;
88649
88941
  apiKey?: string | undefined;
88942
+ tier?: "basic" | "regular" | "premium" | undefined;
88650
88943
  } | undefined;
88651
88944
  vonageCredentials?: {
88652
88945
  apiKey: string;
@@ -88905,6 +89198,7 @@ export declare const mainChatContract: {
88905
89198
  channelId?: string | undefined;
88906
89199
  status?: "active" | "pending" | undefined;
88907
89200
  apiKey?: string | undefined;
89201
+ tier?: "basic" | "regular" | "premium" | undefined;
88908
89202
  } | undefined;
88909
89203
  vonageCredentials?: {
88910
89204
  apiKey: string;
@@ -88994,6 +89288,7 @@ export declare const mainChatContract: {
88994
89288
  channelId?: string | undefined;
88995
89289
  status?: "active" | "pending" | undefined;
88996
89290
  apiKey?: string | undefined;
89291
+ tier?: "basic" | "regular" | "premium" | undefined;
88997
89292
  } | undefined;
88998
89293
  vonageCredentials?: {
88999
89294
  apiKey: string;
@@ -89531,6 +89826,7 @@ export declare const mainChatContract: {
89531
89826
  channelId?: string | undefined;
89532
89827
  status?: "active" | "pending" | undefined;
89533
89828
  apiKey?: string | undefined;
89829
+ tier?: "basic" | "regular" | "premium" | undefined;
89534
89830
  } | undefined;
89535
89831
  vonageCredentials?: {
89536
89832
  apiKey: string;
@@ -89931,6 +90227,7 @@ export declare const mainChatContract: {
89931
90227
  channelId?: string | undefined;
89932
90228
  status?: "active" | "pending" | undefined;
89933
90229
  apiKey?: string | undefined;
90230
+ tier?: "basic" | "regular" | "premium" | undefined;
89934
90231
  } | undefined;
89935
90232
  vonageCredentials?: {
89936
90233
  apiKey: string;
@@ -90333,6 +90630,7 @@ export declare const mainChatContract: {
90333
90630
  channelId?: string | undefined;
90334
90631
  status?: "active" | "pending" | undefined;
90335
90632
  apiKey?: string | undefined;
90633
+ tier?: "basic" | "regular" | "premium" | undefined;
90336
90634
  } | undefined;
90337
90635
  vonageCredentials?: {
90338
90636
  apiKey: string;
@@ -90736,6 +91034,7 @@ export declare const mainChatContract: {
90736
91034
  channelId?: string | undefined;
90737
91035
  status?: "active" | "pending" | undefined;
90738
91036
  apiKey?: string | undefined;
91037
+ tier?: "basic" | "regular" | "premium" | undefined;
90739
91038
  } | undefined;
90740
91039
  vonageCredentials?: {
90741
91040
  apiKey: string;
@@ -93720,6 +94019,7 @@ export declare const mainChatContract: {
93720
94019
  channelId: z.ZodOptional<z.ZodString>;
93721
94020
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
93722
94021
  apiKey: z.ZodOptional<z.ZodString>;
94022
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
93723
94023
  }, "strip", z.ZodTypeAny, {
93724
94024
  email: string;
93725
94025
  wabaExternalId: string;
@@ -93729,6 +94029,7 @@ export declare const mainChatContract: {
93729
94029
  channelId?: string | undefined;
93730
94030
  status?: "active" | "pending" | undefined;
93731
94031
  apiKey?: string | undefined;
94032
+ tier?: "basic" | "regular" | "premium" | undefined;
93732
94033
  }, {
93733
94034
  email: string;
93734
94035
  wabaExternalId: string;
@@ -93738,6 +94039,7 @@ export declare const mainChatContract: {
93738
94039
  channelId?: string | undefined;
93739
94040
  status?: "active" | "pending" | undefined;
93740
94041
  apiKey?: string | undefined;
94042
+ tier?: "basic" | "regular" | "premium" | undefined;
93741
94043
  }>>;
93742
94044
  vonageCredentials: z.ZodOptional<z.ZodObject<{
93743
94045
  mobileNumber: z.ZodString;
@@ -93770,6 +94072,7 @@ export declare const mainChatContract: {
93770
94072
  channelId?: string | undefined;
93771
94073
  status?: "active" | "pending" | undefined;
93772
94074
  apiKey?: string | undefined;
94075
+ tier?: "basic" | "regular" | "premium" | undefined;
93773
94076
  } | undefined;
93774
94077
  vonageCredentials?: {
93775
94078
  apiKey: string;
@@ -93794,6 +94097,7 @@ export declare const mainChatContract: {
93794
94097
  channelId?: string | undefined;
93795
94098
  status?: "active" | "pending" | undefined;
93796
94099
  apiKey?: string | undefined;
94100
+ tier?: "basic" | "regular" | "premium" | undefined;
93797
94101
  } | undefined;
93798
94102
  vonageCredentials?: {
93799
94103
  apiKey: string;
@@ -94052,6 +94356,7 @@ export declare const mainChatContract: {
94052
94356
  channelId?: string | undefined;
94053
94357
  status?: "active" | "pending" | undefined;
94054
94358
  apiKey?: string | undefined;
94359
+ tier?: "basic" | "regular" | "premium" | undefined;
94055
94360
  } | undefined;
94056
94361
  vonageCredentials?: {
94057
94362
  apiKey: string;
@@ -94141,6 +94446,7 @@ export declare const mainChatContract: {
94141
94446
  channelId?: string | undefined;
94142
94447
  status?: "active" | "pending" | undefined;
94143
94448
  apiKey?: string | undefined;
94449
+ tier?: "basic" | "regular" | "premium" | undefined;
94144
94450
  } | undefined;
94145
94451
  vonageCredentials?: {
94146
94452
  apiKey: string;
@@ -94678,6 +94984,7 @@ export declare const mainChatContract: {
94678
94984
  channelId?: string | undefined;
94679
94985
  status?: "active" | "pending" | undefined;
94680
94986
  apiKey?: string | undefined;
94987
+ tier?: "basic" | "regular" | "premium" | undefined;
94681
94988
  } | undefined;
94682
94989
  vonageCredentials?: {
94683
94990
  apiKey: string;
@@ -95078,6 +95385,7 @@ export declare const mainChatContract: {
95078
95385
  channelId?: string | undefined;
95079
95386
  status?: "active" | "pending" | undefined;
95080
95387
  apiKey?: string | undefined;
95388
+ tier?: "basic" | "regular" | "premium" | undefined;
95081
95389
  } | undefined;
95082
95390
  vonageCredentials?: {
95083
95391
  apiKey: string;
@@ -95480,6 +95788,7 @@ export declare const mainChatContract: {
95480
95788
  channelId?: string | undefined;
95481
95789
  status?: "active" | "pending" | undefined;
95482
95790
  apiKey?: string | undefined;
95791
+ tier?: "basic" | "regular" | "premium" | undefined;
95483
95792
  } | undefined;
95484
95793
  vonageCredentials?: {
95485
95794
  apiKey: string;
@@ -95883,6 +96192,7 @@ export declare const mainChatContract: {
95883
96192
  channelId?: string | undefined;
95884
96193
  status?: "active" | "pending" | undefined;
95885
96194
  apiKey?: string | undefined;
96195
+ tier?: "basic" | "regular" | "premium" | undefined;
95886
96196
  } | undefined;
95887
96197
  vonageCredentials?: {
95888
96198
  apiKey: string;
@@ -97833,6 +98143,7 @@ export declare const initiateMessageContract: {
97833
98143
  channelId: z.ZodOptional<z.ZodString>;
97834
98144
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
97835
98145
  apiKey: z.ZodOptional<z.ZodString>;
98146
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
97836
98147
  }, "strip", z.ZodTypeAny, {
97837
98148
  email: string;
97838
98149
  wabaExternalId: string;
@@ -97842,6 +98153,7 @@ export declare const initiateMessageContract: {
97842
98153
  channelId?: string | undefined;
97843
98154
  status?: "active" | "pending" | undefined;
97844
98155
  apiKey?: string | undefined;
98156
+ tier?: "basic" | "regular" | "premium" | undefined;
97845
98157
  }, {
97846
98158
  email: string;
97847
98159
  wabaExternalId: string;
@@ -97851,6 +98163,7 @@ export declare const initiateMessageContract: {
97851
98163
  channelId?: string | undefined;
97852
98164
  status?: "active" | "pending" | undefined;
97853
98165
  apiKey?: string | undefined;
98166
+ tier?: "basic" | "regular" | "premium" | undefined;
97854
98167
  }>>;
97855
98168
  vonageCredentials: z.ZodOptional<z.ZodObject<{
97856
98169
  mobileNumber: z.ZodString;
@@ -97883,6 +98196,7 @@ export declare const initiateMessageContract: {
97883
98196
  channelId?: string | undefined;
97884
98197
  status?: "active" | "pending" | undefined;
97885
98198
  apiKey?: string | undefined;
98199
+ tier?: "basic" | "regular" | "premium" | undefined;
97886
98200
  } | undefined;
97887
98201
  vonageCredentials?: {
97888
98202
  apiKey: string;
@@ -97907,6 +98221,7 @@ export declare const initiateMessageContract: {
97907
98221
  channelId?: string | undefined;
97908
98222
  status?: "active" | "pending" | undefined;
97909
98223
  apiKey?: string | undefined;
98224
+ tier?: "basic" | "regular" | "premium" | undefined;
97910
98225
  } | undefined;
97911
98226
  vonageCredentials?: {
97912
98227
  apiKey: string;
@@ -98165,6 +98480,7 @@ export declare const initiateMessageContract: {
98165
98480
  channelId?: string | undefined;
98166
98481
  status?: "active" | "pending" | undefined;
98167
98482
  apiKey?: string | undefined;
98483
+ tier?: "basic" | "regular" | "premium" | undefined;
98168
98484
  } | undefined;
98169
98485
  vonageCredentials?: {
98170
98486
  apiKey: string;
@@ -98254,6 +98570,7 @@ export declare const initiateMessageContract: {
98254
98570
  channelId?: string | undefined;
98255
98571
  status?: "active" | "pending" | undefined;
98256
98572
  apiKey?: string | undefined;
98573
+ tier?: "basic" | "regular" | "premium" | undefined;
98257
98574
  } | undefined;
98258
98575
  vonageCredentials?: {
98259
98576
  apiKey: string;
@@ -98791,6 +99108,7 @@ export declare const initiateMessageContract: {
98791
99108
  channelId?: string | undefined;
98792
99109
  status?: "active" | "pending" | undefined;
98793
99110
  apiKey?: string | undefined;
99111
+ tier?: "basic" | "regular" | "premium" | undefined;
98794
99112
  } | undefined;
98795
99113
  vonageCredentials?: {
98796
99114
  apiKey: string;
@@ -99191,6 +99509,7 @@ export declare const initiateMessageContract: {
99191
99509
  channelId?: string | undefined;
99192
99510
  status?: "active" | "pending" | undefined;
99193
99511
  apiKey?: string | undefined;
99512
+ tier?: "basic" | "regular" | "premium" | undefined;
99194
99513
  } | undefined;
99195
99514
  vonageCredentials?: {
99196
99515
  apiKey: string;
@@ -101364,6 +101683,7 @@ export declare const initiateMessageContract: {
101364
101683
  channelId?: string | undefined;
101365
101684
  status?: "active" | "pending" | undefined;
101366
101685
  apiKey?: string | undefined;
101686
+ tier?: "basic" | "regular" | "premium" | undefined;
101367
101687
  } | undefined;
101368
101688
  vonageCredentials?: {
101369
101689
  apiKey: string;
@@ -102101,6 +102421,7 @@ export declare const initiateMessageContract: {
102101
102421
  channelId?: string | undefined;
102102
102422
  status?: "active" | "pending" | undefined;
102103
102423
  apiKey?: string | undefined;
102424
+ tier?: "basic" | "regular" | "premium" | undefined;
102104
102425
  } | undefined;
102105
102426
  vonageCredentials?: {
102106
102427
  apiKey: string;
@@ -102840,6 +103161,7 @@ export declare const initiateMessageContract: {
102840
103161
  channelId?: string | undefined;
102841
103162
  status?: "active" | "pending" | undefined;
102842
103163
  apiKey?: string | undefined;
103164
+ tier?: "basic" | "regular" | "premium" | undefined;
102843
103165
  } | undefined;
102844
103166
  vonageCredentials?: {
102845
103167
  apiKey: string;
@@ -103580,6 +103902,7 @@ export declare const initiateMessageContract: {
103580
103902
  channelId?: string | undefined;
103581
103903
  status?: "active" | "pending" | undefined;
103582
103904
  apiKey?: string | undefined;
103905
+ tier?: "basic" | "regular" | "premium" | undefined;
103583
103906
  } | undefined;
103584
103907
  vonageCredentials?: {
103585
103908
  apiKey: string;
@@ -106589,6 +106912,7 @@ export declare const mainChatMessageContract: {
106589
106912
  channelId: z.ZodOptional<z.ZodString>;
106590
106913
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
106591
106914
  apiKey: z.ZodOptional<z.ZodString>;
106915
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
106592
106916
  }, "strip", z.ZodTypeAny, {
106593
106917
  email: string;
106594
106918
  wabaExternalId: string;
@@ -106598,6 +106922,7 @@ export declare const mainChatMessageContract: {
106598
106922
  channelId?: string | undefined;
106599
106923
  status?: "active" | "pending" | undefined;
106600
106924
  apiKey?: string | undefined;
106925
+ tier?: "basic" | "regular" | "premium" | undefined;
106601
106926
  }, {
106602
106927
  email: string;
106603
106928
  wabaExternalId: string;
@@ -106607,6 +106932,7 @@ export declare const mainChatMessageContract: {
106607
106932
  channelId?: string | undefined;
106608
106933
  status?: "active" | "pending" | undefined;
106609
106934
  apiKey?: string | undefined;
106935
+ tier?: "basic" | "regular" | "premium" | undefined;
106610
106936
  }>>;
106611
106937
  vonageCredentials: z.ZodOptional<z.ZodObject<{
106612
106938
  mobileNumber: z.ZodString;
@@ -106639,6 +106965,7 @@ export declare const mainChatMessageContract: {
106639
106965
  channelId?: string | undefined;
106640
106966
  status?: "active" | "pending" | undefined;
106641
106967
  apiKey?: string | undefined;
106968
+ tier?: "basic" | "regular" | "premium" | undefined;
106642
106969
  } | undefined;
106643
106970
  vonageCredentials?: {
106644
106971
  apiKey: string;
@@ -106663,6 +106990,7 @@ export declare const mainChatMessageContract: {
106663
106990
  channelId?: string | undefined;
106664
106991
  status?: "active" | "pending" | undefined;
106665
106992
  apiKey?: string | undefined;
106993
+ tier?: "basic" | "regular" | "premium" | undefined;
106666
106994
  } | undefined;
106667
106995
  vonageCredentials?: {
106668
106996
  apiKey: string;
@@ -106921,6 +107249,7 @@ export declare const mainChatMessageContract: {
106921
107249
  channelId?: string | undefined;
106922
107250
  status?: "active" | "pending" | undefined;
106923
107251
  apiKey?: string | undefined;
107252
+ tier?: "basic" | "regular" | "premium" | undefined;
106924
107253
  } | undefined;
106925
107254
  vonageCredentials?: {
106926
107255
  apiKey: string;
@@ -107010,6 +107339,7 @@ export declare const mainChatMessageContract: {
107010
107339
  channelId?: string | undefined;
107011
107340
  status?: "active" | "pending" | undefined;
107012
107341
  apiKey?: string | undefined;
107342
+ tier?: "basic" | "regular" | "premium" | undefined;
107013
107343
  } | undefined;
107014
107344
  vonageCredentials?: {
107015
107345
  apiKey: string;
@@ -107547,6 +107877,7 @@ export declare const mainChatMessageContract: {
107547
107877
  channelId?: string | undefined;
107548
107878
  status?: "active" | "pending" | undefined;
107549
107879
  apiKey?: string | undefined;
107880
+ tier?: "basic" | "regular" | "premium" | undefined;
107550
107881
  } | undefined;
107551
107882
  vonageCredentials?: {
107552
107883
  apiKey: string;
@@ -107947,6 +108278,7 @@ export declare const mainChatMessageContract: {
107947
108278
  channelId?: string | undefined;
107948
108279
  status?: "active" | "pending" | undefined;
107949
108280
  apiKey?: string | undefined;
108281
+ tier?: "basic" | "regular" | "premium" | undefined;
107950
108282
  } | undefined;
107951
108283
  vonageCredentials?: {
107952
108284
  apiKey: string;
@@ -111063,6 +111395,7 @@ export declare const mainChatMessageContract: {
111063
111395
  channelId: z.ZodOptional<z.ZodString>;
111064
111396
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
111065
111397
  apiKey: z.ZodOptional<z.ZodString>;
111398
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
111066
111399
  }, "strip", z.ZodTypeAny, {
111067
111400
  email: string;
111068
111401
  wabaExternalId: string;
@@ -111072,6 +111405,7 @@ export declare const mainChatMessageContract: {
111072
111405
  channelId?: string | undefined;
111073
111406
  status?: "active" | "pending" | undefined;
111074
111407
  apiKey?: string | undefined;
111408
+ tier?: "basic" | "regular" | "premium" | undefined;
111075
111409
  }, {
111076
111410
  email: string;
111077
111411
  wabaExternalId: string;
@@ -111081,6 +111415,7 @@ export declare const mainChatMessageContract: {
111081
111415
  channelId?: string | undefined;
111082
111416
  status?: "active" | "pending" | undefined;
111083
111417
  apiKey?: string | undefined;
111418
+ tier?: "basic" | "regular" | "premium" | undefined;
111084
111419
  }>>;
111085
111420
  vonageCredentials: z.ZodOptional<z.ZodObject<{
111086
111421
  mobileNumber: z.ZodString;
@@ -111113,6 +111448,7 @@ export declare const mainChatMessageContract: {
111113
111448
  channelId?: string | undefined;
111114
111449
  status?: "active" | "pending" | undefined;
111115
111450
  apiKey?: string | undefined;
111451
+ tier?: "basic" | "regular" | "premium" | undefined;
111116
111452
  } | undefined;
111117
111453
  vonageCredentials?: {
111118
111454
  apiKey: string;
@@ -111137,6 +111473,7 @@ export declare const mainChatMessageContract: {
111137
111473
  channelId?: string | undefined;
111138
111474
  status?: "active" | "pending" | undefined;
111139
111475
  apiKey?: string | undefined;
111476
+ tier?: "basic" | "regular" | "premium" | undefined;
111140
111477
  } | undefined;
111141
111478
  vonageCredentials?: {
111142
111479
  apiKey: string;
@@ -111395,6 +111732,7 @@ export declare const mainChatMessageContract: {
111395
111732
  channelId?: string | undefined;
111396
111733
  status?: "active" | "pending" | undefined;
111397
111734
  apiKey?: string | undefined;
111735
+ tier?: "basic" | "regular" | "premium" | undefined;
111398
111736
  } | undefined;
111399
111737
  vonageCredentials?: {
111400
111738
  apiKey: string;
@@ -111484,6 +111822,7 @@ export declare const mainChatMessageContract: {
111484
111822
  channelId?: string | undefined;
111485
111823
  status?: "active" | "pending" | undefined;
111486
111824
  apiKey?: string | undefined;
111825
+ tier?: "basic" | "regular" | "premium" | undefined;
111487
111826
  } | undefined;
111488
111827
  vonageCredentials?: {
111489
111828
  apiKey: string;
@@ -112021,6 +112360,7 @@ export declare const mainChatMessageContract: {
112021
112360
  channelId?: string | undefined;
112022
112361
  status?: "active" | "pending" | undefined;
112023
112362
  apiKey?: string | undefined;
112363
+ tier?: "basic" | "regular" | "premium" | undefined;
112024
112364
  } | undefined;
112025
112365
  vonageCredentials?: {
112026
112366
  apiKey: string;
@@ -112421,6 +112761,7 @@ export declare const mainChatMessageContract: {
112421
112761
  channelId?: string | undefined;
112422
112762
  status?: "active" | "pending" | undefined;
112423
112763
  apiKey?: string | undefined;
112764
+ tier?: "basic" | "regular" | "premium" | undefined;
112424
112765
  } | undefined;
112425
112766
  vonageCredentials?: {
112426
112767
  apiKey: string;
@@ -114594,6 +114935,7 @@ export declare const mainChatMessageContract: {
114594
114935
  channelId?: string | undefined;
114595
114936
  status?: "active" | "pending" | undefined;
114596
114937
  apiKey?: string | undefined;
114938
+ tier?: "basic" | "regular" | "premium" | undefined;
114597
114939
  } | undefined;
114598
114940
  vonageCredentials?: {
114599
114941
  apiKey: string;
@@ -115331,6 +115673,7 @@ export declare const mainChatMessageContract: {
115331
115673
  channelId?: string | undefined;
115332
115674
  status?: "active" | "pending" | undefined;
115333
115675
  apiKey?: string | undefined;
115676
+ tier?: "basic" | "regular" | "premium" | undefined;
115334
115677
  } | undefined;
115335
115678
  vonageCredentials?: {
115336
115679
  apiKey: string;
@@ -116069,6 +116412,7 @@ export declare const mainChatMessageContract: {
116069
116412
  channelId?: string | undefined;
116070
116413
  status?: "active" | "pending" | undefined;
116071
116414
  apiKey?: string | undefined;
116415
+ tier?: "basic" | "regular" | "premium" | undefined;
116072
116416
  } | undefined;
116073
116417
  vonageCredentials?: {
116074
116418
  apiKey: string;
@@ -116806,6 +117150,7 @@ export declare const mainChatMessageContract: {
116806
117150
  channelId?: string | undefined;
116807
117151
  status?: "active" | "pending" | undefined;
116808
117152
  apiKey?: string | undefined;
117153
+ tier?: "basic" | "regular" | "premium" | undefined;
116809
117154
  } | undefined;
116810
117155
  vonageCredentials?: {
116811
117156
  apiKey: string;
@@ -117544,6 +117889,7 @@ export declare const mainChatMessageContract: {
117544
117889
  channelId?: string | undefined;
117545
117890
  status?: "active" | "pending" | undefined;
117546
117891
  apiKey?: string | undefined;
117892
+ tier?: "basic" | "regular" | "premium" | undefined;
117547
117893
  } | undefined;
117548
117894
  vonageCredentials?: {
117549
117895
  apiKey: string;
@@ -118281,6 +118627,7 @@ export declare const mainChatMessageContract: {
118281
118627
  channelId?: string | undefined;
118282
118628
  status?: "active" | "pending" | undefined;
118283
118629
  apiKey?: string | undefined;
118630
+ tier?: "basic" | "regular" | "premium" | undefined;
118284
118631
  } | undefined;
118285
118632
  vonageCredentials?: {
118286
118633
  apiKey: string;
@@ -119021,6 +119368,7 @@ export declare const mainChatMessageContract: {
119021
119368
  channelId?: string | undefined;
119022
119369
  status?: "active" | "pending" | undefined;
119023
119370
  apiKey?: string | undefined;
119371
+ tier?: "basic" | "regular" | "premium" | undefined;
119024
119372
  } | undefined;
119025
119373
  vonageCredentials?: {
119026
119374
  apiKey: string;
@@ -119758,6 +120106,7 @@ export declare const mainChatMessageContract: {
119758
120106
  channelId?: string | undefined;
119759
120107
  status?: "active" | "pending" | undefined;
119760
120108
  apiKey?: string | undefined;
120109
+ tier?: "basic" | "regular" | "premium" | undefined;
119761
120110
  } | undefined;
119762
120111
  vonageCredentials?: {
119763
120112
  apiKey: string;
@@ -120499,6 +120848,7 @@ export declare const mainChatMessageContract: {
120499
120848
  channelId?: string | undefined;
120500
120849
  status?: "active" | "pending" | undefined;
120501
120850
  apiKey?: string | undefined;
120851
+ tier?: "basic" | "regular" | "premium" | undefined;
120502
120852
  } | undefined;
120503
120853
  vonageCredentials?: {
120504
120854
  apiKey: string;
@@ -121236,6 +121586,7 @@ export declare const mainChatMessageContract: {
121236
121586
  channelId?: string | undefined;
121237
121587
  status?: "active" | "pending" | undefined;
121238
121588
  apiKey?: string | undefined;
121589
+ tier?: "basic" | "regular" | "premium" | undefined;
121239
121590
  } | undefined;
121240
121591
  vonageCredentials?: {
121241
121592
  apiKey: string;
@@ -121933,6 +122284,7 @@ export declare const mainChatMessageContract: {
121933
122284
  channelId: z.ZodOptional<z.ZodString>;
121934
122285
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
121935
122286
  apiKey: z.ZodOptional<z.ZodString>;
122287
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
121936
122288
  }, "strip", z.ZodTypeAny, {
121937
122289
  email: string;
121938
122290
  wabaExternalId: string;
@@ -121942,6 +122294,7 @@ export declare const mainChatMessageContract: {
121942
122294
  channelId?: string | undefined;
121943
122295
  status?: "active" | "pending" | undefined;
121944
122296
  apiKey?: string | undefined;
122297
+ tier?: "basic" | "regular" | "premium" | undefined;
121945
122298
  }, {
121946
122299
  email: string;
121947
122300
  wabaExternalId: string;
@@ -121951,6 +122304,7 @@ export declare const mainChatMessageContract: {
121951
122304
  channelId?: string | undefined;
121952
122305
  status?: "active" | "pending" | undefined;
121953
122306
  apiKey?: string | undefined;
122307
+ tier?: "basic" | "regular" | "premium" | undefined;
121954
122308
  }>>;
121955
122309
  vonageCredentials: z.ZodOptional<z.ZodObject<{
121956
122310
  mobileNumber: z.ZodString;
@@ -121983,6 +122337,7 @@ export declare const mainChatMessageContract: {
121983
122337
  channelId?: string | undefined;
121984
122338
  status?: "active" | "pending" | undefined;
121985
122339
  apiKey?: string | undefined;
122340
+ tier?: "basic" | "regular" | "premium" | undefined;
121986
122341
  } | undefined;
121987
122342
  vonageCredentials?: {
121988
122343
  apiKey: string;
@@ -122007,6 +122362,7 @@ export declare const mainChatMessageContract: {
122007
122362
  channelId?: string | undefined;
122008
122363
  status?: "active" | "pending" | undefined;
122009
122364
  apiKey?: string | undefined;
122365
+ tier?: "basic" | "regular" | "premium" | undefined;
122010
122366
  } | undefined;
122011
122367
  vonageCredentials?: {
122012
122368
  apiKey: string;
@@ -122061,6 +122417,7 @@ export declare const mainChatMessageContract: {
122061
122417
  channelId?: string | undefined;
122062
122418
  status?: "active" | "pending" | undefined;
122063
122419
  apiKey?: string | undefined;
122420
+ tier?: "basic" | "regular" | "premium" | undefined;
122064
122421
  } | undefined;
122065
122422
  vonageCredentials?: {
122066
122423
  apiKey: string;
@@ -122103,6 +122460,7 @@ export declare const mainChatMessageContract: {
122103
122460
  channelId?: string | undefined;
122104
122461
  status?: "active" | "pending" | undefined;
122105
122462
  apiKey?: string | undefined;
122463
+ tier?: "basic" | "regular" | "premium" | undefined;
122106
122464
  } | undefined;
122107
122465
  vonageCredentials?: {
122108
122466
  apiKey: string;
@@ -122148,6 +122506,7 @@ export declare const mainChatMessageContract: {
122148
122506
  channelId?: string | undefined;
122149
122507
  status?: "active" | "pending" | undefined;
122150
122508
  apiKey?: string | undefined;
122509
+ tier?: "basic" | "regular" | "premium" | undefined;
122151
122510
  } | undefined;
122152
122511
  vonageCredentials?: {
122153
122512
  apiKey: string;
@@ -122193,6 +122552,7 @@ export declare const mainChatMessageContract: {
122193
122552
  channelId?: string | undefined;
122194
122553
  status?: "active" | "pending" | undefined;
122195
122554
  apiKey?: string | undefined;
122555
+ tier?: "basic" | "regular" | "premium" | undefined;
122196
122556
  } | undefined;
122197
122557
  vonageCredentials?: {
122198
122558
  apiKey: string;
@@ -122390,6 +122750,7 @@ export declare const mainChatMessageContract: {
122390
122750
  channelId?: string | undefined;
122391
122751
  status?: "active" | "pending" | undefined;
122392
122752
  apiKey?: string | undefined;
122753
+ tier?: "basic" | "regular" | "premium" | undefined;
122393
122754
  } | undefined;
122394
122755
  vonageCredentials?: {
122395
122756
  apiKey: string;
@@ -122469,6 +122830,7 @@ export declare const mainChatMessageContract: {
122469
122830
  channelId?: string | undefined;
122470
122831
  status?: "active" | "pending" | undefined;
122471
122832
  apiKey?: string | undefined;
122833
+ tier?: "basic" | "regular" | "premium" | undefined;
122472
122834
  } | undefined;
122473
122835
  vonageCredentials?: {
122474
122836
  apiKey: string;
@@ -122550,6 +122912,7 @@ export declare const mainChatMessageContract: {
122550
122912
  channelId?: string | undefined;
122551
122913
  status?: "active" | "pending" | undefined;
122552
122914
  apiKey?: string | undefined;
122915
+ tier?: "basic" | "regular" | "premium" | undefined;
122553
122916
  } | undefined;
122554
122917
  vonageCredentials?: {
122555
122918
  apiKey: string;
@@ -122632,6 +122995,7 @@ export declare const mainChatMessageContract: {
122632
122995
  channelId?: string | undefined;
122633
122996
  status?: "active" | "pending" | undefined;
122634
122997
  apiKey?: string | undefined;
122998
+ tier?: "basic" | "regular" | "premium" | undefined;
122635
122999
  } | undefined;
122636
123000
  vonageCredentials?: {
122637
123001
  apiKey: string;
@@ -124212,6 +124576,7 @@ export declare const mainChatMessageContract: {
124212
124576
  channelId: z.ZodOptional<z.ZodString>;
124213
124577
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
124214
124578
  apiKey: z.ZodOptional<z.ZodString>;
124579
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
124215
124580
  }, "strip", z.ZodTypeAny, {
124216
124581
  email: string;
124217
124582
  wabaExternalId: string;
@@ -124221,6 +124586,7 @@ export declare const mainChatMessageContract: {
124221
124586
  channelId?: string | undefined;
124222
124587
  status?: "active" | "pending" | undefined;
124223
124588
  apiKey?: string | undefined;
124589
+ tier?: "basic" | "regular" | "premium" | undefined;
124224
124590
  }, {
124225
124591
  email: string;
124226
124592
  wabaExternalId: string;
@@ -124230,6 +124596,7 @@ export declare const mainChatMessageContract: {
124230
124596
  channelId?: string | undefined;
124231
124597
  status?: "active" | "pending" | undefined;
124232
124598
  apiKey?: string | undefined;
124599
+ tier?: "basic" | "regular" | "premium" | undefined;
124233
124600
  }>>;
124234
124601
  vonageCredentials: z.ZodOptional<z.ZodObject<{
124235
124602
  mobileNumber: z.ZodString;
@@ -124262,6 +124629,7 @@ export declare const mainChatMessageContract: {
124262
124629
  channelId?: string | undefined;
124263
124630
  status?: "active" | "pending" | undefined;
124264
124631
  apiKey?: string | undefined;
124632
+ tier?: "basic" | "regular" | "premium" | undefined;
124265
124633
  } | undefined;
124266
124634
  vonageCredentials?: {
124267
124635
  apiKey: string;
@@ -124286,6 +124654,7 @@ export declare const mainChatMessageContract: {
124286
124654
  channelId?: string | undefined;
124287
124655
  status?: "active" | "pending" | undefined;
124288
124656
  apiKey?: string | undefined;
124657
+ tier?: "basic" | "regular" | "premium" | undefined;
124289
124658
  } | undefined;
124290
124659
  vonageCredentials?: {
124291
124660
  apiKey: string;
@@ -124544,6 +124913,7 @@ export declare const mainChatMessageContract: {
124544
124913
  channelId?: string | undefined;
124545
124914
  status?: "active" | "pending" | undefined;
124546
124915
  apiKey?: string | undefined;
124916
+ tier?: "basic" | "regular" | "premium" | undefined;
124547
124917
  } | undefined;
124548
124918
  vonageCredentials?: {
124549
124919
  apiKey: string;
@@ -124633,6 +125003,7 @@ export declare const mainChatMessageContract: {
124633
125003
  channelId?: string | undefined;
124634
125004
  status?: "active" | "pending" | undefined;
124635
125005
  apiKey?: string | undefined;
125006
+ tier?: "basic" | "regular" | "premium" | undefined;
124636
125007
  } | undefined;
124637
125008
  vonageCredentials?: {
124638
125009
  apiKey: string;
@@ -125170,6 +125541,7 @@ export declare const mainChatMessageContract: {
125170
125541
  channelId?: string | undefined;
125171
125542
  status?: "active" | "pending" | undefined;
125172
125543
  apiKey?: string | undefined;
125544
+ tier?: "basic" | "regular" | "premium" | undefined;
125173
125545
  } | undefined;
125174
125546
  vonageCredentials?: {
125175
125547
  apiKey: string;
@@ -125570,6 +125942,7 @@ export declare const mainChatMessageContract: {
125570
125942
  channelId?: string | undefined;
125571
125943
  status?: "active" | "pending" | undefined;
125572
125944
  apiKey?: string | undefined;
125945
+ tier?: "basic" | "regular" | "premium" | undefined;
125573
125946
  } | undefined;
125574
125947
  vonageCredentials?: {
125575
125948
  apiKey: string;
@@ -127743,6 +128116,7 @@ export declare const mainChatMessageContract: {
127743
128116
  channelId?: string | undefined;
127744
128117
  status?: "active" | "pending" | undefined;
127745
128118
  apiKey?: string | undefined;
128119
+ tier?: "basic" | "regular" | "premium" | undefined;
127746
128120
  } | undefined;
127747
128121
  vonageCredentials?: {
127748
128122
  apiKey: string;
@@ -128480,6 +128854,7 @@ export declare const mainChatMessageContract: {
128480
128854
  channelId?: string | undefined;
128481
128855
  status?: "active" | "pending" | undefined;
128482
128856
  apiKey?: string | undefined;
128857
+ tier?: "basic" | "regular" | "premium" | undefined;
128483
128858
  } | undefined;
128484
128859
  vonageCredentials?: {
128485
128860
  apiKey: string;
@@ -129219,6 +129594,7 @@ export declare const mainChatMessageContract: {
129219
129594
  channelId?: string | undefined;
129220
129595
  status?: "active" | "pending" | undefined;
129221
129596
  apiKey?: string | undefined;
129597
+ tier?: "basic" | "regular" | "premium" | undefined;
129222
129598
  } | undefined;
129223
129599
  vonageCredentials?: {
129224
129600
  apiKey: string;
@@ -129959,6 +130335,7 @@ export declare const mainChatMessageContract: {
129959
130335
  channelId?: string | undefined;
129960
130336
  status?: "active" | "pending" | undefined;
129961
130337
  apiKey?: string | undefined;
130338
+ tier?: "basic" | "regular" | "premium" | undefined;
129962
130339
  } | undefined;
129963
130340
  vonageCredentials?: {
129964
130341
  apiKey: string;