@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.
- package/dist/api-contracts/src/channel/index.d.ts +2772 -197
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +126 -10
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +240 -10
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +24249 -21551
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +753 -105
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +1096 -144
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +35856 -4586
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +140 -12
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +118 -10
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +1475 -163
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +99 -11
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +74 -6
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +1155 -127
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +1034 -122
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +123 -15
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-contract.d.ts +6 -6
- package/dist/api-contracts/src/mail/mail-server-contract.d.ts +6 -6
- package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +2 -2
- package/dist/api-contracts/src/messenger/index.d.ts +1155 -127
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +74 -6
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +225 -29
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/schema.d.ts +6 -6
- package/dist/api-contracts/src/sms/validation.d.ts +4 -4
- package/dist/api-contracts/src/telegram/index.d.ts +837 -101
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +837 -101
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +549 -77
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +637 -642
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +236 -20
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +1 -0
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +2394 -2240
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2392 -2240
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -65,17 +65,45 @@ export declare const viberContract: {
|
|
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 viberContract: {
|
|
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 viberContract: {
|
|
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 viberContract: {
|
|
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 viberContract: {
|
|
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 viberContract: {
|
|
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 viberContract: {
|
|
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;
|
@@ -712,17 +800,45 @@ export declare const viberContract: {
|
|
712
800
|
channelSecret: z.ZodOptional<z.ZodString>;
|
713
801
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
714
802
|
senderId: z.ZodOptional<z.ZodString>;
|
803
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
804
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
805
|
+
wabaExternalId: z.ZodString;
|
806
|
+
phoneNumberId: z.ZodString;
|
807
|
+
email: z.ZodString;
|
808
|
+
clientId: z.ZodOptional<z.ZodString>;
|
809
|
+
channelId: z.ZodOptional<z.ZodString>;
|
810
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
811
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
812
|
+
}, "strip", z.ZodTypeAny, {
|
813
|
+
email: string;
|
814
|
+
wabaExternalId: string;
|
815
|
+
phoneNumberId: string;
|
816
|
+
wabaBusinessId?: string | undefined;
|
817
|
+
clientId?: string | undefined;
|
818
|
+
channelId?: string | undefined;
|
819
|
+
status?: "active" | "pending" | undefined;
|
820
|
+
apiKey?: string | undefined;
|
821
|
+
}, {
|
822
|
+
email: string;
|
823
|
+
wabaExternalId: string;
|
824
|
+
phoneNumberId: string;
|
825
|
+
wabaBusinessId?: string | undefined;
|
826
|
+
clientId?: string | undefined;
|
827
|
+
channelId?: string | undefined;
|
828
|
+
status?: "active" | "pending" | undefined;
|
829
|
+
apiKey?: string | undefined;
|
830
|
+
}>>;
|
715
831
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
716
832
|
mobileNumber: z.ZodString;
|
717
833
|
apiKey: z.ZodString;
|
718
834
|
apiSecret: z.ZodString;
|
719
835
|
}, "strip", z.ZodTypeAny, {
|
720
|
-
mobileNumber: string;
|
721
836
|
apiKey: string;
|
837
|
+
mobileNumber: string;
|
722
838
|
apiSecret: string;
|
723
839
|
}, {
|
724
|
-
mobileNumber: string;
|
725
840
|
apiKey: string;
|
841
|
+
mobileNumber: string;
|
726
842
|
apiSecret: string;
|
727
843
|
}>>;
|
728
844
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -734,9 +850,19 @@ export declare const viberContract: {
|
|
734
850
|
channelSecret?: string | undefined;
|
735
851
|
additionalCredentials?: any;
|
736
852
|
senderId?: string | undefined;
|
853
|
+
whatsapp?: {
|
854
|
+
email: string;
|
855
|
+
wabaExternalId: string;
|
856
|
+
phoneNumberId: string;
|
857
|
+
wabaBusinessId?: string | undefined;
|
858
|
+
clientId?: string | undefined;
|
859
|
+
channelId?: string | undefined;
|
860
|
+
status?: "active" | "pending" | undefined;
|
861
|
+
apiKey?: string | undefined;
|
862
|
+
} | undefined;
|
737
863
|
vonageCredentials?: {
|
738
|
-
mobileNumber: string;
|
739
864
|
apiKey: string;
|
865
|
+
mobileNumber: string;
|
740
866
|
apiSecret: string;
|
741
867
|
} | undefined;
|
742
868
|
lineRichMenuId?: string | null | undefined;
|
@@ -748,9 +874,19 @@ export declare const viberContract: {
|
|
748
874
|
channelSecret?: string | undefined;
|
749
875
|
additionalCredentials?: any;
|
750
876
|
senderId?: string | undefined;
|
877
|
+
whatsapp?: {
|
878
|
+
email: string;
|
879
|
+
wabaExternalId: string;
|
880
|
+
phoneNumberId: string;
|
881
|
+
wabaBusinessId?: string | undefined;
|
882
|
+
clientId?: string | undefined;
|
883
|
+
channelId?: string | undefined;
|
884
|
+
status?: "active" | "pending" | undefined;
|
885
|
+
apiKey?: string | undefined;
|
886
|
+
} | undefined;
|
751
887
|
vonageCredentials?: {
|
752
|
-
mobileNumber: string;
|
753
888
|
apiKey: string;
|
889
|
+
mobileNumber: string;
|
754
890
|
apiSecret: string;
|
755
891
|
} | undefined;
|
756
892
|
lineRichMenuId?: string | null | undefined;
|
@@ -996,9 +1132,19 @@ export declare const viberContract: {
|
|
996
1132
|
channelSecret?: string | undefined;
|
997
1133
|
additionalCredentials?: any;
|
998
1134
|
senderId?: string | undefined;
|
1135
|
+
whatsapp?: {
|
1136
|
+
email: string;
|
1137
|
+
wabaExternalId: string;
|
1138
|
+
phoneNumberId: string;
|
1139
|
+
wabaBusinessId?: string | undefined;
|
1140
|
+
clientId?: string | undefined;
|
1141
|
+
channelId?: string | undefined;
|
1142
|
+
status?: "active" | "pending" | undefined;
|
1143
|
+
apiKey?: string | undefined;
|
1144
|
+
} | undefined;
|
999
1145
|
vonageCredentials?: {
|
1000
|
-
mobileNumber: string;
|
1001
1146
|
apiKey: string;
|
1147
|
+
mobileNumber: string;
|
1002
1148
|
apiSecret: string;
|
1003
1149
|
} | undefined;
|
1004
1150
|
lineRichMenuId?: string | null | undefined;
|
@@ -1075,9 +1221,19 @@ export declare const viberContract: {
|
|
1075
1221
|
channelSecret?: string | undefined;
|
1076
1222
|
additionalCredentials?: any;
|
1077
1223
|
senderId?: string | undefined;
|
1224
|
+
whatsapp?: {
|
1225
|
+
email: string;
|
1226
|
+
wabaExternalId: string;
|
1227
|
+
phoneNumberId: string;
|
1228
|
+
wabaBusinessId?: string | undefined;
|
1229
|
+
clientId?: string | undefined;
|
1230
|
+
channelId?: string | undefined;
|
1231
|
+
status?: "active" | "pending" | undefined;
|
1232
|
+
apiKey?: string | undefined;
|
1233
|
+
} | undefined;
|
1078
1234
|
vonageCredentials?: {
|
1079
|
-
mobileNumber: string;
|
1080
1235
|
apiKey: string;
|
1236
|
+
mobileNumber: string;
|
1081
1237
|
apiSecret: string;
|
1082
1238
|
} | undefined;
|
1083
1239
|
lineRichMenuId?: string | null | undefined;
|
@@ -1156,9 +1312,19 @@ export declare const viberContract: {
|
|
1156
1312
|
channelSecret?: string | undefined;
|
1157
1313
|
additionalCredentials?: any;
|
1158
1314
|
senderId?: string | undefined;
|
1315
|
+
whatsapp?: {
|
1316
|
+
email: string;
|
1317
|
+
wabaExternalId: string;
|
1318
|
+
phoneNumberId: string;
|
1319
|
+
wabaBusinessId?: string | undefined;
|
1320
|
+
clientId?: string | undefined;
|
1321
|
+
channelId?: string | undefined;
|
1322
|
+
status?: "active" | "pending" | undefined;
|
1323
|
+
apiKey?: string | undefined;
|
1324
|
+
} | undefined;
|
1159
1325
|
vonageCredentials?: {
|
1160
|
-
mobileNumber: string;
|
1161
1326
|
apiKey: string;
|
1327
|
+
mobileNumber: string;
|
1162
1328
|
apiSecret: string;
|
1163
1329
|
} | undefined;
|
1164
1330
|
lineRichMenuId?: string | null | undefined;
|
@@ -1238,9 +1404,19 @@ export declare const viberContract: {
|
|
1238
1404
|
channelSecret?: string | undefined;
|
1239
1405
|
additionalCredentials?: any;
|
1240
1406
|
senderId?: string | undefined;
|
1407
|
+
whatsapp?: {
|
1408
|
+
email: string;
|
1409
|
+
wabaExternalId: string;
|
1410
|
+
phoneNumberId: string;
|
1411
|
+
wabaBusinessId?: string | undefined;
|
1412
|
+
clientId?: string | undefined;
|
1413
|
+
channelId?: string | undefined;
|
1414
|
+
status?: "active" | "pending" | undefined;
|
1415
|
+
apiKey?: string | undefined;
|
1416
|
+
} | undefined;
|
1241
1417
|
vonageCredentials?: {
|
1242
|
-
mobileNumber: string;
|
1243
1418
|
apiKey: string;
|
1419
|
+
mobileNumber: string;
|
1244
1420
|
apiSecret: string;
|
1245
1421
|
} | undefined;
|
1246
1422
|
lineRichMenuId?: string | null | undefined;
|
@@ -1459,17 +1635,45 @@ export declare const viberContract: {
|
|
1459
1635
|
channelSecret: z.ZodOptional<z.ZodString>;
|
1460
1636
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
1461
1637
|
senderId: z.ZodOptional<z.ZodString>;
|
1638
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
1639
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
1640
|
+
wabaExternalId: z.ZodString;
|
1641
|
+
phoneNumberId: z.ZodString;
|
1642
|
+
email: z.ZodString;
|
1643
|
+
clientId: z.ZodOptional<z.ZodString>;
|
1644
|
+
channelId: z.ZodOptional<z.ZodString>;
|
1645
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
1646
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
1647
|
+
}, "strip", z.ZodTypeAny, {
|
1648
|
+
email: string;
|
1649
|
+
wabaExternalId: string;
|
1650
|
+
phoneNumberId: string;
|
1651
|
+
wabaBusinessId?: string | undefined;
|
1652
|
+
clientId?: string | undefined;
|
1653
|
+
channelId?: string | undefined;
|
1654
|
+
status?: "active" | "pending" | undefined;
|
1655
|
+
apiKey?: string | undefined;
|
1656
|
+
}, {
|
1657
|
+
email: string;
|
1658
|
+
wabaExternalId: string;
|
1659
|
+
phoneNumberId: string;
|
1660
|
+
wabaBusinessId?: string | undefined;
|
1661
|
+
clientId?: string | undefined;
|
1662
|
+
channelId?: string | undefined;
|
1663
|
+
status?: "active" | "pending" | undefined;
|
1664
|
+
apiKey?: string | undefined;
|
1665
|
+
}>>;
|
1462
1666
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
1463
1667
|
mobileNumber: z.ZodString;
|
1464
1668
|
apiKey: z.ZodString;
|
1465
1669
|
apiSecret: z.ZodString;
|
1466
1670
|
}, "strip", z.ZodTypeAny, {
|
1467
|
-
mobileNumber: string;
|
1468
1671
|
apiKey: string;
|
1672
|
+
mobileNumber: string;
|
1469
1673
|
apiSecret: string;
|
1470
1674
|
}, {
|
1471
|
-
mobileNumber: string;
|
1472
1675
|
apiKey: string;
|
1676
|
+
mobileNumber: string;
|
1473
1677
|
apiSecret: string;
|
1474
1678
|
}>>;
|
1475
1679
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -1481,9 +1685,19 @@ export declare const viberContract: {
|
|
1481
1685
|
channelSecret?: string | undefined;
|
1482
1686
|
additionalCredentials?: any;
|
1483
1687
|
senderId?: string | undefined;
|
1688
|
+
whatsapp?: {
|
1689
|
+
email: string;
|
1690
|
+
wabaExternalId: string;
|
1691
|
+
phoneNumberId: string;
|
1692
|
+
wabaBusinessId?: string | undefined;
|
1693
|
+
clientId?: string | undefined;
|
1694
|
+
channelId?: string | undefined;
|
1695
|
+
status?: "active" | "pending" | undefined;
|
1696
|
+
apiKey?: string | undefined;
|
1697
|
+
} | undefined;
|
1484
1698
|
vonageCredentials?: {
|
1485
|
-
mobileNumber: string;
|
1486
1699
|
apiKey: string;
|
1700
|
+
mobileNumber: string;
|
1487
1701
|
apiSecret: string;
|
1488
1702
|
} | undefined;
|
1489
1703
|
lineRichMenuId?: string | null | undefined;
|
@@ -1495,9 +1709,19 @@ export declare const viberContract: {
|
|
1495
1709
|
channelSecret?: string | undefined;
|
1496
1710
|
additionalCredentials?: any;
|
1497
1711
|
senderId?: string | undefined;
|
1712
|
+
whatsapp?: {
|
1713
|
+
email: string;
|
1714
|
+
wabaExternalId: string;
|
1715
|
+
phoneNumberId: string;
|
1716
|
+
wabaBusinessId?: string | undefined;
|
1717
|
+
clientId?: string | undefined;
|
1718
|
+
channelId?: string | undefined;
|
1719
|
+
status?: "active" | "pending" | undefined;
|
1720
|
+
apiKey?: string | undefined;
|
1721
|
+
} | undefined;
|
1498
1722
|
vonageCredentials?: {
|
1499
|
-
mobileNumber: string;
|
1500
1723
|
apiKey: string;
|
1724
|
+
mobileNumber: string;
|
1501
1725
|
apiSecret: string;
|
1502
1726
|
} | undefined;
|
1503
1727
|
lineRichMenuId?: string | null | undefined;
|
@@ -1539,9 +1763,19 @@ export declare const viberContract: {
|
|
1539
1763
|
channelSecret?: string | undefined;
|
1540
1764
|
additionalCredentials?: any;
|
1541
1765
|
senderId?: string | undefined;
|
1766
|
+
whatsapp?: {
|
1767
|
+
email: string;
|
1768
|
+
wabaExternalId: string;
|
1769
|
+
phoneNumberId: string;
|
1770
|
+
wabaBusinessId?: string | undefined;
|
1771
|
+
clientId?: string | undefined;
|
1772
|
+
channelId?: string | undefined;
|
1773
|
+
status?: "active" | "pending" | undefined;
|
1774
|
+
apiKey?: string | undefined;
|
1775
|
+
} | undefined;
|
1542
1776
|
vonageCredentials?: {
|
1543
|
-
mobileNumber: string;
|
1544
1777
|
apiKey: string;
|
1778
|
+
mobileNumber: string;
|
1545
1779
|
apiSecret: string;
|
1546
1780
|
} | undefined;
|
1547
1781
|
lineRichMenuId?: string | null | undefined;
|
@@ -1571,9 +1805,19 @@ export declare const viberContract: {
|
|
1571
1805
|
channelSecret?: string | undefined;
|
1572
1806
|
additionalCredentials?: any;
|
1573
1807
|
senderId?: string | undefined;
|
1808
|
+
whatsapp?: {
|
1809
|
+
email: string;
|
1810
|
+
wabaExternalId: string;
|
1811
|
+
phoneNumberId: string;
|
1812
|
+
wabaBusinessId?: string | undefined;
|
1813
|
+
clientId?: string | undefined;
|
1814
|
+
channelId?: string | undefined;
|
1815
|
+
status?: "active" | "pending" | undefined;
|
1816
|
+
apiKey?: string | undefined;
|
1817
|
+
} | undefined;
|
1574
1818
|
vonageCredentials?: {
|
1575
|
-
mobileNumber: string;
|
1576
1819
|
apiKey: string;
|
1820
|
+
mobileNumber: string;
|
1577
1821
|
apiSecret: string;
|
1578
1822
|
} | undefined;
|
1579
1823
|
lineRichMenuId?: string | null | undefined;
|
@@ -1607,9 +1851,19 @@ export declare const viberContract: {
|
|
1607
1851
|
channelSecret?: string | undefined;
|
1608
1852
|
additionalCredentials?: any;
|
1609
1853
|
senderId?: string | undefined;
|
1854
|
+
whatsapp?: {
|
1855
|
+
email: string;
|
1856
|
+
wabaExternalId: string;
|
1857
|
+
phoneNumberId: string;
|
1858
|
+
wabaBusinessId?: string | undefined;
|
1859
|
+
clientId?: string | undefined;
|
1860
|
+
channelId?: string | undefined;
|
1861
|
+
status?: "active" | "pending" | undefined;
|
1862
|
+
apiKey?: string | undefined;
|
1863
|
+
} | undefined;
|
1610
1864
|
vonageCredentials?: {
|
1611
|
-
mobileNumber: string;
|
1612
1865
|
apiKey: string;
|
1866
|
+
mobileNumber: string;
|
1613
1867
|
apiSecret: string;
|
1614
1868
|
} | undefined;
|
1615
1869
|
lineRichMenuId?: string | null | undefined;
|
@@ -1682,9 +1936,19 @@ export declare const viberContract: {
|
|
1682
1936
|
channelSecret?: string | undefined;
|
1683
1937
|
additionalCredentials?: any;
|
1684
1938
|
senderId?: string | undefined;
|
1939
|
+
whatsapp?: {
|
1940
|
+
email: string;
|
1941
|
+
wabaExternalId: string;
|
1942
|
+
phoneNumberId: string;
|
1943
|
+
wabaBusinessId?: string | undefined;
|
1944
|
+
clientId?: string | undefined;
|
1945
|
+
channelId?: string | undefined;
|
1946
|
+
status?: "active" | "pending" | undefined;
|
1947
|
+
apiKey?: string | undefined;
|
1948
|
+
} | undefined;
|
1685
1949
|
vonageCredentials?: {
|
1686
|
-
mobileNumber: string;
|
1687
1950
|
apiKey: string;
|
1951
|
+
mobileNumber: string;
|
1688
1952
|
apiSecret: string;
|
1689
1953
|
} | undefined;
|
1690
1954
|
lineRichMenuId?: string | null | undefined;
|
@@ -1749,7 +2013,7 @@ export declare const viberContract: {
|
|
1749
2013
|
id: z.ZodOptional<z.ZodString>;
|
1750
2014
|
message: z.ZodOptional<z.ZodString>;
|
1751
2015
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
1752
|
-
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"]>;
|
2016
|
+
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"]>;
|
1753
2017
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
1754
2018
|
metadata: z.ZodOptional<z.ZodAny>;
|
1755
2019
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -1805,7 +2069,7 @@ export declare const viberContract: {
|
|
1805
2069
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
1806
2070
|
label: z.ZodOptional<z.ZodString>;
|
1807
2071
|
}, "strip", z.ZodTypeAny, {
|
1808
|
-
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";
|
2072
|
+
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";
|
1809
2073
|
direction: "incoming" | "outgoing" | "system";
|
1810
2074
|
id?: string | undefined;
|
1811
2075
|
message?: string | undefined;
|
@@ -1840,7 +2104,7 @@ export declare const viberContract: {
|
|
1840
2104
|
editedAt?: string | Date | null | undefined;
|
1841
2105
|
label?: string | undefined;
|
1842
2106
|
}, {
|
1843
|
-
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";
|
2107
|
+
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";
|
1844
2108
|
direction: "incoming" | "outgoing" | "system";
|
1845
2109
|
id?: string | undefined;
|
1846
2110
|
message?: string | undefined;
|
@@ -1877,7 +2141,7 @@ export declare const viberContract: {
|
|
1877
2141
|
}>;
|
1878
2142
|
}, "strip", z.ZodTypeAny, {
|
1879
2143
|
message: {
|
1880
|
-
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";
|
2144
|
+
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";
|
1881
2145
|
direction: "incoming" | "outgoing" | "system";
|
1882
2146
|
id?: string | undefined;
|
1883
2147
|
message?: string | undefined;
|
@@ -1925,9 +2189,19 @@ export declare const viberContract: {
|
|
1925
2189
|
channelSecret?: string | undefined;
|
1926
2190
|
additionalCredentials?: any;
|
1927
2191
|
senderId?: string | undefined;
|
2192
|
+
whatsapp?: {
|
2193
|
+
email: string;
|
2194
|
+
wabaExternalId: string;
|
2195
|
+
phoneNumberId: string;
|
2196
|
+
wabaBusinessId?: string | undefined;
|
2197
|
+
clientId?: string | undefined;
|
2198
|
+
channelId?: string | undefined;
|
2199
|
+
status?: "active" | "pending" | undefined;
|
2200
|
+
apiKey?: string | undefined;
|
2201
|
+
} | undefined;
|
1928
2202
|
vonageCredentials?: {
|
1929
|
-
mobileNumber: string;
|
1930
2203
|
apiKey: string;
|
2204
|
+
mobileNumber: string;
|
1931
2205
|
apiSecret: string;
|
1932
2206
|
} | undefined;
|
1933
2207
|
lineRichMenuId?: string | null | undefined;
|
@@ -1991,7 +2265,7 @@ export declare const viberContract: {
|
|
1991
2265
|
isBot: boolean | null;
|
1992
2266
|
}, {
|
1993
2267
|
message: {
|
1994
|
-
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";
|
2268
|
+
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";
|
1995
2269
|
direction: "incoming" | "outgoing" | "system";
|
1996
2270
|
id?: string | undefined;
|
1997
2271
|
message?: string | undefined;
|
@@ -2039,9 +2313,19 @@ export declare const viberContract: {
|
|
2039
2313
|
channelSecret?: string | undefined;
|
2040
2314
|
additionalCredentials?: any;
|
2041
2315
|
senderId?: string | undefined;
|
2316
|
+
whatsapp?: {
|
2317
|
+
email: string;
|
2318
|
+
wabaExternalId: string;
|
2319
|
+
phoneNumberId: string;
|
2320
|
+
wabaBusinessId?: string | undefined;
|
2321
|
+
clientId?: string | undefined;
|
2322
|
+
channelId?: string | undefined;
|
2323
|
+
status?: "active" | "pending" | undefined;
|
2324
|
+
apiKey?: string | undefined;
|
2325
|
+
} | undefined;
|
2042
2326
|
vonageCredentials?: {
|
2043
|
-
mobileNumber: string;
|
2044
2327
|
apiKey: string;
|
2328
|
+
mobileNumber: string;
|
2045
2329
|
apiSecret: string;
|
2046
2330
|
} | undefined;
|
2047
2331
|
lineRichMenuId?: string | null | undefined;
|
@@ -2109,7 +2393,7 @@ export declare const viberContract: {
|
|
2109
2393
|
200: z.ZodObject<{
|
2110
2394
|
requestId: z.ZodString;
|
2111
2395
|
data: z.ZodObject<{
|
2112
|
-
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"]>;
|
2396
|
+
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"]>;
|
2113
2397
|
message: z.ZodString;
|
2114
2398
|
id: z.ZodString;
|
2115
2399
|
url: z.ZodString;
|
@@ -4048,17 +4332,45 @@ export declare const viberContract: {
|
|
4048
4332
|
channelSecret: z.ZodOptional<z.ZodString>;
|
4049
4333
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
4050
4334
|
senderId: z.ZodOptional<z.ZodString>;
|
4335
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
4336
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
4337
|
+
wabaExternalId: z.ZodString;
|
4338
|
+
phoneNumberId: z.ZodString;
|
4339
|
+
email: z.ZodString;
|
4340
|
+
clientId: z.ZodOptional<z.ZodString>;
|
4341
|
+
channelId: z.ZodOptional<z.ZodString>;
|
4342
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
4343
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
4344
|
+
}, "strip", z.ZodTypeAny, {
|
4345
|
+
email: string;
|
4346
|
+
wabaExternalId: string;
|
4347
|
+
phoneNumberId: string;
|
4348
|
+
wabaBusinessId?: string | undefined;
|
4349
|
+
clientId?: string | undefined;
|
4350
|
+
channelId?: string | undefined;
|
4351
|
+
status?: "active" | "pending" | undefined;
|
4352
|
+
apiKey?: string | undefined;
|
4353
|
+
}, {
|
4354
|
+
email: string;
|
4355
|
+
wabaExternalId: string;
|
4356
|
+
phoneNumberId: string;
|
4357
|
+
wabaBusinessId?: string | undefined;
|
4358
|
+
clientId?: string | undefined;
|
4359
|
+
channelId?: string | undefined;
|
4360
|
+
status?: "active" | "pending" | undefined;
|
4361
|
+
apiKey?: string | undefined;
|
4362
|
+
}>>;
|
4051
4363
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
4052
4364
|
mobileNumber: z.ZodString;
|
4053
4365
|
apiKey: z.ZodString;
|
4054
4366
|
apiSecret: z.ZodString;
|
4055
4367
|
}, "strip", z.ZodTypeAny, {
|
4056
|
-
mobileNumber: string;
|
4057
4368
|
apiKey: string;
|
4369
|
+
mobileNumber: string;
|
4058
4370
|
apiSecret: string;
|
4059
4371
|
}, {
|
4060
|
-
mobileNumber: string;
|
4061
4372
|
apiKey: string;
|
4373
|
+
mobileNumber: string;
|
4062
4374
|
apiSecret: string;
|
4063
4375
|
}>>;
|
4064
4376
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -4070,9 +4382,19 @@ export declare const viberContract: {
|
|
4070
4382
|
channelSecret?: string | undefined;
|
4071
4383
|
additionalCredentials?: any;
|
4072
4384
|
senderId?: string | undefined;
|
4385
|
+
whatsapp?: {
|
4386
|
+
email: string;
|
4387
|
+
wabaExternalId: string;
|
4388
|
+
phoneNumberId: string;
|
4389
|
+
wabaBusinessId?: string | undefined;
|
4390
|
+
clientId?: string | undefined;
|
4391
|
+
channelId?: string | undefined;
|
4392
|
+
status?: "active" | "pending" | undefined;
|
4393
|
+
apiKey?: string | undefined;
|
4394
|
+
} | undefined;
|
4073
4395
|
vonageCredentials?: {
|
4074
|
-
mobileNumber: string;
|
4075
4396
|
apiKey: string;
|
4397
|
+
mobileNumber: string;
|
4076
4398
|
apiSecret: string;
|
4077
4399
|
} | undefined;
|
4078
4400
|
lineRichMenuId?: string | null | undefined;
|
@@ -4084,9 +4406,19 @@ export declare const viberContract: {
|
|
4084
4406
|
channelSecret?: string | undefined;
|
4085
4407
|
additionalCredentials?: any;
|
4086
4408
|
senderId?: string | undefined;
|
4409
|
+
whatsapp?: {
|
4410
|
+
email: string;
|
4411
|
+
wabaExternalId: string;
|
4412
|
+
phoneNumberId: string;
|
4413
|
+
wabaBusinessId?: string | undefined;
|
4414
|
+
clientId?: string | undefined;
|
4415
|
+
channelId?: string | undefined;
|
4416
|
+
status?: "active" | "pending" | undefined;
|
4417
|
+
apiKey?: string | undefined;
|
4418
|
+
} | undefined;
|
4087
4419
|
vonageCredentials?: {
|
4088
|
-
mobileNumber: string;
|
4089
4420
|
apiKey: string;
|
4421
|
+
mobileNumber: string;
|
4090
4422
|
apiSecret: string;
|
4091
4423
|
} | undefined;
|
4092
4424
|
lineRichMenuId?: string | null | undefined;
|
@@ -4332,9 +4664,19 @@ export declare const viberContract: {
|
|
4332
4664
|
channelSecret?: string | undefined;
|
4333
4665
|
additionalCredentials?: any;
|
4334
4666
|
senderId?: string | undefined;
|
4667
|
+
whatsapp?: {
|
4668
|
+
email: string;
|
4669
|
+
wabaExternalId: string;
|
4670
|
+
phoneNumberId: string;
|
4671
|
+
wabaBusinessId?: string | undefined;
|
4672
|
+
clientId?: string | undefined;
|
4673
|
+
channelId?: string | undefined;
|
4674
|
+
status?: "active" | "pending" | undefined;
|
4675
|
+
apiKey?: string | undefined;
|
4676
|
+
} | undefined;
|
4335
4677
|
vonageCredentials?: {
|
4336
|
-
mobileNumber: string;
|
4337
4678
|
apiKey: string;
|
4679
|
+
mobileNumber: string;
|
4338
4680
|
apiSecret: string;
|
4339
4681
|
} | undefined;
|
4340
4682
|
lineRichMenuId?: string | null | undefined;
|
@@ -4411,9 +4753,19 @@ export declare const viberContract: {
|
|
4411
4753
|
channelSecret?: string | undefined;
|
4412
4754
|
additionalCredentials?: any;
|
4413
4755
|
senderId?: string | undefined;
|
4756
|
+
whatsapp?: {
|
4757
|
+
email: string;
|
4758
|
+
wabaExternalId: string;
|
4759
|
+
phoneNumberId: string;
|
4760
|
+
wabaBusinessId?: string | undefined;
|
4761
|
+
clientId?: string | undefined;
|
4762
|
+
channelId?: string | undefined;
|
4763
|
+
status?: "active" | "pending" | undefined;
|
4764
|
+
apiKey?: string | undefined;
|
4765
|
+
} | undefined;
|
4414
4766
|
vonageCredentials?: {
|
4415
|
-
mobileNumber: string;
|
4416
4767
|
apiKey: string;
|
4768
|
+
mobileNumber: string;
|
4417
4769
|
apiSecret: string;
|
4418
4770
|
} | undefined;
|
4419
4771
|
lineRichMenuId?: string | null | undefined;
|
@@ -4938,9 +5290,19 @@ export declare const viberContract: {
|
|
4938
5290
|
channelSecret?: string | undefined;
|
4939
5291
|
additionalCredentials?: any;
|
4940
5292
|
senderId?: string | undefined;
|
5293
|
+
whatsapp?: {
|
5294
|
+
email: string;
|
5295
|
+
wabaExternalId: string;
|
5296
|
+
phoneNumberId: string;
|
5297
|
+
wabaBusinessId?: string | undefined;
|
5298
|
+
clientId?: string | undefined;
|
5299
|
+
channelId?: string | undefined;
|
5300
|
+
status?: "active" | "pending" | undefined;
|
5301
|
+
apiKey?: string | undefined;
|
5302
|
+
} | undefined;
|
4941
5303
|
vonageCredentials?: {
|
4942
|
-
mobileNumber: string;
|
4943
5304
|
apiKey: string;
|
5305
|
+
mobileNumber: string;
|
4944
5306
|
apiSecret: string;
|
4945
5307
|
} | undefined;
|
4946
5308
|
lineRichMenuId?: string | null | undefined;
|
@@ -5328,9 +5690,19 @@ export declare const viberContract: {
|
|
5328
5690
|
channelSecret?: string | undefined;
|
5329
5691
|
additionalCredentials?: any;
|
5330
5692
|
senderId?: string | undefined;
|
5693
|
+
whatsapp?: {
|
5694
|
+
email: string;
|
5695
|
+
wabaExternalId: string;
|
5696
|
+
phoneNumberId: string;
|
5697
|
+
wabaBusinessId?: string | undefined;
|
5698
|
+
clientId?: string | undefined;
|
5699
|
+
channelId?: string | undefined;
|
5700
|
+
status?: "active" | "pending" | undefined;
|
5701
|
+
apiKey?: string | undefined;
|
5702
|
+
} | undefined;
|
5331
5703
|
vonageCredentials?: {
|
5332
|
-
mobileNumber: string;
|
5333
5704
|
apiKey: string;
|
5705
|
+
mobileNumber: string;
|
5334
5706
|
apiSecret: string;
|
5335
5707
|
} | undefined;
|
5336
5708
|
lineRichMenuId?: string | null | undefined;
|
@@ -5744,7 +6116,7 @@ export declare const viberContract: {
|
|
5744
6116
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
5745
6117
|
message: z.ZodString;
|
5746
6118
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
5747
|
-
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"]>;
|
6119
|
+
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"]>;
|
5748
6120
|
readAt: z.ZodDate;
|
5749
6121
|
metadata: z.ZodAny;
|
5750
6122
|
platformId: z.ZodString;
|
@@ -6402,7 +6774,7 @@ export declare const viberContract: {
|
|
6402
6774
|
};
|
6403
6775
|
}>;
|
6404
6776
|
}, "strip", z.ZodTypeAny, {
|
6405
|
-
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";
|
6777
|
+
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";
|
6406
6778
|
message: string;
|
6407
6779
|
id: string;
|
6408
6780
|
url: string;
|
@@ -6564,7 +6936,7 @@ export declare const viberContract: {
|
|
6564
6936
|
metadata?: any;
|
6565
6937
|
template?: any;
|
6566
6938
|
}, {
|
6567
|
-
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";
|
6939
|
+
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";
|
6568
6940
|
message: string;
|
6569
6941
|
id: string;
|
6570
6942
|
url: string;
|
@@ -6938,7 +7310,7 @@ export declare const viberContract: {
|
|
6938
7310
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
6939
7311
|
message: z.ZodString;
|
6940
7312
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
6941
|
-
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"]>;
|
7313
|
+
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"]>;
|
6942
7314
|
readAt: z.ZodDate;
|
6943
7315
|
metadata: z.ZodAny;
|
6944
7316
|
platformId: z.ZodString;
|
@@ -8434,17 +8806,45 @@ export declare const viberContract: {
|
|
8434
8806
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8435
8807
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8436
8808
|
senderId: z.ZodOptional<z.ZodString>;
|
8809
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
8810
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
8811
|
+
wabaExternalId: z.ZodString;
|
8812
|
+
phoneNumberId: z.ZodString;
|
8813
|
+
email: z.ZodString;
|
8814
|
+
clientId: z.ZodOptional<z.ZodString>;
|
8815
|
+
channelId: z.ZodOptional<z.ZodString>;
|
8816
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
8817
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
8818
|
+
}, "strip", z.ZodTypeAny, {
|
8819
|
+
email: string;
|
8820
|
+
wabaExternalId: string;
|
8821
|
+
phoneNumberId: string;
|
8822
|
+
wabaBusinessId?: string | undefined;
|
8823
|
+
clientId?: string | undefined;
|
8824
|
+
channelId?: string | undefined;
|
8825
|
+
status?: "active" | "pending" | undefined;
|
8826
|
+
apiKey?: string | undefined;
|
8827
|
+
}, {
|
8828
|
+
email: string;
|
8829
|
+
wabaExternalId: string;
|
8830
|
+
phoneNumberId: string;
|
8831
|
+
wabaBusinessId?: string | undefined;
|
8832
|
+
clientId?: string | undefined;
|
8833
|
+
channelId?: string | undefined;
|
8834
|
+
status?: "active" | "pending" | undefined;
|
8835
|
+
apiKey?: string | undefined;
|
8836
|
+
}>>;
|
8437
8837
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
8438
8838
|
mobileNumber: z.ZodString;
|
8439
8839
|
apiKey: z.ZodString;
|
8440
8840
|
apiSecret: z.ZodString;
|
8441
8841
|
}, "strip", z.ZodTypeAny, {
|
8442
|
-
mobileNumber: string;
|
8443
8842
|
apiKey: string;
|
8843
|
+
mobileNumber: string;
|
8444
8844
|
apiSecret: string;
|
8445
8845
|
}, {
|
8446
|
-
mobileNumber: string;
|
8447
8846
|
apiKey: string;
|
8847
|
+
mobileNumber: string;
|
8448
8848
|
apiSecret: string;
|
8449
8849
|
}>>;
|
8450
8850
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -8456,9 +8856,19 @@ export declare const viberContract: {
|
|
8456
8856
|
channelSecret?: string | undefined;
|
8457
8857
|
additionalCredentials?: any;
|
8458
8858
|
senderId?: string | undefined;
|
8859
|
+
whatsapp?: {
|
8860
|
+
email: string;
|
8861
|
+
wabaExternalId: string;
|
8862
|
+
phoneNumberId: string;
|
8863
|
+
wabaBusinessId?: string | undefined;
|
8864
|
+
clientId?: string | undefined;
|
8865
|
+
channelId?: string | undefined;
|
8866
|
+
status?: "active" | "pending" | undefined;
|
8867
|
+
apiKey?: string | undefined;
|
8868
|
+
} | undefined;
|
8459
8869
|
vonageCredentials?: {
|
8460
|
-
mobileNumber: string;
|
8461
8870
|
apiKey: string;
|
8871
|
+
mobileNumber: string;
|
8462
8872
|
apiSecret: string;
|
8463
8873
|
} | undefined;
|
8464
8874
|
lineRichMenuId?: string | null | undefined;
|
@@ -8470,9 +8880,19 @@ export declare const viberContract: {
|
|
8470
8880
|
channelSecret?: string | undefined;
|
8471
8881
|
additionalCredentials?: any;
|
8472
8882
|
senderId?: string | undefined;
|
8883
|
+
whatsapp?: {
|
8884
|
+
email: string;
|
8885
|
+
wabaExternalId: string;
|
8886
|
+
phoneNumberId: string;
|
8887
|
+
wabaBusinessId?: string | undefined;
|
8888
|
+
clientId?: string | undefined;
|
8889
|
+
channelId?: string | undefined;
|
8890
|
+
status?: "active" | "pending" | undefined;
|
8891
|
+
apiKey?: string | undefined;
|
8892
|
+
} | undefined;
|
8473
8893
|
vonageCredentials?: {
|
8474
|
-
mobileNumber: string;
|
8475
8894
|
apiKey: string;
|
8895
|
+
mobileNumber: string;
|
8476
8896
|
apiSecret: string;
|
8477
8897
|
} | undefined;
|
8478
8898
|
lineRichMenuId?: string | null | undefined;
|
@@ -8718,9 +9138,19 @@ export declare const viberContract: {
|
|
8718
9138
|
channelSecret?: string | undefined;
|
8719
9139
|
additionalCredentials?: any;
|
8720
9140
|
senderId?: string | undefined;
|
9141
|
+
whatsapp?: {
|
9142
|
+
email: string;
|
9143
|
+
wabaExternalId: string;
|
9144
|
+
phoneNumberId: string;
|
9145
|
+
wabaBusinessId?: string | undefined;
|
9146
|
+
clientId?: string | undefined;
|
9147
|
+
channelId?: string | undefined;
|
9148
|
+
status?: "active" | "pending" | undefined;
|
9149
|
+
apiKey?: string | undefined;
|
9150
|
+
} | undefined;
|
8721
9151
|
vonageCredentials?: {
|
8722
|
-
mobileNumber: string;
|
8723
9152
|
apiKey: string;
|
9153
|
+
mobileNumber: string;
|
8724
9154
|
apiSecret: string;
|
8725
9155
|
} | undefined;
|
8726
9156
|
lineRichMenuId?: string | null | undefined;
|
@@ -8797,9 +9227,19 @@ export declare const viberContract: {
|
|
8797
9227
|
channelSecret?: string | undefined;
|
8798
9228
|
additionalCredentials?: any;
|
8799
9229
|
senderId?: string | undefined;
|
9230
|
+
whatsapp?: {
|
9231
|
+
email: string;
|
9232
|
+
wabaExternalId: string;
|
9233
|
+
phoneNumberId: string;
|
9234
|
+
wabaBusinessId?: string | undefined;
|
9235
|
+
clientId?: string | undefined;
|
9236
|
+
channelId?: string | undefined;
|
9237
|
+
status?: "active" | "pending" | undefined;
|
9238
|
+
apiKey?: string | undefined;
|
9239
|
+
} | undefined;
|
8800
9240
|
vonageCredentials?: {
|
8801
|
-
mobileNumber: string;
|
8802
9241
|
apiKey: string;
|
9242
|
+
mobileNumber: string;
|
8803
9243
|
apiSecret: string;
|
8804
9244
|
} | undefined;
|
8805
9245
|
lineRichMenuId?: string | null | undefined;
|
@@ -9324,9 +9764,19 @@ export declare const viberContract: {
|
|
9324
9764
|
channelSecret?: string | undefined;
|
9325
9765
|
additionalCredentials?: any;
|
9326
9766
|
senderId?: string | undefined;
|
9767
|
+
whatsapp?: {
|
9768
|
+
email: string;
|
9769
|
+
wabaExternalId: string;
|
9770
|
+
phoneNumberId: string;
|
9771
|
+
wabaBusinessId?: string | undefined;
|
9772
|
+
clientId?: string | undefined;
|
9773
|
+
channelId?: string | undefined;
|
9774
|
+
status?: "active" | "pending" | undefined;
|
9775
|
+
apiKey?: string | undefined;
|
9776
|
+
} | undefined;
|
9327
9777
|
vonageCredentials?: {
|
9328
|
-
mobileNumber: string;
|
9329
9778
|
apiKey: string;
|
9779
|
+
mobileNumber: string;
|
9330
9780
|
apiSecret: string;
|
9331
9781
|
} | undefined;
|
9332
9782
|
lineRichMenuId?: string | null | undefined;
|
@@ -9714,9 +10164,19 @@ export declare const viberContract: {
|
|
9714
10164
|
channelSecret?: string | undefined;
|
9715
10165
|
additionalCredentials?: any;
|
9716
10166
|
senderId?: string | undefined;
|
10167
|
+
whatsapp?: {
|
10168
|
+
email: string;
|
10169
|
+
wabaExternalId: string;
|
10170
|
+
phoneNumberId: string;
|
10171
|
+
wabaBusinessId?: string | undefined;
|
10172
|
+
clientId?: string | undefined;
|
10173
|
+
channelId?: string | undefined;
|
10174
|
+
status?: "active" | "pending" | undefined;
|
10175
|
+
apiKey?: string | undefined;
|
10176
|
+
} | undefined;
|
9717
10177
|
vonageCredentials?: {
|
9718
|
-
mobileNumber: string;
|
9719
10178
|
apiKey: string;
|
10179
|
+
mobileNumber: string;
|
9720
10180
|
apiSecret: string;
|
9721
10181
|
} | undefined;
|
9722
10182
|
lineRichMenuId?: string | null | undefined;
|
@@ -10133,7 +10593,7 @@ export declare const viberContract: {
|
|
10133
10593
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
10134
10594
|
message: z.ZodString;
|
10135
10595
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
10136
|
-
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"]>;
|
10596
|
+
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"]>;
|
10137
10597
|
readAt: z.ZodDate;
|
10138
10598
|
metadata: z.ZodAny;
|
10139
10599
|
platformId: z.ZodString;
|
@@ -10791,7 +11251,7 @@ export declare const viberContract: {
|
|
10791
11251
|
};
|
10792
11252
|
}>;
|
10793
11253
|
}, "strip", z.ZodTypeAny, {
|
10794
|
-
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";
|
11254
|
+
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";
|
10795
11255
|
message: string;
|
10796
11256
|
id: string;
|
10797
11257
|
url: string;
|
@@ -10953,7 +11413,7 @@ export declare const viberContract: {
|
|
10953
11413
|
metadata?: any;
|
10954
11414
|
template?: any;
|
10955
11415
|
}, {
|
10956
|
-
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";
|
11416
|
+
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";
|
10957
11417
|
message: string;
|
10958
11418
|
id: string;
|
10959
11419
|
url: string;
|
@@ -11755,7 +12215,7 @@ export declare const viberContract: {
|
|
11755
12215
|
editedMessageid: z.ZodString;
|
11756
12216
|
label: z.ZodOptional<z.ZodString>;
|
11757
12217
|
}, "strip", z.ZodTypeAny, {
|
11758
|
-
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";
|
12218
|
+
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";
|
11759
12219
|
message: string;
|
11760
12220
|
id: string;
|
11761
12221
|
url: string;
|
@@ -11877,9 +12337,19 @@ export declare const viberContract: {
|
|
11877
12337
|
channelSecret?: string | undefined;
|
11878
12338
|
additionalCredentials?: any;
|
11879
12339
|
senderId?: string | undefined;
|
12340
|
+
whatsapp?: {
|
12341
|
+
email: string;
|
12342
|
+
wabaExternalId: string;
|
12343
|
+
phoneNumberId: string;
|
12344
|
+
wabaBusinessId?: string | undefined;
|
12345
|
+
clientId?: string | undefined;
|
12346
|
+
channelId?: string | undefined;
|
12347
|
+
status?: "active" | "pending" | undefined;
|
12348
|
+
apiKey?: string | undefined;
|
12349
|
+
} | undefined;
|
11880
12350
|
vonageCredentials?: {
|
11881
|
-
mobileNumber: string;
|
11882
12351
|
apiKey: string;
|
12352
|
+
mobileNumber: string;
|
11883
12353
|
apiSecret: string;
|
11884
12354
|
} | undefined;
|
11885
12355
|
lineRichMenuId?: string | null | undefined;
|
@@ -12271,7 +12741,7 @@ export declare const viberContract: {
|
|
12271
12741
|
previewUrl: string;
|
12272
12742
|
imageSetId: string;
|
12273
12743
|
repliedMessage: {
|
12274
|
-
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";
|
12744
|
+
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";
|
12275
12745
|
message: string;
|
12276
12746
|
id: string;
|
12277
12747
|
url: string;
|
@@ -12482,7 +12952,7 @@ export declare const viberContract: {
|
|
12482
12952
|
template?: any;
|
12483
12953
|
label?: string | undefined;
|
12484
12954
|
}, {
|
12485
|
-
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";
|
12955
|
+
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";
|
12486
12956
|
message: string;
|
12487
12957
|
id: string;
|
12488
12958
|
url: string;
|
@@ -12604,9 +13074,19 @@ export declare const viberContract: {
|
|
12604
13074
|
channelSecret?: string | undefined;
|
12605
13075
|
additionalCredentials?: any;
|
12606
13076
|
senderId?: string | undefined;
|
13077
|
+
whatsapp?: {
|
13078
|
+
email: string;
|
13079
|
+
wabaExternalId: string;
|
13080
|
+
phoneNumberId: string;
|
13081
|
+
wabaBusinessId?: string | undefined;
|
13082
|
+
clientId?: string | undefined;
|
13083
|
+
channelId?: string | undefined;
|
13084
|
+
status?: "active" | "pending" | undefined;
|
13085
|
+
apiKey?: string | undefined;
|
13086
|
+
} | undefined;
|
12607
13087
|
vonageCredentials?: {
|
12608
|
-
mobileNumber: string;
|
12609
13088
|
apiKey: string;
|
13089
|
+
mobileNumber: string;
|
12610
13090
|
apiSecret: string;
|
12611
13091
|
} | undefined;
|
12612
13092
|
lineRichMenuId?: string | null | undefined;
|
@@ -12998,7 +13478,7 @@ export declare const viberContract: {
|
|
12998
13478
|
previewUrl: string;
|
12999
13479
|
imageSetId: string;
|
13000
13480
|
repliedMessage: {
|
13001
|
-
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";
|
13481
|
+
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";
|
13002
13482
|
message: string;
|
13003
13483
|
id: string;
|
13004
13484
|
url: string;
|
@@ -13210,7 +13690,7 @@ export declare const viberContract: {
|
|
13210
13690
|
label?: string | undefined;
|
13211
13691
|
}>>>;
|
13212
13692
|
}, "strip", z.ZodTypeAny, {
|
13213
|
-
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";
|
13693
|
+
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";
|
13214
13694
|
message: string;
|
13215
13695
|
id: string;
|
13216
13696
|
url: string;
|
@@ -13332,9 +13812,19 @@ export declare const viberContract: {
|
|
13332
13812
|
channelSecret?: string | undefined;
|
13333
13813
|
additionalCredentials?: any;
|
13334
13814
|
senderId?: string | undefined;
|
13815
|
+
whatsapp?: {
|
13816
|
+
email: string;
|
13817
|
+
wabaExternalId: string;
|
13818
|
+
phoneNumberId: string;
|
13819
|
+
wabaBusinessId?: string | undefined;
|
13820
|
+
clientId?: string | undefined;
|
13821
|
+
channelId?: string | undefined;
|
13822
|
+
status?: "active" | "pending" | undefined;
|
13823
|
+
apiKey?: string | undefined;
|
13824
|
+
} | undefined;
|
13335
13825
|
vonageCredentials?: {
|
13336
|
-
mobileNumber: string;
|
13337
13826
|
apiKey: string;
|
13827
|
+
mobileNumber: string;
|
13338
13828
|
apiSecret: string;
|
13339
13829
|
} | undefined;
|
13340
13830
|
lineRichMenuId?: string | null | undefined;
|
@@ -13726,7 +14216,7 @@ export declare const viberContract: {
|
|
13726
14216
|
previewUrl: string;
|
13727
14217
|
imageSetId: string;
|
13728
14218
|
repliedMessage: {
|
13729
|
-
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";
|
14219
|
+
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";
|
13730
14220
|
message: string;
|
13731
14221
|
id: string;
|
13732
14222
|
url: string;
|
@@ -13937,7 +14427,7 @@ export declare const viberContract: {
|
|
13937
14427
|
template?: any;
|
13938
14428
|
metadata?: any;
|
13939
14429
|
fromMessage?: {
|
13940
|
-
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";
|
14430
|
+
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";
|
13941
14431
|
message: string;
|
13942
14432
|
id: string;
|
13943
14433
|
url: string;
|
@@ -14059,9 +14549,19 @@ export declare const viberContract: {
|
|
14059
14549
|
channelSecret?: string | undefined;
|
14060
14550
|
additionalCredentials?: any;
|
14061
14551
|
senderId?: string | undefined;
|
14552
|
+
whatsapp?: {
|
14553
|
+
email: string;
|
14554
|
+
wabaExternalId: string;
|
14555
|
+
phoneNumberId: string;
|
14556
|
+
wabaBusinessId?: string | undefined;
|
14557
|
+
clientId?: string | undefined;
|
14558
|
+
channelId?: string | undefined;
|
14559
|
+
status?: "active" | "pending" | undefined;
|
14560
|
+
apiKey?: string | undefined;
|
14561
|
+
} | undefined;
|
14062
14562
|
vonageCredentials?: {
|
14063
|
-
mobileNumber: string;
|
14064
14563
|
apiKey: string;
|
14564
|
+
mobileNumber: string;
|
14065
14565
|
apiSecret: string;
|
14066
14566
|
} | undefined;
|
14067
14567
|
lineRichMenuId?: string | null | undefined;
|
@@ -14453,7 +14953,7 @@ export declare const viberContract: {
|
|
14453
14953
|
previewUrl: string;
|
14454
14954
|
imageSetId: string;
|
14455
14955
|
repliedMessage: {
|
14456
|
-
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";
|
14956
|
+
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";
|
14457
14957
|
message: string;
|
14458
14958
|
id: string;
|
14459
14959
|
url: string;
|
@@ -14665,7 +15165,7 @@ export declare const viberContract: {
|
|
14665
15165
|
label?: string | undefined;
|
14666
15166
|
} | null | undefined;
|
14667
15167
|
}, {
|
14668
|
-
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";
|
15168
|
+
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";
|
14669
15169
|
message: string;
|
14670
15170
|
id: string;
|
14671
15171
|
url: string;
|
@@ -14787,9 +15287,19 @@ export declare const viberContract: {
|
|
14787
15287
|
channelSecret?: string | undefined;
|
14788
15288
|
additionalCredentials?: any;
|
14789
15289
|
senderId?: string | undefined;
|
15290
|
+
whatsapp?: {
|
15291
|
+
email: string;
|
15292
|
+
wabaExternalId: string;
|
15293
|
+
phoneNumberId: string;
|
15294
|
+
wabaBusinessId?: string | undefined;
|
15295
|
+
clientId?: string | undefined;
|
15296
|
+
channelId?: string | undefined;
|
15297
|
+
status?: "active" | "pending" | undefined;
|
15298
|
+
apiKey?: string | undefined;
|
15299
|
+
} | undefined;
|
14790
15300
|
vonageCredentials?: {
|
14791
|
-
mobileNumber: string;
|
14792
15301
|
apiKey: string;
|
15302
|
+
mobileNumber: string;
|
14793
15303
|
apiSecret: string;
|
14794
15304
|
} | undefined;
|
14795
15305
|
lineRichMenuId?: string | null | undefined;
|
@@ -15181,7 +15691,7 @@ export declare const viberContract: {
|
|
15181
15691
|
previewUrl: string;
|
15182
15692
|
imageSetId: string;
|
15183
15693
|
repliedMessage: {
|
15184
|
-
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";
|
15694
|
+
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";
|
15185
15695
|
message: string;
|
15186
15696
|
id: string;
|
15187
15697
|
url: string;
|
@@ -15392,7 +15902,7 @@ export declare const viberContract: {
|
|
15392
15902
|
template?: any;
|
15393
15903
|
metadata?: any;
|
15394
15904
|
fromMessage?: {
|
15395
|
-
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";
|
15905
|
+
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";
|
15396
15906
|
message: string;
|
15397
15907
|
id: string;
|
15398
15908
|
url: string;
|
@@ -15514,9 +16024,19 @@ export declare const viberContract: {
|
|
15514
16024
|
channelSecret?: string | undefined;
|
15515
16025
|
additionalCredentials?: any;
|
15516
16026
|
senderId?: string | undefined;
|
16027
|
+
whatsapp?: {
|
16028
|
+
email: string;
|
16029
|
+
wabaExternalId: string;
|
16030
|
+
phoneNumberId: string;
|
16031
|
+
wabaBusinessId?: string | undefined;
|
16032
|
+
clientId?: string | undefined;
|
16033
|
+
channelId?: string | undefined;
|
16034
|
+
status?: "active" | "pending" | undefined;
|
16035
|
+
apiKey?: string | undefined;
|
16036
|
+
} | undefined;
|
15517
16037
|
vonageCredentials?: {
|
15518
|
-
mobileNumber: string;
|
15519
16038
|
apiKey: string;
|
16039
|
+
mobileNumber: string;
|
15520
16040
|
apiSecret: string;
|
15521
16041
|
} | undefined;
|
15522
16042
|
lineRichMenuId?: string | null | undefined;
|
@@ -15908,7 +16428,7 @@ export declare const viberContract: {
|
|
15908
16428
|
previewUrl: string;
|
15909
16429
|
imageSetId: string;
|
15910
16430
|
repliedMessage: {
|
15911
|
-
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";
|
16431
|
+
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";
|
15912
16432
|
message: string;
|
15913
16433
|
id: string;
|
15914
16434
|
url: string;
|
@@ -16122,7 +16642,7 @@ export declare const viberContract: {
|
|
16122
16642
|
}>;
|
16123
16643
|
}, "strip", z.ZodTypeAny, {
|
16124
16644
|
data: {
|
16125
|
-
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";
|
16645
|
+
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";
|
16126
16646
|
message: string;
|
16127
16647
|
id: string;
|
16128
16648
|
url: string;
|
@@ -16244,9 +16764,19 @@ export declare const viberContract: {
|
|
16244
16764
|
channelSecret?: string | undefined;
|
16245
16765
|
additionalCredentials?: any;
|
16246
16766
|
senderId?: string | undefined;
|
16767
|
+
whatsapp?: {
|
16768
|
+
email: string;
|
16769
|
+
wabaExternalId: string;
|
16770
|
+
phoneNumberId: string;
|
16771
|
+
wabaBusinessId?: string | undefined;
|
16772
|
+
clientId?: string | undefined;
|
16773
|
+
channelId?: string | undefined;
|
16774
|
+
status?: "active" | "pending" | undefined;
|
16775
|
+
apiKey?: string | undefined;
|
16776
|
+
} | undefined;
|
16247
16777
|
vonageCredentials?: {
|
16248
|
-
mobileNumber: string;
|
16249
16778
|
apiKey: string;
|
16779
|
+
mobileNumber: string;
|
16250
16780
|
apiSecret: string;
|
16251
16781
|
} | undefined;
|
16252
16782
|
lineRichMenuId?: string | null | undefined;
|
@@ -16638,7 +17168,7 @@ export declare const viberContract: {
|
|
16638
17168
|
previewUrl: string;
|
16639
17169
|
imageSetId: string;
|
16640
17170
|
repliedMessage: {
|
16641
|
-
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";
|
17171
|
+
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";
|
16642
17172
|
message: string;
|
16643
17173
|
id: string;
|
16644
17174
|
url: string;
|
@@ -16849,7 +17379,7 @@ export declare const viberContract: {
|
|
16849
17379
|
template?: any;
|
16850
17380
|
metadata?: any;
|
16851
17381
|
fromMessage?: {
|
16852
|
-
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";
|
17382
|
+
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";
|
16853
17383
|
message: string;
|
16854
17384
|
id: string;
|
16855
17385
|
url: string;
|
@@ -16971,9 +17501,19 @@ export declare const viberContract: {
|
|
16971
17501
|
channelSecret?: string | undefined;
|
16972
17502
|
additionalCredentials?: any;
|
16973
17503
|
senderId?: string | undefined;
|
17504
|
+
whatsapp?: {
|
17505
|
+
email: string;
|
17506
|
+
wabaExternalId: string;
|
17507
|
+
phoneNumberId: string;
|
17508
|
+
wabaBusinessId?: string | undefined;
|
17509
|
+
clientId?: string | undefined;
|
17510
|
+
channelId?: string | undefined;
|
17511
|
+
status?: "active" | "pending" | undefined;
|
17512
|
+
apiKey?: string | undefined;
|
17513
|
+
} | undefined;
|
16974
17514
|
vonageCredentials?: {
|
16975
|
-
mobileNumber: string;
|
16976
17515
|
apiKey: string;
|
17516
|
+
mobileNumber: string;
|
16977
17517
|
apiSecret: string;
|
16978
17518
|
} | undefined;
|
16979
17519
|
lineRichMenuId?: string | null | undefined;
|
@@ -17365,7 +17905,7 @@ export declare const viberContract: {
|
|
17365
17905
|
previewUrl: string;
|
17366
17906
|
imageSetId: string;
|
17367
17907
|
repliedMessage: {
|
17368
|
-
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";
|
17908
|
+
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";
|
17369
17909
|
message: string;
|
17370
17910
|
id: string;
|
17371
17911
|
url: string;
|
@@ -17580,7 +18120,7 @@ export declare const viberContract: {
|
|
17580
18120
|
requestId: string;
|
17581
18121
|
}, {
|
17582
18122
|
data: {
|
17583
|
-
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";
|
18123
|
+
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";
|
17584
18124
|
message: string;
|
17585
18125
|
id: string;
|
17586
18126
|
url: string;
|
@@ -17702,9 +18242,19 @@ export declare const viberContract: {
|
|
17702
18242
|
channelSecret?: string | undefined;
|
17703
18243
|
additionalCredentials?: any;
|
17704
18244
|
senderId?: string | undefined;
|
18245
|
+
whatsapp?: {
|
18246
|
+
email: string;
|
18247
|
+
wabaExternalId: string;
|
18248
|
+
phoneNumberId: string;
|
18249
|
+
wabaBusinessId?: string | undefined;
|
18250
|
+
clientId?: string | undefined;
|
18251
|
+
channelId?: string | undefined;
|
18252
|
+
status?: "active" | "pending" | undefined;
|
18253
|
+
apiKey?: string | undefined;
|
18254
|
+
} | undefined;
|
17705
18255
|
vonageCredentials?: {
|
17706
|
-
mobileNumber: string;
|
17707
18256
|
apiKey: string;
|
18257
|
+
mobileNumber: string;
|
17708
18258
|
apiSecret: string;
|
17709
18259
|
} | undefined;
|
17710
18260
|
lineRichMenuId?: string | null | undefined;
|
@@ -18096,7 +18646,7 @@ export declare const viberContract: {
|
|
18096
18646
|
previewUrl: string;
|
18097
18647
|
imageSetId: string;
|
18098
18648
|
repliedMessage: {
|
18099
|
-
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";
|
18649
|
+
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";
|
18100
18650
|
message: string;
|
18101
18651
|
id: string;
|
18102
18652
|
url: string;
|
@@ -18307,7 +18857,7 @@ export declare const viberContract: {
|
|
18307
18857
|
template?: any;
|
18308
18858
|
metadata?: any;
|
18309
18859
|
fromMessage?: {
|
18310
|
-
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";
|
18860
|
+
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";
|
18311
18861
|
message: string;
|
18312
18862
|
id: string;
|
18313
18863
|
url: string;
|
@@ -18429,9 +18979,19 @@ export declare const viberContract: {
|
|
18429
18979
|
channelSecret?: string | undefined;
|
18430
18980
|
additionalCredentials?: any;
|
18431
18981
|
senderId?: string | undefined;
|
18982
|
+
whatsapp?: {
|
18983
|
+
email: string;
|
18984
|
+
wabaExternalId: string;
|
18985
|
+
phoneNumberId: string;
|
18986
|
+
wabaBusinessId?: string | undefined;
|
18987
|
+
clientId?: string | undefined;
|
18988
|
+
channelId?: string | undefined;
|
18989
|
+
status?: "active" | "pending" | undefined;
|
18990
|
+
apiKey?: string | undefined;
|
18991
|
+
} | undefined;
|
18432
18992
|
vonageCredentials?: {
|
18433
|
-
mobileNumber: string;
|
18434
18993
|
apiKey: string;
|
18994
|
+
mobileNumber: string;
|
18435
18995
|
apiSecret: string;
|
18436
18996
|
} | undefined;
|
18437
18997
|
lineRichMenuId?: string | null | undefined;
|
@@ -18823,7 +19383,7 @@ export declare const viberContract: {
|
|
18823
19383
|
previewUrl: string;
|
18824
19384
|
imageSetId: string;
|
18825
19385
|
repliedMessage: {
|
18826
|
-
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";
|
19386
|
+
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";
|
18827
19387
|
message: string;
|
18828
19388
|
id: string;
|
18829
19389
|
url: string;
|
@@ -19078,17 +19638,45 @@ export declare const viberContract: {
|
|
19078
19638
|
channelSecret: z.ZodOptional<z.ZodString>;
|
19079
19639
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
19080
19640
|
senderId: z.ZodOptional<z.ZodString>;
|
19641
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
19642
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
19643
|
+
wabaExternalId: z.ZodString;
|
19644
|
+
phoneNumberId: z.ZodString;
|
19645
|
+
email: z.ZodString;
|
19646
|
+
clientId: z.ZodOptional<z.ZodString>;
|
19647
|
+
channelId: z.ZodOptional<z.ZodString>;
|
19648
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
19649
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
19650
|
+
}, "strip", z.ZodTypeAny, {
|
19651
|
+
email: string;
|
19652
|
+
wabaExternalId: string;
|
19653
|
+
phoneNumberId: string;
|
19654
|
+
wabaBusinessId?: string | undefined;
|
19655
|
+
clientId?: string | undefined;
|
19656
|
+
channelId?: string | undefined;
|
19657
|
+
status?: "active" | "pending" | undefined;
|
19658
|
+
apiKey?: string | undefined;
|
19659
|
+
}, {
|
19660
|
+
email: string;
|
19661
|
+
wabaExternalId: string;
|
19662
|
+
phoneNumberId: string;
|
19663
|
+
wabaBusinessId?: string | undefined;
|
19664
|
+
clientId?: string | undefined;
|
19665
|
+
channelId?: string | undefined;
|
19666
|
+
status?: "active" | "pending" | undefined;
|
19667
|
+
apiKey?: string | undefined;
|
19668
|
+
}>>;
|
19081
19669
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
19082
19670
|
mobileNumber: z.ZodString;
|
19083
19671
|
apiKey: z.ZodString;
|
19084
19672
|
apiSecret: z.ZodString;
|
19085
19673
|
}, "strip", z.ZodTypeAny, {
|
19086
|
-
mobileNumber: string;
|
19087
19674
|
apiKey: string;
|
19675
|
+
mobileNumber: string;
|
19088
19676
|
apiSecret: string;
|
19089
19677
|
}, {
|
19090
|
-
mobileNumber: string;
|
19091
19678
|
apiKey: string;
|
19679
|
+
mobileNumber: string;
|
19092
19680
|
apiSecret: string;
|
19093
19681
|
}>>;
|
19094
19682
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -19100,9 +19688,19 @@ export declare const viberContract: {
|
|
19100
19688
|
channelSecret?: string | undefined;
|
19101
19689
|
additionalCredentials?: any;
|
19102
19690
|
senderId?: string | undefined;
|
19691
|
+
whatsapp?: {
|
19692
|
+
email: string;
|
19693
|
+
wabaExternalId: string;
|
19694
|
+
phoneNumberId: string;
|
19695
|
+
wabaBusinessId?: string | undefined;
|
19696
|
+
clientId?: string | undefined;
|
19697
|
+
channelId?: string | undefined;
|
19698
|
+
status?: "active" | "pending" | undefined;
|
19699
|
+
apiKey?: string | undefined;
|
19700
|
+
} | undefined;
|
19103
19701
|
vonageCredentials?: {
|
19104
|
-
mobileNumber: string;
|
19105
19702
|
apiKey: string;
|
19703
|
+
mobileNumber: string;
|
19106
19704
|
apiSecret: string;
|
19107
19705
|
} | undefined;
|
19108
19706
|
lineRichMenuId?: string | null | undefined;
|
@@ -19114,9 +19712,19 @@ export declare const viberContract: {
|
|
19114
19712
|
channelSecret?: string | undefined;
|
19115
19713
|
additionalCredentials?: any;
|
19116
19714
|
senderId?: string | undefined;
|
19715
|
+
whatsapp?: {
|
19716
|
+
email: string;
|
19717
|
+
wabaExternalId: string;
|
19718
|
+
phoneNumberId: string;
|
19719
|
+
wabaBusinessId?: string | undefined;
|
19720
|
+
clientId?: string | undefined;
|
19721
|
+
channelId?: string | undefined;
|
19722
|
+
status?: "active" | "pending" | undefined;
|
19723
|
+
apiKey?: string | undefined;
|
19724
|
+
} | undefined;
|
19117
19725
|
vonageCredentials?: {
|
19118
|
-
mobileNumber: string;
|
19119
19726
|
apiKey: string;
|
19727
|
+
mobileNumber: string;
|
19120
19728
|
apiSecret: string;
|
19121
19729
|
} | undefined;
|
19122
19730
|
lineRichMenuId?: string | null | undefined;
|
@@ -19362,9 +19970,19 @@ export declare const viberContract: {
|
|
19362
19970
|
channelSecret?: string | undefined;
|
19363
19971
|
additionalCredentials?: any;
|
19364
19972
|
senderId?: string | undefined;
|
19973
|
+
whatsapp?: {
|
19974
|
+
email: string;
|
19975
|
+
wabaExternalId: string;
|
19976
|
+
phoneNumberId: string;
|
19977
|
+
wabaBusinessId?: string | undefined;
|
19978
|
+
clientId?: string | undefined;
|
19979
|
+
channelId?: string | undefined;
|
19980
|
+
status?: "active" | "pending" | undefined;
|
19981
|
+
apiKey?: string | undefined;
|
19982
|
+
} | undefined;
|
19365
19983
|
vonageCredentials?: {
|
19366
|
-
mobileNumber: string;
|
19367
19984
|
apiKey: string;
|
19985
|
+
mobileNumber: string;
|
19368
19986
|
apiSecret: string;
|
19369
19987
|
} | undefined;
|
19370
19988
|
lineRichMenuId?: string | null | undefined;
|
@@ -19441,9 +20059,19 @@ export declare const viberContract: {
|
|
19441
20059
|
channelSecret?: string | undefined;
|
19442
20060
|
additionalCredentials?: any;
|
19443
20061
|
senderId?: string | undefined;
|
20062
|
+
whatsapp?: {
|
20063
|
+
email: string;
|
20064
|
+
wabaExternalId: string;
|
20065
|
+
phoneNumberId: string;
|
20066
|
+
wabaBusinessId?: string | undefined;
|
20067
|
+
clientId?: string | undefined;
|
20068
|
+
channelId?: string | undefined;
|
20069
|
+
status?: "active" | "pending" | undefined;
|
20070
|
+
apiKey?: string | undefined;
|
20071
|
+
} | undefined;
|
19444
20072
|
vonageCredentials?: {
|
19445
|
-
mobileNumber: string;
|
19446
20073
|
apiKey: string;
|
20074
|
+
mobileNumber: string;
|
19447
20075
|
apiSecret: string;
|
19448
20076
|
} | undefined;
|
19449
20077
|
lineRichMenuId?: string | null | undefined;
|
@@ -19522,9 +20150,19 @@ export declare const viberContract: {
|
|
19522
20150
|
channelSecret?: string | undefined;
|
19523
20151
|
additionalCredentials?: any;
|
19524
20152
|
senderId?: string | undefined;
|
20153
|
+
whatsapp?: {
|
20154
|
+
email: string;
|
20155
|
+
wabaExternalId: string;
|
20156
|
+
phoneNumberId: string;
|
20157
|
+
wabaBusinessId?: string | undefined;
|
20158
|
+
clientId?: string | undefined;
|
20159
|
+
channelId?: string | undefined;
|
20160
|
+
status?: "active" | "pending" | undefined;
|
20161
|
+
apiKey?: string | undefined;
|
20162
|
+
} | undefined;
|
19525
20163
|
vonageCredentials?: {
|
19526
|
-
mobileNumber: string;
|
19527
20164
|
apiKey: string;
|
20165
|
+
mobileNumber: string;
|
19528
20166
|
apiSecret: string;
|
19529
20167
|
} | undefined;
|
19530
20168
|
lineRichMenuId?: string | null | undefined;
|
@@ -19604,9 +20242,19 @@ export declare const viberContract: {
|
|
19604
20242
|
channelSecret?: string | undefined;
|
19605
20243
|
additionalCredentials?: any;
|
19606
20244
|
senderId?: string | undefined;
|
20245
|
+
whatsapp?: {
|
20246
|
+
email: string;
|
20247
|
+
wabaExternalId: string;
|
20248
|
+
phoneNumberId: string;
|
20249
|
+
wabaBusinessId?: string | undefined;
|
20250
|
+
clientId?: string | undefined;
|
20251
|
+
channelId?: string | undefined;
|
20252
|
+
status?: "active" | "pending" | undefined;
|
20253
|
+
apiKey?: string | undefined;
|
20254
|
+
} | undefined;
|
19607
20255
|
vonageCredentials?: {
|
19608
|
-
mobileNumber: string;
|
19609
20256
|
apiKey: string;
|
20257
|
+
mobileNumber: string;
|
19610
20258
|
apiSecret: string;
|
19611
20259
|
} | undefined;
|
19612
20260
|
lineRichMenuId?: string | null | undefined;
|
@@ -19722,17 +20370,45 @@ export declare const viberContract: {
|
|
19722
20370
|
channelSecret: z.ZodOptional<z.ZodString>;
|
19723
20371
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
19724
20372
|
senderId: z.ZodOptional<z.ZodString>;
|
20373
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
20374
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
20375
|
+
wabaExternalId: z.ZodString;
|
20376
|
+
phoneNumberId: z.ZodString;
|
20377
|
+
email: z.ZodString;
|
20378
|
+
clientId: z.ZodOptional<z.ZodString>;
|
20379
|
+
channelId: z.ZodOptional<z.ZodString>;
|
20380
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
20381
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
20382
|
+
}, "strip", z.ZodTypeAny, {
|
20383
|
+
email: string;
|
20384
|
+
wabaExternalId: string;
|
20385
|
+
phoneNumberId: string;
|
20386
|
+
wabaBusinessId?: string | undefined;
|
20387
|
+
clientId?: string | undefined;
|
20388
|
+
channelId?: string | undefined;
|
20389
|
+
status?: "active" | "pending" | undefined;
|
20390
|
+
apiKey?: string | undefined;
|
20391
|
+
}, {
|
20392
|
+
email: string;
|
20393
|
+
wabaExternalId: string;
|
20394
|
+
phoneNumberId: string;
|
20395
|
+
wabaBusinessId?: string | undefined;
|
20396
|
+
clientId?: string | undefined;
|
20397
|
+
channelId?: string | undefined;
|
20398
|
+
status?: "active" | "pending" | undefined;
|
20399
|
+
apiKey?: string | undefined;
|
20400
|
+
}>>;
|
19725
20401
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
19726
20402
|
mobileNumber: z.ZodString;
|
19727
20403
|
apiKey: z.ZodString;
|
19728
20404
|
apiSecret: z.ZodString;
|
19729
20405
|
}, "strip", z.ZodTypeAny, {
|
19730
|
-
mobileNumber: string;
|
19731
20406
|
apiKey: string;
|
20407
|
+
mobileNumber: string;
|
19732
20408
|
apiSecret: string;
|
19733
20409
|
}, {
|
19734
|
-
mobileNumber: string;
|
19735
20410
|
apiKey: string;
|
20411
|
+
mobileNumber: string;
|
19736
20412
|
apiSecret: string;
|
19737
20413
|
}>>;
|
19738
20414
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -19744,9 +20420,19 @@ export declare const viberContract: {
|
|
19744
20420
|
channelSecret?: string | undefined;
|
19745
20421
|
additionalCredentials?: any;
|
19746
20422
|
senderId?: string | undefined;
|
20423
|
+
whatsapp?: {
|
20424
|
+
email: string;
|
20425
|
+
wabaExternalId: string;
|
20426
|
+
phoneNumberId: string;
|
20427
|
+
wabaBusinessId?: string | undefined;
|
20428
|
+
clientId?: string | undefined;
|
20429
|
+
channelId?: string | undefined;
|
20430
|
+
status?: "active" | "pending" | undefined;
|
20431
|
+
apiKey?: string | undefined;
|
20432
|
+
} | undefined;
|
19747
20433
|
vonageCredentials?: {
|
19748
|
-
mobileNumber: string;
|
19749
20434
|
apiKey: string;
|
20435
|
+
mobileNumber: string;
|
19750
20436
|
apiSecret: string;
|
19751
20437
|
} | undefined;
|
19752
20438
|
lineRichMenuId?: string | null | undefined;
|
@@ -19758,9 +20444,19 @@ export declare const viberContract: {
|
|
19758
20444
|
channelSecret?: string | undefined;
|
19759
20445
|
additionalCredentials?: any;
|
19760
20446
|
senderId?: string | undefined;
|
20447
|
+
whatsapp?: {
|
20448
|
+
email: string;
|
20449
|
+
wabaExternalId: string;
|
20450
|
+
phoneNumberId: string;
|
20451
|
+
wabaBusinessId?: string | undefined;
|
20452
|
+
clientId?: string | undefined;
|
20453
|
+
channelId?: string | undefined;
|
20454
|
+
status?: "active" | "pending" | undefined;
|
20455
|
+
apiKey?: string | undefined;
|
20456
|
+
} | undefined;
|
19761
20457
|
vonageCredentials?: {
|
19762
|
-
mobileNumber: string;
|
19763
20458
|
apiKey: string;
|
20459
|
+
mobileNumber: string;
|
19764
20460
|
apiSecret: string;
|
19765
20461
|
} | undefined;
|
19766
20462
|
lineRichMenuId?: string | null | undefined;
|
@@ -19802,9 +20498,19 @@ export declare const viberContract: {
|
|
19802
20498
|
channelSecret?: string | undefined;
|
19803
20499
|
additionalCredentials?: any;
|
19804
20500
|
senderId?: string | undefined;
|
20501
|
+
whatsapp?: {
|
20502
|
+
email: string;
|
20503
|
+
wabaExternalId: string;
|
20504
|
+
phoneNumberId: string;
|
20505
|
+
wabaBusinessId?: string | undefined;
|
20506
|
+
clientId?: string | undefined;
|
20507
|
+
channelId?: string | undefined;
|
20508
|
+
status?: "active" | "pending" | undefined;
|
20509
|
+
apiKey?: string | undefined;
|
20510
|
+
} | undefined;
|
19805
20511
|
vonageCredentials?: {
|
19806
|
-
mobileNumber: string;
|
19807
20512
|
apiKey: string;
|
20513
|
+
mobileNumber: string;
|
19808
20514
|
apiSecret: string;
|
19809
20515
|
} | undefined;
|
19810
20516
|
lineRichMenuId?: string | null | undefined;
|
@@ -19834,9 +20540,19 @@ export declare const viberContract: {
|
|
19834
20540
|
channelSecret?: string | undefined;
|
19835
20541
|
additionalCredentials?: any;
|
19836
20542
|
senderId?: string | undefined;
|
20543
|
+
whatsapp?: {
|
20544
|
+
email: string;
|
20545
|
+
wabaExternalId: string;
|
20546
|
+
phoneNumberId: string;
|
20547
|
+
wabaBusinessId?: string | undefined;
|
20548
|
+
clientId?: string | undefined;
|
20549
|
+
channelId?: string | undefined;
|
20550
|
+
status?: "active" | "pending" | undefined;
|
20551
|
+
apiKey?: string | undefined;
|
20552
|
+
} | undefined;
|
19837
20553
|
vonageCredentials?: {
|
19838
|
-
mobileNumber: string;
|
19839
20554
|
apiKey: string;
|
20555
|
+
mobileNumber: string;
|
19840
20556
|
apiSecret: string;
|
19841
20557
|
} | undefined;
|
19842
20558
|
lineRichMenuId?: string | null | undefined;
|
@@ -19868,9 +20584,19 @@ export declare const viberContract: {
|
|
19868
20584
|
channelSecret?: string | undefined;
|
19869
20585
|
additionalCredentials?: any;
|
19870
20586
|
senderId?: string | undefined;
|
20587
|
+
whatsapp?: {
|
20588
|
+
email: string;
|
20589
|
+
wabaExternalId: string;
|
20590
|
+
phoneNumberId: string;
|
20591
|
+
wabaBusinessId?: string | undefined;
|
20592
|
+
clientId?: string | undefined;
|
20593
|
+
channelId?: string | undefined;
|
20594
|
+
status?: "active" | "pending" | undefined;
|
20595
|
+
apiKey?: string | undefined;
|
20596
|
+
} | undefined;
|
19871
20597
|
vonageCredentials?: {
|
19872
|
-
mobileNumber: string;
|
19873
20598
|
apiKey: string;
|
20599
|
+
mobileNumber: string;
|
19874
20600
|
apiSecret: string;
|
19875
20601
|
} | undefined;
|
19876
20602
|
lineRichMenuId?: string | null | undefined;
|
@@ -19903,9 +20629,19 @@ export declare const viberContract: {
|
|
19903
20629
|
channelSecret?: string | undefined;
|
19904
20630
|
additionalCredentials?: any;
|
19905
20631
|
senderId?: string | undefined;
|
20632
|
+
whatsapp?: {
|
20633
|
+
email: string;
|
20634
|
+
wabaExternalId: string;
|
20635
|
+
phoneNumberId: string;
|
20636
|
+
wabaBusinessId?: string | undefined;
|
20637
|
+
clientId?: string | undefined;
|
20638
|
+
channelId?: string | undefined;
|
20639
|
+
status?: "active" | "pending" | undefined;
|
20640
|
+
apiKey?: string | undefined;
|
20641
|
+
} | undefined;
|
19906
20642
|
vonageCredentials?: {
|
19907
|
-
mobileNumber: string;
|
19908
20643
|
apiKey: string;
|
20644
|
+
mobileNumber: string;
|
19909
20645
|
apiSecret: string;
|
19910
20646
|
} | undefined;
|
19911
20647
|
lineRichMenuId?: string | null | undefined;
|