@kl1/contracts 1.1.53 → 1.1.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +2772 -197
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +126 -10
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +240 -10
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +24249 -21551
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +753 -105
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +1096 -144
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +35856 -4586
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +140 -12
  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 +118 -10
  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 +1475 -163
  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 +99 -11
  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 +74 -6
  24. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  25. package/dist/api-contracts/src/instagram/index.d.ts +1155 -127
  26. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/line/index.d.ts +1034 -122
  28. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/validation.d.ts +123 -15
  30. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  31. package/dist/api-contracts/src/mail/mail-contract.d.ts +6 -6
  32. package/dist/api-contracts/src/mail/mail-server-contract.d.ts +6 -6
  33. package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +2 -2
  34. package/dist/api-contracts/src/messenger/index.d.ts +1155 -127
  35. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  36. package/dist/api-contracts/src/messenger/validation.d.ts +74 -6
  37. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  38. package/dist/api-contracts/src/sms/index.d.ts +225 -29
  39. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  40. package/dist/api-contracts/src/sms/schema.d.ts +6 -6
  41. package/dist/api-contracts/src/sms/validation.d.ts +4 -4
  42. package/dist/api-contracts/src/telegram/index.d.ts +837 -101
  43. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  44. package/dist/api-contracts/src/viber/index.d.ts +837 -101
  45. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  46. package/dist/api-contracts/src/webchat/index.d.ts +549 -77
  47. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  48. package/dist/api-contracts/src/whatsapp/index.d.ts +637 -642
  49. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  50. package/dist/api-contracts/src/workflow-rule/index.d.ts +236 -20
  51. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  52. package/dist/entities/src/enums/chat.d.ts +1 -0
  53. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  54. package/dist/index.js +2394 -2240
  55. package/dist/index.js.map +1 -1
  56. package/dist/index.mjs +2392 -2240
  57. package/dist/index.mjs.map +1 -1
  58. package/package.json +1 -1
