@kl1/contracts 1.2.8-uat → 1.2.10-uat

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +121 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +8 -0
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +8 -0
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +230 -0
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +54 -0
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +79 -0
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +664 -0
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
  20. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
  22. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
  24. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  25. package/dist/api-contracts/src/instagram/index.d.ts +83 -0
  26. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/line/index.d.ts +75 -0
  28. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/validation.d.ts +9 -0
  30. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  31. package/dist/api-contracts/src/mail/account-contract.d.ts +276 -0
  32. package/dist/api-contracts/src/mail/account-contract.d.ts.map +1 -1
  33. package/dist/api-contracts/src/mail/mail-contract.d.ts +399 -1470
  34. package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
  35. package/dist/api-contracts/src/mail/mail-server-contract.d.ts +47 -0
  36. package/dist/api-contracts/src/mail/mail-server-contract.d.ts.map +1 -1
  37. package/dist/api-contracts/src/mail/message-contract.d.ts +10 -1404
  38. package/dist/api-contracts/src/mail/message-contract.d.ts.map +1 -1
  39. package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts +139 -0
  40. package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
  41. package/dist/api-contracts/src/messenger/index.d.ts +83 -0
  42. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
  44. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  45. package/dist/api-contracts/src/sms/index.d.ts +21 -0
  46. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/sms/schema.d.ts +5 -0
  48. package/dist/api-contracts/src/sms/schema.d.ts.map +1 -1
  49. package/dist/api-contracts/src/sms/validation.d.ts +3 -0
  50. package/dist/api-contracts/src/sms/validation.d.ts.map +1 -1
  51. package/dist/api-contracts/src/viber/index.d.ts +61 -0
  52. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  53. package/dist/api-contracts/src/webchat/index.d.ts +40 -0
  54. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  55. package/dist/api-contracts/src/workflow-rule/index.d.ts +21 -0
  56. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  57. package/dist/index.js +71 -3
  58. package/dist/index.js.map +1 -1
  59. package/dist/index.mjs +71 -3
  60. package/dist/index.mjs.map +1 -1
  61. package/package.json +1 -1
