@kl1/contracts 1.2.39-uat → 1.2.40-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/channel/index.d.ts +1253 -1074
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +84 -72
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +98 -84
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +1918 -1644
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +462 -396
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +679 -582
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +7294 -6252
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +91 -78
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +77 -66
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +938 -804
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +63 -54
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +49 -42
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +735 -630
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +651 -558
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +77 -66
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +735 -630
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +49 -42
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +140 -120
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +525 -450
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +525 -450
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +525 -450
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +623 -534
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +154 -132
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2570,35 +2570,38 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
2570
2570
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
2571
2571
|
senderId: z.ZodOptional<z.ZodString>;
|
|
2572
2572
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
2573
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
2574
|
-
wabaExternalId: z.ZodString
|
|
2575
|
-
phoneNumberId: z.ZodString
|
|
2576
|
-
email: z.ZodString
|
|
2577
|
-
clientId: z.ZodOptional<z.ZodString
|
|
2578
|
-
channelId: z.ZodOptional<z.ZodString
|
|
2573
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2574
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2575
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2576
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2577
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2578
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2579
2579
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
2580
2580
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2581
2581
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
2582
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
2582
2583
|
}, "strip", z.ZodTypeAny, {
|
|
2583
|
-
|
|
2584
|
-
wabaExternalId
|
|
2585
|
-
phoneNumberId
|
|
2586
|
-
|
|
2587
|
-
clientId?: string | undefined;
|
|
2588
|
-
channelId?: string | undefined;
|
|
2584
|
+
wabaBusinessId?: string | null | undefined;
|
|
2585
|
+
wabaExternalId?: string | null | undefined;
|
|
2586
|
+
phoneNumberId?: string | null | undefined;
|
|
2587
|
+
email?: string | null | undefined;
|
|
2588
|
+
clientId?: string | null | undefined;
|
|
2589
|
+
channelId?: string | null | undefined;
|
|
2589
2590
|
status?: "active" | "pending" | undefined;
|
|
2590
2591
|
apiKey?: string | undefined;
|
|
2591
2592
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2593
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
2592
2594
|
}, {
|
|
2593
|
-
|
|
2594
|
-
wabaExternalId
|
|
2595
|
-
phoneNumberId
|
|
2596
|
-
|
|
2597
|
-
clientId?: string | undefined;
|
|
2598
|
-
channelId?: string | undefined;
|
|
2595
|
+
wabaBusinessId?: string | null | undefined;
|
|
2596
|
+
wabaExternalId?: string | null | undefined;
|
|
2597
|
+
phoneNumberId?: string | null | undefined;
|
|
2598
|
+
email?: string | null | undefined;
|
|
2599
|
+
clientId?: string | null | undefined;
|
|
2600
|
+
channelId?: string | null | undefined;
|
|
2599
2601
|
status?: "active" | "pending" | undefined;
|
|
2600
2602
|
apiKey?: string | undefined;
|
|
2601
2603
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2604
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
2602
2605
|
}>>;
|
|
2603
2606
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
2604
2607
|
mobileNumber: z.ZodString;
|
|
@@ -2623,15 +2626,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
2623
2626
|
additionalCredentials?: any;
|
|
2624
2627
|
senderId?: string | undefined;
|
|
2625
2628
|
whatsapp?: {
|
|
2626
|
-
|
|
2627
|
-
wabaExternalId
|
|
2628
|
-
phoneNumberId
|
|
2629
|
-
|
|
2630
|
-
clientId?: string | undefined;
|
|
2631
|
-
channelId?: string | undefined;
|
|
2629
|
+
wabaBusinessId?: string | null | undefined;
|
|
2630
|
+
wabaExternalId?: string | null | undefined;
|
|
2631
|
+
phoneNumberId?: string | null | undefined;
|
|
2632
|
+
email?: string | null | undefined;
|
|
2633
|
+
clientId?: string | null | undefined;
|
|
2634
|
+
channelId?: string | null | undefined;
|
|
2632
2635
|
status?: "active" | "pending" | undefined;
|
|
2633
2636
|
apiKey?: string | undefined;
|
|
2634
2637
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2638
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
2635
2639
|
} | undefined;
|
|
2636
2640
|
vonageCredentials?: {
|
|
2637
2641
|
apiKey: string;
|
|
@@ -2648,15 +2652,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
2648
2652
|
additionalCredentials?: any;
|
|
2649
2653
|
senderId?: string | undefined;
|
|
2650
2654
|
whatsapp?: {
|
|
2651
|
-
|
|
2652
|
-
wabaExternalId
|
|
2653
|
-
phoneNumberId
|
|
2654
|
-
|
|
2655
|
-
clientId?: string | undefined;
|
|
2656
|
-
channelId?: string | undefined;
|
|
2655
|
+
wabaBusinessId?: string | null | undefined;
|
|
2656
|
+
wabaExternalId?: string | null | undefined;
|
|
2657
|
+
phoneNumberId?: string | null | undefined;
|
|
2658
|
+
email?: string | null | undefined;
|
|
2659
|
+
clientId?: string | null | undefined;
|
|
2660
|
+
channelId?: string | null | undefined;
|
|
2657
2661
|
status?: "active" | "pending" | undefined;
|
|
2658
2662
|
apiKey?: string | undefined;
|
|
2659
2663
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2664
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
2660
2665
|
} | undefined;
|
|
2661
2666
|
vonageCredentials?: {
|
|
2662
2667
|
apiKey: string;
|
|
@@ -2907,15 +2912,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
2907
2912
|
additionalCredentials?: any;
|
|
2908
2913
|
senderId?: string | undefined;
|
|
2909
2914
|
whatsapp?: {
|
|
2910
|
-
|
|
2911
|
-
wabaExternalId
|
|
2912
|
-
phoneNumberId
|
|
2913
|
-
|
|
2914
|
-
clientId?: string | undefined;
|
|
2915
|
-
channelId?: string | undefined;
|
|
2915
|
+
wabaBusinessId?: string | null | undefined;
|
|
2916
|
+
wabaExternalId?: string | null | undefined;
|
|
2917
|
+
phoneNumberId?: string | null | undefined;
|
|
2918
|
+
email?: string | null | undefined;
|
|
2919
|
+
clientId?: string | null | undefined;
|
|
2920
|
+
channelId?: string | null | undefined;
|
|
2916
2921
|
status?: "active" | "pending" | undefined;
|
|
2917
2922
|
apiKey?: string | undefined;
|
|
2918
2923
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2924
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
2919
2925
|
} | undefined;
|
|
2920
2926
|
vonageCredentials?: {
|
|
2921
2927
|
apiKey: string;
|
|
@@ -2997,15 +3003,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
2997
3003
|
additionalCredentials?: any;
|
|
2998
3004
|
senderId?: string | undefined;
|
|
2999
3005
|
whatsapp?: {
|
|
3000
|
-
|
|
3001
|
-
wabaExternalId
|
|
3002
|
-
phoneNumberId
|
|
3003
|
-
|
|
3004
|
-
clientId?: string | undefined;
|
|
3005
|
-
channelId?: string | undefined;
|
|
3006
|
+
wabaBusinessId?: string | null | undefined;
|
|
3007
|
+
wabaExternalId?: string | null | undefined;
|
|
3008
|
+
phoneNumberId?: string | null | undefined;
|
|
3009
|
+
email?: string | null | undefined;
|
|
3010
|
+
clientId?: string | null | undefined;
|
|
3011
|
+
channelId?: string | null | undefined;
|
|
3006
3012
|
status?: "active" | "pending" | undefined;
|
|
3007
3013
|
apiKey?: string | undefined;
|
|
3008
3014
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3015
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
3009
3016
|
} | undefined;
|
|
3010
3017
|
vonageCredentials?: {
|
|
3011
3018
|
apiKey: string;
|
|
@@ -3651,15 +3658,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
3651
3658
|
additionalCredentials?: any;
|
|
3652
3659
|
senderId?: string | undefined;
|
|
3653
3660
|
whatsapp?: {
|
|
3654
|
-
|
|
3655
|
-
wabaExternalId
|
|
3656
|
-
phoneNumberId
|
|
3657
|
-
|
|
3658
|
-
clientId?: string | undefined;
|
|
3659
|
-
channelId?: string | undefined;
|
|
3661
|
+
wabaBusinessId?: string | null | undefined;
|
|
3662
|
+
wabaExternalId?: string | null | undefined;
|
|
3663
|
+
phoneNumberId?: string | null | undefined;
|
|
3664
|
+
email?: string | null | undefined;
|
|
3665
|
+
clientId?: string | null | undefined;
|
|
3666
|
+
channelId?: string | null | undefined;
|
|
3660
3667
|
status?: "active" | "pending" | undefined;
|
|
3661
3668
|
apiKey?: string | undefined;
|
|
3662
3669
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3670
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
3663
3671
|
} | undefined;
|
|
3664
3672
|
vonageCredentials?: {
|
|
3665
3673
|
apiKey: string;
|
|
@@ -4074,15 +4082,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
|
4074
4082
|
additionalCredentials?: any;
|
|
4075
4083
|
senderId?: string | undefined;
|
|
4076
4084
|
whatsapp?: {
|
|
4077
|
-
|
|
4078
|
-
wabaExternalId
|
|
4079
|
-
phoneNumberId
|
|
4080
|
-
|
|
4081
|
-
clientId?: string | undefined;
|
|
4082
|
-
channelId?: string | undefined;
|
|
4085
|
+
wabaBusinessId?: string | null | undefined;
|
|
4086
|
+
wabaExternalId?: string | null | undefined;
|
|
4087
|
+
phoneNumberId?: string | null | undefined;
|
|
4088
|
+
email?: string | null | undefined;
|
|
4089
|
+
clientId?: string | null | undefined;
|
|
4090
|
+
channelId?: string | null | undefined;
|
|
4083
4091
|
status?: "active" | "pending" | undefined;
|
|
4084
4092
|
apiKey?: string | undefined;
|
|
4085
4093
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4094
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
4086
4095
|
} | undefined;
|
|
4087
4096
|
vonageCredentials?: {
|
|
4088
4097
|
apiKey: string;
|
|
@@ -5991,35 +6000,38 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
5991
6000
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
5992
6001
|
senderId: z.ZodOptional<z.ZodString>;
|
|
5993
6002
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
5994
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
5995
|
-
wabaExternalId: z.ZodString
|
|
5996
|
-
phoneNumberId: z.ZodString
|
|
5997
|
-
email: z.ZodString
|
|
5998
|
-
clientId: z.ZodOptional<z.ZodString
|
|
5999
|
-
channelId: z.ZodOptional<z.ZodString
|
|
6003
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6004
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6005
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6006
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6007
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6008
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6000
6009
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
6001
6010
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
6002
6011
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
6012
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
6003
6013
|
}, "strip", z.ZodTypeAny, {
|
|
6004
|
-
|
|
6005
|
-
wabaExternalId
|
|
6006
|
-
phoneNumberId
|
|
6007
|
-
|
|
6008
|
-
clientId?: string | undefined;
|
|
6009
|
-
channelId?: string | undefined;
|
|
6014
|
+
wabaBusinessId?: string | null | undefined;
|
|
6015
|
+
wabaExternalId?: string | null | undefined;
|
|
6016
|
+
phoneNumberId?: string | null | undefined;
|
|
6017
|
+
email?: string | null | undefined;
|
|
6018
|
+
clientId?: string | null | undefined;
|
|
6019
|
+
channelId?: string | null | undefined;
|
|
6010
6020
|
status?: "active" | "pending" | undefined;
|
|
6011
6021
|
apiKey?: string | undefined;
|
|
6012
6022
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6023
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
6013
6024
|
}, {
|
|
6014
|
-
|
|
6015
|
-
wabaExternalId
|
|
6016
|
-
phoneNumberId
|
|
6017
|
-
|
|
6018
|
-
clientId?: string | undefined;
|
|
6019
|
-
channelId?: string | undefined;
|
|
6025
|
+
wabaBusinessId?: string | null | undefined;
|
|
6026
|
+
wabaExternalId?: string | null | undefined;
|
|
6027
|
+
phoneNumberId?: string | null | undefined;
|
|
6028
|
+
email?: string | null | undefined;
|
|
6029
|
+
clientId?: string | null | undefined;
|
|
6030
|
+
channelId?: string | null | undefined;
|
|
6020
6031
|
status?: "active" | "pending" | undefined;
|
|
6021
6032
|
apiKey?: string | undefined;
|
|
6022
6033
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6034
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
6023
6035
|
}>>;
|
|
6024
6036
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
6025
6037
|
mobileNumber: z.ZodString;
|
|
@@ -6044,15 +6056,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
6044
6056
|
additionalCredentials?: any;
|
|
6045
6057
|
senderId?: string | undefined;
|
|
6046
6058
|
whatsapp?: {
|
|
6047
|
-
|
|
6048
|
-
wabaExternalId
|
|
6049
|
-
phoneNumberId
|
|
6050
|
-
|
|
6051
|
-
clientId?: string | undefined;
|
|
6052
|
-
channelId?: string | undefined;
|
|
6059
|
+
wabaBusinessId?: string | null | undefined;
|
|
6060
|
+
wabaExternalId?: string | null | undefined;
|
|
6061
|
+
phoneNumberId?: string | null | undefined;
|
|
6062
|
+
email?: string | null | undefined;
|
|
6063
|
+
clientId?: string | null | undefined;
|
|
6064
|
+
channelId?: string | null | undefined;
|
|
6053
6065
|
status?: "active" | "pending" | undefined;
|
|
6054
6066
|
apiKey?: string | undefined;
|
|
6055
6067
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6068
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
6056
6069
|
} | undefined;
|
|
6057
6070
|
vonageCredentials?: {
|
|
6058
6071
|
apiKey: string;
|
|
@@ -6069,15 +6082,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
6069
6082
|
additionalCredentials?: any;
|
|
6070
6083
|
senderId?: string | undefined;
|
|
6071
6084
|
whatsapp?: {
|
|
6072
|
-
|
|
6073
|
-
wabaExternalId
|
|
6074
|
-
phoneNumberId
|
|
6075
|
-
|
|
6076
|
-
clientId?: string | undefined;
|
|
6077
|
-
channelId?: string | undefined;
|
|
6085
|
+
wabaBusinessId?: string | null | undefined;
|
|
6086
|
+
wabaExternalId?: string | null | undefined;
|
|
6087
|
+
phoneNumberId?: string | null | undefined;
|
|
6088
|
+
email?: string | null | undefined;
|
|
6089
|
+
clientId?: string | null | undefined;
|
|
6090
|
+
channelId?: string | null | undefined;
|
|
6078
6091
|
status?: "active" | "pending" | undefined;
|
|
6079
6092
|
apiKey?: string | undefined;
|
|
6080
6093
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6094
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
6081
6095
|
} | undefined;
|
|
6082
6096
|
vonageCredentials?: {
|
|
6083
6097
|
apiKey: string;
|
|
@@ -6328,15 +6342,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
6328
6342
|
additionalCredentials?: any;
|
|
6329
6343
|
senderId?: string | undefined;
|
|
6330
6344
|
whatsapp?: {
|
|
6331
|
-
|
|
6332
|
-
wabaExternalId
|
|
6333
|
-
phoneNumberId
|
|
6334
|
-
|
|
6335
|
-
clientId?: string | undefined;
|
|
6336
|
-
channelId?: string | undefined;
|
|
6345
|
+
wabaBusinessId?: string | null | undefined;
|
|
6346
|
+
wabaExternalId?: string | null | undefined;
|
|
6347
|
+
phoneNumberId?: string | null | undefined;
|
|
6348
|
+
email?: string | null | undefined;
|
|
6349
|
+
clientId?: string | null | undefined;
|
|
6350
|
+
channelId?: string | null | undefined;
|
|
6337
6351
|
status?: "active" | "pending" | undefined;
|
|
6338
6352
|
apiKey?: string | undefined;
|
|
6339
6353
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6354
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
6340
6355
|
} | undefined;
|
|
6341
6356
|
vonageCredentials?: {
|
|
6342
6357
|
apiKey: string;
|
|
@@ -6418,15 +6433,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
6418
6433
|
additionalCredentials?: any;
|
|
6419
6434
|
senderId?: string | undefined;
|
|
6420
6435
|
whatsapp?: {
|
|
6421
|
-
|
|
6422
|
-
wabaExternalId
|
|
6423
|
-
phoneNumberId
|
|
6424
|
-
|
|
6425
|
-
clientId?: string | undefined;
|
|
6426
|
-
channelId?: string | undefined;
|
|
6436
|
+
wabaBusinessId?: string | null | undefined;
|
|
6437
|
+
wabaExternalId?: string | null | undefined;
|
|
6438
|
+
phoneNumberId?: string | null | undefined;
|
|
6439
|
+
email?: string | null | undefined;
|
|
6440
|
+
clientId?: string | null | undefined;
|
|
6441
|
+
channelId?: string | null | undefined;
|
|
6427
6442
|
status?: "active" | "pending" | undefined;
|
|
6428
6443
|
apiKey?: string | undefined;
|
|
6429
6444
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
6445
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
6430
6446
|
} | undefined;
|
|
6431
6447
|
vonageCredentials?: {
|
|
6432
6448
|
apiKey: string;
|
|
@@ -7072,15 +7088,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
7072
7088
|
additionalCredentials?: any;
|
|
7073
7089
|
senderId?: string | undefined;
|
|
7074
7090
|
whatsapp?: {
|
|
7075
|
-
|
|
7076
|
-
wabaExternalId
|
|
7077
|
-
phoneNumberId
|
|
7078
|
-
|
|
7079
|
-
clientId?: string | undefined;
|
|
7080
|
-
channelId?: string | undefined;
|
|
7091
|
+
wabaBusinessId?: string | null | undefined;
|
|
7092
|
+
wabaExternalId?: string | null | undefined;
|
|
7093
|
+
phoneNumberId?: string | null | undefined;
|
|
7094
|
+
email?: string | null | undefined;
|
|
7095
|
+
clientId?: string | null | undefined;
|
|
7096
|
+
channelId?: string | null | undefined;
|
|
7081
7097
|
status?: "active" | "pending" | undefined;
|
|
7082
7098
|
apiKey?: string | undefined;
|
|
7083
7099
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7100
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
7084
7101
|
} | undefined;
|
|
7085
7102
|
vonageCredentials?: {
|
|
7086
7103
|
apiKey: string;
|
|
@@ -7495,15 +7512,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
7495
7512
|
additionalCredentials?: any;
|
|
7496
7513
|
senderId?: string | undefined;
|
|
7497
7514
|
whatsapp?: {
|
|
7498
|
-
|
|
7499
|
-
wabaExternalId
|
|
7500
|
-
phoneNumberId
|
|
7501
|
-
|
|
7502
|
-
clientId?: string | undefined;
|
|
7503
|
-
channelId?: string | undefined;
|
|
7515
|
+
wabaBusinessId?: string | null | undefined;
|
|
7516
|
+
wabaExternalId?: string | null | undefined;
|
|
7517
|
+
phoneNumberId?: string | null | undefined;
|
|
7518
|
+
email?: string | null | undefined;
|
|
7519
|
+
clientId?: string | null | undefined;
|
|
7520
|
+
channelId?: string | null | undefined;
|
|
7504
7521
|
status?: "active" | "pending" | undefined;
|
|
7505
7522
|
apiKey?: string | undefined;
|
|
7506
7523
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7524
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
7507
7525
|
} | undefined;
|
|
7508
7526
|
vonageCredentials?: {
|
|
7509
7527
|
apiKey: string;
|
|
@@ -9691,15 +9709,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
9691
9709
|
additionalCredentials?: any;
|
|
9692
9710
|
senderId?: string | undefined;
|
|
9693
9711
|
whatsapp?: {
|
|
9694
|
-
|
|
9695
|
-
wabaExternalId
|
|
9696
|
-
phoneNumberId
|
|
9697
|
-
|
|
9698
|
-
clientId?: string | undefined;
|
|
9699
|
-
channelId?: string | undefined;
|
|
9712
|
+
wabaBusinessId?: string | null | undefined;
|
|
9713
|
+
wabaExternalId?: string | null | undefined;
|
|
9714
|
+
phoneNumberId?: string | null | undefined;
|
|
9715
|
+
email?: string | null | undefined;
|
|
9716
|
+
clientId?: string | null | undefined;
|
|
9717
|
+
channelId?: string | null | undefined;
|
|
9700
9718
|
status?: "active" | "pending" | undefined;
|
|
9701
9719
|
apiKey?: string | undefined;
|
|
9702
9720
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9721
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
9703
9722
|
} | undefined;
|
|
9704
9723
|
vonageCredentials?: {
|
|
9705
9724
|
apiKey: string;
|
|
@@ -10451,15 +10470,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
|
10451
10470
|
additionalCredentials?: any;
|
|
10452
10471
|
senderId?: string | undefined;
|
|
10453
10472
|
whatsapp?: {
|
|
10454
|
-
|
|
10455
|
-
wabaExternalId
|
|
10456
|
-
phoneNumberId
|
|
10457
|
-
|
|
10458
|
-
clientId?: string | undefined;
|
|
10459
|
-
channelId?: string | undefined;
|
|
10473
|
+
wabaBusinessId?: string | null | undefined;
|
|
10474
|
+
wabaExternalId?: string | null | undefined;
|
|
10475
|
+
phoneNumberId?: string | null | undefined;
|
|
10476
|
+
email?: string | null | undefined;
|
|
10477
|
+
clientId?: string | null | undefined;
|
|
10478
|
+
channelId?: string | null | undefined;
|
|
10460
10479
|
status?: "active" | "pending" | undefined;
|
|
10461
10480
|
apiKey?: string | undefined;
|
|
10462
10481
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
10482
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
10463
10483
|
} | undefined;
|
|
10464
10484
|
vonageCredentials?: {
|
|
10465
10485
|
apiKey: string;
|
|
@@ -13029,35 +13049,38 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
13029
13049
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
13030
13050
|
senderId: z.ZodOptional<z.ZodString>;
|
|
13031
13051
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
13032
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
13033
|
-
wabaExternalId: z.ZodString
|
|
13034
|
-
phoneNumberId: z.ZodString
|
|
13035
|
-
email: z.ZodString
|
|
13036
|
-
clientId: z.ZodOptional<z.ZodString
|
|
13037
|
-
channelId: z.ZodOptional<z.ZodString
|
|
13052
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13053
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13054
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13055
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13056
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13057
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13038
13058
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
13039
13059
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
13040
13060
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
13061
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
13041
13062
|
}, "strip", z.ZodTypeAny, {
|
|
13042
|
-
|
|
13043
|
-
wabaExternalId
|
|
13044
|
-
phoneNumberId
|
|
13045
|
-
|
|
13046
|
-
clientId?: string | undefined;
|
|
13047
|
-
channelId?: string | undefined;
|
|
13063
|
+
wabaBusinessId?: string | null | undefined;
|
|
13064
|
+
wabaExternalId?: string | null | undefined;
|
|
13065
|
+
phoneNumberId?: string | null | undefined;
|
|
13066
|
+
email?: string | null | undefined;
|
|
13067
|
+
clientId?: string | null | undefined;
|
|
13068
|
+
channelId?: string | null | undefined;
|
|
13048
13069
|
status?: "active" | "pending" | undefined;
|
|
13049
13070
|
apiKey?: string | undefined;
|
|
13050
13071
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13072
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
13051
13073
|
}, {
|
|
13052
|
-
|
|
13053
|
-
wabaExternalId
|
|
13054
|
-
phoneNumberId
|
|
13055
|
-
|
|
13056
|
-
clientId?: string | undefined;
|
|
13057
|
-
channelId?: string | undefined;
|
|
13074
|
+
wabaBusinessId?: string | null | undefined;
|
|
13075
|
+
wabaExternalId?: string | null | undefined;
|
|
13076
|
+
phoneNumberId?: string | null | undefined;
|
|
13077
|
+
email?: string | null | undefined;
|
|
13078
|
+
clientId?: string | null | undefined;
|
|
13079
|
+
channelId?: string | null | undefined;
|
|
13058
13080
|
status?: "active" | "pending" | undefined;
|
|
13059
13081
|
apiKey?: string | undefined;
|
|
13060
13082
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13083
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
13061
13084
|
}>>;
|
|
13062
13085
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
13063
13086
|
mobileNumber: z.ZodString;
|
|
@@ -13082,15 +13105,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
13082
13105
|
additionalCredentials?: any;
|
|
13083
13106
|
senderId?: string | undefined;
|
|
13084
13107
|
whatsapp?: {
|
|
13085
|
-
|
|
13086
|
-
wabaExternalId
|
|
13087
|
-
phoneNumberId
|
|
13088
|
-
|
|
13089
|
-
clientId?: string | undefined;
|
|
13090
|
-
channelId?: string | undefined;
|
|
13108
|
+
wabaBusinessId?: string | null | undefined;
|
|
13109
|
+
wabaExternalId?: string | null | undefined;
|
|
13110
|
+
phoneNumberId?: string | null | undefined;
|
|
13111
|
+
email?: string | null | undefined;
|
|
13112
|
+
clientId?: string | null | undefined;
|
|
13113
|
+
channelId?: string | null | undefined;
|
|
13091
13114
|
status?: "active" | "pending" | undefined;
|
|
13092
13115
|
apiKey?: string | undefined;
|
|
13093
13116
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13117
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
13094
13118
|
} | undefined;
|
|
13095
13119
|
vonageCredentials?: {
|
|
13096
13120
|
apiKey: string;
|
|
@@ -13107,15 +13131,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
13107
13131
|
additionalCredentials?: any;
|
|
13108
13132
|
senderId?: string | undefined;
|
|
13109
13133
|
whatsapp?: {
|
|
13110
|
-
|
|
13111
|
-
wabaExternalId
|
|
13112
|
-
phoneNumberId
|
|
13113
|
-
|
|
13114
|
-
clientId?: string | undefined;
|
|
13115
|
-
channelId?: string | undefined;
|
|
13134
|
+
wabaBusinessId?: string | null | undefined;
|
|
13135
|
+
wabaExternalId?: string | null | undefined;
|
|
13136
|
+
phoneNumberId?: string | null | undefined;
|
|
13137
|
+
email?: string | null | undefined;
|
|
13138
|
+
clientId?: string | null | undefined;
|
|
13139
|
+
channelId?: string | null | undefined;
|
|
13116
13140
|
status?: "active" | "pending" | undefined;
|
|
13117
13141
|
apiKey?: string | undefined;
|
|
13118
13142
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13143
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
13119
13144
|
} | undefined;
|
|
13120
13145
|
vonageCredentials?: {
|
|
13121
13146
|
apiKey: string;
|
|
@@ -13366,15 +13391,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
13366
13391
|
additionalCredentials?: any;
|
|
13367
13392
|
senderId?: string | undefined;
|
|
13368
13393
|
whatsapp?: {
|
|
13369
|
-
|
|
13370
|
-
wabaExternalId
|
|
13371
|
-
phoneNumberId
|
|
13372
|
-
|
|
13373
|
-
clientId?: string | undefined;
|
|
13374
|
-
channelId?: string | undefined;
|
|
13394
|
+
wabaBusinessId?: string | null | undefined;
|
|
13395
|
+
wabaExternalId?: string | null | undefined;
|
|
13396
|
+
phoneNumberId?: string | null | undefined;
|
|
13397
|
+
email?: string | null | undefined;
|
|
13398
|
+
clientId?: string | null | undefined;
|
|
13399
|
+
channelId?: string | null | undefined;
|
|
13375
13400
|
status?: "active" | "pending" | undefined;
|
|
13376
13401
|
apiKey?: string | undefined;
|
|
13377
13402
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13403
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
13378
13404
|
} | undefined;
|
|
13379
13405
|
vonageCredentials?: {
|
|
13380
13406
|
apiKey: string;
|
|
@@ -13456,15 +13482,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
13456
13482
|
additionalCredentials?: any;
|
|
13457
13483
|
senderId?: string | undefined;
|
|
13458
13484
|
whatsapp?: {
|
|
13459
|
-
|
|
13460
|
-
wabaExternalId
|
|
13461
|
-
phoneNumberId
|
|
13462
|
-
|
|
13463
|
-
clientId?: string | undefined;
|
|
13464
|
-
channelId?: string | undefined;
|
|
13485
|
+
wabaBusinessId?: string | null | undefined;
|
|
13486
|
+
wabaExternalId?: string | null | undefined;
|
|
13487
|
+
phoneNumberId?: string | null | undefined;
|
|
13488
|
+
email?: string | null | undefined;
|
|
13489
|
+
clientId?: string | null | undefined;
|
|
13490
|
+
channelId?: string | null | undefined;
|
|
13465
13491
|
status?: "active" | "pending" | undefined;
|
|
13466
13492
|
apiKey?: string | undefined;
|
|
13467
13493
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13494
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
13468
13495
|
} | undefined;
|
|
13469
13496
|
vonageCredentials?: {
|
|
13470
13497
|
apiKey: string;
|
|
@@ -14110,15 +14137,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
14110
14137
|
additionalCredentials?: any;
|
|
14111
14138
|
senderId?: string | undefined;
|
|
14112
14139
|
whatsapp?: {
|
|
14113
|
-
|
|
14114
|
-
wabaExternalId
|
|
14115
|
-
phoneNumberId
|
|
14116
|
-
|
|
14117
|
-
clientId?: string | undefined;
|
|
14118
|
-
channelId?: string | undefined;
|
|
14140
|
+
wabaBusinessId?: string | null | undefined;
|
|
14141
|
+
wabaExternalId?: string | null | undefined;
|
|
14142
|
+
phoneNumberId?: string | null | undefined;
|
|
14143
|
+
email?: string | null | undefined;
|
|
14144
|
+
clientId?: string | null | undefined;
|
|
14145
|
+
channelId?: string | null | undefined;
|
|
14119
14146
|
status?: "active" | "pending" | undefined;
|
|
14120
14147
|
apiKey?: string | undefined;
|
|
14121
14148
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
14149
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
14122
14150
|
} | undefined;
|
|
14123
14151
|
vonageCredentials?: {
|
|
14124
14152
|
apiKey: string;
|
|
@@ -14533,15 +14561,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
14533
14561
|
additionalCredentials?: any;
|
|
14534
14562
|
senderId?: string | undefined;
|
|
14535
14563
|
whatsapp?: {
|
|
14536
|
-
|
|
14537
|
-
wabaExternalId
|
|
14538
|
-
phoneNumberId
|
|
14539
|
-
|
|
14540
|
-
clientId?: string | undefined;
|
|
14541
|
-
channelId?: string | undefined;
|
|
14564
|
+
wabaBusinessId?: string | null | undefined;
|
|
14565
|
+
wabaExternalId?: string | null | undefined;
|
|
14566
|
+
phoneNumberId?: string | null | undefined;
|
|
14567
|
+
email?: string | null | undefined;
|
|
14568
|
+
clientId?: string | null | undefined;
|
|
14569
|
+
channelId?: string | null | undefined;
|
|
14542
14570
|
status?: "active" | "pending" | undefined;
|
|
14543
14571
|
apiKey?: string | undefined;
|
|
14544
14572
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
14573
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
14545
14574
|
} | undefined;
|
|
14546
14575
|
vonageCredentials?: {
|
|
14547
14576
|
apiKey: string;
|
|
@@ -16199,35 +16228,38 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
16199
16228
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
16200
16229
|
senderId: z.ZodOptional<z.ZodString>;
|
|
16201
16230
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
16202
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
16203
|
-
wabaExternalId: z.ZodString
|
|
16204
|
-
phoneNumberId: z.ZodString
|
|
16205
|
-
email: z.ZodString
|
|
16206
|
-
clientId: z.ZodOptional<z.ZodString
|
|
16207
|
-
channelId: z.ZodOptional<z.ZodString
|
|
16231
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16232
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16233
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16234
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16235
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16236
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16208
16237
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
16209
16238
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
16210
16239
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
16240
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
16211
16241
|
}, "strip", z.ZodTypeAny, {
|
|
16212
|
-
|
|
16213
|
-
wabaExternalId
|
|
16214
|
-
phoneNumberId
|
|
16215
|
-
|
|
16216
|
-
clientId?: string | undefined;
|
|
16217
|
-
channelId?: string | undefined;
|
|
16242
|
+
wabaBusinessId?: string | null | undefined;
|
|
16243
|
+
wabaExternalId?: string | null | undefined;
|
|
16244
|
+
phoneNumberId?: string | null | undefined;
|
|
16245
|
+
email?: string | null | undefined;
|
|
16246
|
+
clientId?: string | null | undefined;
|
|
16247
|
+
channelId?: string | null | undefined;
|
|
16218
16248
|
status?: "active" | "pending" | undefined;
|
|
16219
16249
|
apiKey?: string | undefined;
|
|
16220
16250
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
16251
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
16221
16252
|
}, {
|
|
16222
|
-
|
|
16223
|
-
wabaExternalId
|
|
16224
|
-
phoneNumberId
|
|
16225
|
-
|
|
16226
|
-
clientId?: string | undefined;
|
|
16227
|
-
channelId?: string | undefined;
|
|
16253
|
+
wabaBusinessId?: string | null | undefined;
|
|
16254
|
+
wabaExternalId?: string | null | undefined;
|
|
16255
|
+
phoneNumberId?: string | null | undefined;
|
|
16256
|
+
email?: string | null | undefined;
|
|
16257
|
+
clientId?: string | null | undefined;
|
|
16258
|
+
channelId?: string | null | undefined;
|
|
16228
16259
|
status?: "active" | "pending" | undefined;
|
|
16229
16260
|
apiKey?: string | undefined;
|
|
16230
16261
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
16262
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
16231
16263
|
}>>;
|
|
16232
16264
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
16233
16265
|
mobileNumber: z.ZodString;
|
|
@@ -16252,15 +16284,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
16252
16284
|
additionalCredentials?: any;
|
|
16253
16285
|
senderId?: string | undefined;
|
|
16254
16286
|
whatsapp?: {
|
|
16255
|
-
|
|
16256
|
-
wabaExternalId
|
|
16257
|
-
phoneNumberId
|
|
16258
|
-
|
|
16259
|
-
clientId?: string | undefined;
|
|
16260
|
-
channelId?: string | undefined;
|
|
16287
|
+
wabaBusinessId?: string | null | undefined;
|
|
16288
|
+
wabaExternalId?: string | null | undefined;
|
|
16289
|
+
phoneNumberId?: string | null | undefined;
|
|
16290
|
+
email?: string | null | undefined;
|
|
16291
|
+
clientId?: string | null | undefined;
|
|
16292
|
+
channelId?: string | null | undefined;
|
|
16261
16293
|
status?: "active" | "pending" | undefined;
|
|
16262
16294
|
apiKey?: string | undefined;
|
|
16263
16295
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
16296
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
16264
16297
|
} | undefined;
|
|
16265
16298
|
vonageCredentials?: {
|
|
16266
16299
|
apiKey: string;
|
|
@@ -16277,15 +16310,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
16277
16310
|
additionalCredentials?: any;
|
|
16278
16311
|
senderId?: string | undefined;
|
|
16279
16312
|
whatsapp?: {
|
|
16280
|
-
|
|
16281
|
-
wabaExternalId
|
|
16282
|
-
phoneNumberId
|
|
16283
|
-
|
|
16284
|
-
clientId?: string | undefined;
|
|
16285
|
-
channelId?: string | undefined;
|
|
16313
|
+
wabaBusinessId?: string | null | undefined;
|
|
16314
|
+
wabaExternalId?: string | null | undefined;
|
|
16315
|
+
phoneNumberId?: string | null | undefined;
|
|
16316
|
+
email?: string | null | undefined;
|
|
16317
|
+
clientId?: string | null | undefined;
|
|
16318
|
+
channelId?: string | null | undefined;
|
|
16286
16319
|
status?: "active" | "pending" | undefined;
|
|
16287
16320
|
apiKey?: string | undefined;
|
|
16288
16321
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
16322
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
16289
16323
|
} | undefined;
|
|
16290
16324
|
vonageCredentials?: {
|
|
16291
16325
|
apiKey: string;
|
|
@@ -16536,15 +16570,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
16536
16570
|
additionalCredentials?: any;
|
|
16537
16571
|
senderId?: string | undefined;
|
|
16538
16572
|
whatsapp?: {
|
|
16539
|
-
|
|
16540
|
-
wabaExternalId
|
|
16541
|
-
phoneNumberId
|
|
16542
|
-
|
|
16543
|
-
clientId?: string | undefined;
|
|
16544
|
-
channelId?: string | undefined;
|
|
16573
|
+
wabaBusinessId?: string | null | undefined;
|
|
16574
|
+
wabaExternalId?: string | null | undefined;
|
|
16575
|
+
phoneNumberId?: string | null | undefined;
|
|
16576
|
+
email?: string | null | undefined;
|
|
16577
|
+
clientId?: string | null | undefined;
|
|
16578
|
+
channelId?: string | null | undefined;
|
|
16545
16579
|
status?: "active" | "pending" | undefined;
|
|
16546
16580
|
apiKey?: string | undefined;
|
|
16547
16581
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
16582
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
16548
16583
|
} | undefined;
|
|
16549
16584
|
vonageCredentials?: {
|
|
16550
16585
|
apiKey: string;
|
|
@@ -16626,15 +16661,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
16626
16661
|
additionalCredentials?: any;
|
|
16627
16662
|
senderId?: string | undefined;
|
|
16628
16663
|
whatsapp?: {
|
|
16629
|
-
|
|
16630
|
-
wabaExternalId
|
|
16631
|
-
phoneNumberId
|
|
16632
|
-
|
|
16633
|
-
clientId?: string | undefined;
|
|
16634
|
-
channelId?: string | undefined;
|
|
16664
|
+
wabaBusinessId?: string | null | undefined;
|
|
16665
|
+
wabaExternalId?: string | null | undefined;
|
|
16666
|
+
phoneNumberId?: string | null | undefined;
|
|
16667
|
+
email?: string | null | undefined;
|
|
16668
|
+
clientId?: string | null | undefined;
|
|
16669
|
+
channelId?: string | null | undefined;
|
|
16635
16670
|
status?: "active" | "pending" | undefined;
|
|
16636
16671
|
apiKey?: string | undefined;
|
|
16637
16672
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
16673
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
16638
16674
|
} | undefined;
|
|
16639
16675
|
vonageCredentials?: {
|
|
16640
16676
|
apiKey: string;
|
|
@@ -17973,15 +18009,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
17973
18009
|
additionalCredentials?: any;
|
|
17974
18010
|
senderId?: string | undefined;
|
|
17975
18011
|
whatsapp?: {
|
|
17976
|
-
|
|
17977
|
-
wabaExternalId
|
|
17978
|
-
phoneNumberId
|
|
17979
|
-
|
|
17980
|
-
clientId?: string | undefined;
|
|
17981
|
-
channelId?: string | undefined;
|
|
18012
|
+
wabaBusinessId?: string | null | undefined;
|
|
18013
|
+
wabaExternalId?: string | null | undefined;
|
|
18014
|
+
phoneNumberId?: string | null | undefined;
|
|
18015
|
+
email?: string | null | undefined;
|
|
18016
|
+
clientId?: string | null | undefined;
|
|
18017
|
+
channelId?: string | null | undefined;
|
|
17982
18018
|
status?: "active" | "pending" | undefined;
|
|
17983
18019
|
apiKey?: string | undefined;
|
|
17984
18020
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18021
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
17985
18022
|
} | undefined;
|
|
17986
18023
|
vonageCredentials?: {
|
|
17987
18024
|
apiKey: string;
|
|
@@ -18250,15 +18287,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
18250
18287
|
additionalCredentials?: any;
|
|
18251
18288
|
senderId?: string | undefined;
|
|
18252
18289
|
whatsapp?: {
|
|
18253
|
-
|
|
18254
|
-
wabaExternalId
|
|
18255
|
-
phoneNumberId
|
|
18256
|
-
|
|
18257
|
-
clientId?: string | undefined;
|
|
18258
|
-
channelId?: string | undefined;
|
|
18290
|
+
wabaBusinessId?: string | null | undefined;
|
|
18291
|
+
wabaExternalId?: string | null | undefined;
|
|
18292
|
+
phoneNumberId?: string | null | undefined;
|
|
18293
|
+
email?: string | null | undefined;
|
|
18294
|
+
clientId?: string | null | undefined;
|
|
18295
|
+
channelId?: string | null | undefined;
|
|
18259
18296
|
status?: "active" | "pending" | undefined;
|
|
18260
18297
|
apiKey?: string | undefined;
|
|
18261
18298
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18299
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18262
18300
|
} | undefined;
|
|
18263
18301
|
vonageCredentials?: {
|
|
18264
18302
|
apiKey: string;
|
|
@@ -18637,15 +18675,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
18637
18675
|
additionalCredentials?: any;
|
|
18638
18676
|
senderId?: string | undefined;
|
|
18639
18677
|
whatsapp?: {
|
|
18640
|
-
|
|
18641
|
-
wabaExternalId
|
|
18642
|
-
phoneNumberId
|
|
18643
|
-
|
|
18644
|
-
clientId?: string | undefined;
|
|
18645
|
-
channelId?: string | undefined;
|
|
18678
|
+
wabaBusinessId?: string | null | undefined;
|
|
18679
|
+
wabaExternalId?: string | null | undefined;
|
|
18680
|
+
phoneNumberId?: string | null | undefined;
|
|
18681
|
+
email?: string | null | undefined;
|
|
18682
|
+
clientId?: string | null | undefined;
|
|
18683
|
+
channelId?: string | null | undefined;
|
|
18646
18684
|
status?: "active" | "pending" | undefined;
|
|
18647
18685
|
apiKey?: string | undefined;
|
|
18648
18686
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18687
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18649
18688
|
} | undefined;
|
|
18650
18689
|
vonageCredentials?: {
|
|
18651
18690
|
apiKey: string;
|
|
@@ -19288,15 +19327,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
19288
19327
|
additionalCredentials?: any;
|
|
19289
19328
|
senderId?: string | undefined;
|
|
19290
19329
|
whatsapp?: {
|
|
19291
|
-
|
|
19292
|
-
wabaExternalId
|
|
19293
|
-
phoneNumberId
|
|
19294
|
-
|
|
19295
|
-
clientId?: string | undefined;
|
|
19296
|
-
channelId?: string | undefined;
|
|
19330
|
+
wabaBusinessId?: string | null | undefined;
|
|
19331
|
+
wabaExternalId?: string | null | undefined;
|
|
19332
|
+
phoneNumberId?: string | null | undefined;
|
|
19333
|
+
email?: string | null | undefined;
|
|
19334
|
+
clientId?: string | null | undefined;
|
|
19335
|
+
channelId?: string | null | undefined;
|
|
19297
19336
|
status?: "active" | "pending" | undefined;
|
|
19298
19337
|
apiKey?: string | undefined;
|
|
19299
19338
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19339
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19300
19340
|
} | undefined;
|
|
19301
19341
|
vonageCredentials?: {
|
|
19302
19342
|
apiKey: string;
|
|
@@ -19678,15 +19718,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
19678
19718
|
additionalCredentials?: any;
|
|
19679
19719
|
senderId?: string | undefined;
|
|
19680
19720
|
whatsapp?: {
|
|
19681
|
-
|
|
19682
|
-
wabaExternalId
|
|
19683
|
-
phoneNumberId
|
|
19684
|
-
|
|
19685
|
-
clientId?: string | undefined;
|
|
19686
|
-
channelId?: string | undefined;
|
|
19721
|
+
wabaBusinessId?: string | null | undefined;
|
|
19722
|
+
wabaExternalId?: string | null | undefined;
|
|
19723
|
+
phoneNumberId?: string | null | undefined;
|
|
19724
|
+
email?: string | null | undefined;
|
|
19725
|
+
clientId?: string | null | undefined;
|
|
19726
|
+
channelId?: string | null | undefined;
|
|
19687
19727
|
status?: "active" | "pending" | undefined;
|
|
19688
19728
|
apiKey?: string | undefined;
|
|
19689
19729
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19730
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19690
19731
|
} | undefined;
|
|
19691
19732
|
vonageCredentials?: {
|
|
19692
19733
|
apiKey: string;
|
|
@@ -20329,15 +20370,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
|
20329
20370
|
additionalCredentials?: any;
|
|
20330
20371
|
senderId?: string | undefined;
|
|
20331
20372
|
whatsapp?: {
|
|
20332
|
-
|
|
20333
|
-
wabaExternalId
|
|
20334
|
-
phoneNumberId
|
|
20335
|
-
|
|
20336
|
-
clientId?: string | undefined;
|
|
20337
|
-
channelId?: string | undefined;
|
|
20373
|
+
wabaBusinessId?: string | null | undefined;
|
|
20374
|
+
wabaExternalId?: string | null | undefined;
|
|
20375
|
+
phoneNumberId?: string | null | undefined;
|
|
20376
|
+
email?: string | null | undefined;
|
|
20377
|
+
clientId?: string | null | undefined;
|
|
20378
|
+
channelId?: string | null | undefined;
|
|
20338
20379
|
status?: "active" | "pending" | undefined;
|
|
20339
20380
|
apiKey?: string | undefined;
|
|
20340
20381
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20382
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20341
20383
|
} | undefined;
|
|
20342
20384
|
vonageCredentials?: {
|
|
20343
20385
|
apiKey: string;
|
|
@@ -23539,35 +23581,38 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
23539
23581
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
23540
23582
|
senderId: z.ZodOptional<z.ZodString>;
|
|
23541
23583
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
23542
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
23543
|
-
wabaExternalId: z.ZodString
|
|
23544
|
-
phoneNumberId: z.ZodString
|
|
23545
|
-
email: z.ZodString
|
|
23546
|
-
clientId: z.ZodOptional<z.ZodString
|
|
23547
|
-
channelId: z.ZodOptional<z.ZodString
|
|
23584
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23585
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23586
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23587
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23588
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23589
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23548
23590
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
23549
23591
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
23550
23592
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
23593
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
23551
23594
|
}, "strip", z.ZodTypeAny, {
|
|
23552
|
-
|
|
23553
|
-
wabaExternalId
|
|
23554
|
-
phoneNumberId
|
|
23555
|
-
|
|
23556
|
-
clientId?: string | undefined;
|
|
23557
|
-
channelId?: string | undefined;
|
|
23595
|
+
wabaBusinessId?: string | null | undefined;
|
|
23596
|
+
wabaExternalId?: string | null | undefined;
|
|
23597
|
+
phoneNumberId?: string | null | undefined;
|
|
23598
|
+
email?: string | null | undefined;
|
|
23599
|
+
clientId?: string | null | undefined;
|
|
23600
|
+
channelId?: string | null | undefined;
|
|
23558
23601
|
status?: "active" | "pending" | undefined;
|
|
23559
23602
|
apiKey?: string | undefined;
|
|
23560
23603
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23604
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
23561
23605
|
}, {
|
|
23562
|
-
|
|
23563
|
-
wabaExternalId
|
|
23564
|
-
phoneNumberId
|
|
23565
|
-
|
|
23566
|
-
clientId?: string | undefined;
|
|
23567
|
-
channelId?: string | undefined;
|
|
23606
|
+
wabaBusinessId?: string | null | undefined;
|
|
23607
|
+
wabaExternalId?: string | null | undefined;
|
|
23608
|
+
phoneNumberId?: string | null | undefined;
|
|
23609
|
+
email?: string | null | undefined;
|
|
23610
|
+
clientId?: string | null | undefined;
|
|
23611
|
+
channelId?: string | null | undefined;
|
|
23568
23612
|
status?: "active" | "pending" | undefined;
|
|
23569
23613
|
apiKey?: string | undefined;
|
|
23570
23614
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23615
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
23571
23616
|
}>>;
|
|
23572
23617
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
23573
23618
|
mobileNumber: z.ZodString;
|
|
@@ -23592,15 +23637,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
23592
23637
|
additionalCredentials?: any;
|
|
23593
23638
|
senderId?: string | undefined;
|
|
23594
23639
|
whatsapp?: {
|
|
23595
|
-
|
|
23596
|
-
wabaExternalId
|
|
23597
|
-
phoneNumberId
|
|
23598
|
-
|
|
23599
|
-
clientId?: string | undefined;
|
|
23600
|
-
channelId?: string | undefined;
|
|
23640
|
+
wabaBusinessId?: string | null | undefined;
|
|
23641
|
+
wabaExternalId?: string | null | undefined;
|
|
23642
|
+
phoneNumberId?: string | null | undefined;
|
|
23643
|
+
email?: string | null | undefined;
|
|
23644
|
+
clientId?: string | null | undefined;
|
|
23645
|
+
channelId?: string | null | undefined;
|
|
23601
23646
|
status?: "active" | "pending" | undefined;
|
|
23602
23647
|
apiKey?: string | undefined;
|
|
23603
23648
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23649
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
23604
23650
|
} | undefined;
|
|
23605
23651
|
vonageCredentials?: {
|
|
23606
23652
|
apiKey: string;
|
|
@@ -23617,15 +23663,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
23617
23663
|
additionalCredentials?: any;
|
|
23618
23664
|
senderId?: string | undefined;
|
|
23619
23665
|
whatsapp?: {
|
|
23620
|
-
|
|
23621
|
-
wabaExternalId
|
|
23622
|
-
phoneNumberId
|
|
23623
|
-
|
|
23624
|
-
clientId?: string | undefined;
|
|
23625
|
-
channelId?: string | undefined;
|
|
23666
|
+
wabaBusinessId?: string | null | undefined;
|
|
23667
|
+
wabaExternalId?: string | null | undefined;
|
|
23668
|
+
phoneNumberId?: string | null | undefined;
|
|
23669
|
+
email?: string | null | undefined;
|
|
23670
|
+
clientId?: string | null | undefined;
|
|
23671
|
+
channelId?: string | null | undefined;
|
|
23626
23672
|
status?: "active" | "pending" | undefined;
|
|
23627
23673
|
apiKey?: string | undefined;
|
|
23628
23674
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23675
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
23629
23676
|
} | undefined;
|
|
23630
23677
|
vonageCredentials?: {
|
|
23631
23678
|
apiKey: string;
|
|
@@ -23876,15 +23923,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
23876
23923
|
additionalCredentials?: any;
|
|
23877
23924
|
senderId?: string | undefined;
|
|
23878
23925
|
whatsapp?: {
|
|
23879
|
-
|
|
23880
|
-
wabaExternalId
|
|
23881
|
-
phoneNumberId
|
|
23882
|
-
|
|
23883
|
-
clientId?: string | undefined;
|
|
23884
|
-
channelId?: string | undefined;
|
|
23926
|
+
wabaBusinessId?: string | null | undefined;
|
|
23927
|
+
wabaExternalId?: string | null | undefined;
|
|
23928
|
+
phoneNumberId?: string | null | undefined;
|
|
23929
|
+
email?: string | null | undefined;
|
|
23930
|
+
clientId?: string | null | undefined;
|
|
23931
|
+
channelId?: string | null | undefined;
|
|
23885
23932
|
status?: "active" | "pending" | undefined;
|
|
23886
23933
|
apiKey?: string | undefined;
|
|
23887
23934
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
23935
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
23888
23936
|
} | undefined;
|
|
23889
23937
|
vonageCredentials?: {
|
|
23890
23938
|
apiKey: string;
|
|
@@ -23966,15 +24014,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
23966
24014
|
additionalCredentials?: any;
|
|
23967
24015
|
senderId?: string | undefined;
|
|
23968
24016
|
whatsapp?: {
|
|
23969
|
-
|
|
23970
|
-
wabaExternalId
|
|
23971
|
-
phoneNumberId
|
|
23972
|
-
|
|
23973
|
-
clientId?: string | undefined;
|
|
23974
|
-
channelId?: string | undefined;
|
|
24017
|
+
wabaBusinessId?: string | null | undefined;
|
|
24018
|
+
wabaExternalId?: string | null | undefined;
|
|
24019
|
+
phoneNumberId?: string | null | undefined;
|
|
24020
|
+
email?: string | null | undefined;
|
|
24021
|
+
clientId?: string | null | undefined;
|
|
24022
|
+
channelId?: string | null | undefined;
|
|
23975
24023
|
status?: "active" | "pending" | undefined;
|
|
23976
24024
|
apiKey?: string | undefined;
|
|
23977
24025
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
24026
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
23978
24027
|
} | undefined;
|
|
23979
24028
|
vonageCredentials?: {
|
|
23980
24029
|
apiKey: string;
|
|
@@ -24620,15 +24669,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
24620
24669
|
additionalCredentials?: any;
|
|
24621
24670
|
senderId?: string | undefined;
|
|
24622
24671
|
whatsapp?: {
|
|
24623
|
-
|
|
24624
|
-
wabaExternalId
|
|
24625
|
-
phoneNumberId
|
|
24626
|
-
|
|
24627
|
-
clientId?: string | undefined;
|
|
24628
|
-
channelId?: string | undefined;
|
|
24672
|
+
wabaBusinessId?: string | null | undefined;
|
|
24673
|
+
wabaExternalId?: string | null | undefined;
|
|
24674
|
+
phoneNumberId?: string | null | undefined;
|
|
24675
|
+
email?: string | null | undefined;
|
|
24676
|
+
clientId?: string | null | undefined;
|
|
24677
|
+
channelId?: string | null | undefined;
|
|
24629
24678
|
status?: "active" | "pending" | undefined;
|
|
24630
24679
|
apiKey?: string | undefined;
|
|
24631
24680
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
24681
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
24632
24682
|
} | undefined;
|
|
24633
24683
|
vonageCredentials?: {
|
|
24634
24684
|
apiKey: string;
|
|
@@ -25043,15 +25093,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
25043
25093
|
additionalCredentials?: any;
|
|
25044
25094
|
senderId?: string | undefined;
|
|
25045
25095
|
whatsapp?: {
|
|
25046
|
-
|
|
25047
|
-
wabaExternalId
|
|
25048
|
-
phoneNumberId
|
|
25049
|
-
|
|
25050
|
-
clientId?: string | undefined;
|
|
25051
|
-
channelId?: string | undefined;
|
|
25096
|
+
wabaBusinessId?: string | null | undefined;
|
|
25097
|
+
wabaExternalId?: string | null | undefined;
|
|
25098
|
+
phoneNumberId?: string | null | undefined;
|
|
25099
|
+
email?: string | null | undefined;
|
|
25100
|
+
clientId?: string | null | undefined;
|
|
25101
|
+
channelId?: string | null | undefined;
|
|
25052
25102
|
status?: "active" | "pending" | undefined;
|
|
25053
25103
|
apiKey?: string | undefined;
|
|
25054
25104
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
25105
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
25055
25106
|
} | undefined;
|
|
25056
25107
|
vonageCredentials?: {
|
|
25057
25108
|
apiKey: string;
|
|
@@ -29229,35 +29280,38 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
29229
29280
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
29230
29281
|
senderId: z.ZodOptional<z.ZodString>;
|
|
29231
29282
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
29232
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
29233
|
-
wabaExternalId: z.ZodString
|
|
29234
|
-
phoneNumberId: z.ZodString
|
|
29235
|
-
email: z.ZodString
|
|
29236
|
-
clientId: z.ZodOptional<z.ZodString
|
|
29237
|
-
channelId: z.ZodOptional<z.ZodString
|
|
29283
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
29284
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
29285
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
29286
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
29287
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
29288
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
29238
29289
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
29239
29290
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
29240
29291
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
29292
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
29241
29293
|
}, "strip", z.ZodTypeAny, {
|
|
29242
|
-
|
|
29243
|
-
wabaExternalId
|
|
29244
|
-
phoneNumberId
|
|
29245
|
-
|
|
29246
|
-
clientId?: string | undefined;
|
|
29247
|
-
channelId?: string | undefined;
|
|
29294
|
+
wabaBusinessId?: string | null | undefined;
|
|
29295
|
+
wabaExternalId?: string | null | undefined;
|
|
29296
|
+
phoneNumberId?: string | null | undefined;
|
|
29297
|
+
email?: string | null | undefined;
|
|
29298
|
+
clientId?: string | null | undefined;
|
|
29299
|
+
channelId?: string | null | undefined;
|
|
29248
29300
|
status?: "active" | "pending" | undefined;
|
|
29249
29301
|
apiKey?: string | undefined;
|
|
29250
29302
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
29303
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
29251
29304
|
}, {
|
|
29252
|
-
|
|
29253
|
-
wabaExternalId
|
|
29254
|
-
phoneNumberId
|
|
29255
|
-
|
|
29256
|
-
clientId?: string | undefined;
|
|
29257
|
-
channelId?: string | undefined;
|
|
29305
|
+
wabaBusinessId?: string | null | undefined;
|
|
29306
|
+
wabaExternalId?: string | null | undefined;
|
|
29307
|
+
phoneNumberId?: string | null | undefined;
|
|
29308
|
+
email?: string | null | undefined;
|
|
29309
|
+
clientId?: string | null | undefined;
|
|
29310
|
+
channelId?: string | null | undefined;
|
|
29258
29311
|
status?: "active" | "pending" | undefined;
|
|
29259
29312
|
apiKey?: string | undefined;
|
|
29260
29313
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
29314
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
29261
29315
|
}>>;
|
|
29262
29316
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
29263
29317
|
mobileNumber: z.ZodString;
|
|
@@ -29282,15 +29336,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
29282
29336
|
additionalCredentials?: any;
|
|
29283
29337
|
senderId?: string | undefined;
|
|
29284
29338
|
whatsapp?: {
|
|
29285
|
-
|
|
29286
|
-
wabaExternalId
|
|
29287
|
-
phoneNumberId
|
|
29288
|
-
|
|
29289
|
-
clientId?: string | undefined;
|
|
29290
|
-
channelId?: string | undefined;
|
|
29339
|
+
wabaBusinessId?: string | null | undefined;
|
|
29340
|
+
wabaExternalId?: string | null | undefined;
|
|
29341
|
+
phoneNumberId?: string | null | undefined;
|
|
29342
|
+
email?: string | null | undefined;
|
|
29343
|
+
clientId?: string | null | undefined;
|
|
29344
|
+
channelId?: string | null | undefined;
|
|
29291
29345
|
status?: "active" | "pending" | undefined;
|
|
29292
29346
|
apiKey?: string | undefined;
|
|
29293
29347
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
29348
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
29294
29349
|
} | undefined;
|
|
29295
29350
|
vonageCredentials?: {
|
|
29296
29351
|
apiKey: string;
|
|
@@ -29307,15 +29362,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
29307
29362
|
additionalCredentials?: any;
|
|
29308
29363
|
senderId?: string | undefined;
|
|
29309
29364
|
whatsapp?: {
|
|
29310
|
-
|
|
29311
|
-
wabaExternalId
|
|
29312
|
-
phoneNumberId
|
|
29313
|
-
|
|
29314
|
-
clientId?: string | undefined;
|
|
29315
|
-
channelId?: string | undefined;
|
|
29365
|
+
wabaBusinessId?: string | null | undefined;
|
|
29366
|
+
wabaExternalId?: string | null | undefined;
|
|
29367
|
+
phoneNumberId?: string | null | undefined;
|
|
29368
|
+
email?: string | null | undefined;
|
|
29369
|
+
clientId?: string | null | undefined;
|
|
29370
|
+
channelId?: string | null | undefined;
|
|
29316
29371
|
status?: "active" | "pending" | undefined;
|
|
29317
29372
|
apiKey?: string | undefined;
|
|
29318
29373
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
29374
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
29319
29375
|
} | undefined;
|
|
29320
29376
|
vonageCredentials?: {
|
|
29321
29377
|
apiKey: string;
|
|
@@ -29566,15 +29622,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
29566
29622
|
additionalCredentials?: any;
|
|
29567
29623
|
senderId?: string | undefined;
|
|
29568
29624
|
whatsapp?: {
|
|
29569
|
-
|
|
29570
|
-
wabaExternalId
|
|
29571
|
-
phoneNumberId
|
|
29572
|
-
|
|
29573
|
-
clientId?: string | undefined;
|
|
29574
|
-
channelId?: string | undefined;
|
|
29625
|
+
wabaBusinessId?: string | null | undefined;
|
|
29626
|
+
wabaExternalId?: string | null | undefined;
|
|
29627
|
+
phoneNumberId?: string | null | undefined;
|
|
29628
|
+
email?: string | null | undefined;
|
|
29629
|
+
clientId?: string | null | undefined;
|
|
29630
|
+
channelId?: string | null | undefined;
|
|
29575
29631
|
status?: "active" | "pending" | undefined;
|
|
29576
29632
|
apiKey?: string | undefined;
|
|
29577
29633
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
29634
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
29578
29635
|
} | undefined;
|
|
29579
29636
|
vonageCredentials?: {
|
|
29580
29637
|
apiKey: string;
|
|
@@ -29656,15 +29713,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
29656
29713
|
additionalCredentials?: any;
|
|
29657
29714
|
senderId?: string | undefined;
|
|
29658
29715
|
whatsapp?: {
|
|
29659
|
-
|
|
29660
|
-
wabaExternalId
|
|
29661
|
-
phoneNumberId
|
|
29662
|
-
|
|
29663
|
-
clientId?: string | undefined;
|
|
29664
|
-
channelId?: string | undefined;
|
|
29716
|
+
wabaBusinessId?: string | null | undefined;
|
|
29717
|
+
wabaExternalId?: string | null | undefined;
|
|
29718
|
+
phoneNumberId?: string | null | undefined;
|
|
29719
|
+
email?: string | null | undefined;
|
|
29720
|
+
clientId?: string | null | undefined;
|
|
29721
|
+
channelId?: string | null | undefined;
|
|
29665
29722
|
status?: "active" | "pending" | undefined;
|
|
29666
29723
|
apiKey?: string | undefined;
|
|
29667
29724
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
29725
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
29668
29726
|
} | undefined;
|
|
29669
29727
|
vonageCredentials?: {
|
|
29670
29728
|
apiKey: string;
|
|
@@ -30310,15 +30368,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
30310
30368
|
additionalCredentials?: any;
|
|
30311
30369
|
senderId?: string | undefined;
|
|
30312
30370
|
whatsapp?: {
|
|
30313
|
-
|
|
30314
|
-
wabaExternalId
|
|
30315
|
-
phoneNumberId
|
|
30316
|
-
|
|
30317
|
-
clientId?: string | undefined;
|
|
30318
|
-
channelId?: string | undefined;
|
|
30371
|
+
wabaBusinessId?: string | null | undefined;
|
|
30372
|
+
wabaExternalId?: string | null | undefined;
|
|
30373
|
+
phoneNumberId?: string | null | undefined;
|
|
30374
|
+
email?: string | null | undefined;
|
|
30375
|
+
clientId?: string | null | undefined;
|
|
30376
|
+
channelId?: string | null | undefined;
|
|
30319
30377
|
status?: "active" | "pending" | undefined;
|
|
30320
30378
|
apiKey?: string | undefined;
|
|
30321
30379
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
30380
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
30322
30381
|
} | undefined;
|
|
30323
30382
|
vonageCredentials?: {
|
|
30324
30383
|
apiKey: string;
|
|
@@ -30733,15 +30792,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
30733
30792
|
additionalCredentials?: any;
|
|
30734
30793
|
senderId?: string | undefined;
|
|
30735
30794
|
whatsapp?: {
|
|
30736
|
-
|
|
30737
|
-
wabaExternalId
|
|
30738
|
-
phoneNumberId
|
|
30739
|
-
|
|
30740
|
-
clientId?: string | undefined;
|
|
30741
|
-
channelId?: string | undefined;
|
|
30795
|
+
wabaBusinessId?: string | null | undefined;
|
|
30796
|
+
wabaExternalId?: string | null | undefined;
|
|
30797
|
+
phoneNumberId?: string | null | undefined;
|
|
30798
|
+
email?: string | null | undefined;
|
|
30799
|
+
clientId?: string | null | undefined;
|
|
30800
|
+
channelId?: string | null | undefined;
|
|
30742
30801
|
status?: "active" | "pending" | undefined;
|
|
30743
30802
|
apiKey?: string | undefined;
|
|
30744
30803
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
30804
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
30745
30805
|
} | undefined;
|
|
30746
30806
|
vonageCredentials?: {
|
|
30747
30807
|
apiKey: string;
|
|
@@ -32929,15 +32989,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
32929
32989
|
additionalCredentials?: any;
|
|
32930
32990
|
senderId?: string | undefined;
|
|
32931
32991
|
whatsapp?: {
|
|
32932
|
-
|
|
32933
|
-
wabaExternalId
|
|
32934
|
-
phoneNumberId
|
|
32935
|
-
|
|
32936
|
-
clientId?: string | undefined;
|
|
32937
|
-
channelId?: string | undefined;
|
|
32992
|
+
wabaBusinessId?: string | null | undefined;
|
|
32993
|
+
wabaExternalId?: string | null | undefined;
|
|
32994
|
+
phoneNumberId?: string | null | undefined;
|
|
32995
|
+
email?: string | null | undefined;
|
|
32996
|
+
clientId?: string | null | undefined;
|
|
32997
|
+
channelId?: string | null | undefined;
|
|
32938
32998
|
status?: "active" | "pending" | undefined;
|
|
32939
32999
|
apiKey?: string | undefined;
|
|
32940
33000
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
33001
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
32941
33002
|
} | undefined;
|
|
32942
33003
|
vonageCredentials?: {
|
|
32943
33004
|
apiKey: string;
|
|
@@ -33689,15 +33750,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
33689
33750
|
additionalCredentials?: any;
|
|
33690
33751
|
senderId?: string | undefined;
|
|
33691
33752
|
whatsapp?: {
|
|
33692
|
-
|
|
33693
|
-
wabaExternalId
|
|
33694
|
-
phoneNumberId
|
|
33695
|
-
|
|
33696
|
-
clientId?: string | undefined;
|
|
33697
|
-
channelId?: string | undefined;
|
|
33753
|
+
wabaBusinessId?: string | null | undefined;
|
|
33754
|
+
wabaExternalId?: string | null | undefined;
|
|
33755
|
+
phoneNumberId?: string | null | undefined;
|
|
33756
|
+
email?: string | null | undefined;
|
|
33757
|
+
clientId?: string | null | undefined;
|
|
33758
|
+
channelId?: string | null | undefined;
|
|
33698
33759
|
status?: "active" | "pending" | undefined;
|
|
33699
33760
|
apiKey?: string | undefined;
|
|
33700
33761
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
33762
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
33701
33763
|
} | undefined;
|
|
33702
33764
|
vonageCredentials?: {
|
|
33703
33765
|
apiKey: string;
|
|
@@ -34456,15 +34518,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
34456
34518
|
additionalCredentials?: any;
|
|
34457
34519
|
senderId?: string | undefined;
|
|
34458
34520
|
whatsapp?: {
|
|
34459
|
-
|
|
34460
|
-
wabaExternalId
|
|
34461
|
-
phoneNumberId
|
|
34462
|
-
|
|
34463
|
-
clientId?: string | undefined;
|
|
34464
|
-
channelId?: string | undefined;
|
|
34521
|
+
wabaBusinessId?: string | null | undefined;
|
|
34522
|
+
wabaExternalId?: string | null | undefined;
|
|
34523
|
+
phoneNumberId?: string | null | undefined;
|
|
34524
|
+
email?: string | null | undefined;
|
|
34525
|
+
clientId?: string | null | undefined;
|
|
34526
|
+
channelId?: string | null | undefined;
|
|
34465
34527
|
status?: "active" | "pending" | undefined;
|
|
34466
34528
|
apiKey?: string | undefined;
|
|
34467
34529
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
34530
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
34468
34531
|
} | undefined;
|
|
34469
34532
|
vonageCredentials?: {
|
|
34470
34533
|
apiKey: string;
|
|
@@ -35211,15 +35274,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
35211
35274
|
additionalCredentials?: any;
|
|
35212
35275
|
senderId?: string | undefined;
|
|
35213
35276
|
whatsapp?: {
|
|
35214
|
-
|
|
35215
|
-
wabaExternalId
|
|
35216
|
-
phoneNumberId
|
|
35217
|
-
|
|
35218
|
-
clientId?: string | undefined;
|
|
35219
|
-
channelId?: string | undefined;
|
|
35277
|
+
wabaBusinessId?: string | null | undefined;
|
|
35278
|
+
wabaExternalId?: string | null | undefined;
|
|
35279
|
+
phoneNumberId?: string | null | undefined;
|
|
35280
|
+
email?: string | null | undefined;
|
|
35281
|
+
clientId?: string | null | undefined;
|
|
35282
|
+
channelId?: string | null | undefined;
|
|
35220
35283
|
status?: "active" | "pending" | undefined;
|
|
35221
35284
|
apiKey?: string | undefined;
|
|
35222
35285
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
35286
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
35223
35287
|
} | undefined;
|
|
35224
35288
|
vonageCredentials?: {
|
|
35225
35289
|
apiKey: string;
|
|
@@ -36104,15 +36168,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
36104
36168
|
additionalCredentials?: any;
|
|
36105
36169
|
senderId?: string | undefined;
|
|
36106
36170
|
whatsapp?: {
|
|
36107
|
-
|
|
36108
|
-
wabaExternalId
|
|
36109
|
-
phoneNumberId
|
|
36110
|
-
|
|
36111
|
-
clientId?: string | undefined;
|
|
36112
|
-
channelId?: string | undefined;
|
|
36171
|
+
wabaBusinessId?: string | null | undefined;
|
|
36172
|
+
wabaExternalId?: string | null | undefined;
|
|
36173
|
+
phoneNumberId?: string | null | undefined;
|
|
36174
|
+
email?: string | null | undefined;
|
|
36175
|
+
clientId?: string | null | undefined;
|
|
36176
|
+
channelId?: string | null | undefined;
|
|
36113
36177
|
status?: "active" | "pending" | undefined;
|
|
36114
36178
|
apiKey?: string | undefined;
|
|
36115
36179
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
36180
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
36116
36181
|
} | undefined;
|
|
36117
36182
|
vonageCredentials?: {
|
|
36118
36183
|
apiKey: string;
|
|
@@ -36859,15 +36924,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
|
36859
36924
|
additionalCredentials?: any;
|
|
36860
36925
|
senderId?: string | undefined;
|
|
36861
36926
|
whatsapp?: {
|
|
36862
|
-
|
|
36863
|
-
wabaExternalId
|
|
36864
|
-
phoneNumberId
|
|
36865
|
-
|
|
36866
|
-
clientId?: string | undefined;
|
|
36867
|
-
channelId?: string | undefined;
|
|
36927
|
+
wabaBusinessId?: string | null | undefined;
|
|
36928
|
+
wabaExternalId?: string | null | undefined;
|
|
36929
|
+
phoneNumberId?: string | null | undefined;
|
|
36930
|
+
email?: string | null | undefined;
|
|
36931
|
+
clientId?: string | null | undefined;
|
|
36932
|
+
channelId?: string | null | undefined;
|
|
36868
36933
|
status?: "active" | "pending" | undefined;
|
|
36869
36934
|
apiKey?: string | undefined;
|
|
36870
36935
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
36936
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
36871
36937
|
} | undefined;
|
|
36872
36938
|
vonageCredentials?: {
|
|
36873
36939
|
apiKey: string;
|