@kl1/contracts 1.1.46 → 1.1.47

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.
Files changed (57) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +184 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +21 -0
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +8 -0
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +230 -0
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +90 -0
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +79 -0
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +817 -3
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
  20. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
  22. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
  24. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  25. package/dist/api-contracts/src/instagram/index.d.ts +83 -0
  26. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/line/index.d.ts +75 -0
  28. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/validation.d.ts +9 -0
  30. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  31. package/dist/api-contracts/src/messenger/index.d.ts +83 -0
  32. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  33. package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
  34. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  35. package/dist/api-contracts/src/sms/index.d.ts +21 -0
  36. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/sms/schema.d.ts +5 -0
  38. package/dist/api-contracts/src/sms/schema.d.ts.map +1 -1
  39. package/dist/api-contracts/src/sms/validation.d.ts +3 -0
  40. package/dist/api-contracts/src/sms/validation.d.ts.map +1 -1
  41. package/dist/api-contracts/src/telegram/index.d.ts +20328 -0
  42. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -0
  43. package/dist/api-contracts/src/telegram/schema.d.ts +2 -0
  44. package/dist/api-contracts/src/telegram/schema.d.ts.map +1 -0
  45. package/dist/api-contracts/src/telegram/validation.d.ts +45 -0
  46. package/dist/api-contracts/src/telegram/validation.d.ts.map +1 -0
  47. package/dist/api-contracts/src/viber/index.d.ts +61 -0
  48. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  49. package/dist/api-contracts/src/webchat/index.d.ts +40 -0
  50. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  51. package/dist/api-contracts/src/workflow-rule/index.d.ts +24 -3
  52. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  53. package/dist/index.js +22 -2
  54. package/dist/index.js.map +1 -1
  55. package/dist/index.mjs +22 -2
  56. package/dist/index.mjs.map +1 -1
  57. package/package.json +1 -1
