@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.
Files changed (51) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +1253 -1074
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +84 -72
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +98 -84
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +1918 -1644
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +462 -396
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +679 -582
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +7294 -6252
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +91 -78
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +77 -66
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/facebook-feed/index.d.ts +938 -804
  20. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/schema.d.ts +63 -54
  22. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/validation.d.ts +49 -42
  24. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  25. package/dist/api-contracts/src/instagram/index.d.ts +735 -630
  26. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/line/index.d.ts +651 -558
  28. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/validation.d.ts +77 -66
  30. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  31. package/dist/api-contracts/src/messenger/index.d.ts +735 -630
  32. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  33. package/dist/api-contracts/src/messenger/validation.d.ts +49 -42
  34. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  35. package/dist/api-contracts/src/sms/index.d.ts +140 -120
  36. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/telegram/index.d.ts +525 -450
  38. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/viber/index.d.ts +525 -450
  40. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  41. package/dist/api-contracts/src/webchat/index.d.ts +525 -450
  42. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/whatsapp/index.d.ts +623 -534
  44. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/workflow-rule/index.d.ts +154 -132
  46. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  47. package/dist/index.js +8 -7
  48. package/dist/index.js.map +1 -1
  49. package/dist/index.mjs +8 -7
  50. package/dist/index.mjs.map +1 -1
  51. package/package.json +1 -1