@@ -17,6 +17,7 @@ export declare const facebookFeedContract: {
17
17
  accessToken: z.ZodOptional<z.ZodString>;
18
18
  channelSecret: z.ZodOptional<z.ZodString>;
19
19
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20
+ senderId: z.ZodOptional<z.ZodString>;
20
21
  vonageCredentials: z.ZodOptional<z.ZodObject<{
21
22
  mobileNumber: z.ZodString;
22
23
  apiKey: z.ZodString;
@@ -37,6 +38,7 @@ export declare const facebookFeedContract: {
37
38
  accessToken?: string | undefined;
38
39
  channelSecret?: string | undefined;
39
40
  additionalCredentials?: any;
41
+ senderId?: string | undefined;
40
42
  vonageCredentials?: {
41
43
  mobileNumber: string;
42
44
  apiKey: string;
@@ -49,6 +51,7 @@ export declare const facebookFeedContract: {
49
51
  accessToken?: string | undefined;
50
52
  channelSecret?: string | undefined;
51
53
  additionalCredentials?: any;
54
+ senderId?: string | undefined;
52
55
  vonageCredentials?: {
53
56
  mobileNumber: string;
54
57
  apiKey: string;
@@ -91,6 +94,7 @@ export declare const facebookFeedContract: {
91
94
  accessToken?: string | undefined;
92
95
  channelSecret?: string | undefined;
93
96
  additionalCredentials?: any;
97
+ senderId?: string | undefined;
94
98
  vonageCredentials?: {
95
99
  mobileNumber: string;
96
100
  apiKey: string;
@@ -121,6 +125,7 @@ export declare const facebookFeedContract: {
121
125
  accessToken?: string | undefined;
122
126
  channelSecret?: string | undefined;
123
127
  additionalCredentials?: any;
128
+ senderId?: string | undefined;
124
129
  vonageCredentials?: {
125
130
  mobileNumber: string;
126
131
  apiKey: string;
@@ -156,6 +161,7 @@ export declare const facebookFeedContract: {
156
161
  accessToken: z.ZodOptional<z.ZodString>;
157
162
  channelSecret: z.ZodOptional<z.ZodString>;
158
163
  additionalCredentials: z.ZodOptional<z.ZodAny>;
164
+ senderId: z.ZodOptional<z.ZodString>;
159
165
  vonageCredentials: z.ZodOptional<z.ZodObject<{
160
166
  mobileNumber: z.ZodString;
161
167
  apiKey: z.ZodString;
@@ -176,6 +182,7 @@ export declare const facebookFeedContract: {
176
182
  accessToken?: string | undefined;
177
183
  channelSecret?: string | undefined;
178
184
  additionalCredentials?: any;
185
+ senderId?: string | undefined;
179
186
  vonageCredentials?: {
180
187
  mobileNumber: string;
181
188
  apiKey: string;
@@ -188,6 +195,7 @@ export declare const facebookFeedContract: {
188
195
  accessToken?: string | undefined;
189
196
  channelSecret?: string | undefined;
190
197
  additionalCredentials?: any;
198
+ senderId?: string | undefined;
191
199
  vonageCredentials?: {
192
200
  mobileNumber: string;
193
201
  apiKey: string;
@@ -230,6 +238,7 @@ export declare const facebookFeedContract: {
230
238
  accessToken?: string | undefined;
231
239
  channelSecret?: string | undefined;
232
240
  additionalCredentials?: any;
241
+ senderId?: string | undefined;
233
242
  vonageCredentials?: {
234
243
  mobileNumber: string;
235
244
  apiKey: string;
@@ -260,6 +269,7 @@ export declare const facebookFeedContract: {
260
269
  accessToken?: string | undefined;
261
270
  channelSecret?: string | undefined;
262
271
  additionalCredentials?: any;
272
+ senderId?: string | undefined;
263
273
  vonageCredentials?: {
264
274
  mobileNumber: string;
265
275
  apiKey: string;
@@ -292,6 +302,7 @@ export declare const facebookFeedContract: {
292
302
  accessToken?: string | undefined;
293
303
  channelSecret?: string | undefined;
294
304
  additionalCredentials?: any;
305
+ senderId?: string | undefined;
295
306
  vonageCredentials?: {
296
307
  mobileNumber: string;
297
308
  apiKey: string;
@@ -325,6 +336,7 @@ export declare const facebookFeedContract: {
325
336
  accessToken?: string | undefined;
326
337
  channelSecret?: string | undefined;
327
338
  additionalCredentials?: any;
339
+ senderId?: string | undefined;
328
340
  vonageCredentials?: {
329
341
  mobileNumber: string;
330
342
  apiKey: string;
@@ -382,6 +394,7 @@ export declare const facebookFeedContract: {
382
394
  accessToken: z.ZodOptional<z.ZodString>;
383
395
  channelSecret: z.ZodOptional<z.ZodString>;
384
396
  additionalCredentials: z.ZodOptional<z.ZodAny>;
397
+ senderId: z.ZodOptional<z.ZodString>;
385
398
  vonageCredentials: z.ZodOptional<z.ZodObject<{
386
399
  mobileNumber: z.ZodString;
387
400
  apiKey: z.ZodString;
@@ -402,6 +415,7 @@ export declare const facebookFeedContract: {
402
415
  accessToken?: string | undefined;
403
416
  channelSecret?: string | undefined;
404
417
  additionalCredentials?: any;
418
+ senderId?: string | undefined;
405
419
  vonageCredentials?: {
406
420
  mobileNumber: string;
407
421
  apiKey: string;
@@ -414,6 +428,7 @@ export declare const facebookFeedContract: {
414
428
  accessToken?: string | undefined;
415
429
  channelSecret?: string | undefined;
416
430
  additionalCredentials?: any;
431
+ senderId?: string | undefined;
417
432
  vonageCredentials?: {
418
433
  mobileNumber: string;
419
434
  apiKey: string;
@@ -456,6 +471,7 @@ export declare const facebookFeedContract: {
456
471
  accessToken?: string | undefined;
457
472
  channelSecret?: string | undefined;
458
473
  additionalCredentials?: any;
474
+ senderId?: string | undefined;
459
475
  vonageCredentials?: {
460
476
  mobileNumber: string;
461
477
  apiKey: string;
@@ -486,6 +502,7 @@ export declare const facebookFeedContract: {
486
502
  accessToken?: string | undefined;
487
503
  channelSecret?: string | undefined;
488
504
  additionalCredentials?: any;
505
+ senderId?: string | undefined;
489
506
  vonageCredentials?: {
490
507
  mobileNumber: string;
491
508
  apiKey: string;
@@ -521,6 +538,7 @@ export declare const facebookFeedContract: {
521
538
  accessToken: z.ZodOptional<z.ZodString>;
522
539
  channelSecret: z.ZodOptional<z.ZodString>;
523
540
  additionalCredentials: z.ZodOptional<z.ZodAny>;
541
+ senderId: z.ZodOptional<z.ZodString>;
524
542
  vonageCredentials: z.ZodOptional<z.ZodObject<{
525
543
  mobileNumber: z.ZodString;
526
544
  apiKey: z.ZodString;
@@ -541,6 +559,7 @@ export declare const facebookFeedContract: {
541
559
  accessToken?: string | undefined;
542
560
  channelSecret?: string | undefined;
543
561
  additionalCredentials?: any;
562
+ senderId?: string | undefined;
544
563
  vonageCredentials?: {
545
564
  mobileNumber: string;
546
565
  apiKey: string;
@@ -553,6 +572,7 @@ export declare const facebookFeedContract: {
553
572
  accessToken?: string | undefined;
554
573
  channelSecret?: string | undefined;
555
574
  additionalCredentials?: any;
575
+ senderId?: string | undefined;
556
576
  vonageCredentials?: {
557
577
  mobileNumber: string;
558
578
  apiKey: string;
@@ -595,6 +615,7 @@ export declare const facebookFeedContract: {
595
615
  accessToken?: string | undefined;
596
616
  channelSecret?: string | undefined;
597
617
  additionalCredentials?: any;
618
+ senderId?: string | undefined;
598
619
  vonageCredentials?: {
599
620
  mobileNumber: string;
600
621
  apiKey: string;
@@ -625,6 +646,7 @@ export declare const facebookFeedContract: {
625
646
  accessToken?: string | undefined;
626
647
  channelSecret?: string | undefined;
627
648
  additionalCredentials?: any;
649
+ senderId?: string | undefined;
628
650
  vonageCredentials?: {
629
651
  mobileNumber: string;
630
652
  apiKey: string;
@@ -657,6 +679,7 @@ export declare const facebookFeedContract: {
657
679
  accessToken?: string | undefined;
658
680
  channelSecret?: string | undefined;
659
681
  additionalCredentials?: any;
682
+ senderId?: string | undefined;
660
683
  vonageCredentials?: {
661
684
  mobileNumber: string;
662
685
  apiKey: string;
@@ -690,6 +713,7 @@ export declare const facebookFeedContract: {
690
713
  accessToken?: string | undefined;
691
714
  channelSecret?: string | undefined;
692
715
  additionalCredentials?: any;
716
+ senderId?: string | undefined;
693
717
  vonageCredentials?: {
694
718
  mobileNumber: string;
695
719
  apiKey: string;
@@ -759,6 +783,7 @@ export declare const facebookFeedContract: {
759
783
  accessToken: z.ZodOptional<z.ZodString>;
760
784
  channelSecret: z.ZodOptional<z.ZodString>;
761
785
  additionalCredentials: z.ZodOptional<z.ZodAny>;
786
+ senderId: z.ZodOptional<z.ZodString>;
762
787
  vonageCredentials: z.ZodOptional<z.ZodObject<{
763
788
  mobileNumber: z.ZodString;
764
789
  apiKey: z.ZodString;
@@ -779,6 +804,7 @@ export declare const facebookFeedContract: {
779
804
  accessToken?: string | undefined;
780
805
  channelSecret?: string | undefined;
781
806
  additionalCredentials?: any;
807
+ senderId?: string | undefined;
782
808
  vonageCredentials?: {
783
809
  mobileNumber: string;
784
810
  apiKey: string;
@@ -791,6 +817,7 @@ export declare const facebookFeedContract: {
791
817
  accessToken?: string | undefined;
792
818
  channelSecret?: string | undefined;
793
819
  additionalCredentials?: any;
820
+ senderId?: string | undefined;
794
821
  vonageCredentials?: {
795
822
  mobileNumber: string;
796
823
  apiKey: string;
@@ -833,6 +860,7 @@ export declare const facebookFeedContract: {
833
860
  accessToken?: string | undefined;
834
861
  channelSecret?: string | undefined;
835
862
  additionalCredentials?: any;
863
+ senderId?: string | undefined;
836
864
  vonageCredentials?: {
837
865
  mobileNumber: string;
838
866
  apiKey: string;
@@ -863,6 +891,7 @@ export declare const facebookFeedContract: {
863
891
  accessToken?: string | undefined;
864
892
  channelSecret?: string | undefined;
865
893
  additionalCredentials?: any;
894
+ senderId?: string | undefined;
866
895
  vonageCredentials?: {
867
896
  mobileNumber: string;
868
897
  apiKey: string;
@@ -895,6 +924,7 @@ export declare const facebookFeedContract: {
895
924
  accessToken?: string | undefined;
896
925
  channelSecret?: string | undefined;
897
926
  additionalCredentials?: any;
927
+ senderId?: string | undefined;
898
928
  vonageCredentials?: {
899
929
  mobileNumber: string;
900
930
  apiKey: string;
@@ -928,6 +958,7 @@ export declare const facebookFeedContract: {
928
958
  accessToken?: string | undefined;
929
959
  channelSecret?: string | undefined;
930
960
  additionalCredentials?: any;
961
+ senderId?: string | undefined;
931
962
  vonageCredentials?: {
932
963
  mobileNumber: string;
933
964
  apiKey: string;
@@ -997,6 +1028,7 @@ export declare const facebookFeedContract: {
997
1028
  accessToken: z.ZodOptional<z.ZodString>;
998
1029
  channelSecret: z.ZodOptional<z.ZodString>;
999
1030
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1031
+ senderId: z.ZodOptional<z.ZodString>;
1000
1032
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1001
1033
  mobileNumber: z.ZodString;
1002
1034
  apiKey: z.ZodString;
@@ -1017,6 +1049,7 @@ export declare const facebookFeedContract: {
1017
1049
  accessToken?: string | undefined;
1018
1050
  channelSecret?: string | undefined;
1019
1051
  additionalCredentials?: any;
1052
+ senderId?: string | undefined;
1020
1053
  vonageCredentials?: {
1021
1054
  mobileNumber: string;
1022
1055
  apiKey: string;
@@ -1029,6 +1062,7 @@ export declare const facebookFeedContract: {
1029
1062
  accessToken?: string | undefined;
1030
1063
  channelSecret?: string | undefined;
1031
1064
  additionalCredentials?: any;
1065
+ senderId?: string | undefined;
1032
1066
  vonageCredentials?: {
1033
1067
  mobileNumber: string;
1034
1068
  apiKey: string;
@@ -1071,6 +1105,7 @@ export declare const facebookFeedContract: {
1071
1105
  accessToken?: string | undefined;
1072
1106
  channelSecret?: string | undefined;
1073
1107
  additionalCredentials?: any;
1108
+ senderId?: string | undefined;
1074
1109
  vonageCredentials?: {
1075
1110
  mobileNumber: string;
1076
1111
  apiKey: string;
@@ -1101,6 +1136,7 @@ export declare const facebookFeedContract: {
1101
1136
  accessToken?: string | undefined;
1102
1137
  channelSecret?: string | undefined;
1103
1138
  additionalCredentials?: any;
1139
+ senderId?: string | undefined;
1104
1140
  vonageCredentials?: {
1105
1141
  mobileNumber: string;
1106
1142
  apiKey: string;
@@ -1133,6 +1169,7 @@ export declare const facebookFeedContract: {
1133
1169
  accessToken?: string | undefined;
1134
1170
  channelSecret?: string | undefined;
1135
1171
  additionalCredentials?: any;
1172
+ senderId?: string | undefined;
1136
1173
  vonageCredentials?: {
1137
1174
  mobileNumber: string;
1138
1175
  apiKey: string;
@@ -1166,6 +1203,7 @@ export declare const facebookFeedContract: {
1166
1203
  accessToken?: string | undefined;
1167
1204
  channelSecret?: string | undefined;
1168
1205
  additionalCredentials?: any;
1206
+ senderId?: string | undefined;
1169
1207
  vonageCredentials?: {
1170
1208
  mobileNumber: string;
1171
1209
  apiKey: string;
@@ -1222,6 +1260,7 @@ export declare const facebookFeedContract: {
1222
1260
  accessToken: z.ZodOptional<z.ZodString>;
1223
1261
  channelSecret: z.ZodOptional<z.ZodString>;
1224
1262
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1263
+ senderId: z.ZodOptional<z.ZodString>;
1225
1264
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1226
1265
  mobileNumber: z.ZodString;
1227
1266
  apiKey: z.ZodString;
@@ -1242,6 +1281,7 @@ export declare const facebookFeedContract: {
1242
1281
  accessToken?: string | undefined;
1243
1282
  channelSecret?: string | undefined;
1244
1283
  additionalCredentials?: any;
1284
+ senderId?: string | undefined;
1245
1285
  vonageCredentials?: {
1246
1286
  mobileNumber: string;
1247
1287
  apiKey: string;
@@ -1254,6 +1294,7 @@ export declare const facebookFeedContract: {
1254
1294
  accessToken?: string | undefined;
1255
1295
  channelSecret?: string | undefined;
1256
1296
  additionalCredentials?: any;
1297
+ senderId?: string | undefined;
1257
1298
  vonageCredentials?: {
1258
1299
  mobileNumber: string;
1259
1300
  apiKey: string;
@@ -1301,6 +1342,7 @@ export declare const facebookFeedContract: {
1301
1342
  accessToken?: string | undefined;
1302
1343
  channelSecret?: string | undefined;
1303
1344
  additionalCredentials?: any;
1345
+ senderId?: string | undefined;
1304
1346
  vonageCredentials?: {
1305
1347
  mobileNumber: string;
1306
1348
  apiKey: string;
@@ -1335,6 +1377,7 @@ export declare const facebookFeedContract: {
1335
1377
  accessToken?: string | undefined;
1336
1378
  channelSecret?: string | undefined;
1337
1379
  additionalCredentials?: any;
1380
+ senderId?: string | undefined;
1338
1381
  vonageCredentials?: {
1339
1382
  mobileNumber: string;
1340
1383
  apiKey: string;
@@ -1374,6 +1417,7 @@ export declare const facebookFeedContract: {
1374
1417
  accessToken: z.ZodOptional<z.ZodString>;
1375
1418
  channelSecret: z.ZodOptional<z.ZodString>;
1376
1419
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1420
+ senderId: z.ZodOptional<z.ZodString>;
1377
1421
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1378
1422
  mobileNumber: z.ZodString;
1379
1423
  apiKey: z.ZodString;
@@ -1394,6 +1438,7 @@ export declare const facebookFeedContract: {
1394
1438
  accessToken?: string | undefined;
1395
1439
  channelSecret?: string | undefined;
1396
1440
  additionalCredentials?: any;
1441
+ senderId?: string | undefined;
1397
1442
  vonageCredentials?: {
1398
1443
  mobileNumber: string;
1399
1444
  apiKey: string;
@@ -1406,6 +1451,7 @@ export declare const facebookFeedContract: {
1406
1451
  accessToken?: string | undefined;
1407
1452
  channelSecret?: string | undefined;
1408
1453
  additionalCredentials?: any;
1454
+ senderId?: string | undefined;
1409
1455
  vonageCredentials?: {
1410
1456
  mobileNumber: string;
1411
1457
  apiKey: string;
@@ -1448,6 +1494,7 @@ export declare const facebookFeedContract: {
1448
1494
  accessToken?: string | undefined;
1449
1495
  channelSecret?: string | undefined;
1450
1496
  additionalCredentials?: any;
1497
+ senderId?: string | undefined;
1451
1498
  vonageCredentials?: {
1452
1499
  mobileNumber: string;
1453
1500
  apiKey: string;
@@ -1478,6 +1525,7 @@ export declare const facebookFeedContract: {
1478
1525
  accessToken?: string | undefined;
1479
1526
  channelSecret?: string | undefined;
1480
1527
  additionalCredentials?: any;
1528
+ senderId?: string | undefined;
1481
1529
  vonageCredentials?: {
1482
1530
  mobileNumber: string;
1483
1531
  apiKey: string;
@@ -1510,6 +1558,7 @@ export declare const facebookFeedContract: {
1510
1558
  accessToken?: string | undefined;
1511
1559
  channelSecret?: string | undefined;
1512
1560
  additionalCredentials?: any;
1561
+ senderId?: string | undefined;
1513
1562
  vonageCredentials?: {
1514
1563
  mobileNumber: string;
1515
1564
  apiKey: string;
@@ -1543,6 +1592,7 @@ export declare const facebookFeedContract: {
1543
1592
  accessToken?: string | undefined;
1544
1593
  channelSecret?: string | undefined;
1545
1594
  additionalCredentials?: any;
1595
+ senderId?: string | undefined;
1546
1596
  vonageCredentials?: {
1547
1597
  mobileNumber: string;
1548
1598
  apiKey: string;
@@ -1612,6 +1662,7 @@ export declare const facebookFeedContract: {
1612
1662
  accessToken: z.ZodOptional<z.ZodString>;
1613
1663
  channelSecret: z.ZodOptional<z.ZodString>;
1614
1664
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1665
+ senderId: z.ZodOptional<z.ZodString>;
1615
1666
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1616
1667
  mobileNumber: z.ZodString;
1617
1668
  apiKey: z.ZodString;
@@ -1632,6 +1683,7 @@ export declare const facebookFeedContract: {
1632
1683
  accessToken?: string | undefined;
1633
1684
  channelSecret?: string | undefined;
1634
1685
  additionalCredentials?: any;
1686
+ senderId?: string | undefined;
1635
1687
  vonageCredentials?: {
1636
1688
  mobileNumber: string;
1637
1689
  apiKey: string;
@@ -1644,6 +1696,7 @@ export declare const facebookFeedContract: {
1644
1696
  accessToken?: string | undefined;
1645
1697
  channelSecret?: string | undefined;
1646
1698
  additionalCredentials?: any;
1699
+ senderId?: string | undefined;
1647
1700
  vonageCredentials?: {
1648
1701
  mobileNumber: string;
1649
1702
  apiKey: string;
@@ -3010,6 +3063,7 @@ export declare const facebookFeedContract: {
3010
3063
  accessToken?: string | undefined;
3011
3064
  channelSecret?: string | undefined;
3012
3065
  additionalCredentials?: any;
3066
+ senderId?: string | undefined;
3013
3067
  vonageCredentials?: {
3014
3068
  mobileNumber: string;
3015
3069
  apiKey: string;
@@ -3231,6 +3285,7 @@ export declare const facebookFeedContract: {
3231
3285
  accessToken?: string | undefined;
3232
3286
  channelSecret?: string | undefined;
3233
3287
  additionalCredentials?: any;
3288
+ senderId?: string | undefined;
3234
3289
  vonageCredentials?: {
3235
3290
  mobileNumber: string;
3236
3291
  apiKey: string;
@@ -3710,6 +3765,7 @@ export declare const facebookFeedContract: {
3710
3765
  accessToken: z.ZodOptional<z.ZodString>;
3711
3766
  channelSecret: z.ZodOptional<z.ZodString>;
3712
3767
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3768
+ senderId: z.ZodOptional<z.ZodString>;
3713
3769
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3714
3770
  mobileNumber: z.ZodString;
3715
3771
  apiKey: z.ZodString;
@@ -3730,6 +3786,7 @@ export declare const facebookFeedContract: {
3730
3786
  accessToken?: string | undefined;
3731
3787
  channelSecret?: string | undefined;
3732
3788
  additionalCredentials?: any;
3789
+ senderId?: string | undefined;
3733
3790
  vonageCredentials?: {
3734
3791
  mobileNumber: string;
3735
3792
  apiKey: string;
@@ -3742,6 +3799,7 @@ export declare const facebookFeedContract: {
3742
3799
  accessToken?: string | undefined;
3743
3800
  channelSecret?: string | undefined;
3744
3801
  additionalCredentials?: any;
3802
+ senderId?: string | undefined;
3745
3803
  vonageCredentials?: {
3746
3804
  mobileNumber: string;
3747
3805
  apiKey: string;
@@ -3784,6 +3842,7 @@ export declare const facebookFeedContract: {
3784
3842
  accessToken?: string | undefined;
3785
3843
  channelSecret?: string | undefined;
3786
3844
  additionalCredentials?: any;
3845
+ senderId?: string | undefined;
3787
3846
  vonageCredentials?: {
3788
3847
  mobileNumber: string;
3789
3848
  apiKey: string;
@@ -3814,6 +3873,7 @@ export declare const facebookFeedContract: {
3814
3873
  accessToken?: string | undefined;
3815
3874
  channelSecret?: string | undefined;
3816
3875
  additionalCredentials?: any;
3876
+ senderId?: string | undefined;
3817
3877
  vonageCredentials?: {
3818
3878
  mobileNumber: string;
3819
3879
  apiKey: string;
@@ -3848,6 +3908,7 @@ export declare const facebookFeedContract: {
3848
3908
  accessToken?: string | undefined;
3849
3909
  channelSecret?: string | undefined;
3850
3910
  additionalCredentials?: any;
3911
+ senderId?: string | undefined;
3851
3912
  vonageCredentials?: {
3852
3913
  mobileNumber: string;
3853
3914
  apiKey: string;
@@ -3921,6 +3982,7 @@ export declare const facebookFeedContract: {
3921
3982
  accessToken?: string | undefined;
3922
3983
  channelSecret?: string | undefined;
3923
3984
  additionalCredentials?: any;
3985
+ senderId?: string | undefined;
3924
3986
  vonageCredentials?: {
3925
3987
  mobileNumber: string;
3926
3988
  apiKey: string;
@@ -4043,6 +4105,7 @@ export declare const facebookFeedContract: {
4043
4105
  accessToken?: string | undefined;
4044
4106
  channelSecret?: string | undefined;
4045
4107
  additionalCredentials?: any;
4108
+ senderId?: string | undefined;
4046
4109
  vonageCredentials?: {
4047
4110
  mobileNumber: string;
4048
4111
  apiKey: string;
@@ -4159,6 +4222,7 @@ export declare const facebookFeedContract: {
4159
4222
  accessToken?: string | undefined;
4160
4223
  channelSecret?: string | undefined;
4161
4224
  additionalCredentials?: any;
4225
+ senderId?: string | undefined;
4162
4226
  vonageCredentials?: {
4163
4227
  mobileNumber: string;
4164
4228
  apiKey: string;
@@ -6170,6 +6234,7 @@ export declare const facebookFeedContract: {
6170
6234
  accessToken: z.ZodOptional<z.ZodString>;
6171
6235
  channelSecret: z.ZodOptional<z.ZodString>;
6172
6236
  additionalCredentials: z.ZodOptional<z.ZodAny>;
6237
+ senderId: z.ZodOptional<z.ZodString>;
6173
6238
  vonageCredentials: z.ZodOptional<z.ZodObject<{
6174
6239
  mobileNumber: z.ZodString;
6175
6240
  apiKey: z.ZodString;
@@ -6190,6 +6255,7 @@ export declare const facebookFeedContract: {
6190
6255
  accessToken?: string | undefined;
6191
6256
  channelSecret?: string | undefined;
6192
6257
  additionalCredentials?: any;
6258
+ senderId?: string | undefined;
6193
6259
  vonageCredentials?: {
6194
6260
  mobileNumber: string;
6195
6261
  apiKey: string;
@@ -6202,6 +6268,7 @@ export declare const facebookFeedContract: {
6202
6268
  accessToken?: string | undefined;
6203
6269
  channelSecret?: string | undefined;
6204
6270
  additionalCredentials?: any;
6271
+ senderId?: string | undefined;
6205
6272
  vonageCredentials?: {
6206
6273
  mobileNumber: string;
6207
6274
  apiKey: string;
@@ -6448,6 +6515,7 @@ export declare const facebookFeedContract: {
6448
6515
  accessToken?: string | undefined;
6449
6516
  channelSecret?: string | undefined;
6450
6517
  additionalCredentials?: any;
6518
+ senderId?: string | undefined;
6451
6519
  vonageCredentials?: {
6452
6520
  mobileNumber: string;
6453
6521
  apiKey: string;
@@ -6525,6 +6593,7 @@ export declare const facebookFeedContract: {
6525
6593
  accessToken?: string | undefined;
6526
6594
  channelSecret?: string | undefined;
6527
6595
  additionalCredentials?: any;
6596
+ senderId?: string | undefined;
6528
6597
  vonageCredentials?: {
6529
6598
  mobileNumber: string;
6530
6599
  apiKey: string;
@@ -7050,6 +7119,7 @@ export declare const facebookFeedContract: {
7050
7119
  accessToken?: string | undefined;
7051
7120
  channelSecret?: string | undefined;
7052
7121
  additionalCredentials?: any;
7122
+ senderId?: string | undefined;
7053
7123
  vonageCredentials?: {
7054
7124
  mobileNumber: string;
7055
7125
  apiKey: string;
@@ -7438,6 +7508,7 @@ export declare const facebookFeedContract: {
7438
7508
  accessToken?: string | undefined;
7439
7509
  channelSecret?: string | undefined;
7440
7510
  additionalCredentials?: any;
7511
+ senderId?: string | undefined;
7441
7512
  vonageCredentials?: {
7442
7513
  mobileNumber: string;
7443
7514
  apiKey: string;
@@ -10542,6 +10613,7 @@ export declare const facebookFeedContract: {
10542
10613
  accessToken: z.ZodOptional<z.ZodString>;
10543
10614
  channelSecret: z.ZodOptional<z.ZodString>;
10544
10615
  additionalCredentials: z.ZodOptional<z.ZodAny>;
10616
+ senderId: z.ZodOptional<z.ZodString>;
10545
10617
  vonageCredentials: z.ZodOptional<z.ZodObject<{
10546
10618
  mobileNumber: z.ZodString;
10547
10619
  apiKey: z.ZodString;
@@ -10562,6 +10634,7 @@ export declare const facebookFeedContract: {
10562
10634
  accessToken?: string | undefined;
10563
10635
  channelSecret?: string | undefined;
10564
10636
  additionalCredentials?: any;
10637
+ senderId?: string | undefined;
10565
10638
  vonageCredentials?: {
10566
10639
  mobileNumber: string;
10567
10640
  apiKey: string;
@@ -10574,6 +10647,7 @@ export declare const facebookFeedContract: {
10574
10647
  accessToken?: string | undefined;
10575
10648
  channelSecret?: string | undefined;
10576
10649
  additionalCredentials?: any;
10650
+ senderId?: string | undefined;
10577
10651
  vonageCredentials?: {
10578
10652
  mobileNumber: string;
10579
10653
  apiKey: string;
@@ -10820,6 +10894,7 @@ export declare const facebookFeedContract: {
10820
10894
  accessToken?: string | undefined;
10821
10895
  channelSecret?: string | undefined;
10822
10896
  additionalCredentials?: any;
10897
+ senderId?: string | undefined;
10823
10898
  vonageCredentials?: {
10824
10899
  mobileNumber: string;
10825
10900
  apiKey: string;
@@ -10897,6 +10972,7 @@ export declare const facebookFeedContract: {
10897
10972
  accessToken?: string | undefined;
10898
10973
  channelSecret?: string | undefined;
10899
10974
  additionalCredentials?: any;
10975
+ senderId?: string | undefined;
10900
10976
  vonageCredentials?: {
10901
10977
  mobileNumber: string;
10902
10978
  apiKey: string;
@@ -11422,6 +11498,7 @@ export declare const facebookFeedContract: {
11422
11498
  accessToken?: string | undefined;
11423
11499
  channelSecret?: string | undefined;
11424
11500
  additionalCredentials?: any;
11501
+ senderId?: string | undefined;
11425
11502
  vonageCredentials?: {
11426
11503
  mobileNumber: string;
11427
11504
  apiKey: string;
@@ -11810,6 +11887,7 @@ export declare const facebookFeedContract: {
11810
11887
  accessToken?: string | undefined;
11811
11888
  channelSecret?: string | undefined;
11812
11889
  additionalCredentials?: any;
11890
+ senderId?: string | undefined;
11813
11891
  vonageCredentials?: {
11814
11892
  mobileNumber: string;
11815
11893
  apiKey: string;
@@ -13971,6 +14049,7 @@ export declare const facebookFeedContract: {
13971
14049
  accessToken?: string | undefined;
13972
14050
  channelSecret?: string | undefined;
13973
14051
  additionalCredentials?: any;
14052
+ senderId?: string | undefined;
13974
14053
  vonageCredentials?: {
13975
14054
  mobileNumber: string;
13976
14055
  apiKey: string;
@@ -14696,6 +14775,7 @@ export declare const facebookFeedContract: {
14696
14775
  accessToken?: string | undefined;
14697
14776
  channelSecret?: string | undefined;
14698
14777
  additionalCredentials?: any;
14778
+ senderId?: string | undefined;
14699
14779
  vonageCredentials?: {
14700
14780
  mobileNumber: string;
14701
14781
  apiKey: string;
@@ -15422,6 +15502,7 @@ export declare const facebookFeedContract: {
15422
15502
  accessToken?: string | undefined;
15423
15503
  channelSecret?: string | undefined;
15424
15504
  additionalCredentials?: any;
15505
+ senderId?: string | undefined;
15425
15506
  vonageCredentials?: {
15426
15507
  mobileNumber: string;
15427
15508
  apiKey: string;
@@ -16147,6 +16228,7 @@ export declare const facebookFeedContract: {
16147
16228
  accessToken?: string | undefined;
16148
16229
  channelSecret?: string | undefined;
16149
16230
  additionalCredentials?: any;
16231
+ senderId?: string | undefined;
16150
16232
  vonageCredentials?: {
16151
16233
  mobileNumber: string;
16152
16234
  apiKey: string;
@@ -16873,6 +16955,7 @@ export declare const facebookFeedContract: {
16873
16955
  accessToken?: string | undefined;
16874
16956
  channelSecret?: string | undefined;
16875
16957
  additionalCredentials?: any;
16958
+ senderId?: string | undefined;
16876
16959
  vonageCredentials?: {
16877
16960
  mobileNumber: string;
16878
16961
  apiKey: string;
@@ -17598,6 +17681,7 @@ export declare const facebookFeedContract: {
17598
17681
  accessToken?: string | undefined;
17599
17682
  channelSecret?: string | undefined;
17600
17683
  additionalCredentials?: any;
17684
+ senderId?: string | undefined;
17601
17685
  vonageCredentials?: {
17602
17686
  mobileNumber: string;
17603
17687
  apiKey: string;
@@ -18326,6 +18410,7 @@ export declare const facebookFeedContract: {
18326
18410
  accessToken?: string | undefined;
18327
18411
  channelSecret?: string | undefined;
18328
18412
  additionalCredentials?: any;
18413
+ senderId?: string | undefined;
18329
18414
  vonageCredentials?: {
18330
18415
  mobileNumber: string;
18331
18416
  apiKey: string;
@@ -19051,6 +19136,7 @@ export declare const facebookFeedContract: {
19051
19136
  accessToken?: string | undefined;
19052
19137
  channelSecret?: string | undefined;
19053
19138
  additionalCredentials?: any;
19139
+ senderId?: string | undefined;
19054
19140
  vonageCredentials?: {
19055
19141
  mobileNumber: string;
19056
19142
  apiKey: string;
@@ -19780,6 +19866,7 @@ export declare const facebookFeedContract: {
19780
19866
  accessToken?: string | undefined;
19781
19867
  channelSecret?: string | undefined;
19782
19868
  additionalCredentials?: any;
19869
+ senderId?: string | undefined;
19783
19870
  vonageCredentials?: {
19784
19871
  mobileNumber: string;
19785
19872
  apiKey: string;
@@ -20505,6 +20592,7 @@ export declare const facebookFeedContract: {
20505
20592
  accessToken?: string | undefined;
20506
20593
  channelSecret?: string | undefined;
20507
20594
  additionalCredentials?: any;
20595
+ senderId?: string | undefined;
20508
20596
  vonageCredentials?: {
20509
20597
  mobileNumber: string;
20510
20598
  apiKey: string;
@@ -21149,6 +21237,7 @@ export declare const facebookFeedContract: {
21149
21237
  accessToken: z.ZodOptional<z.ZodString>;
21150
21238
  channelSecret: z.ZodOptional<z.ZodString>;
21151
21239
  additionalCredentials: z.ZodOptional<z.ZodAny>;
21240
+ senderId: z.ZodOptional<z.ZodString>;
21152
21241
  vonageCredentials: z.ZodOptional<z.ZodObject<{
21153
21242
  mobileNumber: z.ZodString;
21154
21243
  apiKey: z.ZodString;
@@ -21169,6 +21258,7 @@ export declare const facebookFeedContract: {
21169
21258
  accessToken?: string | undefined;
21170
21259
  channelSecret?: string | undefined;
21171
21260
  additionalCredentials?: any;
21261
+ senderId?: string | undefined;
21172
21262
  vonageCredentials?: {
21173
21263
  mobileNumber: string;
21174
21264
  apiKey: string;
@@ -21181,6 +21271,7 @@ export declare const facebookFeedContract: {
21181
21271
  accessToken?: string | undefined;
21182
21272
  channelSecret?: string | undefined;
21183
21273
  additionalCredentials?: any;
21274
+ senderId?: string | undefined;
21184
21275
  vonageCredentials?: {
21185
21276
  mobileNumber: string;
21186
21277
  apiKey: string;
@@ -21223,6 +21314,7 @@ export declare const facebookFeedContract: {
21223
21314
  accessToken?: string | undefined;
21224
21315
  channelSecret?: string | undefined;
21225
21316
  additionalCredentials?: any;
21317
+ senderId?: string | undefined;
21226
21318
  vonageCredentials?: {
21227
21319
  mobileNumber: string;
21228
21320
  apiKey: string;
@@ -21253,6 +21345,7 @@ export declare const facebookFeedContract: {
21253
21345
  accessToken?: string | undefined;
21254
21346
  channelSecret?: string | undefined;
21255
21347
  additionalCredentials?: any;
21348
+ senderId?: string | undefined;
21256
21349
  vonageCredentials?: {
21257
21350
  mobileNumber: string;
21258
21351
  apiKey: string;
@@ -21286,6 +21379,7 @@ export declare const facebookFeedContract: {
21286
21379
  accessToken?: string | undefined;
21287
21380
  channelSecret?: string | undefined;
21288
21381
  additionalCredentials?: any;
21382
+ senderId?: string | undefined;
21289
21383
  vonageCredentials?: {
21290
21384
  mobileNumber: string;
21291
21385
  apiKey: string;
@@ -21319,6 +21413,7 @@ export declare const facebookFeedContract: {
21319
21413
  accessToken?: string | undefined;
21320
21414
  channelSecret?: string | undefined;
21321
21415
  additionalCredentials?: any;
21416
+ senderId?: string | undefined;
21322
21417
  vonageCredentials?: {
21323
21418
  mobileNumber: string;
21324
21419
  apiKey: string;
@@ -21504,6 +21599,7 @@ export declare const facebookFeedContract: {
21504
21599
  accessToken?: string | undefined;
21505
21600
  channelSecret?: string | undefined;
21506
21601
  additionalCredentials?: any;
21602
+ senderId?: string | undefined;
21507
21603
  vonageCredentials?: {
21508
21604
  mobileNumber: string;
21509
21605
  apiKey: string;
@@ -21571,6 +21667,7 @@ export declare const facebookFeedContract: {
21571
21667
  accessToken?: string | undefined;
21572
21668
  channelSecret?: string | undefined;
21573
21669
  additionalCredentials?: any;
21670
+ senderId?: string | undefined;
21574
21671
  vonageCredentials?: {
21575
21672
  mobileNumber: string;
21576
21673
  apiKey: string;
@@ -21609,6 +21706,7 @@ export declare const facebookFeedContract: {
21609
21706
  accessToken: z.ZodOptional<z.ZodString>;
21610
21707
  channelSecret: z.ZodOptional<z.ZodString>;
21611
21708
  additionalCredentials: z.ZodOptional<z.ZodAny>;
21709
+ senderId: z.ZodOptional<z.ZodString>;
21612
21710
  vonageCredentials: z.ZodOptional<z.ZodObject<{
21613
21711
  mobileNumber: z.ZodString;
21614
21712
  apiKey: z.ZodString;
@@ -21629,6 +21727,7 @@ export declare const facebookFeedContract: {
21629
21727
  accessToken?: string | undefined;
21630
21728
  channelSecret?: string | undefined;
21631
21729
  additionalCredentials?: any;
21730
+ senderId?: string | undefined;
21632
21731
  vonageCredentials?: {
21633
21732
  mobileNumber: string;
21634
21733
  apiKey: string;
@@ -21641,6 +21740,7 @@ export declare const facebookFeedContract: {
21641
21740
  accessToken?: string | undefined;
21642
21741
  channelSecret?: string | undefined;
21643
21742
  additionalCredentials?: any;
21743
+ senderId?: string | undefined;
21644
21744
  vonageCredentials?: {
21645
21745
  mobileNumber: string;
21646
21746
  apiKey: string;
@@ -21683,6 +21783,7 @@ export declare const facebookFeedContract: {
21683
21783
  accessToken?: string | undefined;
21684
21784
  channelSecret?: string | undefined;
21685
21785
  additionalCredentials?: any;
21786
+ senderId?: string | undefined;
21686
21787
  vonageCredentials?: {
21687
21788
  mobileNumber: string;
21688
21789
  apiKey: string;
@@ -21713,6 +21814,7 @@ export declare const facebookFeedContract: {
21713
21814
  accessToken?: string | undefined;
21714
21815
  channelSecret?: string | undefined;
21715
21816
  additionalCredentials?: any;
21817
+ senderId?: string | undefined;
21716
21818
  vonageCredentials?: {
21717
21819
  mobileNumber: string;
21718
21820
  apiKey: string;
@@ -21746,6 +21848,7 @@ export declare const facebookFeedContract: {
21746
21848
  accessToken?: string | undefined;
21747
21849
  channelSecret?: string | undefined;
21748
21850
  additionalCredentials?: any;
21851
+ senderId?: string | undefined;
21749
21852
  vonageCredentials?: {
21750
21853
  mobileNumber: string;
21751
21854
  apiKey: string;
@@ -21779,6 +21882,7 @@ export declare const facebookFeedContract: {
21779
21882
  accessToken?: string | undefined;
21780
21883
  channelSecret?: string | undefined;
21781
21884
  additionalCredentials?: any;
21885
+ senderId?: string | undefined;
21782
21886
  vonageCredentials?: {
21783
21887
  mobileNumber: string;
21784
21888
  apiKey: string;
@@ -21964,6 +22068,7 @@ export declare const facebookFeedContract: {
21964
22068
  accessToken?: string | undefined;
21965
22069
  channelSecret?: string | undefined;
21966
22070
  additionalCredentials?: any;
22071
+ senderId?: string | undefined;
21967
22072
  vonageCredentials?: {
21968
22073
  mobileNumber: string;
21969
22074
  apiKey: string;
@@ -22031,6 +22136,7 @@ export declare const facebookFeedContract: {
22031
22136
  accessToken?: string | undefined;
22032
22137
  channelSecret?: string | undefined;
22033
22138
  additionalCredentials?: any;
22139
+ senderId?: string | undefined;
22034
22140
  vonageCredentials?: {
22035
22141
  mobileNumber: string;
22036
22142
  apiKey: string;