@@ -143,6 +143,7 @@ export declare const messengerContract: {
143
143
  accessToken: z.ZodOptional<z.ZodString>;
144
144
  channelSecret: z.ZodOptional<z.ZodString>;
145
145
  additionalCredentials: z.ZodOptional<z.ZodAny>;
146
+ senderId: z.ZodOptional<z.ZodString>;
146
147
  vonageCredentials: z.ZodOptional<z.ZodObject<{
147
148
  mobileNumber: z.ZodString;
148
149
  apiKey: z.ZodString;
@@ -163,6 +164,7 @@ export declare const messengerContract: {
163
164
  accessToken?: string | undefined;
164
165
  channelSecret?: string | undefined;
165
166
  additionalCredentials?: any;
167
+ senderId?: string | undefined;
166
168
  vonageCredentials?: {
167
169
  mobileNumber: string;
168
170
  apiKey: string;
@@ -175,6 +177,7 @@ export declare const messengerContract: {
175
177
  accessToken?: string | undefined;
176
178
  channelSecret?: string | undefined;
177
179
  additionalCredentials?: any;
180
+ senderId?: string | undefined;
178
181
  vonageCredentials?: {
179
182
  mobileNumber: string;
180
183
  apiKey: string;
@@ -217,6 +220,7 @@ export declare const messengerContract: {
217
220
  accessToken?: string | undefined;
218
221
  channelSecret?: string | undefined;
219
222
  additionalCredentials?: any;
223
+ senderId?: string | undefined;
220
224
  vonageCredentials?: {
221
225
  mobileNumber: string;
222
226
  apiKey: string;
@@ -247,6 +251,7 @@ export declare const messengerContract: {
247
251
  accessToken?: string | undefined;
248
252
  channelSecret?: string | undefined;
249
253
  additionalCredentials?: any;
254
+ senderId?: string | undefined;
250
255
  vonageCredentials?: {
251
256
  mobileNumber: string;
252
257
  apiKey: string;
@@ -281,6 +286,7 @@ export declare const messengerContract: {
281
286
  accessToken?: string | undefined;
282
287
  channelSecret?: string | undefined;
283
288
  additionalCredentials?: any;
289
+ senderId?: string | undefined;
284
290
  vonageCredentials?: {
285
291
  mobileNumber: string;
286
292
  apiKey: string;
@@ -354,6 +360,7 @@ export declare const messengerContract: {
354
360
  accessToken?: string | undefined;
355
361
  channelSecret?: string | undefined;
356
362
  additionalCredentials?: any;
363
+ senderId?: string | undefined;
357
364
  vonageCredentials?: {
358
365
  mobileNumber: string;
359
366
  apiKey: string;
@@ -595,6 +602,7 @@ export declare const messengerContract: {
595
602
  accessToken?: string | undefined;
596
603
  channelSecret?: string | undefined;
597
604
  additionalCredentials?: any;
605
+ senderId?: string | undefined;
598
606
  vonageCredentials?: {
599
607
  mobileNumber: string;
600
608
  apiKey: string;
@@ -707,6 +715,7 @@ export declare const messengerContract: {
707
715
  accessToken?: string | undefined;
708
716
  channelSecret?: string | undefined;
709
717
  additionalCredentials?: any;
718
+ senderId?: string | undefined;
710
719
  vonageCredentials?: {
711
720
  mobileNumber: string;
712
721
  apiKey: string;
@@ -2714,6 +2723,7 @@ export declare const messengerContract: {
2714
2723
  accessToken: z.ZodOptional<z.ZodString>;
2715
2724
  channelSecret: z.ZodOptional<z.ZodString>;
2716
2725
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2726
+ senderId: z.ZodOptional<z.ZodString>;
2717
2727
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2718
2728
  mobileNumber: z.ZodString;
2719
2729
  apiKey: z.ZodString;
@@ -2734,6 +2744,7 @@ export declare const messengerContract: {
2734
2744
  accessToken?: string | undefined;
2735
2745
  channelSecret?: string | undefined;
2736
2746
  additionalCredentials?: any;
2747
+ senderId?: string | undefined;
2737
2748
  vonageCredentials?: {
2738
2749
  mobileNumber: string;
2739
2750
  apiKey: string;
@@ -2746,6 +2757,7 @@ export declare const messengerContract: {
2746
2757
  accessToken?: string | undefined;
2747
2758
  channelSecret?: string | undefined;
2748
2759
  additionalCredentials?: any;
2760
+ senderId?: string | undefined;
2749
2761
  vonageCredentials?: {
2750
2762
  mobileNumber: string;
2751
2763
  apiKey: string;
@@ -2992,6 +3004,7 @@ export declare const messengerContract: {
2992
3004
  accessToken?: string | undefined;
2993
3005
  channelSecret?: string | undefined;
2994
3006
  additionalCredentials?: any;
3007
+ senderId?: string | undefined;
2995
3008
  vonageCredentials?: {
2996
3009
  mobileNumber: string;
2997
3010
  apiKey: string;
@@ -3069,6 +3082,7 @@ export declare const messengerContract: {
3069
3082
  accessToken?: string | undefined;
3070
3083
  channelSecret?: string | undefined;
3071
3084
  additionalCredentials?: any;
3085
+ senderId?: string | undefined;
3072
3086
  vonageCredentials?: {
3073
3087
  mobileNumber: string;
3074
3088
  apiKey: string;
@@ -3594,6 +3608,7 @@ export declare const messengerContract: {
3594
3608
  accessToken?: string | undefined;
3595
3609
  channelSecret?: string | undefined;
3596
3610
  additionalCredentials?: any;
3611
+ senderId?: string | undefined;
3597
3612
  vonageCredentials?: {
3598
3613
  mobileNumber: string;
3599
3614
  apiKey: string;
@@ -3982,6 +3997,7 @@ export declare const messengerContract: {
3982
3997
  accessToken?: string | undefined;
3983
3998
  channelSecret?: string | undefined;
3984
3999
  additionalCredentials?: any;
4000
+ senderId?: string | undefined;
3985
4001
  vonageCredentials?: {
3986
4002
  mobileNumber: string;
3987
4003
  apiKey: string;
@@ -7086,6 +7102,7 @@ export declare const messengerContract: {
7086
7102
  accessToken: z.ZodOptional<z.ZodString>;
7087
7103
  channelSecret: z.ZodOptional<z.ZodString>;
7088
7104
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7105
+ senderId: z.ZodOptional<z.ZodString>;
7089
7106
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7090
7107
  mobileNumber: z.ZodString;
7091
7108
  apiKey: z.ZodString;
@@ -7106,6 +7123,7 @@ export declare const messengerContract: {
7106
7123
  accessToken?: string | undefined;
7107
7124
  channelSecret?: string | undefined;
7108
7125
  additionalCredentials?: any;
7126
+ senderId?: string | undefined;
7109
7127
  vonageCredentials?: {
7110
7128
  mobileNumber: string;
7111
7129
  apiKey: string;
@@ -7118,6 +7136,7 @@ export declare const messengerContract: {
7118
7136
  accessToken?: string | undefined;
7119
7137
  channelSecret?: string | undefined;
7120
7138
  additionalCredentials?: any;
7139
+ senderId?: string | undefined;
7121
7140
  vonageCredentials?: {
7122
7141
  mobileNumber: string;
7123
7142
  apiKey: string;
@@ -7364,6 +7383,7 @@ export declare const messengerContract: {
7364
7383
  accessToken?: string | undefined;
7365
7384
  channelSecret?: string | undefined;
7366
7385
  additionalCredentials?: any;
7386
+ senderId?: string | undefined;
7367
7387
  vonageCredentials?: {
7368
7388
  mobileNumber: string;
7369
7389
  apiKey: string;
@@ -7441,6 +7461,7 @@ export declare const messengerContract: {
7441
7461
  accessToken?: string | undefined;
7442
7462
  channelSecret?: string | undefined;
7443
7463
  additionalCredentials?: any;
7464
+ senderId?: string | undefined;
7444
7465
  vonageCredentials?: {
7445
7466
  mobileNumber: string;
7446
7467
  apiKey: string;
@@ -7966,6 +7987,7 @@ export declare const messengerContract: {
7966
7987
  accessToken?: string | undefined;
7967
7988
  channelSecret?: string | undefined;
7968
7989
  additionalCredentials?: any;
7990
+ senderId?: string | undefined;
7969
7991
  vonageCredentials?: {
7970
7992
  mobileNumber: string;
7971
7993
  apiKey: string;
@@ -8354,6 +8376,7 @@ export declare const messengerContract: {
8354
8376
  accessToken?: string | undefined;
8355
8377
  channelSecret?: string | undefined;
8356
8378
  additionalCredentials?: any;
8379
+ senderId?: string | undefined;
8357
8380
  vonageCredentials?: {
8358
8381
  mobileNumber: string;
8359
8382
  apiKey: string;
@@ -10515,6 +10538,7 @@ export declare const messengerContract: {
10515
10538
  accessToken?: string | undefined;
10516
10539
  channelSecret?: string | undefined;
10517
10540
  additionalCredentials?: any;
10541
+ senderId?: string | undefined;
10518
10542
  vonageCredentials?: {
10519
10543
  mobileNumber: string;
10520
10544
  apiKey: string;
@@ -11240,6 +11264,7 @@ export declare const messengerContract: {
11240
11264
  accessToken?: string | undefined;
11241
11265
  channelSecret?: string | undefined;
11242
11266
  additionalCredentials?: any;
11267
+ senderId?: string | undefined;
11243
11268
  vonageCredentials?: {
11244
11269
  mobileNumber: string;
11245
11270
  apiKey: string;
@@ -11966,6 +11991,7 @@ export declare const messengerContract: {
11966
11991
  accessToken?: string | undefined;
11967
11992
  channelSecret?: string | undefined;
11968
11993
  additionalCredentials?: any;
11994
+ senderId?: string | undefined;
11969
11995
  vonageCredentials?: {
11970
11996
  mobileNumber: string;
11971
11997
  apiKey: string;
@@ -12691,6 +12717,7 @@ export declare const messengerContract: {
12691
12717
  accessToken?: string | undefined;
12692
12718
  channelSecret?: string | undefined;
12693
12719
  additionalCredentials?: any;
12720
+ senderId?: string | undefined;
12694
12721
  vonageCredentials?: {
12695
12722
  mobileNumber: string;
12696
12723
  apiKey: string;
@@ -13417,6 +13444,7 @@ export declare const messengerContract: {
13417
13444
  accessToken?: string | undefined;
13418
13445
  channelSecret?: string | undefined;
13419
13446
  additionalCredentials?: any;
13447
+ senderId?: string | undefined;
13420
13448
  vonageCredentials?: {
13421
13449
  mobileNumber: string;
13422
13450
  apiKey: string;
@@ -14142,6 +14170,7 @@ export declare const messengerContract: {
14142
14170
  accessToken?: string | undefined;
14143
14171
  channelSecret?: string | undefined;
14144
14172
  additionalCredentials?: any;
14173
+ senderId?: string | undefined;
14145
14174
  vonageCredentials?: {
14146
14175
  mobileNumber: string;
14147
14176
  apiKey: string;
@@ -14870,6 +14899,7 @@ export declare const messengerContract: {
14870
14899
  accessToken?: string | undefined;
14871
14900
  channelSecret?: string | undefined;
14872
14901
  additionalCredentials?: any;
14902
+ senderId?: string | undefined;
14873
14903
  vonageCredentials?: {
14874
14904
  mobileNumber: string;
14875
14905
  apiKey: string;
@@ -15595,6 +15625,7 @@ export declare const messengerContract: {
15595
15625
  accessToken?: string | undefined;
15596
15626
  channelSecret?: string | undefined;
15597
15627
  additionalCredentials?: any;
15628
+ senderId?: string | undefined;
15598
15629
  vonageCredentials?: {
15599
15630
  mobileNumber: string;
15600
15631
  apiKey: string;
@@ -16324,6 +16355,7 @@ export declare const messengerContract: {
16324
16355
  accessToken?: string | undefined;
16325
16356
  channelSecret?: string | undefined;
16326
16357
  additionalCredentials?: any;
16358
+ senderId?: string | undefined;
16327
16359
  vonageCredentials?: {
16328
16360
  mobileNumber: string;
16329
16361
  apiKey: string;
@@ -17049,6 +17081,7 @@ export declare const messengerContract: {
17049
17081
  accessToken?: string | undefined;
17050
17082
  channelSecret?: string | undefined;
17051
17083
  additionalCredentials?: any;
17084
+ senderId?: string | undefined;
17052
17085
  vonageCredentials?: {
17053
17086
  mobileNumber: string;
17054
17087
  apiKey: string;
@@ -17690,6 +17723,7 @@ export declare const messengerContract: {
17690
17723
  accessToken: z.ZodOptional<z.ZodString>;
17691
17724
  channelSecret: z.ZodOptional<z.ZodString>;
17692
17725
  additionalCredentials: z.ZodOptional<z.ZodAny>;
17726
+ senderId: z.ZodOptional<z.ZodString>;
17693
17727
  vonageCredentials: z.ZodOptional<z.ZodObject<{
17694
17728
  mobileNumber: z.ZodString;
17695
17729
  apiKey: z.ZodString;
@@ -17710,6 +17744,7 @@ export declare const messengerContract: {
17710
17744
  accessToken?: string | undefined;
17711
17745
  channelSecret?: string | undefined;
17712
17746
  additionalCredentials?: any;
17747
+ senderId?: string | undefined;
17713
17748
  vonageCredentials?: {
17714
17749
  mobileNumber: string;
17715
17750
  apiKey: string;
@@ -17722,6 +17757,7 @@ export declare const messengerContract: {
17722
17757
  accessToken?: string | undefined;
17723
17758
  channelSecret?: string | undefined;
17724
17759
  additionalCredentials?: any;
17760
+ senderId?: string | undefined;
17725
17761
  vonageCredentials?: {
17726
17762
  mobileNumber: string;
17727
17763
  apiKey: string;
@@ -17764,6 +17800,7 @@ export declare const messengerContract: {
17764
17800
  accessToken?: string | undefined;
17765
17801
  channelSecret?: string | undefined;
17766
17802
  additionalCredentials?: any;
17803
+ senderId?: string | undefined;
17767
17804
  vonageCredentials?: {
17768
17805
  mobileNumber: string;
17769
17806
  apiKey: string;
@@ -17794,6 +17831,7 @@ export declare const messengerContract: {
17794
17831
  accessToken?: string | undefined;
17795
17832
  channelSecret?: string | undefined;
17796
17833
  additionalCredentials?: any;
17834
+ senderId?: string | undefined;
17797
17835
  vonageCredentials?: {
17798
17836
  mobileNumber: string;
17799
17837
  apiKey: string;
@@ -17829,6 +17867,7 @@ export declare const messengerContract: {
17829
17867
  accessToken: z.ZodOptional<z.ZodString>;
17830
17868
  channelSecret: z.ZodOptional<z.ZodString>;
17831
17869
  additionalCredentials: z.ZodOptional<z.ZodAny>;
17870
+ senderId: z.ZodOptional<z.ZodString>;
17832
17871
  vonageCredentials: z.ZodOptional<z.ZodObject<{
17833
17872
  mobileNumber: z.ZodString;
17834
17873
  apiKey: z.ZodString;
@@ -17849,6 +17888,7 @@ export declare const messengerContract: {
17849
17888
  accessToken?: string | undefined;
17850
17889
  channelSecret?: string | undefined;
17851
17890
  additionalCredentials?: any;
17891
+ senderId?: string | undefined;
17852
17892
  vonageCredentials?: {
17853
17893
  mobileNumber: string;
17854
17894
  apiKey: string;
@@ -17861,6 +17901,7 @@ export declare const messengerContract: {
17861
17901
  accessToken?: string | undefined;
17862
17902
  channelSecret?: string | undefined;
17863
17903
  additionalCredentials?: any;
17904
+ senderId?: string | undefined;
17864
17905
  vonageCredentials?: {
17865
17906
  mobileNumber: string;
17866
17907
  apiKey: string;
@@ -17903,6 +17944,7 @@ export declare const messengerContract: {
17903
17944
  accessToken?: string | undefined;
17904
17945
  channelSecret?: string | undefined;
17905
17946
  additionalCredentials?: any;
17947
+ senderId?: string | undefined;
17906
17948
  vonageCredentials?: {
17907
17949
  mobileNumber: string;
17908
17950
  apiKey: string;
@@ -17933,6 +17975,7 @@ export declare const messengerContract: {
17933
17975
  accessToken?: string | undefined;
17934
17976
  channelSecret?: string | undefined;
17935
17977
  additionalCredentials?: any;
17978
+ senderId?: string | undefined;
17936
17979
  vonageCredentials?: {
17937
17980
  mobileNumber: string;
17938
17981
  apiKey: string;
@@ -17965,6 +18008,7 @@ export declare const messengerContract: {
17965
18008
  accessToken?: string | undefined;
17966
18009
  channelSecret?: string | undefined;
17967
18010
  additionalCredentials?: any;
18011
+ senderId?: string | undefined;
17968
18012
  vonageCredentials?: {
17969
18013
  mobileNumber: string;
17970
18014
  apiKey: string;
@@ -17998,6 +18042,7 @@ export declare const messengerContract: {
17998
18042
  accessToken?: string | undefined;
17999
18043
  channelSecret?: string | undefined;
18000
18044
  additionalCredentials?: any;
18045
+ senderId?: string | undefined;
18001
18046
  vonageCredentials?: {
18002
18047
  mobileNumber: string;
18003
18048
  apiKey: string;
@@ -18055,6 +18100,7 @@ export declare const messengerContract: {
18055
18100
  accessToken: z.ZodOptional<z.ZodString>;
18056
18101
  channelSecret: z.ZodOptional<z.ZodString>;
18057
18102
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18103
+ senderId: z.ZodOptional<z.ZodString>;
18058
18104
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18059
18105
  mobileNumber: z.ZodString;
18060
18106
  apiKey: z.ZodString;
@@ -18075,6 +18121,7 @@ export declare const messengerContract: {
18075
18121
  accessToken?: string | undefined;
18076
18122
  channelSecret?: string | undefined;
18077
18123
  additionalCredentials?: any;
18124
+ senderId?: string | undefined;
18078
18125
  vonageCredentials?: {
18079
18126
  mobileNumber: string;
18080
18127
  apiKey: string;
@@ -18087,6 +18134,7 @@ export declare const messengerContract: {
18087
18134
  accessToken?: string | undefined;
18088
18135
  channelSecret?: string | undefined;
18089
18136
  additionalCredentials?: any;
18137
+ senderId?: string | undefined;
18090
18138
  vonageCredentials?: {
18091
18139
  mobileNumber: string;
18092
18140
  apiKey: string;
@@ -18129,6 +18177,7 @@ export declare const messengerContract: {
18129
18177
  accessToken?: string | undefined;
18130
18178
  channelSecret?: string | undefined;
18131
18179
  additionalCredentials?: any;
18180
+ senderId?: string | undefined;
18132
18181
  vonageCredentials?: {
18133
18182
  mobileNumber: string;
18134
18183
  apiKey: string;
@@ -18159,6 +18208,7 @@ export declare const messengerContract: {
18159
18208
  accessToken?: string | undefined;
18160
18209
  channelSecret?: string | undefined;
18161
18210
  additionalCredentials?: any;
18211
+ senderId?: string | undefined;
18162
18212
  vonageCredentials?: {
18163
18213
  mobileNumber: string;
18164
18214
  apiKey: string;
@@ -18194,6 +18244,7 @@ export declare const messengerContract: {
18194
18244
  accessToken: z.ZodOptional<z.ZodString>;
18195
18245
  channelSecret: z.ZodOptional<z.ZodString>;
18196
18246
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18247
+ senderId: z.ZodOptional<z.ZodString>;
18197
18248
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18198
18249
  mobileNumber: z.ZodString;
18199
18250
  apiKey: z.ZodString;
@@ -18214,6 +18265,7 @@ export declare const messengerContract: {
18214
18265
  accessToken?: string | undefined;
18215
18266
  channelSecret?: string | undefined;
18216
18267
  additionalCredentials?: any;
18268
+ senderId?: string | undefined;
18217
18269
  vonageCredentials?: {
18218
18270
  mobileNumber: string;
18219
18271
  apiKey: string;
@@ -18226,6 +18278,7 @@ export declare const messengerContract: {
18226
18278
  accessToken?: string | undefined;
18227
18279
  channelSecret?: string | undefined;
18228
18280
  additionalCredentials?: any;
18281
+ senderId?: string | undefined;
18229
18282
  vonageCredentials?: {
18230
18283
  mobileNumber: string;
18231
18284
  apiKey: string;
@@ -18268,6 +18321,7 @@ export declare const messengerContract: {
18268
18321
  accessToken?: string | undefined;
18269
18322
  channelSecret?: string | undefined;
18270
18323
  additionalCredentials?: any;
18324
+ senderId?: string | undefined;
18271
18325
  vonageCredentials?: {
18272
18326
  mobileNumber: string;
18273
18327
  apiKey: string;
@@ -18298,6 +18352,7 @@ export declare const messengerContract: {
18298
18352
  accessToken?: string | undefined;
18299
18353
  channelSecret?: string | undefined;
18300
18354
  additionalCredentials?: any;
18355
+ senderId?: string | undefined;
18301
18356
  vonageCredentials?: {
18302
18357
  mobileNumber: string;
18303
18358
  apiKey: string;
@@ -18330,6 +18385,7 @@ export declare const messengerContract: {
18330
18385
  accessToken?: string | undefined;
18331
18386
  channelSecret?: string | undefined;
18332
18387
  additionalCredentials?: any;
18388
+ senderId?: string | undefined;
18333
18389
  vonageCredentials?: {
18334
18390
  mobileNumber: string;
18335
18391
  apiKey: string;
@@ -18363,6 +18419,7 @@ export declare const messengerContract: {
18363
18419
  accessToken?: string | undefined;
18364
18420
  channelSecret?: string | undefined;
18365
18421
  additionalCredentials?: any;
18422
+ senderId?: string | undefined;
18366
18423
  vonageCredentials?: {
18367
18424
  mobileNumber: string;
18368
18425
  apiKey: string;
@@ -18432,6 +18489,7 @@ export declare const messengerContract: {
18432
18489
  accessToken: z.ZodOptional<z.ZodString>;
18433
18490
  channelSecret: z.ZodOptional<z.ZodString>;
18434
18491
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18492
+ senderId: z.ZodOptional<z.ZodString>;
18435
18493
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18436
18494
  mobileNumber: z.ZodString;
18437
18495
  apiKey: z.ZodString;
@@ -18452,6 +18510,7 @@ export declare const messengerContract: {
18452
18510
  accessToken?: string | undefined;
18453
18511
  channelSecret?: string | undefined;
18454
18512
  additionalCredentials?: any;
18513
+ senderId?: string | undefined;
18455
18514
  vonageCredentials?: {
18456
18515
  mobileNumber: string;
18457
18516
  apiKey: string;
@@ -18464,6 +18523,7 @@ export declare const messengerContract: {
18464
18523
  accessToken?: string | undefined;
18465
18524
  channelSecret?: string | undefined;
18466
18525
  additionalCredentials?: any;
18526
+ senderId?: string | undefined;
18467
18527
  vonageCredentials?: {
18468
18528
  mobileNumber: string;
18469
18529
  apiKey: string;
@@ -18506,6 +18566,7 @@ export declare const messengerContract: {
18506
18566
  accessToken?: string | undefined;
18507
18567
  channelSecret?: string | undefined;
18508
18568
  additionalCredentials?: any;
18569
+ senderId?: string | undefined;
18509
18570
  vonageCredentials?: {
18510
18571
  mobileNumber: string;
18511
18572
  apiKey: string;
@@ -18536,6 +18597,7 @@ export declare const messengerContract: {
18536
18597
  accessToken?: string | undefined;
18537
18598
  channelSecret?: string | undefined;
18538
18599
  additionalCredentials?: any;
18600
+ senderId?: string | undefined;
18539
18601
  vonageCredentials?: {
18540
18602
  mobileNumber: string;
18541
18603
  apiKey: string;
@@ -18568,6 +18630,7 @@ export declare const messengerContract: {
18568
18630
  accessToken?: string | undefined;
18569
18631
  channelSecret?: string | undefined;
18570
18632
  additionalCredentials?: any;
18633
+ senderId?: string | undefined;
18571
18634
  vonageCredentials?: {
18572
18635
  mobileNumber: string;
18573
18636
  apiKey: string;
@@ -18601,6 +18664,7 @@ export declare const messengerContract: {
18601
18664
  accessToken?: string | undefined;
18602
18665
  channelSecret?: string | undefined;
18603
18666
  additionalCredentials?: any;
18667
+ senderId?: string | undefined;
18604
18668
  vonageCredentials?: {
18605
18669
  mobileNumber: string;
18606
18670
  apiKey: string;
@@ -18670,6 +18734,7 @@ export declare const messengerContract: {
18670
18734
  accessToken: z.ZodOptional<z.ZodString>;
18671
18735
  channelSecret: z.ZodOptional<z.ZodString>;
18672
18736
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18737
+ senderId: z.ZodOptional<z.ZodString>;
18673
18738
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18674
18739
  mobileNumber: z.ZodString;
18675
18740
  apiKey: z.ZodString;
@@ -18690,6 +18755,7 @@ export declare const messengerContract: {
18690
18755
  accessToken?: string | undefined;
18691
18756
  channelSecret?: string | undefined;
18692
18757
  additionalCredentials?: any;
18758
+ senderId?: string | undefined;
18693
18759
  vonageCredentials?: {
18694
18760
  mobileNumber: string;
18695
18761
  apiKey: string;
@@ -18702,6 +18768,7 @@ export declare const messengerContract: {
18702
18768
  accessToken?: string | undefined;
18703
18769
  channelSecret?: string | undefined;
18704
18770
  additionalCredentials?: any;
18771
+ senderId?: string | undefined;
18705
18772
  vonageCredentials?: {
18706
18773
  mobileNumber: string;
18707
18774
  apiKey: string;
@@ -18744,6 +18811,7 @@ export declare const messengerContract: {
18744
18811
  accessToken?: string | undefined;
18745
18812
  channelSecret?: string | undefined;
18746
18813
  additionalCredentials?: any;
18814
+ senderId?: string | undefined;
18747
18815
  vonageCredentials?: {
18748
18816
  mobileNumber: string;
18749
18817
  apiKey: string;
@@ -18774,6 +18842,7 @@ export declare const messengerContract: {
18774
18842
  accessToken?: string | undefined;
18775
18843
  channelSecret?: string | undefined;
18776
18844
  additionalCredentials?: any;
18845
+ senderId?: string | undefined;
18777
18846
  vonageCredentials?: {
18778
18847
  mobileNumber: string;
18779
18848
  apiKey: string;
@@ -18806,6 +18875,7 @@ export declare const messengerContract: {
18806
18875
  accessToken?: string | undefined;
18807
18876
  channelSecret?: string | undefined;
18808
18877
  additionalCredentials?: any;
18878
+ senderId?: string | undefined;
18809
18879
  vonageCredentials?: {
18810
18880
  mobileNumber: string;
18811
18881
  apiKey: string;
@@ -18839,6 +18909,7 @@ export declare const messengerContract: {
18839
18909
  accessToken?: string | undefined;
18840
18910
  channelSecret?: string | undefined;
18841
18911
  additionalCredentials?: any;
18912
+ senderId?: string | undefined;
18842
18913
  vonageCredentials?: {
18843
18914
  mobileNumber: string;
18844
18915
  apiKey: string;
@@ -18895,6 +18966,7 @@ export declare const messengerContract: {
18895
18966
  accessToken: z.ZodOptional<z.ZodString>;
18896
18967
  channelSecret: z.ZodOptional<z.ZodString>;
18897
18968
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18969
+ senderId: z.ZodOptional<z.ZodString>;
18898
18970
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18899
18971
  mobileNumber: z.ZodString;
18900
18972
  apiKey: z.ZodString;
@@ -18915,6 +18987,7 @@ export declare const messengerContract: {
18915
18987
  accessToken?: string | undefined;
18916
18988
  channelSecret?: string | undefined;
18917
18989
  additionalCredentials?: any;
18990
+ senderId?: string | undefined;
18918
18991
  vonageCredentials?: {
18919
18992
  mobileNumber: string;
18920
18993
  apiKey: string;
@@ -18927,6 +19000,7 @@ export declare const messengerContract: {
18927
19000
  accessToken?: string | undefined;
18928
19001
  channelSecret?: string | undefined;
18929
19002
  additionalCredentials?: any;
19003
+ senderId?: string | undefined;
18930
19004
  vonageCredentials?: {
18931
19005
  mobileNumber: string;
18932
19006
  apiKey: string;
@@ -18974,6 +19048,7 @@ export declare const messengerContract: {
18974
19048
  accessToken?: string | undefined;
18975
19049
  channelSecret?: string | undefined;
18976
19050
  additionalCredentials?: any;
19051
+ senderId?: string | undefined;
18977
19052
  vonageCredentials?: {
18978
19053
  mobileNumber: string;
18979
19054
  apiKey: string;
@@ -19008,6 +19083,7 @@ export declare const messengerContract: {
19008
19083
  accessToken?: string | undefined;
19009
19084
  channelSecret?: string | undefined;
19010
19085
  additionalCredentials?: any;
19086
+ senderId?: string | undefined;
19011
19087
  vonageCredentials?: {
19012
19088
  mobileNumber: string;
19013
19089
  apiKey: string;
@@ -19047,6 +19123,7 @@ export declare const messengerContract: {
19047
19123
  accessToken: z.ZodOptional<z.ZodString>;
19048
19124
  channelSecret: z.ZodOptional<z.ZodString>;
19049
19125
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19126
+ senderId: z.ZodOptional<z.ZodString>;
19050
19127
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19051
19128
  mobileNumber: z.ZodString;
19052
19129
  apiKey: z.ZodString;
@@ -19067,6 +19144,7 @@ export declare const messengerContract: {
19067
19144
  accessToken?: string | undefined;
19068
19145
  channelSecret?: string | undefined;
19069
19146
  additionalCredentials?: any;
19147
+ senderId?: string | undefined;
19070
19148
  vonageCredentials?: {
19071
19149
  mobileNumber: string;
19072
19150
  apiKey: string;
@@ -19079,6 +19157,7 @@ export declare const messengerContract: {
19079
19157
  accessToken?: string | undefined;
19080
19158
  channelSecret?: string | undefined;
19081
19159
  additionalCredentials?: any;
19160
+ senderId?: string | undefined;
19082
19161
  vonageCredentials?: {
19083
19162
  mobileNumber: string;
19084
19163
  apiKey: string;
@@ -19121,6 +19200,7 @@ export declare const messengerContract: {
19121
19200
  accessToken?: string | undefined;
19122
19201
  channelSecret?: string | undefined;
19123
19202
  additionalCredentials?: any;
19203
+ senderId?: string | undefined;
19124
19204
  vonageCredentials?: {
19125
19205
  mobileNumber: string;
19126
19206
  apiKey: string;
@@ -19151,6 +19231,7 @@ export declare const messengerContract: {
19151
19231
  accessToken?: string | undefined;
19152
19232
  channelSecret?: string | undefined;
19153
19233
  additionalCredentials?: any;
19234
+ senderId?: string | undefined;
19154
19235
  vonageCredentials?: {
19155
19236
  mobileNumber: string;
19156
19237
  apiKey: string;
@@ -19183,6 +19264,7 @@ export declare const messengerContract: {
19183
19264
  accessToken?: string | undefined;
19184
19265
  channelSecret?: string | undefined;
19185
19266
  additionalCredentials?: any;
19267
+ senderId?: string | undefined;
19186
19268
  vonageCredentials?: {
19187
19269
  mobileNumber: string;
19188
19270
  apiKey: string;
@@ -19216,6 +19298,7 @@ export declare const messengerContract: {
19216
19298
  accessToken?: string | undefined;
19217
19299
  channelSecret?: string | undefined;
19218
19300
  additionalCredentials?: any;
19301
+ senderId?: string | undefined;
19219
19302
  vonageCredentials?: {
19220
19303
  mobileNumber: string;
19221
19304
  apiKey: string;