@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
|
@@ -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;
|
|
@@ -4273,7 +4346,7 @@ export declare const facebookFeedContract: {
|
|
|
4273
4346
|
id: z.ZodOptional<z.ZodString>;
|
|
4274
4347
|
message: z.ZodOptional<z.ZodString>;
|
|
4275
4348
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
4276
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
4349
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
4277
4350
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
4278
4351
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
4279
4352
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -4329,7 +4402,7 @@ export declare const facebookFeedContract: {
|
|
|
4329
4402
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
4330
4403
|
label: z.ZodOptional<z.ZodString>;
|
|
4331
4404
|
}, "strip", z.ZodTypeAny, {
|
|
4332
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
4405
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
4333
4406
|
direction: "incoming" | "outgoing" | "system";
|
|
4334
4407
|
id?: string | undefined;
|
|
4335
4408
|
message?: string | undefined;
|
|
@@ -4364,7 +4437,7 @@ export declare const facebookFeedContract: {
|
|
|
4364
4437
|
editedAt?: string | Date | null | undefined;
|
|
4365
4438
|
label?: string | undefined;
|
|
4366
4439
|
}, {
|
|
4367
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
4440
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
4368
4441
|
direction: "incoming" | "outgoing" | "system";
|
|
4369
4442
|
id?: string | undefined;
|
|
4370
4443
|
message?: string | undefined;
|
|
@@ -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<{
|
|
@@ -4923,7 +5005,7 @@ export declare const facebookFeedContract: {
|
|
|
4923
5005
|
}>>;
|
|
4924
5006
|
}, "strip", z.ZodTypeAny, {
|
|
4925
5007
|
message: {
|
|
4926
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
5008
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
4927
5009
|
direction: "incoming" | "outgoing" | "system";
|
|
4928
5010
|
id?: string | undefined;
|
|
4929
5011
|
message?: string | undefined;
|
|
@@ -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?: {
|
|
@@ -5052,7 +5135,7 @@ export declare const facebookFeedContract: {
|
|
|
5052
5135
|
} | undefined;
|
|
5053
5136
|
}, {
|
|
5054
5137
|
message: {
|
|
5055
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
5138
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
5056
5139
|
direction: "incoming" | "outgoing" | "system";
|
|
5057
5140
|
id?: string | undefined;
|
|
5058
5141
|
message?: string | undefined;
|
|
@@ -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?: {
|
|
@@ -5185,7 +5269,7 @@ export declare const facebookFeedContract: {
|
|
|
5185
5269
|
200: z.ZodObject<{
|
|
5186
5270
|
requestId: z.ZodString;
|
|
5187
5271
|
data: z.ZodObject<{
|
|
5188
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
5272
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
5189
5273
|
message: z.ZodString;
|
|
5190
5274
|
id: z.ZodString;
|
|
5191
5275
|
url: z.ZodString;
|
|
@@ -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;
|
|
@@ -7626,17 +7717,17 @@ export declare const facebookFeedContract: {
|
|
|
7626
7717
|
}>;
|
|
7627
7718
|
cxlog: z.ZodObject<{
|
|
7628
7719
|
id: z.ZodString;
|
|
7720
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
7721
|
+
direction: z.ZodNullable<z.ZodString>;
|
|
7629
7722
|
createdAt: z.ZodDate;
|
|
7630
7723
|
updatedAt: z.ZodDate;
|
|
7631
7724
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
7632
|
-
caseId: z.ZodNumber;
|
|
7633
7725
|
entityId: z.ZodString;
|
|
7634
|
-
entityName: z.ZodString;
|
|
7635
|
-
contactId: z.ZodNullable<z.ZodString>;
|
|
7636
|
-
channel: z.ZodNullable<z.ZodString>;
|
|
7637
7726
|
queueId: z.ZodNullable<z.ZodString>;
|
|
7727
|
+
contactId: z.ZodNullable<z.ZodString>;
|
|
7728
|
+
caseId: z.ZodNumber;
|
|
7729
|
+
entityName: z.ZodString;
|
|
7638
7730
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7639
|
-
direction: z.ZodNullable<z.ZodString>;
|
|
7640
7731
|
startedDate: z.ZodNullable<z.ZodDate>;
|
|
7641
7732
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
|
7642
7733
|
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7906,6 +7997,69 @@ export declare const facebookFeedContract: {
|
|
|
7906
7997
|
dateValue: Date | null;
|
|
7907
7998
|
}[] | null | undefined;
|
|
7908
7999
|
}>>;
|
|
8000
|
+
holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8001
|
+
id: z.ZodString;
|
|
8002
|
+
createdAt: z.ZodDate;
|
|
8003
|
+
updatedAt: z.ZodDate;
|
|
8004
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
8005
|
+
startedAt: z.ZodString;
|
|
8006
|
+
endedAt: z.ZodNullable<z.ZodString>;
|
|
8007
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
8008
|
+
holdLabel: z.ZodObject<{
|
|
8009
|
+
id: z.ZodString;
|
|
8010
|
+
createdAt: z.ZodDate;
|
|
8011
|
+
updatedAt: z.ZodDate;
|
|
8012
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
8013
|
+
name: z.ZodString;
|
|
8014
|
+
position: z.ZodNumber;
|
|
8015
|
+
}, "strip", z.ZodTypeAny, {
|
|
8016
|
+
name: string;
|
|
8017
|
+
id: string;
|
|
8018
|
+
position: number;
|
|
8019
|
+
createdAt: Date;
|
|
8020
|
+
updatedAt: Date;
|
|
8021
|
+
deletedAt: Date | null;
|
|
8022
|
+
}, {
|
|
8023
|
+
name: string;
|
|
8024
|
+
id: string;
|
|
8025
|
+
position: number;
|
|
8026
|
+
createdAt: Date;
|
|
8027
|
+
updatedAt: Date;
|
|
8028
|
+
deletedAt: Date | null;
|
|
8029
|
+
}>;
|
|
8030
|
+
}, "strip", z.ZodTypeAny, {
|
|
8031
|
+
id: string;
|
|
8032
|
+
createdAt: Date;
|
|
8033
|
+
updatedAt: Date;
|
|
8034
|
+
deletedAt: Date | null;
|
|
8035
|
+
startedAt: string;
|
|
8036
|
+
endedAt: string | null;
|
|
8037
|
+
duration: number | null;
|
|
8038
|
+
holdLabel: {
|
|
8039
|
+
name: string;
|
|
8040
|
+
id: string;
|
|
8041
|
+
position: number;
|
|
8042
|
+
createdAt: Date;
|
|
8043
|
+
updatedAt: Date;
|
|
8044
|
+
deletedAt: Date | null;
|
|
8045
|
+
};
|
|
8046
|
+
}, {
|
|
8047
|
+
id: string;
|
|
8048
|
+
createdAt: Date;
|
|
8049
|
+
updatedAt: Date;
|
|
8050
|
+
deletedAt: Date | null;
|
|
8051
|
+
startedAt: string;
|
|
8052
|
+
endedAt: string | null;
|
|
8053
|
+
duration: number | null;
|
|
8054
|
+
holdLabel: {
|
|
8055
|
+
name: string;
|
|
8056
|
+
id: string;
|
|
8057
|
+
position: number;
|
|
8058
|
+
createdAt: Date;
|
|
8059
|
+
updatedAt: Date;
|
|
8060
|
+
deletedAt: Date | null;
|
|
8061
|
+
};
|
|
8062
|
+
}>, "many">>>;
|
|
7909
8063
|
}, "strip", z.ZodTypeAny, {
|
|
7910
8064
|
id: string;
|
|
7911
8065
|
channel: string | null;
|
|
@@ -7974,6 +8128,23 @@ export declare const facebookFeedContract: {
|
|
|
7974
8128
|
dateValue: Date | null;
|
|
7975
8129
|
}[] | null | undefined;
|
|
7976
8130
|
} | null;
|
|
8131
|
+
holdLogs?: {
|
|
8132
|
+
id: string;
|
|
8133
|
+
createdAt: Date;
|
|
8134
|
+
updatedAt: Date;
|
|
8135
|
+
deletedAt: Date | null;
|
|
8136
|
+
startedAt: string;
|
|
8137
|
+
endedAt: string | null;
|
|
8138
|
+
duration: number | null;
|
|
8139
|
+
holdLabel: {
|
|
8140
|
+
name: string;
|
|
8141
|
+
id: string;
|
|
8142
|
+
position: number;
|
|
8143
|
+
createdAt: Date;
|
|
8144
|
+
updatedAt: Date;
|
|
8145
|
+
deletedAt: Date | null;
|
|
8146
|
+
};
|
|
8147
|
+
}[] | null | undefined;
|
|
7977
8148
|
}, {
|
|
7978
8149
|
id: string;
|
|
7979
8150
|
channel: string | null;
|
|
@@ -8042,6 +8213,23 @@ export declare const facebookFeedContract: {
|
|
|
8042
8213
|
dateValue: Date | null;
|
|
8043
8214
|
}[] | null | undefined;
|
|
8044
8215
|
} | null;
|
|
8216
|
+
holdLogs?: {
|
|
8217
|
+
id: string;
|
|
8218
|
+
createdAt: Date;
|
|
8219
|
+
updatedAt: Date;
|
|
8220
|
+
deletedAt: Date | null;
|
|
8221
|
+
startedAt: string;
|
|
8222
|
+
endedAt: string | null;
|
|
8223
|
+
duration: number | null;
|
|
8224
|
+
holdLabel: {
|
|
8225
|
+
name: string;
|
|
8226
|
+
id: string;
|
|
8227
|
+
position: number;
|
|
8228
|
+
createdAt: Date;
|
|
8229
|
+
updatedAt: Date;
|
|
8230
|
+
deletedAt: Date | null;
|
|
8231
|
+
};
|
|
8232
|
+
}[] | null | undefined;
|
|
8045
8233
|
}>;
|
|
8046
8234
|
workflowRule: z.ZodObject<{
|
|
8047
8235
|
id: z.ZodString;
|
|
@@ -8091,6 +8279,7 @@ export declare const facebookFeedContract: {
|
|
|
8091
8279
|
channelId?: string | undefined;
|
|
8092
8280
|
status?: "active" | "pending" | undefined;
|
|
8093
8281
|
apiKey?: string | undefined;
|
|
8282
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8094
8283
|
} | undefined;
|
|
8095
8284
|
vonageCredentials?: {
|
|
8096
8285
|
apiKey: string;
|
|
@@ -8458,6 +8647,23 @@ export declare const facebookFeedContract: {
|
|
|
8458
8647
|
dateValue: Date | null;
|
|
8459
8648
|
}[] | null | undefined;
|
|
8460
8649
|
} | null;
|
|
8650
|
+
holdLogs?: {
|
|
8651
|
+
id: string;
|
|
8652
|
+
createdAt: Date;
|
|
8653
|
+
updatedAt: Date;
|
|
8654
|
+
deletedAt: Date | null;
|
|
8655
|
+
startedAt: string;
|
|
8656
|
+
endedAt: string | null;
|
|
8657
|
+
duration: number | null;
|
|
8658
|
+
holdLabel: {
|
|
8659
|
+
name: string;
|
|
8660
|
+
id: string;
|
|
8661
|
+
position: number;
|
|
8662
|
+
createdAt: Date;
|
|
8663
|
+
updatedAt: Date;
|
|
8664
|
+
deletedAt: Date | null;
|
|
8665
|
+
};
|
|
8666
|
+
}[] | null | undefined;
|
|
8461
8667
|
};
|
|
8462
8668
|
workflowRule: {
|
|
8463
8669
|
name: string;
|
|
@@ -8491,6 +8697,7 @@ export declare const facebookFeedContract: {
|
|
|
8491
8697
|
channelId?: string | undefined;
|
|
8492
8698
|
status?: "active" | "pending" | undefined;
|
|
8493
8699
|
apiKey?: string | undefined;
|
|
8700
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8494
8701
|
} | undefined;
|
|
8495
8702
|
vonageCredentials?: {
|
|
8496
8703
|
apiKey: string;
|
|
@@ -8858,6 +9065,23 @@ export declare const facebookFeedContract: {
|
|
|
8858
9065
|
dateValue: Date | null;
|
|
8859
9066
|
}[] | null | undefined;
|
|
8860
9067
|
} | null;
|
|
9068
|
+
holdLogs?: {
|
|
9069
|
+
id: string;
|
|
9070
|
+
createdAt: Date;
|
|
9071
|
+
updatedAt: Date;
|
|
9072
|
+
deletedAt: Date | null;
|
|
9073
|
+
startedAt: string;
|
|
9074
|
+
endedAt: string | null;
|
|
9075
|
+
duration: number | null;
|
|
9076
|
+
holdLabel: {
|
|
9077
|
+
name: string;
|
|
9078
|
+
id: string;
|
|
9079
|
+
position: number;
|
|
9080
|
+
createdAt: Date;
|
|
9081
|
+
updatedAt: Date;
|
|
9082
|
+
deletedAt: Date | null;
|
|
9083
|
+
};
|
|
9084
|
+
}[] | null | undefined;
|
|
8861
9085
|
};
|
|
8862
9086
|
workflowRule: {
|
|
8863
9087
|
name: string;
|
|
@@ -8908,7 +9132,7 @@ export declare const facebookFeedContract: {
|
|
|
8908
9132
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
8909
9133
|
message: z.ZodString;
|
|
8910
9134
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
8911
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
9135
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
8912
9136
|
readAt: z.ZodDate;
|
|
8913
9137
|
metadata: z.ZodAny;
|
|
8914
9138
|
platformId: z.ZodString;
|
|
@@ -9566,7 +9790,7 @@ export declare const facebookFeedContract: {
|
|
|
9566
9790
|
};
|
|
9567
9791
|
}>;
|
|
9568
9792
|
}, "strip", z.ZodTypeAny, {
|
|
9569
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
9793
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
9570
9794
|
message: string;
|
|
9571
9795
|
id: string;
|
|
9572
9796
|
url: string;
|
|
@@ -9728,7 +9952,7 @@ export declare const facebookFeedContract: {
|
|
|
9728
9952
|
metadata?: any;
|
|
9729
9953
|
template?: any;
|
|
9730
9954
|
}, {
|
|
9731
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
9955
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
9732
9956
|
message: string;
|
|
9733
9957
|
id: string;
|
|
9734
9958
|
url: string;
|
|
@@ -10102,7 +10326,7 @@ export declare const facebookFeedContract: {
|
|
|
10102
10326
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
10103
10327
|
message: z.ZodString;
|
|
10104
10328
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
10105
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
10329
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
10106
10330
|
readAt: z.ZodDate;
|
|
10107
10331
|
metadata: z.ZodAny;
|
|
10108
10332
|
platformId: z.ZodString;
|
|
@@ -11607,6 +11831,7 @@ export declare const facebookFeedContract: {
|
|
|
11607
11831
|
channelId: z.ZodOptional<z.ZodString>;
|
|
11608
11832
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
11609
11833
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
11834
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
11610
11835
|
}, "strip", z.ZodTypeAny, {
|
|
11611
11836
|
email: string;
|
|
11612
11837
|
wabaExternalId: string;
|
|
@@ -11616,6 +11841,7 @@ export declare const facebookFeedContract: {
|
|
|
11616
11841
|
channelId?: string | undefined;
|
|
11617
11842
|
status?: "active" | "pending" | undefined;
|
|
11618
11843
|
apiKey?: string | undefined;
|
|
11844
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11619
11845
|
}, {
|
|
11620
11846
|
email: string;
|
|
11621
11847
|
wabaExternalId: string;
|
|
@@ -11625,6 +11851,7 @@ export declare const facebookFeedContract: {
|
|
|
11625
11851
|
channelId?: string | undefined;
|
|
11626
11852
|
status?: "active" | "pending" | undefined;
|
|
11627
11853
|
apiKey?: string | undefined;
|
|
11854
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11628
11855
|
}>>;
|
|
11629
11856
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
11630
11857
|
mobileNumber: z.ZodString;
|
|
@@ -11657,6 +11884,7 @@ export declare const facebookFeedContract: {
|
|
|
11657
11884
|
channelId?: string | undefined;
|
|
11658
11885
|
status?: "active" | "pending" | undefined;
|
|
11659
11886
|
apiKey?: string | undefined;
|
|
11887
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11660
11888
|
} | undefined;
|
|
11661
11889
|
vonageCredentials?: {
|
|
11662
11890
|
apiKey: string;
|
|
@@ -11681,6 +11909,7 @@ export declare const facebookFeedContract: {
|
|
|
11681
11909
|
channelId?: string | undefined;
|
|
11682
11910
|
status?: "active" | "pending" | undefined;
|
|
11683
11911
|
apiKey?: string | undefined;
|
|
11912
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11684
11913
|
} | undefined;
|
|
11685
11914
|
vonageCredentials?: {
|
|
11686
11915
|
apiKey: string;
|
|
@@ -11939,6 +12168,7 @@ export declare const facebookFeedContract: {
|
|
|
11939
12168
|
channelId?: string | undefined;
|
|
11940
12169
|
status?: "active" | "pending" | undefined;
|
|
11941
12170
|
apiKey?: string | undefined;
|
|
12171
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11942
12172
|
} | undefined;
|
|
11943
12173
|
vonageCredentials?: {
|
|
11944
12174
|
apiKey: string;
|
|
@@ -12028,6 +12258,7 @@ export declare const facebookFeedContract: {
|
|
|
12028
12258
|
channelId?: string | undefined;
|
|
12029
12259
|
status?: "active" | "pending" | undefined;
|
|
12030
12260
|
apiKey?: string | undefined;
|
|
12261
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12031
12262
|
} | undefined;
|
|
12032
12263
|
vonageCredentials?: {
|
|
12033
12264
|
apiKey: string;
|
|
@@ -12100,17 +12331,17 @@ export declare const facebookFeedContract: {
|
|
|
12100
12331
|
}>;
|
|
12101
12332
|
cxlog: z.ZodObject<{
|
|
12102
12333
|
id: z.ZodString;
|
|
12334
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
12335
|
+
direction: z.ZodNullable<z.ZodString>;
|
|
12103
12336
|
createdAt: z.ZodDate;
|
|
12104
12337
|
updatedAt: z.ZodDate;
|
|
12105
12338
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
12106
|
-
caseId: z.ZodNumber;
|
|
12107
12339
|
entityId: z.ZodString;
|
|
12108
|
-
entityName: z.ZodString;
|
|
12109
|
-
contactId: z.ZodNullable<z.ZodString>;
|
|
12110
|
-
channel: z.ZodNullable<z.ZodString>;
|
|
12111
12340
|
queueId: z.ZodNullable<z.ZodString>;
|
|
12341
|
+
contactId: z.ZodNullable<z.ZodString>;
|
|
12342
|
+
caseId: z.ZodNumber;
|
|
12343
|
+
entityName: z.ZodString;
|
|
12112
12344
|
agentId: z.ZodNullable<z.ZodString>;
|
|
12113
|
-
direction: z.ZodNullable<z.ZodString>;
|
|
12114
12345
|
startedDate: z.ZodNullable<z.ZodDate>;
|
|
12115
12346
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
|
12116
12347
|
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
|
@@ -12380,6 +12611,69 @@ export declare const facebookFeedContract: {
|
|
|
12380
12611
|
dateValue: Date | null;
|
|
12381
12612
|
}[] | null | undefined;
|
|
12382
12613
|
}>>;
|
|
12614
|
+
holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12615
|
+
id: z.ZodString;
|
|
12616
|
+
createdAt: z.ZodDate;
|
|
12617
|
+
updatedAt: z.ZodDate;
|
|
12618
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
12619
|
+
startedAt: z.ZodString;
|
|
12620
|
+
endedAt: z.ZodNullable<z.ZodString>;
|
|
12621
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
12622
|
+
holdLabel: z.ZodObject<{
|
|
12623
|
+
id: z.ZodString;
|
|
12624
|
+
createdAt: z.ZodDate;
|
|
12625
|
+
updatedAt: z.ZodDate;
|
|
12626
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
12627
|
+
name: z.ZodString;
|
|
12628
|
+
position: z.ZodNumber;
|
|
12629
|
+
}, "strip", z.ZodTypeAny, {
|
|
12630
|
+
name: string;
|
|
12631
|
+
id: string;
|
|
12632
|
+
position: number;
|
|
12633
|
+
createdAt: Date;
|
|
12634
|
+
updatedAt: Date;
|
|
12635
|
+
deletedAt: Date | null;
|
|
12636
|
+
}, {
|
|
12637
|
+
name: string;
|
|
12638
|
+
id: string;
|
|
12639
|
+
position: number;
|
|
12640
|
+
createdAt: Date;
|
|
12641
|
+
updatedAt: Date;
|
|
12642
|
+
deletedAt: Date | null;
|
|
12643
|
+
}>;
|
|
12644
|
+
}, "strip", z.ZodTypeAny, {
|
|
12645
|
+
id: string;
|
|
12646
|
+
createdAt: Date;
|
|
12647
|
+
updatedAt: Date;
|
|
12648
|
+
deletedAt: Date | null;
|
|
12649
|
+
startedAt: string;
|
|
12650
|
+
endedAt: string | null;
|
|
12651
|
+
duration: number | null;
|
|
12652
|
+
holdLabel: {
|
|
12653
|
+
name: string;
|
|
12654
|
+
id: string;
|
|
12655
|
+
position: number;
|
|
12656
|
+
createdAt: Date;
|
|
12657
|
+
updatedAt: Date;
|
|
12658
|
+
deletedAt: Date | null;
|
|
12659
|
+
};
|
|
12660
|
+
}, {
|
|
12661
|
+
id: string;
|
|
12662
|
+
createdAt: Date;
|
|
12663
|
+
updatedAt: Date;
|
|
12664
|
+
deletedAt: Date | null;
|
|
12665
|
+
startedAt: string;
|
|
12666
|
+
endedAt: string | null;
|
|
12667
|
+
duration: number | null;
|
|
12668
|
+
holdLabel: {
|
|
12669
|
+
name: string;
|
|
12670
|
+
id: string;
|
|
12671
|
+
position: number;
|
|
12672
|
+
createdAt: Date;
|
|
12673
|
+
updatedAt: Date;
|
|
12674
|
+
deletedAt: Date | null;
|
|
12675
|
+
};
|
|
12676
|
+
}>, "many">>>;
|
|
12383
12677
|
}, "strip", z.ZodTypeAny, {
|
|
12384
12678
|
id: string;
|
|
12385
12679
|
channel: string | null;
|
|
@@ -12448,6 +12742,23 @@ export declare const facebookFeedContract: {
|
|
|
12448
12742
|
dateValue: Date | null;
|
|
12449
12743
|
}[] | null | undefined;
|
|
12450
12744
|
} | null;
|
|
12745
|
+
holdLogs?: {
|
|
12746
|
+
id: string;
|
|
12747
|
+
createdAt: Date;
|
|
12748
|
+
updatedAt: Date;
|
|
12749
|
+
deletedAt: Date | null;
|
|
12750
|
+
startedAt: string;
|
|
12751
|
+
endedAt: string | null;
|
|
12752
|
+
duration: number | null;
|
|
12753
|
+
holdLabel: {
|
|
12754
|
+
name: string;
|
|
12755
|
+
id: string;
|
|
12756
|
+
position: number;
|
|
12757
|
+
createdAt: Date;
|
|
12758
|
+
updatedAt: Date;
|
|
12759
|
+
deletedAt: Date | null;
|
|
12760
|
+
};
|
|
12761
|
+
}[] | null | undefined;
|
|
12451
12762
|
}, {
|
|
12452
12763
|
id: string;
|
|
12453
12764
|
channel: string | null;
|
|
@@ -12516,6 +12827,23 @@ export declare const facebookFeedContract: {
|
|
|
12516
12827
|
dateValue: Date | null;
|
|
12517
12828
|
}[] | null | undefined;
|
|
12518
12829
|
} | null;
|
|
12830
|
+
holdLogs?: {
|
|
12831
|
+
id: string;
|
|
12832
|
+
createdAt: Date;
|
|
12833
|
+
updatedAt: Date;
|
|
12834
|
+
deletedAt: Date | null;
|
|
12835
|
+
startedAt: string;
|
|
12836
|
+
endedAt: string | null;
|
|
12837
|
+
duration: number | null;
|
|
12838
|
+
holdLabel: {
|
|
12839
|
+
name: string;
|
|
12840
|
+
id: string;
|
|
12841
|
+
position: number;
|
|
12842
|
+
createdAt: Date;
|
|
12843
|
+
updatedAt: Date;
|
|
12844
|
+
deletedAt: Date | null;
|
|
12845
|
+
};
|
|
12846
|
+
}[] | null | undefined;
|
|
12519
12847
|
}>;
|
|
12520
12848
|
workflowRule: z.ZodObject<{
|
|
12521
12849
|
id: z.ZodString;
|
|
@@ -12565,6 +12893,7 @@ export declare const facebookFeedContract: {
|
|
|
12565
12893
|
channelId?: string | undefined;
|
|
12566
12894
|
status?: "active" | "pending" | undefined;
|
|
12567
12895
|
apiKey?: string | undefined;
|
|
12896
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12568
12897
|
} | undefined;
|
|
12569
12898
|
vonageCredentials?: {
|
|
12570
12899
|
apiKey: string;
|
|
@@ -12932,6 +13261,23 @@ export declare const facebookFeedContract: {
|
|
|
12932
13261
|
dateValue: Date | null;
|
|
12933
13262
|
}[] | null | undefined;
|
|
12934
13263
|
} | null;
|
|
13264
|
+
holdLogs?: {
|
|
13265
|
+
id: string;
|
|
13266
|
+
createdAt: Date;
|
|
13267
|
+
updatedAt: Date;
|
|
13268
|
+
deletedAt: Date | null;
|
|
13269
|
+
startedAt: string;
|
|
13270
|
+
endedAt: string | null;
|
|
13271
|
+
duration: number | null;
|
|
13272
|
+
holdLabel: {
|
|
13273
|
+
name: string;
|
|
13274
|
+
id: string;
|
|
13275
|
+
position: number;
|
|
13276
|
+
createdAt: Date;
|
|
13277
|
+
updatedAt: Date;
|
|
13278
|
+
deletedAt: Date | null;
|
|
13279
|
+
};
|
|
13280
|
+
}[] | null | undefined;
|
|
12935
13281
|
};
|
|
12936
13282
|
workflowRule: {
|
|
12937
13283
|
name: string;
|
|
@@ -12965,6 +13311,7 @@ export declare const facebookFeedContract: {
|
|
|
12965
13311
|
channelId?: string | undefined;
|
|
12966
13312
|
status?: "active" | "pending" | undefined;
|
|
12967
13313
|
apiKey?: string | undefined;
|
|
13314
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12968
13315
|
} | undefined;
|
|
12969
13316
|
vonageCredentials?: {
|
|
12970
13317
|
apiKey: string;
|
|
@@ -13332,6 +13679,23 @@ export declare const facebookFeedContract: {
|
|
|
13332
13679
|
dateValue: Date | null;
|
|
13333
13680
|
}[] | null | undefined;
|
|
13334
13681
|
} | null;
|
|
13682
|
+
holdLogs?: {
|
|
13683
|
+
id: string;
|
|
13684
|
+
createdAt: Date;
|
|
13685
|
+
updatedAt: Date;
|
|
13686
|
+
deletedAt: Date | null;
|
|
13687
|
+
startedAt: string;
|
|
13688
|
+
endedAt: string | null;
|
|
13689
|
+
duration: number | null;
|
|
13690
|
+
holdLabel: {
|
|
13691
|
+
name: string;
|
|
13692
|
+
id: string;
|
|
13693
|
+
position: number;
|
|
13694
|
+
createdAt: Date;
|
|
13695
|
+
updatedAt: Date;
|
|
13696
|
+
deletedAt: Date | null;
|
|
13697
|
+
};
|
|
13698
|
+
}[] | null | undefined;
|
|
13335
13699
|
};
|
|
13336
13700
|
workflowRule: {
|
|
13337
13701
|
name: string;
|
|
@@ -13385,7 +13749,7 @@ export declare const facebookFeedContract: {
|
|
|
13385
13749
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
13386
13750
|
message: z.ZodString;
|
|
13387
13751
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
13388
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
13752
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
13389
13753
|
readAt: z.ZodDate;
|
|
13390
13754
|
metadata: z.ZodAny;
|
|
13391
13755
|
platformId: z.ZodString;
|
|
@@ -14043,7 +14407,7 @@ export declare const facebookFeedContract: {
|
|
|
14043
14407
|
};
|
|
14044
14408
|
}>;
|
|
14045
14409
|
}, "strip", z.ZodTypeAny, {
|
|
14046
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
14410
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14047
14411
|
message: string;
|
|
14048
14412
|
id: string;
|
|
14049
14413
|
url: string;
|
|
@@ -14205,7 +14569,7 @@ export declare const facebookFeedContract: {
|
|
|
14205
14569
|
metadata?: any;
|
|
14206
14570
|
template?: any;
|
|
14207
14571
|
}, {
|
|
14208
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
14572
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14209
14573
|
message: string;
|
|
14210
14574
|
id: string;
|
|
14211
14575
|
url: string;
|
|
@@ -15007,7 +15371,7 @@ export declare const facebookFeedContract: {
|
|
|
15007
15371
|
editedMessageid: z.ZodString;
|
|
15008
15372
|
label: z.ZodOptional<z.ZodString>;
|
|
15009
15373
|
}, "strip", z.ZodTypeAny, {
|
|
15010
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
15374
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15011
15375
|
message: string;
|
|
15012
15376
|
id: string;
|
|
15013
15377
|
url: string;
|
|
@@ -15138,6 +15502,7 @@ export declare const facebookFeedContract: {
|
|
|
15138
15502
|
channelId?: string | undefined;
|
|
15139
15503
|
status?: "active" | "pending" | undefined;
|
|
15140
15504
|
apiKey?: string | undefined;
|
|
15505
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
15141
15506
|
} | undefined;
|
|
15142
15507
|
vonageCredentials?: {
|
|
15143
15508
|
apiKey: string;
|
|
@@ -15505,6 +15870,23 @@ export declare const facebookFeedContract: {
|
|
|
15505
15870
|
dateValue: Date | null;
|
|
15506
15871
|
}[] | null | undefined;
|
|
15507
15872
|
} | null;
|
|
15873
|
+
holdLogs?: {
|
|
15874
|
+
id: string;
|
|
15875
|
+
createdAt: Date;
|
|
15876
|
+
updatedAt: Date;
|
|
15877
|
+
deletedAt: Date | null;
|
|
15878
|
+
startedAt: string;
|
|
15879
|
+
endedAt: string | null;
|
|
15880
|
+
duration: number | null;
|
|
15881
|
+
holdLabel: {
|
|
15882
|
+
name: string;
|
|
15883
|
+
id: string;
|
|
15884
|
+
position: number;
|
|
15885
|
+
createdAt: Date;
|
|
15886
|
+
updatedAt: Date;
|
|
15887
|
+
deletedAt: Date | null;
|
|
15888
|
+
};
|
|
15889
|
+
}[] | null | undefined;
|
|
15508
15890
|
};
|
|
15509
15891
|
workflowRule: {
|
|
15510
15892
|
name: string;
|
|
@@ -15533,7 +15915,7 @@ export declare const facebookFeedContract: {
|
|
|
15533
15915
|
previewUrl: string;
|
|
15534
15916
|
imageSetId: string;
|
|
15535
15917
|
repliedMessage: {
|
|
15536
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
15918
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15537
15919
|
message: string;
|
|
15538
15920
|
id: string;
|
|
15539
15921
|
url: string;
|
|
@@ -15744,7 +16126,7 @@ export declare const facebookFeedContract: {
|
|
|
15744
16126
|
template?: any;
|
|
15745
16127
|
label?: string | undefined;
|
|
15746
16128
|
}, {
|
|
15747
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
16129
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15748
16130
|
message: string;
|
|
15749
16131
|
id: string;
|
|
15750
16132
|
url: string;
|
|
@@ -15875,6 +16257,7 @@ export declare const facebookFeedContract: {
|
|
|
15875
16257
|
channelId?: string | undefined;
|
|
15876
16258
|
status?: "active" | "pending" | undefined;
|
|
15877
16259
|
apiKey?: string | undefined;
|
|
16260
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
15878
16261
|
} | undefined;
|
|
15879
16262
|
vonageCredentials?: {
|
|
15880
16263
|
apiKey: string;
|
|
@@ -16242,6 +16625,23 @@ export declare const facebookFeedContract: {
|
|
|
16242
16625
|
dateValue: Date | null;
|
|
16243
16626
|
}[] | null | undefined;
|
|
16244
16627
|
} | null;
|
|
16628
|
+
holdLogs?: {
|
|
16629
|
+
id: string;
|
|
16630
|
+
createdAt: Date;
|
|
16631
|
+
updatedAt: Date;
|
|
16632
|
+
deletedAt: Date | null;
|
|
16633
|
+
startedAt: string;
|
|
16634
|
+
endedAt: string | null;
|
|
16635
|
+
duration: number | null;
|
|
16636
|
+
holdLabel: {
|
|
16637
|
+
name: string;
|
|
16638
|
+
id: string;
|
|
16639
|
+
position: number;
|
|
16640
|
+
createdAt: Date;
|
|
16641
|
+
updatedAt: Date;
|
|
16642
|
+
deletedAt: Date | null;
|
|
16643
|
+
};
|
|
16644
|
+
}[] | null | undefined;
|
|
16245
16645
|
};
|
|
16246
16646
|
workflowRule: {
|
|
16247
16647
|
name: string;
|
|
@@ -16270,7 +16670,7 @@ export declare const facebookFeedContract: {
|
|
|
16270
16670
|
previewUrl: string;
|
|
16271
16671
|
imageSetId: string;
|
|
16272
16672
|
repliedMessage: {
|
|
16273
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
16673
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16274
16674
|
message: string;
|
|
16275
16675
|
id: string;
|
|
16276
16676
|
url: string;
|
|
@@ -16482,7 +16882,7 @@ export declare const facebookFeedContract: {
|
|
|
16482
16882
|
label?: string | undefined;
|
|
16483
16883
|
}>>>;
|
|
16484
16884
|
}, "strip", z.ZodTypeAny, {
|
|
16485
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
16885
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16486
16886
|
message: string;
|
|
16487
16887
|
id: string;
|
|
16488
16888
|
url: string;
|
|
@@ -16613,6 +17013,7 @@ export declare const facebookFeedContract: {
|
|
|
16613
17013
|
channelId?: string | undefined;
|
|
16614
17014
|
status?: "active" | "pending" | undefined;
|
|
16615
17015
|
apiKey?: string | undefined;
|
|
17016
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
16616
17017
|
} | undefined;
|
|
16617
17018
|
vonageCredentials?: {
|
|
16618
17019
|
apiKey: string;
|
|
@@ -16980,6 +17381,23 @@ export declare const facebookFeedContract: {
|
|
|
16980
17381
|
dateValue: Date | null;
|
|
16981
17382
|
}[] | null | undefined;
|
|
16982
17383
|
} | null;
|
|
17384
|
+
holdLogs?: {
|
|
17385
|
+
id: string;
|
|
17386
|
+
createdAt: Date;
|
|
17387
|
+
updatedAt: Date;
|
|
17388
|
+
deletedAt: Date | null;
|
|
17389
|
+
startedAt: string;
|
|
17390
|
+
endedAt: string | null;
|
|
17391
|
+
duration: number | null;
|
|
17392
|
+
holdLabel: {
|
|
17393
|
+
name: string;
|
|
17394
|
+
id: string;
|
|
17395
|
+
position: number;
|
|
17396
|
+
createdAt: Date;
|
|
17397
|
+
updatedAt: Date;
|
|
17398
|
+
deletedAt: Date | null;
|
|
17399
|
+
};
|
|
17400
|
+
}[] | null | undefined;
|
|
16983
17401
|
};
|
|
16984
17402
|
workflowRule: {
|
|
16985
17403
|
name: string;
|
|
@@ -17008,7 +17426,7 @@ export declare const facebookFeedContract: {
|
|
|
17008
17426
|
previewUrl: string;
|
|
17009
17427
|
imageSetId: string;
|
|
17010
17428
|
repliedMessage: {
|
|
17011
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
17429
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17012
17430
|
message: string;
|
|
17013
17431
|
id: string;
|
|
17014
17432
|
url: string;
|
|
@@ -17219,7 +17637,7 @@ export declare const facebookFeedContract: {
|
|
|
17219
17637
|
template?: any;
|
|
17220
17638
|
metadata?: any;
|
|
17221
17639
|
fromMessage?: {
|
|
17222
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
17640
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17223
17641
|
message: string;
|
|
17224
17642
|
id: string;
|
|
17225
17643
|
url: string;
|
|
@@ -17350,6 +17768,7 @@ export declare const facebookFeedContract: {
|
|
|
17350
17768
|
channelId?: string | undefined;
|
|
17351
17769
|
status?: "active" | "pending" | undefined;
|
|
17352
17770
|
apiKey?: string | undefined;
|
|
17771
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
17353
17772
|
} | undefined;
|
|
17354
17773
|
vonageCredentials?: {
|
|
17355
17774
|
apiKey: string;
|
|
@@ -17717,6 +18136,23 @@ export declare const facebookFeedContract: {
|
|
|
17717
18136
|
dateValue: Date | null;
|
|
17718
18137
|
}[] | null | undefined;
|
|
17719
18138
|
} | null;
|
|
18139
|
+
holdLogs?: {
|
|
18140
|
+
id: string;
|
|
18141
|
+
createdAt: Date;
|
|
18142
|
+
updatedAt: Date;
|
|
18143
|
+
deletedAt: Date | null;
|
|
18144
|
+
startedAt: string;
|
|
18145
|
+
endedAt: string | null;
|
|
18146
|
+
duration: number | null;
|
|
18147
|
+
holdLabel: {
|
|
18148
|
+
name: string;
|
|
18149
|
+
id: string;
|
|
18150
|
+
position: number;
|
|
18151
|
+
createdAt: Date;
|
|
18152
|
+
updatedAt: Date;
|
|
18153
|
+
deletedAt: Date | null;
|
|
18154
|
+
};
|
|
18155
|
+
}[] | null | undefined;
|
|
17720
18156
|
};
|
|
17721
18157
|
workflowRule: {
|
|
17722
18158
|
name: string;
|
|
@@ -17745,7 +18181,7 @@ export declare const facebookFeedContract: {
|
|
|
17745
18181
|
previewUrl: string;
|
|
17746
18182
|
imageSetId: string;
|
|
17747
18183
|
repliedMessage: {
|
|
17748
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
18184
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17749
18185
|
message: string;
|
|
17750
18186
|
id: string;
|
|
17751
18187
|
url: string;
|
|
@@ -17957,7 +18393,7 @@ export declare const facebookFeedContract: {
|
|
|
17957
18393
|
label?: string | undefined;
|
|
17958
18394
|
} | null | undefined;
|
|
17959
18395
|
}, {
|
|
17960
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
18396
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17961
18397
|
message: string;
|
|
17962
18398
|
id: string;
|
|
17963
18399
|
url: string;
|
|
@@ -18088,6 +18524,7 @@ export declare const facebookFeedContract: {
|
|
|
18088
18524
|
channelId?: string | undefined;
|
|
18089
18525
|
status?: "active" | "pending" | undefined;
|
|
18090
18526
|
apiKey?: string | undefined;
|
|
18527
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18091
18528
|
} | undefined;
|
|
18092
18529
|
vonageCredentials?: {
|
|
18093
18530
|
apiKey: string;
|
|
@@ -18455,6 +18892,23 @@ export declare const facebookFeedContract: {
|
|
|
18455
18892
|
dateValue: Date | null;
|
|
18456
18893
|
}[] | null | undefined;
|
|
18457
18894
|
} | null;
|
|
18895
|
+
holdLogs?: {
|
|
18896
|
+
id: string;
|
|
18897
|
+
createdAt: Date;
|
|
18898
|
+
updatedAt: Date;
|
|
18899
|
+
deletedAt: Date | null;
|
|
18900
|
+
startedAt: string;
|
|
18901
|
+
endedAt: string | null;
|
|
18902
|
+
duration: number | null;
|
|
18903
|
+
holdLabel: {
|
|
18904
|
+
name: string;
|
|
18905
|
+
id: string;
|
|
18906
|
+
position: number;
|
|
18907
|
+
createdAt: Date;
|
|
18908
|
+
updatedAt: Date;
|
|
18909
|
+
deletedAt: Date | null;
|
|
18910
|
+
};
|
|
18911
|
+
}[] | null | undefined;
|
|
18458
18912
|
};
|
|
18459
18913
|
workflowRule: {
|
|
18460
18914
|
name: string;
|
|
@@ -18483,7 +18937,7 @@ export declare const facebookFeedContract: {
|
|
|
18483
18937
|
previewUrl: string;
|
|
18484
18938
|
imageSetId: string;
|
|
18485
18939
|
repliedMessage: {
|
|
18486
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
18940
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18487
18941
|
message: string;
|
|
18488
18942
|
id: string;
|
|
18489
18943
|
url: string;
|
|
@@ -18694,7 +19148,7 @@ export declare const facebookFeedContract: {
|
|
|
18694
19148
|
template?: any;
|
|
18695
19149
|
metadata?: any;
|
|
18696
19150
|
fromMessage?: {
|
|
18697
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
19151
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18698
19152
|
message: string;
|
|
18699
19153
|
id: string;
|
|
18700
19154
|
url: string;
|
|
@@ -18825,6 +19279,7 @@ export declare const facebookFeedContract: {
|
|
|
18825
19279
|
channelId?: string | undefined;
|
|
18826
19280
|
status?: "active" | "pending" | undefined;
|
|
18827
19281
|
apiKey?: string | undefined;
|
|
19282
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18828
19283
|
} | undefined;
|
|
18829
19284
|
vonageCredentials?: {
|
|
18830
19285
|
apiKey: string;
|
|
@@ -19192,6 +19647,23 @@ export declare const facebookFeedContract: {
|
|
|
19192
19647
|
dateValue: Date | null;
|
|
19193
19648
|
}[] | null | undefined;
|
|
19194
19649
|
} | null;
|
|
19650
|
+
holdLogs?: {
|
|
19651
|
+
id: string;
|
|
19652
|
+
createdAt: Date;
|
|
19653
|
+
updatedAt: Date;
|
|
19654
|
+
deletedAt: Date | null;
|
|
19655
|
+
startedAt: string;
|
|
19656
|
+
endedAt: string | null;
|
|
19657
|
+
duration: number | null;
|
|
19658
|
+
holdLabel: {
|
|
19659
|
+
name: string;
|
|
19660
|
+
id: string;
|
|
19661
|
+
position: number;
|
|
19662
|
+
createdAt: Date;
|
|
19663
|
+
updatedAt: Date;
|
|
19664
|
+
deletedAt: Date | null;
|
|
19665
|
+
};
|
|
19666
|
+
}[] | null | undefined;
|
|
19195
19667
|
};
|
|
19196
19668
|
workflowRule: {
|
|
19197
19669
|
name: string;
|
|
@@ -19220,7 +19692,7 @@ export declare const facebookFeedContract: {
|
|
|
19220
19692
|
previewUrl: string;
|
|
19221
19693
|
imageSetId: string;
|
|
19222
19694
|
repliedMessage: {
|
|
19223
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
19695
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19224
19696
|
message: string;
|
|
19225
19697
|
id: string;
|
|
19226
19698
|
url: string;
|
|
@@ -19434,7 +19906,7 @@ export declare const facebookFeedContract: {
|
|
|
19434
19906
|
}>;
|
|
19435
19907
|
}, "strip", z.ZodTypeAny, {
|
|
19436
19908
|
data: {
|
|
19437
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
19909
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19438
19910
|
message: string;
|
|
19439
19911
|
id: string;
|
|
19440
19912
|
url: string;
|
|
@@ -19565,6 +20037,7 @@ export declare const facebookFeedContract: {
|
|
|
19565
20037
|
channelId?: string | undefined;
|
|
19566
20038
|
status?: "active" | "pending" | undefined;
|
|
19567
20039
|
apiKey?: string | undefined;
|
|
20040
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19568
20041
|
} | undefined;
|
|
19569
20042
|
vonageCredentials?: {
|
|
19570
20043
|
apiKey: string;
|
|
@@ -19932,6 +20405,23 @@ export declare const facebookFeedContract: {
|
|
|
19932
20405
|
dateValue: Date | null;
|
|
19933
20406
|
}[] | null | undefined;
|
|
19934
20407
|
} | null;
|
|
20408
|
+
holdLogs?: {
|
|
20409
|
+
id: string;
|
|
20410
|
+
createdAt: Date;
|
|
20411
|
+
updatedAt: Date;
|
|
20412
|
+
deletedAt: Date | null;
|
|
20413
|
+
startedAt: string;
|
|
20414
|
+
endedAt: string | null;
|
|
20415
|
+
duration: number | null;
|
|
20416
|
+
holdLabel: {
|
|
20417
|
+
name: string;
|
|
20418
|
+
id: string;
|
|
20419
|
+
position: number;
|
|
20420
|
+
createdAt: Date;
|
|
20421
|
+
updatedAt: Date;
|
|
20422
|
+
deletedAt: Date | null;
|
|
20423
|
+
};
|
|
20424
|
+
}[] | null | undefined;
|
|
19935
20425
|
};
|
|
19936
20426
|
workflowRule: {
|
|
19937
20427
|
name: string;
|
|
@@ -19960,7 +20450,7 @@ export declare const facebookFeedContract: {
|
|
|
19960
20450
|
previewUrl: string;
|
|
19961
20451
|
imageSetId: string;
|
|
19962
20452
|
repliedMessage: {
|
|
19963
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
20453
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19964
20454
|
message: string;
|
|
19965
20455
|
id: string;
|
|
19966
20456
|
url: string;
|
|
@@ -20171,7 +20661,7 @@ export declare const facebookFeedContract: {
|
|
|
20171
20661
|
template?: any;
|
|
20172
20662
|
metadata?: any;
|
|
20173
20663
|
fromMessage?: {
|
|
20174
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
20664
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20175
20665
|
message: string;
|
|
20176
20666
|
id: string;
|
|
20177
20667
|
url: string;
|
|
@@ -20302,6 +20792,7 @@ export declare const facebookFeedContract: {
|
|
|
20302
20792
|
channelId?: string | undefined;
|
|
20303
20793
|
status?: "active" | "pending" | undefined;
|
|
20304
20794
|
apiKey?: string | undefined;
|
|
20795
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20305
20796
|
} | undefined;
|
|
20306
20797
|
vonageCredentials?: {
|
|
20307
20798
|
apiKey: string;
|
|
@@ -20669,6 +21160,23 @@ export declare const facebookFeedContract: {
|
|
|
20669
21160
|
dateValue: Date | null;
|
|
20670
21161
|
}[] | null | undefined;
|
|
20671
21162
|
} | null;
|
|
21163
|
+
holdLogs?: {
|
|
21164
|
+
id: string;
|
|
21165
|
+
createdAt: Date;
|
|
21166
|
+
updatedAt: Date;
|
|
21167
|
+
deletedAt: Date | null;
|
|
21168
|
+
startedAt: string;
|
|
21169
|
+
endedAt: string | null;
|
|
21170
|
+
duration: number | null;
|
|
21171
|
+
holdLabel: {
|
|
21172
|
+
name: string;
|
|
21173
|
+
id: string;
|
|
21174
|
+
position: number;
|
|
21175
|
+
createdAt: Date;
|
|
21176
|
+
updatedAt: Date;
|
|
21177
|
+
deletedAt: Date | null;
|
|
21178
|
+
};
|
|
21179
|
+
}[] | null | undefined;
|
|
20672
21180
|
};
|
|
20673
21181
|
workflowRule: {
|
|
20674
21182
|
name: string;
|
|
@@ -20697,7 +21205,7 @@ export declare const facebookFeedContract: {
|
|
|
20697
21205
|
previewUrl: string;
|
|
20698
21206
|
imageSetId: string;
|
|
20699
21207
|
repliedMessage: {
|
|
20700
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
21208
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20701
21209
|
message: string;
|
|
20702
21210
|
id: string;
|
|
20703
21211
|
url: string;
|
|
@@ -20912,7 +21420,7 @@ export declare const facebookFeedContract: {
|
|
|
20912
21420
|
requestId: string;
|
|
20913
21421
|
}, {
|
|
20914
21422
|
data: {
|
|
20915
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
21423
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20916
21424
|
message: string;
|
|
20917
21425
|
id: string;
|
|
20918
21426
|
url: string;
|
|
@@ -21043,6 +21551,7 @@ export declare const facebookFeedContract: {
|
|
|
21043
21551
|
channelId?: string | undefined;
|
|
21044
21552
|
status?: "active" | "pending" | undefined;
|
|
21045
21553
|
apiKey?: string | undefined;
|
|
21554
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
21046
21555
|
} | undefined;
|
|
21047
21556
|
vonageCredentials?: {
|
|
21048
21557
|
apiKey: string;
|
|
@@ -21410,6 +21919,23 @@ export declare const facebookFeedContract: {
|
|
|
21410
21919
|
dateValue: Date | null;
|
|
21411
21920
|
}[] | null | undefined;
|
|
21412
21921
|
} | null;
|
|
21922
|
+
holdLogs?: {
|
|
21923
|
+
id: string;
|
|
21924
|
+
createdAt: Date;
|
|
21925
|
+
updatedAt: Date;
|
|
21926
|
+
deletedAt: Date | null;
|
|
21927
|
+
startedAt: string;
|
|
21928
|
+
endedAt: string | null;
|
|
21929
|
+
duration: number | null;
|
|
21930
|
+
holdLabel: {
|
|
21931
|
+
name: string;
|
|
21932
|
+
id: string;
|
|
21933
|
+
position: number;
|
|
21934
|
+
createdAt: Date;
|
|
21935
|
+
updatedAt: Date;
|
|
21936
|
+
deletedAt: Date | null;
|
|
21937
|
+
};
|
|
21938
|
+
}[] | null | undefined;
|
|
21413
21939
|
};
|
|
21414
21940
|
workflowRule: {
|
|
21415
21941
|
name: string;
|
|
@@ -21438,7 +21964,7 @@ export declare const facebookFeedContract: {
|
|
|
21438
21964
|
previewUrl: string;
|
|
21439
21965
|
imageSetId: string;
|
|
21440
21966
|
repliedMessage: {
|
|
21441
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
21967
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21442
21968
|
message: string;
|
|
21443
21969
|
id: string;
|
|
21444
21970
|
url: string;
|
|
@@ -21649,7 +22175,7 @@ export declare const facebookFeedContract: {
|
|
|
21649
22175
|
template?: any;
|
|
21650
22176
|
metadata?: any;
|
|
21651
22177
|
fromMessage?: {
|
|
21652
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
22178
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21653
22179
|
message: string;
|
|
21654
22180
|
id: string;
|
|
21655
22181
|
url: string;
|
|
@@ -21780,6 +22306,7 @@ export declare const facebookFeedContract: {
|
|
|
21780
22306
|
channelId?: string | undefined;
|
|
21781
22307
|
status?: "active" | "pending" | undefined;
|
|
21782
22308
|
apiKey?: string | undefined;
|
|
22309
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
21783
22310
|
} | undefined;
|
|
21784
22311
|
vonageCredentials?: {
|
|
21785
22312
|
apiKey: string;
|
|
@@ -22147,6 +22674,23 @@ export declare const facebookFeedContract: {
|
|
|
22147
22674
|
dateValue: Date | null;
|
|
22148
22675
|
}[] | null | undefined;
|
|
22149
22676
|
} | null;
|
|
22677
|
+
holdLogs?: {
|
|
22678
|
+
id: string;
|
|
22679
|
+
createdAt: Date;
|
|
22680
|
+
updatedAt: Date;
|
|
22681
|
+
deletedAt: Date | null;
|
|
22682
|
+
startedAt: string;
|
|
22683
|
+
endedAt: string | null;
|
|
22684
|
+
duration: number | null;
|
|
22685
|
+
holdLabel: {
|
|
22686
|
+
name: string;
|
|
22687
|
+
id: string;
|
|
22688
|
+
position: number;
|
|
22689
|
+
createdAt: Date;
|
|
22690
|
+
updatedAt: Date;
|
|
22691
|
+
deletedAt: Date | null;
|
|
22692
|
+
};
|
|
22693
|
+
}[] | null | undefined;
|
|
22150
22694
|
};
|
|
22151
22695
|
workflowRule: {
|
|
22152
22696
|
name: string;
|
|
@@ -22175,7 +22719,7 @@ export declare const facebookFeedContract: {
|
|
|
22175
22719
|
previewUrl: string;
|
|
22176
22720
|
imageSetId: string;
|
|
22177
22721
|
repliedMessage: {
|
|
22178
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
22722
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
22179
22723
|
message: string;
|
|
22180
22724
|
id: string;
|
|
22181
22725
|
url: string;
|
|
@@ -22436,6 +22980,7 @@ export declare const facebookFeedContract: {
|
|
|
22436
22980
|
channelId: z.ZodOptional<z.ZodString>;
|
|
22437
22981
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
22438
22982
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
22983
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
22439
22984
|
}, "strip", z.ZodTypeAny, {
|
|
22440
22985
|
email: string;
|
|
22441
22986
|
wabaExternalId: string;
|
|
@@ -22445,6 +22990,7 @@ export declare const facebookFeedContract: {
|
|
|
22445
22990
|
channelId?: string | undefined;
|
|
22446
22991
|
status?: "active" | "pending" | undefined;
|
|
22447
22992
|
apiKey?: string | undefined;
|
|
22993
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
22448
22994
|
}, {
|
|
22449
22995
|
email: string;
|
|
22450
22996
|
wabaExternalId: string;
|
|
@@ -22454,6 +23000,7 @@ export declare const facebookFeedContract: {
|
|
|
22454
23000
|
channelId?: string | undefined;
|
|
22455
23001
|
status?: "active" | "pending" | undefined;
|
|
22456
23002
|
apiKey?: string | undefined;
|
|
23003
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
22457
23004
|
}>>;
|
|
22458
23005
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
22459
23006
|
mobileNumber: z.ZodString;
|
|
@@ -22486,6 +23033,7 @@ export declare const facebookFeedContract: {
|
|
|
22486
23033
|
channelId?: string | undefined;
|
|
22487
23034
|
status?: "active" | "pending" | undefined;
|
|
22488
23035
|
apiKey?: string | undefined;
|
|
23036
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
22489
23037
|
} | undefined;
|
|
22490
23038
|
vonageCredentials?: {
|
|
22491
23039
|
apiKey: string;
|
|
@@ -22510,6 +23058,7 @@ export declare const facebookFeedContract: {
|
|
|
22510
23058
|
channelId?: string | undefined;
|
|
22511
23059
|
status?: "active" | "pending" | undefined;
|
|
22512
23060
|
apiKey?: string | undefined;
|
|
23061
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
22513
23062
|
} | undefined;
|
|
22514
23063
|
vonageCredentials?: {
|
|
22515
23064
|
apiKey: string;
|
|
@@ -22564,6 +23113,7 @@ export declare const facebookFeedContract: {
|
|
|
22564
23113
|
channelId?: string | undefined;
|
|
22565
23114
|
status?: "active" | "pending" | undefined;
|
|
22566
23115
|
apiKey?: string | undefined;
|
|
23116
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
22567
23117
|
} | undefined;
|
|
22568
23118
|
vonageCredentials?: {
|
|
22569
23119
|
apiKey: string;
|
|
@@ -22606,6 +23156,7 @@ export declare const facebookFeedContract: {
|
|
|
22606
23156
|
channelId?: string | undefined;
|
|
22607
23157
|
status?: "active" | "pending" | undefined;
|
|
22608
23158
|
apiKey?: string | undefined;
|
|
23159
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
22609
23160
|
} | undefined;
|
|
22610
23161
|
vonageCredentials?: {
|
|
22611
23162
|
apiKey: string;
|
|
@@ -22651,6 +23202,7 @@ export declare const facebookFeedContract: {
|
|
|
22651
23202
|
channelId?: string | undefined;
|
|
22652
23203
|
status?: "active" | "pending" | undefined;
|
|
22653
23204
|
apiKey?: string | undefined;
|
|
23205
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
22654
23206
|
} | undefined;
|
|
22655
23207
|
vonageCredentials?: {
|
|
22656
23208
|
apiKey: string;
|
|
@@ -22696,6 +23248,7 @@ export declare const facebookFeedContract: {
|
|
|
22696
23248
|
channelId?: string | undefined;
|
|
22697
23249
|
status?: "active" | "pending" | undefined;
|
|
22698
23250
|
apiKey?: string | undefined;
|
|
23251
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
22699
23252
|
} | undefined;
|
|
22700
23253
|
vonageCredentials?: {
|
|
22701
23254
|
apiKey: string;
|
|
@@ -22724,7 +23277,7 @@ export declare const facebookFeedContract: {
|
|
|
22724
23277
|
id: z.ZodOptional<z.ZodString>;
|
|
22725
23278
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22726
23279
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
22727
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
23280
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
22728
23281
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
22729
23282
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
22730
23283
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -22776,7 +23329,7 @@ export declare const facebookFeedContract: {
|
|
|
22776
23329
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22777
23330
|
feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22778
23331
|
}, "strip", z.ZodTypeAny, {
|
|
22779
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
23332
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
22780
23333
|
direction: "incoming" | "outgoing" | "system";
|
|
22781
23334
|
id?: string | undefined;
|
|
22782
23335
|
message?: string | null | undefined;
|
|
@@ -22807,7 +23360,7 @@ export declare const facebookFeedContract: {
|
|
|
22807
23360
|
parentMessageId?: string | null | undefined;
|
|
22808
23361
|
feedPostId?: string | null | undefined;
|
|
22809
23362
|
}, {
|
|
22810
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
23363
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
22811
23364
|
direction: "incoming" | "outgoing" | "system";
|
|
22812
23365
|
id?: string | undefined;
|
|
22813
23366
|
message?: string | null | undefined;
|
|
@@ -22840,7 +23393,7 @@ export declare const facebookFeedContract: {
|
|
|
22840
23393
|
}>;
|
|
22841
23394
|
}, "strip", z.ZodTypeAny, {
|
|
22842
23395
|
message: {
|
|
22843
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
23396
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
22844
23397
|
direction: "incoming" | "outgoing" | "system";
|
|
22845
23398
|
id?: string | undefined;
|
|
22846
23399
|
message?: string | null | undefined;
|
|
@@ -22893,6 +23446,7 @@ export declare const facebookFeedContract: {
|
|
|
22893
23446
|
channelId?: string | undefined;
|
|
22894
23447
|
status?: "active" | "pending" | undefined;
|
|
22895
23448
|
apiKey?: string | undefined;
|
|
23449
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
22896
23450
|
} | undefined;
|
|
22897
23451
|
vonageCredentials?: {
|
|
22898
23452
|
apiKey: string;
|
|
@@ -22919,7 +23473,7 @@ export declare const facebookFeedContract: {
|
|
|
22919
23473
|
};
|
|
22920
23474
|
}, {
|
|
22921
23475
|
message: {
|
|
22922
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
23476
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
22923
23477
|
direction: "incoming" | "outgoing" | "system";
|
|
22924
23478
|
id?: string | undefined;
|
|
22925
23479
|
message?: string | null | undefined;
|
|
@@ -22972,6 +23526,7 @@ export declare const facebookFeedContract: {
|
|
|
22972
23526
|
channelId?: string | undefined;
|
|
22973
23527
|
status?: "active" | "pending" | undefined;
|
|
22974
23528
|
apiKey?: string | undefined;
|
|
23529
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
22975
23530
|
} | undefined;
|
|
22976
23531
|
vonageCredentials?: {
|
|
22977
23532
|
apiKey: string;
|
|
@@ -23022,6 +23577,7 @@ export declare const facebookFeedContract: {
|
|
|
23022
23577
|
channelId: z.ZodOptional<z.ZodString>;
|
|
23023
23578
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
23024
23579
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
23580
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
23025
23581
|
}, "strip", z.ZodTypeAny, {
|
|
23026
23582
|
email: string;
|
|
23027
23583
|
wabaExternalId: string;
|
|
@@ -23031,6 +23587,7 @@ export declare const facebookFeedContract: {
|
|
|
23031
23587
|
channelId?: string | undefined;
|
|
23032
23588
|
status?: "active" | "pending" | undefined;
|
|
23033
23589
|
apiKey?: string | undefined;
|
|
23590
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23034
23591
|
}, {
|
|
23035
23592
|
email: string;
|
|
23036
23593
|
wabaExternalId: string;
|
|
@@ -23040,6 +23597,7 @@ export declare const facebookFeedContract: {
|
|
|
23040
23597
|
channelId?: string | undefined;
|
|
23041
23598
|
status?: "active" | "pending" | undefined;
|
|
23042
23599
|
apiKey?: string | undefined;
|
|
23600
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23043
23601
|
}>>;
|
|
23044
23602
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
23045
23603
|
mobileNumber: z.ZodString;
|
|
@@ -23072,6 +23630,7 @@ export declare const facebookFeedContract: {
|
|
|
23072
23630
|
channelId?: string | undefined;
|
|
23073
23631
|
status?: "active" | "pending" | undefined;
|
|
23074
23632
|
apiKey?: string | undefined;
|
|
23633
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23075
23634
|
} | undefined;
|
|
23076
23635
|
vonageCredentials?: {
|
|
23077
23636
|
apiKey: string;
|
|
@@ -23096,6 +23655,7 @@ export declare const facebookFeedContract: {
|
|
|
23096
23655
|
channelId?: string | undefined;
|
|
23097
23656
|
status?: "active" | "pending" | undefined;
|
|
23098
23657
|
apiKey?: string | undefined;
|
|
23658
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23099
23659
|
} | undefined;
|
|
23100
23660
|
vonageCredentials?: {
|
|
23101
23661
|
apiKey: string;
|
|
@@ -23150,6 +23710,7 @@ export declare const facebookFeedContract: {
|
|
|
23150
23710
|
channelId?: string | undefined;
|
|
23151
23711
|
status?: "active" | "pending" | undefined;
|
|
23152
23712
|
apiKey?: string | undefined;
|
|
23713
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23153
23714
|
} | undefined;
|
|
23154
23715
|
vonageCredentials?: {
|
|
23155
23716
|
apiKey: string;
|
|
@@ -23192,6 +23753,7 @@ export declare const facebookFeedContract: {
|
|
|
23192
23753
|
channelId?: string | undefined;
|
|
23193
23754
|
status?: "active" | "pending" | undefined;
|
|
23194
23755
|
apiKey?: string | undefined;
|
|
23756
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23195
23757
|
} | undefined;
|
|
23196
23758
|
vonageCredentials?: {
|
|
23197
23759
|
apiKey: string;
|
|
@@ -23237,6 +23799,7 @@ export declare const facebookFeedContract: {
|
|
|
23237
23799
|
channelId?: string | undefined;
|
|
23238
23800
|
status?: "active" | "pending" | undefined;
|
|
23239
23801
|
apiKey?: string | undefined;
|
|
23802
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23240
23803
|
} | undefined;
|
|
23241
23804
|
vonageCredentials?: {
|
|
23242
23805
|
apiKey: string;
|
|
@@ -23282,6 +23845,7 @@ export declare const facebookFeedContract: {
|
|
|
23282
23845
|
channelId?: string | undefined;
|
|
23283
23846
|
status?: "active" | "pending" | undefined;
|
|
23284
23847
|
apiKey?: string | undefined;
|
|
23848
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23285
23849
|
} | undefined;
|
|
23286
23850
|
vonageCredentials?: {
|
|
23287
23851
|
apiKey: string;
|
|
@@ -23310,7 +23874,7 @@ export declare const facebookFeedContract: {
|
|
|
23310
23874
|
id: z.ZodOptional<z.ZodString>;
|
|
23311
23875
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23312
23876
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
23313
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
23877
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
23314
23878
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
23315
23879
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
23316
23880
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -23362,7 +23926,7 @@ export declare const facebookFeedContract: {
|
|
|
23362
23926
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23363
23927
|
feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23364
23928
|
}, "strip", z.ZodTypeAny, {
|
|
23365
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
23929
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
23366
23930
|
direction: "incoming" | "outgoing" | "system";
|
|
23367
23931
|
id?: string | undefined;
|
|
23368
23932
|
message?: string | null | undefined;
|
|
@@ -23393,7 +23957,7 @@ export declare const facebookFeedContract: {
|
|
|
23393
23957
|
parentMessageId?: string | null | undefined;
|
|
23394
23958
|
feedPostId?: string | null | undefined;
|
|
23395
23959
|
}, {
|
|
23396
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
23960
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
23397
23961
|
direction: "incoming" | "outgoing" | "system";
|
|
23398
23962
|
id?: string | undefined;
|
|
23399
23963
|
message?: string | null | undefined;
|
|
@@ -23426,7 +23990,7 @@ export declare const facebookFeedContract: {
|
|
|
23426
23990
|
}>;
|
|
23427
23991
|
}, "strip", z.ZodTypeAny, {
|
|
23428
23992
|
message: {
|
|
23429
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
23993
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
23430
23994
|
direction: "incoming" | "outgoing" | "system";
|
|
23431
23995
|
id?: string | undefined;
|
|
23432
23996
|
message?: string | null | undefined;
|
|
@@ -23479,6 +24043,7 @@ export declare const facebookFeedContract: {
|
|
|
23479
24043
|
channelId?: string | undefined;
|
|
23480
24044
|
status?: "active" | "pending" | undefined;
|
|
23481
24045
|
apiKey?: string | undefined;
|
|
24046
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23482
24047
|
} | undefined;
|
|
23483
24048
|
vonageCredentials?: {
|
|
23484
24049
|
apiKey: string;
|
|
@@ -23505,7 +24070,7 @@ export declare const facebookFeedContract: {
|
|
|
23505
24070
|
};
|
|
23506
24071
|
}, {
|
|
23507
24072
|
message: {
|
|
23508
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
24073
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
23509
24074
|
direction: "incoming" | "outgoing" | "system";
|
|
23510
24075
|
id?: string | undefined;
|
|
23511
24076
|
message?: string | null | undefined;
|
|
@@ -23558,6 +24123,7 @@ export declare const facebookFeedContract: {
|
|
|
23558
24123
|
channelId?: string | undefined;
|
|
23559
24124
|
status?: "active" | "pending" | undefined;
|
|
23560
24125
|
apiKey?: string | undefined;
|
|
24126
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23561
24127
|
} | undefined;
|
|
23562
24128
|
vonageCredentials?: {
|
|
23563
24129
|
apiKey: string;
|