@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
@@ -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;
@@ -3551,6 +3598,69 @@ export declare const channelContract: {
3551
3598
  'x-client-timezone'?: string | undefined;
3552
3599
  }>>>;
3553
3600
  };
3601
+ checknewTenant: {
3602
+ summary: "Check new tenant";
3603
+ method: "GET";
3604
+ responses: {
3605
+ 200: z.ZodObject<{
3606
+ requestId: z.ZodString;
3607
+ data: z.ZodObject<{
3608
+ isNewTenant: z.ZodBoolean;
3609
+ isChannelExist: z.ZodBoolean;
3610
+ isContactExist: z.ZodBoolean;
3611
+ }, "strip", z.ZodTypeAny, {
3612
+ isNewTenant: boolean;
3613
+ isChannelExist: boolean;
3614
+ isContactExist: boolean;
3615
+ }, {
3616
+ isNewTenant: boolean;
3617
+ isChannelExist: boolean;
3618
+ isContactExist: boolean;
3619
+ }>;
3620
+ }, "strip", z.ZodTypeAny, {
3621
+ data: {
3622
+ isNewTenant: boolean;
3623
+ isChannelExist: boolean;
3624
+ isContactExist: boolean;
3625
+ };
3626
+ requestId: string;
3627
+ }, {
3628
+ data: {
3629
+ isNewTenant: boolean;
3630
+ isChannelExist: boolean;
3631
+ isContactExist: boolean;
3632
+ };
3633
+ requestId: string;
3634
+ }>;
3635
+ 408: z.ZodObject<{
3636
+ message: z.ZodString;
3637
+ error: z.ZodAny;
3638
+ }, "strip", z.ZodTypeAny, {
3639
+ message: string;
3640
+ error?: any;
3641
+ }, {
3642
+ message: string;
3643
+ error?: any;
3644
+ }>;
3645
+ };
3646
+ path: "channel/check-new-tenant";
3647
+ headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3648
+ 'x-tenant': z.ZodString;
3649
+ authorization: z.ZodString;
3650
+ 'x-code': z.ZodOptional<z.ZodString>;
3651
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
3652
+ }, "strip", z.ZodTypeAny, {
3653
+ 'x-tenant': string;
3654
+ authorization: string;
3655
+ 'x-client-timezone': string;
3656
+ 'x-code'?: string | undefined;
3657
+ }, {
3658
+ 'x-tenant': string;
3659
+ authorization: string;
3660
+ 'x-code'?: string | undefined;
3661
+ 'x-client-timezone'?: string | undefined;
3662
+ }>>>;
3663
+ };
3554
3664
  messenger: {
3555
3665
  getPages: {
3556
3666
  method: "GET";
@@ -3746,6 +3856,7 @@ export declare const channelContract: {
3746
3856
  accessToken: z.ZodOptional<z.ZodString>;
3747
3857
  channelSecret: z.ZodOptional<z.ZodString>;
3748
3858
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3859
+ senderId: z.ZodOptional<z.ZodString>;
3749
3860
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3750
3861
  mobileNumber: z.ZodString;
3751
3862
  apiKey: z.ZodString;
@@ -3766,6 +3877,7 @@ export declare const channelContract: {
3766
3877
  accessToken?: string | undefined;
3767
3878
  channelSecret?: string | undefined;
3768
3879
  additionalCredentials?: any;
3880
+ senderId?: string | undefined;
3769
3881
  vonageCredentials?: {
3770
3882
  mobileNumber: string;
3771
3883
  apiKey: string;
@@ -3778,6 +3890,7 @@ export declare const channelContract: {
3778
3890
  accessToken?: string | undefined;
3779
3891
  channelSecret?: string | undefined;
3780
3892
  additionalCredentials?: any;
3893
+ senderId?: string | undefined;
3781
3894
  vonageCredentials?: {
3782
3895
  mobileNumber: string;
3783
3896
  apiKey: string;
@@ -3797,6 +3910,7 @@ export declare const channelContract: {
3797
3910
  accessToken?: string | undefined;
3798
3911
  channelSecret?: string | undefined;
3799
3912
  additionalCredentials?: any;
3913
+ senderId?: string | undefined;
3800
3914
  vonageCredentials?: {
3801
3915
  mobileNumber: string;
3802
3916
  apiKey: string;
@@ -3816,6 +3930,7 @@ export declare const channelContract: {
3816
3930
  accessToken?: string | undefined;
3817
3931
  channelSecret?: string | undefined;
3818
3932
  additionalCredentials?: any;
3933
+ senderId?: string | undefined;
3819
3934
  vonageCredentials?: {
3820
3935
  mobileNumber: string;
3821
3936
  apiKey: string;
@@ -3845,6 +3960,7 @@ export declare const channelContract: {
3845
3960
  accessToken: z.ZodOptional<z.ZodString>;
3846
3961
  channelSecret: z.ZodOptional<z.ZodString>;
3847
3962
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3963
+ senderId: z.ZodOptional<z.ZodString>;
3848
3964
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3849
3965
  mobileNumber: z.ZodString;
3850
3966
  apiKey: z.ZodString;
@@ -3865,6 +3981,7 @@ export declare const channelContract: {
3865
3981
  accessToken?: string | undefined;
3866
3982
  channelSecret?: string | undefined;
3867
3983
  additionalCredentials?: any;
3984
+ senderId?: string | undefined;
3868
3985
  vonageCredentials?: {
3869
3986
  mobileNumber: string;
3870
3987
  apiKey: string;
@@ -3877,6 +3994,7 @@ export declare const channelContract: {
3877
3994
  accessToken?: string | undefined;
3878
3995
  channelSecret?: string | undefined;
3879
3996
  additionalCredentials?: any;
3997
+ senderId?: string | undefined;
3880
3998
  vonageCredentials?: {
3881
3999
  mobileNumber: string;
3882
4000
  apiKey: string;
@@ -4123,6 +4241,7 @@ export declare const channelContract: {
4123
4241
  accessToken?: string | undefined;
4124
4242
  channelSecret?: string | undefined;
4125
4243
  additionalCredentials?: any;
4244
+ senderId?: string | undefined;
4126
4245
  vonageCredentials?: {
4127
4246
  mobileNumber: string;
4128
4247
  apiKey: string;
@@ -4200,6 +4319,7 @@ export declare const channelContract: {
4200
4319
  accessToken?: string | undefined;
4201
4320
  channelSecret?: string | undefined;
4202
4321
  additionalCredentials?: any;
4322
+ senderId?: string | undefined;
4203
4323
  vonageCredentials?: {
4204
4324
  mobileNumber: string;
4205
4325
  apiKey: string;
@@ -4279,6 +4399,7 @@ export declare const channelContract: {
4279
4399
  accessToken?: string | undefined;
4280
4400
  channelSecret?: string | undefined;
4281
4401
  additionalCredentials?: any;
4402
+ senderId?: string | undefined;
4282
4403
  vonageCredentials?: {
4283
4404
  mobileNumber: string;
4284
4405
  apiKey: string;
@@ -4359,6 +4480,7 @@ export declare const channelContract: {
4359
4480
  accessToken?: string | undefined;
4360
4481
  channelSecret?: string | undefined;
4361
4482
  additionalCredentials?: any;
4483
+ senderId?: string | undefined;
4362
4484
  vonageCredentials?: {
4363
4485
  mobileNumber: string;
4364
4486
  apiKey: string;
@@ -4719,6 +4841,7 @@ export declare const channelContract: {
4719
4841
  accessToken: z.ZodOptional<z.ZodString>;
4720
4842
  channelSecret: z.ZodOptional<z.ZodString>;
4721
4843
  additionalCredentials: z.ZodOptional<z.ZodAny>;
4844
+ senderId: z.ZodOptional<z.ZodString>;
4722
4845
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4723
4846
  mobileNumber: z.ZodString;
4724
4847
  apiKey: z.ZodString;
@@ -4739,6 +4862,7 @@ export declare const channelContract: {
4739
4862
  accessToken?: string | undefined;
4740
4863
  channelSecret?: string | undefined;
4741
4864
  additionalCredentials?: any;
4865
+ senderId?: string | undefined;
4742
4866
  vonageCredentials?: {
4743
4867
  mobileNumber: string;
4744
4868
  apiKey: string;
@@ -4751,6 +4875,7 @@ export declare const channelContract: {
4751
4875
  accessToken?: string | undefined;
4752
4876
  channelSecret?: string | undefined;
4753
4877
  additionalCredentials?: any;
4878
+ senderId?: string | undefined;
4754
4879
  vonageCredentials?: {
4755
4880
  mobileNumber: string;
4756
4881
  apiKey: string;
@@ -4770,6 +4895,7 @@ export declare const channelContract: {
4770
4895
  accessToken?: string | undefined;
4771
4896
  channelSecret?: string | undefined;
4772
4897
  additionalCredentials?: any;
4898
+ senderId?: string | undefined;
4773
4899
  vonageCredentials?: {
4774
4900
  mobileNumber: string;
4775
4901
  apiKey: string;
@@ -4789,6 +4915,7 @@ export declare const channelContract: {
4789
4915
  accessToken?: string | undefined;
4790
4916
  channelSecret?: string | undefined;
4791
4917
  additionalCredentials?: any;
4918
+ senderId?: string | undefined;
4792
4919
  vonageCredentials?: {
4793
4920
  mobileNumber: string;
4794
4921
  apiKey: string;
@@ -4818,6 +4945,7 @@ export declare const channelContract: {
4818
4945
  accessToken: z.ZodOptional<z.ZodString>;
4819
4946
  channelSecret: z.ZodOptional<z.ZodString>;
4820
4947
  additionalCredentials: z.ZodOptional<z.ZodAny>;
4948
+ senderId: z.ZodOptional<z.ZodString>;
4821
4949
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4822
4950
  mobileNumber: z.ZodString;
4823
4951
  apiKey: z.ZodString;
@@ -4838,6 +4966,7 @@ export declare const channelContract: {
4838
4966
  accessToken?: string | undefined;
4839
4967
  channelSecret?: string | undefined;
4840
4968
  additionalCredentials?: any;
4969
+ senderId?: string | undefined;
4841
4970
  vonageCredentials?: {
4842
4971
  mobileNumber: string;
4843
4972
  apiKey: string;
@@ -4850,6 +4979,7 @@ export declare const channelContract: {
4850
4979
  accessToken?: string | undefined;
4851
4980
  channelSecret?: string | undefined;
4852
4981
  additionalCredentials?: any;
4982
+ senderId?: string | undefined;
4853
4983
  vonageCredentials?: {
4854
4984
  mobileNumber: string;
4855
4985
  apiKey: string;
@@ -5096,6 +5226,7 @@ export declare const channelContract: {
5096
5226
  accessToken?: string | undefined;
5097
5227
  channelSecret?: string | undefined;
5098
5228
  additionalCredentials?: any;
5229
+ senderId?: string | undefined;
5099
5230
  vonageCredentials?: {
5100
5231
  mobileNumber: string;
5101
5232
  apiKey: string;
@@ -5173,6 +5304,7 @@ export declare const channelContract: {
5173
5304
  accessToken?: string | undefined;
5174
5305
  channelSecret?: string | undefined;
5175
5306
  additionalCredentials?: any;
5307
+ senderId?: string | undefined;
5176
5308
  vonageCredentials?: {
5177
5309
  mobileNumber: string;
5178
5310
  apiKey: string;
@@ -5252,6 +5384,7 @@ export declare const channelContract: {
5252
5384
  accessToken?: string | undefined;
5253
5385
  channelSecret?: string | undefined;
5254
5386
  additionalCredentials?: any;
5387
+ senderId?: string | undefined;
5255
5388
  vonageCredentials?: {
5256
5389
  mobileNumber: string;
5257
5390
  apiKey: string;
@@ -5332,6 +5465,7 @@ export declare const channelContract: {
5332
5465
  accessToken?: string | undefined;
5333
5466
  channelSecret?: string | undefined;
5334
5467
  additionalCredentials?: any;
5468
+ senderId?: string | undefined;
5335
5469
  vonageCredentials?: {
5336
5470
  mobileNumber: string;
5337
5471
  apiKey: string;
@@ -5462,6 +5596,7 @@ export declare const channelContract: {
5462
5596
  accessToken: z.ZodOptional<z.ZodString>;
5463
5597
  channelSecret: z.ZodOptional<z.ZodString>;
5464
5598
  additionalCredentials: z.ZodOptional<z.ZodAny>;
5599
+ senderId: z.ZodOptional<z.ZodString>;
5465
5600
  vonageCredentials: z.ZodOptional<z.ZodObject<{
5466
5601
  mobileNumber: z.ZodString;
5467
5602
  apiKey: z.ZodString;
@@ -5482,6 +5617,7 @@ export declare const channelContract: {
5482
5617
  accessToken?: string | undefined;
5483
5618
  channelSecret?: string | undefined;
5484
5619
  additionalCredentials?: any;
5620
+ senderId?: string | undefined;
5485
5621
  vonageCredentials?: {
5486
5622
  mobileNumber: string;
5487
5623
  apiKey: string;
@@ -5494,6 +5630,7 @@ export declare const channelContract: {
5494
5630
  accessToken?: string | undefined;
5495
5631
  channelSecret?: string | undefined;
5496
5632
  additionalCredentials?: any;
5633
+ senderId?: string | undefined;
5497
5634
  vonageCredentials?: {
5498
5635
  mobileNumber: string;
5499
5636
  apiKey: string;
@@ -5740,6 +5877,7 @@ export declare const channelContract: {
5740
5877
  accessToken?: string | undefined;
5741
5878
  channelSecret?: string | undefined;
5742
5879
  additionalCredentials?: any;
5880
+ senderId?: string | undefined;
5743
5881
  vonageCredentials?: {
5744
5882
  mobileNumber: string;
5745
5883
  apiKey: string;
@@ -5817,6 +5955,7 @@ export declare const channelContract: {
5817
5955
  accessToken?: string | undefined;
5818
5956
  channelSecret?: string | undefined;
5819
5957
  additionalCredentials?: any;
5958
+ senderId?: string | undefined;
5820
5959
  vonageCredentials?: {
5821
5960
  mobileNumber: string;
5822
5961
  apiKey: string;
@@ -5896,6 +6035,7 @@ export declare const channelContract: {
5896
6035
  accessToken?: string | undefined;
5897
6036
  channelSecret?: string | undefined;
5898
6037
  additionalCredentials?: any;
6038
+ senderId?: string | undefined;
5899
6039
  vonageCredentials?: {
5900
6040
  mobileNumber: string;
5901
6041
  apiKey: string;
@@ -5976,6 +6116,7 @@ export declare const channelContract: {
5976
6116
  accessToken?: string | undefined;
5977
6117
  channelSecret?: string | undefined;
5978
6118
  additionalCredentials?: any;
6119
+ senderId?: string | undefined;
5979
6120
  vonageCredentials?: {
5980
6121
  mobileNumber: string;
5981
6122
  apiKey: string;
@@ -6166,6 +6307,7 @@ export declare const channelContract: {
6166
6307
  accessToken: z.ZodOptional<z.ZodString>;
6167
6308
  channelSecret: z.ZodOptional<z.ZodString>;
6168
6309
  additionalCredentials: z.ZodOptional<z.ZodAny>;
6310
+ senderId: z.ZodOptional<z.ZodString>;
6169
6311
  vonageCredentials: z.ZodOptional<z.ZodObject<{
6170
6312
  mobileNumber: z.ZodString;
6171
6313
  apiKey: z.ZodString;
@@ -6186,6 +6328,7 @@ export declare const channelContract: {
6186
6328
  accessToken?: string | undefined;
6187
6329
  channelSecret?: string | undefined;
6188
6330
  additionalCredentials?: any;
6331
+ senderId?: string | undefined;
6189
6332
  vonageCredentials?: {
6190
6333
  mobileNumber: string;
6191
6334
  apiKey: string;
@@ -6198,6 +6341,7 @@ export declare const channelContract: {
6198
6341
  accessToken?: string | undefined;
6199
6342
  channelSecret?: string | undefined;
6200
6343
  additionalCredentials?: any;
6344
+ senderId?: string | undefined;
6201
6345
  vonageCredentials?: {
6202
6346
  mobileNumber: string;
6203
6347
  apiKey: string;
@@ -6444,6 +6588,7 @@ export declare const channelContract: {
6444
6588
  accessToken?: string | undefined;
6445
6589
  channelSecret?: string | undefined;
6446
6590
  additionalCredentials?: any;
6591
+ senderId?: string | undefined;
6447
6592
  vonageCredentials?: {
6448
6593
  mobileNumber: string;
6449
6594
  apiKey: string;
@@ -6521,6 +6666,7 @@ export declare const channelContract: {
6521
6666
  accessToken?: string | undefined;
6522
6667
  channelSecret?: string | undefined;
6523
6668
  additionalCredentials?: any;
6669
+ senderId?: string | undefined;
6524
6670
  vonageCredentials?: {
6525
6671
  mobileNumber: string;
6526
6672
  apiKey: string;
@@ -6600,6 +6746,7 @@ export declare const channelContract: {
6600
6746
  accessToken?: string | undefined;
6601
6747
  channelSecret?: string | undefined;
6602
6748
  additionalCredentials?: any;
6749
+ senderId?: string | undefined;
6603
6750
  vonageCredentials?: {
6604
6751
  mobileNumber: string;
6605
6752
  apiKey: string;
@@ -6680,6 +6827,7 @@ export declare const channelContract: {
6680
6827
  accessToken?: string | undefined;
6681
6828
  channelSecret?: string | undefined;
6682
6829
  additionalCredentials?: any;
6830
+ senderId?: string | undefined;
6683
6831
  vonageCredentials?: {
6684
6832
  mobileNumber: string;
6685
6833
  apiKey: string;
@@ -6985,6 +7133,7 @@ export declare const channelContract: {
6985
7133
  accessToken: z.ZodOptional<z.ZodString>;
6986
7134
  channelSecret: z.ZodOptional<z.ZodString>;
6987
7135
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7136
+ senderId: z.ZodOptional<z.ZodString>;
6988
7137
  vonageCredentials: z.ZodOptional<z.ZodObject<{
6989
7138
  mobileNumber: z.ZodString;
6990
7139
  apiKey: z.ZodString;
@@ -7005,6 +7154,7 @@ export declare const channelContract: {
7005
7154
  accessToken?: string | undefined;
7006
7155
  channelSecret?: string | undefined;
7007
7156
  additionalCredentials?: any;
7157
+ senderId?: string | undefined;
7008
7158
  vonageCredentials?: {
7009
7159
  mobileNumber: string;
7010
7160
  apiKey: string;
@@ -7017,6 +7167,7 @@ export declare const channelContract: {
7017
7167
  accessToken?: string | undefined;
7018
7168
  channelSecret?: string | undefined;
7019
7169
  additionalCredentials?: any;
7170
+ senderId?: string | undefined;
7020
7171
  vonageCredentials?: {
7021
7172
  mobileNumber: string;
7022
7173
  apiKey: string;
@@ -7036,6 +7187,7 @@ export declare const channelContract: {
7036
7187
  accessToken?: string | undefined;
7037
7188
  channelSecret?: string | undefined;
7038
7189
  additionalCredentials?: any;
7190
+ senderId?: string | undefined;
7039
7191
  vonageCredentials?: {
7040
7192
  mobileNumber: string;
7041
7193
  apiKey: string;
@@ -7055,6 +7207,7 @@ export declare const channelContract: {
7055
7207
  accessToken?: string | undefined;
7056
7208
  channelSecret?: string | undefined;
7057
7209
  additionalCredentials?: any;
7210
+ senderId?: string | undefined;
7058
7211
  vonageCredentials?: {
7059
7212
  mobileNumber: string;
7060
7213
  apiKey: string;
@@ -7084,6 +7237,7 @@ export declare const channelContract: {
7084
7237
  accessToken: z.ZodOptional<z.ZodString>;
7085
7238
  channelSecret: z.ZodOptional<z.ZodString>;
7086
7239
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7240
+ senderId: z.ZodOptional<z.ZodString>;
7087
7241
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7088
7242
  mobileNumber: z.ZodString;
7089
7243
  apiKey: z.ZodString;
@@ -7104,6 +7258,7 @@ export declare const channelContract: {
7104
7258
  accessToken?: string | undefined;
7105
7259
  channelSecret?: string | undefined;
7106
7260
  additionalCredentials?: any;
7261
+ senderId?: string | undefined;
7107
7262
  vonageCredentials?: {
7108
7263
  mobileNumber: string;
7109
7264
  apiKey: string;
@@ -7116,6 +7271,7 @@ export declare const channelContract: {
7116
7271
  accessToken?: string | undefined;
7117
7272
  channelSecret?: string | undefined;
7118
7273
  additionalCredentials?: any;
7274
+ senderId?: string | undefined;
7119
7275
  vonageCredentials?: {
7120
7276
  mobileNumber: string;
7121
7277
  apiKey: string;
@@ -7362,6 +7518,7 @@ export declare const channelContract: {
7362
7518
  accessToken?: string | undefined;
7363
7519
  channelSecret?: string | undefined;
7364
7520
  additionalCredentials?: any;
7521
+ senderId?: string | undefined;
7365
7522
  vonageCredentials?: {
7366
7523
  mobileNumber: string;
7367
7524
  apiKey: string;
@@ -7439,6 +7596,7 @@ export declare const channelContract: {
7439
7596
  accessToken?: string | undefined;
7440
7597
  channelSecret?: string | undefined;
7441
7598
  additionalCredentials?: any;
7599
+ senderId?: string | undefined;
7442
7600
  vonageCredentials?: {
7443
7601
  mobileNumber: string;
7444
7602
  apiKey: string;
@@ -7518,6 +7676,7 @@ export declare const channelContract: {
7518
7676
  accessToken?: string | undefined;
7519
7677
  channelSecret?: string | undefined;
7520
7678
  additionalCredentials?: any;
7679
+ senderId?: string | undefined;
7521
7680
  vonageCredentials?: {
7522
7681
  mobileNumber: string;
7523
7682
  apiKey: string;
@@ -7598,6 +7757,7 @@ export declare const channelContract: {
7598
7757
  accessToken?: string | undefined;
7599
7758
  channelSecret?: string | undefined;
7600
7759
  additionalCredentials?: any;
7760
+ senderId?: string | undefined;
7601
7761
  vonageCredentials?: {
7602
7762
  mobileNumber: string;
7603
7763
  apiKey: string;
@@ -7725,6 +7885,7 @@ export declare const channelBotContract: {
7725
7885
  accessToken: z.ZodOptional<z.ZodString>;
7726
7886
  channelSecret: z.ZodOptional<z.ZodString>;
7727
7887
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7888
+ senderId: z.ZodOptional<z.ZodString>;
7728
7889
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7729
7890
  mobileNumber: z.ZodString;
7730
7891
  apiKey: z.ZodString;
@@ -7745,6 +7906,7 @@ export declare const channelBotContract: {
7745
7906
  accessToken?: string | undefined;
7746
7907
  channelSecret?: string | undefined;
7747
7908
  additionalCredentials?: any;
7909
+ senderId?: string | undefined;
7748
7910
  vonageCredentials?: {
7749
7911
  mobileNumber: string;
7750
7912
  apiKey: string;
@@ -7757,6 +7919,7 @@ export declare const channelBotContract: {
7757
7919
  accessToken?: string | undefined;
7758
7920
  channelSecret?: string | undefined;
7759
7921
  additionalCredentials?: any;
7922
+ senderId?: string | undefined;
7760
7923
  vonageCredentials?: {
7761
7924
  mobileNumber: string;
7762
7925
  apiKey: string;
@@ -8003,6 +8166,7 @@ export declare const channelBotContract: {
8003
8166
  accessToken?: string | undefined;
8004
8167
  channelSecret?: string | undefined;
8005
8168
  additionalCredentials?: any;
8169
+ senderId?: string | undefined;
8006
8170
  vonageCredentials?: {
8007
8171
  mobileNumber: string;
8008
8172
  apiKey: string;
@@ -8080,6 +8244,7 @@ export declare const channelBotContract: {
8080
8244
  accessToken?: string | undefined;
8081
8245
  channelSecret?: string | undefined;
8082
8246
  additionalCredentials?: any;
8247
+ senderId?: string | undefined;
8083
8248
  vonageCredentials?: {
8084
8249
  mobileNumber: string;
8085
8250
  apiKey: string;
@@ -8159,6 +8324,7 @@ export declare const channelBotContract: {
8159
8324
  accessToken?: string | undefined;
8160
8325
  channelSecret?: string | undefined;
8161
8326
  additionalCredentials?: any;
8327
+ senderId?: string | undefined;
8162
8328
  vonageCredentials?: {
8163
8329
  mobileNumber: string;
8164
8330
  apiKey: string;
@@ -8239,6 +8405,7 @@ export declare const channelBotContract: {
8239
8405
  accessToken?: string | undefined;
8240
8406
  channelSecret?: string | undefined;
8241
8407
  additionalCredentials?: any;
8408
+ senderId?: string | undefined;
8242
8409
  vonageCredentials?: {
8243
8410
  mobileNumber: string;
8244
8411
  apiKey: string;
@@ -8351,6 +8518,7 @@ export declare const channelBotContract: {
8351
8518
  accessToken: z.ZodOptional<z.ZodString>;
8352
8519
  channelSecret: z.ZodOptional<z.ZodString>;
8353
8520
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8521
+ senderId: z.ZodOptional<z.ZodString>;
8354
8522
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8355
8523
  mobileNumber: z.ZodString;
8356
8524
  apiKey: z.ZodString;
@@ -8371,6 +8539,7 @@ export declare const channelBotContract: {
8371
8539
  accessToken?: string | undefined;
8372
8540
  channelSecret?: string | undefined;
8373
8541
  additionalCredentials?: any;
8542
+ senderId?: string | undefined;
8374
8543
  vonageCredentials?: {
8375
8544
  mobileNumber: string;
8376
8545
  apiKey: string;
@@ -8383,6 +8552,7 @@ export declare const channelBotContract: {
8383
8552
  accessToken?: string | undefined;
8384
8553
  channelSecret?: string | undefined;
8385
8554
  additionalCredentials?: any;
8555
+ senderId?: string | undefined;
8386
8556
  vonageCredentials?: {
8387
8557
  mobileNumber: string;
8388
8558
  apiKey: string;
@@ -8629,6 +8799,7 @@ export declare const channelBotContract: {
8629
8799
  accessToken?: string | undefined;
8630
8800
  channelSecret?: string | undefined;
8631
8801
  additionalCredentials?: any;
8802
+ senderId?: string | undefined;
8632
8803
  vonageCredentials?: {
8633
8804
  mobileNumber: string;
8634
8805
  apiKey: string;
@@ -8706,6 +8877,7 @@ export declare const channelBotContract: {
8706
8877
  accessToken?: string | undefined;
8707
8878
  channelSecret?: string | undefined;
8708
8879
  additionalCredentials?: any;
8880
+ senderId?: string | undefined;
8709
8881
  vonageCredentials?: {
8710
8882
  mobileNumber: string;
8711
8883
  apiKey: string;
@@ -8785,6 +8957,7 @@ export declare const channelBotContract: {
8785
8957
  accessToken?: string | undefined;
8786
8958
  channelSecret?: string | undefined;
8787
8959
  additionalCredentials?: any;
8960
+ senderId?: string | undefined;
8788
8961
  vonageCredentials?: {
8789
8962
  mobileNumber: string;
8790
8963
  apiKey: string;
@@ -8865,6 +9038,7 @@ export declare const channelBotContract: {
8865
9038
  accessToken?: string | undefined;
8866
9039
  channelSecret?: string | undefined;
8867
9040
  additionalCredentials?: any;
9041
+ senderId?: string | undefined;
8868
9042
  vonageCredentials?: {
8869
9043
  mobileNumber: string;
8870
9044
  apiKey: string;
@@ -8964,6 +9138,7 @@ export declare const channelSMSContract: {
8964
9138
  body: z.ZodObject<{
8965
9139
  name: z.ZodString;
8966
9140
  type: z.ZodEnum<[import("../../../entities/src/enums/chat").EChannelType.VONAGE_SMS]>;
9141
+ senderId: z.ZodString;
8967
9142
  vonageCredentials: z.ZodObject<{
8968
9143
  mobileNumber: z.ZodEffects<z.ZodString, string, string>;
8969
9144
  apiKey: z.ZodString;
@@ -8980,6 +9155,7 @@ export declare const channelSMSContract: {
8980
9155
  }, "strip", z.ZodTypeAny, {
8981
9156
  type: import("../../../entities/src/enums/chat").EChannelType.VONAGE_SMS;
8982
9157
  name: string;
9158
+ senderId: string;
8983
9159
  vonageCredentials: {
8984
9160
  mobileNumber: string;
8985
9161
  apiKey: string;
@@ -8988,6 +9164,7 @@ export declare const channelSMSContract: {
8988
9164
  }, {
8989
9165
  type: import("../../../entities/src/enums/chat").EChannelType.VONAGE_SMS;
8990
9166
  name: string;
9167
+ senderId: string;
8991
9168
  vonageCredentials: {
8992
9169
  mobileNumber: string;
8993
9170
  apiKey: string;
@@ -9012,6 +9189,7 @@ export declare const channelSMSContract: {
9012
9189
  accessToken: z.ZodOptional<z.ZodString>;
9013
9190
  channelSecret: z.ZodOptional<z.ZodString>;
9014
9191
  additionalCredentials: z.ZodOptional<z.ZodAny>;
9192
+ senderId: z.ZodOptional<z.ZodString>;
9015
9193
  vonageCredentials: z.ZodOptional<z.ZodObject<{
9016
9194
  mobileNumber: z.ZodString;
9017
9195
  apiKey: z.ZodString;
@@ -9032,6 +9210,7 @@ export declare const channelSMSContract: {
9032
9210
  accessToken?: string | undefined;
9033
9211
  channelSecret?: string | undefined;
9034
9212
  additionalCredentials?: any;
9213
+ senderId?: string | undefined;
9035
9214
  vonageCredentials?: {
9036
9215
  mobileNumber: string;
9037
9216
  apiKey: string;
@@ -9044,6 +9223,7 @@ export declare const channelSMSContract: {
9044
9223
  accessToken?: string | undefined;
9045
9224
  channelSecret?: string | undefined;
9046
9225
  additionalCredentials?: any;
9226
+ senderId?: string | undefined;
9047
9227
  vonageCredentials?: {
9048
9228
  mobileNumber: string;
9049
9229
  apiKey: string;
@@ -9290,6 +9470,7 @@ export declare const channelSMSContract: {
9290
9470
  accessToken?: string | undefined;
9291
9471
  channelSecret?: string | undefined;
9292
9472
  additionalCredentials?: any;
9473
+ senderId?: string | undefined;
9293
9474
  vonageCredentials?: {
9294
9475
  mobileNumber: string;
9295
9476
  apiKey: string;
@@ -9367,6 +9548,7 @@ export declare const channelSMSContract: {
9367
9548
  accessToken?: string | undefined;
9368
9549
  channelSecret?: string | undefined;
9369
9550
  additionalCredentials?: any;
9551
+ senderId?: string | undefined;
9370
9552
  vonageCredentials?: {
9371
9553
  mobileNumber: string;
9372
9554
  apiKey: string;
@@ -9446,6 +9628,7 @@ export declare const channelSMSContract: {
9446
9628
  accessToken?: string | undefined;
9447
9629
  channelSecret?: string | undefined;
9448
9630
  additionalCredentials?: any;
9631
+ senderId?: string | undefined;
9449
9632
  vonageCredentials?: {
9450
9633
  mobileNumber: string;
9451
9634
  apiKey: string;
@@ -9526,6 +9709,7 @@ export declare const channelSMSContract: {
9526
9709
  accessToken?: string | undefined;
9527
9710
  channelSecret?: string | undefined;
9528
9711
  additionalCredentials?: any;
9712
+ senderId?: string | undefined;
9529
9713
  vonageCredentials?: {
9530
9714
  mobileNumber: string;
9531
9715
  apiKey: string;