@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
@@ -127,6 +127,7 @@ export declare const lineContract: {
127
127
  channelId: z.ZodOptional<z.ZodString>;
128
128
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
129
129
  apiKey: z.ZodOptional<z.ZodString>;
130
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
130
131
  }, "strip", z.ZodTypeAny, {
131
132
  email: string;
132
133
  wabaExternalId: string;
@@ -136,6 +137,7 @@ export declare const lineContract: {
136
137
  channelId?: string | undefined;
137
138
  status?: "active" | "pending" | undefined;
138
139
  apiKey?: string | undefined;
140
+ tier?: "basic" | "regular" | "premium" | undefined;
139
141
  }, {
140
142
  email: string;
141
143
  wabaExternalId: string;
@@ -145,6 +147,7 @@ export declare const lineContract: {
145
147
  channelId?: string | undefined;
146
148
  status?: "active" | "pending" | undefined;
147
149
  apiKey?: string | undefined;
150
+ tier?: "basic" | "regular" | "premium" | undefined;
148
151
  }>>;
149
152
  vonageCredentials: z.ZodOptional<z.ZodObject<{
150
153
  mobileNumber: z.ZodString;
@@ -177,6 +180,7 @@ export declare const lineContract: {
177
180
  channelId?: string | undefined;
178
181
  status?: "active" | "pending" | undefined;
179
182
  apiKey?: string | undefined;
183
+ tier?: "basic" | "regular" | "premium" | undefined;
180
184
  } | undefined;
181
185
  vonageCredentials?: {
182
186
  apiKey: string;
@@ -201,6 +205,7 @@ export declare const lineContract: {
201
205
  channelId?: string | undefined;
202
206
  status?: "active" | "pending" | undefined;
203
207
  apiKey?: string | undefined;
208
+ tier?: "basic" | "regular" | "premium" | undefined;
204
209
  } | undefined;
205
210
  vonageCredentials?: {
206
211
  apiKey: string;
@@ -255,6 +260,7 @@ export declare const lineContract: {
255
260
  channelId?: string | undefined;
256
261
  status?: "active" | "pending" | undefined;
257
262
  apiKey?: string | undefined;
263
+ tier?: "basic" | "regular" | "premium" | undefined;
258
264
  } | undefined;
259
265
  vonageCredentials?: {
260
266
  apiKey: string;
@@ -297,6 +303,7 @@ export declare const lineContract: {
297
303
  channelId?: string | undefined;
298
304
  status?: "active" | "pending" | undefined;
299
305
  apiKey?: string | undefined;
306
+ tier?: "basic" | "regular" | "premium" | undefined;
300
307
  } | undefined;
301
308
  vonageCredentials?: {
302
309
  apiKey: string;
@@ -342,6 +349,7 @@ export declare const lineContract: {
342
349
  channelId?: string | undefined;
343
350
  status?: "active" | "pending" | undefined;
344
351
  apiKey?: string | undefined;
352
+ tier?: "basic" | "regular" | "premium" | undefined;
345
353
  } | undefined;
346
354
  vonageCredentials?: {
347
355
  apiKey: string;
@@ -416,6 +424,7 @@ export declare const lineContract: {
416
424
  channelId?: string | undefined;
417
425
  status?: "active" | "pending" | undefined;
418
426
  apiKey?: string | undefined;
427
+ tier?: "basic" | "regular" | "premium" | undefined;
419
428
  } | undefined;
420
429
  vonageCredentials?: {
421
430
  apiKey: string;
@@ -618,6 +627,7 @@ export declare const lineContract: {
618
627
  channelId?: string | undefined;
619
628
  status?: "active" | "pending" | undefined;
620
629
  apiKey?: string | undefined;
630
+ tier?: "basic" | "regular" | "premium" | undefined;
621
631
  } | undefined;
622
632
  vonageCredentials?: {
623
633
  apiKey: string;
@@ -723,6 +733,7 @@ export declare const lineContract: {
723
733
  channelId?: string | undefined;
724
734
  status?: "active" | "pending" | undefined;
725
735
  apiKey?: string | undefined;
736
+ tier?: "basic" | "regular" | "premium" | undefined;
726
737
  } | undefined;
727
738
  vonageCredentials?: {
728
739
  apiKey: string;
@@ -883,6 +894,7 @@ export declare const lineContract: {
883
894
  channelId: z.ZodOptional<z.ZodString>;
884
895
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
885
896
  apiKey: z.ZodOptional<z.ZodString>;
897
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
886
898
  }, "strip", z.ZodTypeAny, {
887
899
  email: string;
888
900
  wabaExternalId: string;
@@ -892,6 +904,7 @@ export declare const lineContract: {
892
904
  channelId?: string | undefined;
893
905
  status?: "active" | "pending" | undefined;
894
906
  apiKey?: string | undefined;
907
+ tier?: "basic" | "regular" | "premium" | undefined;
895
908
  }, {
896
909
  email: string;
897
910
  wabaExternalId: string;
@@ -901,6 +914,7 @@ export declare const lineContract: {
901
914
  channelId?: string | undefined;
902
915
  status?: "active" | "pending" | undefined;
903
916
  apiKey?: string | undefined;
917
+ tier?: "basic" | "regular" | "premium" | undefined;
904
918
  }>>;
905
919
  vonageCredentials: z.ZodOptional<z.ZodObject<{
906
920
  mobileNumber: z.ZodString;
@@ -933,6 +947,7 @@ export declare const lineContract: {
933
947
  channelId?: string | undefined;
934
948
  status?: "active" | "pending" | undefined;
935
949
  apiKey?: string | undefined;
950
+ tier?: "basic" | "regular" | "premium" | undefined;
936
951
  } | undefined;
937
952
  vonageCredentials?: {
938
953
  apiKey: string;
@@ -957,6 +972,7 @@ export declare const lineContract: {
957
972
  channelId?: string | undefined;
958
973
  status?: "active" | "pending" | undefined;
959
974
  apiKey?: string | undefined;
975
+ tier?: "basic" | "regular" | "premium" | undefined;
960
976
  } | undefined;
961
977
  vonageCredentials?: {
962
978
  apiKey: string;
@@ -1011,6 +1027,7 @@ export declare const lineContract: {
1011
1027
  channelId?: string | undefined;
1012
1028
  status?: "active" | "pending" | undefined;
1013
1029
  apiKey?: string | undefined;
1030
+ tier?: "basic" | "regular" | "premium" | undefined;
1014
1031
  } | undefined;
1015
1032
  vonageCredentials?: {
1016
1033
  apiKey: string;
@@ -1053,6 +1070,7 @@ export declare const lineContract: {
1053
1070
  channelId?: string | undefined;
1054
1071
  status?: "active" | "pending" | undefined;
1055
1072
  apiKey?: string | undefined;
1073
+ tier?: "basic" | "regular" | "premium" | undefined;
1056
1074
  } | undefined;
1057
1075
  vonageCredentials?: {
1058
1076
  apiKey: string;
@@ -1097,6 +1115,7 @@ export declare const lineContract: {
1097
1115
  channelId?: string | undefined;
1098
1116
  status?: "active" | "pending" | undefined;
1099
1117
  apiKey?: string | undefined;
1118
+ tier?: "basic" | "regular" | "premium" | undefined;
1100
1119
  } | undefined;
1101
1120
  vonageCredentials?: {
1102
1121
  apiKey: string;
@@ -1142,6 +1161,7 @@ export declare const lineContract: {
1142
1161
  channelId?: string | undefined;
1143
1162
  status?: "active" | "pending" | undefined;
1144
1163
  apiKey?: string | undefined;
1164
+ tier?: "basic" | "regular" | "premium" | undefined;
1145
1165
  } | undefined;
1146
1166
  vonageCredentials?: {
1147
1167
  apiKey: string;
@@ -1336,6 +1356,7 @@ export declare const lineContract: {
1336
1356
  channelId: z.ZodOptional<z.ZodString>;
1337
1357
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1338
1358
  apiKey: z.ZodOptional<z.ZodString>;
1359
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1339
1360
  }, "strip", z.ZodTypeAny, {
1340
1361
  email: string;
1341
1362
  wabaExternalId: string;
@@ -1345,6 +1366,7 @@ export declare const lineContract: {
1345
1366
  channelId?: string | undefined;
1346
1367
  status?: "active" | "pending" | undefined;
1347
1368
  apiKey?: string | undefined;
1369
+ tier?: "basic" | "regular" | "premium" | undefined;
1348
1370
  }, {
1349
1371
  email: string;
1350
1372
  wabaExternalId: string;
@@ -1354,6 +1376,7 @@ export declare const lineContract: {
1354
1376
  channelId?: string | undefined;
1355
1377
  status?: "active" | "pending" | undefined;
1356
1378
  apiKey?: string | undefined;
1379
+ tier?: "basic" | "regular" | "premium" | undefined;
1357
1380
  }>>;
1358
1381
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1359
1382
  mobileNumber: z.ZodString;
@@ -1386,6 +1409,7 @@ export declare const lineContract: {
1386
1409
  channelId?: string | undefined;
1387
1410
  status?: "active" | "pending" | undefined;
1388
1411
  apiKey?: string | undefined;
1412
+ tier?: "basic" | "regular" | "premium" | undefined;
1389
1413
  } | undefined;
1390
1414
  vonageCredentials?: {
1391
1415
  apiKey: string;
@@ -1410,6 +1434,7 @@ export declare const lineContract: {
1410
1434
  channelId?: string | undefined;
1411
1435
  status?: "active" | "pending" | undefined;
1412
1436
  apiKey?: string | undefined;
1437
+ tier?: "basic" | "regular" | "premium" | undefined;
1413
1438
  } | undefined;
1414
1439
  vonageCredentials?: {
1415
1440
  apiKey: string;
@@ -1464,6 +1489,7 @@ export declare const lineContract: {
1464
1489
  channelId?: string | undefined;
1465
1490
  status?: "active" | "pending" | undefined;
1466
1491
  apiKey?: string | undefined;
1492
+ tier?: "basic" | "regular" | "premium" | undefined;
1467
1493
  } | undefined;
1468
1494
  vonageCredentials?: {
1469
1495
  apiKey: string;
@@ -1506,6 +1532,7 @@ export declare const lineContract: {
1506
1532
  channelId?: string | undefined;
1507
1533
  status?: "active" | "pending" | undefined;
1508
1534
  apiKey?: string | undefined;
1535
+ tier?: "basic" | "regular" | "premium" | undefined;
1509
1536
  } | undefined;
1510
1537
  vonageCredentials?: {
1511
1538
  apiKey: string;
@@ -1530,7 +1557,7 @@ export declare const lineContract: {
1530
1557
  } | undefined;
1531
1558
  }>;
1532
1559
  messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
1533
- telegramBusinessConnectionId: z.ZodNullable<z.ZodString>;
1560
+ telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1534
1561
  }, "strip", z.ZodTypeAny, {
1535
1562
  id: string;
1536
1563
  channel: {
@@ -1553,6 +1580,7 @@ export declare const lineContract: {
1553
1580
  channelId?: string | undefined;
1554
1581
  status?: "active" | "pending" | undefined;
1555
1582
  apiKey?: string | undefined;
1583
+ tier?: "basic" | "regular" | "premium" | undefined;
1556
1584
  } | undefined;
1557
1585
  vonageCredentials?: {
1558
1586
  apiKey: string;
@@ -1612,11 +1640,11 @@ export declare const lineContract: {
1612
1640
  id: string;
1613
1641
  email: string;
1614
1642
  } | null;
1615
- telegramBusinessConnectionId: string | null;
1616
1643
  lastMessage?: string | undefined;
1617
1644
  handleTime?: number | undefined;
1618
1645
  metadata?: any;
1619
1646
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
1647
+ telegramBusinessConnectionId?: string | null | undefined;
1620
1648
  }, {
1621
1649
  id: string;
1622
1650
  channel: {
@@ -1639,6 +1667,7 @@ export declare const lineContract: {
1639
1667
  channelId?: string | undefined;
1640
1668
  status?: "active" | "pending" | undefined;
1641
1669
  apiKey?: string | undefined;
1670
+ tier?: "basic" | "regular" | "premium" | undefined;
1642
1671
  } | undefined;
1643
1672
  vonageCredentials?: {
1644
1673
  apiKey: string;
@@ -1698,11 +1727,11 @@ export declare const lineContract: {
1698
1727
  id: string;
1699
1728
  email: string;
1700
1729
  } | null;
1701
- telegramBusinessConnectionId: string | null;
1702
1730
  lastMessage?: string | undefined;
1703
1731
  handleTime?: number | undefined;
1704
1732
  metadata?: any;
1705
1733
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
1734
+ telegramBusinessConnectionId?: string | null | undefined;
1706
1735
  }>;
1707
1736
  message: z.ZodObject<{
1708
1737
  id: z.ZodOptional<z.ZodString>;
@@ -1893,6 +1922,7 @@ export declare const lineContract: {
1893
1922
  channelId?: string | undefined;
1894
1923
  status?: "active" | "pending" | undefined;
1895
1924
  apiKey?: string | undefined;
1925
+ tier?: "basic" | "regular" | "premium" | undefined;
1896
1926
  } | undefined;
1897
1927
  vonageCredentials?: {
1898
1928
  apiKey: string;
@@ -1952,11 +1982,11 @@ export declare const lineContract: {
1952
1982
  id: string;
1953
1983
  email: string;
1954
1984
  } | null;
1955
- telegramBusinessConnectionId: string | null;
1956
1985
  lastMessage?: string | undefined;
1957
1986
  handleTime?: number | undefined;
1958
1987
  metadata?: any;
1959
1988
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
1989
+ telegramBusinessConnectionId?: string | null | undefined;
1960
1990
  };
1961
1991
  isBot: boolean | null;
1962
1992
  }, {
@@ -2018,6 +2048,7 @@ export declare const lineContract: {
2018
2048
  channelId?: string | undefined;
2019
2049
  status?: "active" | "pending" | undefined;
2020
2050
  apiKey?: string | undefined;
2051
+ tier?: "basic" | "regular" | "premium" | undefined;
2021
2052
  } | undefined;
2022
2053
  vonageCredentials?: {
2023
2054
  apiKey: string;
@@ -2077,11 +2108,11 @@ export declare const lineContract: {
2077
2108
  id: string;
2078
2109
  email: string;
2079
2110
  } | null;
2080
- telegramBusinessConnectionId: string | null;
2081
2111
  lastMessage?: string | undefined;
2082
2112
  handleTime?: number | undefined;
2083
2113
  metadata?: any;
2084
2114
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
2115
+ telegramBusinessConnectionId?: string | null | undefined;
2085
2116
  };
2086
2117
  isBot?: boolean | null | undefined;
2087
2118
  }>;
@@ -4038,6 +4069,7 @@ export declare const lineContract: {
4038
4069
  channelId: z.ZodOptional<z.ZodString>;
4039
4070
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
4040
4071
  apiKey: z.ZodOptional<z.ZodString>;
4072
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
4041
4073
  }, "strip", z.ZodTypeAny, {
4042
4074
  email: string;
4043
4075
  wabaExternalId: string;
@@ -4047,6 +4079,7 @@ export declare const lineContract: {
4047
4079
  channelId?: string | undefined;
4048
4080
  status?: "active" | "pending" | undefined;
4049
4081
  apiKey?: string | undefined;
4082
+ tier?: "basic" | "regular" | "premium" | undefined;
4050
4083
  }, {
4051
4084
  email: string;
4052
4085
  wabaExternalId: string;
@@ -4056,6 +4089,7 @@ export declare const lineContract: {
4056
4089
  channelId?: string | undefined;
4057
4090
  status?: "active" | "pending" | undefined;
4058
4091
  apiKey?: string | undefined;
4092
+ tier?: "basic" | "regular" | "premium" | undefined;
4059
4093
  }>>;
4060
4094
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4061
4095
  mobileNumber: z.ZodString;
@@ -4088,6 +4122,7 @@ export declare const lineContract: {
4088
4122
  channelId?: string | undefined;
4089
4123
  status?: "active" | "pending" | undefined;
4090
4124
  apiKey?: string | undefined;
4125
+ tier?: "basic" | "regular" | "premium" | undefined;
4091
4126
  } | undefined;
4092
4127
  vonageCredentials?: {
4093
4128
  apiKey: string;
@@ -4112,6 +4147,7 @@ export declare const lineContract: {
4112
4147
  channelId?: string | undefined;
4113
4148
  status?: "active" | "pending" | undefined;
4114
4149
  apiKey?: string | undefined;
4150
+ tier?: "basic" | "regular" | "premium" | undefined;
4115
4151
  } | undefined;
4116
4152
  vonageCredentials?: {
4117
4153
  apiKey: string;
@@ -4370,6 +4406,7 @@ export declare const lineContract: {
4370
4406
  channelId?: string | undefined;
4371
4407
  status?: "active" | "pending" | undefined;
4372
4408
  apiKey?: string | undefined;
4409
+ tier?: "basic" | "regular" | "premium" | undefined;
4373
4410
  } | undefined;
4374
4411
  vonageCredentials?: {
4375
4412
  apiKey: string;
@@ -4459,6 +4496,7 @@ export declare const lineContract: {
4459
4496
  channelId?: string | undefined;
4460
4497
  status?: "active" | "pending" | undefined;
4461
4498
  apiKey?: string | undefined;
4499
+ tier?: "basic" | "regular" | "premium" | undefined;
4462
4500
  } | undefined;
4463
4501
  vonageCredentials?: {
4464
4502
  apiKey: string;
@@ -4996,6 +5034,7 @@ export declare const lineContract: {
4996
5034
  channelId?: string | undefined;
4997
5035
  status?: "active" | "pending" | undefined;
4998
5036
  apiKey?: string | undefined;
5037
+ tier?: "basic" | "regular" | "premium" | undefined;
4999
5038
  } | undefined;
5000
5039
  vonageCredentials?: {
5001
5040
  apiKey: string;
@@ -5396,6 +5435,7 @@ export declare const lineContract: {
5396
5435
  channelId?: string | undefined;
5397
5436
  status?: "active" | "pending" | undefined;
5398
5437
  apiKey?: string | undefined;
5438
+ tier?: "basic" | "regular" | "premium" | undefined;
5399
5439
  } | undefined;
5400
5440
  vonageCredentials?: {
5401
5441
  apiKey: string;
@@ -8512,6 +8552,7 @@ export declare const lineContract: {
8512
8552
  channelId: z.ZodOptional<z.ZodString>;
8513
8553
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
8514
8554
  apiKey: z.ZodOptional<z.ZodString>;
8555
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
8515
8556
  }, "strip", z.ZodTypeAny, {
8516
8557
  email: string;
8517
8558
  wabaExternalId: string;
@@ -8521,6 +8562,7 @@ export declare const lineContract: {
8521
8562
  channelId?: string | undefined;
8522
8563
  status?: "active" | "pending" | undefined;
8523
8564
  apiKey?: string | undefined;
8565
+ tier?: "basic" | "regular" | "premium" | undefined;
8524
8566
  }, {
8525
8567
  email: string;
8526
8568
  wabaExternalId: string;
@@ -8530,6 +8572,7 @@ export declare const lineContract: {
8530
8572
  channelId?: string | undefined;
8531
8573
  status?: "active" | "pending" | undefined;
8532
8574
  apiKey?: string | undefined;
8575
+ tier?: "basic" | "regular" | "premium" | undefined;
8533
8576
  }>>;
8534
8577
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8535
8578
  mobileNumber: z.ZodString;
@@ -8562,6 +8605,7 @@ export declare const lineContract: {
8562
8605
  channelId?: string | undefined;
8563
8606
  status?: "active" | "pending" | undefined;
8564
8607
  apiKey?: string | undefined;
8608
+ tier?: "basic" | "regular" | "premium" | undefined;
8565
8609
  } | undefined;
8566
8610
  vonageCredentials?: {
8567
8611
  apiKey: string;
@@ -8586,6 +8630,7 @@ export declare const lineContract: {
8586
8630
  channelId?: string | undefined;
8587
8631
  status?: "active" | "pending" | undefined;
8588
8632
  apiKey?: string | undefined;
8633
+ tier?: "basic" | "regular" | "premium" | undefined;
8589
8634
  } | undefined;
8590
8635
  vonageCredentials?: {
8591
8636
  apiKey: string;
@@ -8844,6 +8889,7 @@ export declare const lineContract: {
8844
8889
  channelId?: string | undefined;
8845
8890
  status?: "active" | "pending" | undefined;
8846
8891
  apiKey?: string | undefined;
8892
+ tier?: "basic" | "regular" | "premium" | undefined;
8847
8893
  } | undefined;
8848
8894
  vonageCredentials?: {
8849
8895
  apiKey: string;
@@ -8933,6 +8979,7 @@ export declare const lineContract: {
8933
8979
  channelId?: string | undefined;
8934
8980
  status?: "active" | "pending" | undefined;
8935
8981
  apiKey?: string | undefined;
8982
+ tier?: "basic" | "regular" | "premium" | undefined;
8936
8983
  } | undefined;
8937
8984
  vonageCredentials?: {
8938
8985
  apiKey: string;
@@ -9470,6 +9517,7 @@ export declare const lineContract: {
9470
9517
  channelId?: string | undefined;
9471
9518
  status?: "active" | "pending" | undefined;
9472
9519
  apiKey?: string | undefined;
9520
+ tier?: "basic" | "regular" | "premium" | undefined;
9473
9521
  } | undefined;
9474
9522
  vonageCredentials?: {
9475
9523
  apiKey: string;
@@ -9870,6 +9918,7 @@ export declare const lineContract: {
9870
9918
  channelId?: string | undefined;
9871
9919
  status?: "active" | "pending" | undefined;
9872
9920
  apiKey?: string | undefined;
9921
+ tier?: "basic" | "regular" | "premium" | undefined;
9873
9922
  } | undefined;
9874
9923
  vonageCredentials?: {
9875
9924
  apiKey: string;
@@ -12043,6 +12092,7 @@ export declare const lineContract: {
12043
12092
  channelId?: string | undefined;
12044
12093
  status?: "active" | "pending" | undefined;
12045
12094
  apiKey?: string | undefined;
12095
+ tier?: "basic" | "regular" | "premium" | undefined;
12046
12096
  } | undefined;
12047
12097
  vonageCredentials?: {
12048
12098
  apiKey: string;
@@ -12780,6 +12830,7 @@ export declare const lineContract: {
12780
12830
  channelId?: string | undefined;
12781
12831
  status?: "active" | "pending" | undefined;
12782
12832
  apiKey?: string | undefined;
12833
+ tier?: "basic" | "regular" | "premium" | undefined;
12783
12834
  } | undefined;
12784
12835
  vonageCredentials?: {
12785
12836
  apiKey: string;
@@ -13518,6 +13569,7 @@ export declare const lineContract: {
13518
13569
  channelId?: string | undefined;
13519
13570
  status?: "active" | "pending" | undefined;
13520
13571
  apiKey?: string | undefined;
13572
+ tier?: "basic" | "regular" | "premium" | undefined;
13521
13573
  } | undefined;
13522
13574
  vonageCredentials?: {
13523
13575
  apiKey: string;
@@ -14255,6 +14307,7 @@ export declare const lineContract: {
14255
14307
  channelId?: string | undefined;
14256
14308
  status?: "active" | "pending" | undefined;
14257
14309
  apiKey?: string | undefined;
14310
+ tier?: "basic" | "regular" | "premium" | undefined;
14258
14311
  } | undefined;
14259
14312
  vonageCredentials?: {
14260
14313
  apiKey: string;
@@ -14993,6 +15046,7 @@ export declare const lineContract: {
14993
15046
  channelId?: string | undefined;
14994
15047
  status?: "active" | "pending" | undefined;
14995
15048
  apiKey?: string | undefined;
15049
+ tier?: "basic" | "regular" | "premium" | undefined;
14996
15050
  } | undefined;
14997
15051
  vonageCredentials?: {
14998
15052
  apiKey: string;
@@ -15730,6 +15784,7 @@ export declare const lineContract: {
15730
15784
  channelId?: string | undefined;
15731
15785
  status?: "active" | "pending" | undefined;
15732
15786
  apiKey?: string | undefined;
15787
+ tier?: "basic" | "regular" | "premium" | undefined;
15733
15788
  } | undefined;
15734
15789
  vonageCredentials?: {
15735
15790
  apiKey: string;
@@ -16470,6 +16525,7 @@ export declare const lineContract: {
16470
16525
  channelId?: string | undefined;
16471
16526
  status?: "active" | "pending" | undefined;
16472
16527
  apiKey?: string | undefined;
16528
+ tier?: "basic" | "regular" | "premium" | undefined;
16473
16529
  } | undefined;
16474
16530
  vonageCredentials?: {
16475
16531
  apiKey: string;
@@ -17207,6 +17263,7 @@ export declare const lineContract: {
17207
17263
  channelId?: string | undefined;
17208
17264
  status?: "active" | "pending" | undefined;
17209
17265
  apiKey?: string | undefined;
17266
+ tier?: "basic" | "regular" | "premium" | undefined;
17210
17267
  } | undefined;
17211
17268
  vonageCredentials?: {
17212
17269
  apiKey: string;
@@ -17948,6 +18005,7 @@ export declare const lineContract: {
17948
18005
  channelId?: string | undefined;
17949
18006
  status?: "active" | "pending" | undefined;
17950
18007
  apiKey?: string | undefined;
18008
+ tier?: "basic" | "regular" | "premium" | undefined;
17951
18009
  } | undefined;
17952
18010
  vonageCredentials?: {
17953
18011
  apiKey: string;
@@ -18685,6 +18743,7 @@ export declare const lineContract: {
18685
18743
  channelId?: string | undefined;
18686
18744
  status?: "active" | "pending" | undefined;
18687
18745
  apiKey?: string | undefined;
18746
+ tier?: "basic" | "regular" | "premium" | undefined;
18688
18747
  } | undefined;
18689
18748
  vonageCredentials?: {
18690
18749
  apiKey: string;
@@ -19328,6 +19387,7 @@ export declare const lineContract: {
19328
19387
  channelId: z.ZodOptional<z.ZodString>;
19329
19388
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19330
19389
  apiKey: z.ZodOptional<z.ZodString>;
19390
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19331
19391
  }, "strip", z.ZodTypeAny, {
19332
19392
  email: string;
19333
19393
  wabaExternalId: string;
@@ -19337,6 +19397,7 @@ export declare const lineContract: {
19337
19397
  channelId?: string | undefined;
19338
19398
  status?: "active" | "pending" | undefined;
19339
19399
  apiKey?: string | undefined;
19400
+ tier?: "basic" | "regular" | "premium" | undefined;
19340
19401
  }, {
19341
19402
  email: string;
19342
19403
  wabaExternalId: string;
@@ -19346,6 +19407,7 @@ export declare const lineContract: {
19346
19407
  channelId?: string | undefined;
19347
19408
  status?: "active" | "pending" | undefined;
19348
19409
  apiKey?: string | undefined;
19410
+ tier?: "basic" | "regular" | "premium" | undefined;
19349
19411
  }>>;
19350
19412
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19351
19413
  mobileNumber: z.ZodString;
@@ -19378,6 +19440,7 @@ export declare const lineContract: {
19378
19440
  channelId?: string | undefined;
19379
19441
  status?: "active" | "pending" | undefined;
19380
19442
  apiKey?: string | undefined;
19443
+ tier?: "basic" | "regular" | "premium" | undefined;
19381
19444
  } | undefined;
19382
19445
  vonageCredentials?: {
19383
19446
  apiKey: string;
@@ -19402,6 +19465,7 @@ export declare const lineContract: {
19402
19465
  channelId?: string | undefined;
19403
19466
  status?: "active" | "pending" | undefined;
19404
19467
  apiKey?: string | undefined;
19468
+ tier?: "basic" | "regular" | "premium" | undefined;
19405
19469
  } | undefined;
19406
19470
  vonageCredentials?: {
19407
19471
  apiKey: string;
@@ -19456,6 +19520,7 @@ export declare const lineContract: {
19456
19520
  channelId?: string | undefined;
19457
19521
  status?: "active" | "pending" | undefined;
19458
19522
  apiKey?: string | undefined;
19523
+ tier?: "basic" | "regular" | "premium" | undefined;
19459
19524
  } | undefined;
19460
19525
  vonageCredentials?: {
19461
19526
  apiKey: string;
@@ -19498,6 +19563,7 @@ export declare const lineContract: {
19498
19563
  channelId?: string | undefined;
19499
19564
  status?: "active" | "pending" | undefined;
19500
19565
  apiKey?: string | undefined;
19566
+ tier?: "basic" | "regular" | "premium" | undefined;
19501
19567
  } | undefined;
19502
19568
  vonageCredentials?: {
19503
19569
  apiKey: string;
@@ -19545,6 +19611,7 @@ export declare const lineContract: {
19545
19611
  channelId: z.ZodOptional<z.ZodString>;
19546
19612
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19547
19613
  apiKey: z.ZodOptional<z.ZodString>;
19614
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19548
19615
  }, "strip", z.ZodTypeAny, {
19549
19616
  email: string;
19550
19617
  wabaExternalId: string;
@@ -19554,6 +19621,7 @@ export declare const lineContract: {
19554
19621
  channelId?: string | undefined;
19555
19622
  status?: "active" | "pending" | undefined;
19556
19623
  apiKey?: string | undefined;
19624
+ tier?: "basic" | "regular" | "premium" | undefined;
19557
19625
  }, {
19558
19626
  email: string;
19559
19627
  wabaExternalId: string;
@@ -19563,6 +19631,7 @@ export declare const lineContract: {
19563
19631
  channelId?: string | undefined;
19564
19632
  status?: "active" | "pending" | undefined;
19565
19633
  apiKey?: string | undefined;
19634
+ tier?: "basic" | "regular" | "premium" | undefined;
19566
19635
  }>>;
19567
19636
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19568
19637
  mobileNumber: z.ZodString;
@@ -19595,6 +19664,7 @@ export declare const lineContract: {
19595
19664
  channelId?: string | undefined;
19596
19665
  status?: "active" | "pending" | undefined;
19597
19666
  apiKey?: string | undefined;
19667
+ tier?: "basic" | "regular" | "premium" | undefined;
19598
19668
  } | undefined;
19599
19669
  vonageCredentials?: {
19600
19670
  apiKey: string;
@@ -19619,6 +19689,7 @@ export declare const lineContract: {
19619
19689
  channelId?: string | undefined;
19620
19690
  status?: "active" | "pending" | undefined;
19621
19691
  apiKey?: string | undefined;
19692
+ tier?: "basic" | "regular" | "premium" | undefined;
19622
19693
  } | undefined;
19623
19694
  vonageCredentials?: {
19624
19695
  apiKey: string;
@@ -19673,6 +19744,7 @@ export declare const lineContract: {
19673
19744
  channelId?: string | undefined;
19674
19745
  status?: "active" | "pending" | undefined;
19675
19746
  apiKey?: string | undefined;
19747
+ tier?: "basic" | "regular" | "premium" | undefined;
19676
19748
  } | undefined;
19677
19749
  vonageCredentials?: {
19678
19750
  apiKey: string;
@@ -19715,6 +19787,7 @@ export declare const lineContract: {
19715
19787
  channelId?: string | undefined;
19716
19788
  status?: "active" | "pending" | undefined;
19717
19789
  apiKey?: string | undefined;
19790
+ tier?: "basic" | "regular" | "premium" | undefined;
19718
19791
  } | undefined;
19719
19792
  vonageCredentials?: {
19720
19793
  apiKey: string;
@@ -19759,6 +19832,7 @@ export declare const lineContract: {
19759
19832
  channelId?: string | undefined;
19760
19833
  status?: "active" | "pending" | undefined;
19761
19834
  apiKey?: string | undefined;
19835
+ tier?: "basic" | "regular" | "premium" | undefined;
19762
19836
  } | undefined;
19763
19837
  vonageCredentials?: {
19764
19838
  apiKey: string;
@@ -19804,6 +19878,7 @@ export declare const lineContract: {
19804
19878
  channelId?: string | undefined;
19805
19879
  status?: "active" | "pending" | undefined;
19806
19880
  apiKey?: string | undefined;
19881
+ tier?: "basic" | "regular" | "premium" | undefined;
19807
19882
  } | undefined;
19808
19883
  vonageCredentials?: {
19809
19884
  apiKey: string;
@@ -19885,6 +19960,7 @@ export declare const lineContract: {
19885
19960
  channelId: z.ZodOptional<z.ZodString>;
19886
19961
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19887
19962
  apiKey: z.ZodOptional<z.ZodString>;
19963
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19888
19964
  }, "strip", z.ZodTypeAny, {
19889
19965
  email: string;
19890
19966
  wabaExternalId: string;
@@ -19894,6 +19970,7 @@ export declare const lineContract: {
19894
19970
  channelId?: string | undefined;
19895
19971
  status?: "active" | "pending" | undefined;
19896
19972
  apiKey?: string | undefined;
19973
+ tier?: "basic" | "regular" | "premium" | undefined;
19897
19974
  }, {
19898
19975
  email: string;
19899
19976
  wabaExternalId: string;
@@ -19903,6 +19980,7 @@ export declare const lineContract: {
19903
19980
  channelId?: string | undefined;
19904
19981
  status?: "active" | "pending" | undefined;
19905
19982
  apiKey?: string | undefined;
19983
+ tier?: "basic" | "regular" | "premium" | undefined;
19906
19984
  }>>;
19907
19985
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19908
19986
  mobileNumber: z.ZodString;
@@ -19935,6 +20013,7 @@ export declare const lineContract: {
19935
20013
  channelId?: string | undefined;
19936
20014
  status?: "active" | "pending" | undefined;
19937
20015
  apiKey?: string | undefined;
20016
+ tier?: "basic" | "regular" | "premium" | undefined;
19938
20017
  } | undefined;
19939
20018
  vonageCredentials?: {
19940
20019
  apiKey: string;
@@ -19959,6 +20038,7 @@ export declare const lineContract: {
19959
20038
  channelId?: string | undefined;
19960
20039
  status?: "active" | "pending" | undefined;
19961
20040
  apiKey?: string | undefined;
20041
+ tier?: "basic" | "regular" | "premium" | undefined;
19962
20042
  } | undefined;
19963
20043
  vonageCredentials?: {
19964
20044
  apiKey: string;
@@ -20013,6 +20093,7 @@ export declare const lineContract: {
20013
20093
  channelId?: string | undefined;
20014
20094
  status?: "active" | "pending" | undefined;
20015
20095
  apiKey?: string | undefined;
20096
+ tier?: "basic" | "regular" | "premium" | undefined;
20016
20097
  } | undefined;
20017
20098
  vonageCredentials?: {
20018
20099
  apiKey: string;
@@ -20055,6 +20136,7 @@ export declare const lineContract: {
20055
20136
  channelId?: string | undefined;
20056
20137
  status?: "active" | "pending" | undefined;
20057
20138
  apiKey?: string | undefined;
20139
+ tier?: "basic" | "regular" | "premium" | undefined;
20058
20140
  } | undefined;
20059
20141
  vonageCredentials?: {
20060
20142
  apiKey: string;
@@ -20099,6 +20181,7 @@ export declare const lineContract: {
20099
20181
  channelId?: string | undefined;
20100
20182
  status?: "active" | "pending" | undefined;
20101
20183
  apiKey?: string | undefined;
20184
+ tier?: "basic" | "regular" | "premium" | undefined;
20102
20185
  } | undefined;
20103
20186
  vonageCredentials?: {
20104
20187
  apiKey: string;
@@ -20144,6 +20227,7 @@ export declare const lineContract: {
20144
20227
  channelId?: string | undefined;
20145
20228
  status?: "active" | "pending" | undefined;
20146
20229
  apiKey?: string | undefined;
20230
+ tier?: "basic" | "regular" | "premium" | undefined;
20147
20231
  } | undefined;
20148
20232
  vonageCredentials?: {
20149
20233
  apiKey: string;
@@ -20225,6 +20309,7 @@ export declare const lineContract: {
20225
20309
  channelId: z.ZodOptional<z.ZodString>;
20226
20310
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20227
20311
  apiKey: z.ZodOptional<z.ZodString>;
20312
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20228
20313
  }, "strip", z.ZodTypeAny, {
20229
20314
  email: string;
20230
20315
  wabaExternalId: string;
@@ -20234,6 +20319,7 @@ export declare const lineContract: {
20234
20319
  channelId?: string | undefined;
20235
20320
  status?: "active" | "pending" | undefined;
20236
20321
  apiKey?: string | undefined;
20322
+ tier?: "basic" | "regular" | "premium" | undefined;
20237
20323
  }, {
20238
20324
  email: string;
20239
20325
  wabaExternalId: string;
@@ -20243,6 +20329,7 @@ export declare const lineContract: {
20243
20329
  channelId?: string | undefined;
20244
20330
  status?: "active" | "pending" | undefined;
20245
20331
  apiKey?: string | undefined;
20332
+ tier?: "basic" | "regular" | "premium" | undefined;
20246
20333
  }>>;
20247
20334
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20248
20335
  mobileNumber: z.ZodString;
@@ -20275,6 +20362,7 @@ export declare const lineContract: {
20275
20362
  channelId?: string | undefined;
20276
20363
  status?: "active" | "pending" | undefined;
20277
20364
  apiKey?: string | undefined;
20365
+ tier?: "basic" | "regular" | "premium" | undefined;
20278
20366
  } | undefined;
20279
20367
  vonageCredentials?: {
20280
20368
  apiKey: string;
@@ -20299,6 +20387,7 @@ export declare const lineContract: {
20299
20387
  channelId?: string | undefined;
20300
20388
  status?: "active" | "pending" | undefined;
20301
20389
  apiKey?: string | undefined;
20390
+ tier?: "basic" | "regular" | "premium" | undefined;
20302
20391
  } | undefined;
20303
20392
  vonageCredentials?: {
20304
20393
  apiKey: string;
@@ -20353,6 +20442,7 @@ export declare const lineContract: {
20353
20442
  channelId?: string | undefined;
20354
20443
  status?: "active" | "pending" | undefined;
20355
20444
  apiKey?: string | undefined;
20445
+ tier?: "basic" | "regular" | "premium" | undefined;
20356
20446
  } | undefined;
20357
20447
  vonageCredentials?: {
20358
20448
  apiKey: string;
@@ -20395,6 +20485,7 @@ export declare const lineContract: {
20395
20485
  channelId?: string | undefined;
20396
20486
  status?: "active" | "pending" | undefined;
20397
20487
  apiKey?: string | undefined;
20488
+ tier?: "basic" | "regular" | "premium" | undefined;
20398
20489
  } | undefined;
20399
20490
  vonageCredentials?: {
20400
20491
  apiKey: string;
@@ -20439,6 +20530,7 @@ export declare const lineContract: {
20439
20530
  channelId?: string | undefined;
20440
20531
  status?: "active" | "pending" | undefined;
20441
20532
  apiKey?: string | undefined;
20533
+ tier?: "basic" | "regular" | "premium" | undefined;
20442
20534
  } | undefined;
20443
20535
  vonageCredentials?: {
20444
20536
  apiKey: string;
@@ -20484,6 +20576,7 @@ export declare const lineContract: {
20484
20576
  channelId?: string | undefined;
20485
20577
  status?: "active" | "pending" | undefined;
20486
20578
  apiKey?: string | undefined;
20579
+ tier?: "basic" | "regular" | "premium" | undefined;
20487
20580
  } | undefined;
20488
20581
  vonageCredentials?: {
20489
20582
  apiKey: string;