@kl1/contracts 1.2.26-uat → 1.2.28-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/channel/index.d.ts +179 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +12 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +14 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +3987 -298
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +1020 -129
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +608 -76
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +5414 -586
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +13 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +4 -4
- package/dist/api-contracts/src/dashboard/schema.d.ts +2 -2
- package/dist/api-contracts/src/facebook-feed/index.d.ts +624 -58
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +12 -3
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/index.d.ts +133 -2
- package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/schema.d.ts +25 -0
- package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/validation.d.ts +10 -0
- package/dist/api-contracts/src/hold-label/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/index.d.ts +1 -0
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +585 -48
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +578 -53
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +16 -5
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +585 -48
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +7 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +85 -11
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/schema.d.ts +22 -0
- package/dist/api-contracts/src/sms/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +555 -48
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +555 -48
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +1582 -56
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +569 -48
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +362 -10
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +3 -0
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +4383 -4287
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4382 -4287
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -47,6 +47,7 @@ export declare const channelContract: {
|
|
|
47
47
|
channelId: z.ZodOptional<z.ZodString>;
|
|
48
48
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
49
49
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
50
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
50
51
|
}, "strip", z.ZodTypeAny, {
|
|
51
52
|
email: string;
|
|
52
53
|
wabaExternalId: string;
|
|
@@ -56,6 +57,7 @@ export declare const channelContract: {
|
|
|
56
57
|
channelId?: string | undefined;
|
|
57
58
|
status?: "active" | "pending" | undefined;
|
|
58
59
|
apiKey?: string | undefined;
|
|
60
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
59
61
|
}, {
|
|
60
62
|
email: string;
|
|
61
63
|
wabaExternalId: string;
|
|
@@ -65,6 +67,7 @@ export declare const channelContract: {
|
|
|
65
67
|
channelId?: string | undefined;
|
|
66
68
|
status?: "active" | "pending" | undefined;
|
|
67
69
|
apiKey?: string | undefined;
|
|
70
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
68
71
|
}>>;
|
|
69
72
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
70
73
|
mobileNumber: z.ZodString;
|
|
@@ -97,6 +100,7 @@ export declare const channelContract: {
|
|
|
97
100
|
channelId?: string | undefined;
|
|
98
101
|
status?: "active" | "pending" | undefined;
|
|
99
102
|
apiKey?: string | undefined;
|
|
103
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
100
104
|
} | undefined;
|
|
101
105
|
vonageCredentials?: {
|
|
102
106
|
apiKey: string;
|
|
@@ -121,6 +125,7 @@ export declare const channelContract: {
|
|
|
121
125
|
channelId?: string | undefined;
|
|
122
126
|
status?: "active" | "pending" | undefined;
|
|
123
127
|
apiKey?: string | undefined;
|
|
128
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
124
129
|
} | undefined;
|
|
125
130
|
vonageCredentials?: {
|
|
126
131
|
apiKey: string;
|
|
@@ -379,6 +384,7 @@ export declare const channelContract: {
|
|
|
379
384
|
channelId?: string | undefined;
|
|
380
385
|
status?: "active" | "pending" | undefined;
|
|
381
386
|
apiKey?: string | undefined;
|
|
387
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
382
388
|
} | undefined;
|
|
383
389
|
vonageCredentials?: {
|
|
384
390
|
apiKey: string;
|
|
@@ -468,6 +474,7 @@ export declare const channelContract: {
|
|
|
468
474
|
channelId?: string | undefined;
|
|
469
475
|
status?: "active" | "pending" | undefined;
|
|
470
476
|
apiKey?: string | undefined;
|
|
477
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
471
478
|
} | undefined;
|
|
472
479
|
vonageCredentials?: {
|
|
473
480
|
apiKey: string;
|
|
@@ -559,6 +566,7 @@ export declare const channelContract: {
|
|
|
559
566
|
channelId?: string | undefined;
|
|
560
567
|
status?: "active" | "pending" | undefined;
|
|
561
568
|
apiKey?: string | undefined;
|
|
569
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
562
570
|
} | undefined;
|
|
563
571
|
vonageCredentials?: {
|
|
564
572
|
apiKey: string;
|
|
@@ -651,6 +659,7 @@ export declare const channelContract: {
|
|
|
651
659
|
channelId?: string | undefined;
|
|
652
660
|
status?: "active" | "pending" | undefined;
|
|
653
661
|
apiKey?: string | undefined;
|
|
662
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
654
663
|
} | undefined;
|
|
655
664
|
vonageCredentials?: {
|
|
656
665
|
apiKey: string;
|
|
@@ -775,6 +784,7 @@ export declare const channelContract: {
|
|
|
775
784
|
channelId: z.ZodOptional<z.ZodString>;
|
|
776
785
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
777
786
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
787
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
778
788
|
}, "strip", z.ZodTypeAny, {
|
|
779
789
|
email: string;
|
|
780
790
|
wabaExternalId: string;
|
|
@@ -784,6 +794,7 @@ export declare const channelContract: {
|
|
|
784
794
|
channelId?: string | undefined;
|
|
785
795
|
status?: "active" | "pending" | undefined;
|
|
786
796
|
apiKey?: string | undefined;
|
|
797
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
787
798
|
}, {
|
|
788
799
|
email: string;
|
|
789
800
|
wabaExternalId: string;
|
|
@@ -793,6 +804,7 @@ export declare const channelContract: {
|
|
|
793
804
|
channelId?: string | undefined;
|
|
794
805
|
status?: "active" | "pending" | undefined;
|
|
795
806
|
apiKey?: string | undefined;
|
|
807
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
796
808
|
}>>;
|
|
797
809
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
798
810
|
mobileNumber: z.ZodString;
|
|
@@ -825,6 +837,7 @@ export declare const channelContract: {
|
|
|
825
837
|
channelId?: string | undefined;
|
|
826
838
|
status?: "active" | "pending" | undefined;
|
|
827
839
|
apiKey?: string | undefined;
|
|
840
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
828
841
|
} | undefined;
|
|
829
842
|
vonageCredentials?: {
|
|
830
843
|
apiKey: string;
|
|
@@ -849,6 +862,7 @@ export declare const channelContract: {
|
|
|
849
862
|
channelId?: string | undefined;
|
|
850
863
|
status?: "active" | "pending" | undefined;
|
|
851
864
|
apiKey?: string | undefined;
|
|
865
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
852
866
|
} | undefined;
|
|
853
867
|
vonageCredentials?: {
|
|
854
868
|
apiKey: string;
|
|
@@ -908,6 +922,7 @@ export declare const channelContract: {
|
|
|
908
922
|
channelId?: string | undefined;
|
|
909
923
|
status?: "active" | "pending" | undefined;
|
|
910
924
|
apiKey?: string | undefined;
|
|
925
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
911
926
|
} | undefined;
|
|
912
927
|
vonageCredentials?: {
|
|
913
928
|
apiKey: string;
|
|
@@ -954,6 +969,7 @@ export declare const channelContract: {
|
|
|
954
969
|
channelId?: string | undefined;
|
|
955
970
|
status?: "active" | "pending" | undefined;
|
|
956
971
|
apiKey?: string | undefined;
|
|
972
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
957
973
|
} | undefined;
|
|
958
974
|
vonageCredentials?: {
|
|
959
975
|
apiKey: string;
|
|
@@ -1002,6 +1018,7 @@ export declare const channelContract: {
|
|
|
1002
1018
|
channelId?: string | undefined;
|
|
1003
1019
|
status?: "active" | "pending" | undefined;
|
|
1004
1020
|
apiKey?: string | undefined;
|
|
1021
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1005
1022
|
} | undefined;
|
|
1006
1023
|
vonageCredentials?: {
|
|
1007
1024
|
apiKey: string;
|
|
@@ -1051,6 +1068,7 @@ export declare const channelContract: {
|
|
|
1051
1068
|
channelId?: string | undefined;
|
|
1052
1069
|
status?: "active" | "pending" | undefined;
|
|
1053
1070
|
apiKey?: string | undefined;
|
|
1071
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1054
1072
|
} | undefined;
|
|
1055
1073
|
vonageCredentials?: {
|
|
1056
1074
|
apiKey: string;
|
|
@@ -1146,6 +1164,7 @@ export declare const channelContract: {
|
|
|
1146
1164
|
channelId: z.ZodOptional<z.ZodString>;
|
|
1147
1165
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
1148
1166
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
1167
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
1149
1168
|
}, "strip", z.ZodTypeAny, {
|
|
1150
1169
|
email: string;
|
|
1151
1170
|
wabaExternalId: string;
|
|
@@ -1155,6 +1174,7 @@ export declare const channelContract: {
|
|
|
1155
1174
|
channelId?: string | undefined;
|
|
1156
1175
|
status?: "active" | "pending" | undefined;
|
|
1157
1176
|
apiKey?: string | undefined;
|
|
1177
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1158
1178
|
}, {
|
|
1159
1179
|
email: string;
|
|
1160
1180
|
wabaExternalId: string;
|
|
@@ -1164,6 +1184,7 @@ export declare const channelContract: {
|
|
|
1164
1184
|
channelId?: string | undefined;
|
|
1165
1185
|
status?: "active" | "pending" | undefined;
|
|
1166
1186
|
apiKey?: string | undefined;
|
|
1187
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1167
1188
|
}>>;
|
|
1168
1189
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
1169
1190
|
mobileNumber: z.ZodString;
|
|
@@ -1196,6 +1217,7 @@ export declare const channelContract: {
|
|
|
1196
1217
|
channelId?: string | undefined;
|
|
1197
1218
|
status?: "active" | "pending" | undefined;
|
|
1198
1219
|
apiKey?: string | undefined;
|
|
1220
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1199
1221
|
} | undefined;
|
|
1200
1222
|
vonageCredentials?: {
|
|
1201
1223
|
apiKey: string;
|
|
@@ -1220,6 +1242,7 @@ export declare const channelContract: {
|
|
|
1220
1242
|
channelId?: string | undefined;
|
|
1221
1243
|
status?: "active" | "pending" | undefined;
|
|
1222
1244
|
apiKey?: string | undefined;
|
|
1245
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1223
1246
|
} | undefined;
|
|
1224
1247
|
vonageCredentials?: {
|
|
1225
1248
|
apiKey: string;
|
|
@@ -1478,6 +1501,7 @@ export declare const channelContract: {
|
|
|
1478
1501
|
channelId?: string | undefined;
|
|
1479
1502
|
status?: "active" | "pending" | undefined;
|
|
1480
1503
|
apiKey?: string | undefined;
|
|
1504
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1481
1505
|
} | undefined;
|
|
1482
1506
|
vonageCredentials?: {
|
|
1483
1507
|
apiKey: string;
|
|
@@ -1567,6 +1591,7 @@ export declare const channelContract: {
|
|
|
1567
1591
|
channelId?: string | undefined;
|
|
1568
1592
|
status?: "active" | "pending" | undefined;
|
|
1569
1593
|
apiKey?: string | undefined;
|
|
1594
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1570
1595
|
} | undefined;
|
|
1571
1596
|
vonageCredentials?: {
|
|
1572
1597
|
apiKey: string;
|
|
@@ -1658,6 +1683,7 @@ export declare const channelContract: {
|
|
|
1658
1683
|
channelId?: string | undefined;
|
|
1659
1684
|
status?: "active" | "pending" | undefined;
|
|
1660
1685
|
apiKey?: string | undefined;
|
|
1686
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1661
1687
|
} | undefined;
|
|
1662
1688
|
vonageCredentials?: {
|
|
1663
1689
|
apiKey: string;
|
|
@@ -1750,6 +1776,7 @@ export declare const channelContract: {
|
|
|
1750
1776
|
channelId?: string | undefined;
|
|
1751
1777
|
status?: "active" | "pending" | undefined;
|
|
1752
1778
|
apiKey?: string | undefined;
|
|
1779
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1753
1780
|
} | undefined;
|
|
1754
1781
|
vonageCredentials?: {
|
|
1755
1782
|
apiKey: string;
|
|
@@ -1894,6 +1921,7 @@ export declare const channelContract: {
|
|
|
1894
1921
|
channelId: z.ZodOptional<z.ZodString>;
|
|
1895
1922
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
1896
1923
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
1924
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
1897
1925
|
}, "strip", z.ZodTypeAny, {
|
|
1898
1926
|
email: string;
|
|
1899
1927
|
wabaExternalId: string;
|
|
@@ -1903,6 +1931,7 @@ export declare const channelContract: {
|
|
|
1903
1931
|
channelId?: string | undefined;
|
|
1904
1932
|
status?: "active" | "pending" | undefined;
|
|
1905
1933
|
apiKey?: string | undefined;
|
|
1934
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1906
1935
|
}, {
|
|
1907
1936
|
email: string;
|
|
1908
1937
|
wabaExternalId: string;
|
|
@@ -1912,6 +1941,7 @@ export declare const channelContract: {
|
|
|
1912
1941
|
channelId?: string | undefined;
|
|
1913
1942
|
status?: "active" | "pending" | undefined;
|
|
1914
1943
|
apiKey?: string | undefined;
|
|
1944
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1915
1945
|
}>>;
|
|
1916
1946
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
1917
1947
|
mobileNumber: z.ZodString;
|
|
@@ -1944,6 +1974,7 @@ export declare const channelContract: {
|
|
|
1944
1974
|
channelId?: string | undefined;
|
|
1945
1975
|
status?: "active" | "pending" | undefined;
|
|
1946
1976
|
apiKey?: string | undefined;
|
|
1977
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1947
1978
|
} | undefined;
|
|
1948
1979
|
vonageCredentials?: {
|
|
1949
1980
|
apiKey: string;
|
|
@@ -1968,6 +1999,7 @@ export declare const channelContract: {
|
|
|
1968
1999
|
channelId?: string | undefined;
|
|
1969
2000
|
status?: "active" | "pending" | undefined;
|
|
1970
2001
|
apiKey?: string | undefined;
|
|
2002
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1971
2003
|
} | undefined;
|
|
1972
2004
|
vonageCredentials?: {
|
|
1973
2005
|
apiKey: string;
|
|
@@ -2226,6 +2258,7 @@ export declare const channelContract: {
|
|
|
2226
2258
|
channelId?: string | undefined;
|
|
2227
2259
|
status?: "active" | "pending" | undefined;
|
|
2228
2260
|
apiKey?: string | undefined;
|
|
2261
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2229
2262
|
} | undefined;
|
|
2230
2263
|
vonageCredentials?: {
|
|
2231
2264
|
apiKey: string;
|
|
@@ -2315,6 +2348,7 @@ export declare const channelContract: {
|
|
|
2315
2348
|
channelId?: string | undefined;
|
|
2316
2349
|
status?: "active" | "pending" | undefined;
|
|
2317
2350
|
apiKey?: string | undefined;
|
|
2351
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2318
2352
|
} | undefined;
|
|
2319
2353
|
vonageCredentials?: {
|
|
2320
2354
|
apiKey: string;
|
|
@@ -2406,6 +2440,7 @@ export declare const channelContract: {
|
|
|
2406
2440
|
channelId?: string | undefined;
|
|
2407
2441
|
status?: "active" | "pending" | undefined;
|
|
2408
2442
|
apiKey?: string | undefined;
|
|
2443
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2409
2444
|
} | undefined;
|
|
2410
2445
|
vonageCredentials?: {
|
|
2411
2446
|
apiKey: string;
|
|
@@ -2498,6 +2533,7 @@ export declare const channelContract: {
|
|
|
2498
2533
|
channelId?: string | undefined;
|
|
2499
2534
|
status?: "active" | "pending" | undefined;
|
|
2500
2535
|
apiKey?: string | undefined;
|
|
2536
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2501
2537
|
} | undefined;
|
|
2502
2538
|
vonageCredentials?: {
|
|
2503
2539
|
apiKey: string;
|
|
@@ -2636,6 +2672,7 @@ export declare const channelContract: {
|
|
|
2636
2672
|
channelId: z.ZodOptional<z.ZodString>;
|
|
2637
2673
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
2638
2674
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2675
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
2639
2676
|
}, "strip", z.ZodTypeAny, {
|
|
2640
2677
|
email: string;
|
|
2641
2678
|
wabaExternalId: string;
|
|
@@ -2645,6 +2682,7 @@ export declare const channelContract: {
|
|
|
2645
2682
|
channelId?: string | undefined;
|
|
2646
2683
|
status?: "active" | "pending" | undefined;
|
|
2647
2684
|
apiKey?: string | undefined;
|
|
2685
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2648
2686
|
}, {
|
|
2649
2687
|
email: string;
|
|
2650
2688
|
wabaExternalId: string;
|
|
@@ -2654,6 +2692,7 @@ export declare const channelContract: {
|
|
|
2654
2692
|
channelId?: string | undefined;
|
|
2655
2693
|
status?: "active" | "pending" | undefined;
|
|
2656
2694
|
apiKey?: string | undefined;
|
|
2695
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2657
2696
|
}>>;
|
|
2658
2697
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
2659
2698
|
mobileNumber: z.ZodString;
|
|
@@ -2686,6 +2725,7 @@ export declare const channelContract: {
|
|
|
2686
2725
|
channelId?: string | undefined;
|
|
2687
2726
|
status?: "active" | "pending" | undefined;
|
|
2688
2727
|
apiKey?: string | undefined;
|
|
2728
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2689
2729
|
} | undefined;
|
|
2690
2730
|
vonageCredentials?: {
|
|
2691
2731
|
apiKey: string;
|
|
@@ -2710,6 +2750,7 @@ export declare const channelContract: {
|
|
|
2710
2750
|
channelId?: string | undefined;
|
|
2711
2751
|
status?: "active" | "pending" | undefined;
|
|
2712
2752
|
apiKey?: string | undefined;
|
|
2753
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2713
2754
|
} | undefined;
|
|
2714
2755
|
vonageCredentials?: {
|
|
2715
2756
|
apiKey: string;
|
|
@@ -2968,6 +3009,7 @@ export declare const channelContract: {
|
|
|
2968
3009
|
channelId?: string | undefined;
|
|
2969
3010
|
status?: "active" | "pending" | undefined;
|
|
2970
3011
|
apiKey?: string | undefined;
|
|
3012
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2971
3013
|
} | undefined;
|
|
2972
3014
|
vonageCredentials?: {
|
|
2973
3015
|
apiKey: string;
|
|
@@ -3057,6 +3099,7 @@ export declare const channelContract: {
|
|
|
3057
3099
|
channelId?: string | undefined;
|
|
3058
3100
|
status?: "active" | "pending" | undefined;
|
|
3059
3101
|
apiKey?: string | undefined;
|
|
3102
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3060
3103
|
} | undefined;
|
|
3061
3104
|
vonageCredentials?: {
|
|
3062
3105
|
apiKey: string;
|
|
@@ -3148,6 +3191,7 @@ export declare const channelContract: {
|
|
|
3148
3191
|
channelId?: string | undefined;
|
|
3149
3192
|
status?: "active" | "pending" | undefined;
|
|
3150
3193
|
apiKey?: string | undefined;
|
|
3194
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3151
3195
|
} | undefined;
|
|
3152
3196
|
vonageCredentials?: {
|
|
3153
3197
|
apiKey: string;
|
|
@@ -3240,6 +3284,7 @@ export declare const channelContract: {
|
|
|
3240
3284
|
channelId?: string | undefined;
|
|
3241
3285
|
status?: "active" | "pending" | undefined;
|
|
3242
3286
|
apiKey?: string | undefined;
|
|
3287
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3243
3288
|
} | undefined;
|
|
3244
3289
|
vonageCredentials?: {
|
|
3245
3290
|
apiKey: string;
|
|
@@ -3361,6 +3406,7 @@ export declare const channelContract: {
|
|
|
3361
3406
|
channelId: z.ZodOptional<z.ZodString>;
|
|
3362
3407
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
3363
3408
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
3409
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
3364
3410
|
}, "strip", z.ZodTypeAny, {
|
|
3365
3411
|
email: string;
|
|
3366
3412
|
wabaExternalId: string;
|
|
@@ -3370,6 +3416,7 @@ export declare const channelContract: {
|
|
|
3370
3416
|
channelId?: string | undefined;
|
|
3371
3417
|
status?: "active" | "pending" | undefined;
|
|
3372
3418
|
apiKey?: string | undefined;
|
|
3419
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3373
3420
|
}, {
|
|
3374
3421
|
email: string;
|
|
3375
3422
|
wabaExternalId: string;
|
|
@@ -3379,6 +3426,7 @@ export declare const channelContract: {
|
|
|
3379
3426
|
channelId?: string | undefined;
|
|
3380
3427
|
status?: "active" | "pending" | undefined;
|
|
3381
3428
|
apiKey?: string | undefined;
|
|
3429
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3382
3430
|
}>>;
|
|
3383
3431
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
3384
3432
|
mobileNumber: z.ZodString;
|
|
@@ -3411,6 +3459,7 @@ export declare const channelContract: {
|
|
|
3411
3459
|
channelId?: string | undefined;
|
|
3412
3460
|
status?: "active" | "pending" | undefined;
|
|
3413
3461
|
apiKey?: string | undefined;
|
|
3462
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3414
3463
|
} | undefined;
|
|
3415
3464
|
vonageCredentials?: {
|
|
3416
3465
|
apiKey: string;
|
|
@@ -3435,6 +3484,7 @@ export declare const channelContract: {
|
|
|
3435
3484
|
channelId?: string | undefined;
|
|
3436
3485
|
status?: "active" | "pending" | undefined;
|
|
3437
3486
|
apiKey?: string | undefined;
|
|
3487
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3438
3488
|
} | undefined;
|
|
3439
3489
|
vonageCredentials?: {
|
|
3440
3490
|
apiKey: string;
|
|
@@ -3466,6 +3516,7 @@ export declare const channelContract: {
|
|
|
3466
3516
|
channelId?: string | undefined;
|
|
3467
3517
|
status?: "active" | "pending" | undefined;
|
|
3468
3518
|
apiKey?: string | undefined;
|
|
3519
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3469
3520
|
} | undefined;
|
|
3470
3521
|
vonageCredentials?: {
|
|
3471
3522
|
apiKey: string;
|
|
@@ -3497,6 +3548,7 @@ export declare const channelContract: {
|
|
|
3497
3548
|
channelId?: string | undefined;
|
|
3498
3549
|
status?: "active" | "pending" | undefined;
|
|
3499
3550
|
apiKey?: string | undefined;
|
|
3551
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3500
3552
|
} | undefined;
|
|
3501
3553
|
vonageCredentials?: {
|
|
3502
3554
|
apiKey: string;
|
|
@@ -3538,6 +3590,7 @@ export declare const channelContract: {
|
|
|
3538
3590
|
channelId: z.ZodOptional<z.ZodString>;
|
|
3539
3591
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
3540
3592
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
3593
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
3541
3594
|
}, "strip", z.ZodTypeAny, {
|
|
3542
3595
|
email: string;
|
|
3543
3596
|
wabaExternalId: string;
|
|
@@ -3547,6 +3600,7 @@ export declare const channelContract: {
|
|
|
3547
3600
|
channelId?: string | undefined;
|
|
3548
3601
|
status?: "active" | "pending" | undefined;
|
|
3549
3602
|
apiKey?: string | undefined;
|
|
3603
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3550
3604
|
}, {
|
|
3551
3605
|
email: string;
|
|
3552
3606
|
wabaExternalId: string;
|
|
@@ -3556,6 +3610,7 @@ export declare const channelContract: {
|
|
|
3556
3610
|
channelId?: string | undefined;
|
|
3557
3611
|
status?: "active" | "pending" | undefined;
|
|
3558
3612
|
apiKey?: string | undefined;
|
|
3613
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3559
3614
|
}>>;
|
|
3560
3615
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
3561
3616
|
mobileNumber: z.ZodString;
|
|
@@ -3588,6 +3643,7 @@ export declare const channelContract: {
|
|
|
3588
3643
|
channelId?: string | undefined;
|
|
3589
3644
|
status?: "active" | "pending" | undefined;
|
|
3590
3645
|
apiKey?: string | undefined;
|
|
3646
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3591
3647
|
} | undefined;
|
|
3592
3648
|
vonageCredentials?: {
|
|
3593
3649
|
apiKey: string;
|
|
@@ -3612,6 +3668,7 @@ export declare const channelContract: {
|
|
|
3612
3668
|
channelId?: string | undefined;
|
|
3613
3669
|
status?: "active" | "pending" | undefined;
|
|
3614
3670
|
apiKey?: string | undefined;
|
|
3671
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3615
3672
|
} | undefined;
|
|
3616
3673
|
vonageCredentials?: {
|
|
3617
3674
|
apiKey: string;
|
|
@@ -3870,6 +3927,7 @@ export declare const channelContract: {
|
|
|
3870
3927
|
channelId?: string | undefined;
|
|
3871
3928
|
status?: "active" | "pending" | undefined;
|
|
3872
3929
|
apiKey?: string | undefined;
|
|
3930
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3873
3931
|
} | undefined;
|
|
3874
3932
|
vonageCredentials?: {
|
|
3875
3933
|
apiKey: string;
|
|
@@ -3959,6 +4017,7 @@ export declare const channelContract: {
|
|
|
3959
4017
|
channelId?: string | undefined;
|
|
3960
4018
|
status?: "active" | "pending" | undefined;
|
|
3961
4019
|
apiKey?: string | undefined;
|
|
4020
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3962
4021
|
} | undefined;
|
|
3963
4022
|
vonageCredentials?: {
|
|
3964
4023
|
apiKey: string;
|
|
@@ -4050,6 +4109,7 @@ export declare const channelContract: {
|
|
|
4050
4109
|
channelId?: string | undefined;
|
|
4051
4110
|
status?: "active" | "pending" | undefined;
|
|
4052
4111
|
apiKey?: string | undefined;
|
|
4112
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4053
4113
|
} | undefined;
|
|
4054
4114
|
vonageCredentials?: {
|
|
4055
4115
|
apiKey: string;
|
|
@@ -4142,6 +4202,7 @@ export declare const channelContract: {
|
|
|
4142
4202
|
channelId?: string | undefined;
|
|
4143
4203
|
status?: "active" | "pending" | undefined;
|
|
4144
4204
|
apiKey?: string | undefined;
|
|
4205
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4145
4206
|
} | undefined;
|
|
4146
4207
|
vonageCredentials?: {
|
|
4147
4208
|
apiKey: string;
|
|
@@ -5155,6 +5216,7 @@ export declare const channelContract: {
|
|
|
5155
5216
|
channelId: z.ZodOptional<z.ZodString>;
|
|
5156
5217
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
5157
5218
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
5219
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
5158
5220
|
}, "strip", z.ZodTypeAny, {
|
|
5159
5221
|
email: string;
|
|
5160
5222
|
wabaExternalId: string;
|
|
@@ -5164,6 +5226,7 @@ export declare const channelContract: {
|
|
|
5164
5226
|
channelId?: string | undefined;
|
|
5165
5227
|
status?: "active" | "pending" | undefined;
|
|
5166
5228
|
apiKey?: string | undefined;
|
|
5229
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5167
5230
|
}, {
|
|
5168
5231
|
email: string;
|
|
5169
5232
|
wabaExternalId: string;
|
|
@@ -5173,6 +5236,7 @@ export declare const channelContract: {
|
|
|
5173
5236
|
channelId?: string | undefined;
|
|
5174
5237
|
status?: "active" | "pending" | undefined;
|
|
5175
5238
|
apiKey?: string | undefined;
|
|
5239
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5176
5240
|
}>>;
|
|
5177
5241
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
5178
5242
|
mobileNumber: z.ZodString;
|
|
@@ -5205,6 +5269,7 @@ export declare const channelContract: {
|
|
|
5205
5269
|
channelId?: string | undefined;
|
|
5206
5270
|
status?: "active" | "pending" | undefined;
|
|
5207
5271
|
apiKey?: string | undefined;
|
|
5272
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5208
5273
|
} | undefined;
|
|
5209
5274
|
vonageCredentials?: {
|
|
5210
5275
|
apiKey: string;
|
|
@@ -5229,6 +5294,7 @@ export declare const channelContract: {
|
|
|
5229
5294
|
channelId?: string | undefined;
|
|
5230
5295
|
status?: "active" | "pending" | undefined;
|
|
5231
5296
|
apiKey?: string | undefined;
|
|
5297
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5232
5298
|
} | undefined;
|
|
5233
5299
|
vonageCredentials?: {
|
|
5234
5300
|
apiKey: string;
|
|
@@ -5260,6 +5326,7 @@ export declare const channelContract: {
|
|
|
5260
5326
|
channelId?: string | undefined;
|
|
5261
5327
|
status?: "active" | "pending" | undefined;
|
|
5262
5328
|
apiKey?: string | undefined;
|
|
5329
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5263
5330
|
} | undefined;
|
|
5264
5331
|
vonageCredentials?: {
|
|
5265
5332
|
apiKey: string;
|
|
@@ -5291,6 +5358,7 @@ export declare const channelContract: {
|
|
|
5291
5358
|
channelId?: string | undefined;
|
|
5292
5359
|
status?: "active" | "pending" | undefined;
|
|
5293
5360
|
apiKey?: string | undefined;
|
|
5361
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5294
5362
|
} | undefined;
|
|
5295
5363
|
vonageCredentials?: {
|
|
5296
5364
|
apiKey: string;
|
|
@@ -5332,6 +5400,7 @@ export declare const channelContract: {
|
|
|
5332
5400
|
channelId: z.ZodOptional<z.ZodString>;
|
|
5333
5401
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
5334
5402
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
5403
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
5335
5404
|
}, "strip", z.ZodTypeAny, {
|
|
5336
5405
|
email: string;
|
|
5337
5406
|
wabaExternalId: string;
|
|
@@ -5341,6 +5410,7 @@ export declare const channelContract: {
|
|
|
5341
5410
|
channelId?: string | undefined;
|
|
5342
5411
|
status?: "active" | "pending" | undefined;
|
|
5343
5412
|
apiKey?: string | undefined;
|
|
5413
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5344
5414
|
}, {
|
|
5345
5415
|
email: string;
|
|
5346
5416
|
wabaExternalId: string;
|
|
@@ -5350,6 +5420,7 @@ export declare const channelContract: {
|
|
|
5350
5420
|
channelId?: string | undefined;
|
|
5351
5421
|
status?: "active" | "pending" | undefined;
|
|
5352
5422
|
apiKey?: string | undefined;
|
|
5423
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5353
5424
|
}>>;
|
|
5354
5425
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
5355
5426
|
mobileNumber: z.ZodString;
|
|
@@ -5382,6 +5453,7 @@ export declare const channelContract: {
|
|
|
5382
5453
|
channelId?: string | undefined;
|
|
5383
5454
|
status?: "active" | "pending" | undefined;
|
|
5384
5455
|
apiKey?: string | undefined;
|
|
5456
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5385
5457
|
} | undefined;
|
|
5386
5458
|
vonageCredentials?: {
|
|
5387
5459
|
apiKey: string;
|
|
@@ -5406,6 +5478,7 @@ export declare const channelContract: {
|
|
|
5406
5478
|
channelId?: string | undefined;
|
|
5407
5479
|
status?: "active" | "pending" | undefined;
|
|
5408
5480
|
apiKey?: string | undefined;
|
|
5481
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5409
5482
|
} | undefined;
|
|
5410
5483
|
vonageCredentials?: {
|
|
5411
5484
|
apiKey: string;
|
|
@@ -5664,6 +5737,7 @@ export declare const channelContract: {
|
|
|
5664
5737
|
channelId?: string | undefined;
|
|
5665
5738
|
status?: "active" | "pending" | undefined;
|
|
5666
5739
|
apiKey?: string | undefined;
|
|
5740
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5667
5741
|
} | undefined;
|
|
5668
5742
|
vonageCredentials?: {
|
|
5669
5743
|
apiKey: string;
|
|
@@ -5753,6 +5827,7 @@ export declare const channelContract: {
|
|
|
5753
5827
|
channelId?: string | undefined;
|
|
5754
5828
|
status?: "active" | "pending" | undefined;
|
|
5755
5829
|
apiKey?: string | undefined;
|
|
5830
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5756
5831
|
} | undefined;
|
|
5757
5832
|
vonageCredentials?: {
|
|
5758
5833
|
apiKey: string;
|
|
@@ -5844,6 +5919,7 @@ export declare const channelContract: {
|
|
|
5844
5919
|
channelId?: string | undefined;
|
|
5845
5920
|
status?: "active" | "pending" | undefined;
|
|
5846
5921
|
apiKey?: string | undefined;
|
|
5922
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5847
5923
|
} | undefined;
|
|
5848
5924
|
vonageCredentials?: {
|
|
5849
5925
|
apiKey: string;
|
|
@@ -5936,6 +6012,7 @@ export declare const channelContract: {
|
|
|
5936
6012
|
channelId?: string | undefined;
|
|
5937
6013
|
status?: "active" | "pending" | undefined;
|
|
5938
6014
|
apiKey?: string | undefined;
|
|
6015
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5939
6016
|
} | undefined;
|
|
5940
6017
|
vonageCredentials?: {
|
|
5941
6018
|
apiKey: string;
|
|
@@ -6308,6 +6385,7 @@ export declare const channelContract: {
|
|
|
6308
6385
|
channelId: z.ZodOptional<z.ZodString>;
|
|
6309
6386
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
6310
6387
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
6388
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
6311
6389
|
}, "strip", z.ZodTypeAny, {
|
|
6312
6390
|
email: string;
|
|
6313
6391
|
wabaExternalId: string;
|
|
@@ -6317,6 +6395,7 @@ export declare const channelContract: {
|
|
|
6317
6395
|
channelId?: string | undefined;
|
|
6318
6396
|
status?: "active" | "pending" | undefined;
|
|
6319
6397
|
apiKey?: string | undefined;
|
|
6398
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6320
6399
|
}, {
|
|
6321
6400
|
email: string;
|
|
6322
6401
|
wabaExternalId: string;
|
|
@@ -6326,6 +6405,7 @@ export declare const channelContract: {
|
|
|
6326
6405
|
channelId?: string | undefined;
|
|
6327
6406
|
status?: "active" | "pending" | undefined;
|
|
6328
6407
|
apiKey?: string | undefined;
|
|
6408
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6329
6409
|
}>>;
|
|
6330
6410
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
6331
6411
|
mobileNumber: z.ZodString;
|
|
@@ -6358,6 +6438,7 @@ export declare const channelContract: {
|
|
|
6358
6438
|
channelId?: string | undefined;
|
|
6359
6439
|
status?: "active" | "pending" | undefined;
|
|
6360
6440
|
apiKey?: string | undefined;
|
|
6441
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6361
6442
|
} | undefined;
|
|
6362
6443
|
vonageCredentials?: {
|
|
6363
6444
|
apiKey: string;
|
|
@@ -6382,6 +6463,7 @@ export declare const channelContract: {
|
|
|
6382
6463
|
channelId?: string | undefined;
|
|
6383
6464
|
status?: "active" | "pending" | undefined;
|
|
6384
6465
|
apiKey?: string | undefined;
|
|
6466
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6385
6467
|
} | undefined;
|
|
6386
6468
|
vonageCredentials?: {
|
|
6387
6469
|
apiKey: string;
|
|
@@ -6413,6 +6495,7 @@ export declare const channelContract: {
|
|
|
6413
6495
|
channelId?: string | undefined;
|
|
6414
6496
|
status?: "active" | "pending" | undefined;
|
|
6415
6497
|
apiKey?: string | undefined;
|
|
6498
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6416
6499
|
} | undefined;
|
|
6417
6500
|
vonageCredentials?: {
|
|
6418
6501
|
apiKey: string;
|
|
@@ -6444,6 +6527,7 @@ export declare const channelContract: {
|
|
|
6444
6527
|
channelId?: string | undefined;
|
|
6445
6528
|
status?: "active" | "pending" | undefined;
|
|
6446
6529
|
apiKey?: string | undefined;
|
|
6530
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6447
6531
|
} | undefined;
|
|
6448
6532
|
vonageCredentials?: {
|
|
6449
6533
|
apiKey: string;
|
|
@@ -6485,6 +6569,7 @@ export declare const channelContract: {
|
|
|
6485
6569
|
channelId: z.ZodOptional<z.ZodString>;
|
|
6486
6570
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
6487
6571
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
6572
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
6488
6573
|
}, "strip", z.ZodTypeAny, {
|
|
6489
6574
|
email: string;
|
|
6490
6575
|
wabaExternalId: string;
|
|
@@ -6494,6 +6579,7 @@ export declare const channelContract: {
|
|
|
6494
6579
|
channelId?: string | undefined;
|
|
6495
6580
|
status?: "active" | "pending" | undefined;
|
|
6496
6581
|
apiKey?: string | undefined;
|
|
6582
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6497
6583
|
}, {
|
|
6498
6584
|
email: string;
|
|
6499
6585
|
wabaExternalId: string;
|
|
@@ -6503,6 +6589,7 @@ export declare const channelContract: {
|
|
|
6503
6589
|
channelId?: string | undefined;
|
|
6504
6590
|
status?: "active" | "pending" | undefined;
|
|
6505
6591
|
apiKey?: string | undefined;
|
|
6592
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6506
6593
|
}>>;
|
|
6507
6594
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
6508
6595
|
mobileNumber: z.ZodString;
|
|
@@ -6535,6 +6622,7 @@ export declare const channelContract: {
|
|
|
6535
6622
|
channelId?: string | undefined;
|
|
6536
6623
|
status?: "active" | "pending" | undefined;
|
|
6537
6624
|
apiKey?: string | undefined;
|
|
6625
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6538
6626
|
} | undefined;
|
|
6539
6627
|
vonageCredentials?: {
|
|
6540
6628
|
apiKey: string;
|
|
@@ -6559,6 +6647,7 @@ export declare const channelContract: {
|
|
|
6559
6647
|
channelId?: string | undefined;
|
|
6560
6648
|
status?: "active" | "pending" | undefined;
|
|
6561
6649
|
apiKey?: string | undefined;
|
|
6650
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6562
6651
|
} | undefined;
|
|
6563
6652
|
vonageCredentials?: {
|
|
6564
6653
|
apiKey: string;
|
|
@@ -6817,6 +6906,7 @@ export declare const channelContract: {
|
|
|
6817
6906
|
channelId?: string | undefined;
|
|
6818
6907
|
status?: "active" | "pending" | undefined;
|
|
6819
6908
|
apiKey?: string | undefined;
|
|
6909
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6820
6910
|
} | undefined;
|
|
6821
6911
|
vonageCredentials?: {
|
|
6822
6912
|
apiKey: string;
|
|
@@ -6906,6 +6996,7 @@ export declare const channelContract: {
|
|
|
6906
6996
|
channelId?: string | undefined;
|
|
6907
6997
|
status?: "active" | "pending" | undefined;
|
|
6908
6998
|
apiKey?: string | undefined;
|
|
6999
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6909
7000
|
} | undefined;
|
|
6910
7001
|
vonageCredentials?: {
|
|
6911
7002
|
apiKey: string;
|
|
@@ -6997,6 +7088,7 @@ export declare const channelContract: {
|
|
|
6997
7088
|
channelId?: string | undefined;
|
|
6998
7089
|
status?: "active" | "pending" | undefined;
|
|
6999
7090
|
apiKey?: string | undefined;
|
|
7091
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7000
7092
|
} | undefined;
|
|
7001
7093
|
vonageCredentials?: {
|
|
7002
7094
|
apiKey: string;
|
|
@@ -7089,6 +7181,7 @@ export declare const channelContract: {
|
|
|
7089
7181
|
channelId?: string | undefined;
|
|
7090
7182
|
status?: "active" | "pending" | undefined;
|
|
7091
7183
|
apiKey?: string | undefined;
|
|
7184
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7092
7185
|
} | undefined;
|
|
7093
7186
|
vonageCredentials?: {
|
|
7094
7187
|
apiKey: string;
|
|
@@ -7231,6 +7324,7 @@ export declare const channelContract: {
|
|
|
7231
7324
|
channelId: z.ZodOptional<z.ZodString>;
|
|
7232
7325
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
7233
7326
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
7327
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
7234
7328
|
}, "strip", z.ZodTypeAny, {
|
|
7235
7329
|
email: string;
|
|
7236
7330
|
wabaExternalId: string;
|
|
@@ -7240,6 +7334,7 @@ export declare const channelContract: {
|
|
|
7240
7334
|
channelId?: string | undefined;
|
|
7241
7335
|
status?: "active" | "pending" | undefined;
|
|
7242
7336
|
apiKey?: string | undefined;
|
|
7337
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7243
7338
|
}, {
|
|
7244
7339
|
email: string;
|
|
7245
7340
|
wabaExternalId: string;
|
|
@@ -7249,6 +7344,7 @@ export declare const channelContract: {
|
|
|
7249
7344
|
channelId?: string | undefined;
|
|
7250
7345
|
status?: "active" | "pending" | undefined;
|
|
7251
7346
|
apiKey?: string | undefined;
|
|
7347
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7252
7348
|
}>>;
|
|
7253
7349
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
7254
7350
|
mobileNumber: z.ZodString;
|
|
@@ -7281,6 +7377,7 @@ export declare const channelContract: {
|
|
|
7281
7377
|
channelId?: string | undefined;
|
|
7282
7378
|
status?: "active" | "pending" | undefined;
|
|
7283
7379
|
apiKey?: string | undefined;
|
|
7380
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7284
7381
|
} | undefined;
|
|
7285
7382
|
vonageCredentials?: {
|
|
7286
7383
|
apiKey: string;
|
|
@@ -7305,6 +7402,7 @@ export declare const channelContract: {
|
|
|
7305
7402
|
channelId?: string | undefined;
|
|
7306
7403
|
status?: "active" | "pending" | undefined;
|
|
7307
7404
|
apiKey?: string | undefined;
|
|
7405
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7308
7406
|
} | undefined;
|
|
7309
7407
|
vonageCredentials?: {
|
|
7310
7408
|
apiKey: string;
|
|
@@ -7563,6 +7661,7 @@ export declare const channelContract: {
|
|
|
7563
7661
|
channelId?: string | undefined;
|
|
7564
7662
|
status?: "active" | "pending" | undefined;
|
|
7565
7663
|
apiKey?: string | undefined;
|
|
7664
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7566
7665
|
} | undefined;
|
|
7567
7666
|
vonageCredentials?: {
|
|
7568
7667
|
apiKey: string;
|
|
@@ -7652,6 +7751,7 @@ export declare const channelContract: {
|
|
|
7652
7751
|
channelId?: string | undefined;
|
|
7653
7752
|
status?: "active" | "pending" | undefined;
|
|
7654
7753
|
apiKey?: string | undefined;
|
|
7754
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7655
7755
|
} | undefined;
|
|
7656
7756
|
vonageCredentials?: {
|
|
7657
7757
|
apiKey: string;
|
|
@@ -7743,6 +7843,7 @@ export declare const channelContract: {
|
|
|
7743
7843
|
channelId?: string | undefined;
|
|
7744
7844
|
status?: "active" | "pending" | undefined;
|
|
7745
7845
|
apiKey?: string | undefined;
|
|
7846
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7746
7847
|
} | undefined;
|
|
7747
7848
|
vonageCredentials?: {
|
|
7748
7849
|
apiKey: string;
|
|
@@ -7835,6 +7936,7 @@ export declare const channelContract: {
|
|
|
7835
7936
|
channelId?: string | undefined;
|
|
7836
7937
|
status?: "active" | "pending" | undefined;
|
|
7837
7938
|
apiKey?: string | undefined;
|
|
7939
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7838
7940
|
} | undefined;
|
|
7839
7941
|
vonageCredentials?: {
|
|
7840
7942
|
apiKey: string;
|
|
@@ -7987,6 +8089,7 @@ export declare const channelContract: {
|
|
|
7987
8089
|
channelId: z.ZodOptional<z.ZodString>;
|
|
7988
8090
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
7989
8091
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
8092
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
7990
8093
|
}, "strip", z.ZodTypeAny, {
|
|
7991
8094
|
email: string;
|
|
7992
8095
|
wabaExternalId: string;
|
|
@@ -7996,6 +8099,7 @@ export declare const channelContract: {
|
|
|
7996
8099
|
channelId?: string | undefined;
|
|
7997
8100
|
status?: "active" | "pending" | undefined;
|
|
7998
8101
|
apiKey?: string | undefined;
|
|
8102
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7999
8103
|
}, {
|
|
8000
8104
|
email: string;
|
|
8001
8105
|
wabaExternalId: string;
|
|
@@ -8005,6 +8109,7 @@ export declare const channelContract: {
|
|
|
8005
8109
|
channelId?: string | undefined;
|
|
8006
8110
|
status?: "active" | "pending" | undefined;
|
|
8007
8111
|
apiKey?: string | undefined;
|
|
8112
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8008
8113
|
}>>;
|
|
8009
8114
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
8010
8115
|
mobileNumber: z.ZodString;
|
|
@@ -8037,6 +8142,7 @@ export declare const channelContract: {
|
|
|
8037
8142
|
channelId?: string | undefined;
|
|
8038
8143
|
status?: "active" | "pending" | undefined;
|
|
8039
8144
|
apiKey?: string | undefined;
|
|
8145
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8040
8146
|
} | undefined;
|
|
8041
8147
|
vonageCredentials?: {
|
|
8042
8148
|
apiKey: string;
|
|
@@ -8061,6 +8167,7 @@ export declare const channelContract: {
|
|
|
8061
8167
|
channelId?: string | undefined;
|
|
8062
8168
|
status?: "active" | "pending" | undefined;
|
|
8063
8169
|
apiKey?: string | undefined;
|
|
8170
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8064
8171
|
} | undefined;
|
|
8065
8172
|
vonageCredentials?: {
|
|
8066
8173
|
apiKey: string;
|
|
@@ -8319,6 +8426,7 @@ export declare const channelContract: {
|
|
|
8319
8426
|
channelId?: string | undefined;
|
|
8320
8427
|
status?: "active" | "pending" | undefined;
|
|
8321
8428
|
apiKey?: string | undefined;
|
|
8429
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8322
8430
|
} | undefined;
|
|
8323
8431
|
vonageCredentials?: {
|
|
8324
8432
|
apiKey: string;
|
|
@@ -8408,6 +8516,7 @@ export declare const channelContract: {
|
|
|
8408
8516
|
channelId?: string | undefined;
|
|
8409
8517
|
status?: "active" | "pending" | undefined;
|
|
8410
8518
|
apiKey?: string | undefined;
|
|
8519
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8411
8520
|
} | undefined;
|
|
8412
8521
|
vonageCredentials?: {
|
|
8413
8522
|
apiKey: string;
|
|
@@ -8499,6 +8608,7 @@ export declare const channelContract: {
|
|
|
8499
8608
|
channelId?: string | undefined;
|
|
8500
8609
|
status?: "active" | "pending" | undefined;
|
|
8501
8610
|
apiKey?: string | undefined;
|
|
8611
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8502
8612
|
} | undefined;
|
|
8503
8613
|
vonageCredentials?: {
|
|
8504
8614
|
apiKey: string;
|
|
@@ -8591,6 +8701,7 @@ export declare const channelContract: {
|
|
|
8591
8701
|
channelId?: string | undefined;
|
|
8592
8702
|
status?: "active" | "pending" | undefined;
|
|
8593
8703
|
apiKey?: string | undefined;
|
|
8704
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8594
8705
|
} | undefined;
|
|
8595
8706
|
vonageCredentials?: {
|
|
8596
8707
|
apiKey: string;
|
|
@@ -8793,6 +8904,7 @@ export declare const channelContract: {
|
|
|
8793
8904
|
channelId: z.ZodOptional<z.ZodString>;
|
|
8794
8905
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
8795
8906
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
8907
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
8796
8908
|
}, "strip", z.ZodTypeAny, {
|
|
8797
8909
|
email: string;
|
|
8798
8910
|
wabaExternalId: string;
|
|
@@ -8802,6 +8914,7 @@ export declare const channelContract: {
|
|
|
8802
8914
|
channelId?: string | undefined;
|
|
8803
8915
|
status?: "active" | "pending" | undefined;
|
|
8804
8916
|
apiKey?: string | undefined;
|
|
8917
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8805
8918
|
}, {
|
|
8806
8919
|
email: string;
|
|
8807
8920
|
wabaExternalId: string;
|
|
@@ -8811,6 +8924,7 @@ export declare const channelContract: {
|
|
|
8811
8924
|
channelId?: string | undefined;
|
|
8812
8925
|
status?: "active" | "pending" | undefined;
|
|
8813
8926
|
apiKey?: string | undefined;
|
|
8927
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8814
8928
|
}>>;
|
|
8815
8929
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
8816
8930
|
mobileNumber: z.ZodString;
|
|
@@ -8843,6 +8957,7 @@ export declare const channelContract: {
|
|
|
8843
8957
|
channelId?: string | undefined;
|
|
8844
8958
|
status?: "active" | "pending" | undefined;
|
|
8845
8959
|
apiKey?: string | undefined;
|
|
8960
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8846
8961
|
} | undefined;
|
|
8847
8962
|
vonageCredentials?: {
|
|
8848
8963
|
apiKey: string;
|
|
@@ -8867,6 +8982,7 @@ export declare const channelContract: {
|
|
|
8867
8982
|
channelId?: string | undefined;
|
|
8868
8983
|
status?: "active" | "pending" | undefined;
|
|
8869
8984
|
apiKey?: string | undefined;
|
|
8985
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8870
8986
|
} | undefined;
|
|
8871
8987
|
vonageCredentials?: {
|
|
8872
8988
|
apiKey: string;
|
|
@@ -9125,6 +9241,7 @@ export declare const channelContract: {
|
|
|
9125
9241
|
channelId?: string | undefined;
|
|
9126
9242
|
status?: "active" | "pending" | undefined;
|
|
9127
9243
|
apiKey?: string | undefined;
|
|
9244
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9128
9245
|
} | undefined;
|
|
9129
9246
|
vonageCredentials?: {
|
|
9130
9247
|
apiKey: string;
|
|
@@ -9214,6 +9331,7 @@ export declare const channelContract: {
|
|
|
9214
9331
|
channelId?: string | undefined;
|
|
9215
9332
|
status?: "active" | "pending" | undefined;
|
|
9216
9333
|
apiKey?: string | undefined;
|
|
9334
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9217
9335
|
} | undefined;
|
|
9218
9336
|
vonageCredentials?: {
|
|
9219
9337
|
apiKey: string;
|
|
@@ -9305,6 +9423,7 @@ export declare const channelContract: {
|
|
|
9305
9423
|
channelId?: string | undefined;
|
|
9306
9424
|
status?: "active" | "pending" | undefined;
|
|
9307
9425
|
apiKey?: string | undefined;
|
|
9426
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9308
9427
|
} | undefined;
|
|
9309
9428
|
vonageCredentials?: {
|
|
9310
9429
|
apiKey: string;
|
|
@@ -9397,6 +9516,7 @@ export declare const channelContract: {
|
|
|
9397
9516
|
channelId?: string | undefined;
|
|
9398
9517
|
status?: "active" | "pending" | undefined;
|
|
9399
9518
|
apiKey?: string | undefined;
|
|
9519
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9400
9520
|
} | undefined;
|
|
9401
9521
|
vonageCredentials?: {
|
|
9402
9522
|
apiKey: string;
|
|
@@ -9530,6 +9650,7 @@ export declare const channelContract: {
|
|
|
9530
9650
|
channelId: z.ZodOptional<z.ZodString>;
|
|
9531
9651
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
9532
9652
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
9653
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
9533
9654
|
}, "strip", z.ZodTypeAny, {
|
|
9534
9655
|
email: string;
|
|
9535
9656
|
wabaExternalId: string;
|
|
@@ -9539,6 +9660,7 @@ export declare const channelContract: {
|
|
|
9539
9660
|
channelId?: string | undefined;
|
|
9540
9661
|
status?: "active" | "pending" | undefined;
|
|
9541
9662
|
apiKey?: string | undefined;
|
|
9663
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9542
9664
|
}, {
|
|
9543
9665
|
email: string;
|
|
9544
9666
|
wabaExternalId: string;
|
|
@@ -9548,6 +9670,7 @@ export declare const channelContract: {
|
|
|
9548
9670
|
channelId?: string | undefined;
|
|
9549
9671
|
status?: "active" | "pending" | undefined;
|
|
9550
9672
|
apiKey?: string | undefined;
|
|
9673
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9551
9674
|
}>>;
|
|
9552
9675
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
9553
9676
|
mobileNumber: z.ZodString;
|
|
@@ -9580,6 +9703,7 @@ export declare const channelContract: {
|
|
|
9580
9703
|
channelId?: string | undefined;
|
|
9581
9704
|
status?: "active" | "pending" | undefined;
|
|
9582
9705
|
apiKey?: string | undefined;
|
|
9706
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9583
9707
|
} | undefined;
|
|
9584
9708
|
vonageCredentials?: {
|
|
9585
9709
|
apiKey: string;
|
|
@@ -9604,6 +9728,7 @@ export declare const channelContract: {
|
|
|
9604
9728
|
channelId?: string | undefined;
|
|
9605
9729
|
status?: "active" | "pending" | undefined;
|
|
9606
9730
|
apiKey?: string | undefined;
|
|
9731
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9607
9732
|
} | undefined;
|
|
9608
9733
|
vonageCredentials?: {
|
|
9609
9734
|
apiKey: string;
|
|
@@ -9633,6 +9758,7 @@ export declare const channelContract: {
|
|
|
9633
9758
|
channelId?: string | undefined;
|
|
9634
9759
|
status?: "active" | "pending" | undefined;
|
|
9635
9760
|
apiKey?: string | undefined;
|
|
9761
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9636
9762
|
} | undefined;
|
|
9637
9763
|
vonageCredentials?: {
|
|
9638
9764
|
apiKey: string;
|
|
@@ -9662,6 +9788,7 @@ export declare const channelContract: {
|
|
|
9662
9788
|
channelId?: string | undefined;
|
|
9663
9789
|
status?: "active" | "pending" | undefined;
|
|
9664
9790
|
apiKey?: string | undefined;
|
|
9791
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9665
9792
|
} | undefined;
|
|
9666
9793
|
vonageCredentials?: {
|
|
9667
9794
|
apiKey: string;
|
|
@@ -9701,6 +9828,7 @@ export declare const channelContract: {
|
|
|
9701
9828
|
channelId: z.ZodOptional<z.ZodString>;
|
|
9702
9829
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
9703
9830
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
9831
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
9704
9832
|
}, "strip", z.ZodTypeAny, {
|
|
9705
9833
|
email: string;
|
|
9706
9834
|
wabaExternalId: string;
|
|
@@ -9710,6 +9838,7 @@ export declare const channelContract: {
|
|
|
9710
9838
|
channelId?: string | undefined;
|
|
9711
9839
|
status?: "active" | "pending" | undefined;
|
|
9712
9840
|
apiKey?: string | undefined;
|
|
9841
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9713
9842
|
}, {
|
|
9714
9843
|
email: string;
|
|
9715
9844
|
wabaExternalId: string;
|
|
@@ -9719,6 +9848,7 @@ export declare const channelContract: {
|
|
|
9719
9848
|
channelId?: string | undefined;
|
|
9720
9849
|
status?: "active" | "pending" | undefined;
|
|
9721
9850
|
apiKey?: string | undefined;
|
|
9851
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9722
9852
|
}>>;
|
|
9723
9853
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
9724
9854
|
mobileNumber: z.ZodString;
|
|
@@ -9751,6 +9881,7 @@ export declare const channelContract: {
|
|
|
9751
9881
|
channelId?: string | undefined;
|
|
9752
9882
|
status?: "active" | "pending" | undefined;
|
|
9753
9883
|
apiKey?: string | undefined;
|
|
9884
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9754
9885
|
} | undefined;
|
|
9755
9886
|
vonageCredentials?: {
|
|
9756
9887
|
apiKey: string;
|
|
@@ -9775,6 +9906,7 @@ export declare const channelContract: {
|
|
|
9775
9906
|
channelId?: string | undefined;
|
|
9776
9907
|
status?: "active" | "pending" | undefined;
|
|
9777
9908
|
apiKey?: string | undefined;
|
|
9909
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9778
9910
|
} | undefined;
|
|
9779
9911
|
vonageCredentials?: {
|
|
9780
9912
|
apiKey: string;
|
|
@@ -10033,6 +10165,7 @@ export declare const channelContract: {
|
|
|
10033
10165
|
channelId?: string | undefined;
|
|
10034
10166
|
status?: "active" | "pending" | undefined;
|
|
10035
10167
|
apiKey?: string | undefined;
|
|
10168
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10036
10169
|
} | undefined;
|
|
10037
10170
|
vonageCredentials?: {
|
|
10038
10171
|
apiKey: string;
|
|
@@ -10122,6 +10255,7 @@ export declare const channelContract: {
|
|
|
10122
10255
|
channelId?: string | undefined;
|
|
10123
10256
|
status?: "active" | "pending" | undefined;
|
|
10124
10257
|
apiKey?: string | undefined;
|
|
10258
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10125
10259
|
} | undefined;
|
|
10126
10260
|
vonageCredentials?: {
|
|
10127
10261
|
apiKey: string;
|
|
@@ -10213,6 +10347,7 @@ export declare const channelContract: {
|
|
|
10213
10347
|
channelId?: string | undefined;
|
|
10214
10348
|
status?: "active" | "pending" | undefined;
|
|
10215
10349
|
apiKey?: string | undefined;
|
|
10350
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10216
10351
|
} | undefined;
|
|
10217
10352
|
vonageCredentials?: {
|
|
10218
10353
|
apiKey: string;
|
|
@@ -10305,6 +10440,7 @@ export declare const channelContract: {
|
|
|
10305
10440
|
channelId?: string | undefined;
|
|
10306
10441
|
status?: "active" | "pending" | undefined;
|
|
10307
10442
|
apiKey?: string | undefined;
|
|
10443
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10308
10444
|
} | undefined;
|
|
10309
10445
|
vonageCredentials?: {
|
|
10310
10446
|
apiKey: string;
|
|
@@ -10728,6 +10864,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10728
10864
|
channelId: z.ZodOptional<z.ZodString>;
|
|
10729
10865
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
10730
10866
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
10867
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
10731
10868
|
}, "strip", z.ZodTypeAny, {
|
|
10732
10869
|
email: string;
|
|
10733
10870
|
wabaExternalId: string;
|
|
@@ -10737,6 +10874,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10737
10874
|
channelId?: string | undefined;
|
|
10738
10875
|
status?: "active" | "pending" | undefined;
|
|
10739
10876
|
apiKey?: string | undefined;
|
|
10877
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10740
10878
|
}, {
|
|
10741
10879
|
email: string;
|
|
10742
10880
|
wabaExternalId: string;
|
|
@@ -10746,6 +10884,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10746
10884
|
channelId?: string | undefined;
|
|
10747
10885
|
status?: "active" | "pending" | undefined;
|
|
10748
10886
|
apiKey?: string | undefined;
|
|
10887
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10749
10888
|
}>>;
|
|
10750
10889
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
10751
10890
|
mobileNumber: z.ZodString;
|
|
@@ -10778,6 +10917,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10778
10917
|
channelId?: string | undefined;
|
|
10779
10918
|
status?: "active" | "pending" | undefined;
|
|
10780
10919
|
apiKey?: string | undefined;
|
|
10920
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10781
10921
|
} | undefined;
|
|
10782
10922
|
vonageCredentials?: {
|
|
10783
10923
|
apiKey: string;
|
|
@@ -10802,6 +10942,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10802
10942
|
channelId?: string | undefined;
|
|
10803
10943
|
status?: "active" | "pending" | undefined;
|
|
10804
10944
|
apiKey?: string | undefined;
|
|
10945
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10805
10946
|
} | undefined;
|
|
10806
10947
|
vonageCredentials?: {
|
|
10807
10948
|
apiKey: string;
|
|
@@ -10833,6 +10974,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10833
10974
|
channelId?: string | undefined;
|
|
10834
10975
|
status?: "active" | "pending" | undefined;
|
|
10835
10976
|
apiKey?: string | undefined;
|
|
10977
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10836
10978
|
} | undefined;
|
|
10837
10979
|
vonageCredentials?: {
|
|
10838
10980
|
apiKey: string;
|
|
@@ -10864,6 +11006,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10864
11006
|
channelId?: string | undefined;
|
|
10865
11007
|
status?: "active" | "pending" | undefined;
|
|
10866
11008
|
apiKey?: string | undefined;
|
|
11009
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10867
11010
|
} | undefined;
|
|
10868
11011
|
vonageCredentials?: {
|
|
10869
11012
|
apiKey: string;
|
|
@@ -10905,6 +11048,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10905
11048
|
channelId: z.ZodOptional<z.ZodString>;
|
|
10906
11049
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
10907
11050
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
11051
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
10908
11052
|
}, "strip", z.ZodTypeAny, {
|
|
10909
11053
|
email: string;
|
|
10910
11054
|
wabaExternalId: string;
|
|
@@ -10914,6 +11058,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10914
11058
|
channelId?: string | undefined;
|
|
10915
11059
|
status?: "active" | "pending" | undefined;
|
|
10916
11060
|
apiKey?: string | undefined;
|
|
11061
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10917
11062
|
}, {
|
|
10918
11063
|
email: string;
|
|
10919
11064
|
wabaExternalId: string;
|
|
@@ -10923,6 +11068,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10923
11068
|
channelId?: string | undefined;
|
|
10924
11069
|
status?: "active" | "pending" | undefined;
|
|
10925
11070
|
apiKey?: string | undefined;
|
|
11071
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10926
11072
|
}>>;
|
|
10927
11073
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
10928
11074
|
mobileNumber: z.ZodString;
|
|
@@ -10955,6 +11101,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10955
11101
|
channelId?: string | undefined;
|
|
10956
11102
|
status?: "active" | "pending" | undefined;
|
|
10957
11103
|
apiKey?: string | undefined;
|
|
11104
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10958
11105
|
} | undefined;
|
|
10959
11106
|
vonageCredentials?: {
|
|
10960
11107
|
apiKey: string;
|
|
@@ -10979,6 +11126,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
10979
11126
|
channelId?: string | undefined;
|
|
10980
11127
|
status?: "active" | "pending" | undefined;
|
|
10981
11128
|
apiKey?: string | undefined;
|
|
11129
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10982
11130
|
} | undefined;
|
|
10983
11131
|
vonageCredentials?: {
|
|
10984
11132
|
apiKey: string;
|
|
@@ -11237,6 +11385,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11237
11385
|
channelId?: string | undefined;
|
|
11238
11386
|
status?: "active" | "pending" | undefined;
|
|
11239
11387
|
apiKey?: string | undefined;
|
|
11388
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11240
11389
|
} | undefined;
|
|
11241
11390
|
vonageCredentials?: {
|
|
11242
11391
|
apiKey: string;
|
|
@@ -11326,6 +11475,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11326
11475
|
channelId?: string | undefined;
|
|
11327
11476
|
status?: "active" | "pending" | undefined;
|
|
11328
11477
|
apiKey?: string | undefined;
|
|
11478
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11329
11479
|
} | undefined;
|
|
11330
11480
|
vonageCredentials?: {
|
|
11331
11481
|
apiKey: string;
|
|
@@ -11417,6 +11567,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11417
11567
|
channelId?: string | undefined;
|
|
11418
11568
|
status?: "active" | "pending" | undefined;
|
|
11419
11569
|
apiKey?: string | undefined;
|
|
11570
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11420
11571
|
} | undefined;
|
|
11421
11572
|
vonageCredentials?: {
|
|
11422
11573
|
apiKey: string;
|
|
@@ -11509,6 +11660,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11509
11660
|
channelId?: string | undefined;
|
|
11510
11661
|
status?: "active" | "pending" | undefined;
|
|
11511
11662
|
apiKey?: string | undefined;
|
|
11663
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11512
11664
|
} | undefined;
|
|
11513
11665
|
vonageCredentials?: {
|
|
11514
11666
|
apiKey: string;
|
|
@@ -11631,6 +11783,7 @@ export declare const channelBotContract: {
|
|
|
11631
11783
|
channelId: z.ZodOptional<z.ZodString>;
|
|
11632
11784
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
11633
11785
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
11786
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
11634
11787
|
}, "strip", z.ZodTypeAny, {
|
|
11635
11788
|
email: string;
|
|
11636
11789
|
wabaExternalId: string;
|
|
@@ -11640,6 +11793,7 @@ export declare const channelBotContract: {
|
|
|
11640
11793
|
channelId?: string | undefined;
|
|
11641
11794
|
status?: "active" | "pending" | undefined;
|
|
11642
11795
|
apiKey?: string | undefined;
|
|
11796
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11643
11797
|
}, {
|
|
11644
11798
|
email: string;
|
|
11645
11799
|
wabaExternalId: string;
|
|
@@ -11649,6 +11803,7 @@ export declare const channelBotContract: {
|
|
|
11649
11803
|
channelId?: string | undefined;
|
|
11650
11804
|
status?: "active" | "pending" | undefined;
|
|
11651
11805
|
apiKey?: string | undefined;
|
|
11806
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11652
11807
|
}>>;
|
|
11653
11808
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
11654
11809
|
mobileNumber: z.ZodString;
|
|
@@ -11681,6 +11836,7 @@ export declare const channelBotContract: {
|
|
|
11681
11836
|
channelId?: string | undefined;
|
|
11682
11837
|
status?: "active" | "pending" | undefined;
|
|
11683
11838
|
apiKey?: string | undefined;
|
|
11839
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11684
11840
|
} | undefined;
|
|
11685
11841
|
vonageCredentials?: {
|
|
11686
11842
|
apiKey: string;
|
|
@@ -11705,6 +11861,7 @@ export declare const channelBotContract: {
|
|
|
11705
11861
|
channelId?: string | undefined;
|
|
11706
11862
|
status?: "active" | "pending" | undefined;
|
|
11707
11863
|
apiKey?: string | undefined;
|
|
11864
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11708
11865
|
} | undefined;
|
|
11709
11866
|
vonageCredentials?: {
|
|
11710
11867
|
apiKey: string;
|
|
@@ -11963,6 +12120,7 @@ export declare const channelBotContract: {
|
|
|
11963
12120
|
channelId?: string | undefined;
|
|
11964
12121
|
status?: "active" | "pending" | undefined;
|
|
11965
12122
|
apiKey?: string | undefined;
|
|
12123
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11966
12124
|
} | undefined;
|
|
11967
12125
|
vonageCredentials?: {
|
|
11968
12126
|
apiKey: string;
|
|
@@ -12052,6 +12210,7 @@ export declare const channelBotContract: {
|
|
|
12052
12210
|
channelId?: string | undefined;
|
|
12053
12211
|
status?: "active" | "pending" | undefined;
|
|
12054
12212
|
apiKey?: string | undefined;
|
|
12213
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12055
12214
|
} | undefined;
|
|
12056
12215
|
vonageCredentials?: {
|
|
12057
12216
|
apiKey: string;
|
|
@@ -12143,6 +12302,7 @@ export declare const channelBotContract: {
|
|
|
12143
12302
|
channelId?: string | undefined;
|
|
12144
12303
|
status?: "active" | "pending" | undefined;
|
|
12145
12304
|
apiKey?: string | undefined;
|
|
12305
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12146
12306
|
} | undefined;
|
|
12147
12307
|
vonageCredentials?: {
|
|
12148
12308
|
apiKey: string;
|
|
@@ -12235,6 +12395,7 @@ export declare const channelBotContract: {
|
|
|
12235
12395
|
channelId?: string | undefined;
|
|
12236
12396
|
status?: "active" | "pending" | undefined;
|
|
12237
12397
|
apiKey?: string | undefined;
|
|
12398
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12238
12399
|
} | undefined;
|
|
12239
12400
|
vonageCredentials?: {
|
|
12240
12401
|
apiKey: string;
|
|
@@ -12359,6 +12520,7 @@ export declare const channelBotContract: {
|
|
|
12359
12520
|
channelId: z.ZodOptional<z.ZodString>;
|
|
12360
12521
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
12361
12522
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
12523
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
12362
12524
|
}, "strip", z.ZodTypeAny, {
|
|
12363
12525
|
email: string;
|
|
12364
12526
|
wabaExternalId: string;
|
|
@@ -12368,6 +12530,7 @@ export declare const channelBotContract: {
|
|
|
12368
12530
|
channelId?: string | undefined;
|
|
12369
12531
|
status?: "active" | "pending" | undefined;
|
|
12370
12532
|
apiKey?: string | undefined;
|
|
12533
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12371
12534
|
}, {
|
|
12372
12535
|
email: string;
|
|
12373
12536
|
wabaExternalId: string;
|
|
@@ -12377,6 +12540,7 @@ export declare const channelBotContract: {
|
|
|
12377
12540
|
channelId?: string | undefined;
|
|
12378
12541
|
status?: "active" | "pending" | undefined;
|
|
12379
12542
|
apiKey?: string | undefined;
|
|
12543
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12380
12544
|
}>>;
|
|
12381
12545
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
12382
12546
|
mobileNumber: z.ZodString;
|
|
@@ -12409,6 +12573,7 @@ export declare const channelBotContract: {
|
|
|
12409
12573
|
channelId?: string | undefined;
|
|
12410
12574
|
status?: "active" | "pending" | undefined;
|
|
12411
12575
|
apiKey?: string | undefined;
|
|
12576
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12412
12577
|
} | undefined;
|
|
12413
12578
|
vonageCredentials?: {
|
|
12414
12579
|
apiKey: string;
|
|
@@ -12433,6 +12598,7 @@ export declare const channelBotContract: {
|
|
|
12433
12598
|
channelId?: string | undefined;
|
|
12434
12599
|
status?: "active" | "pending" | undefined;
|
|
12435
12600
|
apiKey?: string | undefined;
|
|
12601
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12436
12602
|
} | undefined;
|
|
12437
12603
|
vonageCredentials?: {
|
|
12438
12604
|
apiKey: string;
|
|
@@ -12691,6 +12857,7 @@ export declare const channelBotContract: {
|
|
|
12691
12857
|
channelId?: string | undefined;
|
|
12692
12858
|
status?: "active" | "pending" | undefined;
|
|
12693
12859
|
apiKey?: string | undefined;
|
|
12860
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12694
12861
|
} | undefined;
|
|
12695
12862
|
vonageCredentials?: {
|
|
12696
12863
|
apiKey: string;
|
|
@@ -12780,6 +12947,7 @@ export declare const channelBotContract: {
|
|
|
12780
12947
|
channelId?: string | undefined;
|
|
12781
12948
|
status?: "active" | "pending" | undefined;
|
|
12782
12949
|
apiKey?: string | undefined;
|
|
12950
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12783
12951
|
} | undefined;
|
|
12784
12952
|
vonageCredentials?: {
|
|
12785
12953
|
apiKey: string;
|
|
@@ -12871,6 +13039,7 @@ export declare const channelBotContract: {
|
|
|
12871
13039
|
channelId?: string | undefined;
|
|
12872
13040
|
status?: "active" | "pending" | undefined;
|
|
12873
13041
|
apiKey?: string | undefined;
|
|
13042
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12874
13043
|
} | undefined;
|
|
12875
13044
|
vonageCredentials?: {
|
|
12876
13045
|
apiKey: string;
|
|
@@ -12963,6 +13132,7 @@ export declare const channelBotContract: {
|
|
|
12963
13132
|
channelId?: string | undefined;
|
|
12964
13133
|
status?: "active" | "pending" | undefined;
|
|
12965
13134
|
apiKey?: string | undefined;
|
|
13135
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12966
13136
|
} | undefined;
|
|
12967
13137
|
vonageCredentials?: {
|
|
12968
13138
|
apiKey: string;
|
|
@@ -13125,6 +13295,7 @@ export declare const channelSMSContract: {
|
|
|
13125
13295
|
channelId: z.ZodOptional<z.ZodString>;
|
|
13126
13296
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
13127
13297
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
13298
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
13128
13299
|
}, "strip", z.ZodTypeAny, {
|
|
13129
13300
|
email: string;
|
|
13130
13301
|
wabaExternalId: string;
|
|
@@ -13134,6 +13305,7 @@ export declare const channelSMSContract: {
|
|
|
13134
13305
|
channelId?: string | undefined;
|
|
13135
13306
|
status?: "active" | "pending" | undefined;
|
|
13136
13307
|
apiKey?: string | undefined;
|
|
13308
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13137
13309
|
}, {
|
|
13138
13310
|
email: string;
|
|
13139
13311
|
wabaExternalId: string;
|
|
@@ -13143,6 +13315,7 @@ export declare const channelSMSContract: {
|
|
|
13143
13315
|
channelId?: string | undefined;
|
|
13144
13316
|
status?: "active" | "pending" | undefined;
|
|
13145
13317
|
apiKey?: string | undefined;
|
|
13318
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13146
13319
|
}>>;
|
|
13147
13320
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
13148
13321
|
mobileNumber: z.ZodString;
|
|
@@ -13175,6 +13348,7 @@ export declare const channelSMSContract: {
|
|
|
13175
13348
|
channelId?: string | undefined;
|
|
13176
13349
|
status?: "active" | "pending" | undefined;
|
|
13177
13350
|
apiKey?: string | undefined;
|
|
13351
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13178
13352
|
} | undefined;
|
|
13179
13353
|
vonageCredentials?: {
|
|
13180
13354
|
apiKey: string;
|
|
@@ -13199,6 +13373,7 @@ export declare const channelSMSContract: {
|
|
|
13199
13373
|
channelId?: string | undefined;
|
|
13200
13374
|
status?: "active" | "pending" | undefined;
|
|
13201
13375
|
apiKey?: string | undefined;
|
|
13376
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13202
13377
|
} | undefined;
|
|
13203
13378
|
vonageCredentials?: {
|
|
13204
13379
|
apiKey: string;
|
|
@@ -13457,6 +13632,7 @@ export declare const channelSMSContract: {
|
|
|
13457
13632
|
channelId?: string | undefined;
|
|
13458
13633
|
status?: "active" | "pending" | undefined;
|
|
13459
13634
|
apiKey?: string | undefined;
|
|
13635
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13460
13636
|
} | undefined;
|
|
13461
13637
|
vonageCredentials?: {
|
|
13462
13638
|
apiKey: string;
|
|
@@ -13546,6 +13722,7 @@ export declare const channelSMSContract: {
|
|
|
13546
13722
|
channelId?: string | undefined;
|
|
13547
13723
|
status?: "active" | "pending" | undefined;
|
|
13548
13724
|
apiKey?: string | undefined;
|
|
13725
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13549
13726
|
} | undefined;
|
|
13550
13727
|
vonageCredentials?: {
|
|
13551
13728
|
apiKey: string;
|
|
@@ -13637,6 +13814,7 @@ export declare const channelSMSContract: {
|
|
|
13637
13814
|
channelId?: string | undefined;
|
|
13638
13815
|
status?: "active" | "pending" | undefined;
|
|
13639
13816
|
apiKey?: string | undefined;
|
|
13817
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13640
13818
|
} | undefined;
|
|
13641
13819
|
vonageCredentials?: {
|
|
13642
13820
|
apiKey: string;
|
|
@@ -13729,6 +13907,7 @@ export declare const channelSMSContract: {
|
|
|
13729
13907
|
channelId?: string | undefined;
|
|
13730
13908
|
status?: "active" | "pending" | undefined;
|
|
13731
13909
|
apiKey?: string | undefined;
|
|
13910
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13732
13911
|
} | undefined;
|
|
13733
13912
|
vonageCredentials?: {
|
|
13734
13913
|
apiKey: string;
|