@@ -119,35 +119,38 @@ export declare const lineContract: {
119
119
  additionalCredentials: z.ZodOptional<z.ZodAny>;
120
120
  senderId: z.ZodOptional<z.ZodString>;
121
121
  whatsapp: z.ZodOptional<z.ZodObject<{
122
- wabaBusinessId: z.ZodOptional<z.ZodString>;
123
- wabaExternalId: z.ZodString;
124
- phoneNumberId: z.ZodString;
125
- email: z.ZodString;
126
- clientId: z.ZodOptional<z.ZodString>;
127
- channelId: z.ZodOptional<z.ZodString>;
122
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
123
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
124
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
125
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
126
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
127
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
128
128
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
129
129
  apiKey: z.ZodOptional<z.ZodString>;
130
130
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
131
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
131
132
  }, "strip", z.ZodTypeAny, {
132
- email: string;
133
- wabaExternalId: string;
134
- phoneNumberId: string;
135
- wabaBusinessId?: string | undefined;
136
- clientId?: string | undefined;
137
- channelId?: string | undefined;
133
+ wabaBusinessId?: string | null | undefined;
134
+ wabaExternalId?: string | null | undefined;
135
+ phoneNumberId?: string | null | undefined;
136
+ email?: string | null | undefined;
137
+ clientId?: string | null | undefined;
138
+ channelId?: string | null | undefined;
138
139
  status?: "active" | "pending" | undefined;
139
140
  apiKey?: string | undefined;
140
141
  tier?: "basic" | "regular" | "premium" | undefined;
142
+ integrationType?: "meta" | "360dialog" | undefined;
141
143
  }, {
142
- email: string;
143
- wabaExternalId: string;
144
- phoneNumberId: string;
145
- wabaBusinessId?: string | undefined;
146
- clientId?: string | undefined;
147
- channelId?: string | undefined;
144
+ wabaBusinessId?: string | null | undefined;
145
+ wabaExternalId?: string | null | undefined;
146
+ phoneNumberId?: string | null | undefined;
147
+ email?: string | null | undefined;
148
+ clientId?: string | null | undefined;
149
+ channelId?: string | null | undefined;
148
150
  status?: "active" | "pending" | undefined;
149
151
  apiKey?: string | undefined;
150
152
  tier?: "basic" | "regular" | "premium" | undefined;
153
+ integrationType?: "meta" | "360dialog" | undefined;
151
154
  }>>;
152
155
  vonageCredentials: z.ZodOptional<z.ZodObject<{
153
156
  mobileNumber: z.ZodString;
@@ -172,15 +175,16 @@ export declare const lineContract: {
172
175
  additionalCredentials?: any;
173
176
  senderId?: string | undefined;
174
177
  whatsapp?: {
175
- email: string;
176
- wabaExternalId: string;
177
- phoneNumberId: string;
178
- wabaBusinessId?: string | undefined;
179
- clientId?: string | undefined;
180
- channelId?: string | undefined;
178
+ wabaBusinessId?: string | null | undefined;
179
+ wabaExternalId?: string | null | undefined;
180
+ phoneNumberId?: string | null | undefined;
181
+ email?: string | null | undefined;
182
+ clientId?: string | null | undefined;
183
+ channelId?: string | null | undefined;
181
184
  status?: "active" | "pending" | undefined;
182
185
  apiKey?: string | undefined;
183
186
  tier?: "basic" | "regular" | "premium" | undefined;
187
+ integrationType?: "meta" | "360dialog" | undefined;
184
188
  } | undefined;
185
189
  vonageCredentials?: {
186
190
  apiKey: string;
@@ -197,15 +201,16 @@ export declare const lineContract: {
197
201
  additionalCredentials?: any;
198
202
  senderId?: string | undefined;
199
203
  whatsapp?: {
200
- email: string;
201
- wabaExternalId: string;
202
- phoneNumberId: string;
203
- wabaBusinessId?: string | undefined;
204
- clientId?: string | undefined;
205
- channelId?: string | undefined;
204
+ wabaBusinessId?: string | null | undefined;
205
+ wabaExternalId?: string | null | undefined;
206
+ phoneNumberId?: string | null | undefined;
207
+ email?: string | null | undefined;
208
+ clientId?: string | null | undefined;
209
+ channelId?: string | null | undefined;
206
210
  status?: "active" | "pending" | undefined;
207
211
  apiKey?: string | undefined;
208
212
  tier?: "basic" | "regular" | "premium" | undefined;
213
+ integrationType?: "meta" | "360dialog" | undefined;
209
214
  } | undefined;
210
215
  vonageCredentials?: {
211
216
  apiKey: string;
@@ -252,15 +257,16 @@ export declare const lineContract: {
252
257
  additionalCredentials?: any;
253
258
  senderId?: string | undefined;
254
259
  whatsapp?: {
255
- email: string;
256
- wabaExternalId: string;
257
- phoneNumberId: string;
258
- wabaBusinessId?: string | undefined;
259
- clientId?: string | undefined;
260
- channelId?: string | undefined;
260
+ wabaBusinessId?: string | null | undefined;
261
+ wabaExternalId?: string | null | undefined;
262
+ phoneNumberId?: string | null | undefined;
263
+ email?: string | null | undefined;
264
+ clientId?: string | null | undefined;
265
+ channelId?: string | null | undefined;
261
266
  status?: "active" | "pending" | undefined;
262
267
  apiKey?: string | undefined;
263
268
  tier?: "basic" | "regular" | "premium" | undefined;
269
+ integrationType?: "meta" | "360dialog" | undefined;
264
270
  } | undefined;
265
271
  vonageCredentials?: {
266
272
  apiKey: string;
@@ -295,15 +301,16 @@ export declare const lineContract: {
295
301
  additionalCredentials?: any;
296
302
  senderId?: string | undefined;
297
303
  whatsapp?: {
298
- email: string;
299
- wabaExternalId: string;
300
- phoneNumberId: string;
301
- wabaBusinessId?: string | undefined;
302
- clientId?: string | undefined;
303
- channelId?: string | undefined;
304
+ wabaBusinessId?: string | null | undefined;
305
+ wabaExternalId?: string | null | undefined;
306
+ phoneNumberId?: string | null | undefined;
307
+ email?: string | null | undefined;
308
+ clientId?: string | null | undefined;
309
+ channelId?: string | null | undefined;
304
310
  status?: "active" | "pending" | undefined;
305
311
  apiKey?: string | undefined;
306
312
  tier?: "basic" | "regular" | "premium" | undefined;
313
+ integrationType?: "meta" | "360dialog" | undefined;
307
314
  } | undefined;
308
315
  vonageCredentials?: {
309
316
  apiKey: string;
@@ -341,15 +348,16 @@ export declare const lineContract: {
341
348
  additionalCredentials?: any;
342
349
  senderId?: string | undefined;
343
350
  whatsapp?: {
344
- email: string;
345
- wabaExternalId: string;
346
- phoneNumberId: string;
347
- wabaBusinessId?: string | undefined;
348
- clientId?: string | undefined;
349
- channelId?: string | undefined;
351
+ wabaBusinessId?: string | null | undefined;
352
+ wabaExternalId?: string | null | undefined;
353
+ phoneNumberId?: string | null | undefined;
354
+ email?: string | null | undefined;
355
+ clientId?: string | null | undefined;
356
+ channelId?: string | null | undefined;
350
357
  status?: "active" | "pending" | undefined;
351
358
  apiKey?: string | undefined;
352
359
  tier?: "basic" | "regular" | "premium" | undefined;
360
+ integrationType?: "meta" | "360dialog" | undefined;
353
361
  } | undefined;
354
362
  vonageCredentials?: {
355
363
  apiKey: string;
@@ -416,15 +424,16 @@ export declare const lineContract: {
416
424
  additionalCredentials?: any;
417
425
  senderId?: string | undefined;
418
426
  whatsapp?: {
419
- email: string;
420
- wabaExternalId: string;
421
- phoneNumberId: string;
422
- wabaBusinessId?: string | undefined;
423
- clientId?: string | undefined;
424
- channelId?: string | undefined;
427
+ wabaBusinessId?: string | null | undefined;
428
+ wabaExternalId?: string | null | undefined;
429
+ phoneNumberId?: string | null | undefined;
430
+ email?: string | null | undefined;
431
+ clientId?: string | null | undefined;
432
+ channelId?: string | null | undefined;
425
433
  status?: "active" | "pending" | undefined;
426
434
  apiKey?: string | undefined;
427
435
  tier?: "basic" | "regular" | "premium" | undefined;
436
+ integrationType?: "meta" | "360dialog" | undefined;
428
437
  } | undefined;
429
438
  vonageCredentials?: {
430
439
  apiKey: string;
@@ -619,15 +628,16 @@ export declare const lineContract: {
619
628
  additionalCredentials?: any;
620
629
  senderId?: string | undefined;
621
630
  whatsapp?: {
622
- email: string;
623
- wabaExternalId: string;
624
- phoneNumberId: string;
625
- wabaBusinessId?: string | undefined;
626
- clientId?: string | undefined;
627
- channelId?: string | undefined;
631
+ wabaBusinessId?: string | null | undefined;
632
+ wabaExternalId?: string | null | undefined;
633
+ phoneNumberId?: string | null | undefined;
634
+ email?: string | null | undefined;
635
+ clientId?: string | null | undefined;
636
+ channelId?: string | null | undefined;
628
637
  status?: "active" | "pending" | undefined;
629
638
  apiKey?: string | undefined;
630
639
  tier?: "basic" | "regular" | "premium" | undefined;
640
+ integrationType?: "meta" | "360dialog" | undefined;
631
641
  } | undefined;
632
642
  vonageCredentials?: {
633
643
  apiKey: string;
@@ -725,15 +735,16 @@ export declare const lineContract: {
725
735
  additionalCredentials?: any;
726
736
  senderId?: string | undefined;
727
737
  whatsapp?: {
728
- email: string;
729
- wabaExternalId: string;
730
- phoneNumberId: string;
731
- wabaBusinessId?: string | undefined;
732
- clientId?: string | undefined;
733
- channelId?: string | undefined;
738
+ wabaBusinessId?: string | null | undefined;
739
+ wabaExternalId?: string | null | undefined;
740
+ phoneNumberId?: string | null | undefined;
741
+ email?: string | null | undefined;
742
+ clientId?: string | null | undefined;
743
+ channelId?: string | null | undefined;
734
744
  status?: "active" | "pending" | undefined;
735
745
  apiKey?: string | undefined;
736
746
  tier?: "basic" | "regular" | "premium" | undefined;
747
+ integrationType?: "meta" | "360dialog" | undefined;
737
748
  } | undefined;
738
749
  vonageCredentials?: {
739
750
  apiKey: string;
@@ -886,35 +897,38 @@ export declare const lineContract: {
886
897
  additionalCredentials: z.ZodOptional<z.ZodAny>;
887
898
  senderId: z.ZodOptional<z.ZodString>;
888
899
  whatsapp: z.ZodOptional<z.ZodObject<{
889
- wabaBusinessId: z.ZodOptional<z.ZodString>;
890
- wabaExternalId: z.ZodString;
891
- phoneNumberId: z.ZodString;
892
- email: z.ZodString;
893
- clientId: z.ZodOptional<z.ZodString>;
894
- channelId: z.ZodOptional<z.ZodString>;
900
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
901
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
902
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
903
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
904
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
905
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
895
906
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
896
907
  apiKey: z.ZodOptional<z.ZodString>;
897
908
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
909
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
898
910
  }, "strip", z.ZodTypeAny, {
899
- email: string;
900
- wabaExternalId: string;
901
- phoneNumberId: string;
902
- wabaBusinessId?: string | undefined;
903
- clientId?: string | undefined;
904
- channelId?: string | undefined;
911
+ wabaBusinessId?: string | null | undefined;
912
+ wabaExternalId?: string | null | undefined;
913
+ phoneNumberId?: string | null | undefined;
914
+ email?: string | null | undefined;
915
+ clientId?: string | null | undefined;
916
+ channelId?: string | null | undefined;
905
917
  status?: "active" | "pending" | undefined;
906
918
  apiKey?: string | undefined;
907
919
  tier?: "basic" | "regular" | "premium" | undefined;
920
+ integrationType?: "meta" | "360dialog" | undefined;
908
921
  }, {
909
- email: string;
910
- wabaExternalId: string;
911
- phoneNumberId: string;
912
- wabaBusinessId?: string | undefined;
913
- clientId?: string | undefined;
914
- channelId?: string | undefined;
922
+ wabaBusinessId?: string | null | undefined;
923
+ wabaExternalId?: string | null | undefined;
924
+ phoneNumberId?: string | null | undefined;
925
+ email?: string | null | undefined;
926
+ clientId?: string | null | undefined;
927
+ channelId?: string | null | undefined;
915
928
  status?: "active" | "pending" | undefined;
916
929
  apiKey?: string | undefined;
917
930
  tier?: "basic" | "regular" | "premium" | undefined;
931
+ integrationType?: "meta" | "360dialog" | undefined;
918
932
  }>>;
919
933
  vonageCredentials: z.ZodOptional<z.ZodObject<{
920
934
  mobileNumber: z.ZodString;
@@ -939,15 +953,16 @@ export declare const lineContract: {
939
953
  additionalCredentials?: any;
940
954
  senderId?: string | undefined;
941
955
  whatsapp?: {
942
- email: string;
943
- wabaExternalId: string;
944
- phoneNumberId: string;
945
- wabaBusinessId?: string | undefined;
946
- clientId?: string | undefined;
947
- channelId?: string | undefined;
956
+ wabaBusinessId?: string | null | undefined;
957
+ wabaExternalId?: string | null | undefined;
958
+ phoneNumberId?: string | null | undefined;
959
+ email?: string | null | undefined;
960
+ clientId?: string | null | undefined;
961
+ channelId?: string | null | undefined;
948
962
  status?: "active" | "pending" | undefined;
949
963
  apiKey?: string | undefined;
950
964
  tier?: "basic" | "regular" | "premium" | undefined;
965
+ integrationType?: "meta" | "360dialog" | undefined;
951
966
  } | undefined;
952
967
  vonageCredentials?: {
953
968
  apiKey: string;
@@ -964,15 +979,16 @@ export declare const lineContract: {
964
979
  additionalCredentials?: any;
965
980
  senderId?: string | undefined;
966
981
  whatsapp?: {
967
- email: string;
968
- wabaExternalId: string;
969
- phoneNumberId: string;
970
- wabaBusinessId?: string | undefined;
971
- clientId?: string | undefined;
972
- channelId?: string | undefined;
982
+ wabaBusinessId?: string | null | undefined;
983
+ wabaExternalId?: string | null | undefined;
984
+ phoneNumberId?: string | null | undefined;
985
+ email?: string | null | undefined;
986
+ clientId?: string | null | undefined;
987
+ channelId?: string | null | undefined;
973
988
  status?: "active" | "pending" | undefined;
974
989
  apiKey?: string | undefined;
975
990
  tier?: "basic" | "regular" | "premium" | undefined;
991
+ integrationType?: "meta" | "360dialog" | undefined;
976
992
  } | undefined;
977
993
  vonageCredentials?: {
978
994
  apiKey: string;
@@ -1019,15 +1035,16 @@ export declare const lineContract: {
1019
1035
  additionalCredentials?: any;
1020
1036
  senderId?: string | undefined;
1021
1037
  whatsapp?: {
1022
- email: string;
1023
- wabaExternalId: string;
1024
- phoneNumberId: string;
1025
- wabaBusinessId?: string | undefined;
1026
- clientId?: string | undefined;
1027
- channelId?: string | undefined;
1038
+ wabaBusinessId?: string | null | undefined;
1039
+ wabaExternalId?: string | null | undefined;
1040
+ phoneNumberId?: string | null | undefined;
1041
+ email?: string | null | undefined;
1042
+ clientId?: string | null | undefined;
1043
+ channelId?: string | null | undefined;
1028
1044
  status?: "active" | "pending" | undefined;
1029
1045
  apiKey?: string | undefined;
1030
1046
  tier?: "basic" | "regular" | "premium" | undefined;
1047
+ integrationType?: "meta" | "360dialog" | undefined;
1031
1048
  } | undefined;
1032
1049
  vonageCredentials?: {
1033
1050
  apiKey: string;
@@ -1062,15 +1079,16 @@ export declare const lineContract: {
1062
1079
  additionalCredentials?: any;
1063
1080
  senderId?: string | undefined;
1064
1081
  whatsapp?: {
1065
- email: string;
1066
- wabaExternalId: string;
1067
- phoneNumberId: string;
1068
- wabaBusinessId?: string | undefined;
1069
- clientId?: string | undefined;
1070
- channelId?: string | undefined;
1082
+ wabaBusinessId?: string | null | undefined;
1083
+ wabaExternalId?: string | null | undefined;
1084
+ phoneNumberId?: string | null | undefined;
1085
+ email?: string | null | undefined;
1086
+ clientId?: string | null | undefined;
1087
+ channelId?: string | null | undefined;
1071
1088
  status?: "active" | "pending" | undefined;
1072
1089
  apiKey?: string | undefined;
1073
1090
  tier?: "basic" | "regular" | "premium" | undefined;
1091
+ integrationType?: "meta" | "360dialog" | undefined;
1074
1092
  } | undefined;
1075
1093
  vonageCredentials?: {
1076
1094
  apiKey: string;
@@ -1107,15 +1125,16 @@ export declare const lineContract: {
1107
1125
  additionalCredentials?: any;
1108
1126
  senderId?: string | undefined;
1109
1127
  whatsapp?: {
1110
- email: string;
1111
- wabaExternalId: string;
1112
- phoneNumberId: string;
1113
- wabaBusinessId?: string | undefined;
1114
- clientId?: string | undefined;
1115
- channelId?: string | undefined;
1128
+ wabaBusinessId?: string | null | undefined;
1129
+ wabaExternalId?: string | null | undefined;
1130
+ phoneNumberId?: string | null | undefined;
1131
+ email?: string | null | undefined;
1132
+ clientId?: string | null | undefined;
1133
+ channelId?: string | null | undefined;
1116
1134
  status?: "active" | "pending" | undefined;
1117
1135
  apiKey?: string | undefined;
1118
1136
  tier?: "basic" | "regular" | "premium" | undefined;
1137
+ integrationType?: "meta" | "360dialog" | undefined;
1119
1138
  } | undefined;
1120
1139
  vonageCredentials?: {
1121
1140
  apiKey: string;
@@ -1153,15 +1172,16 @@ export declare const lineContract: {
1153
1172
  additionalCredentials?: any;
1154
1173
  senderId?: string | undefined;
1155
1174
  whatsapp?: {
1156
- email: string;
1157
- wabaExternalId: string;
1158
- phoneNumberId: string;
1159
- wabaBusinessId?: string | undefined;
1160
- clientId?: string | undefined;
1161
- channelId?: string | undefined;
1175
+ wabaBusinessId?: string | null | undefined;
1176
+ wabaExternalId?: string | null | undefined;
1177
+ phoneNumberId?: string | null | undefined;
1178
+ email?: string | null | undefined;
1179
+ clientId?: string | null | undefined;
1180
+ channelId?: string | null | undefined;
1162
1181
  status?: "active" | "pending" | undefined;
1163
1182
  apiKey?: string | undefined;
1164
1183
  tier?: "basic" | "regular" | "premium" | undefined;
1184
+ integrationType?: "meta" | "360dialog" | undefined;
1165
1185
  } | undefined;
1166
1186
  vonageCredentials?: {
1167
1187
  apiKey: string;
@@ -1348,35 +1368,38 @@ export declare const lineContract: {
1348
1368
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1349
1369
  senderId: z.ZodOptional<z.ZodString>;
1350
1370
  whatsapp: z.ZodOptional<z.ZodObject<{
1351
- wabaBusinessId: z.ZodOptional<z.ZodString>;
1352
- wabaExternalId: z.ZodString;
1353
- phoneNumberId: z.ZodString;
1354
- email: z.ZodString;
1355
- clientId: z.ZodOptional<z.ZodString>;
1356
- channelId: z.ZodOptional<z.ZodString>;
1371
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1372
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1373
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1374
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1375
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1376
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1357
1377
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1358
1378
  apiKey: z.ZodOptional<z.ZodString>;
1359
1379
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1380
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
1360
1381
  }, "strip", z.ZodTypeAny, {
1361
- email: string;
1362
- wabaExternalId: string;
1363
- phoneNumberId: string;
1364
- wabaBusinessId?: string | undefined;
1365
- clientId?: string | undefined;
1366
- channelId?: string | undefined;
1382
+ wabaBusinessId?: string | null | undefined;
1383
+ wabaExternalId?: string | null | undefined;
1384
+ phoneNumberId?: string | null | undefined;
1385
+ email?: string | null | undefined;
1386
+ clientId?: string | null | undefined;
1387
+ channelId?: string | null | undefined;
1367
1388
  status?: "active" | "pending" | undefined;
1368
1389
  apiKey?: string | undefined;
1369
1390
  tier?: "basic" | "regular" | "premium" | undefined;
1391
+ integrationType?: "meta" | "360dialog" | undefined;
1370
1392
  }, {
1371
- email: string;
1372
- wabaExternalId: string;
1373
- phoneNumberId: string;
1374
- wabaBusinessId?: string | undefined;
1375
- clientId?: string | undefined;
1376
- channelId?: string | undefined;
1393
+ wabaBusinessId?: string | null | undefined;
1394
+ wabaExternalId?: string | null | undefined;
1395
+ phoneNumberId?: string | null | undefined;
1396
+ email?: string | null | undefined;
1397
+ clientId?: string | null | undefined;
1398
+ channelId?: string | null | undefined;
1377
1399
  status?: "active" | "pending" | undefined;
1378
1400
  apiKey?: string | undefined;
1379
1401
  tier?: "basic" | "regular" | "premium" | undefined;
1402
+ integrationType?: "meta" | "360dialog" | undefined;
1380
1403
  }>>;
1381
1404
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1382
1405
  mobileNumber: z.ZodString;
@@ -1401,15 +1424,16 @@ export declare const lineContract: {
1401
1424
  additionalCredentials?: any;
1402
1425
  senderId?: string | undefined;
1403
1426
  whatsapp?: {
1404
- email: string;
1405
- wabaExternalId: string;
1406
- phoneNumberId: string;
1407
- wabaBusinessId?: string | undefined;
1408
- clientId?: string | undefined;
1409
- channelId?: string | undefined;
1427
+ wabaBusinessId?: string | null | undefined;
1428
+ wabaExternalId?: string | null | undefined;
1429
+ phoneNumberId?: string | null | undefined;
1430
+ email?: string | null | undefined;
1431
+ clientId?: string | null | undefined;
1432
+ channelId?: string | null | undefined;
1410
1433
  status?: "active" | "pending" | undefined;
1411
1434
  apiKey?: string | undefined;
1412
1435
  tier?: "basic" | "regular" | "premium" | undefined;
1436
+ integrationType?: "meta" | "360dialog" | undefined;
1413
1437
  } | undefined;
1414
1438
  vonageCredentials?: {
1415
1439
  apiKey: string;
@@ -1426,15 +1450,16 @@ export declare const lineContract: {
1426
1450
  additionalCredentials?: any;
1427
1451
  senderId?: string | undefined;
1428
1452
  whatsapp?: {
1429
- email: string;
1430
- wabaExternalId: string;
1431
- phoneNumberId: string;
1432
- wabaBusinessId?: string | undefined;
1433
- clientId?: string | undefined;
1434
- channelId?: string | undefined;
1453
+ wabaBusinessId?: string | null | undefined;
1454
+ wabaExternalId?: string | null | undefined;
1455
+ phoneNumberId?: string | null | undefined;
1456
+ email?: string | null | undefined;
1457
+ clientId?: string | null | undefined;
1458
+ channelId?: string | null | undefined;
1435
1459
  status?: "active" | "pending" | undefined;
1436
1460
  apiKey?: string | undefined;
1437
1461
  tier?: "basic" | "regular" | "premium" | undefined;
1462
+ integrationType?: "meta" | "360dialog" | undefined;
1438
1463
  } | undefined;
1439
1464
  vonageCredentials?: {
1440
1465
  apiKey: string;
@@ -1481,15 +1506,16 @@ export declare const lineContract: {
1481
1506
  additionalCredentials?: any;
1482
1507
  senderId?: string | undefined;
1483
1508
  whatsapp?: {
1484
- email: string;
1485
- wabaExternalId: string;
1486
- phoneNumberId: string;
1487
- wabaBusinessId?: string | undefined;
1488
- clientId?: string | undefined;
1489
- channelId?: string | undefined;
1509
+ wabaBusinessId?: string | null | undefined;
1510
+ wabaExternalId?: string | null | undefined;
1511
+ phoneNumberId?: string | null | undefined;
1512
+ email?: string | null | undefined;
1513
+ clientId?: string | null | undefined;
1514
+ channelId?: string | null | undefined;
1490
1515
  status?: "active" | "pending" | undefined;
1491
1516
  apiKey?: string | undefined;
1492
1517
  tier?: "basic" | "regular" | "premium" | undefined;
1518
+ integrationType?: "meta" | "360dialog" | undefined;
1493
1519
  } | undefined;
1494
1520
  vonageCredentials?: {
1495
1521
  apiKey: string;
@@ -1524,15 +1550,16 @@ export declare const lineContract: {
1524
1550
  additionalCredentials?: any;
1525
1551
  senderId?: string | undefined;
1526
1552
  whatsapp?: {
1527
- email: string;
1528
- wabaExternalId: string;
1529
- phoneNumberId: string;
1530
- wabaBusinessId?: string | undefined;
1531
- clientId?: string | undefined;
1532
- channelId?: string | undefined;
1553
+ wabaBusinessId?: string | null | undefined;
1554
+ wabaExternalId?: string | null | undefined;
1555
+ phoneNumberId?: string | null | undefined;
1556
+ email?: string | null | undefined;
1557
+ clientId?: string | null | undefined;
1558
+ channelId?: string | null | undefined;
1533
1559
  status?: "active" | "pending" | undefined;
1534
1560
  apiKey?: string | undefined;
1535
1561
  tier?: "basic" | "regular" | "premium" | undefined;
1562
+ integrationType?: "meta" | "360dialog" | undefined;
1536
1563
  } | undefined;
1537
1564
  vonageCredentials?: {
1538
1565
  apiKey: string;
@@ -1572,15 +1599,16 @@ export declare const lineContract: {
1572
1599
  additionalCredentials?: any;
1573
1600
  senderId?: string | undefined;
1574
1601
  whatsapp?: {
1575
- email: string;
1576
- wabaExternalId: string;
1577
- phoneNumberId: string;
1578
- wabaBusinessId?: string | undefined;
1579
- clientId?: string | undefined;
1580
- channelId?: string | undefined;
1602
+ wabaBusinessId?: string | null | undefined;
1603
+ wabaExternalId?: string | null | undefined;
1604
+ phoneNumberId?: string | null | undefined;
1605
+ email?: string | null | undefined;
1606
+ clientId?: string | null | undefined;
1607
+ channelId?: string | null | undefined;
1581
1608
  status?: "active" | "pending" | undefined;
1582
1609
  apiKey?: string | undefined;
1583
1610
  tier?: "basic" | "regular" | "premium" | undefined;
1611
+ integrationType?: "meta" | "360dialog" | undefined;
1584
1612
  } | undefined;
1585
1613
  vonageCredentials?: {
1586
1614
  apiKey: string;
@@ -1659,15 +1687,16 @@ export declare const lineContract: {
1659
1687
  additionalCredentials?: any;
1660
1688
  senderId?: string | undefined;
1661
1689
  whatsapp?: {
1662
- email: string;
1663
- wabaExternalId: string;
1664
- phoneNumberId: string;
1665
- wabaBusinessId?: string | undefined;
1666
- clientId?: string | undefined;
1667
- channelId?: string | undefined;
1690
+ wabaBusinessId?: string | null | undefined;
1691
+ wabaExternalId?: string | null | undefined;
1692
+ phoneNumberId?: string | null | undefined;
1693
+ email?: string | null | undefined;
1694
+ clientId?: string | null | undefined;
1695
+ channelId?: string | null | undefined;
1668
1696
  status?: "active" | "pending" | undefined;
1669
1697
  apiKey?: string | undefined;
1670
1698
  tier?: "basic" | "regular" | "premium" | undefined;
1699
+ integrationType?: "meta" | "360dialog" | undefined;
1671
1700
  } | undefined;
1672
1701
  vonageCredentials?: {
1673
1702
  apiKey: string;
@@ -1914,15 +1943,16 @@ export declare const lineContract: {
1914
1943
  additionalCredentials?: any;
1915
1944
  senderId?: string | undefined;
1916
1945
  whatsapp?: {
1917
- email: string;
1918
- wabaExternalId: string;
1919
- phoneNumberId: string;
1920
- wabaBusinessId?: string | undefined;
1921
- clientId?: string | undefined;
1922
- channelId?: string | undefined;
1946
+ wabaBusinessId?: string | null | undefined;
1947
+ wabaExternalId?: string | null | undefined;
1948
+ phoneNumberId?: string | null | undefined;
1949
+ email?: string | null | undefined;
1950
+ clientId?: string | null | undefined;
1951
+ channelId?: string | null | undefined;
1923
1952
  status?: "active" | "pending" | undefined;
1924
1953
  apiKey?: string | undefined;
1925
1954
  tier?: "basic" | "regular" | "premium" | undefined;
1955
+ integrationType?: "meta" | "360dialog" | undefined;
1926
1956
  } | undefined;
1927
1957
  vonageCredentials?: {
1928
1958
  apiKey: string;
@@ -2040,15 +2070,16 @@ export declare const lineContract: {
2040
2070
  additionalCredentials?: any;
2041
2071
  senderId?: string | undefined;
2042
2072
  whatsapp?: {
2043
- email: string;
2044
- wabaExternalId: string;
2045
- phoneNumberId: string;
2046
- wabaBusinessId?: string | undefined;
2047
- clientId?: string | undefined;
2048
- channelId?: string | undefined;
2073
+ wabaBusinessId?: string | null | undefined;
2074
+ wabaExternalId?: string | null | undefined;
2075
+ phoneNumberId?: string | null | undefined;
2076
+ email?: string | null | undefined;
2077
+ clientId?: string | null | undefined;
2078
+ channelId?: string | null | undefined;
2049
2079
  status?: "active" | "pending" | undefined;
2050
2080
  apiKey?: string | undefined;
2051
2081
  tier?: "basic" | "regular" | "premium" | undefined;
2082
+ integrationType?: "meta" | "360dialog" | undefined;
2052
2083
  } | undefined;
2053
2084
  vonageCredentials?: {
2054
2085
  apiKey: string;
@@ -4061,35 +4092,38 @@ export declare const lineContract: {
4061
4092
  additionalCredentials: z.ZodOptional<z.ZodAny>;
4062
4093
  senderId: z.ZodOptional<z.ZodString>;
4063
4094
  whatsapp: z.ZodOptional<z.ZodObject<{
4064
- wabaBusinessId: z.ZodOptional<z.ZodString>;
4065
- wabaExternalId: z.ZodString;
4066
- phoneNumberId: z.ZodString;
4067
- email: z.ZodString;
4068
- clientId: z.ZodOptional<z.ZodString>;
4069
- channelId: z.ZodOptional<z.ZodString>;
4095
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4096
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4097
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4098
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4099
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4100
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4070
4101
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
4071
4102
  apiKey: z.ZodOptional<z.ZodString>;
4072
4103
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
4104
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
4073
4105
  }, "strip", z.ZodTypeAny, {
4074
- email: string;
4075
- wabaExternalId: string;
4076
- phoneNumberId: string;
4077
- wabaBusinessId?: string | undefined;
4078
- clientId?: string | undefined;
4079
- channelId?: string | undefined;
4106
+ wabaBusinessId?: string | null | undefined;
4107
+ wabaExternalId?: string | null | undefined;
4108
+ phoneNumberId?: string | null | undefined;
4109
+ email?: string | null | undefined;
4110
+ clientId?: string | null | undefined;
4111
+ channelId?: string | null | undefined;
4080
4112
  status?: "active" | "pending" | undefined;
4081
4113
  apiKey?: string | undefined;
4082
4114
  tier?: "basic" | "regular" | "premium" | undefined;
4115
+ integrationType?: "meta" | "360dialog" | undefined;
4083
4116
  }, {
4084
- email: string;
4085
- wabaExternalId: string;
4086
- phoneNumberId: string;
4087
- wabaBusinessId?: string | undefined;
4088
- clientId?: string | undefined;
4089
- channelId?: string | undefined;
4117
+ wabaBusinessId?: string | null | undefined;
4118
+ wabaExternalId?: string | null | undefined;
4119
+ phoneNumberId?: string | null | undefined;
4120
+ email?: string | null | undefined;
4121
+ clientId?: string | null | undefined;
4122
+ channelId?: string | null | undefined;
4090
4123
  status?: "active" | "pending" | undefined;
4091
4124
  apiKey?: string | undefined;
4092
4125
  tier?: "basic" | "regular" | "premium" | undefined;
4126
+ integrationType?: "meta" | "360dialog" | undefined;
4093
4127
  }>>;
4094
4128
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4095
4129
  mobileNumber: z.ZodString;
@@ -4114,15 +4148,16 @@ export declare const lineContract: {
4114
4148
  additionalCredentials?: any;
4115
4149
  senderId?: string | undefined;
4116
4150
  whatsapp?: {
4117
- email: string;
4118
- wabaExternalId: string;
4119
- phoneNumberId: string;
4120
- wabaBusinessId?: string | undefined;
4121
- clientId?: string | undefined;
4122
- channelId?: string | undefined;
4151
+ wabaBusinessId?: string | null | undefined;
4152
+ wabaExternalId?: string | null | undefined;
4153
+ phoneNumberId?: string | null | undefined;
4154
+ email?: string | null | undefined;
4155
+ clientId?: string | null | undefined;
4156
+ channelId?: string | null | undefined;
4123
4157
  status?: "active" | "pending" | undefined;
4124
4158
  apiKey?: string | undefined;
4125
4159
  tier?: "basic" | "regular" | "premium" | undefined;
4160
+ integrationType?: "meta" | "360dialog" | undefined;
4126
4161
  } | undefined;
4127
4162
  vonageCredentials?: {
4128
4163
  apiKey: string;
@@ -4139,15 +4174,16 @@ export declare const lineContract: {
4139
4174
  additionalCredentials?: any;
4140
4175
  senderId?: string | undefined;
4141
4176
  whatsapp?: {
4142
- email: string;
4143
- wabaExternalId: string;
4144
- phoneNumberId: string;
4145
- wabaBusinessId?: string | undefined;
4146
- clientId?: string | undefined;
4147
- channelId?: string | undefined;
4177
+ wabaBusinessId?: string | null | undefined;
4178
+ wabaExternalId?: string | null | undefined;
4179
+ phoneNumberId?: string | null | undefined;
4180
+ email?: string | null | undefined;
4181
+ clientId?: string | null | undefined;
4182
+ channelId?: string | null | undefined;
4148
4183
  status?: "active" | "pending" | undefined;
4149
4184
  apiKey?: string | undefined;
4150
4185
  tier?: "basic" | "regular" | "premium" | undefined;
4186
+ integrationType?: "meta" | "360dialog" | undefined;
4151
4187
  } | undefined;
4152
4188
  vonageCredentials?: {
4153
4189
  apiKey: string;
@@ -4398,15 +4434,16 @@ export declare const lineContract: {
4398
4434
  additionalCredentials?: any;
4399
4435
  senderId?: string | undefined;
4400
4436
  whatsapp?: {
4401
- email: string;
4402
- wabaExternalId: string;
4403
- phoneNumberId: string;
4404
- wabaBusinessId?: string | undefined;
4405
- clientId?: string | undefined;
4406
- channelId?: string | undefined;
4437
+ wabaBusinessId?: string | null | undefined;
4438
+ wabaExternalId?: string | null | undefined;
4439
+ phoneNumberId?: string | null | undefined;
4440
+ email?: string | null | undefined;
4441
+ clientId?: string | null | undefined;
4442
+ channelId?: string | null | undefined;
4407
4443
  status?: "active" | "pending" | undefined;
4408
4444
  apiKey?: string | undefined;
4409
4445
  tier?: "basic" | "regular" | "premium" | undefined;
4446
+ integrationType?: "meta" | "360dialog" | undefined;
4410
4447
  } | undefined;
4411
4448
  vonageCredentials?: {
4412
4449
  apiKey: string;
@@ -4488,15 +4525,16 @@ export declare const lineContract: {
4488
4525
  additionalCredentials?: any;
4489
4526
  senderId?: string | undefined;
4490
4527
  whatsapp?: {
4491
- email: string;
4492
- wabaExternalId: string;
4493
- phoneNumberId: string;
4494
- wabaBusinessId?: string | undefined;
4495
- clientId?: string | undefined;
4496
- channelId?: string | undefined;
4528
+ wabaBusinessId?: string | null | undefined;
4529
+ wabaExternalId?: string | null | undefined;
4530
+ phoneNumberId?: string | null | undefined;
4531
+ email?: string | null | undefined;
4532
+ clientId?: string | null | undefined;
4533
+ channelId?: string | null | undefined;
4497
4534
  status?: "active" | "pending" | undefined;
4498
4535
  apiKey?: string | undefined;
4499
4536
  tier?: "basic" | "regular" | "premium" | undefined;
4537
+ integrationType?: "meta" | "360dialog" | undefined;
4500
4538
  } | undefined;
4501
4539
  vonageCredentials?: {
4502
4540
  apiKey: string;
@@ -5142,15 +5180,16 @@ export declare const lineContract: {
5142
5180
  additionalCredentials?: any;
5143
5181
  senderId?: string | undefined;
5144
5182
  whatsapp?: {
5145
- email: string;
5146
- wabaExternalId: string;
5147
- phoneNumberId: string;
5148
- wabaBusinessId?: string | undefined;
5149
- clientId?: string | undefined;
5150
- channelId?: string | undefined;
5183
+ wabaBusinessId?: string | null | undefined;
5184
+ wabaExternalId?: string | null | undefined;
5185
+ phoneNumberId?: string | null | undefined;
5186
+ email?: string | null | undefined;
5187
+ clientId?: string | null | undefined;
5188
+ channelId?: string | null | undefined;
5151
5189
  status?: "active" | "pending" | undefined;
5152
5190
  apiKey?: string | undefined;
5153
5191
  tier?: "basic" | "regular" | "premium" | undefined;
5192
+ integrationType?: "meta" | "360dialog" | undefined;
5154
5193
  } | undefined;
5155
5194
  vonageCredentials?: {
5156
5195
  apiKey: string;
@@ -5565,15 +5604,16 @@ export declare const lineContract: {
5565
5604
  additionalCredentials?: any;
5566
5605
  senderId?: string | undefined;
5567
5606
  whatsapp?: {
5568
- email: string;
5569
- wabaExternalId: string;
5570
- phoneNumberId: string;
5571
- wabaBusinessId?: string | undefined;
5572
- clientId?: string | undefined;
5573
- channelId?: string | undefined;
5607
+ wabaBusinessId?: string | null | undefined;
5608
+ wabaExternalId?: string | null | undefined;
5609
+ phoneNumberId?: string | null | undefined;
5610
+ email?: string | null | undefined;
5611
+ clientId?: string | null | undefined;
5612
+ channelId?: string | null | undefined;
5574
5613
  status?: "active" | "pending" | undefined;
5575
5614
  apiKey?: string | undefined;
5576
5615
  tier?: "basic" | "regular" | "premium" | undefined;
5616
+ integrationType?: "meta" | "360dialog" | undefined;
5577
5617
  } | undefined;
5578
5618
  vonageCredentials?: {
5579
5619
  apiKey: string;
@@ -8704,35 +8744,38 @@ export declare const lineContract: {
8704
8744
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8705
8745
  senderId: z.ZodOptional<z.ZodString>;
8706
8746
  whatsapp: z.ZodOptional<z.ZodObject<{
8707
- wabaBusinessId: z.ZodOptional<z.ZodString>;
8708
- wabaExternalId: z.ZodString;
8709
- phoneNumberId: z.ZodString;
8710
- email: z.ZodString;
8711
- clientId: z.ZodOptional<z.ZodString>;
8712
- channelId: z.ZodOptional<z.ZodString>;
8747
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8748
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8749
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8750
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8751
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8752
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8713
8753
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
8714
8754
  apiKey: z.ZodOptional<z.ZodString>;
8715
8755
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
8756
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
8716
8757
  }, "strip", z.ZodTypeAny, {
8717
- email: string;
8718
- wabaExternalId: string;
8719
- phoneNumberId: string;
8720
- wabaBusinessId?: string | undefined;
8721
- clientId?: string | undefined;
8722
- channelId?: string | undefined;
8758
+ wabaBusinessId?: string | null | undefined;
8759
+ wabaExternalId?: string | null | undefined;
8760
+ phoneNumberId?: string | null | undefined;
8761
+ email?: string | null | undefined;
8762
+ clientId?: string | null | undefined;
8763
+ channelId?: string | null | undefined;
8723
8764
  status?: "active" | "pending" | undefined;
8724
8765
  apiKey?: string | undefined;
8725
8766
  tier?: "basic" | "regular" | "premium" | undefined;
8767
+ integrationType?: "meta" | "360dialog" | undefined;
8726
8768
  }, {
8727
- email: string;
8728
- wabaExternalId: string;
8729
- phoneNumberId: string;
8730
- wabaBusinessId?: string | undefined;
8731
- clientId?: string | undefined;
8732
- channelId?: string | undefined;
8769
+ wabaBusinessId?: string | null | undefined;
8770
+ wabaExternalId?: string | null | undefined;
8771
+ phoneNumberId?: string | null | undefined;
8772
+ email?: string | null | undefined;
8773
+ clientId?: string | null | undefined;
8774
+ channelId?: string | null | undefined;
8733
8775
  status?: "active" | "pending" | undefined;
8734
8776
  apiKey?: string | undefined;
8735
8777
  tier?: "basic" | "regular" | "premium" | undefined;
8778
+ integrationType?: "meta" | "360dialog" | undefined;
8736
8779
  }>>;
8737
8780
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8738
8781
  mobileNumber: z.ZodString;
@@ -8757,15 +8800,16 @@ export declare const lineContract: {
8757
8800
  additionalCredentials?: any;
8758
8801
  senderId?: string | undefined;
8759
8802
  whatsapp?: {
8760
- email: string;
8761
- wabaExternalId: string;
8762
- phoneNumberId: string;
8763
- wabaBusinessId?: string | undefined;
8764
- clientId?: string | undefined;
8765
- channelId?: string | undefined;
8803
+ wabaBusinessId?: string | null | undefined;
8804
+ wabaExternalId?: string | null | undefined;
8805
+ phoneNumberId?: string | null | undefined;
8806
+ email?: string | null | undefined;
8807
+ clientId?: string | null | undefined;
8808
+ channelId?: string | null | undefined;
8766
8809
  status?: "active" | "pending" | undefined;
8767
8810
  apiKey?: string | undefined;
8768
8811
  tier?: "basic" | "regular" | "premium" | undefined;
8812
+ integrationType?: "meta" | "360dialog" | undefined;
8769
8813
  } | undefined;
8770
8814
  vonageCredentials?: {
8771
8815
  apiKey: string;
@@ -8782,15 +8826,16 @@ export declare const lineContract: {
8782
8826
  additionalCredentials?: any;
8783
8827
  senderId?: string | undefined;
8784
8828
  whatsapp?: {
8785
- email: string;
8786
- wabaExternalId: string;
8787
- phoneNumberId: string;
8788
- wabaBusinessId?: string | undefined;
8789
- clientId?: string | undefined;
8790
- channelId?: string | undefined;
8829
+ wabaBusinessId?: string | null | undefined;
8830
+ wabaExternalId?: string | null | undefined;
8831
+ phoneNumberId?: string | null | undefined;
8832
+ email?: string | null | undefined;
8833
+ clientId?: string | null | undefined;
8834
+ channelId?: string | null | undefined;
8791
8835
  status?: "active" | "pending" | undefined;
8792
8836
  apiKey?: string | undefined;
8793
8837
  tier?: "basic" | "regular" | "premium" | undefined;
8838
+ integrationType?: "meta" | "360dialog" | undefined;
8794
8839
  } | undefined;
8795
8840
  vonageCredentials?: {
8796
8841
  apiKey: string;
@@ -9041,15 +9086,16 @@ export declare const lineContract: {
9041
9086
  additionalCredentials?: any;
9042
9087
  senderId?: string | undefined;
9043
9088
  whatsapp?: {
9044
- email: string;
9045
- wabaExternalId: string;
9046
- phoneNumberId: string;
9047
- wabaBusinessId?: string | undefined;
9048
- clientId?: string | undefined;
9049
- channelId?: string | undefined;
9089
+ wabaBusinessId?: string | null | undefined;
9090
+ wabaExternalId?: string | null | undefined;
9091
+ phoneNumberId?: string | null | undefined;
9092
+ email?: string | null | undefined;
9093
+ clientId?: string | null | undefined;
9094
+ channelId?: string | null | undefined;
9050
9095
  status?: "active" | "pending" | undefined;
9051
9096
  apiKey?: string | undefined;
9052
9097
  tier?: "basic" | "regular" | "premium" | undefined;
9098
+ integrationType?: "meta" | "360dialog" | undefined;
9053
9099
  } | undefined;
9054
9100
  vonageCredentials?: {
9055
9101
  apiKey: string;
@@ -9131,15 +9177,16 @@ export declare const lineContract: {
9131
9177
  additionalCredentials?: any;
9132
9178
  senderId?: string | undefined;
9133
9179
  whatsapp?: {
9134
- email: string;
9135
- wabaExternalId: string;
9136
- phoneNumberId: string;
9137
- wabaBusinessId?: string | undefined;
9138
- clientId?: string | undefined;
9139
- channelId?: string | undefined;
9180
+ wabaBusinessId?: string | null | undefined;
9181
+ wabaExternalId?: string | null | undefined;
9182
+ phoneNumberId?: string | null | undefined;
9183
+ email?: string | null | undefined;
9184
+ clientId?: string | null | undefined;
9185
+ channelId?: string | null | undefined;
9140
9186
  status?: "active" | "pending" | undefined;
9141
9187
  apiKey?: string | undefined;
9142
9188
  tier?: "basic" | "regular" | "premium" | undefined;
9189
+ integrationType?: "meta" | "360dialog" | undefined;
9143
9190
  } | undefined;
9144
9191
  vonageCredentials?: {
9145
9192
  apiKey: string;
@@ -9785,15 +9832,16 @@ export declare const lineContract: {
9785
9832
  additionalCredentials?: any;
9786
9833
  senderId?: string | undefined;
9787
9834
  whatsapp?: {
9788
- email: string;
9789
- wabaExternalId: string;
9790
- phoneNumberId: string;
9791
- wabaBusinessId?: string | undefined;
9792
- clientId?: string | undefined;
9793
- channelId?: string | undefined;
9835
+ wabaBusinessId?: string | null | undefined;
9836
+ wabaExternalId?: string | null | undefined;
9837
+ phoneNumberId?: string | null | undefined;
9838
+ email?: string | null | undefined;
9839
+ clientId?: string | null | undefined;
9840
+ channelId?: string | null | undefined;
9794
9841
  status?: "active" | "pending" | undefined;
9795
9842
  apiKey?: string | undefined;
9796
9843
  tier?: "basic" | "regular" | "premium" | undefined;
9844
+ integrationType?: "meta" | "360dialog" | undefined;
9797
9845
  } | undefined;
9798
9846
  vonageCredentials?: {
9799
9847
  apiKey: string;
@@ -10208,15 +10256,16 @@ export declare const lineContract: {
10208
10256
  additionalCredentials?: any;
10209
10257
  senderId?: string | undefined;
10210
10258
  whatsapp?: {
10211
- email: string;
10212
- wabaExternalId: string;
10213
- phoneNumberId: string;
10214
- wabaBusinessId?: string | undefined;
10215
- clientId?: string | undefined;
10216
- channelId?: string | undefined;
10259
+ wabaBusinessId?: string | null | undefined;
10260
+ wabaExternalId?: string | null | undefined;
10261
+ phoneNumberId?: string | null | undefined;
10262
+ email?: string | null | undefined;
10263
+ clientId?: string | null | undefined;
10264
+ channelId?: string | null | undefined;
10217
10265
  status?: "active" | "pending" | undefined;
10218
10266
  apiKey?: string | undefined;
10219
10267
  tier?: "basic" | "regular" | "premium" | undefined;
10268
+ integrationType?: "meta" | "360dialog" | undefined;
10220
10269
  } | undefined;
10221
10270
  vonageCredentials?: {
10222
10271
  apiKey: string;
@@ -12404,15 +12453,16 @@ export declare const lineContract: {
12404
12453
  additionalCredentials?: any;
12405
12454
  senderId?: string | undefined;
12406
12455
  whatsapp?: {
12407
- email: string;
12408
- wabaExternalId: string;
12409
- phoneNumberId: string;
12410
- wabaBusinessId?: string | undefined;
12411
- clientId?: string | undefined;
12412
- channelId?: string | undefined;
12456
+ wabaBusinessId?: string | null | undefined;
12457
+ wabaExternalId?: string | null | undefined;
12458
+ phoneNumberId?: string | null | undefined;
12459
+ email?: string | null | undefined;
12460
+ clientId?: string | null | undefined;
12461
+ channelId?: string | null | undefined;
12413
12462
  status?: "active" | "pending" | undefined;
12414
12463
  apiKey?: string | undefined;
12415
12464
  tier?: "basic" | "regular" | "premium" | undefined;
12465
+ integrationType?: "meta" | "360dialog" | undefined;
12416
12466
  } | undefined;
12417
12467
  vonageCredentials?: {
12418
12468
  apiKey: string;
@@ -13164,15 +13214,16 @@ export declare const lineContract: {
13164
13214
  additionalCredentials?: any;
13165
13215
  senderId?: string | undefined;
13166
13216
  whatsapp?: {
13167
- email: string;
13168
- wabaExternalId: string;
13169
- phoneNumberId: string;
13170
- wabaBusinessId?: string | undefined;
13171
- clientId?: string | undefined;
13172
- channelId?: string | undefined;
13217
+ wabaBusinessId?: string | null | undefined;
13218
+ wabaExternalId?: string | null | undefined;
13219
+ phoneNumberId?: string | null | undefined;
13220
+ email?: string | null | undefined;
13221
+ clientId?: string | null | undefined;
13222
+ channelId?: string | null | undefined;
13173
13223
  status?: "active" | "pending" | undefined;
13174
13224
  apiKey?: string | undefined;
13175
13225
  tier?: "basic" | "regular" | "premium" | undefined;
13226
+ integrationType?: "meta" | "360dialog" | undefined;
13176
13227
  } | undefined;
13177
13228
  vonageCredentials?: {
13178
13229
  apiKey: string;
@@ -13925,15 +13976,16 @@ export declare const lineContract: {
13925
13976
  additionalCredentials?: any;
13926
13977
  senderId?: string | undefined;
13927
13978
  whatsapp?: {
13928
- email: string;
13929
- wabaExternalId: string;
13930
- phoneNumberId: string;
13931
- wabaBusinessId?: string | undefined;
13932
- clientId?: string | undefined;
13933
- channelId?: string | undefined;
13979
+ wabaBusinessId?: string | null | undefined;
13980
+ wabaExternalId?: string | null | undefined;
13981
+ phoneNumberId?: string | null | undefined;
13982
+ email?: string | null | undefined;
13983
+ clientId?: string | null | undefined;
13984
+ channelId?: string | null | undefined;
13934
13985
  status?: "active" | "pending" | undefined;
13935
13986
  apiKey?: string | undefined;
13936
13987
  tier?: "basic" | "regular" | "premium" | undefined;
13988
+ integrationType?: "meta" | "360dialog" | undefined;
13937
13989
  } | undefined;
13938
13990
  vonageCredentials?: {
13939
13991
  apiKey: string;
@@ -14685,15 +14737,16 @@ export declare const lineContract: {
14685
14737
  additionalCredentials?: any;
14686
14738
  senderId?: string | undefined;
14687
14739
  whatsapp?: {
14688
- email: string;
14689
- wabaExternalId: string;
14690
- phoneNumberId: string;
14691
- wabaBusinessId?: string | undefined;
14692
- clientId?: string | undefined;
14693
- channelId?: string | undefined;
14740
+ wabaBusinessId?: string | null | undefined;
14741
+ wabaExternalId?: string | null | undefined;
14742
+ phoneNumberId?: string | null | undefined;
14743
+ email?: string | null | undefined;
14744
+ clientId?: string | null | undefined;
14745
+ channelId?: string | null | undefined;
14694
14746
  status?: "active" | "pending" | undefined;
14695
14747
  apiKey?: string | undefined;
14696
14748
  tier?: "basic" | "regular" | "premium" | undefined;
14749
+ integrationType?: "meta" | "360dialog" | undefined;
14697
14750
  } | undefined;
14698
14751
  vonageCredentials?: {
14699
14752
  apiKey: string;
@@ -15446,15 +15499,16 @@ export declare const lineContract: {
15446
15499
  additionalCredentials?: any;
15447
15500
  senderId?: string | undefined;
15448
15501
  whatsapp?: {
15449
- email: string;
15450
- wabaExternalId: string;
15451
- phoneNumberId: string;
15452
- wabaBusinessId?: string | undefined;
15453
- clientId?: string | undefined;
15454
- channelId?: string | undefined;
15502
+ wabaBusinessId?: string | null | undefined;
15503
+ wabaExternalId?: string | null | undefined;
15504
+ phoneNumberId?: string | null | undefined;
15505
+ email?: string | null | undefined;
15506
+ clientId?: string | null | undefined;
15507
+ channelId?: string | null | undefined;
15455
15508
  status?: "active" | "pending" | undefined;
15456
15509
  apiKey?: string | undefined;
15457
15510
  tier?: "basic" | "regular" | "premium" | undefined;
15511
+ integrationType?: "meta" | "360dialog" | undefined;
15458
15512
  } | undefined;
15459
15513
  vonageCredentials?: {
15460
15514
  apiKey: string;
@@ -16206,15 +16260,16 @@ export declare const lineContract: {
16206
16260
  additionalCredentials?: any;
16207
16261
  senderId?: string | undefined;
16208
16262
  whatsapp?: {
16209
- email: string;
16210
- wabaExternalId: string;
16211
- phoneNumberId: string;
16212
- wabaBusinessId?: string | undefined;
16213
- clientId?: string | undefined;
16214
- channelId?: string | undefined;
16263
+ wabaBusinessId?: string | null | undefined;
16264
+ wabaExternalId?: string | null | undefined;
16265
+ phoneNumberId?: string | null | undefined;
16266
+ email?: string | null | undefined;
16267
+ clientId?: string | null | undefined;
16268
+ channelId?: string | null | undefined;
16215
16269
  status?: "active" | "pending" | undefined;
16216
16270
  apiKey?: string | undefined;
16217
16271
  tier?: "basic" | "regular" | "premium" | undefined;
16272
+ integrationType?: "meta" | "360dialog" | undefined;
16218
16273
  } | undefined;
16219
16274
  vonageCredentials?: {
16220
16275
  apiKey: string;
@@ -16969,15 +17024,16 @@ export declare const lineContract: {
16969
17024
  additionalCredentials?: any;
16970
17025
  senderId?: string | undefined;
16971
17026
  whatsapp?: {
16972
- email: string;
16973
- wabaExternalId: string;
16974
- phoneNumberId: string;
16975
- wabaBusinessId?: string | undefined;
16976
- clientId?: string | undefined;
16977
- channelId?: string | undefined;
17027
+ wabaBusinessId?: string | null | undefined;
17028
+ wabaExternalId?: string | null | undefined;
17029
+ phoneNumberId?: string | null | undefined;
17030
+ email?: string | null | undefined;
17031
+ clientId?: string | null | undefined;
17032
+ channelId?: string | null | undefined;
16978
17033
  status?: "active" | "pending" | undefined;
16979
17034
  apiKey?: string | undefined;
16980
17035
  tier?: "basic" | "regular" | "premium" | undefined;
17036
+ integrationType?: "meta" | "360dialog" | undefined;
16981
17037
  } | undefined;
16982
17038
  vonageCredentials?: {
16983
17039
  apiKey: string;
@@ -17729,15 +17785,16 @@ export declare const lineContract: {
17729
17785
  additionalCredentials?: any;
17730
17786
  senderId?: string | undefined;
17731
17787
  whatsapp?: {
17732
- email: string;
17733
- wabaExternalId: string;
17734
- phoneNumberId: string;
17735
- wabaBusinessId?: string | undefined;
17736
- clientId?: string | undefined;
17737
- channelId?: string | undefined;
17788
+ wabaBusinessId?: string | null | undefined;
17789
+ wabaExternalId?: string | null | undefined;
17790
+ phoneNumberId?: string | null | undefined;
17791
+ email?: string | null | undefined;
17792
+ clientId?: string | null | undefined;
17793
+ channelId?: string | null | undefined;
17738
17794
  status?: "active" | "pending" | undefined;
17739
17795
  apiKey?: string | undefined;
17740
17796
  tier?: "basic" | "regular" | "premium" | undefined;
17797
+ integrationType?: "meta" | "360dialog" | undefined;
17741
17798
  } | undefined;
17742
17799
  vonageCredentials?: {
17743
17800
  apiKey: string;
@@ -18493,15 +18550,16 @@ export declare const lineContract: {
18493
18550
  additionalCredentials?: any;
18494
18551
  senderId?: string | undefined;
18495
18552
  whatsapp?: {
18496
- email: string;
18497
- wabaExternalId: string;
18498
- phoneNumberId: string;
18499
- wabaBusinessId?: string | undefined;
18500
- clientId?: string | undefined;
18501
- channelId?: string | undefined;
18553
+ wabaBusinessId?: string | null | undefined;
18554
+ wabaExternalId?: string | null | undefined;
18555
+ phoneNumberId?: string | null | undefined;
18556
+ email?: string | null | undefined;
18557
+ clientId?: string | null | undefined;
18558
+ channelId?: string | null | undefined;
18502
18559
  status?: "active" | "pending" | undefined;
18503
18560
  apiKey?: string | undefined;
18504
18561
  tier?: "basic" | "regular" | "premium" | undefined;
18562
+ integrationType?: "meta" | "360dialog" | undefined;
18505
18563
  } | undefined;
18506
18564
  vonageCredentials?: {
18507
18565
  apiKey: string;
@@ -19253,15 +19311,16 @@ export declare const lineContract: {
19253
19311
  additionalCredentials?: any;
19254
19312
  senderId?: string | undefined;
19255
19313
  whatsapp?: {
19256
- email: string;
19257
- wabaExternalId: string;
19258
- phoneNumberId: string;
19259
- wabaBusinessId?: string | undefined;
19260
- clientId?: string | undefined;
19261
- channelId?: string | undefined;
19314
+ wabaBusinessId?: string | null | undefined;
19315
+ wabaExternalId?: string | null | undefined;
19316
+ phoneNumberId?: string | null | undefined;
19317
+ email?: string | null | undefined;
19318
+ clientId?: string | null | undefined;
19319
+ channelId?: string | null | undefined;
19262
19320
  status?: "active" | "pending" | undefined;
19263
19321
  apiKey?: string | undefined;
19264
19322
  tier?: "basic" | "regular" | "premium" | undefined;
19323
+ integrationType?: "meta" | "360dialog" | undefined;
19265
19324
  } | undefined;
19266
19325
  vonageCredentials?: {
19267
19326
  apiKey: string;
@@ -19919,35 +19978,38 @@ export declare const lineContract: {
19919
19978
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19920
19979
  senderId: z.ZodOptional<z.ZodString>;
19921
19980
  whatsapp: z.ZodOptional<z.ZodObject<{
19922
- wabaBusinessId: z.ZodOptional<z.ZodString>;
19923
- wabaExternalId: z.ZodString;
19924
- phoneNumberId: z.ZodString;
19925
- email: z.ZodString;
19926
- clientId: z.ZodOptional<z.ZodString>;
19927
- channelId: z.ZodOptional<z.ZodString>;
19981
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19982
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19983
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19984
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19985
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19986
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19928
19987
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19929
19988
  apiKey: z.ZodOptional<z.ZodString>;
19930
19989
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19990
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
19931
19991
  }, "strip", z.ZodTypeAny, {
19932
- email: string;
19933
- wabaExternalId: string;
19934
- phoneNumberId: string;
19935
- wabaBusinessId?: string | undefined;
19936
- clientId?: string | undefined;
19937
- channelId?: string | undefined;
19992
+ wabaBusinessId?: string | null | undefined;
19993
+ wabaExternalId?: string | null | undefined;
19994
+ phoneNumberId?: string | null | undefined;
19995
+ email?: string | null | undefined;
19996
+ clientId?: string | null | undefined;
19997
+ channelId?: string | null | undefined;
19938
19998
  status?: "active" | "pending" | undefined;
19939
19999
  apiKey?: string | undefined;
19940
20000
  tier?: "basic" | "regular" | "premium" | undefined;
20001
+ integrationType?: "meta" | "360dialog" | undefined;
19941
20002
  }, {
19942
- email: string;
19943
- wabaExternalId: string;
19944
- phoneNumberId: string;
19945
- wabaBusinessId?: string | undefined;
19946
- clientId?: string | undefined;
19947
- channelId?: string | undefined;
20003
+ wabaBusinessId?: string | null | undefined;
20004
+ wabaExternalId?: string | null | undefined;
20005
+ phoneNumberId?: string | null | undefined;
20006
+ email?: string | null | undefined;
20007
+ clientId?: string | null | undefined;
20008
+ channelId?: string | null | undefined;
19948
20009
  status?: "active" | "pending" | undefined;
19949
20010
  apiKey?: string | undefined;
19950
20011
  tier?: "basic" | "regular" | "premium" | undefined;
20012
+ integrationType?: "meta" | "360dialog" | undefined;
19951
20013
  }>>;
19952
20014
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19953
20015
  mobileNumber: z.ZodString;
@@ -19972,15 +20034,16 @@ export declare const lineContract: {
19972
20034
  additionalCredentials?: any;
19973
20035
  senderId?: string | undefined;
19974
20036
  whatsapp?: {
19975
- email: string;
19976
- wabaExternalId: string;
19977
- phoneNumberId: string;
19978
- wabaBusinessId?: string | undefined;
19979
- clientId?: string | undefined;
19980
- channelId?: string | undefined;
20037
+ wabaBusinessId?: string | null | undefined;
20038
+ wabaExternalId?: string | null | undefined;
20039
+ phoneNumberId?: string | null | undefined;
20040
+ email?: string | null | undefined;
20041
+ clientId?: string | null | undefined;
20042
+ channelId?: string | null | undefined;
19981
20043
  status?: "active" | "pending" | undefined;
19982
20044
  apiKey?: string | undefined;
19983
20045
  tier?: "basic" | "regular" | "premium" | undefined;
20046
+ integrationType?: "meta" | "360dialog" | undefined;
19984
20047
  } | undefined;
19985
20048
  vonageCredentials?: {
19986
20049
  apiKey: string;
@@ -19997,15 +20060,16 @@ export declare const lineContract: {
19997
20060
  additionalCredentials?: any;
19998
20061
  senderId?: string | undefined;
19999
20062
  whatsapp?: {
20000
- email: string;
20001
- wabaExternalId: string;
20002
- phoneNumberId: string;
20003
- wabaBusinessId?: string | undefined;
20004
- clientId?: string | undefined;
20005
- channelId?: string | undefined;
20063
+ wabaBusinessId?: string | null | undefined;
20064
+ wabaExternalId?: string | null | undefined;
20065
+ phoneNumberId?: string | null | undefined;
20066
+ email?: string | null | undefined;
20067
+ clientId?: string | null | undefined;
20068
+ channelId?: string | null | undefined;
20006
20069
  status?: "active" | "pending" | undefined;
20007
20070
  apiKey?: string | undefined;
20008
20071
  tier?: "basic" | "regular" | "premium" | undefined;
20072
+ integrationType?: "meta" | "360dialog" | undefined;
20009
20073
  } | undefined;
20010
20074
  vonageCredentials?: {
20011
20075
  apiKey: string;
@@ -20052,15 +20116,16 @@ export declare const lineContract: {
20052
20116
  additionalCredentials?: any;
20053
20117
  senderId?: string | undefined;
20054
20118
  whatsapp?: {
20055
- email: string;
20056
- wabaExternalId: string;
20057
- phoneNumberId: string;
20058
- wabaBusinessId?: string | undefined;
20059
- clientId?: string | undefined;
20060
- channelId?: string | undefined;
20119
+ wabaBusinessId?: string | null | undefined;
20120
+ wabaExternalId?: string | null | undefined;
20121
+ phoneNumberId?: string | null | undefined;
20122
+ email?: string | null | undefined;
20123
+ clientId?: string | null | undefined;
20124
+ channelId?: string | null | undefined;
20061
20125
  status?: "active" | "pending" | undefined;
20062
20126
  apiKey?: string | undefined;
20063
20127
  tier?: "basic" | "regular" | "premium" | undefined;
20128
+ integrationType?: "meta" | "360dialog" | undefined;
20064
20129
  } | undefined;
20065
20130
  vonageCredentials?: {
20066
20131
  apiKey: string;
@@ -20095,15 +20160,16 @@ export declare const lineContract: {
20095
20160
  additionalCredentials?: any;
20096
20161
  senderId?: string | undefined;
20097
20162
  whatsapp?: {
20098
- email: string;
20099
- wabaExternalId: string;
20100
- phoneNumberId: string;
20101
- wabaBusinessId?: string | undefined;
20102
- clientId?: string | undefined;
20103
- channelId?: string | undefined;
20163
+ wabaBusinessId?: string | null | undefined;
20164
+ wabaExternalId?: string | null | undefined;
20165
+ phoneNumberId?: string | null | undefined;
20166
+ email?: string | null | undefined;
20167
+ clientId?: string | null | undefined;
20168
+ channelId?: string | null | undefined;
20104
20169
  status?: "active" | "pending" | undefined;
20105
20170
  apiKey?: string | undefined;
20106
20171
  tier?: "basic" | "regular" | "premium" | undefined;
20172
+ integrationType?: "meta" | "360dialog" | undefined;
20107
20173
  } | undefined;
20108
20174
  vonageCredentials?: {
20109
20175
  apiKey: string;
@@ -20143,35 +20209,38 @@ export declare const lineContract: {
20143
20209
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20144
20210
  senderId: z.ZodOptional<z.ZodString>;
20145
20211
  whatsapp: z.ZodOptional<z.ZodObject<{
20146
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20147
- wabaExternalId: z.ZodString;
20148
- phoneNumberId: z.ZodString;
20149
- email: z.ZodString;
20150
- clientId: z.ZodOptional<z.ZodString>;
20151
- channelId: z.ZodOptional<z.ZodString>;
20212
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20213
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20214
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20215
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20216
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20217
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20152
20218
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20153
20219
  apiKey: z.ZodOptional<z.ZodString>;
20154
20220
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20221
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20155
20222
  }, "strip", z.ZodTypeAny, {
20156
- email: string;
20157
- wabaExternalId: string;
20158
- phoneNumberId: string;
20159
- wabaBusinessId?: string | undefined;
20160
- clientId?: string | undefined;
20161
- channelId?: string | undefined;
20223
+ wabaBusinessId?: string | null | undefined;
20224
+ wabaExternalId?: string | null | undefined;
20225
+ phoneNumberId?: string | null | undefined;
20226
+ email?: string | null | undefined;
20227
+ clientId?: string | null | undefined;
20228
+ channelId?: string | null | undefined;
20162
20229
  status?: "active" | "pending" | undefined;
20163
20230
  apiKey?: string | undefined;
20164
20231
  tier?: "basic" | "regular" | "premium" | undefined;
20232
+ integrationType?: "meta" | "360dialog" | undefined;
20165
20233
  }, {
20166
- email: string;
20167
- wabaExternalId: string;
20168
- phoneNumberId: string;
20169
- wabaBusinessId?: string | undefined;
20170
- clientId?: string | undefined;
20171
- channelId?: string | undefined;
20234
+ wabaBusinessId?: string | null | undefined;
20235
+ wabaExternalId?: string | null | undefined;
20236
+ phoneNumberId?: string | null | undefined;
20237
+ email?: string | null | undefined;
20238
+ clientId?: string | null | undefined;
20239
+ channelId?: string | null | undefined;
20172
20240
  status?: "active" | "pending" | undefined;
20173
20241
  apiKey?: string | undefined;
20174
20242
  tier?: "basic" | "regular" | "premium" | undefined;
20243
+ integrationType?: "meta" | "360dialog" | undefined;
20175
20244
  }>>;
20176
20245
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20177
20246
  mobileNumber: z.ZodString;
@@ -20196,15 +20265,16 @@ export declare const lineContract: {
20196
20265
  additionalCredentials?: any;
20197
20266
  senderId?: string | undefined;
20198
20267
  whatsapp?: {
20199
- email: string;
20200
- wabaExternalId: string;
20201
- phoneNumberId: string;
20202
- wabaBusinessId?: string | undefined;
20203
- clientId?: string | undefined;
20204
- channelId?: string | undefined;
20268
+ wabaBusinessId?: string | null | undefined;
20269
+ wabaExternalId?: string | null | undefined;
20270
+ phoneNumberId?: string | null | undefined;
20271
+ email?: string | null | undefined;
20272
+ clientId?: string | null | undefined;
20273
+ channelId?: string | null | undefined;
20205
20274
  status?: "active" | "pending" | undefined;
20206
20275
  apiKey?: string | undefined;
20207
20276
  tier?: "basic" | "regular" | "premium" | undefined;
20277
+ integrationType?: "meta" | "360dialog" | undefined;
20208
20278
  } | undefined;
20209
20279
  vonageCredentials?: {
20210
20280
  apiKey: string;
@@ -20221,15 +20291,16 @@ export declare const lineContract: {
20221
20291
  additionalCredentials?: any;
20222
20292
  senderId?: string | undefined;
20223
20293
  whatsapp?: {
20224
- email: string;
20225
- wabaExternalId: string;
20226
- phoneNumberId: string;
20227
- wabaBusinessId?: string | undefined;
20228
- clientId?: string | undefined;
20229
- channelId?: string | undefined;
20294
+ wabaBusinessId?: string | null | undefined;
20295
+ wabaExternalId?: string | null | undefined;
20296
+ phoneNumberId?: string | null | undefined;
20297
+ email?: string | null | undefined;
20298
+ clientId?: string | null | undefined;
20299
+ channelId?: string | null | undefined;
20230
20300
  status?: "active" | "pending" | undefined;
20231
20301
  apiKey?: string | undefined;
20232
20302
  tier?: "basic" | "regular" | "premium" | undefined;
20303
+ integrationType?: "meta" | "360dialog" | undefined;
20233
20304
  } | undefined;
20234
20305
  vonageCredentials?: {
20235
20306
  apiKey: string;
@@ -20276,15 +20347,16 @@ export declare const lineContract: {
20276
20347
  additionalCredentials?: any;
20277
20348
  senderId?: string | undefined;
20278
20349
  whatsapp?: {
20279
- email: string;
20280
- wabaExternalId: string;
20281
- phoneNumberId: string;
20282
- wabaBusinessId?: string | undefined;
20283
- clientId?: string | undefined;
20284
- channelId?: string | undefined;
20350
+ wabaBusinessId?: string | null | undefined;
20351
+ wabaExternalId?: string | null | undefined;
20352
+ phoneNumberId?: string | null | undefined;
20353
+ email?: string | null | undefined;
20354
+ clientId?: string | null | undefined;
20355
+ channelId?: string | null | undefined;
20285
20356
  status?: "active" | "pending" | undefined;
20286
20357
  apiKey?: string | undefined;
20287
20358
  tier?: "basic" | "regular" | "premium" | undefined;
20359
+ integrationType?: "meta" | "360dialog" | undefined;
20288
20360
  } | undefined;
20289
20361
  vonageCredentials?: {
20290
20362
  apiKey: string;
@@ -20319,15 +20391,16 @@ export declare const lineContract: {
20319
20391
  additionalCredentials?: any;
20320
20392
  senderId?: string | undefined;
20321
20393
  whatsapp?: {
20322
- email: string;
20323
- wabaExternalId: string;
20324
- phoneNumberId: string;
20325
- wabaBusinessId?: string | undefined;
20326
- clientId?: string | undefined;
20327
- channelId?: string | undefined;
20394
+ wabaBusinessId?: string | null | undefined;
20395
+ wabaExternalId?: string | null | undefined;
20396
+ phoneNumberId?: string | null | undefined;
20397
+ email?: string | null | undefined;
20398
+ clientId?: string | null | undefined;
20399
+ channelId?: string | null | undefined;
20328
20400
  status?: "active" | "pending" | undefined;
20329
20401
  apiKey?: string | undefined;
20330
20402
  tier?: "basic" | "regular" | "premium" | undefined;
20403
+ integrationType?: "meta" | "360dialog" | undefined;
20331
20404
  } | undefined;
20332
20405
  vonageCredentials?: {
20333
20406
  apiKey: string;
@@ -20364,15 +20437,16 @@ export declare const lineContract: {
20364
20437
  additionalCredentials?: any;
20365
20438
  senderId?: string | undefined;
20366
20439
  whatsapp?: {
20367
- email: string;
20368
- wabaExternalId: string;
20369
- phoneNumberId: string;
20370
- wabaBusinessId?: string | undefined;
20371
- clientId?: string | undefined;
20372
- channelId?: string | undefined;
20440
+ wabaBusinessId?: string | null | undefined;
20441
+ wabaExternalId?: string | null | undefined;
20442
+ phoneNumberId?: string | null | undefined;
20443
+ email?: string | null | undefined;
20444
+ clientId?: string | null | undefined;
20445
+ channelId?: string | null | undefined;
20373
20446
  status?: "active" | "pending" | undefined;
20374
20447
  apiKey?: string | undefined;
20375
20448
  tier?: "basic" | "regular" | "premium" | undefined;
20449
+ integrationType?: "meta" | "360dialog" | undefined;
20376
20450
  } | undefined;
20377
20451
  vonageCredentials?: {
20378
20452
  apiKey: string;
@@ -20410,15 +20484,16 @@ export declare const lineContract: {
20410
20484
  additionalCredentials?: any;
20411
20485
  senderId?: string | undefined;
20412
20486
  whatsapp?: {
20413
- email: string;
20414
- wabaExternalId: string;
20415
- phoneNumberId: string;
20416
- wabaBusinessId?: string | undefined;
20417
- clientId?: string | undefined;
20418
- channelId?: string | undefined;
20487
+ wabaBusinessId?: string | null | undefined;
20488
+ wabaExternalId?: string | null | undefined;
20489
+ phoneNumberId?: string | null | undefined;
20490
+ email?: string | null | undefined;
20491
+ clientId?: string | null | undefined;
20492
+ channelId?: string | null | undefined;
20419
20493
  status?: "active" | "pending" | undefined;
20420
20494
  apiKey?: string | undefined;
20421
20495
  tier?: "basic" | "regular" | "premium" | undefined;
20496
+ integrationType?: "meta" | "360dialog" | undefined;
20422
20497
  } | undefined;
20423
20498
  vonageCredentials?: {
20424
20499
  apiKey: string;
@@ -20492,35 +20567,38 @@ export declare const lineContract: {
20492
20567
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20493
20568
  senderId: z.ZodOptional<z.ZodString>;
20494
20569
  whatsapp: z.ZodOptional<z.ZodObject<{
20495
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20496
- wabaExternalId: z.ZodString;
20497
- phoneNumberId: z.ZodString;
20498
- email: z.ZodString;
20499
- clientId: z.ZodOptional<z.ZodString>;
20500
- channelId: z.ZodOptional<z.ZodString>;
20570
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20571
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20572
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20573
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20574
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20575
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20501
20576
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20502
20577
  apiKey: z.ZodOptional<z.ZodString>;
20503
20578
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20579
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20504
20580
  }, "strip", z.ZodTypeAny, {
20505
- email: string;
20506
- wabaExternalId: string;
20507
- phoneNumberId: string;
20508
- wabaBusinessId?: string | undefined;
20509
- clientId?: string | undefined;
20510
- channelId?: string | undefined;
20581
+ wabaBusinessId?: string | null | undefined;
20582
+ wabaExternalId?: string | null | undefined;
20583
+ phoneNumberId?: string | null | undefined;
20584
+ email?: string | null | undefined;
20585
+ clientId?: string | null | undefined;
20586
+ channelId?: string | null | undefined;
20511
20587
  status?: "active" | "pending" | undefined;
20512
20588
  apiKey?: string | undefined;
20513
20589
  tier?: "basic" | "regular" | "premium" | undefined;
20590
+ integrationType?: "meta" | "360dialog" | undefined;
20514
20591
  }, {
20515
- email: string;
20516
- wabaExternalId: string;
20517
- phoneNumberId: string;
20518
- wabaBusinessId?: string | undefined;
20519
- clientId?: string | undefined;
20520
- channelId?: string | undefined;
20592
+ wabaBusinessId?: string | null | undefined;
20593
+ wabaExternalId?: string | null | undefined;
20594
+ phoneNumberId?: string | null | undefined;
20595
+ email?: string | null | undefined;
20596
+ clientId?: string | null | undefined;
20597
+ channelId?: string | null | undefined;
20521
20598
  status?: "active" | "pending" | undefined;
20522
20599
  apiKey?: string | undefined;
20523
20600
  tier?: "basic" | "regular" | "premium" | undefined;
20601
+ integrationType?: "meta" | "360dialog" | undefined;
20524
20602
  }>>;
20525
20603
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20526
20604
  mobileNumber: z.ZodString;
@@ -20545,15 +20623,16 @@ export declare const lineContract: {
20545
20623
  additionalCredentials?: any;
20546
20624
  senderId?: string | undefined;
20547
20625
  whatsapp?: {
20548
- email: string;
20549
- wabaExternalId: string;
20550
- phoneNumberId: string;
20551
- wabaBusinessId?: string | undefined;
20552
- clientId?: string | undefined;
20553
- channelId?: string | undefined;
20626
+ wabaBusinessId?: string | null | undefined;
20627
+ wabaExternalId?: string | null | undefined;
20628
+ phoneNumberId?: string | null | undefined;
20629
+ email?: string | null | undefined;
20630
+ clientId?: string | null | undefined;
20631
+ channelId?: string | null | undefined;
20554
20632
  status?: "active" | "pending" | undefined;
20555
20633
  apiKey?: string | undefined;
20556
20634
  tier?: "basic" | "regular" | "premium" | undefined;
20635
+ integrationType?: "meta" | "360dialog" | undefined;
20557
20636
  } | undefined;
20558
20637
  vonageCredentials?: {
20559
20638
  apiKey: string;
@@ -20570,15 +20649,16 @@ export declare const lineContract: {
20570
20649
  additionalCredentials?: any;
20571
20650
  senderId?: string | undefined;
20572
20651
  whatsapp?: {
20573
- email: string;
20574
- wabaExternalId: string;
20575
- phoneNumberId: string;
20576
- wabaBusinessId?: string | undefined;
20577
- clientId?: string | undefined;
20578
- channelId?: string | undefined;
20652
+ wabaBusinessId?: string | null | undefined;
20653
+ wabaExternalId?: string | null | undefined;
20654
+ phoneNumberId?: string | null | undefined;
20655
+ email?: string | null | undefined;
20656
+ clientId?: string | null | undefined;
20657
+ channelId?: string | null | undefined;
20579
20658
  status?: "active" | "pending" | undefined;
20580
20659
  apiKey?: string | undefined;
20581
20660
  tier?: "basic" | "regular" | "premium" | undefined;
20661
+ integrationType?: "meta" | "360dialog" | undefined;
20582
20662
  } | undefined;
20583
20663
  vonageCredentials?: {
20584
20664
  apiKey: string;
@@ -20625,15 +20705,16 @@ export declare const lineContract: {
20625
20705
  additionalCredentials?: any;
20626
20706
  senderId?: string | undefined;
20627
20707
  whatsapp?: {
20628
- email: string;
20629
- wabaExternalId: string;
20630
- phoneNumberId: string;
20631
- wabaBusinessId?: string | undefined;
20632
- clientId?: string | undefined;
20633
- channelId?: string | undefined;
20708
+ wabaBusinessId?: string | null | undefined;
20709
+ wabaExternalId?: string | null | undefined;
20710
+ phoneNumberId?: string | null | undefined;
20711
+ email?: string | null | undefined;
20712
+ clientId?: string | null | undefined;
20713
+ channelId?: string | null | undefined;
20634
20714
  status?: "active" | "pending" | undefined;
20635
20715
  apiKey?: string | undefined;
20636
20716
  tier?: "basic" | "regular" | "premium" | undefined;
20717
+ integrationType?: "meta" | "360dialog" | undefined;
20637
20718
  } | undefined;
20638
20719
  vonageCredentials?: {
20639
20720
  apiKey: string;
@@ -20668,15 +20749,16 @@ export declare const lineContract: {
20668
20749
  additionalCredentials?: any;
20669
20750
  senderId?: string | undefined;
20670
20751
  whatsapp?: {
20671
- email: string;
20672
- wabaExternalId: string;
20673
- phoneNumberId: string;
20674
- wabaBusinessId?: string | undefined;
20675
- clientId?: string | undefined;
20676
- channelId?: string | undefined;
20752
+ wabaBusinessId?: string | null | undefined;
20753
+ wabaExternalId?: string | null | undefined;
20754
+ phoneNumberId?: string | null | undefined;
20755
+ email?: string | null | undefined;
20756
+ clientId?: string | null | undefined;
20757
+ channelId?: string | null | undefined;
20677
20758
  status?: "active" | "pending" | undefined;
20678
20759
  apiKey?: string | undefined;
20679
20760
  tier?: "basic" | "regular" | "premium" | undefined;
20761
+ integrationType?: "meta" | "360dialog" | undefined;
20680
20762
  } | undefined;
20681
20763
  vonageCredentials?: {
20682
20764
  apiKey: string;
@@ -20713,15 +20795,16 @@ export declare const lineContract: {
20713
20795
  additionalCredentials?: any;
20714
20796
  senderId?: string | undefined;
20715
20797
  whatsapp?: {
20716
- email: string;
20717
- wabaExternalId: string;
20718
- phoneNumberId: string;
20719
- wabaBusinessId?: string | undefined;
20720
- clientId?: string | undefined;
20721
- channelId?: string | undefined;
20798
+ wabaBusinessId?: string | null | undefined;
20799
+ wabaExternalId?: string | null | undefined;
20800
+ phoneNumberId?: string | null | undefined;
20801
+ email?: string | null | undefined;
20802
+ clientId?: string | null | undefined;
20803
+ channelId?: string | null | undefined;
20722
20804
  status?: "active" | "pending" | undefined;
20723
20805
  apiKey?: string | undefined;
20724
20806
  tier?: "basic" | "regular" | "premium" | undefined;
20807
+ integrationType?: "meta" | "360dialog" | undefined;
20725
20808
  } | undefined;
20726
20809
  vonageCredentials?: {
20727
20810
  apiKey: string;
@@ -20759,15 +20842,16 @@ export declare const lineContract: {
20759
20842
  additionalCredentials?: any;
20760
20843
  senderId?: string | undefined;
20761
20844
  whatsapp?: {
20762
- email: string;
20763
- wabaExternalId: string;
20764
- phoneNumberId: string;
20765
- wabaBusinessId?: string | undefined;
20766
- clientId?: string | undefined;
20767
- channelId?: string | undefined;
20845
+ wabaBusinessId?: string | null | undefined;
20846
+ wabaExternalId?: string | null | undefined;
20847
+ phoneNumberId?: string | null | undefined;
20848
+ email?: string | null | undefined;
20849
+ clientId?: string | null | undefined;
20850
+ channelId?: string | null | undefined;
20768
20851
  status?: "active" | "pending" | undefined;
20769
20852
  apiKey?: string | undefined;
20770
20853
  tier?: "basic" | "regular" | "premium" | undefined;
20854
+ integrationType?: "meta" | "360dialog" | undefined;
20771
20855
  } | undefined;
20772
20856
  vonageCredentials?: {
20773
20857
  apiKey: string;
@@ -20841,35 +20925,38 @@ export declare const lineContract: {
20841
20925
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20842
20926
  senderId: z.ZodOptional<z.ZodString>;
20843
20927
  whatsapp: z.ZodOptional<z.ZodObject<{
20844
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20845
- wabaExternalId: z.ZodString;
20846
- phoneNumberId: z.ZodString;
20847
- email: z.ZodString;
20848
- clientId: z.ZodOptional<z.ZodString>;
20849
- channelId: z.ZodOptional<z.ZodString>;
20928
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20929
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20930
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20931
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20932
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20933
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20850
20934
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20851
20935
  apiKey: z.ZodOptional<z.ZodString>;
20852
20936
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20937
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20853
20938
  }, "strip", z.ZodTypeAny, {
20854
- email: string;
20855
- wabaExternalId: string;
20856
- phoneNumberId: string;
20857
- wabaBusinessId?: string | undefined;
20858
- clientId?: string | undefined;
20859
- channelId?: string | undefined;
20939
+ wabaBusinessId?: string | null | undefined;
20940
+ wabaExternalId?: string | null | undefined;
20941
+ phoneNumberId?: string | null | undefined;
20942
+ email?: string | null | undefined;
20943
+ clientId?: string | null | undefined;
20944
+ channelId?: string | null | undefined;
20860
20945
  status?: "active" | "pending" | undefined;
20861
20946
  apiKey?: string | undefined;
20862
20947
  tier?: "basic" | "regular" | "premium" | undefined;
20948
+ integrationType?: "meta" | "360dialog" | undefined;
20863
20949
  }, {
20864
- email: string;
20865
- wabaExternalId: string;
20866
- phoneNumberId: string;
20867
- wabaBusinessId?: string | undefined;
20868
- clientId?: string | undefined;
20869
- channelId?: string | undefined;
20950
+ wabaBusinessId?: string | null | undefined;
20951
+ wabaExternalId?: string | null | undefined;
20952
+ phoneNumberId?: string | null | undefined;
20953
+ email?: string | null | undefined;
20954
+ clientId?: string | null | undefined;
20955
+ channelId?: string | null | undefined;
20870
20956
  status?: "active" | "pending" | undefined;
20871
20957
  apiKey?: string | undefined;
20872
20958
  tier?: "basic" | "regular" | "premium" | undefined;
20959
+ integrationType?: "meta" | "360dialog" | undefined;
20873
20960
  }>>;
20874
20961
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20875
20962
  mobileNumber: z.ZodString;
@@ -20894,15 +20981,16 @@ export declare const lineContract: {
20894
20981
  additionalCredentials?: any;
20895
20982
  senderId?: string | undefined;
20896
20983
  whatsapp?: {
20897
- email: string;
20898
- wabaExternalId: string;
20899
- phoneNumberId: string;
20900
- wabaBusinessId?: string | undefined;
20901
- clientId?: string | undefined;
20902
- channelId?: string | undefined;
20984
+ wabaBusinessId?: string | null | undefined;
20985
+ wabaExternalId?: string | null | undefined;
20986
+ phoneNumberId?: string | null | undefined;
20987
+ email?: string | null | undefined;
20988
+ clientId?: string | null | undefined;
20989
+ channelId?: string | null | undefined;
20903
20990
  status?: "active" | "pending" | undefined;
20904
20991
  apiKey?: string | undefined;
20905
20992
  tier?: "basic" | "regular" | "premium" | undefined;
20993
+ integrationType?: "meta" | "360dialog" | undefined;
20906
20994
  } | undefined;
20907
20995
  vonageCredentials?: {
20908
20996
  apiKey: string;
@@ -20919,15 +21007,16 @@ export declare const lineContract: {
20919
21007
  additionalCredentials?: any;
20920
21008
  senderId?: string | undefined;
20921
21009
  whatsapp?: {
20922
- email: string;
20923
- wabaExternalId: string;
20924
- phoneNumberId: string;
20925
- wabaBusinessId?: string | undefined;
20926
- clientId?: string | undefined;
20927
- channelId?: string | undefined;
21010
+ wabaBusinessId?: string | null | undefined;
21011
+ wabaExternalId?: string | null | undefined;
21012
+ phoneNumberId?: string | null | undefined;
21013
+ email?: string | null | undefined;
21014
+ clientId?: string | null | undefined;
21015
+ channelId?: string | null | undefined;
20928
21016
  status?: "active" | "pending" | undefined;
20929
21017
  apiKey?: string | undefined;
20930
21018
  tier?: "basic" | "regular" | "premium" | undefined;
21019
+ integrationType?: "meta" | "360dialog" | undefined;
20931
21020
  } | undefined;
20932
21021
  vonageCredentials?: {
20933
21022
  apiKey: string;
@@ -20974,15 +21063,16 @@ export declare const lineContract: {
20974
21063
  additionalCredentials?: any;
20975
21064
  senderId?: string | undefined;
20976
21065
  whatsapp?: {
20977
- email: string;
20978
- wabaExternalId: string;
20979
- phoneNumberId: string;
20980
- wabaBusinessId?: string | undefined;
20981
- clientId?: string | undefined;
20982
- channelId?: string | undefined;
21066
+ wabaBusinessId?: string | null | undefined;
21067
+ wabaExternalId?: string | null | undefined;
21068
+ phoneNumberId?: string | null | undefined;
21069
+ email?: string | null | undefined;
21070
+ clientId?: string | null | undefined;
21071
+ channelId?: string | null | undefined;
20983
21072
  status?: "active" | "pending" | undefined;
20984
21073
  apiKey?: string | undefined;
20985
21074
  tier?: "basic" | "regular" | "premium" | undefined;
21075
+ integrationType?: "meta" | "360dialog" | undefined;
20986
21076
  } | undefined;
20987
21077
  vonageCredentials?: {
20988
21078
  apiKey: string;
@@ -21017,15 +21107,16 @@ export declare const lineContract: {
21017
21107
  additionalCredentials?: any;
21018
21108
  senderId?: string | undefined;
21019
21109
  whatsapp?: {
21020
- email: string;
21021
- wabaExternalId: string;
21022
- phoneNumberId: string;
21023
- wabaBusinessId?: string | undefined;
21024
- clientId?: string | undefined;
21025
- channelId?: string | undefined;
21110
+ wabaBusinessId?: string | null | undefined;
21111
+ wabaExternalId?: string | null | undefined;
21112
+ phoneNumberId?: string | null | undefined;
21113
+ email?: string | null | undefined;
21114
+ clientId?: string | null | undefined;
21115
+ channelId?: string | null | undefined;
21026
21116
  status?: "active" | "pending" | undefined;
21027
21117
  apiKey?: string | undefined;
21028
21118
  tier?: "basic" | "regular" | "premium" | undefined;
21119
+ integrationType?: "meta" | "360dialog" | undefined;
21029
21120
  } | undefined;
21030
21121
  vonageCredentials?: {
21031
21122
  apiKey: string;
@@ -21062,15 +21153,16 @@ export declare const lineContract: {
21062
21153
  additionalCredentials?: any;
21063
21154
  senderId?: string | undefined;
21064
21155
  whatsapp?: {
21065
- email: string;
21066
- wabaExternalId: string;
21067
- phoneNumberId: string;
21068
- wabaBusinessId?: string | undefined;
21069
- clientId?: string | undefined;
21070
- channelId?: string | undefined;
21156
+ wabaBusinessId?: string | null | undefined;
21157
+ wabaExternalId?: string | null | undefined;
21158
+ phoneNumberId?: string | null | undefined;
21159
+ email?: string | null | undefined;
21160
+ clientId?: string | null | undefined;
21161
+ channelId?: string | null | undefined;
21071
21162
  status?: "active" | "pending" | undefined;
21072
21163
  apiKey?: string | undefined;
21073
21164
  tier?: "basic" | "regular" | "premium" | undefined;
21165
+ integrationType?: "meta" | "360dialog" | undefined;
21074
21166
  } | undefined;
21075
21167
  vonageCredentials?: {
21076
21168
  apiKey: string;
@@ -21108,15 +21200,16 @@ export declare const lineContract: {
21108
21200
  additionalCredentials?: any;
21109
21201
  senderId?: string | undefined;
21110
21202
  whatsapp?: {
21111
- email: string;
21112
- wabaExternalId: string;
21113
- phoneNumberId: string;
21114
- wabaBusinessId?: string | undefined;
21115
- clientId?: string | undefined;
21116
- channelId?: string | undefined;
21203
+ wabaBusinessId?: string | null | undefined;
21204
+ wabaExternalId?: string | null | undefined;
21205
+ phoneNumberId?: string | null | undefined;
21206
+ email?: string | null | undefined;
21207
+ clientId?: string | null | undefined;
21208
+ channelId?: string | null | undefined;
21117
21209
  status?: "active" | "pending" | undefined;
21118
21210
  apiKey?: string | undefined;
21119
21211
  tier?: "basic" | "regular" | "premium" | undefined;
21212
+ integrationType?: "meta" | "360dialog" | undefined;
21120
21213
  } | undefined;
21121
21214
  vonageCredentials?: {
21122
21215
  apiKey: string;