@kl1/contracts 1.2.8-uat → 1.2.10-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.
Files changed (61) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +121 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +8 -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 +54 -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 +664 -0
  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/mail/account-contract.d.ts +276 -0
  32. package/dist/api-contracts/src/mail/account-contract.d.ts.map +1 -1
  33. package/dist/api-contracts/src/mail/mail-contract.d.ts +399 -1470
  34. package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
  35. package/dist/api-contracts/src/mail/mail-server-contract.d.ts +47 -0
  36. package/dist/api-contracts/src/mail/mail-server-contract.d.ts.map +1 -1
  37. package/dist/api-contracts/src/mail/message-contract.d.ts +10 -1404
  38. package/dist/api-contracts/src/mail/message-contract.d.ts.map +1 -1
  39. package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts +139 -0
  40. package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
  41. package/dist/api-contracts/src/messenger/index.d.ts +83 -0
  42. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
  44. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  45. package/dist/api-contracts/src/sms/index.d.ts +21 -0
  46. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/sms/schema.d.ts +5 -0
  48. package/dist/api-contracts/src/sms/schema.d.ts.map +1 -1
  49. package/dist/api-contracts/src/sms/validation.d.ts +3 -0
  50. package/dist/api-contracts/src/sms/validation.d.ts.map +1 -1
  51. package/dist/api-contracts/src/viber/index.d.ts +61 -0
  52. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  53. package/dist/api-contracts/src/webchat/index.d.ts +40 -0
  54. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  55. package/dist/api-contracts/src/workflow-rule/index.d.ts +21 -0
  56. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  57. package/dist/index.js +71 -3
  58. package/dist/index.js.map +1 -1
  59. package/dist/index.mjs +71 -3
  60. package/dist/index.mjs.map +1 -1
  61. package/package.json +1 -1
