@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.
- package/dist/api-contracts/src/automation-queue/index.d.ts +112 -0
- package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -1
- 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 +377 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +66 -0
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +107 -10
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +1114 -40
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-intelligence/index.d.ts +115 -0
- package/dist/api-contracts/src/cx-intelligence/index.d.ts.map +1 -0
- 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/facebook-feed/index.d.ts +139 -5
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +9 -0
- 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 +417 -18
- package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/schema.d.ts +144 -2
- 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/instagram/index.d.ts +110 -5
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +98 -5
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +11 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +110 -5
- 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 +25 -5
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/subscription/index.d.ts +184 -184
- package/dist/api-contracts/src/subscription/schema.d.ts +216 -216
- package/dist/api-contracts/src/telegram/index.d.ts +80 -5
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +80 -5
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +1099 -5
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +94 -5
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +22 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +61 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +61 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -27,6 +27,7 @@ export declare const facebookFeedContract: {
|
|
27
27
|
channelId: z.ZodOptional<z.ZodString>;
|
28
28
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
29
29
|
apiKey: z.ZodOptional<z.ZodString>;
|
30
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
30
31
|
}, "strip", z.ZodTypeAny, {
|
31
32
|
email: string;
|
32
33
|
wabaExternalId: string;
|
@@ -36,6 +37,7 @@ export declare const facebookFeedContract: {
|
|
36
37
|
channelId?: string | undefined;
|
37
38
|
status?: "active" | "pending" | undefined;
|
38
39
|
apiKey?: string | undefined;
|
40
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
39
41
|
}, {
|
40
42
|
email: string;
|
41
43
|
wabaExternalId: string;
|
@@ -45,6 +47,7 @@ export declare const facebookFeedContract: {
|
|
45
47
|
channelId?: string | undefined;
|
46
48
|
status?: "active" | "pending" | undefined;
|
47
49
|
apiKey?: string | undefined;
|
50
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
48
51
|
}>>;
|
49
52
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
50
53
|
mobileNumber: z.ZodString;
|
@@ -77,6 +80,7 @@ export declare const facebookFeedContract: {
|
|
77
80
|
channelId?: string | undefined;
|
78
81
|
status?: "active" | "pending" | undefined;
|
79
82
|
apiKey?: string | undefined;
|
83
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
80
84
|
} | undefined;
|
81
85
|
vonageCredentials?: {
|
82
86
|
apiKey: string;
|
@@ -101,6 +105,7 @@ export declare const facebookFeedContract: {
|
|
101
105
|
channelId?: string | undefined;
|
102
106
|
status?: "active" | "pending" | undefined;
|
103
107
|
apiKey?: string | undefined;
|
108
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
104
109
|
} | undefined;
|
105
110
|
vonageCredentials?: {
|
106
111
|
apiKey: string;
|
@@ -155,6 +160,7 @@ export declare const facebookFeedContract: {
|
|
155
160
|
channelId?: string | undefined;
|
156
161
|
status?: "active" | "pending" | undefined;
|
157
162
|
apiKey?: string | undefined;
|
163
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
158
164
|
} | undefined;
|
159
165
|
vonageCredentials?: {
|
160
166
|
apiKey: string;
|
@@ -197,6 +203,7 @@ export declare const facebookFeedContract: {
|
|
197
203
|
channelId?: string | undefined;
|
198
204
|
status?: "active" | "pending" | undefined;
|
199
205
|
apiKey?: string | undefined;
|
206
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
200
207
|
} | undefined;
|
201
208
|
vonageCredentials?: {
|
202
209
|
apiKey: string;
|
@@ -244,6 +251,7 @@ export declare const facebookFeedContract: {
|
|
244
251
|
channelId: z.ZodOptional<z.ZodString>;
|
245
252
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
246
253
|
apiKey: z.ZodOptional<z.ZodString>;
|
254
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
247
255
|
}, "strip", z.ZodTypeAny, {
|
248
256
|
email: string;
|
249
257
|
wabaExternalId: string;
|
@@ -253,6 +261,7 @@ export declare const facebookFeedContract: {
|
|
253
261
|
channelId?: string | undefined;
|
254
262
|
status?: "active" | "pending" | undefined;
|
255
263
|
apiKey?: string | undefined;
|
264
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
256
265
|
}, {
|
257
266
|
email: string;
|
258
267
|
wabaExternalId: string;
|
@@ -262,6 +271,7 @@ export declare const facebookFeedContract: {
|
|
262
271
|
channelId?: string | undefined;
|
263
272
|
status?: "active" | "pending" | undefined;
|
264
273
|
apiKey?: string | undefined;
|
274
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
265
275
|
}>>;
|
266
276
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
267
277
|
mobileNumber: z.ZodString;
|
@@ -294,6 +304,7 @@ export declare const facebookFeedContract: {
|
|
294
304
|
channelId?: string | undefined;
|
295
305
|
status?: "active" | "pending" | undefined;
|
296
306
|
apiKey?: string | undefined;
|
307
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
297
308
|
} | undefined;
|
298
309
|
vonageCredentials?: {
|
299
310
|
apiKey: string;
|
@@ -318,6 +329,7 @@ export declare const facebookFeedContract: {
|
|
318
329
|
channelId?: string | undefined;
|
319
330
|
status?: "active" | "pending" | undefined;
|
320
331
|
apiKey?: string | undefined;
|
332
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
321
333
|
} | undefined;
|
322
334
|
vonageCredentials?: {
|
323
335
|
apiKey: string;
|
@@ -372,6 +384,7 @@ export declare const facebookFeedContract: {
|
|
372
384
|
channelId?: string | undefined;
|
373
385
|
status?: "active" | "pending" | undefined;
|
374
386
|
apiKey?: string | undefined;
|
387
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
375
388
|
} | undefined;
|
376
389
|
vonageCredentials?: {
|
377
390
|
apiKey: string;
|
@@ -414,6 +427,7 @@ export declare const facebookFeedContract: {
|
|
414
427
|
channelId?: string | undefined;
|
415
428
|
status?: "active" | "pending" | undefined;
|
416
429
|
apiKey?: string | undefined;
|
430
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
417
431
|
} | undefined;
|
418
432
|
vonageCredentials?: {
|
419
433
|
apiKey: string;
|
@@ -458,6 +472,7 @@ export declare const facebookFeedContract: {
|
|
458
472
|
channelId?: string | undefined;
|
459
473
|
status?: "active" | "pending" | undefined;
|
460
474
|
apiKey?: string | undefined;
|
475
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
461
476
|
} | undefined;
|
462
477
|
vonageCredentials?: {
|
463
478
|
apiKey: string;
|
@@ -503,6 +518,7 @@ export declare const facebookFeedContract: {
|
|
503
518
|
channelId?: string | undefined;
|
504
519
|
status?: "active" | "pending" | undefined;
|
505
520
|
apiKey?: string | undefined;
|
521
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
506
522
|
} | undefined;
|
507
523
|
vonageCredentials?: {
|
508
524
|
apiKey: string;
|
@@ -572,6 +588,7 @@ export declare const facebookFeedContract: {
|
|
572
588
|
channelId: z.ZodOptional<z.ZodString>;
|
573
589
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
574
590
|
apiKey: z.ZodOptional<z.ZodString>;
|
591
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
575
592
|
}, "strip", z.ZodTypeAny, {
|
576
593
|
email: string;
|
577
594
|
wabaExternalId: string;
|
@@ -581,6 +598,7 @@ export declare const facebookFeedContract: {
|
|
581
598
|
channelId?: string | undefined;
|
582
599
|
status?: "active" | "pending" | undefined;
|
583
600
|
apiKey?: string | undefined;
|
601
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
584
602
|
}, {
|
585
603
|
email: string;
|
586
604
|
wabaExternalId: string;
|
@@ -590,6 +608,7 @@ export declare const facebookFeedContract: {
|
|
590
608
|
channelId?: string | undefined;
|
591
609
|
status?: "active" | "pending" | undefined;
|
592
610
|
apiKey?: string | undefined;
|
611
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
593
612
|
}>>;
|
594
613
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
595
614
|
mobileNumber: z.ZodString;
|
@@ -622,6 +641,7 @@ export declare const facebookFeedContract: {
|
|
622
641
|
channelId?: string | undefined;
|
623
642
|
status?: "active" | "pending" | undefined;
|
624
643
|
apiKey?: string | undefined;
|
644
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
625
645
|
} | undefined;
|
626
646
|
vonageCredentials?: {
|
627
647
|
apiKey: string;
|
@@ -646,6 +666,7 @@ export declare const facebookFeedContract: {
|
|
646
666
|
channelId?: string | undefined;
|
647
667
|
status?: "active" | "pending" | undefined;
|
648
668
|
apiKey?: string | undefined;
|
669
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
649
670
|
} | undefined;
|
650
671
|
vonageCredentials?: {
|
651
672
|
apiKey: string;
|
@@ -700,6 +721,7 @@ export declare const facebookFeedContract: {
|
|
700
721
|
channelId?: string | undefined;
|
701
722
|
status?: "active" | "pending" | undefined;
|
702
723
|
apiKey?: string | undefined;
|
724
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
703
725
|
} | undefined;
|
704
726
|
vonageCredentials?: {
|
705
727
|
apiKey: string;
|
@@ -742,6 +764,7 @@ export declare const facebookFeedContract: {
|
|
742
764
|
channelId?: string | undefined;
|
743
765
|
status?: "active" | "pending" | undefined;
|
744
766
|
apiKey?: string | undefined;
|
767
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
745
768
|
} | undefined;
|
746
769
|
vonageCredentials?: {
|
747
770
|
apiKey: string;
|
@@ -789,6 +812,7 @@ export declare const facebookFeedContract: {
|
|
789
812
|
channelId: z.ZodOptional<z.ZodString>;
|
790
813
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
791
814
|
apiKey: z.ZodOptional<z.ZodString>;
|
815
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
792
816
|
}, "strip", z.ZodTypeAny, {
|
793
817
|
email: string;
|
794
818
|
wabaExternalId: string;
|
@@ -798,6 +822,7 @@ export declare const facebookFeedContract: {
|
|
798
822
|
channelId?: string | undefined;
|
799
823
|
status?: "active" | "pending" | undefined;
|
800
824
|
apiKey?: string | undefined;
|
825
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
801
826
|
}, {
|
802
827
|
email: string;
|
803
828
|
wabaExternalId: string;
|
@@ -807,6 +832,7 @@ export declare const facebookFeedContract: {
|
|
807
832
|
channelId?: string | undefined;
|
808
833
|
status?: "active" | "pending" | undefined;
|
809
834
|
apiKey?: string | undefined;
|
835
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
810
836
|
}>>;
|
811
837
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
812
838
|
mobileNumber: z.ZodString;
|
@@ -839,6 +865,7 @@ export declare const facebookFeedContract: {
|
|
839
865
|
channelId?: string | undefined;
|
840
866
|
status?: "active" | "pending" | undefined;
|
841
867
|
apiKey?: string | undefined;
|
868
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
842
869
|
} | undefined;
|
843
870
|
vonageCredentials?: {
|
844
871
|
apiKey: string;
|
@@ -863,6 +890,7 @@ export declare const facebookFeedContract: {
|
|
863
890
|
channelId?: string | undefined;
|
864
891
|
status?: "active" | "pending" | undefined;
|
865
892
|
apiKey?: string | undefined;
|
893
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
866
894
|
} | undefined;
|
867
895
|
vonageCredentials?: {
|
868
896
|
apiKey: string;
|
@@ -917,6 +945,7 @@ export declare const facebookFeedContract: {
|
|
917
945
|
channelId?: string | undefined;
|
918
946
|
status?: "active" | "pending" | undefined;
|
919
947
|
apiKey?: string | undefined;
|
948
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
920
949
|
} | undefined;
|
921
950
|
vonageCredentials?: {
|
922
951
|
apiKey: string;
|
@@ -959,6 +988,7 @@ export declare const facebookFeedContract: {
|
|
959
988
|
channelId?: string | undefined;
|
960
989
|
status?: "active" | "pending" | undefined;
|
961
990
|
apiKey?: string | undefined;
|
991
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
962
992
|
} | undefined;
|
963
993
|
vonageCredentials?: {
|
964
994
|
apiKey: string;
|
@@ -1003,6 +1033,7 @@ export declare const facebookFeedContract: {
|
|
1003
1033
|
channelId?: string | undefined;
|
1004
1034
|
status?: "active" | "pending" | undefined;
|
1005
1035
|
apiKey?: string | undefined;
|
1036
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1006
1037
|
} | undefined;
|
1007
1038
|
vonageCredentials?: {
|
1008
1039
|
apiKey: string;
|
@@ -1048,6 +1079,7 @@ export declare const facebookFeedContract: {
|
|
1048
1079
|
channelId?: string | undefined;
|
1049
1080
|
status?: "active" | "pending" | undefined;
|
1050
1081
|
apiKey?: string | undefined;
|
1082
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1051
1083
|
} | undefined;
|
1052
1084
|
vonageCredentials?: {
|
1053
1085
|
apiKey: string;
|
@@ -1129,6 +1161,7 @@ export declare const facebookFeedContract: {
|
|
1129
1161
|
channelId: z.ZodOptional<z.ZodString>;
|
1130
1162
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
1131
1163
|
apiKey: z.ZodOptional<z.ZodString>;
|
1164
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
1132
1165
|
}, "strip", z.ZodTypeAny, {
|
1133
1166
|
email: string;
|
1134
1167
|
wabaExternalId: string;
|
@@ -1138,6 +1171,7 @@ export declare const facebookFeedContract: {
|
|
1138
1171
|
channelId?: string | undefined;
|
1139
1172
|
status?: "active" | "pending" | undefined;
|
1140
1173
|
apiKey?: string | undefined;
|
1174
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1141
1175
|
}, {
|
1142
1176
|
email: string;
|
1143
1177
|
wabaExternalId: string;
|
@@ -1147,6 +1181,7 @@ export declare const facebookFeedContract: {
|
|
1147
1181
|
channelId?: string | undefined;
|
1148
1182
|
status?: "active" | "pending" | undefined;
|
1149
1183
|
apiKey?: string | undefined;
|
1184
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1150
1185
|
}>>;
|
1151
1186
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
1152
1187
|
mobileNumber: z.ZodString;
|
@@ -1179,6 +1214,7 @@ export declare const facebookFeedContract: {
|
|
1179
1214
|
channelId?: string | undefined;
|
1180
1215
|
status?: "active" | "pending" | undefined;
|
1181
1216
|
apiKey?: string | undefined;
|
1217
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1182
1218
|
} | undefined;
|
1183
1219
|
vonageCredentials?: {
|
1184
1220
|
apiKey: string;
|
@@ -1203,6 +1239,7 @@ export declare const facebookFeedContract: {
|
|
1203
1239
|
channelId?: string | undefined;
|
1204
1240
|
status?: "active" | "pending" | undefined;
|
1205
1241
|
apiKey?: string | undefined;
|
1242
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1206
1243
|
} | undefined;
|
1207
1244
|
vonageCredentials?: {
|
1208
1245
|
apiKey: string;
|
@@ -1257,6 +1294,7 @@ export declare const facebookFeedContract: {
|
|
1257
1294
|
channelId?: string | undefined;
|
1258
1295
|
status?: "active" | "pending" | undefined;
|
1259
1296
|
apiKey?: string | undefined;
|
1297
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1260
1298
|
} | undefined;
|
1261
1299
|
vonageCredentials?: {
|
1262
1300
|
apiKey: string;
|
@@ -1299,6 +1337,7 @@ export declare const facebookFeedContract: {
|
|
1299
1337
|
channelId?: string | undefined;
|
1300
1338
|
status?: "active" | "pending" | undefined;
|
1301
1339
|
apiKey?: string | undefined;
|
1340
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1302
1341
|
} | undefined;
|
1303
1342
|
vonageCredentials?: {
|
1304
1343
|
apiKey: string;
|
@@ -1343,6 +1382,7 @@ export declare const facebookFeedContract: {
|
|
1343
1382
|
channelId?: string | undefined;
|
1344
1383
|
status?: "active" | "pending" | undefined;
|
1345
1384
|
apiKey?: string | undefined;
|
1385
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1346
1386
|
} | undefined;
|
1347
1387
|
vonageCredentials?: {
|
1348
1388
|
apiKey: string;
|
@@ -1388,6 +1428,7 @@ export declare const facebookFeedContract: {
|
|
1388
1428
|
channelId?: string | undefined;
|
1389
1429
|
status?: "active" | "pending" | undefined;
|
1390
1430
|
apiKey?: string | undefined;
|
1431
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1391
1432
|
} | undefined;
|
1392
1433
|
vonageCredentials?: {
|
1393
1434
|
apiKey: string;
|
@@ -1469,6 +1510,7 @@ export declare const facebookFeedContract: {
|
|
1469
1510
|
channelId: z.ZodOptional<z.ZodString>;
|
1470
1511
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
1471
1512
|
apiKey: z.ZodOptional<z.ZodString>;
|
1513
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
1472
1514
|
}, "strip", z.ZodTypeAny, {
|
1473
1515
|
email: string;
|
1474
1516
|
wabaExternalId: string;
|
@@ -1478,6 +1520,7 @@ export declare const facebookFeedContract: {
|
|
1478
1520
|
channelId?: string | undefined;
|
1479
1521
|
status?: "active" | "pending" | undefined;
|
1480
1522
|
apiKey?: string | undefined;
|
1523
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1481
1524
|
}, {
|
1482
1525
|
email: string;
|
1483
1526
|
wabaExternalId: string;
|
@@ -1487,6 +1530,7 @@ export declare const facebookFeedContract: {
|
|
1487
1530
|
channelId?: string | undefined;
|
1488
1531
|
status?: "active" | "pending" | undefined;
|
1489
1532
|
apiKey?: string | undefined;
|
1533
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1490
1534
|
}>>;
|
1491
1535
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
1492
1536
|
mobileNumber: z.ZodString;
|
@@ -1519,6 +1563,7 @@ export declare const facebookFeedContract: {
|
|
1519
1563
|
channelId?: string | undefined;
|
1520
1564
|
status?: "active" | "pending" | undefined;
|
1521
1565
|
apiKey?: string | undefined;
|
1566
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1522
1567
|
} | undefined;
|
1523
1568
|
vonageCredentials?: {
|
1524
1569
|
apiKey: string;
|
@@ -1543,6 +1588,7 @@ export declare const facebookFeedContract: {
|
|
1543
1588
|
channelId?: string | undefined;
|
1544
1589
|
status?: "active" | "pending" | undefined;
|
1545
1590
|
apiKey?: string | undefined;
|
1591
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1546
1592
|
} | undefined;
|
1547
1593
|
vonageCredentials?: {
|
1548
1594
|
apiKey: string;
|
@@ -1597,6 +1643,7 @@ export declare const facebookFeedContract: {
|
|
1597
1643
|
channelId?: string | undefined;
|
1598
1644
|
status?: "active" | "pending" | undefined;
|
1599
1645
|
apiKey?: string | undefined;
|
1646
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1600
1647
|
} | undefined;
|
1601
1648
|
vonageCredentials?: {
|
1602
1649
|
apiKey: string;
|
@@ -1639,6 +1686,7 @@ export declare const facebookFeedContract: {
|
|
1639
1686
|
channelId?: string | undefined;
|
1640
1687
|
status?: "active" | "pending" | undefined;
|
1641
1688
|
apiKey?: string | undefined;
|
1689
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1642
1690
|
} | undefined;
|
1643
1691
|
vonageCredentials?: {
|
1644
1692
|
apiKey: string;
|
@@ -1683,6 +1731,7 @@ export declare const facebookFeedContract: {
|
|
1683
1731
|
channelId?: string | undefined;
|
1684
1732
|
status?: "active" | "pending" | undefined;
|
1685
1733
|
apiKey?: string | undefined;
|
1734
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1686
1735
|
} | undefined;
|
1687
1736
|
vonageCredentials?: {
|
1688
1737
|
apiKey: string;
|
@@ -1728,6 +1777,7 @@ export declare const facebookFeedContract: {
|
|
1728
1777
|
channelId?: string | undefined;
|
1729
1778
|
status?: "active" | "pending" | undefined;
|
1730
1779
|
apiKey?: string | undefined;
|
1780
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1731
1781
|
} | undefined;
|
1732
1782
|
vonageCredentials?: {
|
1733
1783
|
apiKey: string;
|
@@ -1796,6 +1846,7 @@ export declare const facebookFeedContract: {
|
|
1796
1846
|
channelId: z.ZodOptional<z.ZodString>;
|
1797
1847
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
1798
1848
|
apiKey: z.ZodOptional<z.ZodString>;
|
1849
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
1799
1850
|
}, "strip", z.ZodTypeAny, {
|
1800
1851
|
email: string;
|
1801
1852
|
wabaExternalId: string;
|
@@ -1805,6 +1856,7 @@ export declare const facebookFeedContract: {
|
|
1805
1856
|
channelId?: string | undefined;
|
1806
1857
|
status?: "active" | "pending" | undefined;
|
1807
1858
|
apiKey?: string | undefined;
|
1859
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1808
1860
|
}, {
|
1809
1861
|
email: string;
|
1810
1862
|
wabaExternalId: string;
|
@@ -1814,6 +1866,7 @@ export declare const facebookFeedContract: {
|
|
1814
1866
|
channelId?: string | undefined;
|
1815
1867
|
status?: "active" | "pending" | undefined;
|
1816
1868
|
apiKey?: string | undefined;
|
1869
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1817
1870
|
}>>;
|
1818
1871
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
1819
1872
|
mobileNumber: z.ZodString;
|
@@ -1846,6 +1899,7 @@ export declare const facebookFeedContract: {
|
|
1846
1899
|
channelId?: string | undefined;
|
1847
1900
|
status?: "active" | "pending" | undefined;
|
1848
1901
|
apiKey?: string | undefined;
|
1902
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1849
1903
|
} | undefined;
|
1850
1904
|
vonageCredentials?: {
|
1851
1905
|
apiKey: string;
|
@@ -1870,6 +1924,7 @@ export declare const facebookFeedContract: {
|
|
1870
1924
|
channelId?: string | undefined;
|
1871
1925
|
status?: "active" | "pending" | undefined;
|
1872
1926
|
apiKey?: string | undefined;
|
1927
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1873
1928
|
} | undefined;
|
1874
1929
|
vonageCredentials?: {
|
1875
1930
|
apiKey: string;
|
@@ -1929,6 +1984,7 @@ export declare const facebookFeedContract: {
|
|
1929
1984
|
channelId?: string | undefined;
|
1930
1985
|
status?: "active" | "pending" | undefined;
|
1931
1986
|
apiKey?: string | undefined;
|
1987
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1932
1988
|
} | undefined;
|
1933
1989
|
vonageCredentials?: {
|
1934
1990
|
apiKey: string;
|
@@ -1975,6 +2031,7 @@ export declare const facebookFeedContract: {
|
|
1975
2031
|
channelId?: string | undefined;
|
1976
2032
|
status?: "active" | "pending" | undefined;
|
1977
2033
|
apiKey?: string | undefined;
|
2034
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
1978
2035
|
} | undefined;
|
1979
2036
|
vonageCredentials?: {
|
1980
2037
|
apiKey: string;
|
@@ -2026,6 +2083,7 @@ export declare const facebookFeedContract: {
|
|
2026
2083
|
channelId: z.ZodOptional<z.ZodString>;
|
2027
2084
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
2028
2085
|
apiKey: z.ZodOptional<z.ZodString>;
|
2086
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
2029
2087
|
}, "strip", z.ZodTypeAny, {
|
2030
2088
|
email: string;
|
2031
2089
|
wabaExternalId: string;
|
@@ -2035,6 +2093,7 @@ export declare const facebookFeedContract: {
|
|
2035
2093
|
channelId?: string | undefined;
|
2036
2094
|
status?: "active" | "pending" | undefined;
|
2037
2095
|
apiKey?: string | undefined;
|
2096
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2038
2097
|
}, {
|
2039
2098
|
email: string;
|
2040
2099
|
wabaExternalId: string;
|
@@ -2044,6 +2103,7 @@ export declare const facebookFeedContract: {
|
|
2044
2103
|
channelId?: string | undefined;
|
2045
2104
|
status?: "active" | "pending" | undefined;
|
2046
2105
|
apiKey?: string | undefined;
|
2106
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2047
2107
|
}>>;
|
2048
2108
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
2049
2109
|
mobileNumber: z.ZodString;
|
@@ -2076,6 +2136,7 @@ export declare const facebookFeedContract: {
|
|
2076
2136
|
channelId?: string | undefined;
|
2077
2137
|
status?: "active" | "pending" | undefined;
|
2078
2138
|
apiKey?: string | undefined;
|
2139
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2079
2140
|
} | undefined;
|
2080
2141
|
vonageCredentials?: {
|
2081
2142
|
apiKey: string;
|
@@ -2100,6 +2161,7 @@ export declare const facebookFeedContract: {
|
|
2100
2161
|
channelId?: string | undefined;
|
2101
2162
|
status?: "active" | "pending" | undefined;
|
2102
2163
|
apiKey?: string | undefined;
|
2164
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2103
2165
|
} | undefined;
|
2104
2166
|
vonageCredentials?: {
|
2105
2167
|
apiKey: string;
|
@@ -2154,6 +2216,7 @@ export declare const facebookFeedContract: {
|
|
2154
2216
|
channelId?: string | undefined;
|
2155
2217
|
status?: "active" | "pending" | undefined;
|
2156
2218
|
apiKey?: string | undefined;
|
2219
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2157
2220
|
} | undefined;
|
2158
2221
|
vonageCredentials?: {
|
2159
2222
|
apiKey: string;
|
@@ -2196,6 +2259,7 @@ export declare const facebookFeedContract: {
|
|
2196
2259
|
channelId?: string | undefined;
|
2197
2260
|
status?: "active" | "pending" | undefined;
|
2198
2261
|
apiKey?: string | undefined;
|
2262
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2199
2263
|
} | undefined;
|
2200
2264
|
vonageCredentials?: {
|
2201
2265
|
apiKey: string;
|
@@ -2240,6 +2304,7 @@ export declare const facebookFeedContract: {
|
|
2240
2304
|
channelId?: string | undefined;
|
2241
2305
|
status?: "active" | "pending" | undefined;
|
2242
2306
|
apiKey?: string | undefined;
|
2307
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2243
2308
|
} | undefined;
|
2244
2309
|
vonageCredentials?: {
|
2245
2310
|
apiKey: string;
|
@@ -2285,6 +2350,7 @@ export declare const facebookFeedContract: {
|
|
2285
2350
|
channelId?: string | undefined;
|
2286
2351
|
status?: "active" | "pending" | undefined;
|
2287
2352
|
apiKey?: string | undefined;
|
2353
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2288
2354
|
} | undefined;
|
2289
2355
|
vonageCredentials?: {
|
2290
2356
|
apiKey: string;
|
@@ -2366,6 +2432,7 @@ export declare const facebookFeedContract: {
|
|
2366
2432
|
channelId: z.ZodOptional<z.ZodString>;
|
2367
2433
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
2368
2434
|
apiKey: z.ZodOptional<z.ZodString>;
|
2435
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
2369
2436
|
}, "strip", z.ZodTypeAny, {
|
2370
2437
|
email: string;
|
2371
2438
|
wabaExternalId: string;
|
@@ -2375,6 +2442,7 @@ export declare const facebookFeedContract: {
|
|
2375
2442
|
channelId?: string | undefined;
|
2376
2443
|
status?: "active" | "pending" | undefined;
|
2377
2444
|
apiKey?: string | undefined;
|
2445
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2378
2446
|
}, {
|
2379
2447
|
email: string;
|
2380
2448
|
wabaExternalId: string;
|
@@ -2384,6 +2452,7 @@ export declare const facebookFeedContract: {
|
|
2384
2452
|
channelId?: string | undefined;
|
2385
2453
|
status?: "active" | "pending" | undefined;
|
2386
2454
|
apiKey?: string | undefined;
|
2455
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2387
2456
|
}>>;
|
2388
2457
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
2389
2458
|
mobileNumber: z.ZodString;
|
@@ -2416,6 +2485,7 @@ export declare const facebookFeedContract: {
|
|
2416
2485
|
channelId?: string | undefined;
|
2417
2486
|
status?: "active" | "pending" | undefined;
|
2418
2487
|
apiKey?: string | undefined;
|
2488
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2419
2489
|
} | undefined;
|
2420
2490
|
vonageCredentials?: {
|
2421
2491
|
apiKey: string;
|
@@ -2440,6 +2510,7 @@ export declare const facebookFeedContract: {
|
|
2440
2510
|
channelId?: string | undefined;
|
2441
2511
|
status?: "active" | "pending" | undefined;
|
2442
2512
|
apiKey?: string | undefined;
|
2513
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2443
2514
|
} | undefined;
|
2444
2515
|
vonageCredentials?: {
|
2445
2516
|
apiKey: string;
|
@@ -3818,6 +3889,7 @@ export declare const facebookFeedContract: {
|
|
3818
3889
|
channelId?: string | undefined;
|
3819
3890
|
status?: "active" | "pending" | undefined;
|
3820
3891
|
apiKey?: string | undefined;
|
3892
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
3821
3893
|
} | undefined;
|
3822
3894
|
vonageCredentials?: {
|
3823
3895
|
apiKey: string;
|
@@ -4051,6 +4123,7 @@ export declare const facebookFeedContract: {
|
|
4051
4123
|
channelId?: string | undefined;
|
4052
4124
|
status?: "active" | "pending" | undefined;
|
4053
4125
|
apiKey?: string | undefined;
|
4126
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
4054
4127
|
} | undefined;
|
4055
4128
|
vonageCredentials?: {
|
4056
4129
|
apiKey: string;
|
@@ -4542,6 +4615,7 @@ export declare const facebookFeedContract: {
|
|
4542
4615
|
channelId: z.ZodOptional<z.ZodString>;
|
4543
4616
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
4544
4617
|
apiKey: z.ZodOptional<z.ZodString>;
|
4618
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
4545
4619
|
}, "strip", z.ZodTypeAny, {
|
4546
4620
|
email: string;
|
4547
4621
|
wabaExternalId: string;
|
@@ -4551,6 +4625,7 @@ export declare const facebookFeedContract: {
|
|
4551
4625
|
channelId?: string | undefined;
|
4552
4626
|
status?: "active" | "pending" | undefined;
|
4553
4627
|
apiKey?: string | undefined;
|
4628
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
4554
4629
|
}, {
|
4555
4630
|
email: string;
|
4556
4631
|
wabaExternalId: string;
|
@@ -4560,6 +4635,7 @@ export declare const facebookFeedContract: {
|
|
4560
4635
|
channelId?: string | undefined;
|
4561
4636
|
status?: "active" | "pending" | undefined;
|
4562
4637
|
apiKey?: string | undefined;
|
4638
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
4563
4639
|
}>>;
|
4564
4640
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
4565
4641
|
mobileNumber: z.ZodString;
|
@@ -4592,6 +4668,7 @@ export declare const facebookFeedContract: {
|
|
4592
4668
|
channelId?: string | undefined;
|
4593
4669
|
status?: "active" | "pending" | undefined;
|
4594
4670
|
apiKey?: string | undefined;
|
4671
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
4595
4672
|
} | undefined;
|
4596
4673
|
vonageCredentials?: {
|
4597
4674
|
apiKey: string;
|
@@ -4616,6 +4693,7 @@ export declare const facebookFeedContract: {
|
|
4616
4693
|
channelId?: string | undefined;
|
4617
4694
|
status?: "active" | "pending" | undefined;
|
4618
4695
|
apiKey?: string | undefined;
|
4696
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
4619
4697
|
} | undefined;
|
4620
4698
|
vonageCredentials?: {
|
4621
4699
|
apiKey: string;
|
@@ -4670,6 +4748,7 @@ export declare const facebookFeedContract: {
|
|
4670
4748
|
channelId?: string | undefined;
|
4671
4749
|
status?: "active" | "pending" | undefined;
|
4672
4750
|
apiKey?: string | undefined;
|
4751
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
4673
4752
|
} | undefined;
|
4674
4753
|
vonageCredentials?: {
|
4675
4754
|
apiKey: string;
|
@@ -4712,6 +4791,7 @@ export declare const facebookFeedContract: {
|
|
4712
4791
|
channelId?: string | undefined;
|
4713
4792
|
status?: "active" | "pending" | undefined;
|
4714
4793
|
apiKey?: string | undefined;
|
4794
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
4715
4795
|
} | undefined;
|
4716
4796
|
vonageCredentials?: {
|
4717
4797
|
apiKey: string;
|
@@ -4736,7 +4816,7 @@ export declare const facebookFeedContract: {
|
|
4736
4816
|
} | undefined;
|
4737
4817
|
}>;
|
4738
4818
|
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
|
4739
|
-
telegramBusinessConnectionId: z.ZodNullable<z.ZodString
|
4819
|
+
telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4740
4820
|
}, "strip", z.ZodTypeAny, {
|
4741
4821
|
id: string;
|
4742
4822
|
channel: {
|
@@ -4759,6 +4839,7 @@ export declare const facebookFeedContract: {
|
|
4759
4839
|
channelId?: string | undefined;
|
4760
4840
|
status?: "active" | "pending" | undefined;
|
4761
4841
|
apiKey?: string | undefined;
|
4842
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
4762
4843
|
} | undefined;
|
4763
4844
|
vonageCredentials?: {
|
4764
4845
|
apiKey: string;
|
@@ -4818,11 +4899,11 @@ export declare const facebookFeedContract: {
|
|
4818
4899
|
id: string;
|
4819
4900
|
email: string;
|
4820
4901
|
} | null;
|
4821
|
-
telegramBusinessConnectionId: string | null;
|
4822
4902
|
lastMessage?: string | undefined;
|
4823
4903
|
handleTime?: number | undefined;
|
4824
4904
|
metadata?: any;
|
4825
4905
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
4906
|
+
telegramBusinessConnectionId?: string | null | undefined;
|
4826
4907
|
}, {
|
4827
4908
|
id: string;
|
4828
4909
|
channel: {
|
@@ -4845,6 +4926,7 @@ export declare const facebookFeedContract: {
|
|
4845
4926
|
channelId?: string | undefined;
|
4846
4927
|
status?: "active" | "pending" | undefined;
|
4847
4928
|
apiKey?: string | undefined;
|
4929
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
4848
4930
|
} | undefined;
|
4849
4931
|
vonageCredentials?: {
|
4850
4932
|
apiKey: string;
|
@@ -4904,11 +4986,11 @@ export declare const facebookFeedContract: {
|
|
4904
4986
|
id: string;
|
4905
4987
|
email: string;
|
4906
4988
|
} | null;
|
4907
|
-
telegramBusinessConnectionId: string | null;
|
4908
4989
|
lastMessage?: string | undefined;
|
4909
4990
|
handleTime?: number | undefined;
|
4910
4991
|
metadata?: any;
|
4911
4992
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
4993
|
+
telegramBusinessConnectionId?: string | null | undefined;
|
4912
4994
|
}>;
|
4913
4995
|
isBot: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
4914
4996
|
params: z.ZodOptional<z.ZodObject<{
|
@@ -4980,6 +5062,7 @@ export declare const facebookFeedContract: {
|
|
4980
5062
|
channelId?: string | undefined;
|
4981
5063
|
status?: "active" | "pending" | undefined;
|
4982
5064
|
apiKey?: string | undefined;
|
5065
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
4983
5066
|
} | undefined;
|
4984
5067
|
vonageCredentials?: {
|
4985
5068
|
apiKey: string;
|
@@ -5039,11 +5122,11 @@ export declare const facebookFeedContract: {
|
|
5039
5122
|
id: string;
|
5040
5123
|
email: string;
|
5041
5124
|
} | null;
|
5042
|
-
telegramBusinessConnectionId: string | null;
|
5043
5125
|
lastMessage?: string | undefined;
|
5044
5126
|
handleTime?: number | undefined;
|
5045
5127
|
metadata?: any;
|
5046
5128
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
5129
|
+
telegramBusinessConnectionId?: string | null | undefined;
|
5047
5130
|
};
|
5048
5131
|
isBot: boolean | null;
|
5049
5132
|
params?: {
|
@@ -5109,6 +5192,7 @@ export declare const facebookFeedContract: {
|
|
5109
5192
|
channelId?: string | undefined;
|
5110
5193
|
status?: "active" | "pending" | undefined;
|
5111
5194
|
apiKey?: string | undefined;
|
5195
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
5112
5196
|
} | undefined;
|
5113
5197
|
vonageCredentials?: {
|
5114
5198
|
apiKey: string;
|
@@ -5168,11 +5252,11 @@ export declare const facebookFeedContract: {
|
|
5168
5252
|
id: string;
|
5169
5253
|
email: string;
|
5170
5254
|
} | null;
|
5171
|
-
telegramBusinessConnectionId: string | null;
|
5172
5255
|
lastMessage?: string | undefined;
|
5173
5256
|
handleTime?: number | undefined;
|
5174
5257
|
metadata?: any;
|
5175
5258
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
5259
|
+
telegramBusinessConnectionId?: string | null | undefined;
|
5176
5260
|
};
|
5177
5261
|
isBot?: boolean | null | undefined;
|
5178
5262
|
params?: {
|
@@ -7133,6 +7217,7 @@ export declare const facebookFeedContract: {
|
|
7133
7217
|
channelId: z.ZodOptional<z.ZodString>;
|
7134
7218
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
7135
7219
|
apiKey: z.ZodOptional<z.ZodString>;
|
7220
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
7136
7221
|
}, "strip", z.ZodTypeAny, {
|
7137
7222
|
email: string;
|
7138
7223
|
wabaExternalId: string;
|
@@ -7142,6 +7227,7 @@ export declare const facebookFeedContract: {
|
|
7142
7227
|
channelId?: string | undefined;
|
7143
7228
|
status?: "active" | "pending" | undefined;
|
7144
7229
|
apiKey?: string | undefined;
|
7230
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
7145
7231
|
}, {
|
7146
7232
|
email: string;
|
7147
7233
|
wabaExternalId: string;
|
@@ -7151,6 +7237,7 @@ export declare const facebookFeedContract: {
|
|
7151
7237
|
channelId?: string | undefined;
|
7152
7238
|
status?: "active" | "pending" | undefined;
|
7153
7239
|
apiKey?: string | undefined;
|
7240
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
7154
7241
|
}>>;
|
7155
7242
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
7156
7243
|
mobileNumber: z.ZodString;
|
@@ -7183,6 +7270,7 @@ export declare const facebookFeedContract: {
|
|
7183
7270
|
channelId?: string | undefined;
|
7184
7271
|
status?: "active" | "pending" | undefined;
|
7185
7272
|
apiKey?: string | undefined;
|
7273
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
7186
7274
|
} | undefined;
|
7187
7275
|
vonageCredentials?: {
|
7188
7276
|
apiKey: string;
|
@@ -7207,6 +7295,7 @@ export declare const facebookFeedContract: {
|
|
7207
7295
|
channelId?: string | undefined;
|
7208
7296
|
status?: "active" | "pending" | undefined;
|
7209
7297
|
apiKey?: string | undefined;
|
7298
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
7210
7299
|
} | undefined;
|
7211
7300
|
vonageCredentials?: {
|
7212
7301
|
apiKey: string;
|
@@ -7465,6 +7554,7 @@ export declare const facebookFeedContract: {
|
|
7465
7554
|
channelId?: string | undefined;
|
7466
7555
|
status?: "active" | "pending" | undefined;
|
7467
7556
|
apiKey?: string | undefined;
|
7557
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
7468
7558
|
} | undefined;
|
7469
7559
|
vonageCredentials?: {
|
7470
7560
|
apiKey: string;
|
@@ -7554,6 +7644,7 @@ export declare const facebookFeedContract: {
|
|
7554
7644
|
channelId?: string | undefined;
|
7555
7645
|
status?: "active" | "pending" | undefined;
|
7556
7646
|
apiKey?: string | undefined;
|
7647
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
7557
7648
|
} | undefined;
|
7558
7649
|
vonageCredentials?: {
|
7559
7650
|
apiKey: string;
|
@@ -8091,6 +8182,7 @@ export declare const facebookFeedContract: {
|
|
8091
8182
|
channelId?: string | undefined;
|
8092
8183
|
status?: "active" | "pending" | undefined;
|
8093
8184
|
apiKey?: string | undefined;
|
8185
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
8094
8186
|
} | undefined;
|
8095
8187
|
vonageCredentials?: {
|
8096
8188
|
apiKey: string;
|
@@ -8491,6 +8583,7 @@ export declare const facebookFeedContract: {
|
|
8491
8583
|
channelId?: string | undefined;
|
8492
8584
|
status?: "active" | "pending" | undefined;
|
8493
8585
|
apiKey?: string | undefined;
|
8586
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
8494
8587
|
} | undefined;
|
8495
8588
|
vonageCredentials?: {
|
8496
8589
|
apiKey: string;
|
@@ -11607,6 +11700,7 @@ export declare const facebookFeedContract: {
|
|
11607
11700
|
channelId: z.ZodOptional<z.ZodString>;
|
11608
11701
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
11609
11702
|
apiKey: z.ZodOptional<z.ZodString>;
|
11703
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
11610
11704
|
}, "strip", z.ZodTypeAny, {
|
11611
11705
|
email: string;
|
11612
11706
|
wabaExternalId: string;
|
@@ -11616,6 +11710,7 @@ export declare const facebookFeedContract: {
|
|
11616
11710
|
channelId?: string | undefined;
|
11617
11711
|
status?: "active" | "pending" | undefined;
|
11618
11712
|
apiKey?: string | undefined;
|
11713
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
11619
11714
|
}, {
|
11620
11715
|
email: string;
|
11621
11716
|
wabaExternalId: string;
|
@@ -11625,6 +11720,7 @@ export declare const facebookFeedContract: {
|
|
11625
11720
|
channelId?: string | undefined;
|
11626
11721
|
status?: "active" | "pending" | undefined;
|
11627
11722
|
apiKey?: string | undefined;
|
11723
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
11628
11724
|
}>>;
|
11629
11725
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
11630
11726
|
mobileNumber: z.ZodString;
|
@@ -11657,6 +11753,7 @@ export declare const facebookFeedContract: {
|
|
11657
11753
|
channelId?: string | undefined;
|
11658
11754
|
status?: "active" | "pending" | undefined;
|
11659
11755
|
apiKey?: string | undefined;
|
11756
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
11660
11757
|
} | undefined;
|
11661
11758
|
vonageCredentials?: {
|
11662
11759
|
apiKey: string;
|
@@ -11681,6 +11778,7 @@ export declare const facebookFeedContract: {
|
|
11681
11778
|
channelId?: string | undefined;
|
11682
11779
|
status?: "active" | "pending" | undefined;
|
11683
11780
|
apiKey?: string | undefined;
|
11781
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
11684
11782
|
} | undefined;
|
11685
11783
|
vonageCredentials?: {
|
11686
11784
|
apiKey: string;
|
@@ -11939,6 +12037,7 @@ export declare const facebookFeedContract: {
|
|
11939
12037
|
channelId?: string | undefined;
|
11940
12038
|
status?: "active" | "pending" | undefined;
|
11941
12039
|
apiKey?: string | undefined;
|
12040
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
11942
12041
|
} | undefined;
|
11943
12042
|
vonageCredentials?: {
|
11944
12043
|
apiKey: string;
|
@@ -12028,6 +12127,7 @@ export declare const facebookFeedContract: {
|
|
12028
12127
|
channelId?: string | undefined;
|
12029
12128
|
status?: "active" | "pending" | undefined;
|
12030
12129
|
apiKey?: string | undefined;
|
12130
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
12031
12131
|
} | undefined;
|
12032
12132
|
vonageCredentials?: {
|
12033
12133
|
apiKey: string;
|
@@ -12565,6 +12665,7 @@ export declare const facebookFeedContract: {
|
|
12565
12665
|
channelId?: string | undefined;
|
12566
12666
|
status?: "active" | "pending" | undefined;
|
12567
12667
|
apiKey?: string | undefined;
|
12668
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
12568
12669
|
} | undefined;
|
12569
12670
|
vonageCredentials?: {
|
12570
12671
|
apiKey: string;
|
@@ -12965,6 +13066,7 @@ export declare const facebookFeedContract: {
|
|
12965
13066
|
channelId?: string | undefined;
|
12966
13067
|
status?: "active" | "pending" | undefined;
|
12967
13068
|
apiKey?: string | undefined;
|
13069
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
12968
13070
|
} | undefined;
|
12969
13071
|
vonageCredentials?: {
|
12970
13072
|
apiKey: string;
|
@@ -15138,6 +15240,7 @@ export declare const facebookFeedContract: {
|
|
15138
15240
|
channelId?: string | undefined;
|
15139
15241
|
status?: "active" | "pending" | undefined;
|
15140
15242
|
apiKey?: string | undefined;
|
15243
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
15141
15244
|
} | undefined;
|
15142
15245
|
vonageCredentials?: {
|
15143
15246
|
apiKey: string;
|
@@ -15875,6 +15978,7 @@ export declare const facebookFeedContract: {
|
|
15875
15978
|
channelId?: string | undefined;
|
15876
15979
|
status?: "active" | "pending" | undefined;
|
15877
15980
|
apiKey?: string | undefined;
|
15981
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
15878
15982
|
} | undefined;
|
15879
15983
|
vonageCredentials?: {
|
15880
15984
|
apiKey: string;
|
@@ -16613,6 +16717,7 @@ export declare const facebookFeedContract: {
|
|
16613
16717
|
channelId?: string | undefined;
|
16614
16718
|
status?: "active" | "pending" | undefined;
|
16615
16719
|
apiKey?: string | undefined;
|
16720
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
16616
16721
|
} | undefined;
|
16617
16722
|
vonageCredentials?: {
|
16618
16723
|
apiKey: string;
|
@@ -17350,6 +17455,7 @@ export declare const facebookFeedContract: {
|
|
17350
17455
|
channelId?: string | undefined;
|
17351
17456
|
status?: "active" | "pending" | undefined;
|
17352
17457
|
apiKey?: string | undefined;
|
17458
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
17353
17459
|
} | undefined;
|
17354
17460
|
vonageCredentials?: {
|
17355
17461
|
apiKey: string;
|
@@ -18088,6 +18194,7 @@ export declare const facebookFeedContract: {
|
|
18088
18194
|
channelId?: string | undefined;
|
18089
18195
|
status?: "active" | "pending" | undefined;
|
18090
18196
|
apiKey?: string | undefined;
|
18197
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
18091
18198
|
} | undefined;
|
18092
18199
|
vonageCredentials?: {
|
18093
18200
|
apiKey: string;
|
@@ -18825,6 +18932,7 @@ export declare const facebookFeedContract: {
|
|
18825
18932
|
channelId?: string | undefined;
|
18826
18933
|
status?: "active" | "pending" | undefined;
|
18827
18934
|
apiKey?: string | undefined;
|
18935
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
18828
18936
|
} | undefined;
|
18829
18937
|
vonageCredentials?: {
|
18830
18938
|
apiKey: string;
|
@@ -19565,6 +19673,7 @@ export declare const facebookFeedContract: {
|
|
19565
19673
|
channelId?: string | undefined;
|
19566
19674
|
status?: "active" | "pending" | undefined;
|
19567
19675
|
apiKey?: string | undefined;
|
19676
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
19568
19677
|
} | undefined;
|
19569
19678
|
vonageCredentials?: {
|
19570
19679
|
apiKey: string;
|
@@ -20302,6 +20411,7 @@ export declare const facebookFeedContract: {
|
|
20302
20411
|
channelId?: string | undefined;
|
20303
20412
|
status?: "active" | "pending" | undefined;
|
20304
20413
|
apiKey?: string | undefined;
|
20414
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
20305
20415
|
} | undefined;
|
20306
20416
|
vonageCredentials?: {
|
20307
20417
|
apiKey: string;
|
@@ -21043,6 +21153,7 @@ export declare const facebookFeedContract: {
|
|
21043
21153
|
channelId?: string | undefined;
|
21044
21154
|
status?: "active" | "pending" | undefined;
|
21045
21155
|
apiKey?: string | undefined;
|
21156
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
21046
21157
|
} | undefined;
|
21047
21158
|
vonageCredentials?: {
|
21048
21159
|
apiKey: string;
|
@@ -21780,6 +21891,7 @@ export declare const facebookFeedContract: {
|
|
21780
21891
|
channelId?: string | undefined;
|
21781
21892
|
status?: "active" | "pending" | undefined;
|
21782
21893
|
apiKey?: string | undefined;
|
21894
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
21783
21895
|
} | undefined;
|
21784
21896
|
vonageCredentials?: {
|
21785
21897
|
apiKey: string;
|
@@ -22436,6 +22548,7 @@ export declare const facebookFeedContract: {
|
|
22436
22548
|
channelId: z.ZodOptional<z.ZodString>;
|
22437
22549
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
22438
22550
|
apiKey: z.ZodOptional<z.ZodString>;
|
22551
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
22439
22552
|
}, "strip", z.ZodTypeAny, {
|
22440
22553
|
email: string;
|
22441
22554
|
wabaExternalId: string;
|
@@ -22445,6 +22558,7 @@ export declare const facebookFeedContract: {
|
|
22445
22558
|
channelId?: string | undefined;
|
22446
22559
|
status?: "active" | "pending" | undefined;
|
22447
22560
|
apiKey?: string | undefined;
|
22561
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22448
22562
|
}, {
|
22449
22563
|
email: string;
|
22450
22564
|
wabaExternalId: string;
|
@@ -22454,6 +22568,7 @@ export declare const facebookFeedContract: {
|
|
22454
22568
|
channelId?: string | undefined;
|
22455
22569
|
status?: "active" | "pending" | undefined;
|
22456
22570
|
apiKey?: string | undefined;
|
22571
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22457
22572
|
}>>;
|
22458
22573
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
22459
22574
|
mobileNumber: z.ZodString;
|
@@ -22486,6 +22601,7 @@ export declare const facebookFeedContract: {
|
|
22486
22601
|
channelId?: string | undefined;
|
22487
22602
|
status?: "active" | "pending" | undefined;
|
22488
22603
|
apiKey?: string | undefined;
|
22604
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22489
22605
|
} | undefined;
|
22490
22606
|
vonageCredentials?: {
|
22491
22607
|
apiKey: string;
|
@@ -22510,6 +22626,7 @@ export declare const facebookFeedContract: {
|
|
22510
22626
|
channelId?: string | undefined;
|
22511
22627
|
status?: "active" | "pending" | undefined;
|
22512
22628
|
apiKey?: string | undefined;
|
22629
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22513
22630
|
} | undefined;
|
22514
22631
|
vonageCredentials?: {
|
22515
22632
|
apiKey: string;
|
@@ -22564,6 +22681,7 @@ export declare const facebookFeedContract: {
|
|
22564
22681
|
channelId?: string | undefined;
|
22565
22682
|
status?: "active" | "pending" | undefined;
|
22566
22683
|
apiKey?: string | undefined;
|
22684
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22567
22685
|
} | undefined;
|
22568
22686
|
vonageCredentials?: {
|
22569
22687
|
apiKey: string;
|
@@ -22606,6 +22724,7 @@ export declare const facebookFeedContract: {
|
|
22606
22724
|
channelId?: string | undefined;
|
22607
22725
|
status?: "active" | "pending" | undefined;
|
22608
22726
|
apiKey?: string | undefined;
|
22727
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22609
22728
|
} | undefined;
|
22610
22729
|
vonageCredentials?: {
|
22611
22730
|
apiKey: string;
|
@@ -22651,6 +22770,7 @@ export declare const facebookFeedContract: {
|
|
22651
22770
|
channelId?: string | undefined;
|
22652
22771
|
status?: "active" | "pending" | undefined;
|
22653
22772
|
apiKey?: string | undefined;
|
22773
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22654
22774
|
} | undefined;
|
22655
22775
|
vonageCredentials?: {
|
22656
22776
|
apiKey: string;
|
@@ -22696,6 +22816,7 @@ export declare const facebookFeedContract: {
|
|
22696
22816
|
channelId?: string | undefined;
|
22697
22817
|
status?: "active" | "pending" | undefined;
|
22698
22818
|
apiKey?: string | undefined;
|
22819
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22699
22820
|
} | undefined;
|
22700
22821
|
vonageCredentials?: {
|
22701
22822
|
apiKey: string;
|
@@ -22893,6 +23014,7 @@ export declare const facebookFeedContract: {
|
|
22893
23014
|
channelId?: string | undefined;
|
22894
23015
|
status?: "active" | "pending" | undefined;
|
22895
23016
|
apiKey?: string | undefined;
|
23017
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22896
23018
|
} | undefined;
|
22897
23019
|
vonageCredentials?: {
|
22898
23020
|
apiKey: string;
|
@@ -22972,6 +23094,7 @@ export declare const facebookFeedContract: {
|
|
22972
23094
|
channelId?: string | undefined;
|
22973
23095
|
status?: "active" | "pending" | undefined;
|
22974
23096
|
apiKey?: string | undefined;
|
23097
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22975
23098
|
} | undefined;
|
22976
23099
|
vonageCredentials?: {
|
22977
23100
|
apiKey: string;
|
@@ -23022,6 +23145,7 @@ export declare const facebookFeedContract: {
|
|
23022
23145
|
channelId: z.ZodOptional<z.ZodString>;
|
23023
23146
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
23024
23147
|
apiKey: z.ZodOptional<z.ZodString>;
|
23148
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
23025
23149
|
}, "strip", z.ZodTypeAny, {
|
23026
23150
|
email: string;
|
23027
23151
|
wabaExternalId: string;
|
@@ -23031,6 +23155,7 @@ export declare const facebookFeedContract: {
|
|
23031
23155
|
channelId?: string | undefined;
|
23032
23156
|
status?: "active" | "pending" | undefined;
|
23033
23157
|
apiKey?: string | undefined;
|
23158
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23034
23159
|
}, {
|
23035
23160
|
email: string;
|
23036
23161
|
wabaExternalId: string;
|
@@ -23040,6 +23165,7 @@ export declare const facebookFeedContract: {
|
|
23040
23165
|
channelId?: string | undefined;
|
23041
23166
|
status?: "active" | "pending" | undefined;
|
23042
23167
|
apiKey?: string | undefined;
|
23168
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23043
23169
|
}>>;
|
23044
23170
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
23045
23171
|
mobileNumber: z.ZodString;
|
@@ -23072,6 +23198,7 @@ export declare const facebookFeedContract: {
|
|
23072
23198
|
channelId?: string | undefined;
|
23073
23199
|
status?: "active" | "pending" | undefined;
|
23074
23200
|
apiKey?: string | undefined;
|
23201
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23075
23202
|
} | undefined;
|
23076
23203
|
vonageCredentials?: {
|
23077
23204
|
apiKey: string;
|
@@ -23096,6 +23223,7 @@ export declare const facebookFeedContract: {
|
|
23096
23223
|
channelId?: string | undefined;
|
23097
23224
|
status?: "active" | "pending" | undefined;
|
23098
23225
|
apiKey?: string | undefined;
|
23226
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23099
23227
|
} | undefined;
|
23100
23228
|
vonageCredentials?: {
|
23101
23229
|
apiKey: string;
|
@@ -23150,6 +23278,7 @@ export declare const facebookFeedContract: {
|
|
23150
23278
|
channelId?: string | undefined;
|
23151
23279
|
status?: "active" | "pending" | undefined;
|
23152
23280
|
apiKey?: string | undefined;
|
23281
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23153
23282
|
} | undefined;
|
23154
23283
|
vonageCredentials?: {
|
23155
23284
|
apiKey: string;
|
@@ -23192,6 +23321,7 @@ export declare const facebookFeedContract: {
|
|
23192
23321
|
channelId?: string | undefined;
|
23193
23322
|
status?: "active" | "pending" | undefined;
|
23194
23323
|
apiKey?: string | undefined;
|
23324
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23195
23325
|
} | undefined;
|
23196
23326
|
vonageCredentials?: {
|
23197
23327
|
apiKey: string;
|
@@ -23237,6 +23367,7 @@ export declare const facebookFeedContract: {
|
|
23237
23367
|
channelId?: string | undefined;
|
23238
23368
|
status?: "active" | "pending" | undefined;
|
23239
23369
|
apiKey?: string | undefined;
|
23370
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23240
23371
|
} | undefined;
|
23241
23372
|
vonageCredentials?: {
|
23242
23373
|
apiKey: string;
|
@@ -23282,6 +23413,7 @@ export declare const facebookFeedContract: {
|
|
23282
23413
|
channelId?: string | undefined;
|
23283
23414
|
status?: "active" | "pending" | undefined;
|
23284
23415
|
apiKey?: string | undefined;
|
23416
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23285
23417
|
} | undefined;
|
23286
23418
|
vonageCredentials?: {
|
23287
23419
|
apiKey: string;
|
@@ -23479,6 +23611,7 @@ export declare const facebookFeedContract: {
|
|
23479
23611
|
channelId?: string | undefined;
|
23480
23612
|
status?: "active" | "pending" | undefined;
|
23481
23613
|
apiKey?: string | undefined;
|
23614
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23482
23615
|
} | undefined;
|
23483
23616
|
vonageCredentials?: {
|
23484
23617
|
apiKey: string;
|
@@ -23558,6 +23691,7 @@ export declare const facebookFeedContract: {
|
|
23558
23691
|
channelId?: string | undefined;
|
23559
23692
|
status?: "active" | "pending" | undefined;
|
23560
23693
|
apiKey?: string | undefined;
|
23694
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23561
23695
|
} | undefined;
|
23562
23696
|
vonageCredentials?: {
|
23563
23697
|
apiKey: string;
|