@kl1/contracts 1.1.55 → 1.1.56
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/automation-queue/index.d.ts +112 -0
- package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/index.d.ts +179 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +12 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +14 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +377 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +66 -0
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +107 -10
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +1114 -40
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-intelligence/index.d.ts +115 -0
- package/dist/api-contracts/src/cx-intelligence/index.d.ts.map +1 -0
- package/dist/api-contracts/src/cx-log/index.d.ts +13 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +139 -5
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +9 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/index.d.ts +417 -18
- package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/schema.d.ts +144 -2
- package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/validation.d.ts +10 -0
- package/dist/api-contracts/src/hold-label/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +110 -5
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +98 -5
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +11 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +110 -5
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +7 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +25 -5
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/subscription/index.d.ts +184 -184
- package/dist/api-contracts/src/subscription/schema.d.ts +216 -216
- package/dist/api-contracts/src/telegram/index.d.ts +80 -5
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +80 -5
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +1099 -5
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +94 -5
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +22 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +61 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +61 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -2578,6 +2578,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2578
2578
|
channelId: z.ZodOptional<z.ZodString>;
|
2579
2579
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
2580
2580
|
apiKey: z.ZodOptional<z.ZodString>;
|
2581
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
2581
2582
|
}, "strip", z.ZodTypeAny, {
|
2582
2583
|
email: string;
|
2583
2584
|
wabaExternalId: string;
|
@@ -2587,6 +2588,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2587
2588
|
channelId?: string | undefined;
|
2588
2589
|
status?: "active" | "pending" | undefined;
|
2589
2590
|
apiKey?: string | undefined;
|
2591
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2590
2592
|
}, {
|
2591
2593
|
email: string;
|
2592
2594
|
wabaExternalId: string;
|
@@ -2596,6 +2598,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2596
2598
|
channelId?: string | undefined;
|
2597
2599
|
status?: "active" | "pending" | undefined;
|
2598
2600
|
apiKey?: string | undefined;
|
2601
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2599
2602
|
}>>;
|
2600
2603
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
2601
2604
|
mobileNumber: z.ZodString;
|
@@ -2628,6 +2631,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2628
2631
|
channelId?: string | undefined;
|
2629
2632
|
status?: "active" | "pending" | undefined;
|
2630
2633
|
apiKey?: string | undefined;
|
2634
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2631
2635
|
} | undefined;
|
2632
2636
|
vonageCredentials?: {
|
2633
2637
|
apiKey: string;
|
@@ -2652,6 +2656,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2652
2656
|
channelId?: string | undefined;
|
2653
2657
|
status?: "active" | "pending" | undefined;
|
2654
2658
|
apiKey?: string | undefined;
|
2659
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2655
2660
|
} | undefined;
|
2656
2661
|
vonageCredentials?: {
|
2657
2662
|
apiKey: string;
|
@@ -2910,6 +2915,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2910
2915
|
channelId?: string | undefined;
|
2911
2916
|
status?: "active" | "pending" | undefined;
|
2912
2917
|
apiKey?: string | undefined;
|
2918
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
2913
2919
|
} | undefined;
|
2914
2920
|
vonageCredentials?: {
|
2915
2921
|
apiKey: string;
|
@@ -2999,6 +3005,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2999
3005
|
channelId?: string | undefined;
|
3000
3006
|
status?: "active" | "pending" | undefined;
|
3001
3007
|
apiKey?: string | undefined;
|
3008
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
3002
3009
|
} | undefined;
|
3003
3010
|
vonageCredentials?: {
|
3004
3011
|
apiKey: string;
|
@@ -3536,6 +3543,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3536
3543
|
channelId?: string | undefined;
|
3537
3544
|
status?: "active" | "pending" | undefined;
|
3538
3545
|
apiKey?: string | undefined;
|
3546
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
3539
3547
|
} | undefined;
|
3540
3548
|
vonageCredentials?: {
|
3541
3549
|
apiKey: string;
|
@@ -3936,6 +3944,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3936
3944
|
channelId?: string | undefined;
|
3937
3945
|
status?: "active" | "pending" | undefined;
|
3938
3946
|
apiKey?: string | undefined;
|
3947
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
3939
3948
|
} | undefined;
|
3940
3949
|
vonageCredentials?: {
|
3941
3950
|
apiKey: string;
|
@@ -5830,6 +5839,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5830
5839
|
channelId: z.ZodOptional<z.ZodString>;
|
5831
5840
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
5832
5841
|
apiKey: z.ZodOptional<z.ZodString>;
|
5842
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
5833
5843
|
}, "strip", z.ZodTypeAny, {
|
5834
5844
|
email: string;
|
5835
5845
|
wabaExternalId: string;
|
@@ -5839,6 +5849,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5839
5849
|
channelId?: string | undefined;
|
5840
5850
|
status?: "active" | "pending" | undefined;
|
5841
5851
|
apiKey?: string | undefined;
|
5852
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
5842
5853
|
}, {
|
5843
5854
|
email: string;
|
5844
5855
|
wabaExternalId: string;
|
@@ -5848,6 +5859,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5848
5859
|
channelId?: string | undefined;
|
5849
5860
|
status?: "active" | "pending" | undefined;
|
5850
5861
|
apiKey?: string | undefined;
|
5862
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
5851
5863
|
}>>;
|
5852
5864
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
5853
5865
|
mobileNumber: z.ZodString;
|
@@ -5880,6 +5892,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5880
5892
|
channelId?: string | undefined;
|
5881
5893
|
status?: "active" | "pending" | undefined;
|
5882
5894
|
apiKey?: string | undefined;
|
5895
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
5883
5896
|
} | undefined;
|
5884
5897
|
vonageCredentials?: {
|
5885
5898
|
apiKey: string;
|
@@ -5904,6 +5917,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5904
5917
|
channelId?: string | undefined;
|
5905
5918
|
status?: "active" | "pending" | undefined;
|
5906
5919
|
apiKey?: string | undefined;
|
5920
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
5907
5921
|
} | undefined;
|
5908
5922
|
vonageCredentials?: {
|
5909
5923
|
apiKey: string;
|
@@ -6162,6 +6176,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6162
6176
|
channelId?: string | undefined;
|
6163
6177
|
status?: "active" | "pending" | undefined;
|
6164
6178
|
apiKey?: string | undefined;
|
6179
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
6165
6180
|
} | undefined;
|
6166
6181
|
vonageCredentials?: {
|
6167
6182
|
apiKey: string;
|
@@ -6251,6 +6266,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6251
6266
|
channelId?: string | undefined;
|
6252
6267
|
status?: "active" | "pending" | undefined;
|
6253
6268
|
apiKey?: string | undefined;
|
6269
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
6254
6270
|
} | undefined;
|
6255
6271
|
vonageCredentials?: {
|
6256
6272
|
apiKey: string;
|
@@ -6788,6 +6804,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6788
6804
|
channelId?: string | undefined;
|
6789
6805
|
status?: "active" | "pending" | undefined;
|
6790
6806
|
apiKey?: string | undefined;
|
6807
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
6791
6808
|
} | undefined;
|
6792
6809
|
vonageCredentials?: {
|
6793
6810
|
apiKey: string;
|
@@ -7188,6 +7205,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7188
7205
|
channelId?: string | undefined;
|
7189
7206
|
status?: "active" | "pending" | undefined;
|
7190
7207
|
apiKey?: string | undefined;
|
7208
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
7191
7209
|
} | undefined;
|
7192
7210
|
vonageCredentials?: {
|
7193
7211
|
apiKey: string;
|
@@ -9361,6 +9379,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
9361
9379
|
channelId?: string | undefined;
|
9362
9380
|
status?: "active" | "pending" | undefined;
|
9363
9381
|
apiKey?: string | undefined;
|
9382
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
9364
9383
|
} | undefined;
|
9365
9384
|
vonageCredentials?: {
|
9366
9385
|
apiKey: string;
|
@@ -10098,6 +10117,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
10098
10117
|
channelId?: string | undefined;
|
10099
10118
|
status?: "active" | "pending" | undefined;
|
10100
10119
|
apiKey?: string | undefined;
|
10120
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
10101
10121
|
} | undefined;
|
10102
10122
|
vonageCredentials?: {
|
10103
10123
|
apiKey: string;
|
@@ -12653,6 +12673,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12653
12673
|
channelId: z.ZodOptional<z.ZodString>;
|
12654
12674
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
12655
12675
|
apiKey: z.ZodOptional<z.ZodString>;
|
12676
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
12656
12677
|
}, "strip", z.ZodTypeAny, {
|
12657
12678
|
email: string;
|
12658
12679
|
wabaExternalId: string;
|
@@ -12662,6 +12683,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12662
12683
|
channelId?: string | undefined;
|
12663
12684
|
status?: "active" | "pending" | undefined;
|
12664
12685
|
apiKey?: string | undefined;
|
12686
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
12665
12687
|
}, {
|
12666
12688
|
email: string;
|
12667
12689
|
wabaExternalId: string;
|
@@ -12671,6 +12693,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12671
12693
|
channelId?: string | undefined;
|
12672
12694
|
status?: "active" | "pending" | undefined;
|
12673
12695
|
apiKey?: string | undefined;
|
12696
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
12674
12697
|
}>>;
|
12675
12698
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
12676
12699
|
mobileNumber: z.ZodString;
|
@@ -12703,6 +12726,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12703
12726
|
channelId?: string | undefined;
|
12704
12727
|
status?: "active" | "pending" | undefined;
|
12705
12728
|
apiKey?: string | undefined;
|
12729
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
12706
12730
|
} | undefined;
|
12707
12731
|
vonageCredentials?: {
|
12708
12732
|
apiKey: string;
|
@@ -12727,6 +12751,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12727
12751
|
channelId?: string | undefined;
|
12728
12752
|
status?: "active" | "pending" | undefined;
|
12729
12753
|
apiKey?: string | undefined;
|
12754
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
12730
12755
|
} | undefined;
|
12731
12756
|
vonageCredentials?: {
|
12732
12757
|
apiKey: string;
|
@@ -12985,6 +13010,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12985
13010
|
channelId?: string | undefined;
|
12986
13011
|
status?: "active" | "pending" | undefined;
|
12987
13012
|
apiKey?: string | undefined;
|
13013
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
12988
13014
|
} | undefined;
|
12989
13015
|
vonageCredentials?: {
|
12990
13016
|
apiKey: string;
|
@@ -13074,6 +13100,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
13074
13100
|
channelId?: string | undefined;
|
13075
13101
|
status?: "active" | "pending" | undefined;
|
13076
13102
|
apiKey?: string | undefined;
|
13103
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
13077
13104
|
} | undefined;
|
13078
13105
|
vonageCredentials?: {
|
13079
13106
|
apiKey: string;
|
@@ -13611,6 +13638,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
13611
13638
|
channelId?: string | undefined;
|
13612
13639
|
status?: "active" | "pending" | undefined;
|
13613
13640
|
apiKey?: string | undefined;
|
13641
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
13614
13642
|
} | undefined;
|
13615
13643
|
vonageCredentials?: {
|
13616
13644
|
apiKey: string;
|
@@ -14011,6 +14039,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
14011
14039
|
channelId?: string | undefined;
|
14012
14040
|
status?: "active" | "pending" | undefined;
|
14013
14041
|
apiKey?: string | undefined;
|
14042
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
14014
14043
|
} | undefined;
|
14015
14044
|
vonageCredentials?: {
|
14016
14045
|
apiKey: string;
|
@@ -15654,6 +15683,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15654
15683
|
channelId: z.ZodOptional<z.ZodString>;
|
15655
15684
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
15656
15685
|
apiKey: z.ZodOptional<z.ZodString>;
|
15686
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
15657
15687
|
}, "strip", z.ZodTypeAny, {
|
15658
15688
|
email: string;
|
15659
15689
|
wabaExternalId: string;
|
@@ -15663,6 +15693,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15663
15693
|
channelId?: string | undefined;
|
15664
15694
|
status?: "active" | "pending" | undefined;
|
15665
15695
|
apiKey?: string | undefined;
|
15696
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
15666
15697
|
}, {
|
15667
15698
|
email: string;
|
15668
15699
|
wabaExternalId: string;
|
@@ -15672,6 +15703,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15672
15703
|
channelId?: string | undefined;
|
15673
15704
|
status?: "active" | "pending" | undefined;
|
15674
15705
|
apiKey?: string | undefined;
|
15706
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
15675
15707
|
}>>;
|
15676
15708
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
15677
15709
|
mobileNumber: z.ZodString;
|
@@ -15704,6 +15736,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15704
15736
|
channelId?: string | undefined;
|
15705
15737
|
status?: "active" | "pending" | undefined;
|
15706
15738
|
apiKey?: string | undefined;
|
15739
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
15707
15740
|
} | undefined;
|
15708
15741
|
vonageCredentials?: {
|
15709
15742
|
apiKey: string;
|
@@ -15728,6 +15761,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15728
15761
|
channelId?: string | undefined;
|
15729
15762
|
status?: "active" | "pending" | undefined;
|
15730
15763
|
apiKey?: string | undefined;
|
15764
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
15731
15765
|
} | undefined;
|
15732
15766
|
vonageCredentials?: {
|
15733
15767
|
apiKey: string;
|
@@ -15986,6 +16020,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15986
16020
|
channelId?: string | undefined;
|
15987
16021
|
status?: "active" | "pending" | undefined;
|
15988
16022
|
apiKey?: string | undefined;
|
16023
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
15989
16024
|
} | undefined;
|
15990
16025
|
vonageCredentials?: {
|
15991
16026
|
apiKey: string;
|
@@ -16075,6 +16110,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
16075
16110
|
channelId?: string | undefined;
|
16076
16111
|
status?: "active" | "pending" | undefined;
|
16077
16112
|
apiKey?: string | undefined;
|
16113
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
16078
16114
|
} | undefined;
|
16079
16115
|
vonageCredentials?: {
|
16080
16116
|
apiKey: string;
|
@@ -17421,6 +17457,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
17421
17457
|
channelId?: string | undefined;
|
17422
17458
|
status?: "active" | "pending" | undefined;
|
17423
17459
|
apiKey?: string | undefined;
|
17460
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
17424
17461
|
} | undefined;
|
17425
17462
|
vonageCredentials?: {
|
17426
17463
|
apiKey: string;
|
@@ -17697,6 +17734,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
17697
17734
|
channelId?: string | undefined;
|
17698
17735
|
status?: "active" | "pending" | undefined;
|
17699
17736
|
apiKey?: string | undefined;
|
17737
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
17700
17738
|
} | undefined;
|
17701
17739
|
vonageCredentials?: {
|
17702
17740
|
apiKey: string;
|
@@ -18083,6 +18121,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
18083
18121
|
channelId?: string | undefined;
|
18084
18122
|
status?: "active" | "pending" | undefined;
|
18085
18123
|
apiKey?: string | undefined;
|
18124
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
18086
18125
|
} | undefined;
|
18087
18126
|
vonageCredentials?: {
|
18088
18127
|
apiKey: string;
|
@@ -18711,6 +18750,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
18711
18750
|
channelId?: string | undefined;
|
18712
18751
|
status?: "active" | "pending" | undefined;
|
18713
18752
|
apiKey?: string | undefined;
|
18753
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
18714
18754
|
} | undefined;
|
18715
18755
|
vonageCredentials?: {
|
18716
18756
|
apiKey: string;
|
@@ -19100,6 +19140,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
19100
19140
|
channelId?: string | undefined;
|
19101
19141
|
status?: "active" | "pending" | undefined;
|
19102
19142
|
apiKey?: string | undefined;
|
19143
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
19103
19144
|
} | undefined;
|
19104
19145
|
vonageCredentials?: {
|
19105
19146
|
apiKey: string;
|
@@ -19728,6 +19769,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
19728
19769
|
channelId?: string | undefined;
|
19729
19770
|
status?: "active" | "pending" | undefined;
|
19730
19771
|
apiKey?: string | undefined;
|
19772
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
19731
19773
|
} | undefined;
|
19732
19774
|
vonageCredentials?: {
|
19733
19775
|
apiKey: string;
|
@@ -22937,6 +22979,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22937
22979
|
channelId: z.ZodOptional<z.ZodString>;
|
22938
22980
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
22939
22981
|
apiKey: z.ZodOptional<z.ZodString>;
|
22982
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
22940
22983
|
}, "strip", z.ZodTypeAny, {
|
22941
22984
|
email: string;
|
22942
22985
|
wabaExternalId: string;
|
@@ -22946,6 +22989,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22946
22989
|
channelId?: string | undefined;
|
22947
22990
|
status?: "active" | "pending" | undefined;
|
22948
22991
|
apiKey?: string | undefined;
|
22992
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22949
22993
|
}, {
|
22950
22994
|
email: string;
|
22951
22995
|
wabaExternalId: string;
|
@@ -22955,6 +22999,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22955
22999
|
channelId?: string | undefined;
|
22956
23000
|
status?: "active" | "pending" | undefined;
|
22957
23001
|
apiKey?: string | undefined;
|
23002
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22958
23003
|
}>>;
|
22959
23004
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
22960
23005
|
mobileNumber: z.ZodString;
|
@@ -22987,6 +23032,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22987
23032
|
channelId?: string | undefined;
|
22988
23033
|
status?: "active" | "pending" | undefined;
|
22989
23034
|
apiKey?: string | undefined;
|
23035
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
22990
23036
|
} | undefined;
|
22991
23037
|
vonageCredentials?: {
|
22992
23038
|
apiKey: string;
|
@@ -23011,6 +23057,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
23011
23057
|
channelId?: string | undefined;
|
23012
23058
|
status?: "active" | "pending" | undefined;
|
23013
23059
|
apiKey?: string | undefined;
|
23060
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23014
23061
|
} | undefined;
|
23015
23062
|
vonageCredentials?: {
|
23016
23063
|
apiKey: string;
|
@@ -23269,6 +23316,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
23269
23316
|
channelId?: string | undefined;
|
23270
23317
|
status?: "active" | "pending" | undefined;
|
23271
23318
|
apiKey?: string | undefined;
|
23319
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23272
23320
|
} | undefined;
|
23273
23321
|
vonageCredentials?: {
|
23274
23322
|
apiKey: string;
|
@@ -23358,6 +23406,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
23358
23406
|
channelId?: string | undefined;
|
23359
23407
|
status?: "active" | "pending" | undefined;
|
23360
23408
|
apiKey?: string | undefined;
|
23409
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23361
23410
|
} | undefined;
|
23362
23411
|
vonageCredentials?: {
|
23363
23412
|
apiKey: string;
|
@@ -23895,6 +23944,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
23895
23944
|
channelId?: string | undefined;
|
23896
23945
|
status?: "active" | "pending" | undefined;
|
23897
23946
|
apiKey?: string | undefined;
|
23947
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
23898
23948
|
} | undefined;
|
23899
23949
|
vonageCredentials?: {
|
23900
23950
|
apiKey: string;
|
@@ -24295,6 +24345,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
24295
24345
|
channelId?: string | undefined;
|
24296
24346
|
status?: "active" | "pending" | undefined;
|
24297
24347
|
apiKey?: string | undefined;
|
24348
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
24298
24349
|
} | undefined;
|
24299
24350
|
vonageCredentials?: {
|
24300
24351
|
apiKey: string;
|
@@ -28458,6 +28509,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
28458
28509
|
channelId: z.ZodOptional<z.ZodString>;
|
28459
28510
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
28460
28511
|
apiKey: z.ZodOptional<z.ZodString>;
|
28512
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
28461
28513
|
}, "strip", z.ZodTypeAny, {
|
28462
28514
|
email: string;
|
28463
28515
|
wabaExternalId: string;
|
@@ -28467,6 +28519,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
28467
28519
|
channelId?: string | undefined;
|
28468
28520
|
status?: "active" | "pending" | undefined;
|
28469
28521
|
apiKey?: string | undefined;
|
28522
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
28470
28523
|
}, {
|
28471
28524
|
email: string;
|
28472
28525
|
wabaExternalId: string;
|
@@ -28476,6 +28529,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
28476
28529
|
channelId?: string | undefined;
|
28477
28530
|
status?: "active" | "pending" | undefined;
|
28478
28531
|
apiKey?: string | undefined;
|
28532
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
28479
28533
|
}>>;
|
28480
28534
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
28481
28535
|
mobileNumber: z.ZodString;
|
@@ -28508,6 +28562,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
28508
28562
|
channelId?: string | undefined;
|
28509
28563
|
status?: "active" | "pending" | undefined;
|
28510
28564
|
apiKey?: string | undefined;
|
28565
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
28511
28566
|
} | undefined;
|
28512
28567
|
vonageCredentials?: {
|
28513
28568
|
apiKey: string;
|
@@ -28532,6 +28587,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
28532
28587
|
channelId?: string | undefined;
|
28533
28588
|
status?: "active" | "pending" | undefined;
|
28534
28589
|
apiKey?: string | undefined;
|
28590
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
28535
28591
|
} | undefined;
|
28536
28592
|
vonageCredentials?: {
|
28537
28593
|
apiKey: string;
|
@@ -28790,6 +28846,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
28790
28846
|
channelId?: string | undefined;
|
28791
28847
|
status?: "active" | "pending" | undefined;
|
28792
28848
|
apiKey?: string | undefined;
|
28849
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
28793
28850
|
} | undefined;
|
28794
28851
|
vonageCredentials?: {
|
28795
28852
|
apiKey: string;
|
@@ -28879,6 +28936,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
28879
28936
|
channelId?: string | undefined;
|
28880
28937
|
status?: "active" | "pending" | undefined;
|
28881
28938
|
apiKey?: string | undefined;
|
28939
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
28882
28940
|
} | undefined;
|
28883
28941
|
vonageCredentials?: {
|
28884
28942
|
apiKey: string;
|
@@ -29416,6 +29474,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
29416
29474
|
channelId?: string | undefined;
|
29417
29475
|
status?: "active" | "pending" | undefined;
|
29418
29476
|
apiKey?: string | undefined;
|
29477
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
29419
29478
|
} | undefined;
|
29420
29479
|
vonageCredentials?: {
|
29421
29480
|
apiKey: string;
|
@@ -29816,6 +29875,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
29816
29875
|
channelId?: string | undefined;
|
29817
29876
|
status?: "active" | "pending" | undefined;
|
29818
29877
|
apiKey?: string | undefined;
|
29878
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
29819
29879
|
} | undefined;
|
29820
29880
|
vonageCredentials?: {
|
29821
29881
|
apiKey: string;
|
@@ -31989,6 +32049,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
31989
32049
|
channelId?: string | undefined;
|
31990
32050
|
status?: "active" | "pending" | undefined;
|
31991
32051
|
apiKey?: string | undefined;
|
32052
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
31992
32053
|
} | undefined;
|
31993
32054
|
vonageCredentials?: {
|
31994
32055
|
apiKey: string;
|
@@ -32726,6 +32787,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
32726
32787
|
channelId?: string | undefined;
|
32727
32788
|
status?: "active" | "pending" | undefined;
|
32728
32789
|
apiKey?: string | undefined;
|
32790
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
32729
32791
|
} | undefined;
|
32730
32792
|
vonageCredentials?: {
|
32731
32793
|
apiKey: string;
|
@@ -33470,6 +33532,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
33470
33532
|
channelId?: string | undefined;
|
33471
33533
|
status?: "active" | "pending" | undefined;
|
33472
33534
|
apiKey?: string | undefined;
|
33535
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
33473
33536
|
} | undefined;
|
33474
33537
|
vonageCredentials?: {
|
33475
33538
|
apiKey: string;
|
@@ -34202,6 +34265,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
34202
34265
|
channelId?: string | undefined;
|
34203
34266
|
status?: "active" | "pending" | undefined;
|
34204
34267
|
apiKey?: string | undefined;
|
34268
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
34205
34269
|
} | undefined;
|
34206
34270
|
vonageCredentials?: {
|
34207
34271
|
apiKey: string;
|
@@ -35072,6 +35136,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
35072
35136
|
channelId?: string | undefined;
|
35073
35137
|
status?: "active" | "pending" | undefined;
|
35074
35138
|
apiKey?: string | undefined;
|
35139
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
35075
35140
|
} | undefined;
|
35076
35141
|
vonageCredentials?: {
|
35077
35142
|
apiKey: string;
|
@@ -35804,6 +35869,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
35804
35869
|
channelId?: string | undefined;
|
35805
35870
|
status?: "active" | "pending" | undefined;
|
35806
35871
|
apiKey?: string | undefined;
|
35872
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
35807
35873
|
} | undefined;
|
35808
35874
|
vonageCredentials?: {
|
35809
35875
|
apiKey: string;
|