@kl1/contracts 1.2.39-uat → 1.2.40-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/channel/index.d.ts +1253 -1074
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +84 -72
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +98 -84
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +1918 -1644
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +462 -396
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +679 -582
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +7294 -6252
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +91 -78
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +77 -66
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +938 -804
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +63 -54
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +49 -42
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +735 -630
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +651 -558
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +77 -66
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +735 -630
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +49 -42
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +140 -120
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +525 -450
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +525 -450
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +525 -450
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +623 -534
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +154 -132
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -66,35 +66,38 @@ export declare const viberContract: {
|
|
66
66
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
67
67
|
senderId: z.ZodOptional<z.ZodString>;
|
68
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
|
69
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
70
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
71
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
72
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
73
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
74
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
75
75
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
76
76
|
apiKey: z.ZodOptional<z.ZodString>;
|
77
77
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
78
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
78
79
|
}, "strip", z.ZodTypeAny, {
|
79
|
-
|
80
|
-
wabaExternalId
|
81
|
-
phoneNumberId
|
82
|
-
|
83
|
-
clientId?: string | undefined;
|
84
|
-
channelId?: string | undefined;
|
80
|
+
wabaBusinessId?: string | null | undefined;
|
81
|
+
wabaExternalId?: string | null | undefined;
|
82
|
+
phoneNumberId?: string | null | undefined;
|
83
|
+
email?: string | null | undefined;
|
84
|
+
clientId?: string | null | undefined;
|
85
|
+
channelId?: string | null | undefined;
|
85
86
|
status?: "active" | "pending" | undefined;
|
86
87
|
apiKey?: string | undefined;
|
87
88
|
tier?: "basic" | "regular" | "premium" | undefined;
|
89
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
88
90
|
}, {
|
89
|
-
|
90
|
-
wabaExternalId
|
91
|
-
phoneNumberId
|
92
|
-
|
93
|
-
clientId?: string | undefined;
|
94
|
-
channelId?: string | undefined;
|
91
|
+
wabaBusinessId?: string | null | undefined;
|
92
|
+
wabaExternalId?: string | null | undefined;
|
93
|
+
phoneNumberId?: string | null | undefined;
|
94
|
+
email?: string | null | undefined;
|
95
|
+
clientId?: string | null | undefined;
|
96
|
+
channelId?: string | null | undefined;
|
95
97
|
status?: "active" | "pending" | undefined;
|
96
98
|
apiKey?: string | undefined;
|
97
99
|
tier?: "basic" | "regular" | "premium" | undefined;
|
100
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
98
101
|
}>>;
|
99
102
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
100
103
|
mobileNumber: z.ZodString;
|
@@ -119,15 +122,16 @@ export declare const viberContract: {
|
|
119
122
|
additionalCredentials?: any;
|
120
123
|
senderId?: string | undefined;
|
121
124
|
whatsapp?: {
|
122
|
-
|
123
|
-
wabaExternalId
|
124
|
-
phoneNumberId
|
125
|
-
|
126
|
-
clientId?: string | undefined;
|
127
|
-
channelId?: string | undefined;
|
125
|
+
wabaBusinessId?: string | null | undefined;
|
126
|
+
wabaExternalId?: string | null | undefined;
|
127
|
+
phoneNumberId?: string | null | undefined;
|
128
|
+
email?: string | null | undefined;
|
129
|
+
clientId?: string | null | undefined;
|
130
|
+
channelId?: string | null | undefined;
|
128
131
|
status?: "active" | "pending" | undefined;
|
129
132
|
apiKey?: string | undefined;
|
130
133
|
tier?: "basic" | "regular" | "premium" | undefined;
|
134
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
131
135
|
} | undefined;
|
132
136
|
vonageCredentials?: {
|
133
137
|
apiKey: string;
|
@@ -144,15 +148,16 @@ export declare const viberContract: {
|
|
144
148
|
additionalCredentials?: any;
|
145
149
|
senderId?: string | undefined;
|
146
150
|
whatsapp?: {
|
147
|
-
|
148
|
-
wabaExternalId
|
149
|
-
phoneNumberId
|
150
|
-
|
151
|
-
clientId?: string | undefined;
|
152
|
-
channelId?: string | undefined;
|
151
|
+
wabaBusinessId?: string | null | undefined;
|
152
|
+
wabaExternalId?: string | null | undefined;
|
153
|
+
phoneNumberId?: string | null | undefined;
|
154
|
+
email?: string | null | undefined;
|
155
|
+
clientId?: string | null | undefined;
|
156
|
+
channelId?: string | null | undefined;
|
153
157
|
status?: "active" | "pending" | undefined;
|
154
158
|
apiKey?: string | undefined;
|
155
159
|
tier?: "basic" | "regular" | "premium" | undefined;
|
160
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
156
161
|
} | undefined;
|
157
162
|
vonageCredentials?: {
|
158
163
|
apiKey: string;
|
@@ -403,15 +408,16 @@ export declare const viberContract: {
|
|
403
408
|
additionalCredentials?: any;
|
404
409
|
senderId?: string | undefined;
|
405
410
|
whatsapp?: {
|
406
|
-
|
407
|
-
wabaExternalId
|
408
|
-
phoneNumberId
|
409
|
-
|
410
|
-
clientId?: string | undefined;
|
411
|
-
channelId?: string | undefined;
|
411
|
+
wabaBusinessId?: string | null | undefined;
|
412
|
+
wabaExternalId?: string | null | undefined;
|
413
|
+
phoneNumberId?: string | null | undefined;
|
414
|
+
email?: string | null | undefined;
|
415
|
+
clientId?: string | null | undefined;
|
416
|
+
channelId?: string | null | undefined;
|
412
417
|
status?: "active" | "pending" | undefined;
|
413
418
|
apiKey?: string | undefined;
|
414
419
|
tier?: "basic" | "regular" | "premium" | undefined;
|
420
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
415
421
|
} | undefined;
|
416
422
|
vonageCredentials?: {
|
417
423
|
apiKey: string;
|
@@ -493,15 +499,16 @@ export declare const viberContract: {
|
|
493
499
|
additionalCredentials?: any;
|
494
500
|
senderId?: string | undefined;
|
495
501
|
whatsapp?: {
|
496
|
-
|
497
|
-
wabaExternalId
|
498
|
-
phoneNumberId
|
499
|
-
|
500
|
-
clientId?: string | undefined;
|
501
|
-
channelId?: string | undefined;
|
502
|
+
wabaBusinessId?: string | null | undefined;
|
503
|
+
wabaExternalId?: string | null | undefined;
|
504
|
+
phoneNumberId?: string | null | undefined;
|
505
|
+
email?: string | null | undefined;
|
506
|
+
clientId?: string | null | undefined;
|
507
|
+
channelId?: string | null | undefined;
|
502
508
|
status?: "active" | "pending" | undefined;
|
503
509
|
apiKey?: string | undefined;
|
504
510
|
tier?: "basic" | "regular" | "premium" | undefined;
|
511
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
505
512
|
} | undefined;
|
506
513
|
vonageCredentials?: {
|
507
514
|
apiKey: string;
|
@@ -585,15 +592,16 @@ export declare const viberContract: {
|
|
585
592
|
additionalCredentials?: any;
|
586
593
|
senderId?: string | undefined;
|
587
594
|
whatsapp?: {
|
588
|
-
|
589
|
-
wabaExternalId
|
590
|
-
phoneNumberId
|
591
|
-
|
592
|
-
clientId?: string | undefined;
|
593
|
-
channelId?: string | undefined;
|
595
|
+
wabaBusinessId?: string | null | undefined;
|
596
|
+
wabaExternalId?: string | null | undefined;
|
597
|
+
phoneNumberId?: string | null | undefined;
|
598
|
+
email?: string | null | undefined;
|
599
|
+
clientId?: string | null | undefined;
|
600
|
+
channelId?: string | null | undefined;
|
594
601
|
status?: "active" | "pending" | undefined;
|
595
602
|
apiKey?: string | undefined;
|
596
603
|
tier?: "basic" | "regular" | "premium" | undefined;
|
604
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
597
605
|
} | undefined;
|
598
606
|
vonageCredentials?: {
|
599
607
|
apiKey: string;
|
@@ -678,15 +686,16 @@ export declare const viberContract: {
|
|
678
686
|
additionalCredentials?: any;
|
679
687
|
senderId?: string | undefined;
|
680
688
|
whatsapp?: {
|
681
|
-
|
682
|
-
wabaExternalId
|
683
|
-
phoneNumberId
|
684
|
-
|
685
|
-
clientId?: string | undefined;
|
686
|
-
channelId?: string | undefined;
|
689
|
+
wabaBusinessId?: string | null | undefined;
|
690
|
+
wabaExternalId?: string | null | undefined;
|
691
|
+
phoneNumberId?: string | null | undefined;
|
692
|
+
email?: string | null | undefined;
|
693
|
+
clientId?: string | null | undefined;
|
694
|
+
channelId?: string | null | undefined;
|
687
695
|
status?: "active" | "pending" | undefined;
|
688
696
|
apiKey?: string | undefined;
|
689
697
|
tier?: "basic" | "regular" | "premium" | undefined;
|
698
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
690
699
|
} | undefined;
|
691
700
|
vonageCredentials?: {
|
692
701
|
apiKey: string;
|
@@ -810,35 +819,38 @@ export declare const viberContract: {
|
|
810
819
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
811
820
|
senderId: z.ZodOptional<z.ZodString>;
|
812
821
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
813
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
814
|
-
wabaExternalId: z.ZodString
|
815
|
-
phoneNumberId: z.ZodString
|
816
|
-
email: z.ZodString
|
817
|
-
clientId: z.ZodOptional<z.ZodString
|
818
|
-
channelId: z.ZodOptional<z.ZodString
|
822
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
823
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
824
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
825
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
826
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
827
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
819
828
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
820
829
|
apiKey: z.ZodOptional<z.ZodString>;
|
821
830
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
831
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
822
832
|
}, "strip", z.ZodTypeAny, {
|
823
|
-
|
824
|
-
wabaExternalId
|
825
|
-
phoneNumberId
|
826
|
-
|
827
|
-
clientId?: string | undefined;
|
828
|
-
channelId?: string | undefined;
|
833
|
+
wabaBusinessId?: string | null | undefined;
|
834
|
+
wabaExternalId?: string | null | undefined;
|
835
|
+
phoneNumberId?: string | null | undefined;
|
836
|
+
email?: string | null | undefined;
|
837
|
+
clientId?: string | null | undefined;
|
838
|
+
channelId?: string | null | undefined;
|
829
839
|
status?: "active" | "pending" | undefined;
|
830
840
|
apiKey?: string | undefined;
|
831
841
|
tier?: "basic" | "regular" | "premium" | undefined;
|
842
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
832
843
|
}, {
|
833
|
-
|
834
|
-
wabaExternalId
|
835
|
-
phoneNumberId
|
836
|
-
|
837
|
-
clientId?: string | undefined;
|
838
|
-
channelId?: string | undefined;
|
844
|
+
wabaBusinessId?: string | null | undefined;
|
845
|
+
wabaExternalId?: string | null | undefined;
|
846
|
+
phoneNumberId?: string | null | undefined;
|
847
|
+
email?: string | null | undefined;
|
848
|
+
clientId?: string | null | undefined;
|
849
|
+
channelId?: string | null | undefined;
|
839
850
|
status?: "active" | "pending" | undefined;
|
840
851
|
apiKey?: string | undefined;
|
841
852
|
tier?: "basic" | "regular" | "premium" | undefined;
|
853
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
842
854
|
}>>;
|
843
855
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
844
856
|
mobileNumber: z.ZodString;
|
@@ -863,15 +875,16 @@ export declare const viberContract: {
|
|
863
875
|
additionalCredentials?: any;
|
864
876
|
senderId?: string | undefined;
|
865
877
|
whatsapp?: {
|
866
|
-
|
867
|
-
wabaExternalId
|
868
|
-
phoneNumberId
|
869
|
-
|
870
|
-
clientId?: string | undefined;
|
871
|
-
channelId?: string | undefined;
|
878
|
+
wabaBusinessId?: string | null | undefined;
|
879
|
+
wabaExternalId?: string | null | undefined;
|
880
|
+
phoneNumberId?: string | null | undefined;
|
881
|
+
email?: string | null | undefined;
|
882
|
+
clientId?: string | null | undefined;
|
883
|
+
channelId?: string | null | undefined;
|
872
884
|
status?: "active" | "pending" | undefined;
|
873
885
|
apiKey?: string | undefined;
|
874
886
|
tier?: "basic" | "regular" | "premium" | undefined;
|
887
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
875
888
|
} | undefined;
|
876
889
|
vonageCredentials?: {
|
877
890
|
apiKey: string;
|
@@ -888,15 +901,16 @@ export declare const viberContract: {
|
|
888
901
|
additionalCredentials?: any;
|
889
902
|
senderId?: string | undefined;
|
890
903
|
whatsapp?: {
|
891
|
-
|
892
|
-
wabaExternalId
|
893
|
-
phoneNumberId
|
894
|
-
|
895
|
-
clientId?: string | undefined;
|
896
|
-
channelId?: string | undefined;
|
904
|
+
wabaBusinessId?: string | null | undefined;
|
905
|
+
wabaExternalId?: string | null | undefined;
|
906
|
+
phoneNumberId?: string | null | undefined;
|
907
|
+
email?: string | null | undefined;
|
908
|
+
clientId?: string | null | undefined;
|
909
|
+
channelId?: string | null | undefined;
|
897
910
|
status?: "active" | "pending" | undefined;
|
898
911
|
apiKey?: string | undefined;
|
899
912
|
tier?: "basic" | "regular" | "premium" | undefined;
|
913
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
900
914
|
} | undefined;
|
901
915
|
vonageCredentials?: {
|
902
916
|
apiKey: string;
|
@@ -1147,15 +1161,16 @@ export declare const viberContract: {
|
|
1147
1161
|
additionalCredentials?: any;
|
1148
1162
|
senderId?: string | undefined;
|
1149
1163
|
whatsapp?: {
|
1150
|
-
|
1151
|
-
wabaExternalId
|
1152
|
-
phoneNumberId
|
1153
|
-
|
1154
|
-
clientId?: string | undefined;
|
1155
|
-
channelId?: string | undefined;
|
1164
|
+
wabaBusinessId?: string | null | undefined;
|
1165
|
+
wabaExternalId?: string | null | undefined;
|
1166
|
+
phoneNumberId?: string | null | undefined;
|
1167
|
+
email?: string | null | undefined;
|
1168
|
+
clientId?: string | null | undefined;
|
1169
|
+
channelId?: string | null | undefined;
|
1156
1170
|
status?: "active" | "pending" | undefined;
|
1157
1171
|
apiKey?: string | undefined;
|
1158
1172
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1173
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1159
1174
|
} | undefined;
|
1160
1175
|
vonageCredentials?: {
|
1161
1176
|
apiKey: string;
|
@@ -1237,15 +1252,16 @@ export declare const viberContract: {
|
|
1237
1252
|
additionalCredentials?: any;
|
1238
1253
|
senderId?: string | undefined;
|
1239
1254
|
whatsapp?: {
|
1240
|
-
|
1241
|
-
wabaExternalId
|
1242
|
-
phoneNumberId
|
1243
|
-
|
1244
|
-
clientId?: string | undefined;
|
1245
|
-
channelId?: string | undefined;
|
1255
|
+
wabaBusinessId?: string | null | undefined;
|
1256
|
+
wabaExternalId?: string | null | undefined;
|
1257
|
+
phoneNumberId?: string | null | undefined;
|
1258
|
+
email?: string | null | undefined;
|
1259
|
+
clientId?: string | null | undefined;
|
1260
|
+
channelId?: string | null | undefined;
|
1246
1261
|
status?: "active" | "pending" | undefined;
|
1247
1262
|
apiKey?: string | undefined;
|
1248
1263
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1264
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1249
1265
|
} | undefined;
|
1250
1266
|
vonageCredentials?: {
|
1251
1267
|
apiKey: string;
|
@@ -1329,15 +1345,16 @@ export declare const viberContract: {
|
|
1329
1345
|
additionalCredentials?: any;
|
1330
1346
|
senderId?: string | undefined;
|
1331
1347
|
whatsapp?: {
|
1332
|
-
|
1333
|
-
wabaExternalId
|
1334
|
-
phoneNumberId
|
1335
|
-
|
1336
|
-
clientId?: string | undefined;
|
1337
|
-
channelId?: string | undefined;
|
1348
|
+
wabaBusinessId?: string | null | undefined;
|
1349
|
+
wabaExternalId?: string | null | undefined;
|
1350
|
+
phoneNumberId?: string | null | undefined;
|
1351
|
+
email?: string | null | undefined;
|
1352
|
+
clientId?: string | null | undefined;
|
1353
|
+
channelId?: string | null | undefined;
|
1338
1354
|
status?: "active" | "pending" | undefined;
|
1339
1355
|
apiKey?: string | undefined;
|
1340
1356
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1357
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1341
1358
|
} | undefined;
|
1342
1359
|
vonageCredentials?: {
|
1343
1360
|
apiKey: string;
|
@@ -1422,15 +1439,16 @@ export declare const viberContract: {
|
|
1422
1439
|
additionalCredentials?: any;
|
1423
1440
|
senderId?: string | undefined;
|
1424
1441
|
whatsapp?: {
|
1425
|
-
|
1426
|
-
wabaExternalId
|
1427
|
-
phoneNumberId
|
1428
|
-
|
1429
|
-
clientId?: string | undefined;
|
1430
|
-
channelId?: string | undefined;
|
1442
|
+
wabaBusinessId?: string | null | undefined;
|
1443
|
+
wabaExternalId?: string | null | undefined;
|
1444
|
+
phoneNumberId?: string | null | undefined;
|
1445
|
+
email?: string | null | undefined;
|
1446
|
+
clientId?: string | null | undefined;
|
1447
|
+
channelId?: string | null | undefined;
|
1431
1448
|
status?: "active" | "pending" | undefined;
|
1432
1449
|
apiKey?: string | undefined;
|
1433
1450
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1451
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1434
1452
|
} | undefined;
|
1435
1453
|
vonageCredentials?: {
|
1436
1454
|
apiKey: string;
|
@@ -1654,35 +1672,38 @@ export declare const viberContract: {
|
|
1654
1672
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
1655
1673
|
senderId: z.ZodOptional<z.ZodString>;
|
1656
1674
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
1657
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
1658
|
-
wabaExternalId: z.ZodString
|
1659
|
-
phoneNumberId: z.ZodString
|
1660
|
-
email: z.ZodString
|
1661
|
-
clientId: z.ZodOptional<z.ZodString
|
1662
|
-
channelId: z.ZodOptional<z.ZodString
|
1675
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1676
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1677
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1678
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1679
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1680
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1663
1681
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
1664
1682
|
apiKey: z.ZodOptional<z.ZodString>;
|
1665
1683
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
1684
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
1666
1685
|
}, "strip", z.ZodTypeAny, {
|
1667
|
-
|
1668
|
-
wabaExternalId
|
1669
|
-
phoneNumberId
|
1670
|
-
|
1671
|
-
clientId?: string | undefined;
|
1672
|
-
channelId?: string | undefined;
|
1686
|
+
wabaBusinessId?: string | null | undefined;
|
1687
|
+
wabaExternalId?: string | null | undefined;
|
1688
|
+
phoneNumberId?: string | null | undefined;
|
1689
|
+
email?: string | null | undefined;
|
1690
|
+
clientId?: string | null | undefined;
|
1691
|
+
channelId?: string | null | undefined;
|
1673
1692
|
status?: "active" | "pending" | undefined;
|
1674
1693
|
apiKey?: string | undefined;
|
1675
1694
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1695
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1676
1696
|
}, {
|
1677
|
-
|
1678
|
-
wabaExternalId
|
1679
|
-
phoneNumberId
|
1680
|
-
|
1681
|
-
clientId?: string | undefined;
|
1682
|
-
channelId?: string | undefined;
|
1697
|
+
wabaBusinessId?: string | null | undefined;
|
1698
|
+
wabaExternalId?: string | null | undefined;
|
1699
|
+
phoneNumberId?: string | null | undefined;
|
1700
|
+
email?: string | null | undefined;
|
1701
|
+
clientId?: string | null | undefined;
|
1702
|
+
channelId?: string | null | undefined;
|
1683
1703
|
status?: "active" | "pending" | undefined;
|
1684
1704
|
apiKey?: string | undefined;
|
1685
1705
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1706
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1686
1707
|
}>>;
|
1687
1708
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
1688
1709
|
mobileNumber: z.ZodString;
|
@@ -1707,15 +1728,16 @@ export declare const viberContract: {
|
|
1707
1728
|
additionalCredentials?: any;
|
1708
1729
|
senderId?: string | undefined;
|
1709
1730
|
whatsapp?: {
|
1710
|
-
|
1711
|
-
wabaExternalId
|
1712
|
-
phoneNumberId
|
1713
|
-
|
1714
|
-
clientId?: string | undefined;
|
1715
|
-
channelId?: string | undefined;
|
1731
|
+
wabaBusinessId?: string | null | undefined;
|
1732
|
+
wabaExternalId?: string | null | undefined;
|
1733
|
+
phoneNumberId?: string | null | undefined;
|
1734
|
+
email?: string | null | undefined;
|
1735
|
+
clientId?: string | null | undefined;
|
1736
|
+
channelId?: string | null | undefined;
|
1716
1737
|
status?: "active" | "pending" | undefined;
|
1717
1738
|
apiKey?: string | undefined;
|
1718
1739
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1740
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1719
1741
|
} | undefined;
|
1720
1742
|
vonageCredentials?: {
|
1721
1743
|
apiKey: string;
|
@@ -1732,15 +1754,16 @@ export declare const viberContract: {
|
|
1732
1754
|
additionalCredentials?: any;
|
1733
1755
|
senderId?: string | undefined;
|
1734
1756
|
whatsapp?: {
|
1735
|
-
|
1736
|
-
wabaExternalId
|
1737
|
-
phoneNumberId
|
1738
|
-
|
1739
|
-
clientId?: string | undefined;
|
1740
|
-
channelId?: string | undefined;
|
1757
|
+
wabaBusinessId?: string | null | undefined;
|
1758
|
+
wabaExternalId?: string | null | undefined;
|
1759
|
+
phoneNumberId?: string | null | undefined;
|
1760
|
+
email?: string | null | undefined;
|
1761
|
+
clientId?: string | null | undefined;
|
1762
|
+
channelId?: string | null | undefined;
|
1741
1763
|
status?: "active" | "pending" | undefined;
|
1742
1764
|
apiKey?: string | undefined;
|
1743
1765
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1766
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1744
1767
|
} | undefined;
|
1745
1768
|
vonageCredentials?: {
|
1746
1769
|
apiKey: string;
|
@@ -1787,15 +1810,16 @@ export declare const viberContract: {
|
|
1787
1810
|
additionalCredentials?: any;
|
1788
1811
|
senderId?: string | undefined;
|
1789
1812
|
whatsapp?: {
|
1790
|
-
|
1791
|
-
wabaExternalId
|
1792
|
-
phoneNumberId
|
1793
|
-
|
1794
|
-
clientId?: string | undefined;
|
1795
|
-
channelId?: string | undefined;
|
1813
|
+
wabaBusinessId?: string | null | undefined;
|
1814
|
+
wabaExternalId?: string | null | undefined;
|
1815
|
+
phoneNumberId?: string | null | undefined;
|
1816
|
+
email?: string | null | undefined;
|
1817
|
+
clientId?: string | null | undefined;
|
1818
|
+
channelId?: string | null | undefined;
|
1796
1819
|
status?: "active" | "pending" | undefined;
|
1797
1820
|
apiKey?: string | undefined;
|
1798
1821
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1822
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1799
1823
|
} | undefined;
|
1800
1824
|
vonageCredentials?: {
|
1801
1825
|
apiKey: string;
|
@@ -1830,15 +1854,16 @@ export declare const viberContract: {
|
|
1830
1854
|
additionalCredentials?: any;
|
1831
1855
|
senderId?: string | undefined;
|
1832
1856
|
whatsapp?: {
|
1833
|
-
|
1834
|
-
wabaExternalId
|
1835
|
-
phoneNumberId
|
1836
|
-
|
1837
|
-
clientId?: string | undefined;
|
1838
|
-
channelId?: string | undefined;
|
1857
|
+
wabaBusinessId?: string | null | undefined;
|
1858
|
+
wabaExternalId?: string | null | undefined;
|
1859
|
+
phoneNumberId?: string | null | undefined;
|
1860
|
+
email?: string | null | undefined;
|
1861
|
+
clientId?: string | null | undefined;
|
1862
|
+
channelId?: string | null | undefined;
|
1839
1863
|
status?: "active" | "pending" | undefined;
|
1840
1864
|
apiKey?: string | undefined;
|
1841
1865
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1866
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1842
1867
|
} | undefined;
|
1843
1868
|
vonageCredentials?: {
|
1844
1869
|
apiKey: string;
|
@@ -1878,15 +1903,16 @@ export declare const viberContract: {
|
|
1878
1903
|
additionalCredentials?: any;
|
1879
1904
|
senderId?: string | undefined;
|
1880
1905
|
whatsapp?: {
|
1881
|
-
|
1882
|
-
wabaExternalId
|
1883
|
-
phoneNumberId
|
1884
|
-
|
1885
|
-
clientId?: string | undefined;
|
1886
|
-
channelId?: string | undefined;
|
1906
|
+
wabaBusinessId?: string | null | undefined;
|
1907
|
+
wabaExternalId?: string | null | undefined;
|
1908
|
+
phoneNumberId?: string | null | undefined;
|
1909
|
+
email?: string | null | undefined;
|
1910
|
+
clientId?: string | null | undefined;
|
1911
|
+
channelId?: string | null | undefined;
|
1887
1912
|
status?: "active" | "pending" | undefined;
|
1888
1913
|
apiKey?: string | undefined;
|
1889
1914
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1915
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1890
1916
|
} | undefined;
|
1891
1917
|
vonageCredentials?: {
|
1892
1918
|
apiKey: string;
|
@@ -1965,15 +1991,16 @@ export declare const viberContract: {
|
|
1965
1991
|
additionalCredentials?: any;
|
1966
1992
|
senderId?: string | undefined;
|
1967
1993
|
whatsapp?: {
|
1968
|
-
|
1969
|
-
wabaExternalId
|
1970
|
-
phoneNumberId
|
1971
|
-
|
1972
|
-
clientId?: string | undefined;
|
1973
|
-
channelId?: string | undefined;
|
1994
|
+
wabaBusinessId?: string | null | undefined;
|
1995
|
+
wabaExternalId?: string | null | undefined;
|
1996
|
+
phoneNumberId?: string | null | undefined;
|
1997
|
+
email?: string | null | undefined;
|
1998
|
+
clientId?: string | null | undefined;
|
1999
|
+
channelId?: string | null | undefined;
|
1974
2000
|
status?: "active" | "pending" | undefined;
|
1975
2001
|
apiKey?: string | undefined;
|
1976
2002
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2003
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1977
2004
|
} | undefined;
|
1978
2005
|
vonageCredentials?: {
|
1979
2006
|
apiKey: string;
|
@@ -2220,15 +2247,16 @@ export declare const viberContract: {
|
|
2220
2247
|
additionalCredentials?: any;
|
2221
2248
|
senderId?: string | undefined;
|
2222
2249
|
whatsapp?: {
|
2223
|
-
|
2224
|
-
wabaExternalId
|
2225
|
-
phoneNumberId
|
2226
|
-
|
2227
|
-
clientId?: string | undefined;
|
2228
|
-
channelId?: string | undefined;
|
2250
|
+
wabaBusinessId?: string | null | undefined;
|
2251
|
+
wabaExternalId?: string | null | undefined;
|
2252
|
+
phoneNumberId?: string | null | undefined;
|
2253
|
+
email?: string | null | undefined;
|
2254
|
+
clientId?: string | null | undefined;
|
2255
|
+
channelId?: string | null | undefined;
|
2229
2256
|
status?: "active" | "pending" | undefined;
|
2230
2257
|
apiKey?: string | undefined;
|
2231
2258
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2259
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2232
2260
|
} | undefined;
|
2233
2261
|
vonageCredentials?: {
|
2234
2262
|
apiKey: string;
|
@@ -2346,15 +2374,16 @@ export declare const viberContract: {
|
|
2346
2374
|
additionalCredentials?: any;
|
2347
2375
|
senderId?: string | undefined;
|
2348
2376
|
whatsapp?: {
|
2349
|
-
|
2350
|
-
wabaExternalId
|
2351
|
-
phoneNumberId
|
2352
|
-
|
2353
|
-
clientId?: string | undefined;
|
2354
|
-
channelId?: string | undefined;
|
2377
|
+
wabaBusinessId?: string | null | undefined;
|
2378
|
+
wabaExternalId?: string | null | undefined;
|
2379
|
+
phoneNumberId?: string | null | undefined;
|
2380
|
+
email?: string | null | undefined;
|
2381
|
+
clientId?: string | null | undefined;
|
2382
|
+
channelId?: string | null | undefined;
|
2355
2383
|
status?: "active" | "pending" | undefined;
|
2356
2384
|
apiKey?: string | undefined;
|
2357
2385
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2386
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2358
2387
|
} | undefined;
|
2359
2388
|
vonageCredentials?: {
|
2360
2389
|
apiKey: string;
|
@@ -4367,35 +4396,38 @@ export declare const viberContract: {
|
|
4367
4396
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
4368
4397
|
senderId: z.ZodOptional<z.ZodString>;
|
4369
4398
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
4370
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
4371
|
-
wabaExternalId: z.ZodString
|
4372
|
-
phoneNumberId: z.ZodString
|
4373
|
-
email: z.ZodString
|
4374
|
-
clientId: z.ZodOptional<z.ZodString
|
4375
|
-
channelId: z.ZodOptional<z.ZodString
|
4399
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
4400
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
4401
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
4402
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
4403
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
4404
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
4376
4405
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
4377
4406
|
apiKey: z.ZodOptional<z.ZodString>;
|
4378
4407
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
4408
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
4379
4409
|
}, "strip", z.ZodTypeAny, {
|
4380
|
-
|
4381
|
-
wabaExternalId
|
4382
|
-
phoneNumberId
|
4383
|
-
|
4384
|
-
clientId?: string | undefined;
|
4385
|
-
channelId?: string | undefined;
|
4410
|
+
wabaBusinessId?: string | null | undefined;
|
4411
|
+
wabaExternalId?: string | null | undefined;
|
4412
|
+
phoneNumberId?: string | null | undefined;
|
4413
|
+
email?: string | null | undefined;
|
4414
|
+
clientId?: string | null | undefined;
|
4415
|
+
channelId?: string | null | undefined;
|
4386
4416
|
status?: "active" | "pending" | undefined;
|
4387
4417
|
apiKey?: string | undefined;
|
4388
4418
|
tier?: "basic" | "regular" | "premium" | undefined;
|
4419
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
4389
4420
|
}, {
|
4390
|
-
|
4391
|
-
wabaExternalId
|
4392
|
-
phoneNumberId
|
4393
|
-
|
4394
|
-
clientId?: string | undefined;
|
4395
|
-
channelId?: string | undefined;
|
4421
|
+
wabaBusinessId?: string | null | undefined;
|
4422
|
+
wabaExternalId?: string | null | undefined;
|
4423
|
+
phoneNumberId?: string | null | undefined;
|
4424
|
+
email?: string | null | undefined;
|
4425
|
+
clientId?: string | null | undefined;
|
4426
|
+
channelId?: string | null | undefined;
|
4396
4427
|
status?: "active" | "pending" | undefined;
|
4397
4428
|
apiKey?: string | undefined;
|
4398
4429
|
tier?: "basic" | "regular" | "premium" | undefined;
|
4430
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
4399
4431
|
}>>;
|
4400
4432
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
4401
4433
|
mobileNumber: z.ZodString;
|
@@ -4420,15 +4452,16 @@ export declare const viberContract: {
|
|
4420
4452
|
additionalCredentials?: any;
|
4421
4453
|
senderId?: string | undefined;
|
4422
4454
|
whatsapp?: {
|
4423
|
-
|
4424
|
-
wabaExternalId
|
4425
|
-
phoneNumberId
|
4426
|
-
|
4427
|
-
clientId?: string | undefined;
|
4428
|
-
channelId?: string | undefined;
|
4455
|
+
wabaBusinessId?: string | null | undefined;
|
4456
|
+
wabaExternalId?: string | null | undefined;
|
4457
|
+
phoneNumberId?: string | null | undefined;
|
4458
|
+
email?: string | null | undefined;
|
4459
|
+
clientId?: string | null | undefined;
|
4460
|
+
channelId?: string | null | undefined;
|
4429
4461
|
status?: "active" | "pending" | undefined;
|
4430
4462
|
apiKey?: string | undefined;
|
4431
4463
|
tier?: "basic" | "regular" | "premium" | undefined;
|
4464
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
4432
4465
|
} | undefined;
|
4433
4466
|
vonageCredentials?: {
|
4434
4467
|
apiKey: string;
|
@@ -4445,15 +4478,16 @@ export declare const viberContract: {
|
|
4445
4478
|
additionalCredentials?: any;
|
4446
4479
|
senderId?: string | undefined;
|
4447
4480
|
whatsapp?: {
|
4448
|
-
|
4449
|
-
wabaExternalId
|
4450
|
-
phoneNumberId
|
4451
|
-
|
4452
|
-
clientId?: string | undefined;
|
4453
|
-
channelId?: string | undefined;
|
4481
|
+
wabaBusinessId?: string | null | undefined;
|
4482
|
+
wabaExternalId?: string | null | undefined;
|
4483
|
+
phoneNumberId?: string | null | undefined;
|
4484
|
+
email?: string | null | undefined;
|
4485
|
+
clientId?: string | null | undefined;
|
4486
|
+
channelId?: string | null | undefined;
|
4454
4487
|
status?: "active" | "pending" | undefined;
|
4455
4488
|
apiKey?: string | undefined;
|
4456
4489
|
tier?: "basic" | "regular" | "premium" | undefined;
|
4490
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
4457
4491
|
} | undefined;
|
4458
4492
|
vonageCredentials?: {
|
4459
4493
|
apiKey: string;
|
@@ -4704,15 +4738,16 @@ export declare const viberContract: {
|
|
4704
4738
|
additionalCredentials?: any;
|
4705
4739
|
senderId?: string | undefined;
|
4706
4740
|
whatsapp?: {
|
4707
|
-
|
4708
|
-
wabaExternalId
|
4709
|
-
phoneNumberId
|
4710
|
-
|
4711
|
-
clientId?: string | undefined;
|
4712
|
-
channelId?: string | undefined;
|
4741
|
+
wabaBusinessId?: string | null | undefined;
|
4742
|
+
wabaExternalId?: string | null | undefined;
|
4743
|
+
phoneNumberId?: string | null | undefined;
|
4744
|
+
email?: string | null | undefined;
|
4745
|
+
clientId?: string | null | undefined;
|
4746
|
+
channelId?: string | null | undefined;
|
4713
4747
|
status?: "active" | "pending" | undefined;
|
4714
4748
|
apiKey?: string | undefined;
|
4715
4749
|
tier?: "basic" | "regular" | "premium" | undefined;
|
4750
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
4716
4751
|
} | undefined;
|
4717
4752
|
vonageCredentials?: {
|
4718
4753
|
apiKey: string;
|
@@ -4794,15 +4829,16 @@ export declare const viberContract: {
|
|
4794
4829
|
additionalCredentials?: any;
|
4795
4830
|
senderId?: string | undefined;
|
4796
4831
|
whatsapp?: {
|
4797
|
-
|
4798
|
-
wabaExternalId
|
4799
|
-
phoneNumberId
|
4800
|
-
|
4801
|
-
clientId?: string | undefined;
|
4802
|
-
channelId?: string | undefined;
|
4832
|
+
wabaBusinessId?: string | null | undefined;
|
4833
|
+
wabaExternalId?: string | null | undefined;
|
4834
|
+
phoneNumberId?: string | null | undefined;
|
4835
|
+
email?: string | null | undefined;
|
4836
|
+
clientId?: string | null | undefined;
|
4837
|
+
channelId?: string | null | undefined;
|
4803
4838
|
status?: "active" | "pending" | undefined;
|
4804
4839
|
apiKey?: string | undefined;
|
4805
4840
|
tier?: "basic" | "regular" | "premium" | undefined;
|
4841
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
4806
4842
|
} | undefined;
|
4807
4843
|
vonageCredentials?: {
|
4808
4844
|
apiKey: string;
|
@@ -5448,15 +5484,16 @@ export declare const viberContract: {
|
|
5448
5484
|
additionalCredentials?: any;
|
5449
5485
|
senderId?: string | undefined;
|
5450
5486
|
whatsapp?: {
|
5451
|
-
|
5452
|
-
wabaExternalId
|
5453
|
-
phoneNumberId
|
5454
|
-
|
5455
|
-
clientId?: string | undefined;
|
5456
|
-
channelId?: string | undefined;
|
5487
|
+
wabaBusinessId?: string | null | undefined;
|
5488
|
+
wabaExternalId?: string | null | undefined;
|
5489
|
+
phoneNumberId?: string | null | undefined;
|
5490
|
+
email?: string | null | undefined;
|
5491
|
+
clientId?: string | null | undefined;
|
5492
|
+
channelId?: string | null | undefined;
|
5457
5493
|
status?: "active" | "pending" | undefined;
|
5458
5494
|
apiKey?: string | undefined;
|
5459
5495
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5496
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5460
5497
|
} | undefined;
|
5461
5498
|
vonageCredentials?: {
|
5462
5499
|
apiKey: string;
|
@@ -5871,15 +5908,16 @@ export declare const viberContract: {
|
|
5871
5908
|
additionalCredentials?: any;
|
5872
5909
|
senderId?: string | undefined;
|
5873
5910
|
whatsapp?: {
|
5874
|
-
|
5875
|
-
wabaExternalId
|
5876
|
-
phoneNumberId
|
5877
|
-
|
5878
|
-
clientId?: string | undefined;
|
5879
|
-
channelId?: string | undefined;
|
5911
|
+
wabaBusinessId?: string | null | undefined;
|
5912
|
+
wabaExternalId?: string | null | undefined;
|
5913
|
+
phoneNumberId?: string | null | undefined;
|
5914
|
+
email?: string | null | undefined;
|
5915
|
+
clientId?: string | null | undefined;
|
5916
|
+
channelId?: string | null | undefined;
|
5880
5917
|
status?: "active" | "pending" | undefined;
|
5881
5918
|
apiKey?: string | undefined;
|
5882
5919
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5920
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5883
5921
|
} | undefined;
|
5884
5922
|
vonageCredentials?: {
|
5885
5923
|
apiKey: string;
|
@@ -9010,35 +9048,38 @@ export declare const viberContract: {
|
|
9010
9048
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9011
9049
|
senderId: z.ZodOptional<z.ZodString>;
|
9012
9050
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
9013
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
9014
|
-
wabaExternalId: z.ZodString
|
9015
|
-
phoneNumberId: z.ZodString
|
9016
|
-
email: z.ZodString
|
9017
|
-
clientId: z.ZodOptional<z.ZodString
|
9018
|
-
channelId: z.ZodOptional<z.ZodString
|
9051
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9052
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9053
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9054
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9055
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9056
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9019
9057
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
9020
9058
|
apiKey: z.ZodOptional<z.ZodString>;
|
9021
9059
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
9060
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
9022
9061
|
}, "strip", z.ZodTypeAny, {
|
9023
|
-
|
9024
|
-
wabaExternalId
|
9025
|
-
phoneNumberId
|
9026
|
-
|
9027
|
-
clientId?: string | undefined;
|
9028
|
-
channelId?: string | undefined;
|
9062
|
+
wabaBusinessId?: string | null | undefined;
|
9063
|
+
wabaExternalId?: string | null | undefined;
|
9064
|
+
phoneNumberId?: string | null | undefined;
|
9065
|
+
email?: string | null | undefined;
|
9066
|
+
clientId?: string | null | undefined;
|
9067
|
+
channelId?: string | null | undefined;
|
9029
9068
|
status?: "active" | "pending" | undefined;
|
9030
9069
|
apiKey?: string | undefined;
|
9031
9070
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9071
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9032
9072
|
}, {
|
9033
|
-
|
9034
|
-
wabaExternalId
|
9035
|
-
phoneNumberId
|
9036
|
-
|
9037
|
-
clientId?: string | undefined;
|
9038
|
-
channelId?: string | undefined;
|
9073
|
+
wabaBusinessId?: string | null | undefined;
|
9074
|
+
wabaExternalId?: string | null | undefined;
|
9075
|
+
phoneNumberId?: string | null | undefined;
|
9076
|
+
email?: string | null | undefined;
|
9077
|
+
clientId?: string | null | undefined;
|
9078
|
+
channelId?: string | null | undefined;
|
9039
9079
|
status?: "active" | "pending" | undefined;
|
9040
9080
|
apiKey?: string | undefined;
|
9041
9081
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9082
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9042
9083
|
}>>;
|
9043
9084
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
9044
9085
|
mobileNumber: z.ZodString;
|
@@ -9063,15 +9104,16 @@ export declare const viberContract: {
|
|
9063
9104
|
additionalCredentials?: any;
|
9064
9105
|
senderId?: string | undefined;
|
9065
9106
|
whatsapp?: {
|
9066
|
-
|
9067
|
-
wabaExternalId
|
9068
|
-
phoneNumberId
|
9069
|
-
|
9070
|
-
clientId?: string | undefined;
|
9071
|
-
channelId?: string | undefined;
|
9107
|
+
wabaBusinessId?: string | null | undefined;
|
9108
|
+
wabaExternalId?: string | null | undefined;
|
9109
|
+
phoneNumberId?: string | null | undefined;
|
9110
|
+
email?: string | null | undefined;
|
9111
|
+
clientId?: string | null | undefined;
|
9112
|
+
channelId?: string | null | undefined;
|
9072
9113
|
status?: "active" | "pending" | undefined;
|
9073
9114
|
apiKey?: string | undefined;
|
9074
9115
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9116
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9075
9117
|
} | undefined;
|
9076
9118
|
vonageCredentials?: {
|
9077
9119
|
apiKey: string;
|
@@ -9088,15 +9130,16 @@ export declare const viberContract: {
|
|
9088
9130
|
additionalCredentials?: any;
|
9089
9131
|
senderId?: string | undefined;
|
9090
9132
|
whatsapp?: {
|
9091
|
-
|
9092
|
-
wabaExternalId
|
9093
|
-
phoneNumberId
|
9094
|
-
|
9095
|
-
clientId?: string | undefined;
|
9096
|
-
channelId?: string | undefined;
|
9133
|
+
wabaBusinessId?: string | null | undefined;
|
9134
|
+
wabaExternalId?: string | null | undefined;
|
9135
|
+
phoneNumberId?: string | null | undefined;
|
9136
|
+
email?: string | null | undefined;
|
9137
|
+
clientId?: string | null | undefined;
|
9138
|
+
channelId?: string | null | undefined;
|
9097
9139
|
status?: "active" | "pending" | undefined;
|
9098
9140
|
apiKey?: string | undefined;
|
9099
9141
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9142
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9100
9143
|
} | undefined;
|
9101
9144
|
vonageCredentials?: {
|
9102
9145
|
apiKey: string;
|
@@ -9347,15 +9390,16 @@ export declare const viberContract: {
|
|
9347
9390
|
additionalCredentials?: any;
|
9348
9391
|
senderId?: string | undefined;
|
9349
9392
|
whatsapp?: {
|
9350
|
-
|
9351
|
-
wabaExternalId
|
9352
|
-
phoneNumberId
|
9353
|
-
|
9354
|
-
clientId?: string | undefined;
|
9355
|
-
channelId?: string | undefined;
|
9393
|
+
wabaBusinessId?: string | null | undefined;
|
9394
|
+
wabaExternalId?: string | null | undefined;
|
9395
|
+
phoneNumberId?: string | null | undefined;
|
9396
|
+
email?: string | null | undefined;
|
9397
|
+
clientId?: string | null | undefined;
|
9398
|
+
channelId?: string | null | undefined;
|
9356
9399
|
status?: "active" | "pending" | undefined;
|
9357
9400
|
apiKey?: string | undefined;
|
9358
9401
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9402
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9359
9403
|
} | undefined;
|
9360
9404
|
vonageCredentials?: {
|
9361
9405
|
apiKey: string;
|
@@ -9437,15 +9481,16 @@ export declare const viberContract: {
|
|
9437
9481
|
additionalCredentials?: any;
|
9438
9482
|
senderId?: string | undefined;
|
9439
9483
|
whatsapp?: {
|
9440
|
-
|
9441
|
-
wabaExternalId
|
9442
|
-
phoneNumberId
|
9443
|
-
|
9444
|
-
clientId?: string | undefined;
|
9445
|
-
channelId?: string | undefined;
|
9484
|
+
wabaBusinessId?: string | null | undefined;
|
9485
|
+
wabaExternalId?: string | null | undefined;
|
9486
|
+
phoneNumberId?: string | null | undefined;
|
9487
|
+
email?: string | null | undefined;
|
9488
|
+
clientId?: string | null | undefined;
|
9489
|
+
channelId?: string | null | undefined;
|
9446
9490
|
status?: "active" | "pending" | undefined;
|
9447
9491
|
apiKey?: string | undefined;
|
9448
9492
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9493
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9449
9494
|
} | undefined;
|
9450
9495
|
vonageCredentials?: {
|
9451
9496
|
apiKey: string;
|
@@ -10091,15 +10136,16 @@ export declare const viberContract: {
|
|
10091
10136
|
additionalCredentials?: any;
|
10092
10137
|
senderId?: string | undefined;
|
10093
10138
|
whatsapp?: {
|
10094
|
-
|
10095
|
-
wabaExternalId
|
10096
|
-
phoneNumberId
|
10097
|
-
|
10098
|
-
clientId?: string | undefined;
|
10099
|
-
channelId?: string | undefined;
|
10139
|
+
wabaBusinessId?: string | null | undefined;
|
10140
|
+
wabaExternalId?: string | null | undefined;
|
10141
|
+
phoneNumberId?: string | null | undefined;
|
10142
|
+
email?: string | null | undefined;
|
10143
|
+
clientId?: string | null | undefined;
|
10144
|
+
channelId?: string | null | undefined;
|
10100
10145
|
status?: "active" | "pending" | undefined;
|
10101
10146
|
apiKey?: string | undefined;
|
10102
10147
|
tier?: "basic" | "regular" | "premium" | undefined;
|
10148
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10103
10149
|
} | undefined;
|
10104
10150
|
vonageCredentials?: {
|
10105
10151
|
apiKey: string;
|
@@ -10514,15 +10560,16 @@ export declare const viberContract: {
|
|
10514
10560
|
additionalCredentials?: any;
|
10515
10561
|
senderId?: string | undefined;
|
10516
10562
|
whatsapp?: {
|
10517
|
-
|
10518
|
-
wabaExternalId
|
10519
|
-
phoneNumberId
|
10520
|
-
|
10521
|
-
clientId?: string | undefined;
|
10522
|
-
channelId?: string | undefined;
|
10563
|
+
wabaBusinessId?: string | null | undefined;
|
10564
|
+
wabaExternalId?: string | null | undefined;
|
10565
|
+
phoneNumberId?: string | null | undefined;
|
10566
|
+
email?: string | null | undefined;
|
10567
|
+
clientId?: string | null | undefined;
|
10568
|
+
channelId?: string | null | undefined;
|
10523
10569
|
status?: "active" | "pending" | undefined;
|
10524
10570
|
apiKey?: string | undefined;
|
10525
10571
|
tier?: "basic" | "regular" | "premium" | undefined;
|
10572
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10526
10573
|
} | undefined;
|
10527
10574
|
vonageCredentials?: {
|
10528
10575
|
apiKey: string;
|
@@ -12710,15 +12757,16 @@ export declare const viberContract: {
|
|
12710
12757
|
additionalCredentials?: any;
|
12711
12758
|
senderId?: string | undefined;
|
12712
12759
|
whatsapp?: {
|
12713
|
-
|
12714
|
-
wabaExternalId
|
12715
|
-
phoneNumberId
|
12716
|
-
|
12717
|
-
clientId?: string | undefined;
|
12718
|
-
channelId?: string | undefined;
|
12760
|
+
wabaBusinessId?: string | null | undefined;
|
12761
|
+
wabaExternalId?: string | null | undefined;
|
12762
|
+
phoneNumberId?: string | null | undefined;
|
12763
|
+
email?: string | null | undefined;
|
12764
|
+
clientId?: string | null | undefined;
|
12765
|
+
channelId?: string | null | undefined;
|
12719
12766
|
status?: "active" | "pending" | undefined;
|
12720
12767
|
apiKey?: string | undefined;
|
12721
12768
|
tier?: "basic" | "regular" | "premium" | undefined;
|
12769
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12722
12770
|
} | undefined;
|
12723
12771
|
vonageCredentials?: {
|
12724
12772
|
apiKey: string;
|
@@ -13470,15 +13518,16 @@ export declare const viberContract: {
|
|
13470
13518
|
additionalCredentials?: any;
|
13471
13519
|
senderId?: string | undefined;
|
13472
13520
|
whatsapp?: {
|
13473
|
-
|
13474
|
-
wabaExternalId
|
13475
|
-
phoneNumberId
|
13476
|
-
|
13477
|
-
clientId?: string | undefined;
|
13478
|
-
channelId?: string | undefined;
|
13521
|
+
wabaBusinessId?: string | null | undefined;
|
13522
|
+
wabaExternalId?: string | null | undefined;
|
13523
|
+
phoneNumberId?: string | null | undefined;
|
13524
|
+
email?: string | null | undefined;
|
13525
|
+
clientId?: string | null | undefined;
|
13526
|
+
channelId?: string | null | undefined;
|
13479
13527
|
status?: "active" | "pending" | undefined;
|
13480
13528
|
apiKey?: string | undefined;
|
13481
13529
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13530
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13482
13531
|
} | undefined;
|
13483
13532
|
vonageCredentials?: {
|
13484
13533
|
apiKey: string;
|
@@ -14231,15 +14280,16 @@ export declare const viberContract: {
|
|
14231
14280
|
additionalCredentials?: any;
|
14232
14281
|
senderId?: string | undefined;
|
14233
14282
|
whatsapp?: {
|
14234
|
-
|
14235
|
-
wabaExternalId
|
14236
|
-
phoneNumberId
|
14237
|
-
|
14238
|
-
clientId?: string | undefined;
|
14239
|
-
channelId?: string | undefined;
|
14283
|
+
wabaBusinessId?: string | null | undefined;
|
14284
|
+
wabaExternalId?: string | null | undefined;
|
14285
|
+
phoneNumberId?: string | null | undefined;
|
14286
|
+
email?: string | null | undefined;
|
14287
|
+
clientId?: string | null | undefined;
|
14288
|
+
channelId?: string | null | undefined;
|
14240
14289
|
status?: "active" | "pending" | undefined;
|
14241
14290
|
apiKey?: string | undefined;
|
14242
14291
|
tier?: "basic" | "regular" | "premium" | undefined;
|
14292
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
14243
14293
|
} | undefined;
|
14244
14294
|
vonageCredentials?: {
|
14245
14295
|
apiKey: string;
|
@@ -14991,15 +15041,16 @@ export declare const viberContract: {
|
|
14991
15041
|
additionalCredentials?: any;
|
14992
15042
|
senderId?: string | undefined;
|
14993
15043
|
whatsapp?: {
|
14994
|
-
|
14995
|
-
wabaExternalId
|
14996
|
-
phoneNumberId
|
14997
|
-
|
14998
|
-
clientId?: string | undefined;
|
14999
|
-
channelId?: string | undefined;
|
15044
|
+
wabaBusinessId?: string | null | undefined;
|
15045
|
+
wabaExternalId?: string | null | undefined;
|
15046
|
+
phoneNumberId?: string | null | undefined;
|
15047
|
+
email?: string | null | undefined;
|
15048
|
+
clientId?: string | null | undefined;
|
15049
|
+
channelId?: string | null | undefined;
|
15000
15050
|
status?: "active" | "pending" | undefined;
|
15001
15051
|
apiKey?: string | undefined;
|
15002
15052
|
tier?: "basic" | "regular" | "premium" | undefined;
|
15053
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
15003
15054
|
} | undefined;
|
15004
15055
|
vonageCredentials?: {
|
15005
15056
|
apiKey: string;
|
@@ -15752,15 +15803,16 @@ export declare const viberContract: {
|
|
15752
15803
|
additionalCredentials?: any;
|
15753
15804
|
senderId?: string | undefined;
|
15754
15805
|
whatsapp?: {
|
15755
|
-
|
15756
|
-
wabaExternalId
|
15757
|
-
phoneNumberId
|
15758
|
-
|
15759
|
-
clientId?: string | undefined;
|
15760
|
-
channelId?: string | undefined;
|
15806
|
+
wabaBusinessId?: string | null | undefined;
|
15807
|
+
wabaExternalId?: string | null | undefined;
|
15808
|
+
phoneNumberId?: string | null | undefined;
|
15809
|
+
email?: string | null | undefined;
|
15810
|
+
clientId?: string | null | undefined;
|
15811
|
+
channelId?: string | null | undefined;
|
15761
15812
|
status?: "active" | "pending" | undefined;
|
15762
15813
|
apiKey?: string | undefined;
|
15763
15814
|
tier?: "basic" | "regular" | "premium" | undefined;
|
15815
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
15764
15816
|
} | undefined;
|
15765
15817
|
vonageCredentials?: {
|
15766
15818
|
apiKey: string;
|
@@ -16512,15 +16564,16 @@ export declare const viberContract: {
|
|
16512
16564
|
additionalCredentials?: any;
|
16513
16565
|
senderId?: string | undefined;
|
16514
16566
|
whatsapp?: {
|
16515
|
-
|
16516
|
-
wabaExternalId
|
16517
|
-
phoneNumberId
|
16518
|
-
|
16519
|
-
clientId?: string | undefined;
|
16520
|
-
channelId?: string | undefined;
|
16567
|
+
wabaBusinessId?: string | null | undefined;
|
16568
|
+
wabaExternalId?: string | null | undefined;
|
16569
|
+
phoneNumberId?: string | null | undefined;
|
16570
|
+
email?: string | null | undefined;
|
16571
|
+
clientId?: string | null | undefined;
|
16572
|
+
channelId?: string | null | undefined;
|
16521
16573
|
status?: "active" | "pending" | undefined;
|
16522
16574
|
apiKey?: string | undefined;
|
16523
16575
|
tier?: "basic" | "regular" | "premium" | undefined;
|
16576
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
16524
16577
|
} | undefined;
|
16525
16578
|
vonageCredentials?: {
|
16526
16579
|
apiKey: string;
|
@@ -17275,15 +17328,16 @@ export declare const viberContract: {
|
|
17275
17328
|
additionalCredentials?: any;
|
17276
17329
|
senderId?: string | undefined;
|
17277
17330
|
whatsapp?: {
|
17278
|
-
|
17279
|
-
wabaExternalId
|
17280
|
-
phoneNumberId
|
17281
|
-
|
17282
|
-
clientId?: string | undefined;
|
17283
|
-
channelId?: string | undefined;
|
17331
|
+
wabaBusinessId?: string | null | undefined;
|
17332
|
+
wabaExternalId?: string | null | undefined;
|
17333
|
+
phoneNumberId?: string | null | undefined;
|
17334
|
+
email?: string | null | undefined;
|
17335
|
+
clientId?: string | null | undefined;
|
17336
|
+
channelId?: string | null | undefined;
|
17284
17337
|
status?: "active" | "pending" | undefined;
|
17285
17338
|
apiKey?: string | undefined;
|
17286
17339
|
tier?: "basic" | "regular" | "premium" | undefined;
|
17340
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
17287
17341
|
} | undefined;
|
17288
17342
|
vonageCredentials?: {
|
17289
17343
|
apiKey: string;
|
@@ -18035,15 +18089,16 @@ export declare const viberContract: {
|
|
18035
18089
|
additionalCredentials?: any;
|
18036
18090
|
senderId?: string | undefined;
|
18037
18091
|
whatsapp?: {
|
18038
|
-
|
18039
|
-
wabaExternalId
|
18040
|
-
phoneNumberId
|
18041
|
-
|
18042
|
-
clientId?: string | undefined;
|
18043
|
-
channelId?: string | undefined;
|
18092
|
+
wabaBusinessId?: string | null | undefined;
|
18093
|
+
wabaExternalId?: string | null | undefined;
|
18094
|
+
phoneNumberId?: string | null | undefined;
|
18095
|
+
email?: string | null | undefined;
|
18096
|
+
clientId?: string | null | undefined;
|
18097
|
+
channelId?: string | null | undefined;
|
18044
18098
|
status?: "active" | "pending" | undefined;
|
18045
18099
|
apiKey?: string | undefined;
|
18046
18100
|
tier?: "basic" | "regular" | "premium" | undefined;
|
18101
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
18047
18102
|
} | undefined;
|
18048
18103
|
vonageCredentials?: {
|
18049
18104
|
apiKey: string;
|
@@ -18799,15 +18854,16 @@ export declare const viberContract: {
|
|
18799
18854
|
additionalCredentials?: any;
|
18800
18855
|
senderId?: string | undefined;
|
18801
18856
|
whatsapp?: {
|
18802
|
-
|
18803
|
-
wabaExternalId
|
18804
|
-
phoneNumberId
|
18805
|
-
|
18806
|
-
clientId?: string | undefined;
|
18807
|
-
channelId?: string | undefined;
|
18857
|
+
wabaBusinessId?: string | null | undefined;
|
18858
|
+
wabaExternalId?: string | null | undefined;
|
18859
|
+
phoneNumberId?: string | null | undefined;
|
18860
|
+
email?: string | null | undefined;
|
18861
|
+
clientId?: string | null | undefined;
|
18862
|
+
channelId?: string | null | undefined;
|
18808
18863
|
status?: "active" | "pending" | undefined;
|
18809
18864
|
apiKey?: string | undefined;
|
18810
18865
|
tier?: "basic" | "regular" | "premium" | undefined;
|
18866
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
18811
18867
|
} | undefined;
|
18812
18868
|
vonageCredentials?: {
|
18813
18869
|
apiKey: string;
|
@@ -19559,15 +19615,16 @@ export declare const viberContract: {
|
|
19559
19615
|
additionalCredentials?: any;
|
19560
19616
|
senderId?: string | undefined;
|
19561
19617
|
whatsapp?: {
|
19562
|
-
|
19563
|
-
wabaExternalId
|
19564
|
-
phoneNumberId
|
19565
|
-
|
19566
|
-
clientId?: string | undefined;
|
19567
|
-
channelId?: string | undefined;
|
19618
|
+
wabaBusinessId?: string | null | undefined;
|
19619
|
+
wabaExternalId?: string | null | undefined;
|
19620
|
+
phoneNumberId?: string | null | undefined;
|
19621
|
+
email?: string | null | undefined;
|
19622
|
+
clientId?: string | null | undefined;
|
19623
|
+
channelId?: string | null | undefined;
|
19568
19624
|
status?: "active" | "pending" | undefined;
|
19569
19625
|
apiKey?: string | undefined;
|
19570
19626
|
tier?: "basic" | "regular" | "premium" | undefined;
|
19627
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
19571
19628
|
} | undefined;
|
19572
19629
|
vonageCredentials?: {
|
19573
19630
|
apiKey: string;
|
@@ -20241,35 +20298,38 @@ export declare const viberContract: {
|
|
20241
20298
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
20242
20299
|
senderId: z.ZodOptional<z.ZodString>;
|
20243
20300
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
20244
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
20245
|
-
wabaExternalId: z.ZodString
|
20246
|
-
phoneNumberId: z.ZodString
|
20247
|
-
email: z.ZodString
|
20248
|
-
clientId: z.ZodOptional<z.ZodString
|
20249
|
-
channelId: z.ZodOptional<z.ZodString
|
20301
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20302
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20303
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20304
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20305
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20306
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20250
20307
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
20251
20308
|
apiKey: z.ZodOptional<z.ZodString>;
|
20252
20309
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
20310
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
20253
20311
|
}, "strip", z.ZodTypeAny, {
|
20254
|
-
|
20255
|
-
wabaExternalId
|
20256
|
-
phoneNumberId
|
20257
|
-
|
20258
|
-
clientId?: string | undefined;
|
20259
|
-
channelId?: string | undefined;
|
20312
|
+
wabaBusinessId?: string | null | undefined;
|
20313
|
+
wabaExternalId?: string | null | undefined;
|
20314
|
+
phoneNumberId?: string | null | undefined;
|
20315
|
+
email?: string | null | undefined;
|
20316
|
+
clientId?: string | null | undefined;
|
20317
|
+
channelId?: string | null | undefined;
|
20260
20318
|
status?: "active" | "pending" | undefined;
|
20261
20319
|
apiKey?: string | undefined;
|
20262
20320
|
tier?: "basic" | "regular" | "premium" | undefined;
|
20321
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
20263
20322
|
}, {
|
20264
|
-
|
20265
|
-
wabaExternalId
|
20266
|
-
phoneNumberId
|
20267
|
-
|
20268
|
-
clientId?: string | undefined;
|
20269
|
-
channelId?: string | undefined;
|
20323
|
+
wabaBusinessId?: string | null | undefined;
|
20324
|
+
wabaExternalId?: string | null | undefined;
|
20325
|
+
phoneNumberId?: string | null | undefined;
|
20326
|
+
email?: string | null | undefined;
|
20327
|
+
clientId?: string | null | undefined;
|
20328
|
+
channelId?: string | null | undefined;
|
20270
20329
|
status?: "active" | "pending" | undefined;
|
20271
20330
|
apiKey?: string | undefined;
|
20272
20331
|
tier?: "basic" | "regular" | "premium" | undefined;
|
20332
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
20273
20333
|
}>>;
|
20274
20334
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
20275
20335
|
mobileNumber: z.ZodString;
|
@@ -20294,15 +20354,16 @@ export declare const viberContract: {
|
|
20294
20354
|
additionalCredentials?: any;
|
20295
20355
|
senderId?: string | undefined;
|
20296
20356
|
whatsapp?: {
|
20297
|
-
|
20298
|
-
wabaExternalId
|
20299
|
-
phoneNumberId
|
20300
|
-
|
20301
|
-
clientId?: string | undefined;
|
20302
|
-
channelId?: string | undefined;
|
20357
|
+
wabaBusinessId?: string | null | undefined;
|
20358
|
+
wabaExternalId?: string | null | undefined;
|
20359
|
+
phoneNumberId?: string | null | undefined;
|
20360
|
+
email?: string | null | undefined;
|
20361
|
+
clientId?: string | null | undefined;
|
20362
|
+
channelId?: string | null | undefined;
|
20303
20363
|
status?: "active" | "pending" | undefined;
|
20304
20364
|
apiKey?: string | undefined;
|
20305
20365
|
tier?: "basic" | "regular" | "premium" | undefined;
|
20366
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
20306
20367
|
} | undefined;
|
20307
20368
|
vonageCredentials?: {
|
20308
20369
|
apiKey: string;
|
@@ -20319,15 +20380,16 @@ export declare const viberContract: {
|
|
20319
20380
|
additionalCredentials?: any;
|
20320
20381
|
senderId?: string | undefined;
|
20321
20382
|
whatsapp?: {
|
20322
|
-
|
20323
|
-
wabaExternalId
|
20324
|
-
phoneNumberId
|
20325
|
-
|
20326
|
-
clientId?: string | undefined;
|
20327
|
-
channelId?: string | undefined;
|
20383
|
+
wabaBusinessId?: string | null | undefined;
|
20384
|
+
wabaExternalId?: string | null | undefined;
|
20385
|
+
phoneNumberId?: string | null | undefined;
|
20386
|
+
email?: string | null | undefined;
|
20387
|
+
clientId?: string | null | undefined;
|
20388
|
+
channelId?: string | null | undefined;
|
20328
20389
|
status?: "active" | "pending" | undefined;
|
20329
20390
|
apiKey?: string | undefined;
|
20330
20391
|
tier?: "basic" | "regular" | "premium" | undefined;
|
20392
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
20331
20393
|
} | undefined;
|
20332
20394
|
vonageCredentials?: {
|
20333
20395
|
apiKey: string;
|
@@ -20578,15 +20640,16 @@ export declare const viberContract: {
|
|
20578
20640
|
additionalCredentials?: any;
|
20579
20641
|
senderId?: string | undefined;
|
20580
20642
|
whatsapp?: {
|
20581
|
-
|
20582
|
-
wabaExternalId
|
20583
|
-
phoneNumberId
|
20584
|
-
|
20585
|
-
clientId?: string | undefined;
|
20586
|
-
channelId?: string | undefined;
|
20643
|
+
wabaBusinessId?: string | null | undefined;
|
20644
|
+
wabaExternalId?: string | null | undefined;
|
20645
|
+
phoneNumberId?: string | null | undefined;
|
20646
|
+
email?: string | null | undefined;
|
20647
|
+
clientId?: string | null | undefined;
|
20648
|
+
channelId?: string | null | undefined;
|
20587
20649
|
status?: "active" | "pending" | undefined;
|
20588
20650
|
apiKey?: string | undefined;
|
20589
20651
|
tier?: "basic" | "regular" | "premium" | undefined;
|
20652
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
20590
20653
|
} | undefined;
|
20591
20654
|
vonageCredentials?: {
|
20592
20655
|
apiKey: string;
|
@@ -20668,15 +20731,16 @@ export declare const viberContract: {
|
|
20668
20731
|
additionalCredentials?: any;
|
20669
20732
|
senderId?: string | undefined;
|
20670
20733
|
whatsapp?: {
|
20671
|
-
|
20672
|
-
wabaExternalId
|
20673
|
-
phoneNumberId
|
20674
|
-
|
20675
|
-
clientId?: string | undefined;
|
20676
|
-
channelId?: string | undefined;
|
20734
|
+
wabaBusinessId?: string | null | undefined;
|
20735
|
+
wabaExternalId?: string | null | undefined;
|
20736
|
+
phoneNumberId?: string | null | undefined;
|
20737
|
+
email?: string | null | undefined;
|
20738
|
+
clientId?: string | null | undefined;
|
20739
|
+
channelId?: string | null | undefined;
|
20677
20740
|
status?: "active" | "pending" | undefined;
|
20678
20741
|
apiKey?: string | undefined;
|
20679
20742
|
tier?: "basic" | "regular" | "premium" | undefined;
|
20743
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
20680
20744
|
} | undefined;
|
20681
20745
|
vonageCredentials?: {
|
20682
20746
|
apiKey: string;
|
@@ -20760,15 +20824,16 @@ export declare const viberContract: {
|
|
20760
20824
|
additionalCredentials?: any;
|
20761
20825
|
senderId?: string | undefined;
|
20762
20826
|
whatsapp?: {
|
20763
|
-
|
20764
|
-
wabaExternalId
|
20765
|
-
phoneNumberId
|
20766
|
-
|
20767
|
-
clientId?: string | undefined;
|
20768
|
-
channelId?: string | undefined;
|
20827
|
+
wabaBusinessId?: string | null | undefined;
|
20828
|
+
wabaExternalId?: string | null | undefined;
|
20829
|
+
phoneNumberId?: string | null | undefined;
|
20830
|
+
email?: string | null | undefined;
|
20831
|
+
clientId?: string | null | undefined;
|
20832
|
+
channelId?: string | null | undefined;
|
20769
20833
|
status?: "active" | "pending" | undefined;
|
20770
20834
|
apiKey?: string | undefined;
|
20771
20835
|
tier?: "basic" | "regular" | "premium" | undefined;
|
20836
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
20772
20837
|
} | undefined;
|
20773
20838
|
vonageCredentials?: {
|
20774
20839
|
apiKey: string;
|
@@ -20853,15 +20918,16 @@ export declare const viberContract: {
|
|
20853
20918
|
additionalCredentials?: any;
|
20854
20919
|
senderId?: string | undefined;
|
20855
20920
|
whatsapp?: {
|
20856
|
-
|
20857
|
-
wabaExternalId
|
20858
|
-
phoneNumberId
|
20859
|
-
|
20860
|
-
clientId?: string | undefined;
|
20861
|
-
channelId?: string | undefined;
|
20921
|
+
wabaBusinessId?: string | null | undefined;
|
20922
|
+
wabaExternalId?: string | null | undefined;
|
20923
|
+
phoneNumberId?: string | null | undefined;
|
20924
|
+
email?: string | null | undefined;
|
20925
|
+
clientId?: string | null | undefined;
|
20926
|
+
channelId?: string | null | undefined;
|
20862
20927
|
status?: "active" | "pending" | undefined;
|
20863
20928
|
apiKey?: string | undefined;
|
20864
20929
|
tier?: "basic" | "regular" | "premium" | undefined;
|
20930
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
20865
20931
|
} | undefined;
|
20866
20932
|
vonageCredentials?: {
|
20867
20933
|
apiKey: string;
|
@@ -20982,35 +21048,38 @@ export declare const viberContract: {
|
|
20982
21048
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
20983
21049
|
senderId: z.ZodOptional<z.ZodString>;
|
20984
21050
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
20985
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
20986
|
-
wabaExternalId: z.ZodString
|
20987
|
-
phoneNumberId: z.ZodString
|
20988
|
-
email: z.ZodString
|
20989
|
-
clientId: z.ZodOptional<z.ZodString
|
20990
|
-
channelId: z.ZodOptional<z.ZodString
|
21051
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21052
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21053
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21054
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21055
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21056
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20991
21057
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
20992
21058
|
apiKey: z.ZodOptional<z.ZodString>;
|
20993
21059
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
21060
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
20994
21061
|
}, "strip", z.ZodTypeAny, {
|
20995
|
-
|
20996
|
-
wabaExternalId
|
20997
|
-
phoneNumberId
|
20998
|
-
|
20999
|
-
clientId?: string | undefined;
|
21000
|
-
channelId?: string | undefined;
|
21062
|
+
wabaBusinessId?: string | null | undefined;
|
21063
|
+
wabaExternalId?: string | null | undefined;
|
21064
|
+
phoneNumberId?: string | null | undefined;
|
21065
|
+
email?: string | null | undefined;
|
21066
|
+
clientId?: string | null | undefined;
|
21067
|
+
channelId?: string | null | undefined;
|
21001
21068
|
status?: "active" | "pending" | undefined;
|
21002
21069
|
apiKey?: string | undefined;
|
21003
21070
|
tier?: "basic" | "regular" | "premium" | undefined;
|
21071
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
21004
21072
|
}, {
|
21005
|
-
|
21006
|
-
wabaExternalId
|
21007
|
-
phoneNumberId
|
21008
|
-
|
21009
|
-
clientId?: string | undefined;
|
21010
|
-
channelId?: string | undefined;
|
21073
|
+
wabaBusinessId?: string | null | undefined;
|
21074
|
+
wabaExternalId?: string | null | undefined;
|
21075
|
+
phoneNumberId?: string | null | undefined;
|
21076
|
+
email?: string | null | undefined;
|
21077
|
+
clientId?: string | null | undefined;
|
21078
|
+
channelId?: string | null | undefined;
|
21011
21079
|
status?: "active" | "pending" | undefined;
|
21012
21080
|
apiKey?: string | undefined;
|
21013
21081
|
tier?: "basic" | "regular" | "premium" | undefined;
|
21082
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
21014
21083
|
}>>;
|
21015
21084
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
21016
21085
|
mobileNumber: z.ZodString;
|
@@ -21035,15 +21104,16 @@ export declare const viberContract: {
|
|
21035
21104
|
additionalCredentials?: any;
|
21036
21105
|
senderId?: string | undefined;
|
21037
21106
|
whatsapp?: {
|
21038
|
-
|
21039
|
-
wabaExternalId
|
21040
|
-
phoneNumberId
|
21041
|
-
|
21042
|
-
clientId?: string | undefined;
|
21043
|
-
channelId?: string | undefined;
|
21107
|
+
wabaBusinessId?: string | null | undefined;
|
21108
|
+
wabaExternalId?: string | null | undefined;
|
21109
|
+
phoneNumberId?: string | null | undefined;
|
21110
|
+
email?: string | null | undefined;
|
21111
|
+
clientId?: string | null | undefined;
|
21112
|
+
channelId?: string | null | undefined;
|
21044
21113
|
status?: "active" | "pending" | undefined;
|
21045
21114
|
apiKey?: string | undefined;
|
21046
21115
|
tier?: "basic" | "regular" | "premium" | undefined;
|
21116
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
21047
21117
|
} | undefined;
|
21048
21118
|
vonageCredentials?: {
|
21049
21119
|
apiKey: string;
|
@@ -21060,15 +21130,16 @@ export declare const viberContract: {
|
|
21060
21130
|
additionalCredentials?: any;
|
21061
21131
|
senderId?: string | undefined;
|
21062
21132
|
whatsapp?: {
|
21063
|
-
|
21064
|
-
wabaExternalId
|
21065
|
-
phoneNumberId
|
21066
|
-
|
21067
|
-
clientId?: string | undefined;
|
21068
|
-
channelId?: string | undefined;
|
21133
|
+
wabaBusinessId?: string | null | undefined;
|
21134
|
+
wabaExternalId?: string | null | undefined;
|
21135
|
+
phoneNumberId?: string | null | undefined;
|
21136
|
+
email?: string | null | undefined;
|
21137
|
+
clientId?: string | null | undefined;
|
21138
|
+
channelId?: string | null | undefined;
|
21069
21139
|
status?: "active" | "pending" | undefined;
|
21070
21140
|
apiKey?: string | undefined;
|
21071
21141
|
tier?: "basic" | "regular" | "premium" | undefined;
|
21142
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
21072
21143
|
} | undefined;
|
21073
21144
|
vonageCredentials?: {
|
21074
21145
|
apiKey: string;
|
@@ -21115,15 +21186,16 @@ export declare const viberContract: {
|
|
21115
21186
|
additionalCredentials?: any;
|
21116
21187
|
senderId?: string | undefined;
|
21117
21188
|
whatsapp?: {
|
21118
|
-
|
21119
|
-
wabaExternalId
|
21120
|
-
phoneNumberId
|
21121
|
-
|
21122
|
-
clientId?: string | undefined;
|
21123
|
-
channelId?: string | undefined;
|
21189
|
+
wabaBusinessId?: string | null | undefined;
|
21190
|
+
wabaExternalId?: string | null | undefined;
|
21191
|
+
phoneNumberId?: string | null | undefined;
|
21192
|
+
email?: string | null | undefined;
|
21193
|
+
clientId?: string | null | undefined;
|
21194
|
+
channelId?: string | null | undefined;
|
21124
21195
|
status?: "active" | "pending" | undefined;
|
21125
21196
|
apiKey?: string | undefined;
|
21126
21197
|
tier?: "basic" | "regular" | "premium" | undefined;
|
21198
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
21127
21199
|
} | undefined;
|
21128
21200
|
vonageCredentials?: {
|
21129
21201
|
apiKey: string;
|
@@ -21158,15 +21230,16 @@ export declare const viberContract: {
|
|
21158
21230
|
additionalCredentials?: any;
|
21159
21231
|
senderId?: string | undefined;
|
21160
21232
|
whatsapp?: {
|
21161
|
-
|
21162
|
-
wabaExternalId
|
21163
|
-
phoneNumberId
|
21164
|
-
|
21165
|
-
clientId?: string | undefined;
|
21166
|
-
channelId?: string | undefined;
|
21233
|
+
wabaBusinessId?: string | null | undefined;
|
21234
|
+
wabaExternalId?: string | null | undefined;
|
21235
|
+
phoneNumberId?: string | null | undefined;
|
21236
|
+
email?: string | null | undefined;
|
21237
|
+
clientId?: string | null | undefined;
|
21238
|
+
channelId?: string | null | undefined;
|
21167
21239
|
status?: "active" | "pending" | undefined;
|
21168
21240
|
apiKey?: string | undefined;
|
21169
21241
|
tier?: "basic" | "regular" | "premium" | undefined;
|
21242
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
21170
21243
|
} | undefined;
|
21171
21244
|
vonageCredentials?: {
|
21172
21245
|
apiKey: string;
|
@@ -21203,15 +21276,16 @@ export declare const viberContract: {
|
|
21203
21276
|
additionalCredentials?: any;
|
21204
21277
|
senderId?: string | undefined;
|
21205
21278
|
whatsapp?: {
|
21206
|
-
|
21207
|
-
wabaExternalId
|
21208
|
-
phoneNumberId
|
21209
|
-
|
21210
|
-
clientId?: string | undefined;
|
21211
|
-
channelId?: string | undefined;
|
21279
|
+
wabaBusinessId?: string | null | undefined;
|
21280
|
+
wabaExternalId?: string | null | undefined;
|
21281
|
+
phoneNumberId?: string | null | undefined;
|
21282
|
+
email?: string | null | undefined;
|
21283
|
+
clientId?: string | null | undefined;
|
21284
|
+
channelId?: string | null | undefined;
|
21212
21285
|
status?: "active" | "pending" | undefined;
|
21213
21286
|
apiKey?: string | undefined;
|
21214
21287
|
tier?: "basic" | "regular" | "premium" | undefined;
|
21288
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
21215
21289
|
} | undefined;
|
21216
21290
|
vonageCredentials?: {
|
21217
21291
|
apiKey: string;
|
@@ -21249,15 +21323,16 @@ export declare const viberContract: {
|
|
21249
21323
|
additionalCredentials?: any;
|
21250
21324
|
senderId?: string | undefined;
|
21251
21325
|
whatsapp?: {
|
21252
|
-
|
21253
|
-
wabaExternalId
|
21254
|
-
phoneNumberId
|
21255
|
-
|
21256
|
-
clientId?: string | undefined;
|
21257
|
-
channelId?: string | undefined;
|
21326
|
+
wabaBusinessId?: string | null | undefined;
|
21327
|
+
wabaExternalId?: string | null | undefined;
|
21328
|
+
phoneNumberId?: string | null | undefined;
|
21329
|
+
email?: string | null | undefined;
|
21330
|
+
clientId?: string | null | undefined;
|
21331
|
+
channelId?: string | null | undefined;
|
21258
21332
|
status?: "active" | "pending" | undefined;
|
21259
21333
|
apiKey?: string | undefined;
|
21260
21334
|
tier?: "basic" | "regular" | "premium" | undefined;
|
21335
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
21261
21336
|
} | undefined;
|
21262
21337
|
vonageCredentials?: {
|
21263
21338
|
apiKey: string;
|