@@ -35,6 +35,7 @@ export declare const channelContract: {
35
35
  accessToken: z.ZodOptional<z.ZodString>;
36
36
  channelSecret: z.ZodOptional<z.ZodString>;
37
37
  additionalCredentials: z.ZodOptional<z.ZodAny>;
38
+ senderId: z.ZodOptional<z.ZodString>;
38
39
  vonageCredentials: z.ZodOptional<z.ZodObject<{
39
40
  mobileNumber: z.ZodString;
40
41
  apiKey: z.ZodString;
@@ -55,6 +56,7 @@ export declare const channelContract: {
55
56
  accessToken?: string | undefined;
56
57
  channelSecret?: string | undefined;
57
58
  additionalCredentials?: any;
59
+ senderId?: string | undefined;
58
60
  vonageCredentials?: {
59
61
  mobileNumber: string;
60
62
  apiKey: string;
@@ -67,6 +69,7 @@ export declare const channelContract: {
67
69
  accessToken?: string | undefined;
68
70
  channelSecret?: string | undefined;
69
71
  additionalCredentials?: any;
72
+ senderId?: string | undefined;
70
73
  vonageCredentials?: {
71
74
  mobileNumber: string;
72
75
  apiKey: string;
@@ -313,6 +316,7 @@ export declare const channelContract: {
313
316
  accessToken?: string | undefined;
314
317
  channelSecret?: string | undefined;
315
318
  additionalCredentials?: any;
319
+ senderId?: string | undefined;
316
320
  vonageCredentials?: {
317
321
  mobileNumber: string;
318
322
  apiKey: string;
@@ -390,6 +394,7 @@ export declare const channelContract: {
390
394
  accessToken?: string | undefined;
391
395
  channelSecret?: string | undefined;
392
396
  additionalCredentials?: any;
397
+ senderId?: string | undefined;
393
398
  vonageCredentials?: {
394
399
  mobileNumber: string;
395
400
  apiKey: string;
@@ -469,6 +474,7 @@ export declare const channelContract: {
469
474
  accessToken?: string | undefined;
470
475
  channelSecret?: string | undefined;
471
476
  additionalCredentials?: any;
477
+ senderId?: string | undefined;
472
478
  vonageCredentials?: {
473
479
  mobileNumber: string;
474
480
  apiKey: string;
@@ -549,6 +555,7 @@ export declare const channelContract: {
549
555
  accessToken?: string | undefined;
550
556
  channelSecret?: string | undefined;
551
557
  additionalCredentials?: any;
558
+ senderId?: string | undefined;
552
559
  vonageCredentials?: {
553
560
  mobileNumber: string;
554
561
  apiKey: string;
@@ -661,6 +668,7 @@ export declare const channelContract: {
661
668
  accessToken: z.ZodOptional<z.ZodString>;
662
669
  channelSecret: z.ZodOptional<z.ZodString>;
663
670
  additionalCredentials: z.ZodOptional<z.ZodAny>;
671
+ senderId: z.ZodOptional<z.ZodString>;
664
672
  vonageCredentials: z.ZodOptional<z.ZodObject<{
665
673
  mobileNumber: z.ZodString;
666
674
  apiKey: z.ZodString;
@@ -681,6 +689,7 @@ export declare const channelContract: {
681
689
  accessToken?: string | undefined;
682
690
  channelSecret?: string | undefined;
683
691
  additionalCredentials?: any;
692
+ senderId?: string | undefined;
684
693
  vonageCredentials?: {
685
694
  mobileNumber: string;
686
695
  apiKey: string;
@@ -693,6 +702,7 @@ export declare const channelContract: {
693
702
  accessToken?: string | undefined;
694
703
  channelSecret?: string | undefined;
695
704
  additionalCredentials?: any;
705
+ senderId?: string | undefined;
696
706
  vonageCredentials?: {
697
707
  mobileNumber: string;
698
708
  apiKey: string;
@@ -740,6 +750,7 @@ export declare const channelContract: {
740
750
  accessToken?: string | undefined;
741
751
  channelSecret?: string | undefined;
742
752
  additionalCredentials?: any;
753
+ senderId?: string | undefined;
743
754
  vonageCredentials?: {
744
755
  mobileNumber: string;
745
756
  apiKey: string;
@@ -774,6 +785,7 @@ export declare const channelContract: {
774
785
  accessToken?: string | undefined;
775
786
  channelSecret?: string | undefined;
776
787
  additionalCredentials?: any;
788
+ senderId?: string | undefined;
777
789
  vonageCredentials?: {
778
790
  mobileNumber: string;
779
791
  apiKey: string;
@@ -810,6 +822,7 @@ export declare const channelContract: {
810
822
  accessToken?: string | undefined;
811
823
  channelSecret?: string | undefined;
812
824
  additionalCredentials?: any;
825
+ senderId?: string | undefined;
813
826
  vonageCredentials?: {
814
827
  mobileNumber: string;
815
828
  apiKey: string;
@@ -847,6 +860,7 @@ export declare const channelContract: {
847
860
  accessToken?: string | undefined;
848
861
  channelSecret?: string | undefined;
849
862
  additionalCredentials?: any;
863
+ senderId?: string | undefined;
850
864
  vonageCredentials?: {
851
865
  mobileNumber: string;
852
866
  apiKey: string;
@@ -930,6 +944,7 @@ export declare const channelContract: {
930
944
  accessToken: z.ZodOptional<z.ZodString>;
931
945
  channelSecret: z.ZodOptional<z.ZodString>;
932
946
  additionalCredentials: z.ZodOptional<z.ZodAny>;
947
+ senderId: z.ZodOptional<z.ZodString>;
933
948
  vonageCredentials: z.ZodOptional<z.ZodObject<{
934
949
  mobileNumber: z.ZodString;
935
950
  apiKey: z.ZodString;
@@ -950,6 +965,7 @@ export declare const channelContract: {
950
965
  accessToken?: string | undefined;
951
966
  channelSecret?: string | undefined;
952
967
  additionalCredentials?: any;
968
+ senderId?: string | undefined;
953
969
  vonageCredentials?: {
954
970
  mobileNumber: string;
955
971
  apiKey: string;
@@ -962,6 +978,7 @@ export declare const channelContract: {
962
978
  accessToken?: string | undefined;
963
979
  channelSecret?: string | undefined;
964
980
  additionalCredentials?: any;
981
+ senderId?: string | undefined;
965
982
  vonageCredentials?: {
966
983
  mobileNumber: string;
967
984
  apiKey: string;
@@ -1208,6 +1225,7 @@ export declare const channelContract: {
1208
1225
  accessToken?: string | undefined;
1209
1226
  channelSecret?: string | undefined;
1210
1227
  additionalCredentials?: any;
1228
+ senderId?: string | undefined;
1211
1229
  vonageCredentials?: {
1212
1230
  mobileNumber: string;
1213
1231
  apiKey: string;
@@ -1285,6 +1303,7 @@ export declare const channelContract: {
1285
1303
  accessToken?: string | undefined;
1286
1304
  channelSecret?: string | undefined;
1287
1305
  additionalCredentials?: any;
1306
+ senderId?: string | undefined;
1288
1307
  vonageCredentials?: {
1289
1308
  mobileNumber: string;
1290
1309
  apiKey: string;
@@ -1364,6 +1383,7 @@ export declare const channelContract: {
1364
1383
  accessToken?: string | undefined;
1365
1384
  channelSecret?: string | undefined;
1366
1385
  additionalCredentials?: any;
1386
+ senderId?: string | undefined;
1367
1387
  vonageCredentials?: {
1368
1388
  mobileNumber: string;
1369
1389
  apiKey: string;
@@ -1444,6 +1464,7 @@ export declare const channelContract: {
1444
1464
  accessToken?: string | undefined;
1445
1465
  channelSecret?: string | undefined;
1446
1466
  additionalCredentials?: any;
1467
+ senderId?: string | undefined;
1447
1468
  vonageCredentials?: {
1448
1469
  mobileNumber: string;
1449
1470
  apiKey: string;
@@ -1576,6 +1597,7 @@ export declare const channelContract: {
1576
1597
  accessToken: z.ZodOptional<z.ZodString>;
1577
1598
  channelSecret: z.ZodOptional<z.ZodString>;
1578
1599
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1600
+ senderId: z.ZodOptional<z.ZodString>;
1579
1601
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1580
1602
  mobileNumber: z.ZodString;
1581
1603
  apiKey: z.ZodString;
@@ -1596,6 +1618,7 @@ export declare const channelContract: {
1596
1618
  accessToken?: string | undefined;
1597
1619
  channelSecret?: string | undefined;
1598
1620
  additionalCredentials?: any;
1621
+ senderId?: string | undefined;
1599
1622
  vonageCredentials?: {
1600
1623
  mobileNumber: string;
1601
1624
  apiKey: string;
@@ -1608,6 +1631,7 @@ export declare const channelContract: {
1608
1631
  accessToken?: string | undefined;
1609
1632
  channelSecret?: string | undefined;
1610
1633
  additionalCredentials?: any;
1634
+ senderId?: string | undefined;
1611
1635
  vonageCredentials?: {
1612
1636
  mobileNumber: string;
1613
1637
  apiKey: string;
@@ -1854,6 +1878,7 @@ export declare const channelContract: {
1854
1878
  accessToken?: string | undefined;
1855
1879
  channelSecret?: string | undefined;
1856
1880
  additionalCredentials?: any;
1881
+ senderId?: string | undefined;
1857
1882
  vonageCredentials?: {
1858
1883
  mobileNumber: string;
1859
1884
  apiKey: string;
@@ -1931,6 +1956,7 @@ export declare const channelContract: {
1931
1956
  accessToken?: string | undefined;
1932
1957
  channelSecret?: string | undefined;
1933
1958
  additionalCredentials?: any;
1959
+ senderId?: string | undefined;
1934
1960
  vonageCredentials?: {
1935
1961
  mobileNumber: string;
1936
1962
  apiKey: string;
@@ -2010,6 +2036,7 @@ export declare const channelContract: {
2010
2036
  accessToken?: string | undefined;
2011
2037
  channelSecret?: string | undefined;
2012
2038
  additionalCredentials?: any;
2039
+ senderId?: string | undefined;
2013
2040
  vonageCredentials?: {
2014
2041
  mobileNumber: string;
2015
2042
  apiKey: string;
@@ -2090,6 +2117,7 @@ export declare const channelContract: {
2090
2117
  accessToken?: string | undefined;
2091
2118
  channelSecret?: string | undefined;
2092
2119
  additionalCredentials?: any;
2120
+ senderId?: string | undefined;
2093
2121
  vonageCredentials?: {
2094
2122
  mobileNumber: string;
2095
2123
  apiKey: string;
@@ -2216,6 +2244,7 @@ export declare const channelContract: {
2216
2244
  accessToken: z.ZodOptional<z.ZodString>;
2217
2245
  channelSecret: z.ZodOptional<z.ZodString>;
2218
2246
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2247
+ senderId: z.ZodOptional<z.ZodString>;
2219
2248
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2220
2249
  mobileNumber: z.ZodString;
2221
2250
  apiKey: z.ZodString;
@@ -2236,6 +2265,7 @@ export declare const channelContract: {
2236
2265
  accessToken?: string | undefined;
2237
2266
  channelSecret?: string | undefined;
2238
2267
  additionalCredentials?: any;
2268
+ senderId?: string | undefined;
2239
2269
  vonageCredentials?: {
2240
2270
  mobileNumber: string;
2241
2271
  apiKey: string;
@@ -2248,6 +2278,7 @@ export declare const channelContract: {
2248
2278
  accessToken?: string | undefined;
2249
2279
  channelSecret?: string | undefined;
2250
2280
  additionalCredentials?: any;
2281
+ senderId?: string | undefined;
2251
2282
  vonageCredentials?: {
2252
2283
  mobileNumber: string;
2253
2284
  apiKey: string;
@@ -2494,6 +2525,7 @@ export declare const channelContract: {
2494
2525
  accessToken?: string | undefined;
2495
2526
  channelSecret?: string | undefined;
2496
2527
  additionalCredentials?: any;
2528
+ senderId?: string | undefined;
2497
2529
  vonageCredentials?: {
2498
2530
  mobileNumber: string;
2499
2531
  apiKey: string;
@@ -2571,6 +2603,7 @@ export declare const channelContract: {
2571
2603
  accessToken?: string | undefined;
2572
2604
  channelSecret?: string | undefined;
2573
2605
  additionalCredentials?: any;
2606
+ senderId?: string | undefined;
2574
2607
  vonageCredentials?: {
2575
2608
  mobileNumber: string;
2576
2609
  apiKey: string;
@@ -2650,6 +2683,7 @@ export declare const channelContract: {
2650
2683
  accessToken?: string | undefined;
2651
2684
  channelSecret?: string | undefined;
2652
2685
  additionalCredentials?: any;
2686
+ senderId?: string | undefined;
2653
2687
  vonageCredentials?: {
2654
2688
  mobileNumber: string;
2655
2689
  apiKey: string;
@@ -2730,6 +2764,7 @@ export declare const channelContract: {
2730
2764
  accessToken?: string | undefined;
2731
2765
  channelSecret?: string | undefined;
2732
2766
  additionalCredentials?: any;
2767
+ senderId?: string | undefined;
2733
2768
  vonageCredentials?: {
2734
2769
  mobileNumber: string;
2735
2770
  apiKey: string;
@@ -2839,6 +2874,7 @@ export declare const channelContract: {
2839
2874
  accessToken: z.ZodOptional<z.ZodString>;
2840
2875
  channelSecret: z.ZodOptional<z.ZodString>;
2841
2876
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2877
+ senderId: z.ZodOptional<z.ZodString>;
2842
2878
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2843
2879
  mobileNumber: z.ZodString;
2844
2880
  apiKey: z.ZodString;
@@ -2859,6 +2895,7 @@ export declare const channelContract: {
2859
2895
  accessToken?: string | undefined;
2860
2896
  channelSecret?: string | undefined;
2861
2897
  additionalCredentials?: any;
2898
+ senderId?: string | undefined;
2862
2899
  vonageCredentials?: {
2863
2900
  mobileNumber: string;
2864
2901
  apiKey: string;
@@ -2871,6 +2908,7 @@ export declare const channelContract: {
2871
2908
  accessToken?: string | undefined;
2872
2909
  channelSecret?: string | undefined;
2873
2910
  additionalCredentials?: any;
2911
+ senderId?: string | undefined;
2874
2912
  vonageCredentials?: {
2875
2913
  mobileNumber: string;
2876
2914
  apiKey: string;
@@ -2890,6 +2928,7 @@ export declare const channelContract: {
2890
2928
  accessToken?: string | undefined;
2891
2929
  channelSecret?: string | undefined;
2892
2930
  additionalCredentials?: any;
2931
+ senderId?: string | undefined;
2893
2932
  vonageCredentials?: {
2894
2933
  mobileNumber: string;
2895
2934
  apiKey: string;
@@ -2909,6 +2948,7 @@ export declare const channelContract: {
2909
2948
  accessToken?: string | undefined;
2910
2949
  channelSecret?: string | undefined;
2911
2950
  additionalCredentials?: any;
2951
+ senderId?: string | undefined;
2912
2952
  vonageCredentials?: {
2913
2953
  mobileNumber: string;
2914
2954
  apiKey: string;
@@ -2938,6 +2978,7 @@ export declare const channelContract: {
2938
2978
  accessToken: z.ZodOptional<z.ZodString>;
2939
2979
  channelSecret: z.ZodOptional<z.ZodString>;
2940
2980
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2981
+ senderId: z.ZodOptional<z.ZodString>;
2941
2982
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2942
2983
  mobileNumber: z.ZodString;
2943
2984
  apiKey: z.ZodString;
@@ -2958,6 +2999,7 @@ export declare const channelContract: {
2958
2999
  accessToken?: string | undefined;
2959
3000
  channelSecret?: string | undefined;
2960
3001
  additionalCredentials?: any;
3002
+ senderId?: string | undefined;
2961
3003
  vonageCredentials?: {
2962
3004
  mobileNumber: string;
2963
3005
  apiKey: string;
@@ -2970,6 +3012,7 @@ export declare const channelContract: {
2970
3012
  accessToken?: string | undefined;
2971
3013
  channelSecret?: string | undefined;
2972
3014
  additionalCredentials?: any;
3015
+ senderId?: string | undefined;
2973
3016
  vonageCredentials?: {
2974
3017
  mobileNumber: string;
2975
3018
  apiKey: string;
@@ -3216,6 +3259,7 @@ export declare const channelContract: {
3216
3259
  accessToken?: string | undefined;
3217
3260
  channelSecret?: string | undefined;
3218
3261
  additionalCredentials?: any;
3262
+ senderId?: string | undefined;
3219
3263
  vonageCredentials?: {
3220
3264
  mobileNumber: string;
3221
3265
  apiKey: string;
@@ -3293,6 +3337,7 @@ export declare const channelContract: {
3293
3337
  accessToken?: string | undefined;
3294
3338
  channelSecret?: string | undefined;
3295
3339
  additionalCredentials?: any;
3340
+ senderId?: string | undefined;
3296
3341
  vonageCredentials?: {
3297
3342
  mobileNumber: string;
3298
3343
  apiKey: string;
@@ -3372,6 +3417,7 @@ export declare const channelContract: {
3372
3417
  accessToken?: string | undefined;
3373
3418
  channelSecret?: string | undefined;
3374
3419
  additionalCredentials?: any;
3420
+ senderId?: string | undefined;
3375
3421
  vonageCredentials?: {
3376
3422
  mobileNumber: string;
3377
3423
  apiKey: string;
@@ -3452,6 +3498,7 @@ export declare const channelContract: {
3452
3498
  accessToken?: string | undefined;
3453
3499
  channelSecret?: string | undefined;
3454
3500
  additionalCredentials?: any;
3501
+ senderId?: string | undefined;
3455
3502
  vonageCredentials?: {
3456
3503
  mobileNumber: string;
3457
3504
  apiKey: string;
@@ -3746,6 +3793,7 @@ export declare const channelContract: {
3746
3793
  accessToken: z.ZodOptional<z.ZodString>;
3747
3794
  channelSecret: z.ZodOptional<z.ZodString>;
3748
3795
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3796
+ senderId: z.ZodOptional<z.ZodString>;
3749
3797
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3750
3798
  mobileNumber: z.ZodString;
3751
3799
  apiKey: z.ZodString;
@@ -3766,6 +3814,7 @@ export declare const channelContract: {
3766
3814
  accessToken?: string | undefined;
3767
3815
  channelSecret?: string | undefined;
3768
3816
  additionalCredentials?: any;
3817
+ senderId?: string | undefined;
3769
3818
  vonageCredentials?: {
3770
3819
  mobileNumber: string;
3771
3820
  apiKey: string;
@@ -3778,6 +3827,7 @@ export declare const channelContract: {
3778
3827
  accessToken?: string | undefined;
3779
3828
  channelSecret?: string | undefined;
3780
3829
  additionalCredentials?: any;
3830
+ senderId?: string | undefined;
3781
3831
  vonageCredentials?: {
3782
3832
  mobileNumber: string;
3783
3833
  apiKey: string;
@@ -3797,6 +3847,7 @@ export declare const channelContract: {
3797
3847
  accessToken?: string | undefined;
3798
3848
  channelSecret?: string | undefined;
3799
3849
  additionalCredentials?: any;
3850
+ senderId?: string | undefined;
3800
3851
  vonageCredentials?: {
3801
3852
  mobileNumber: string;
3802
3853
  apiKey: string;
@@ -3816,6 +3867,7 @@ export declare const channelContract: {
3816
3867
  accessToken?: string | undefined;
3817
3868
  channelSecret?: string | undefined;
3818
3869
  additionalCredentials?: any;
3870
+ senderId?: string | undefined;
3819
3871
  vonageCredentials?: {
3820
3872
  mobileNumber: string;
3821
3873
  apiKey: string;
@@ -3845,6 +3897,7 @@ export declare const channelContract: {
3845
3897
  accessToken: z.ZodOptional<z.ZodString>;
3846
3898
  channelSecret: z.ZodOptional<z.ZodString>;
3847
3899
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3900
+ senderId: z.ZodOptional<z.ZodString>;
3848
3901
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3849
3902
  mobileNumber: z.ZodString;
3850
3903
  apiKey: z.ZodString;
@@ -3865,6 +3918,7 @@ export declare const channelContract: {
3865
3918
  accessToken?: string | undefined;
3866
3919
  channelSecret?: string | undefined;
3867
3920
  additionalCredentials?: any;
3921
+ senderId?: string | undefined;
3868
3922
  vonageCredentials?: {
3869
3923
  mobileNumber: string;
3870
3924
  apiKey: string;
@@ -3877,6 +3931,7 @@ export declare const channelContract: {
3877
3931
  accessToken?: string | undefined;
3878
3932
  channelSecret?: string | undefined;
3879
3933
  additionalCredentials?: any;
3934
+ senderId?: string | undefined;
3880
3935
  vonageCredentials?: {
3881
3936
  mobileNumber: string;
3882
3937
  apiKey: string;
@@ -4123,6 +4178,7 @@ export declare const channelContract: {
4123
4178
  accessToken?: string | undefined;
4124
4179
  channelSecret?: string | undefined;
4125
4180
  additionalCredentials?: any;
4181
+ senderId?: string | undefined;
4126
4182
  vonageCredentials?: {
4127
4183
  mobileNumber: string;
4128
4184
  apiKey: string;
@@ -4200,6 +4256,7 @@ export declare const channelContract: {
4200
4256
  accessToken?: string | undefined;
4201
4257
  channelSecret?: string | undefined;
4202
4258
  additionalCredentials?: any;
4259
+ senderId?: string | undefined;
4203
4260
  vonageCredentials?: {
4204
4261
  mobileNumber: string;
4205
4262
  apiKey: string;
@@ -4279,6 +4336,7 @@ export declare const channelContract: {
4279
4336
  accessToken?: string | undefined;
4280
4337
  channelSecret?: string | undefined;
4281
4338
  additionalCredentials?: any;
4339
+ senderId?: string | undefined;
4282
4340
  vonageCredentials?: {
4283
4341
  mobileNumber: string;
4284
4342
  apiKey: string;
@@ -4359,6 +4417,7 @@ export declare const channelContract: {
4359
4417
  accessToken?: string | undefined;
4360
4418
  channelSecret?: string | undefined;
4361
4419
  additionalCredentials?: any;
4420
+ senderId?: string | undefined;
4362
4421
  vonageCredentials?: {
4363
4422
  mobileNumber: string;
4364
4423
  apiKey: string;
@@ -4719,6 +4778,7 @@ export declare const channelContract: {
4719
4778
  accessToken: z.ZodOptional<z.ZodString>;
4720
4779
  channelSecret: z.ZodOptional<z.ZodString>;
4721
4780
  additionalCredentials: z.ZodOptional<z.ZodAny>;
4781
+ senderId: z.ZodOptional<z.ZodString>;
4722
4782
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4723
4783
  mobileNumber: z.ZodString;
4724
4784
  apiKey: z.ZodString;
@@ -4739,6 +4799,7 @@ export declare const channelContract: {
4739
4799
  accessToken?: string | undefined;
4740
4800
  channelSecret?: string | undefined;
4741
4801
  additionalCredentials?: any;
4802
+ senderId?: string | undefined;
4742
4803
  vonageCredentials?: {
4743
4804
  mobileNumber: string;
4744
4805
  apiKey: string;
@@ -4751,6 +4812,7 @@ export declare const channelContract: {
4751
4812
  accessToken?: string | undefined;
4752
4813
  channelSecret?: string | undefined;
4753
4814
  additionalCredentials?: any;
4815
+ senderId?: string | undefined;
4754
4816
  vonageCredentials?: {
4755
4817
  mobileNumber: string;
4756
4818
  apiKey: string;
@@ -4770,6 +4832,7 @@ export declare const channelContract: {
4770
4832
  accessToken?: string | undefined;
4771
4833
  channelSecret?: string | undefined;
4772
4834
  additionalCredentials?: any;
4835
+ senderId?: string | undefined;
4773
4836
  vonageCredentials?: {
4774
4837
  mobileNumber: string;
4775
4838
  apiKey: string;
@@ -4789,6 +4852,7 @@ export declare const channelContract: {
4789
4852
  accessToken?: string | undefined;
4790
4853
  channelSecret?: string | undefined;
4791
4854
  additionalCredentials?: any;
4855
+ senderId?: string | undefined;
4792
4856
  vonageCredentials?: {
4793
4857
  mobileNumber: string;
4794
4858
  apiKey: string;
@@ -4818,6 +4882,7 @@ export declare const channelContract: {
4818
4882
  accessToken: z.ZodOptional<z.ZodString>;
4819
4883
  channelSecret: z.ZodOptional<z.ZodString>;
4820
4884
  additionalCredentials: z.ZodOptional<z.ZodAny>;
4885
+ senderId: z.ZodOptional<z.ZodString>;
4821
4886
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4822
4887
  mobileNumber: z.ZodString;
4823
4888
  apiKey: z.ZodString;
@@ -4838,6 +4903,7 @@ export declare const channelContract: {
4838
4903
  accessToken?: string | undefined;
4839
4904
  channelSecret?: string | undefined;
4840
4905
  additionalCredentials?: any;
4906
+ senderId?: string | undefined;
4841
4907
  vonageCredentials?: {
4842
4908
  mobileNumber: string;
4843
4909
  apiKey: string;
@@ -4850,6 +4916,7 @@ export declare const channelContract: {
4850
4916
  accessToken?: string | undefined;
4851
4917
  channelSecret?: string | undefined;
4852
4918
  additionalCredentials?: any;
4919
+ senderId?: string | undefined;
4853
4920
  vonageCredentials?: {
4854
4921
  mobileNumber: string;
4855
4922
  apiKey: string;
@@ -5096,6 +5163,7 @@ export declare const channelContract: {
5096
5163
  accessToken?: string | undefined;
5097
5164
  channelSecret?: string | undefined;
5098
5165
  additionalCredentials?: any;
5166
+ senderId?: string | undefined;
5099
5167
  vonageCredentials?: {
5100
5168
  mobileNumber: string;
5101
5169
  apiKey: string;
@@ -5173,6 +5241,7 @@ export declare const channelContract: {
5173
5241
  accessToken?: string | undefined;
5174
5242
  channelSecret?: string | undefined;
5175
5243
  additionalCredentials?: any;
5244
+ senderId?: string | undefined;
5176
5245
  vonageCredentials?: {
5177
5246
  mobileNumber: string;
5178
5247
  apiKey: string;
@@ -5252,6 +5321,7 @@ export declare const channelContract: {
5252
5321
  accessToken?: string | undefined;
5253
5322
  channelSecret?: string | undefined;
5254
5323
  additionalCredentials?: any;
5324
+ senderId?: string | undefined;
5255
5325
  vonageCredentials?: {
5256
5326
  mobileNumber: string;
5257
5327
  apiKey: string;
@@ -5332,6 +5402,7 @@ export declare const channelContract: {
5332
5402
  accessToken?: string | undefined;
5333
5403
  channelSecret?: string | undefined;
5334
5404
  additionalCredentials?: any;
5405
+ senderId?: string | undefined;
5335
5406
  vonageCredentials?: {
5336
5407
  mobileNumber: string;
5337
5408
  apiKey: string;
@@ -5462,6 +5533,7 @@ export declare const channelContract: {
5462
5533
  accessToken: z.ZodOptional<z.ZodString>;
5463
5534
  channelSecret: z.ZodOptional<z.ZodString>;
5464
5535
  additionalCredentials: z.ZodOptional<z.ZodAny>;
5536
+ senderId: z.ZodOptional<z.ZodString>;
5465
5537
  vonageCredentials: z.ZodOptional<z.ZodObject<{
5466
5538
  mobileNumber: z.ZodString;
5467
5539
  apiKey: z.ZodString;
@@ -5482,6 +5554,7 @@ export declare const channelContract: {
5482
5554
  accessToken?: string | undefined;
5483
5555
  channelSecret?: string | undefined;
5484
5556
  additionalCredentials?: any;
5557
+ senderId?: string | undefined;
5485
5558
  vonageCredentials?: {
5486
5559
  mobileNumber: string;
5487
5560
  apiKey: string;
@@ -5494,6 +5567,7 @@ export declare const channelContract: {
5494
5567
  accessToken?: string | undefined;
5495
5568
  channelSecret?: string | undefined;
5496
5569
  additionalCredentials?: any;
5570
+ senderId?: string | undefined;
5497
5571
  vonageCredentials?: {
5498
5572
  mobileNumber: string;
5499
5573
  apiKey: string;
@@ -5740,6 +5814,7 @@ export declare const channelContract: {
5740
5814
  accessToken?: string | undefined;
5741
5815
  channelSecret?: string | undefined;
5742
5816
  additionalCredentials?: any;
5817
+ senderId?: string | undefined;
5743
5818
  vonageCredentials?: {
5744
5819
  mobileNumber: string;
5745
5820
  apiKey: string;
@@ -5817,6 +5892,7 @@ export declare const channelContract: {
5817
5892
  accessToken?: string | undefined;
5818
5893
  channelSecret?: string | undefined;
5819
5894
  additionalCredentials?: any;
5895
+ senderId?: string | undefined;
5820
5896
  vonageCredentials?: {
5821
5897
  mobileNumber: string;
5822
5898
  apiKey: string;
@@ -5896,6 +5972,7 @@ export declare const channelContract: {
5896
5972
  accessToken?: string | undefined;
5897
5973
  channelSecret?: string | undefined;
5898
5974
  additionalCredentials?: any;
5975
+ senderId?: string | undefined;
5899
5976
  vonageCredentials?: {
5900
5977
  mobileNumber: string;
5901
5978
  apiKey: string;
@@ -5976,6 +6053,7 @@ export declare const channelContract: {
5976
6053
  accessToken?: string | undefined;
5977
6054
  channelSecret?: string | undefined;
5978
6055
  additionalCredentials?: any;
6056
+ senderId?: string | undefined;
5979
6057
  vonageCredentials?: {
5980
6058
  mobileNumber: string;
5981
6059
  apiKey: string;
@@ -6166,6 +6244,7 @@ export declare const channelContract: {
6166
6244
  accessToken: z.ZodOptional<z.ZodString>;
6167
6245
  channelSecret: z.ZodOptional<z.ZodString>;
6168
6246
  additionalCredentials: z.ZodOptional<z.ZodAny>;
6247
+ senderId: z.ZodOptional<z.ZodString>;
6169
6248
  vonageCredentials: z.ZodOptional<z.ZodObject<{
6170
6249
  mobileNumber: z.ZodString;
6171
6250
  apiKey: z.ZodString;
@@ -6186,6 +6265,7 @@ export declare const channelContract: {
6186
6265
  accessToken?: string | undefined;
6187
6266
  channelSecret?: string | undefined;
6188
6267
  additionalCredentials?: any;
6268
+ senderId?: string | undefined;
6189
6269
  vonageCredentials?: {
6190
6270
  mobileNumber: string;
6191
6271
  apiKey: string;
@@ -6198,6 +6278,7 @@ export declare const channelContract: {
6198
6278
  accessToken?: string | undefined;
6199
6279
  channelSecret?: string | undefined;
6200
6280
  additionalCredentials?: any;
6281
+ senderId?: string | undefined;
6201
6282
  vonageCredentials?: {
6202
6283
  mobileNumber: string;
6203
6284
  apiKey: string;
@@ -6444,6 +6525,7 @@ export declare const channelContract: {
6444
6525
  accessToken?: string | undefined;
6445
6526
  channelSecret?: string | undefined;
6446
6527
  additionalCredentials?: any;
6528
+ senderId?: string | undefined;
6447
6529
  vonageCredentials?: {
6448
6530
  mobileNumber: string;
6449
6531
  apiKey: string;
@@ -6521,6 +6603,7 @@ export declare const channelContract: {
6521
6603
  accessToken?: string | undefined;
6522
6604
  channelSecret?: string | undefined;
6523
6605
  additionalCredentials?: any;
6606
+ senderId?: string | undefined;
6524
6607
  vonageCredentials?: {
6525
6608
  mobileNumber: string;
6526
6609
  apiKey: string;
@@ -6600,6 +6683,7 @@ export declare const channelContract: {
6600
6683
  accessToken?: string | undefined;
6601
6684
  channelSecret?: string | undefined;
6602
6685
  additionalCredentials?: any;
6686
+ senderId?: string | undefined;
6603
6687
  vonageCredentials?: {
6604
6688
  mobileNumber: string;
6605
6689
  apiKey: string;
@@ -6680,6 +6764,7 @@ export declare const channelContract: {
6680
6764
  accessToken?: string | undefined;
6681
6765
  channelSecret?: string | undefined;
6682
6766
  additionalCredentials?: any;
6767
+ senderId?: string | undefined;
6683
6768
  vonageCredentials?: {
6684
6769
  mobileNumber: string;
6685
6770
  apiKey: string;
@@ -6970,6 +7055,7 @@ export declare const channelFacebookFeedContract: {
6970
7055
  accessToken: z.ZodOptional<z.ZodString>;
6971
7056
  channelSecret: z.ZodOptional<z.ZodString>;
6972
7057
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7058
+ senderId: z.ZodOptional<z.ZodString>;
6973
7059
  vonageCredentials: z.ZodOptional<z.ZodObject<{
6974
7060
  mobileNumber: z.ZodString;
6975
7061
  apiKey: z.ZodString;
@@ -6990,6 +7076,7 @@ export declare const channelFacebookFeedContract: {
6990
7076
  accessToken?: string | undefined;
6991
7077
  channelSecret?: string | undefined;
6992
7078
  additionalCredentials?: any;
7079
+ senderId?: string | undefined;
6993
7080
  vonageCredentials?: {
6994
7081
  mobileNumber: string;
6995
7082
  apiKey: string;
@@ -7002,6 +7089,7 @@ export declare const channelFacebookFeedContract: {
7002
7089
  accessToken?: string | undefined;
7003
7090
  channelSecret?: string | undefined;
7004
7091
  additionalCredentials?: any;
7092
+ senderId?: string | undefined;
7005
7093
  vonageCredentials?: {
7006
7094
  mobileNumber: string;
7007
7095
  apiKey: string;
@@ -7021,6 +7109,7 @@ export declare const channelFacebookFeedContract: {
7021
7109
  accessToken?: string | undefined;
7022
7110
  channelSecret?: string | undefined;
7023
7111
  additionalCredentials?: any;
7112
+ senderId?: string | undefined;
7024
7113
  vonageCredentials?: {
7025
7114
  mobileNumber: string;
7026
7115
  apiKey: string;
@@ -7040,6 +7129,7 @@ export declare const channelFacebookFeedContract: {
7040
7129
  accessToken?: string | undefined;
7041
7130
  channelSecret?: string | undefined;
7042
7131
  additionalCredentials?: any;
7132
+ senderId?: string | undefined;
7043
7133
  vonageCredentials?: {
7044
7134
  mobileNumber: string;
7045
7135
  apiKey: string;
@@ -7069,6 +7159,7 @@ export declare const channelFacebookFeedContract: {
7069
7159
  accessToken: z.ZodOptional<z.ZodString>;
7070
7160
  channelSecret: z.ZodOptional<z.ZodString>;
7071
7161
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7162
+ senderId: z.ZodOptional<z.ZodString>;
7072
7163
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7073
7164
  mobileNumber: z.ZodString;
7074
7165
  apiKey: z.ZodString;
@@ -7089,6 +7180,7 @@ export declare const channelFacebookFeedContract: {
7089
7180
  accessToken?: string | undefined;
7090
7181
  channelSecret?: string | undefined;
7091
7182
  additionalCredentials?: any;
7183
+ senderId?: string | undefined;
7092
7184
  vonageCredentials?: {
7093
7185
  mobileNumber: string;
7094
7186
  apiKey: string;
@@ -7101,6 +7193,7 @@ export declare const channelFacebookFeedContract: {
7101
7193
  accessToken?: string | undefined;
7102
7194
  channelSecret?: string | undefined;
7103
7195
  additionalCredentials?: any;
7196
+ senderId?: string | undefined;
7104
7197
  vonageCredentials?: {
7105
7198
  mobileNumber: string;
7106
7199
  apiKey: string;
@@ -7347,6 +7440,7 @@ export declare const channelFacebookFeedContract: {
7347
7440
  accessToken?: string | undefined;
7348
7441
  channelSecret?: string | undefined;
7349
7442
  additionalCredentials?: any;
7443
+ senderId?: string | undefined;
7350
7444
  vonageCredentials?: {
7351
7445
  mobileNumber: string;
7352
7446
  apiKey: string;
@@ -7424,6 +7518,7 @@ export declare const channelFacebookFeedContract: {
7424
7518
  accessToken?: string | undefined;
7425
7519
  channelSecret?: string | undefined;
7426
7520
  additionalCredentials?: any;
7521
+ senderId?: string | undefined;
7427
7522
  vonageCredentials?: {
7428
7523
  mobileNumber: string;
7429
7524
  apiKey: string;
@@ -7503,6 +7598,7 @@ export declare const channelFacebookFeedContract: {
7503
7598
  accessToken?: string | undefined;
7504
7599
  channelSecret?: string | undefined;
7505
7600
  additionalCredentials?: any;
7601
+ senderId?: string | undefined;
7506
7602
  vonageCredentials?: {
7507
7603
  mobileNumber: string;
7508
7604
  apiKey: string;
@@ -7583,6 +7679,7 @@ export declare const channelFacebookFeedContract: {
7583
7679
  accessToken?: string | undefined;
7584
7680
  channelSecret?: string | undefined;
7585
7681
  additionalCredentials?: any;
7682
+ senderId?: string | undefined;
7586
7683
  vonageCredentials?: {
7587
7684
  mobileNumber: string;
7588
7685
  apiKey: string;
@@ -7693,6 +7790,7 @@ export declare const channelBotContract: {
7693
7790
  accessToken: z.ZodOptional<z.ZodString>;
7694
7791
  channelSecret: z.ZodOptional<z.ZodString>;
7695
7792
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7793
+ senderId: z.ZodOptional<z.ZodString>;
7696
7794
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7697
7795
  mobileNumber: z.ZodString;
7698
7796
  apiKey: z.ZodString;
@@ -7713,6 +7811,7 @@ export declare const channelBotContract: {
7713
7811
  accessToken?: string | undefined;
7714
7812
  channelSecret?: string | undefined;
7715
7813
  additionalCredentials?: any;
7814
+ senderId?: string | undefined;
7716
7815
  vonageCredentials?: {
7717
7816
  mobileNumber: string;
7718
7817
  apiKey: string;
@@ -7725,6 +7824,7 @@ export declare const channelBotContract: {
7725
7824
  accessToken?: string | undefined;
7726
7825
  channelSecret?: string | undefined;
7727
7826
  additionalCredentials?: any;
7827
+ senderId?: string | undefined;
7728
7828
  vonageCredentials?: {
7729
7829
  mobileNumber: string;
7730
7830
  apiKey: string;
@@ -7971,6 +8071,7 @@ export declare const channelBotContract: {
7971
8071
  accessToken?: string | undefined;
7972
8072
  channelSecret?: string | undefined;
7973
8073
  additionalCredentials?: any;
8074
+ senderId?: string | undefined;
7974
8075
  vonageCredentials?: {
7975
8076
  mobileNumber: string;
7976
8077
  apiKey: string;
@@ -8048,6 +8149,7 @@ export declare const channelBotContract: {
8048
8149
  accessToken?: string | undefined;
8049
8150
  channelSecret?: string | undefined;
8050
8151
  additionalCredentials?: any;
8152
+ senderId?: string | undefined;
8051
8153
  vonageCredentials?: {
8052
8154
  mobileNumber: string;
8053
8155
  apiKey: string;
@@ -8127,6 +8229,7 @@ export declare const channelBotContract: {
8127
8229
  accessToken?: string | undefined;
8128
8230
  channelSecret?: string | undefined;
8129
8231
  additionalCredentials?: any;
8232
+ senderId?: string | undefined;
8130
8233
  vonageCredentials?: {
8131
8234
  mobileNumber: string;
8132
8235
  apiKey: string;
@@ -8207,6 +8310,7 @@ export declare const channelBotContract: {
8207
8310
  accessToken?: string | undefined;
8208
8311
  channelSecret?: string | undefined;
8209
8312
  additionalCredentials?: any;
8313
+ senderId?: string | undefined;
8210
8314
  vonageCredentials?: {
8211
8315
  mobileNumber: string;
8212
8316
  apiKey: string;
@@ -8319,6 +8423,7 @@ export declare const channelBotContract: {
8319
8423
  accessToken: z.ZodOptional<z.ZodString>;
8320
8424
  channelSecret: z.ZodOptional<z.ZodString>;
8321
8425
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8426
+ senderId: z.ZodOptional<z.ZodString>;
8322
8427
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8323
8428
  mobileNumber: z.ZodString;
8324
8429
  apiKey: z.ZodString;
@@ -8339,6 +8444,7 @@ export declare const channelBotContract: {
8339
8444
  accessToken?: string | undefined;
8340
8445
  channelSecret?: string | undefined;
8341
8446
  additionalCredentials?: any;
8447
+ senderId?: string | undefined;
8342
8448
  vonageCredentials?: {
8343
8449
  mobileNumber: string;
8344
8450
  apiKey: string;
@@ -8351,6 +8457,7 @@ export declare const channelBotContract: {
8351
8457
  accessToken?: string | undefined;
8352
8458
  channelSecret?: string | undefined;
8353
8459
  additionalCredentials?: any;
8460
+ senderId?: string | undefined;
8354
8461
  vonageCredentials?: {
8355
8462
  mobileNumber: string;
8356
8463
  apiKey: string;
@@ -8597,6 +8704,7 @@ export declare const channelBotContract: {
8597
8704
  accessToken?: string | undefined;
8598
8705
  channelSecret?: string | undefined;
8599
8706
  additionalCredentials?: any;
8707
+ senderId?: string | undefined;
8600
8708
  vonageCredentials?: {
8601
8709
  mobileNumber: string;
8602
8710
  apiKey: string;
@@ -8674,6 +8782,7 @@ export declare const channelBotContract: {
8674
8782
  accessToken?: string | undefined;
8675
8783
  channelSecret?: string | undefined;
8676
8784
  additionalCredentials?: any;
8785
+ senderId?: string | undefined;
8677
8786
  vonageCredentials?: {
8678
8787
  mobileNumber: string;
8679
8788
  apiKey: string;
@@ -8753,6 +8862,7 @@ export declare const channelBotContract: {
8753
8862
  accessToken?: string | undefined;
8754
8863
  channelSecret?: string | undefined;
8755
8864
  additionalCredentials?: any;
8865
+ senderId?: string | undefined;
8756
8866
  vonageCredentials?: {
8757
8867
  mobileNumber: string;
8758
8868
  apiKey: string;
@@ -8833,6 +8943,7 @@ export declare const channelBotContract: {
8833
8943
  accessToken?: string | undefined;
8834
8944
  channelSecret?: string | undefined;
8835
8945
  additionalCredentials?: any;
8946
+ senderId?: string | undefined;
8836
8947
  vonageCredentials?: {
8837
8948
  mobileNumber: string;
8838
8949
  apiKey: string;
@@ -8932,6 +9043,7 @@ export declare const channelSMSContract: {
8932
9043
  body: z.ZodObject<{
8933
9044
  name: z.ZodString;
8934
9045
  type: z.ZodEnum<[import("../../../entities/src/enums/chat").EChannelType.VONAGE_SMS]>;
9046
+ senderId: z.ZodString;
8935
9047
  vonageCredentials: z.ZodObject<{
8936
9048
  mobileNumber: z.ZodEffects<z.ZodString, string, string>;
8937
9049
  apiKey: z.ZodString;
@@ -8948,6 +9060,7 @@ export declare const channelSMSContract: {
8948
9060
  }, "strip", z.ZodTypeAny, {
8949
9061
  type: import("../../../entities/src/enums/chat").EChannelType.VONAGE_SMS;
8950
9062
  name: string;
9063
+ senderId: string;
8951
9064
  vonageCredentials: {
8952
9065
  mobileNumber: string;
8953
9066
  apiKey: string;
@@ -8956,6 +9069,7 @@ export declare const channelSMSContract: {
8956
9069
  }, {
8957
9070
  type: import("../../../entities/src/enums/chat").EChannelType.VONAGE_SMS;
8958
9071
  name: string;
9072
+ senderId: string;
8959
9073
  vonageCredentials: {
8960
9074
  mobileNumber: string;
8961
9075
  apiKey: string;
@@ -8980,6 +9094,7 @@ export declare const channelSMSContract: {
8980
9094
  accessToken: z.ZodOptional<z.ZodString>;
8981
9095
  channelSecret: z.ZodOptional<z.ZodString>;
8982
9096
  additionalCredentials: z.ZodOptional<z.ZodAny>;
9097
+ senderId: z.ZodOptional<z.ZodString>;
8983
9098
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8984
9099
  mobileNumber: z.ZodString;
8985
9100
  apiKey: z.ZodString;
@@ -9000,6 +9115,7 @@ export declare const channelSMSContract: {
9000
9115
  accessToken?: string | undefined;
9001
9116
  channelSecret?: string | undefined;
9002
9117
  additionalCredentials?: any;
9118
+ senderId?: string | undefined;
9003
9119
  vonageCredentials?: {
9004
9120
  mobileNumber: string;
9005
9121
  apiKey: string;
@@ -9012,6 +9128,7 @@ export declare const channelSMSContract: {
9012
9128
  accessToken?: string | undefined;
9013
9129
  channelSecret?: string | undefined;
9014
9130
  additionalCredentials?: any;
9131
+ senderId?: string | undefined;
9015
9132
  vonageCredentials?: {
9016
9133
  mobileNumber: string;
9017
9134
  apiKey: string;
@@ -9258,6 +9375,7 @@ export declare const channelSMSContract: {
9258
9375
  accessToken?: string | undefined;
9259
9376
  channelSecret?: string | undefined;
9260
9377
  additionalCredentials?: any;
9378
+ senderId?: string | undefined;
9261
9379
  vonageCredentials?: {
9262
9380
  mobileNumber: string;
9263
9381
  apiKey: string;
@@ -9335,6 +9453,7 @@ export declare const channelSMSContract: {
9335
9453
  accessToken?: string | undefined;
9336
9454
  channelSecret?: string | undefined;
9337
9455
  additionalCredentials?: any;
9456
+ senderId?: string | undefined;
9338
9457
  vonageCredentials?: {
9339
9458
  mobileNumber: string;
9340
9459
  apiKey: string;
@@ -9414,6 +9533,7 @@ export declare const channelSMSContract: {
9414
9533
  accessToken?: string | undefined;
9415
9534
  channelSecret?: string | undefined;
9416
9535
  additionalCredentials?: any;
9536
+ senderId?: string | undefined;
9417
9537
  vonageCredentials?: {
9418
9538
  mobileNumber: string;
9419
9539
  apiKey: string;
@@ -9494,6 +9614,7 @@ export declare const channelSMSContract: {
9494
9614
  accessToken?: string | undefined;
9495
9615
  channelSecret?: string | undefined;
9496
9616
  additionalCredentials?: any;
9617
+ senderId?: string | undefined;
9497
9618
  vonageCredentials?: {
9498
9619
  mobileNumber: string;
9499
9620
  apiKey: string;