@@ -65,17 +65,45 @@ export declare const telegramContract: {
65
65
  channelSecret: z.ZodOptional<z.ZodString>;
66
66
  additionalCredentials: z.ZodOptional<z.ZodAny>;
67
67
  senderId: z.ZodOptional<z.ZodString>;
68
+ whatsapp: z.ZodOptional<z.ZodObject<{
69
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
70
+ wabaExternalId: z.ZodString;
71
+ phoneNumberId: z.ZodString;
72
+ email: z.ZodString;
73
+ clientId: z.ZodOptional<z.ZodString>;
74
+ channelId: z.ZodOptional<z.ZodString>;
75
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
76
+ apiKey: z.ZodOptional<z.ZodString>;
77
+ }, "strip", z.ZodTypeAny, {
78
+ email: string;
79
+ wabaExternalId: string;
80
+ phoneNumberId: string;
81
+ wabaBusinessId?: string | undefined;
82
+ clientId?: string | undefined;
83
+ channelId?: string | undefined;
84
+ status?: "active" | "pending" | undefined;
85
+ apiKey?: string | undefined;
86
+ }, {
87
+ email: string;
88
+ wabaExternalId: string;
89
+ phoneNumberId: string;
90
+ wabaBusinessId?: string | undefined;
91
+ clientId?: string | undefined;
92
+ channelId?: string | undefined;
93
+ status?: "active" | "pending" | undefined;
94
+ apiKey?: string | undefined;
95
+ }>>;
68
96
  vonageCredentials: z.ZodOptional<z.ZodObject<{
69
97
  mobileNumber: z.ZodString;
70
98
  apiKey: z.ZodString;
71
99
  apiSecret: z.ZodString;
72
100
  }, "strip", z.ZodTypeAny, {
73
- mobileNumber: string;
74
101
  apiKey: string;
102
+ mobileNumber: string;
75
103
  apiSecret: string;
76
104
  }, {
77
- mobileNumber: string;
78
105
  apiKey: string;
106
+ mobileNumber: string;
79
107
  apiSecret: string;
80
108
  }>>;
81
109
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -87,9 +115,19 @@ export declare const telegramContract: {
87
115
  channelSecret?: string | undefined;
88
116
  additionalCredentials?: any;
89
117
  senderId?: string | undefined;
118
+ whatsapp?: {
119
+ email: string;
120
+ wabaExternalId: string;
121
+ phoneNumberId: string;
122
+ wabaBusinessId?: string | undefined;
123
+ clientId?: string | undefined;
124
+ channelId?: string | undefined;
125
+ status?: "active" | "pending" | undefined;
126
+ apiKey?: string | undefined;
127
+ } | undefined;
90
128
  vonageCredentials?: {
91
- mobileNumber: string;
92
129
  apiKey: string;
130
+ mobileNumber: string;
93
131
  apiSecret: string;
94
132
  } | undefined;
95
133
  lineRichMenuId?: string | null | undefined;
@@ -101,9 +139,19 @@ export declare const telegramContract: {
101
139
  channelSecret?: string | undefined;
102
140
  additionalCredentials?: any;
103
141
  senderId?: string | undefined;
142
+ whatsapp?: {
143
+ email: string;
144
+ wabaExternalId: string;
145
+ phoneNumberId: string;
146
+ wabaBusinessId?: string | undefined;
147
+ clientId?: string | undefined;
148
+ channelId?: string | undefined;
149
+ status?: "active" | "pending" | undefined;
150
+ apiKey?: string | undefined;
151
+ } | undefined;
104
152
  vonageCredentials?: {
105
- mobileNumber: string;
106
153
  apiKey: string;
154
+ mobileNumber: string;
107
155
  apiSecret: string;
108
156
  } | undefined;
109
157
  lineRichMenuId?: string | null | undefined;
@@ -349,9 +397,19 @@ export declare const telegramContract: {
349
397
  channelSecret?: string | undefined;
350
398
  additionalCredentials?: any;
351
399
  senderId?: string | undefined;
400
+ whatsapp?: {
401
+ email: string;
402
+ wabaExternalId: string;
403
+ phoneNumberId: string;
404
+ wabaBusinessId?: string | undefined;
405
+ clientId?: string | undefined;
406
+ channelId?: string | undefined;
407
+ status?: "active" | "pending" | undefined;
408
+ apiKey?: string | undefined;
409
+ } | undefined;
352
410
  vonageCredentials?: {
353
- mobileNumber: string;
354
411
  apiKey: string;
412
+ mobileNumber: string;
355
413
  apiSecret: string;
356
414
  } | undefined;
357
415
  lineRichMenuId?: string | null | undefined;
@@ -428,9 +486,19 @@ export declare const telegramContract: {
428
486
  channelSecret?: string | undefined;
429
487
  additionalCredentials?: any;
430
488
  senderId?: string | undefined;
489
+ whatsapp?: {
490
+ email: string;
491
+ wabaExternalId: string;
492
+ phoneNumberId: string;
493
+ wabaBusinessId?: string | undefined;
494
+ clientId?: string | undefined;
495
+ channelId?: string | undefined;
496
+ status?: "active" | "pending" | undefined;
497
+ apiKey?: string | undefined;
498
+ } | undefined;
431
499
  vonageCredentials?: {
432
- mobileNumber: string;
433
500
  apiKey: string;
501
+ mobileNumber: string;
434
502
  apiSecret: string;
435
503
  } | undefined;
436
504
  lineRichMenuId?: string | null | undefined;
@@ -509,9 +577,19 @@ export declare const telegramContract: {
509
577
  channelSecret?: string | undefined;
510
578
  additionalCredentials?: any;
511
579
  senderId?: string | undefined;
580
+ whatsapp?: {
581
+ email: string;
582
+ wabaExternalId: string;
583
+ phoneNumberId: string;
584
+ wabaBusinessId?: string | undefined;
585
+ clientId?: string | undefined;
586
+ channelId?: string | undefined;
587
+ status?: "active" | "pending" | undefined;
588
+ apiKey?: string | undefined;
589
+ } | undefined;
512
590
  vonageCredentials?: {
513
- mobileNumber: string;
514
591
  apiKey: string;
592
+ mobileNumber: string;
515
593
  apiSecret: string;
516
594
  } | undefined;
517
595
  lineRichMenuId?: string | null | undefined;
@@ -591,9 +669,19 @@ export declare const telegramContract: {
591
669
  channelSecret?: string | undefined;
592
670
  additionalCredentials?: any;
593
671
  senderId?: string | undefined;
672
+ whatsapp?: {
673
+ email: string;
674
+ wabaExternalId: string;
675
+ phoneNumberId: string;
676
+ wabaBusinessId?: string | undefined;
677
+ clientId?: string | undefined;
678
+ channelId?: string | undefined;
679
+ status?: "active" | "pending" | undefined;
680
+ apiKey?: string | undefined;
681
+ } | undefined;
594
682
  vonageCredentials?: {
595
- mobileNumber: string;
596
683
  apiKey: string;
684
+ mobileNumber: string;
597
685
  apiSecret: string;
598
686
  } | undefined;
599
687
  lineRichMenuId?: string | null | undefined;
@@ -709,17 +797,45 @@ export declare const telegramContract: {
709
797
  channelSecret: z.ZodOptional<z.ZodString>;
710
798
  additionalCredentials: z.ZodOptional<z.ZodAny>;
711
799
  senderId: z.ZodOptional<z.ZodString>;
800
+ whatsapp: z.ZodOptional<z.ZodObject<{
801
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
802
+ wabaExternalId: z.ZodString;
803
+ phoneNumberId: z.ZodString;
804
+ email: z.ZodString;
805
+ clientId: z.ZodOptional<z.ZodString>;
806
+ channelId: z.ZodOptional<z.ZodString>;
807
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
808
+ apiKey: z.ZodOptional<z.ZodString>;
809
+ }, "strip", z.ZodTypeAny, {
810
+ email: string;
811
+ wabaExternalId: string;
812
+ phoneNumberId: string;
813
+ wabaBusinessId?: string | undefined;
814
+ clientId?: string | undefined;
815
+ channelId?: string | undefined;
816
+ status?: "active" | "pending" | undefined;
817
+ apiKey?: string | undefined;
818
+ }, {
819
+ email: string;
820
+ wabaExternalId: string;
821
+ phoneNumberId: string;
822
+ wabaBusinessId?: string | undefined;
823
+ clientId?: string | undefined;
824
+ channelId?: string | undefined;
825
+ status?: "active" | "pending" | undefined;
826
+ apiKey?: string | undefined;
827
+ }>>;
712
828
  vonageCredentials: z.ZodOptional<z.ZodObject<{
713
829
  mobileNumber: z.ZodString;
714
830
  apiKey: z.ZodString;
715
831
  apiSecret: z.ZodString;
716
832
  }, "strip", z.ZodTypeAny, {
717
- mobileNumber: string;
718
833
  apiKey: string;
834
+ mobileNumber: string;
719
835
  apiSecret: string;
720
836
  }, {
721
- mobileNumber: string;
722
837
  apiKey: string;
838
+ mobileNumber: string;
723
839
  apiSecret: string;
724
840
  }>>;
725
841
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -731,9 +847,19 @@ export declare const telegramContract: {
731
847
  channelSecret?: string | undefined;
732
848
  additionalCredentials?: any;
733
849
  senderId?: string | undefined;
850
+ whatsapp?: {
851
+ email: string;
852
+ wabaExternalId: string;
853
+ phoneNumberId: string;
854
+ wabaBusinessId?: string | undefined;
855
+ clientId?: string | undefined;
856
+ channelId?: string | undefined;
857
+ status?: "active" | "pending" | undefined;
858
+ apiKey?: string | undefined;
859
+ } | undefined;
734
860
  vonageCredentials?: {
735
- mobileNumber: string;
736
861
  apiKey: string;
862
+ mobileNumber: string;
737
863
  apiSecret: string;
738
864
  } | undefined;
739
865
  lineRichMenuId?: string | null | undefined;
@@ -745,9 +871,19 @@ export declare const telegramContract: {
745
871
  channelSecret?: string | undefined;
746
872
  additionalCredentials?: any;
747
873
  senderId?: string | undefined;
874
+ whatsapp?: {
875
+ email: string;
876
+ wabaExternalId: string;
877
+ phoneNumberId: string;
878
+ wabaBusinessId?: string | undefined;
879
+ clientId?: string | undefined;
880
+ channelId?: string | undefined;
881
+ status?: "active" | "pending" | undefined;
882
+ apiKey?: string | undefined;
883
+ } | undefined;
748
884
  vonageCredentials?: {
749
- mobileNumber: string;
750
885
  apiKey: string;
886
+ mobileNumber: string;
751
887
  apiSecret: string;
752
888
  } | undefined;
753
889
  lineRichMenuId?: string | null | undefined;
@@ -789,9 +925,19 @@ export declare const telegramContract: {
789
925
  channelSecret?: string | undefined;
790
926
  additionalCredentials?: any;
791
927
  senderId?: string | undefined;
928
+ whatsapp?: {
929
+ email: string;
930
+ wabaExternalId: string;
931
+ phoneNumberId: string;
932
+ wabaBusinessId?: string | undefined;
933
+ clientId?: string | undefined;
934
+ channelId?: string | undefined;
935
+ status?: "active" | "pending" | undefined;
936
+ apiKey?: string | undefined;
937
+ } | undefined;
792
938
  vonageCredentials?: {
793
- mobileNumber: string;
794
939
  apiKey: string;
940
+ mobileNumber: string;
795
941
  apiSecret: string;
796
942
  } | undefined;
797
943
  lineRichMenuId?: string | null | undefined;
@@ -821,9 +967,19 @@ export declare const telegramContract: {
821
967
  channelSecret?: string | undefined;
822
968
  additionalCredentials?: any;
823
969
  senderId?: string | undefined;
970
+ whatsapp?: {
971
+ email: string;
972
+ wabaExternalId: string;
973
+ phoneNumberId: string;
974
+ wabaBusinessId?: string | undefined;
975
+ clientId?: string | undefined;
976
+ channelId?: string | undefined;
977
+ status?: "active" | "pending" | undefined;
978
+ apiKey?: string | undefined;
979
+ } | undefined;
824
980
  vonageCredentials?: {
825
- mobileNumber: string;
826
981
  apiKey: string;
982
+ mobileNumber: string;
827
983
  apiSecret: string;
828
984
  } | undefined;
829
985
  lineRichMenuId?: string | null | undefined;
@@ -855,9 +1011,19 @@ export declare const telegramContract: {
855
1011
  channelSecret?: string | undefined;
856
1012
  additionalCredentials?: any;
857
1013
  senderId?: string | undefined;
1014
+ whatsapp?: {
1015
+ email: string;
1016
+ wabaExternalId: string;
1017
+ phoneNumberId: string;
1018
+ wabaBusinessId?: string | undefined;
1019
+ clientId?: string | undefined;
1020
+ channelId?: string | undefined;
1021
+ status?: "active" | "pending" | undefined;
1022
+ apiKey?: string | undefined;
1023
+ } | undefined;
858
1024
  vonageCredentials?: {
859
- mobileNumber: string;
860
1025
  apiKey: string;
1026
+ mobileNumber: string;
861
1027
  apiSecret: string;
862
1028
  } | undefined;
863
1029
  lineRichMenuId?: string | null | undefined;
@@ -890,9 +1056,19 @@ export declare const telegramContract: {
890
1056
  channelSecret?: string | undefined;
891
1057
  additionalCredentials?: any;
892
1058
  senderId?: string | undefined;
1059
+ whatsapp?: {
1060
+ email: string;
1061
+ wabaExternalId: string;
1062
+ phoneNumberId: string;
1063
+ wabaBusinessId?: string | undefined;
1064
+ clientId?: string | undefined;
1065
+ channelId?: string | undefined;
1066
+ status?: "active" | "pending" | undefined;
1067
+ apiKey?: string | undefined;
1068
+ } | undefined;
893
1069
  vonageCredentials?: {
894
- mobileNumber: string;
895
1070
  apiKey: string;
1071
+ mobileNumber: string;
896
1072
  apiSecret: string;
897
1073
  } | undefined;
898
1074
  lineRichMenuId?: string | null | undefined;
@@ -1074,17 +1250,45 @@ export declare const telegramContract: {
1074
1250
  channelSecret: z.ZodOptional<z.ZodString>;
1075
1251
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1076
1252
  senderId: z.ZodOptional<z.ZodString>;
1253
+ whatsapp: z.ZodOptional<z.ZodObject<{
1254
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
1255
+ wabaExternalId: z.ZodString;
1256
+ phoneNumberId: z.ZodString;
1257
+ email: z.ZodString;
1258
+ clientId: z.ZodOptional<z.ZodString>;
1259
+ channelId: z.ZodOptional<z.ZodString>;
1260
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1261
+ apiKey: z.ZodOptional<z.ZodString>;
1262
+ }, "strip", z.ZodTypeAny, {
1263
+ email: string;
1264
+ wabaExternalId: string;
1265
+ phoneNumberId: string;
1266
+ wabaBusinessId?: string | undefined;
1267
+ clientId?: string | undefined;
1268
+ channelId?: string | undefined;
1269
+ status?: "active" | "pending" | undefined;
1270
+ apiKey?: string | undefined;
1271
+ }, {
1272
+ email: string;
1273
+ wabaExternalId: string;
1274
+ phoneNumberId: string;
1275
+ wabaBusinessId?: string | undefined;
1276
+ clientId?: string | undefined;
1277
+ channelId?: string | undefined;
1278
+ status?: "active" | "pending" | undefined;
1279
+ apiKey?: string | undefined;
1280
+ }>>;
1077
1281
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1078
1282
  mobileNumber: z.ZodString;
1079
1283
  apiKey: z.ZodString;
1080
1284
  apiSecret: z.ZodString;
1081
1285
  }, "strip", z.ZodTypeAny, {
1082
- mobileNumber: string;
1083
1286
  apiKey: string;
1287
+ mobileNumber: string;
1084
1288
  apiSecret: string;
1085
1289
  }, {
1086
- mobileNumber: string;
1087
1290
  apiKey: string;
1291
+ mobileNumber: string;
1088
1292
  apiSecret: string;
1089
1293
  }>>;
1090
1294
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1096,9 +1300,19 @@ export declare const telegramContract: {
1096
1300
  channelSecret?: string | undefined;
1097
1301
  additionalCredentials?: any;
1098
1302
  senderId?: string | undefined;
1303
+ whatsapp?: {
1304
+ email: string;
1305
+ wabaExternalId: string;
1306
+ phoneNumberId: string;
1307
+ wabaBusinessId?: string | undefined;
1308
+ clientId?: string | undefined;
1309
+ channelId?: string | undefined;
1310
+ status?: "active" | "pending" | undefined;
1311
+ apiKey?: string | undefined;
1312
+ } | undefined;
1099
1313
  vonageCredentials?: {
1100
- mobileNumber: string;
1101
1314
  apiKey: string;
1315
+ mobileNumber: string;
1102
1316
  apiSecret: string;
1103
1317
  } | undefined;
1104
1318
  lineRichMenuId?: string | null | undefined;
@@ -1110,9 +1324,19 @@ export declare const telegramContract: {
1110
1324
  channelSecret?: string | undefined;
1111
1325
  additionalCredentials?: any;
1112
1326
  senderId?: string | undefined;
1327
+ whatsapp?: {
1328
+ email: string;
1329
+ wabaExternalId: string;
1330
+ phoneNumberId: string;
1331
+ wabaBusinessId?: string | undefined;
1332
+ clientId?: string | undefined;
1333
+ channelId?: string | undefined;
1334
+ status?: "active" | "pending" | undefined;
1335
+ apiKey?: string | undefined;
1336
+ } | undefined;
1113
1337
  vonageCredentials?: {
1114
- mobileNumber: string;
1115
1338
  apiKey: string;
1339
+ mobileNumber: string;
1116
1340
  apiSecret: string;
1117
1341
  } | undefined;
1118
1342
  lineRichMenuId?: string | null | undefined;
@@ -1154,9 +1378,19 @@ export declare const telegramContract: {
1154
1378
  channelSecret?: string | undefined;
1155
1379
  additionalCredentials?: any;
1156
1380
  senderId?: string | undefined;
1381
+ whatsapp?: {
1382
+ email: string;
1383
+ wabaExternalId: string;
1384
+ phoneNumberId: string;
1385
+ wabaBusinessId?: string | undefined;
1386
+ clientId?: string | undefined;
1387
+ channelId?: string | undefined;
1388
+ status?: "active" | "pending" | undefined;
1389
+ apiKey?: string | undefined;
1390
+ } | undefined;
1157
1391
  vonageCredentials?: {
1158
- mobileNumber: string;
1159
1392
  apiKey: string;
1393
+ mobileNumber: string;
1160
1394
  apiSecret: string;
1161
1395
  } | undefined;
1162
1396
  lineRichMenuId?: string | null | undefined;
@@ -1186,9 +1420,19 @@ export declare const telegramContract: {
1186
1420
  channelSecret?: string | undefined;
1187
1421
  additionalCredentials?: any;
1188
1422
  senderId?: string | undefined;
1423
+ whatsapp?: {
1424
+ email: string;
1425
+ wabaExternalId: string;
1426
+ phoneNumberId: string;
1427
+ wabaBusinessId?: string | undefined;
1428
+ clientId?: string | undefined;
1429
+ channelId?: string | undefined;
1430
+ status?: "active" | "pending" | undefined;
1431
+ apiKey?: string | undefined;
1432
+ } | undefined;
1189
1433
  vonageCredentials?: {
1190
- mobileNumber: string;
1191
1434
  apiKey: string;
1435
+ mobileNumber: string;
1192
1436
  apiSecret: string;
1193
1437
  } | undefined;
1194
1438
  lineRichMenuId?: string | null | undefined;
@@ -1222,9 +1466,19 @@ export declare const telegramContract: {
1222
1466
  channelSecret?: string | undefined;
1223
1467
  additionalCredentials?: any;
1224
1468
  senderId?: string | undefined;
1469
+ whatsapp?: {
1470
+ email: string;
1471
+ wabaExternalId: string;
1472
+ phoneNumberId: string;
1473
+ wabaBusinessId?: string | undefined;
1474
+ clientId?: string | undefined;
1475
+ channelId?: string | undefined;
1476
+ status?: "active" | "pending" | undefined;
1477
+ apiKey?: string | undefined;
1478
+ } | undefined;
1225
1479
  vonageCredentials?: {
1226
- mobileNumber: string;
1227
1480
  apiKey: string;
1481
+ mobileNumber: string;
1228
1482
  apiSecret: string;
1229
1483
  } | undefined;
1230
1484
  lineRichMenuId?: string | null | undefined;
@@ -1297,9 +1551,19 @@ export declare const telegramContract: {
1297
1551
  channelSecret?: string | undefined;
1298
1552
  additionalCredentials?: any;
1299
1553
  senderId?: string | undefined;
1554
+ whatsapp?: {
1555
+ email: string;
1556
+ wabaExternalId: string;
1557
+ phoneNumberId: string;
1558
+ wabaBusinessId?: string | undefined;
1559
+ clientId?: string | undefined;
1560
+ channelId?: string | undefined;
1561
+ status?: "active" | "pending" | undefined;
1562
+ apiKey?: string | undefined;
1563
+ } | undefined;
1300
1564
  vonageCredentials?: {
1301
- mobileNumber: string;
1302
1565
  apiKey: string;
1566
+ mobileNumber: string;
1303
1567
  apiSecret: string;
1304
1568
  } | undefined;
1305
1569
  lineRichMenuId?: string | null | undefined;
@@ -1364,7 +1628,7 @@ export declare const telegramContract: {
1364
1628
  id: z.ZodOptional<z.ZodString>;
1365
1629
  message: z.ZodOptional<z.ZodString>;
1366
1630
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
1367
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
1631
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
1368
1632
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
1369
1633
  metadata: z.ZodOptional<z.ZodAny>;
1370
1634
  platformId: z.ZodOptional<z.ZodString>;
@@ -1420,7 +1684,7 @@ export declare const telegramContract: {
1420
1684
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
1421
1685
  label: z.ZodOptional<z.ZodString>;
1422
1686
  }, "strip", z.ZodTypeAny, {
1423
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
1687
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
1424
1688
  direction: "incoming" | "outgoing" | "system";
1425
1689
  id?: string | undefined;
1426
1690
  message?: string | undefined;
@@ -1455,7 +1719,7 @@ export declare const telegramContract: {
1455
1719
  editedAt?: string | Date | null | undefined;
1456
1720
  label?: string | undefined;
1457
1721
  }, {
1458
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
1722
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
1459
1723
  direction: "incoming" | "outgoing" | "system";
1460
1724
  id?: string | undefined;
1461
1725
  message?: string | undefined;
@@ -1492,7 +1756,7 @@ export declare const telegramContract: {
1492
1756
  }>;
1493
1757
  }, "strip", z.ZodTypeAny, {
1494
1758
  message: {
1495
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
1759
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
1496
1760
  direction: "incoming" | "outgoing" | "system";
1497
1761
  id?: string | undefined;
1498
1762
  message?: string | undefined;
@@ -1540,9 +1804,19 @@ export declare const telegramContract: {
1540
1804
  channelSecret?: string | undefined;
1541
1805
  additionalCredentials?: any;
1542
1806
  senderId?: string | undefined;
1807
+ whatsapp?: {
1808
+ email: string;
1809
+ wabaExternalId: string;
1810
+ phoneNumberId: string;
1811
+ wabaBusinessId?: string | undefined;
1812
+ clientId?: string | undefined;
1813
+ channelId?: string | undefined;
1814
+ status?: "active" | "pending" | undefined;
1815
+ apiKey?: string | undefined;
1816
+ } | undefined;
1543
1817
  vonageCredentials?: {
1544
- mobileNumber: string;
1545
1818
  apiKey: string;
1819
+ mobileNumber: string;
1546
1820
  apiSecret: string;
1547
1821
  } | undefined;
1548
1822
  lineRichMenuId?: string | null | undefined;
@@ -1606,7 +1880,7 @@ export declare const telegramContract: {
1606
1880
  isBot: boolean | null;
1607
1881
  }, {
1608
1882
  message: {
1609
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
1883
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
1610
1884
  direction: "incoming" | "outgoing" | "system";
1611
1885
  id?: string | undefined;
1612
1886
  message?: string | undefined;
@@ -1654,9 +1928,19 @@ export declare const telegramContract: {
1654
1928
  channelSecret?: string | undefined;
1655
1929
  additionalCredentials?: any;
1656
1930
  senderId?: string | undefined;
1931
+ whatsapp?: {
1932
+ email: string;
1933
+ wabaExternalId: string;
1934
+ phoneNumberId: string;
1935
+ wabaBusinessId?: string | undefined;
1936
+ clientId?: string | undefined;
1937
+ channelId?: string | undefined;
1938
+ status?: "active" | "pending" | undefined;
1939
+ apiKey?: string | undefined;
1940
+ } | undefined;
1657
1941
  vonageCredentials?: {
1658
- mobileNumber: string;
1659
1942
  apiKey: string;
1943
+ mobileNumber: string;
1660
1944
  apiSecret: string;
1661
1945
  } | undefined;
1662
1946
  lineRichMenuId?: string | null | undefined;
@@ -1724,7 +2008,7 @@ export declare const telegramContract: {
1724
2008
  200: z.ZodObject<{
1725
2009
  requestId: z.ZodString;
1726
2010
  data: z.ZodObject<{
1727
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
2011
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
1728
2012
  message: z.ZodString;
1729
2013
  id: z.ZodString;
1730
2014
  url: z.ZodString;
@@ -3663,17 +3947,45 @@ export declare const telegramContract: {
3663
3947
  channelSecret: z.ZodOptional<z.ZodString>;
3664
3948
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3665
3949
  senderId: z.ZodOptional<z.ZodString>;
3950
+ whatsapp: z.ZodOptional<z.ZodObject<{
3951
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
3952
+ wabaExternalId: z.ZodString;
3953
+ phoneNumberId: z.ZodString;
3954
+ email: z.ZodString;
3955
+ clientId: z.ZodOptional<z.ZodString>;
3956
+ channelId: z.ZodOptional<z.ZodString>;
3957
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
3958
+ apiKey: z.ZodOptional<z.ZodString>;
3959
+ }, "strip", z.ZodTypeAny, {
3960
+ email: string;
3961
+ wabaExternalId: string;
3962
+ phoneNumberId: string;
3963
+ wabaBusinessId?: string | undefined;
3964
+ clientId?: string | undefined;
3965
+ channelId?: string | undefined;
3966
+ status?: "active" | "pending" | undefined;
3967
+ apiKey?: string | undefined;
3968
+ }, {
3969
+ email: string;
3970
+ wabaExternalId: string;
3971
+ phoneNumberId: string;
3972
+ wabaBusinessId?: string | undefined;
3973
+ clientId?: string | undefined;
3974
+ channelId?: string | undefined;
3975
+ status?: "active" | "pending" | undefined;
3976
+ apiKey?: string | undefined;
3977
+ }>>;
3666
3978
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3667
3979
  mobileNumber: z.ZodString;
3668
3980
  apiKey: z.ZodString;
3669
3981
  apiSecret: z.ZodString;
3670
3982
  }, "strip", z.ZodTypeAny, {
3671
- mobileNumber: string;
3672
3983
  apiKey: string;
3984
+ mobileNumber: string;
3673
3985
  apiSecret: string;
3674
3986
  }, {
3675
- mobileNumber: string;
3676
3987
  apiKey: string;
3988
+ mobileNumber: string;
3677
3989
  apiSecret: string;
3678
3990
  }>>;
3679
3991
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -3685,9 +3997,19 @@ export declare const telegramContract: {
3685
3997
  channelSecret?: string | undefined;
3686
3998
  additionalCredentials?: any;
3687
3999
  senderId?: string | undefined;
4000
+ whatsapp?: {
4001
+ email: string;
4002
+ wabaExternalId: string;
4003
+ phoneNumberId: string;
4004
+ wabaBusinessId?: string | undefined;
4005
+ clientId?: string | undefined;
4006
+ channelId?: string | undefined;
4007
+ status?: "active" | "pending" | undefined;
4008
+ apiKey?: string | undefined;
4009
+ } | undefined;
3688
4010
  vonageCredentials?: {
3689
- mobileNumber: string;
3690
4011
  apiKey: string;
4012
+ mobileNumber: string;
3691
4013
  apiSecret: string;
3692
4014
  } | undefined;
3693
4015
  lineRichMenuId?: string | null | undefined;
@@ -3699,9 +4021,19 @@ export declare const telegramContract: {
3699
4021
  channelSecret?: string | undefined;
3700
4022
  additionalCredentials?: any;
3701
4023
  senderId?: string | undefined;
4024
+ whatsapp?: {
4025
+ email: string;
4026
+ wabaExternalId: string;
4027
+ phoneNumberId: string;
4028
+ wabaBusinessId?: string | undefined;
4029
+ clientId?: string | undefined;
4030
+ channelId?: string | undefined;
4031
+ status?: "active" | "pending" | undefined;
4032
+ apiKey?: string | undefined;
4033
+ } | undefined;
3702
4034
  vonageCredentials?: {
3703
- mobileNumber: string;
3704
4035
  apiKey: string;
4036
+ mobileNumber: string;
3705
4037
  apiSecret: string;
3706
4038
  } | undefined;
3707
4039
  lineRichMenuId?: string | null | undefined;
@@ -3947,9 +4279,19 @@ export declare const telegramContract: {
3947
4279
  channelSecret?: string | undefined;
3948
4280
  additionalCredentials?: any;
3949
4281
  senderId?: string | undefined;
4282
+ whatsapp?: {
4283
+ email: string;
4284
+ wabaExternalId: string;
4285
+ phoneNumberId: string;
4286
+ wabaBusinessId?: string | undefined;
4287
+ clientId?: string | undefined;
4288
+ channelId?: string | undefined;
4289
+ status?: "active" | "pending" | undefined;
4290
+ apiKey?: string | undefined;
4291
+ } | undefined;
3950
4292
  vonageCredentials?: {
3951
- mobileNumber: string;
3952
4293
  apiKey: string;
4294
+ mobileNumber: string;
3953
4295
  apiSecret: string;
3954
4296
  } | undefined;
3955
4297
  lineRichMenuId?: string | null | undefined;
@@ -4026,9 +4368,19 @@ export declare const telegramContract: {
4026
4368
  channelSecret?: string | undefined;
4027
4369
  additionalCredentials?: any;
4028
4370
  senderId?: string | undefined;
4371
+ whatsapp?: {
4372
+ email: string;
4373
+ wabaExternalId: string;
4374
+ phoneNumberId: string;
4375
+ wabaBusinessId?: string | undefined;
4376
+ clientId?: string | undefined;
4377
+ channelId?: string | undefined;
4378
+ status?: "active" | "pending" | undefined;
4379
+ apiKey?: string | undefined;
4380
+ } | undefined;
4029
4381
  vonageCredentials?: {
4030
- mobileNumber: string;
4031
4382
  apiKey: string;
4383
+ mobileNumber: string;
4032
4384
  apiSecret: string;
4033
4385
  } | undefined;
4034
4386
  lineRichMenuId?: string | null | undefined;
@@ -4553,9 +4905,19 @@ export declare const telegramContract: {
4553
4905
  channelSecret?: string | undefined;
4554
4906
  additionalCredentials?: any;
4555
4907
  senderId?: string | undefined;
4908
+ whatsapp?: {
4909
+ email: string;
4910
+ wabaExternalId: string;
4911
+ phoneNumberId: string;
4912
+ wabaBusinessId?: string | undefined;
4913
+ clientId?: string | undefined;
4914
+ channelId?: string | undefined;
4915
+ status?: "active" | "pending" | undefined;
4916
+ apiKey?: string | undefined;
4917
+ } | undefined;
4556
4918
  vonageCredentials?: {
4557
- mobileNumber: string;
4558
4919
  apiKey: string;
4920
+ mobileNumber: string;
4559
4921
  apiSecret: string;
4560
4922
  } | undefined;
4561
4923
  lineRichMenuId?: string | null | undefined;
@@ -4943,9 +5305,19 @@ export declare const telegramContract: {
4943
5305
  channelSecret?: string | undefined;
4944
5306
  additionalCredentials?: any;
4945
5307
  senderId?: string | undefined;
5308
+ whatsapp?: {
5309
+ email: string;
5310
+ wabaExternalId: string;
5311
+ phoneNumberId: string;
5312
+ wabaBusinessId?: string | undefined;
5313
+ clientId?: string | undefined;
5314
+ channelId?: string | undefined;
5315
+ status?: "active" | "pending" | undefined;
5316
+ apiKey?: string | undefined;
5317
+ } | undefined;
4946
5318
  vonageCredentials?: {
4947
- mobileNumber: string;
4948
5319
  apiKey: string;
5320
+ mobileNumber: string;
4949
5321
  apiSecret: string;
4950
5322
  } | undefined;
4951
5323
  lineRichMenuId?: string | null | undefined;
@@ -5359,7 +5731,7 @@ export declare const telegramContract: {
5359
5731
  deletedAt: z.ZodNullable<z.ZodDate>;
5360
5732
  message: z.ZodString;
5361
5733
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
5362
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
5734
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
5363
5735
  readAt: z.ZodDate;
5364
5736
  metadata: z.ZodAny;
5365
5737
  platformId: z.ZodString;
@@ -6017,7 +6389,7 @@ export declare const telegramContract: {
6017
6389
  };
6018
6390
  }>;
6019
6391
  }, "strip", z.ZodTypeAny, {
6020
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
6392
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
6021
6393
  message: string;
6022
6394
  id: string;
6023
6395
  url: string;
@@ -6179,7 +6551,7 @@ export declare const telegramContract: {
6179
6551
  metadata?: any;
6180
6552
  template?: any;
6181
6553
  }, {
6182
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
6554
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
6183
6555
  message: string;
6184
6556
  id: string;
6185
6557
  url: string;
@@ -6553,7 +6925,7 @@ export declare const telegramContract: {
6553
6925
  deletedAt: z.ZodNullable<z.ZodDate>;
6554
6926
  message: z.ZodString;
6555
6927
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
6556
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
6928
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
6557
6929
  readAt: z.ZodDate;
6558
6930
  metadata: z.ZodAny;
6559
6931
  platformId: z.ZodString;
@@ -8049,17 +8421,45 @@ export declare const telegramContract: {
8049
8421
  channelSecret: z.ZodOptional<z.ZodString>;
8050
8422
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8051
8423
  senderId: z.ZodOptional<z.ZodString>;
8424
+ whatsapp: z.ZodOptional<z.ZodObject<{
8425
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
8426
+ wabaExternalId: z.ZodString;
8427
+ phoneNumberId: z.ZodString;
8428
+ email: z.ZodString;
8429
+ clientId: z.ZodOptional<z.ZodString>;
8430
+ channelId: z.ZodOptional<z.ZodString>;
8431
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
8432
+ apiKey: z.ZodOptional<z.ZodString>;
8433
+ }, "strip", z.ZodTypeAny, {
8434
+ email: string;
8435
+ wabaExternalId: string;
8436
+ phoneNumberId: string;
8437
+ wabaBusinessId?: string | undefined;
8438
+ clientId?: string | undefined;
8439
+ channelId?: string | undefined;
8440
+ status?: "active" | "pending" | undefined;
8441
+ apiKey?: string | undefined;
8442
+ }, {
8443
+ email: string;
8444
+ wabaExternalId: string;
8445
+ phoneNumberId: string;
8446
+ wabaBusinessId?: string | undefined;
8447
+ clientId?: string | undefined;
8448
+ channelId?: string | undefined;
8449
+ status?: "active" | "pending" | undefined;
8450
+ apiKey?: string | undefined;
8451
+ }>>;
8052
8452
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8053
8453
  mobileNumber: z.ZodString;
8054
8454
  apiKey: z.ZodString;
8055
8455
  apiSecret: z.ZodString;
8056
8456
  }, "strip", z.ZodTypeAny, {
8057
- mobileNumber: string;
8058
8457
  apiKey: string;
8458
+ mobileNumber: string;
8059
8459
  apiSecret: string;
8060
8460
  }, {
8061
- mobileNumber: string;
8062
8461
  apiKey: string;
8462
+ mobileNumber: string;
8063
8463
  apiSecret: string;
8064
8464
  }>>;
8065
8465
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -8071,9 +8471,19 @@ export declare const telegramContract: {
8071
8471
  channelSecret?: string | undefined;
8072
8472
  additionalCredentials?: any;
8073
8473
  senderId?: string | undefined;
8474
+ whatsapp?: {
8475
+ email: string;
8476
+ wabaExternalId: string;
8477
+ phoneNumberId: string;
8478
+ wabaBusinessId?: string | undefined;
8479
+ clientId?: string | undefined;
8480
+ channelId?: string | undefined;
8481
+ status?: "active" | "pending" | undefined;
8482
+ apiKey?: string | undefined;
8483
+ } | undefined;
8074
8484
  vonageCredentials?: {
8075
- mobileNumber: string;
8076
8485
  apiKey: string;
8486
+ mobileNumber: string;
8077
8487
  apiSecret: string;
8078
8488
  } | undefined;
8079
8489
  lineRichMenuId?: string | null | undefined;
@@ -8085,9 +8495,19 @@ export declare const telegramContract: {
8085
8495
  channelSecret?: string | undefined;
8086
8496
  additionalCredentials?: any;
8087
8497
  senderId?: string | undefined;
8498
+ whatsapp?: {
8499
+ email: string;
8500
+ wabaExternalId: string;
8501
+ phoneNumberId: string;
8502
+ wabaBusinessId?: string | undefined;
8503
+ clientId?: string | undefined;
8504
+ channelId?: string | undefined;
8505
+ status?: "active" | "pending" | undefined;
8506
+ apiKey?: string | undefined;
8507
+ } | undefined;
8088
8508
  vonageCredentials?: {
8089
- mobileNumber: string;
8090
8509
  apiKey: string;
8510
+ mobileNumber: string;
8091
8511
  apiSecret: string;
8092
8512
  } | undefined;
8093
8513
  lineRichMenuId?: string | null | undefined;
@@ -8333,9 +8753,19 @@ export declare const telegramContract: {
8333
8753
  channelSecret?: string | undefined;
8334
8754
  additionalCredentials?: any;
8335
8755
  senderId?: string | undefined;
8756
+ whatsapp?: {
8757
+ email: string;
8758
+ wabaExternalId: string;
8759
+ phoneNumberId: string;
8760
+ wabaBusinessId?: string | undefined;
8761
+ clientId?: string | undefined;
8762
+ channelId?: string | undefined;
8763
+ status?: "active" | "pending" | undefined;
8764
+ apiKey?: string | undefined;
8765
+ } | undefined;
8336
8766
  vonageCredentials?: {
8337
- mobileNumber: string;
8338
8767
  apiKey: string;
8768
+ mobileNumber: string;
8339
8769
  apiSecret: string;
8340
8770
  } | undefined;
8341
8771
  lineRichMenuId?: string | null | undefined;
@@ -8412,9 +8842,19 @@ export declare const telegramContract: {
8412
8842
  channelSecret?: string | undefined;
8413
8843
  additionalCredentials?: any;
8414
8844
  senderId?: string | undefined;
8845
+ whatsapp?: {
8846
+ email: string;
8847
+ wabaExternalId: string;
8848
+ phoneNumberId: string;
8849
+ wabaBusinessId?: string | undefined;
8850
+ clientId?: string | undefined;
8851
+ channelId?: string | undefined;
8852
+ status?: "active" | "pending" | undefined;
8853
+ apiKey?: string | undefined;
8854
+ } | undefined;
8415
8855
  vonageCredentials?: {
8416
- mobileNumber: string;
8417
8856
  apiKey: string;
8857
+ mobileNumber: string;
8418
8858
  apiSecret: string;
8419
8859
  } | undefined;
8420
8860
  lineRichMenuId?: string | null | undefined;
@@ -8939,9 +9379,19 @@ export declare const telegramContract: {
8939
9379
  channelSecret?: string | undefined;
8940
9380
  additionalCredentials?: any;
8941
9381
  senderId?: string | undefined;
9382
+ whatsapp?: {
9383
+ email: string;
9384
+ wabaExternalId: string;
9385
+ phoneNumberId: string;
9386
+ wabaBusinessId?: string | undefined;
9387
+ clientId?: string | undefined;
9388
+ channelId?: string | undefined;
9389
+ status?: "active" | "pending" | undefined;
9390
+ apiKey?: string | undefined;
9391
+ } | undefined;
8942
9392
  vonageCredentials?: {
8943
- mobileNumber: string;
8944
9393
  apiKey: string;
9394
+ mobileNumber: string;
8945
9395
  apiSecret: string;
8946
9396
  } | undefined;
8947
9397
  lineRichMenuId?: string | null | undefined;
@@ -9329,9 +9779,19 @@ export declare const telegramContract: {
9329
9779
  channelSecret?: string | undefined;
9330
9780
  additionalCredentials?: any;
9331
9781
  senderId?: string | undefined;
9782
+ whatsapp?: {
9783
+ email: string;
9784
+ wabaExternalId: string;
9785
+ phoneNumberId: string;
9786
+ wabaBusinessId?: string | undefined;
9787
+ clientId?: string | undefined;
9788
+ channelId?: string | undefined;
9789
+ status?: "active" | "pending" | undefined;
9790
+ apiKey?: string | undefined;
9791
+ } | undefined;
9332
9792
  vonageCredentials?: {
9333
- mobileNumber: string;
9334
9793
  apiKey: string;
9794
+ mobileNumber: string;
9335
9795
  apiSecret: string;
9336
9796
  } | undefined;
9337
9797
  lineRichMenuId?: string | null | undefined;
@@ -9748,7 +10208,7 @@ export declare const telegramContract: {
9748
10208
  deletedAt: z.ZodNullable<z.ZodDate>;
9749
10209
  message: z.ZodString;
9750
10210
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
9751
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
10211
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
9752
10212
  readAt: z.ZodDate;
9753
10213
  metadata: z.ZodAny;
9754
10214
  platformId: z.ZodString;
@@ -10406,7 +10866,7 @@ export declare const telegramContract: {
10406
10866
  };
10407
10867
  }>;
10408
10868
  }, "strip", z.ZodTypeAny, {
10409
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
10869
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
10410
10870
  message: string;
10411
10871
  id: string;
10412
10872
  url: string;
@@ -10568,7 +11028,7 @@ export declare const telegramContract: {
10568
11028
  metadata?: any;
10569
11029
  template?: any;
10570
11030
  }, {
10571
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
11031
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
10572
11032
  message: string;
10573
11033
  id: string;
10574
11034
  url: string;
@@ -11370,7 +11830,7 @@ export declare const telegramContract: {
11370
11830
  editedMessageid: z.ZodString;
11371
11831
  label: z.ZodOptional<z.ZodString>;
11372
11832
  }, "strip", z.ZodTypeAny, {
11373
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
11833
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
11374
11834
  message: string;
11375
11835
  id: string;
11376
11836
  url: string;
@@ -11492,9 +11952,19 @@ export declare const telegramContract: {
11492
11952
  channelSecret?: string | undefined;
11493
11953
  additionalCredentials?: any;
11494
11954
  senderId?: string | undefined;
11955
+ whatsapp?: {
11956
+ email: string;
11957
+ wabaExternalId: string;
11958
+ phoneNumberId: string;
11959
+ wabaBusinessId?: string | undefined;
11960
+ clientId?: string | undefined;
11961
+ channelId?: string | undefined;
11962
+ status?: "active" | "pending" | undefined;
11963
+ apiKey?: string | undefined;
11964
+ } | undefined;
11495
11965
  vonageCredentials?: {
11496
- mobileNumber: string;
11497
11966
  apiKey: string;
11967
+ mobileNumber: string;
11498
11968
  apiSecret: string;
11499
11969
  } | undefined;
11500
11970
  lineRichMenuId?: string | null | undefined;
@@ -11886,7 +12356,7 @@ export declare const telegramContract: {
11886
12356
  previewUrl: string;
11887
12357
  imageSetId: string;
11888
12358
  repliedMessage: {
11889
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
12359
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
11890
12360
  message: string;
11891
12361
  id: string;
11892
12362
  url: string;
@@ -12097,7 +12567,7 @@ export declare const telegramContract: {
12097
12567
  template?: any;
12098
12568
  label?: string | undefined;
12099
12569
  }, {
12100
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
12570
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
12101
12571
  message: string;
12102
12572
  id: string;
12103
12573
  url: string;
@@ -12219,9 +12689,19 @@ export declare const telegramContract: {
12219
12689
  channelSecret?: string | undefined;
12220
12690
  additionalCredentials?: any;
12221
12691
  senderId?: string | undefined;
12692
+ whatsapp?: {
12693
+ email: string;
12694
+ wabaExternalId: string;
12695
+ phoneNumberId: string;
12696
+ wabaBusinessId?: string | undefined;
12697
+ clientId?: string | undefined;
12698
+ channelId?: string | undefined;
12699
+ status?: "active" | "pending" | undefined;
12700
+ apiKey?: string | undefined;
12701
+ } | undefined;
12222
12702
  vonageCredentials?: {
12223
- mobileNumber: string;
12224
12703
  apiKey: string;
12704
+ mobileNumber: string;
12225
12705
  apiSecret: string;
12226
12706
  } | undefined;
12227
12707
  lineRichMenuId?: string | null | undefined;
@@ -12613,7 +13093,7 @@ export declare const telegramContract: {
12613
13093
  previewUrl: string;
12614
13094
  imageSetId: string;
12615
13095
  repliedMessage: {
12616
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13096
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
12617
13097
  message: string;
12618
13098
  id: string;
12619
13099
  url: string;
@@ -12825,7 +13305,7 @@ export declare const telegramContract: {
12825
13305
  label?: string | undefined;
12826
13306
  }>>>;
12827
13307
  }, "strip", z.ZodTypeAny, {
12828
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13308
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
12829
13309
  message: string;
12830
13310
  id: string;
12831
13311
  url: string;
@@ -12947,9 +13427,19 @@ export declare const telegramContract: {
12947
13427
  channelSecret?: string | undefined;
12948
13428
  additionalCredentials?: any;
12949
13429
  senderId?: string | undefined;
13430
+ whatsapp?: {
13431
+ email: string;
13432
+ wabaExternalId: string;
13433
+ phoneNumberId: string;
13434
+ wabaBusinessId?: string | undefined;
13435
+ clientId?: string | undefined;
13436
+ channelId?: string | undefined;
13437
+ status?: "active" | "pending" | undefined;
13438
+ apiKey?: string | undefined;
13439
+ } | undefined;
12950
13440
  vonageCredentials?: {
12951
- mobileNumber: string;
12952
13441
  apiKey: string;
13442
+ mobileNumber: string;
12953
13443
  apiSecret: string;
12954
13444
  } | undefined;
12955
13445
  lineRichMenuId?: string | null | undefined;
@@ -13341,7 +13831,7 @@ export declare const telegramContract: {
13341
13831
  previewUrl: string;
13342
13832
  imageSetId: string;
13343
13833
  repliedMessage: {
13344
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13834
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13345
13835
  message: string;
13346
13836
  id: string;
13347
13837
  url: string;
@@ -13552,7 +14042,7 @@ export declare const telegramContract: {
13552
14042
  template?: any;
13553
14043
  metadata?: any;
13554
14044
  fromMessage?: {
13555
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14045
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13556
14046
  message: string;
13557
14047
  id: string;
13558
14048
  url: string;
@@ -13674,9 +14164,19 @@ export declare const telegramContract: {
13674
14164
  channelSecret?: string | undefined;
13675
14165
  additionalCredentials?: any;
13676
14166
  senderId?: string | undefined;
14167
+ whatsapp?: {
14168
+ email: string;
14169
+ wabaExternalId: string;
14170
+ phoneNumberId: string;
14171
+ wabaBusinessId?: string | undefined;
14172
+ clientId?: string | undefined;
14173
+ channelId?: string | undefined;
14174
+ status?: "active" | "pending" | undefined;
14175
+ apiKey?: string | undefined;
14176
+ } | undefined;
13677
14177
  vonageCredentials?: {
13678
- mobileNumber: string;
13679
14178
  apiKey: string;
14179
+ mobileNumber: string;
13680
14180
  apiSecret: string;
13681
14181
  } | undefined;
13682
14182
  lineRichMenuId?: string | null | undefined;
@@ -14068,7 +14568,7 @@ export declare const telegramContract: {
14068
14568
  previewUrl: string;
14069
14569
  imageSetId: string;
14070
14570
  repliedMessage: {
14071
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14571
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14072
14572
  message: string;
14073
14573
  id: string;
14074
14574
  url: string;
@@ -14280,7 +14780,7 @@ export declare const telegramContract: {
14280
14780
  label?: string | undefined;
14281
14781
  } | null | undefined;
14282
14782
  }, {
14283
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14783
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14284
14784
  message: string;
14285
14785
  id: string;
14286
14786
  url: string;
@@ -14402,9 +14902,19 @@ export declare const telegramContract: {
14402
14902
  channelSecret?: string | undefined;
14403
14903
  additionalCredentials?: any;
14404
14904
  senderId?: string | undefined;
14905
+ whatsapp?: {
14906
+ email: string;
14907
+ wabaExternalId: string;
14908
+ phoneNumberId: string;
14909
+ wabaBusinessId?: string | undefined;
14910
+ clientId?: string | undefined;
14911
+ channelId?: string | undefined;
14912
+ status?: "active" | "pending" | undefined;
14913
+ apiKey?: string | undefined;
14914
+ } | undefined;
14405
14915
  vonageCredentials?: {
14406
- mobileNumber: string;
14407
14916
  apiKey: string;
14917
+ mobileNumber: string;
14408
14918
  apiSecret: string;
14409
14919
  } | undefined;
14410
14920
  lineRichMenuId?: string | null | undefined;
@@ -14796,7 +15306,7 @@ export declare const telegramContract: {
14796
15306
  previewUrl: string;
14797
15307
  imageSetId: string;
14798
15308
  repliedMessage: {
14799
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
15309
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14800
15310
  message: string;
14801
15311
  id: string;
14802
15312
  url: string;
@@ -15007,7 +15517,7 @@ export declare const telegramContract: {
15007
15517
  template?: any;
15008
15518
  metadata?: any;
15009
15519
  fromMessage?: {
15010
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
15520
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
15011
15521
  message: string;
15012
15522
  id: string;
15013
15523
  url: string;
@@ -15129,9 +15639,19 @@ export declare const telegramContract: {
15129
15639
  channelSecret?: string | undefined;
15130
15640
  additionalCredentials?: any;
15131
15641
  senderId?: string | undefined;
15642
+ whatsapp?: {
15643
+ email: string;
15644
+ wabaExternalId: string;
15645
+ phoneNumberId: string;
15646
+ wabaBusinessId?: string | undefined;
15647
+ clientId?: string | undefined;
15648
+ channelId?: string | undefined;
15649
+ status?: "active" | "pending" | undefined;
15650
+ apiKey?: string | undefined;
15651
+ } | undefined;
15132
15652
  vonageCredentials?: {
15133
- mobileNumber: string;
15134
15653
  apiKey: string;
15654
+ mobileNumber: string;
15135
15655
  apiSecret: string;
15136
15656
  } | undefined;
15137
15657
  lineRichMenuId?: string | null | undefined;
@@ -15523,7 +16043,7 @@ export declare const telegramContract: {
15523
16043
  previewUrl: string;
15524
16044
  imageSetId: string;
15525
16045
  repliedMessage: {
15526
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16046
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
15527
16047
  message: string;
15528
16048
  id: string;
15529
16049
  url: string;
@@ -15737,7 +16257,7 @@ export declare const telegramContract: {
15737
16257
  }>;
15738
16258
  }, "strip", z.ZodTypeAny, {
15739
16259
  data: {
15740
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16260
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
15741
16261
  message: string;
15742
16262
  id: string;
15743
16263
  url: string;
@@ -15859,9 +16379,19 @@ export declare const telegramContract: {
15859
16379
  channelSecret?: string | undefined;
15860
16380
  additionalCredentials?: any;
15861
16381
  senderId?: string | undefined;
16382
+ whatsapp?: {
16383
+ email: string;
16384
+ wabaExternalId: string;
16385
+ phoneNumberId: string;
16386
+ wabaBusinessId?: string | undefined;
16387
+ clientId?: string | undefined;
16388
+ channelId?: string | undefined;
16389
+ status?: "active" | "pending" | undefined;
16390
+ apiKey?: string | undefined;
16391
+ } | undefined;
15862
16392
  vonageCredentials?: {
15863
- mobileNumber: string;
15864
16393
  apiKey: string;
16394
+ mobileNumber: string;
15865
16395
  apiSecret: string;
15866
16396
  } | undefined;
15867
16397
  lineRichMenuId?: string | null | undefined;
@@ -16253,7 +16783,7 @@ export declare const telegramContract: {
16253
16783
  previewUrl: string;
16254
16784
  imageSetId: string;
16255
16785
  repliedMessage: {
16256
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16786
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16257
16787
  message: string;
16258
16788
  id: string;
16259
16789
  url: string;
@@ -16464,7 +16994,7 @@ export declare const telegramContract: {
16464
16994
  template?: any;
16465
16995
  metadata?: any;
16466
16996
  fromMessage?: {
16467
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16997
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16468
16998
  message: string;
16469
16999
  id: string;
16470
17000
  url: string;
@@ -16586,9 +17116,19 @@ export declare const telegramContract: {
16586
17116
  channelSecret?: string | undefined;
16587
17117
  additionalCredentials?: any;
16588
17118
  senderId?: string | undefined;
17119
+ whatsapp?: {
17120
+ email: string;
17121
+ wabaExternalId: string;
17122
+ phoneNumberId: string;
17123
+ wabaBusinessId?: string | undefined;
17124
+ clientId?: string | undefined;
17125
+ channelId?: string | undefined;
17126
+ status?: "active" | "pending" | undefined;
17127
+ apiKey?: string | undefined;
17128
+ } | undefined;
16589
17129
  vonageCredentials?: {
16590
- mobileNumber: string;
16591
17130
  apiKey: string;
17131
+ mobileNumber: string;
16592
17132
  apiSecret: string;
16593
17133
  } | undefined;
16594
17134
  lineRichMenuId?: string | null | undefined;
@@ -16980,7 +17520,7 @@ export declare const telegramContract: {
16980
17520
  previewUrl: string;
16981
17521
  imageSetId: string;
16982
17522
  repliedMessage: {
16983
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17523
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16984
17524
  message: string;
16985
17525
  id: string;
16986
17526
  url: string;
@@ -17195,7 +17735,7 @@ export declare const telegramContract: {
17195
17735
  requestId: string;
17196
17736
  }, {
17197
17737
  data: {
17198
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17738
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17199
17739
  message: string;
17200
17740
  id: string;
17201
17741
  url: string;
@@ -17317,9 +17857,19 @@ export declare const telegramContract: {
17317
17857
  channelSecret?: string | undefined;
17318
17858
  additionalCredentials?: any;
17319
17859
  senderId?: string | undefined;
17860
+ whatsapp?: {
17861
+ email: string;
17862
+ wabaExternalId: string;
17863
+ phoneNumberId: string;
17864
+ wabaBusinessId?: string | undefined;
17865
+ clientId?: string | undefined;
17866
+ channelId?: string | undefined;
17867
+ status?: "active" | "pending" | undefined;
17868
+ apiKey?: string | undefined;
17869
+ } | undefined;
17320
17870
  vonageCredentials?: {
17321
- mobileNumber: string;
17322
17871
  apiKey: string;
17872
+ mobileNumber: string;
17323
17873
  apiSecret: string;
17324
17874
  } | undefined;
17325
17875
  lineRichMenuId?: string | null | undefined;
@@ -17711,7 +18261,7 @@ export declare const telegramContract: {
17711
18261
  previewUrl: string;
17712
18262
  imageSetId: string;
17713
18263
  repliedMessage: {
17714
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
18264
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17715
18265
  message: string;
17716
18266
  id: string;
17717
18267
  url: string;
@@ -17922,7 +18472,7 @@ export declare const telegramContract: {
17922
18472
  template?: any;
17923
18473
  metadata?: any;
17924
18474
  fromMessage?: {
17925
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
18475
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17926
18476
  message: string;
17927
18477
  id: string;
17928
18478
  url: string;
@@ -18044,9 +18594,19 @@ export declare const telegramContract: {
18044
18594
  channelSecret?: string | undefined;
18045
18595
  additionalCredentials?: any;
18046
18596
  senderId?: string | undefined;
18597
+ whatsapp?: {
18598
+ email: string;
18599
+ wabaExternalId: string;
18600
+ phoneNumberId: string;
18601
+ wabaBusinessId?: string | undefined;
18602
+ clientId?: string | undefined;
18603
+ channelId?: string | undefined;
18604
+ status?: "active" | "pending" | undefined;
18605
+ apiKey?: string | undefined;
18606
+ } | undefined;
18047
18607
  vonageCredentials?: {
18048
- mobileNumber: string;
18049
18608
  apiKey: string;
18609
+ mobileNumber: string;
18050
18610
  apiSecret: string;
18051
18611
  } | undefined;
18052
18612
  lineRichMenuId?: string | null | undefined;
@@ -18438,7 +18998,7 @@ export declare const telegramContract: {
18438
18998
  previewUrl: string;
18439
18999
  imageSetId: string;
18440
19000
  repliedMessage: {
18441
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
19001
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
18442
19002
  message: string;
18443
19003
  id: string;
18444
19004
  url: string;
@@ -18690,17 +19250,45 @@ export declare const telegramContract: {
18690
19250
  channelSecret: z.ZodOptional<z.ZodString>;
18691
19251
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18692
19252
  senderId: z.ZodOptional<z.ZodString>;
19253
+ whatsapp: z.ZodOptional<z.ZodObject<{
19254
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
19255
+ wabaExternalId: z.ZodString;
19256
+ phoneNumberId: z.ZodString;
19257
+ email: z.ZodString;
19258
+ clientId: z.ZodOptional<z.ZodString>;
19259
+ channelId: z.ZodOptional<z.ZodString>;
19260
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19261
+ apiKey: z.ZodOptional<z.ZodString>;
19262
+ }, "strip", z.ZodTypeAny, {
19263
+ email: string;
19264
+ wabaExternalId: string;
19265
+ phoneNumberId: string;
19266
+ wabaBusinessId?: string | undefined;
19267
+ clientId?: string | undefined;
19268
+ channelId?: string | undefined;
19269
+ status?: "active" | "pending" | undefined;
19270
+ apiKey?: string | undefined;
19271
+ }, {
19272
+ email: string;
19273
+ wabaExternalId: string;
19274
+ phoneNumberId: string;
19275
+ wabaBusinessId?: string | undefined;
19276
+ clientId?: string | undefined;
19277
+ channelId?: string | undefined;
19278
+ status?: "active" | "pending" | undefined;
19279
+ apiKey?: string | undefined;
19280
+ }>>;
18693
19281
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18694
19282
  mobileNumber: z.ZodString;
18695
19283
  apiKey: z.ZodString;
18696
19284
  apiSecret: z.ZodString;
18697
19285
  }, "strip", z.ZodTypeAny, {
18698
- mobileNumber: string;
18699
19286
  apiKey: string;
19287
+ mobileNumber: string;
18700
19288
  apiSecret: string;
18701
19289
  }, {
18702
- mobileNumber: string;
18703
19290
  apiKey: string;
19291
+ mobileNumber: string;
18704
19292
  apiSecret: string;
18705
19293
  }>>;
18706
19294
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -18712,9 +19300,19 @@ export declare const telegramContract: {
18712
19300
  channelSecret?: string | undefined;
18713
19301
  additionalCredentials?: any;
18714
19302
  senderId?: string | undefined;
19303
+ whatsapp?: {
19304
+ email: string;
19305
+ wabaExternalId: string;
19306
+ phoneNumberId: string;
19307
+ wabaBusinessId?: string | undefined;
19308
+ clientId?: string | undefined;
19309
+ channelId?: string | undefined;
19310
+ status?: "active" | "pending" | undefined;
19311
+ apiKey?: string | undefined;
19312
+ } | undefined;
18715
19313
  vonageCredentials?: {
18716
- mobileNumber: string;
18717
19314
  apiKey: string;
19315
+ mobileNumber: string;
18718
19316
  apiSecret: string;
18719
19317
  } | undefined;
18720
19318
  lineRichMenuId?: string | null | undefined;
@@ -18726,9 +19324,19 @@ export declare const telegramContract: {
18726
19324
  channelSecret?: string | undefined;
18727
19325
  additionalCredentials?: any;
18728
19326
  senderId?: string | undefined;
19327
+ whatsapp?: {
19328
+ email: string;
19329
+ wabaExternalId: string;
19330
+ phoneNumberId: string;
19331
+ wabaBusinessId?: string | undefined;
19332
+ clientId?: string | undefined;
19333
+ channelId?: string | undefined;
19334
+ status?: "active" | "pending" | undefined;
19335
+ apiKey?: string | undefined;
19336
+ } | undefined;
18729
19337
  vonageCredentials?: {
18730
- mobileNumber: string;
18731
19338
  apiKey: string;
19339
+ mobileNumber: string;
18732
19340
  apiSecret: string;
18733
19341
  } | undefined;
18734
19342
  lineRichMenuId?: string | null | undefined;
@@ -18770,9 +19378,19 @@ export declare const telegramContract: {
18770
19378
  channelSecret?: string | undefined;
18771
19379
  additionalCredentials?: any;
18772
19380
  senderId?: string | undefined;
19381
+ whatsapp?: {
19382
+ email: string;
19383
+ wabaExternalId: string;
19384
+ phoneNumberId: string;
19385
+ wabaBusinessId?: string | undefined;
19386
+ clientId?: string | undefined;
19387
+ channelId?: string | undefined;
19388
+ status?: "active" | "pending" | undefined;
19389
+ apiKey?: string | undefined;
19390
+ } | undefined;
18773
19391
  vonageCredentials?: {
18774
- mobileNumber: string;
18775
19392
  apiKey: string;
19393
+ mobileNumber: string;
18776
19394
  apiSecret: string;
18777
19395
  } | undefined;
18778
19396
  lineRichMenuId?: string | null | undefined;
@@ -18802,9 +19420,19 @@ export declare const telegramContract: {
18802
19420
  channelSecret?: string | undefined;
18803
19421
  additionalCredentials?: any;
18804
19422
  senderId?: string | undefined;
19423
+ whatsapp?: {
19424
+ email: string;
19425
+ wabaExternalId: string;
19426
+ phoneNumberId: string;
19427
+ wabaBusinessId?: string | undefined;
19428
+ clientId?: string | undefined;
19429
+ channelId?: string | undefined;
19430
+ status?: "active" | "pending" | undefined;
19431
+ apiKey?: string | undefined;
19432
+ } | undefined;
18805
19433
  vonageCredentials?: {
18806
- mobileNumber: string;
18807
19434
  apiKey: string;
19435
+ mobileNumber: string;
18808
19436
  apiSecret: string;
18809
19437
  } | undefined;
18810
19438
  lineRichMenuId?: string | null | undefined;
@@ -18836,9 +19464,19 @@ export declare const telegramContract: {
18836
19464
  channelSecret?: string | undefined;
18837
19465
  additionalCredentials?: any;
18838
19466
  senderId?: string | undefined;
19467
+ whatsapp?: {
19468
+ email: string;
19469
+ wabaExternalId: string;
19470
+ phoneNumberId: string;
19471
+ wabaBusinessId?: string | undefined;
19472
+ clientId?: string | undefined;
19473
+ channelId?: string | undefined;
19474
+ status?: "active" | "pending" | undefined;
19475
+ apiKey?: string | undefined;
19476
+ } | undefined;
18839
19477
  vonageCredentials?: {
18840
- mobileNumber: string;
18841
19478
  apiKey: string;
19479
+ mobileNumber: string;
18842
19480
  apiSecret: string;
18843
19481
  } | undefined;
18844
19482
  lineRichMenuId?: string | null | undefined;
@@ -18871,9 +19509,19 @@ export declare const telegramContract: {
18871
19509
  channelSecret?: string | undefined;
18872
19510
  additionalCredentials?: any;
18873
19511
  senderId?: string | undefined;
19512
+ whatsapp?: {
19513
+ email: string;
19514
+ wabaExternalId: string;
19515
+ phoneNumberId: string;
19516
+ wabaBusinessId?: string | undefined;
19517
+ clientId?: string | undefined;
19518
+ channelId?: string | undefined;
19519
+ status?: "active" | "pending" | undefined;
19520
+ apiKey?: string | undefined;
19521
+ } | undefined;
18874
19522
  vonageCredentials?: {
18875
- mobileNumber: string;
18876
19523
  apiKey: string;
19524
+ mobileNumber: string;
18877
19525
  apiSecret: string;
18878
19526
  } | undefined;
18879
19527
  lineRichMenuId?: string | null | undefined;
@@ -18943,17 +19591,45 @@ export declare const telegramContract: {
18943
19591
  channelSecret: z.ZodOptional<z.ZodString>;
18944
19592
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18945
19593
  senderId: z.ZodOptional<z.ZodString>;
19594
+ whatsapp: z.ZodOptional<z.ZodObject<{
19595
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
19596
+ wabaExternalId: z.ZodString;
19597
+ phoneNumberId: z.ZodString;
19598
+ email: z.ZodString;
19599
+ clientId: z.ZodOptional<z.ZodString>;
19600
+ channelId: z.ZodOptional<z.ZodString>;
19601
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19602
+ apiKey: z.ZodOptional<z.ZodString>;
19603
+ }, "strip", z.ZodTypeAny, {
19604
+ email: string;
19605
+ wabaExternalId: string;
19606
+ phoneNumberId: string;
19607
+ wabaBusinessId?: string | undefined;
19608
+ clientId?: string | undefined;
19609
+ channelId?: string | undefined;
19610
+ status?: "active" | "pending" | undefined;
19611
+ apiKey?: string | undefined;
19612
+ }, {
19613
+ email: string;
19614
+ wabaExternalId: string;
19615
+ phoneNumberId: string;
19616
+ wabaBusinessId?: string | undefined;
19617
+ clientId?: string | undefined;
19618
+ channelId?: string | undefined;
19619
+ status?: "active" | "pending" | undefined;
19620
+ apiKey?: string | undefined;
19621
+ }>>;
18946
19622
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18947
19623
  mobileNumber: z.ZodString;
18948
19624
  apiKey: z.ZodString;
18949
19625
  apiSecret: z.ZodString;
18950
19626
  }, "strip", z.ZodTypeAny, {
18951
- mobileNumber: string;
18952
19627
  apiKey: string;
19628
+ mobileNumber: string;
18953
19629
  apiSecret: string;
18954
19630
  }, {
18955
- mobileNumber: string;
18956
19631
  apiKey: string;
19632
+ mobileNumber: string;
18957
19633
  apiSecret: string;
18958
19634
  }>>;
18959
19635
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -18965,9 +19641,19 @@ export declare const telegramContract: {
18965
19641
  channelSecret?: string | undefined;
18966
19642
  additionalCredentials?: any;
18967
19643
  senderId?: string | undefined;
19644
+ whatsapp?: {
19645
+ email: string;
19646
+ wabaExternalId: string;
19647
+ phoneNumberId: string;
19648
+ wabaBusinessId?: string | undefined;
19649
+ clientId?: string | undefined;
19650
+ channelId?: string | undefined;
19651
+ status?: "active" | "pending" | undefined;
19652
+ apiKey?: string | undefined;
19653
+ } | undefined;
18968
19654
  vonageCredentials?: {
18969
- mobileNumber: string;
18970
19655
  apiKey: string;
19656
+ mobileNumber: string;
18971
19657
  apiSecret: string;
18972
19658
  } | undefined;
18973
19659
  lineRichMenuId?: string | null | undefined;
@@ -18979,9 +19665,19 @@ export declare const telegramContract: {
18979
19665
  channelSecret?: string | undefined;
18980
19666
  additionalCredentials?: any;
18981
19667
  senderId?: string | undefined;
19668
+ whatsapp?: {
19669
+ email: string;
19670
+ wabaExternalId: string;
19671
+ phoneNumberId: string;
19672
+ wabaBusinessId?: string | undefined;
19673
+ clientId?: string | undefined;
19674
+ channelId?: string | undefined;
19675
+ status?: "active" | "pending" | undefined;
19676
+ apiKey?: string | undefined;
19677
+ } | undefined;
18982
19678
  vonageCredentials?: {
18983
- mobileNumber: string;
18984
19679
  apiKey: string;
19680
+ mobileNumber: string;
18985
19681
  apiSecret: string;
18986
19682
  } | undefined;
18987
19683
  lineRichMenuId?: string | null | undefined;
@@ -19023,9 +19719,19 @@ export declare const telegramContract: {
19023
19719
  channelSecret?: string | undefined;
19024
19720
  additionalCredentials?: any;
19025
19721
  senderId?: string | undefined;
19722
+ whatsapp?: {
19723
+ email: string;
19724
+ wabaExternalId: string;
19725
+ phoneNumberId: string;
19726
+ wabaBusinessId?: string | undefined;
19727
+ clientId?: string | undefined;
19728
+ channelId?: string | undefined;
19729
+ status?: "active" | "pending" | undefined;
19730
+ apiKey?: string | undefined;
19731
+ } | undefined;
19026
19732
  vonageCredentials?: {
19027
- mobileNumber: string;
19028
19733
  apiKey: string;
19734
+ mobileNumber: string;
19029
19735
  apiSecret: string;
19030
19736
  } | undefined;
19031
19737
  lineRichMenuId?: string | null | undefined;
@@ -19055,9 +19761,19 @@ export declare const telegramContract: {
19055
19761
  channelSecret?: string | undefined;
19056
19762
  additionalCredentials?: any;
19057
19763
  senderId?: string | undefined;
19764
+ whatsapp?: {
19765
+ email: string;
19766
+ wabaExternalId: string;
19767
+ phoneNumberId: string;
19768
+ wabaBusinessId?: string | undefined;
19769
+ clientId?: string | undefined;
19770
+ channelId?: string | undefined;
19771
+ status?: "active" | "pending" | undefined;
19772
+ apiKey?: string | undefined;
19773
+ } | undefined;
19058
19774
  vonageCredentials?: {
19059
- mobileNumber: string;
19060
19775
  apiKey: string;
19776
+ mobileNumber: string;
19061
19777
  apiSecret: string;
19062
19778
  } | undefined;
19063
19779
  lineRichMenuId?: string | null | undefined;
@@ -19089,9 +19805,19 @@ export declare const telegramContract: {
19089
19805
  channelSecret?: string | undefined;
19090
19806
  additionalCredentials?: any;
19091
19807
  senderId?: string | undefined;
19808
+ whatsapp?: {
19809
+ email: string;
19810
+ wabaExternalId: string;
19811
+ phoneNumberId: string;
19812
+ wabaBusinessId?: string | undefined;
19813
+ clientId?: string | undefined;
19814
+ channelId?: string | undefined;
19815
+ status?: "active" | "pending" | undefined;
19816
+ apiKey?: string | undefined;
19817
+ } | undefined;
19092
19818
  vonageCredentials?: {
19093
- mobileNumber: string;
19094
19819
  apiKey: string;
19820
+ mobileNumber: string;
19095
19821
  apiSecret: string;
19096
19822
  } | undefined;
19097
19823
  lineRichMenuId?: string | null | undefined;
@@ -19124,9 +19850,19 @@ export declare const telegramContract: {
19124
19850
  channelSecret?: string | undefined;
19125
19851
  additionalCredentials?: any;
19126
19852
  senderId?: string | undefined;
19853
+ whatsapp?: {
19854
+ email: string;
19855
+ wabaExternalId: string;
19856
+ phoneNumberId: string;
19857
+ wabaBusinessId?: string | undefined;
19858
+ clientId?: string | undefined;
19859
+ channelId?: string | undefined;
19860
+ status?: "active" | "pending" | undefined;
19861
+ apiKey?: string | undefined;
19862
+ } | undefined;
19127
19863
  vonageCredentials?: {
19128
- mobileNumber: string;
19129
19864
  apiKey: string;
19865
+ mobileNumber: string;
19130
19866
  apiSecret: string;
19131
19867
  } | undefined;
19132
19868
  lineRichMenuId?: string | null | undefined;