@kl1/contracts 1.2.8-uat → 1.2.10-uat

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -770,6 +770,7 @@ export declare const ChannelSchema: z.ZodObject<{
770
770
  accessToken: z.ZodOptional<z.ZodString>;
771
771
  channelSecret: z.ZodOptional<z.ZodString>;
772
772
  additionalCredentials: z.ZodOptional<z.ZodAny>;
773
+ senderId: z.ZodOptional<z.ZodString>;
773
774
  vonageCredentials: z.ZodOptional<z.ZodObject<{
774
775
  mobileNumber: z.ZodString;
775
776
  apiKey: z.ZodString;
@@ -790,6 +791,7 @@ export declare const ChannelSchema: z.ZodObject<{
790
791
  accessToken?: string | undefined;
791
792
  channelSecret?: string | undefined;
792
793
  additionalCredentials?: any;
794
+ senderId?: string | undefined;
793
795
  vonageCredentials?: {
794
796
  mobileNumber: string;
795
797
  apiKey: string;
@@ -802,6 +804,7 @@ export declare const ChannelSchema: z.ZodObject<{
802
804
  accessToken?: string | undefined;
803
805
  channelSecret?: string | undefined;
804
806
  additionalCredentials?: any;
807
+ senderId?: string | undefined;
805
808
  vonageCredentials?: {
806
809
  mobileNumber: string;
807
810
  apiKey: string;
@@ -844,6 +847,7 @@ export declare const ChannelSchema: z.ZodObject<{
844
847
  accessToken?: string | undefined;
845
848
  channelSecret?: string | undefined;
846
849
  additionalCredentials?: any;
850
+ senderId?: string | undefined;
847
851
  vonageCredentials?: {
848
852
  mobileNumber: string;
849
853
  apiKey: string;
@@ -874,6 +878,7 @@ export declare const ChannelSchema: z.ZodObject<{
874
878
  accessToken?: string | undefined;
875
879
  channelSecret?: string | undefined;
876
880
  additionalCredentials?: any;
881
+ senderId?: string | undefined;
877
882
  vonageCredentials?: {
878
883
  mobileNumber: string;
879
884
  apiKey: string;
@@ -904,6 +909,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
904
909
  accessToken: z.ZodOptional<z.ZodString>;
905
910
  channelSecret: z.ZodOptional<z.ZodString>;
906
911
  additionalCredentials: z.ZodOptional<z.ZodAny>;
912
+ senderId: z.ZodOptional<z.ZodString>;
907
913
  vonageCredentials: z.ZodOptional<z.ZodObject<{
908
914
  mobileNumber: z.ZodString;
909
915
  apiKey: z.ZodString;
@@ -924,6 +930,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
924
930
  accessToken?: string | undefined;
925
931
  channelSecret?: string | undefined;
926
932
  additionalCredentials?: any;
933
+ senderId?: string | undefined;
927
934
  vonageCredentials?: {
928
935
  mobileNumber: string;
929
936
  apiKey: string;
@@ -936,6 +943,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
936
943
  accessToken?: string | undefined;
937
944
  channelSecret?: string | undefined;
938
945
  additionalCredentials?: any;
946
+ senderId?: string | undefined;
939
947
  vonageCredentials?: {
940
948
  mobileNumber: string;
941
949
  apiKey: string;
@@ -983,6 +991,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
983
991
  accessToken?: string | undefined;
984
992
  channelSecret?: string | undefined;
985
993
  additionalCredentials?: any;
994
+ senderId?: string | undefined;
986
995
  vonageCredentials?: {
987
996
  mobileNumber: string;
988
997
  apiKey: string;
@@ -1017,6 +1026,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1017
1026
  accessToken?: string | undefined;
1018
1027
  channelSecret?: string | undefined;
1019
1028
  additionalCredentials?: any;
1029
+ senderId?: string | undefined;
1020
1030
  vonageCredentials?: {
1021
1031
  mobileNumber: string;
1022
1032
  apiKey: string;
@@ -1055,6 +1065,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1055
1065
  accessToken: z.ZodOptional<z.ZodString>;
1056
1066
  channelSecret: z.ZodOptional<z.ZodString>;
1057
1067
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1068
+ senderId: z.ZodOptional<z.ZodString>;
1058
1069
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1059
1070
  mobileNumber: z.ZodString;
1060
1071
  apiKey: z.ZodString;
@@ -1075,6 +1086,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1075
1086
  accessToken?: string | undefined;
1076
1087
  channelSecret?: string | undefined;
1077
1088
  additionalCredentials?: any;
1089
+ senderId?: string | undefined;
1078
1090
  vonageCredentials?: {
1079
1091
  mobileNumber: string;
1080
1092
  apiKey: string;
@@ -1087,6 +1099,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1087
1099
  accessToken?: string | undefined;
1088
1100
  channelSecret?: string | undefined;
1089
1101
  additionalCredentials?: any;
1102
+ senderId?: string | undefined;
1090
1103
  vonageCredentials?: {
1091
1104
  mobileNumber: string;
1092
1105
  apiKey: string;
@@ -1129,6 +1142,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1129
1142
  accessToken?: string | undefined;
1130
1143
  channelSecret?: string | undefined;
1131
1144
  additionalCredentials?: any;
1145
+ senderId?: string | undefined;
1132
1146
  vonageCredentials?: {
1133
1147
  mobileNumber: string;
1134
1148
  apiKey: string;
@@ -1159,6 +1173,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1159
1173
  accessToken?: string | undefined;
1160
1174
  channelSecret?: string | undefined;
1161
1175
  additionalCredentials?: any;
1176
+ senderId?: string | undefined;
1162
1177
  vonageCredentials?: {
1163
1178
  mobileNumber: string;
1164
1179
  apiKey: string;
@@ -1192,6 +1207,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1192
1207
  accessToken?: string | undefined;
1193
1208
  channelSecret?: string | undefined;
1194
1209
  additionalCredentials?: any;
1210
+ senderId?: string | undefined;
1195
1211
  vonageCredentials?: {
1196
1212
  mobileNumber: string;
1197
1213
  apiKey: string;
@@ -1225,6 +1241,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1225
1241
  accessToken?: string | undefined;
1226
1242
  channelSecret?: string | undefined;
1227
1243
  additionalCredentials?: any;
1244
+ senderId?: string | undefined;
1228
1245
  vonageCredentials?: {
1229
1246
  mobileNumber: string;
1230
1247
  apiKey: string;
@@ -1410,6 +1427,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1410
1427
  accessToken?: string | undefined;
1411
1428
  channelSecret?: string | undefined;
1412
1429
  additionalCredentials?: any;
1430
+ senderId?: string | undefined;
1413
1431
  vonageCredentials?: {
1414
1432
  mobileNumber: string;
1415
1433
  apiKey: string;
@@ -1477,6 +1495,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1477
1495
  accessToken?: string | undefined;
1478
1496
  channelSecret?: string | undefined;
1479
1497
  additionalCredentials?: any;
1498
+ senderId?: string | undefined;
1480
1499
  vonageCredentials?: {
1481
1500
  mobileNumber: string;
1482
1501
  apiKey: string;
@@ -1635,6 +1654,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1635
1654
  accessToken: z.ZodOptional<z.ZodString>;
1636
1655
  channelSecret: z.ZodOptional<z.ZodString>;
1637
1656
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1657
+ senderId: z.ZodOptional<z.ZodString>;
1638
1658
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1639
1659
  mobileNumber: z.ZodString;
1640
1660
  apiKey: z.ZodString;
@@ -1655,6 +1675,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1655
1675
  accessToken?: string | undefined;
1656
1676
  channelSecret?: string | undefined;
1657
1677
  additionalCredentials?: any;
1678
+ senderId?: string | undefined;
1658
1679
  vonageCredentials?: {
1659
1680
  mobileNumber: string;
1660
1681
  apiKey: string;
@@ -1667,6 +1688,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1667
1688
  accessToken?: string | undefined;
1668
1689
  channelSecret?: string | undefined;
1669
1690
  additionalCredentials?: any;
1691
+ senderId?: string | undefined;
1670
1692
  vonageCredentials?: {
1671
1693
  mobileNumber: string;
1672
1694
  apiKey: string;
@@ -1709,6 +1731,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1709
1731
  accessToken?: string | undefined;
1710
1732
  channelSecret?: string | undefined;
1711
1733
  additionalCredentials?: any;
1734
+ senderId?: string | undefined;
1712
1735
  vonageCredentials?: {
1713
1736
  mobileNumber: string;
1714
1737
  apiKey: string;
@@ -1739,6 +1762,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1739
1762
  accessToken?: string | undefined;
1740
1763
  channelSecret?: string | undefined;
1741
1764
  additionalCredentials?: any;
1765
+ senderId?: string | undefined;
1742
1766
  vonageCredentials?: {
1743
1767
  mobileNumber: string;
1744
1768
  apiKey: string;
@@ -1773,6 +1797,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1773
1797
  accessToken?: string | undefined;
1774
1798
  channelSecret?: string | undefined;
1775
1799
  additionalCredentials?: any;
1800
+ senderId?: string | undefined;
1776
1801
  vonageCredentials?: {
1777
1802
  mobileNumber: string;
1778
1803
  apiKey: string;
@@ -1846,6 +1871,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1846
1871
  accessToken?: string | undefined;
1847
1872
  channelSecret?: string | undefined;
1848
1873
  additionalCredentials?: any;
1874
+ senderId?: string | undefined;
1849
1875
  vonageCredentials?: {
1850
1876
  mobileNumber: string;
1851
1877
  apiKey: string;
@@ -2087,6 +2113,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2087
2113
  accessToken?: string | undefined;
2088
2114
  channelSecret?: string | undefined;
2089
2115
  additionalCredentials?: any;
2116
+ senderId?: string | undefined;
2090
2117
  vonageCredentials?: {
2091
2118
  mobileNumber: string;
2092
2119
  apiKey: string;
@@ -2199,6 +2226,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2199
2226
  accessToken?: string | undefined;
2200
2227
  channelSecret?: string | undefined;
2201
2228
  additionalCredentials?: any;
2229
+ senderId?: string | undefined;
2202
2230
  vonageCredentials?: {
2203
2231
  mobileNumber: string;
2204
2232
  apiKey: string;
@@ -2527,6 +2555,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2527
2555
  accessToken: z.ZodOptional<z.ZodString>;
2528
2556
  channelSecret: z.ZodOptional<z.ZodString>;
2529
2557
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2558
+ senderId: z.ZodOptional<z.ZodString>;
2530
2559
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2531
2560
  mobileNumber: z.ZodString;
2532
2561
  apiKey: z.ZodString;
@@ -2547,6 +2576,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2547
2576
  accessToken?: string | undefined;
2548
2577
  channelSecret?: string | undefined;
2549
2578
  additionalCredentials?: any;
2579
+ senderId?: string | undefined;
2550
2580
  vonageCredentials?: {
2551
2581
  mobileNumber: string;
2552
2582
  apiKey: string;
@@ -2559,6 +2589,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2559
2589
  accessToken?: string | undefined;
2560
2590
  channelSecret?: string | undefined;
2561
2591
  additionalCredentials?: any;
2592
+ senderId?: string | undefined;
2562
2593
  vonageCredentials?: {
2563
2594
  mobileNumber: string;
2564
2595
  apiKey: string;
@@ -2601,6 +2632,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2601
2632
  accessToken?: string | undefined;
2602
2633
  channelSecret?: string | undefined;
2603
2634
  additionalCredentials?: any;
2635
+ senderId?: string | undefined;
2604
2636
  vonageCredentials?: {
2605
2637
  mobileNumber: string;
2606
2638
  apiKey: string;
@@ -2631,6 +2663,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2631
2663
  accessToken?: string | undefined;
2632
2664
  channelSecret?: string | undefined;
2633
2665
  additionalCredentials?: any;
2666
+ senderId?: string | undefined;
2634
2667
  vonageCredentials?: {
2635
2668
  mobileNumber: string;
2636
2669
  apiKey: string;
@@ -2665,6 +2698,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2665
2698
  accessToken?: string | undefined;
2666
2699
  channelSecret?: string | undefined;
2667
2700
  additionalCredentials?: any;
2701
+ senderId?: string | undefined;
2668
2702
  vonageCredentials?: {
2669
2703
  mobileNumber: string;
2670
2704
  apiKey: string;
@@ -2738,6 +2772,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2738
2772
  accessToken?: string | undefined;
2739
2773
  channelSecret?: string | undefined;
2740
2774
  additionalCredentials?: any;
2775
+ senderId?: string | undefined;
2741
2776
  vonageCredentials?: {
2742
2777
  mobileNumber: string;
2743
2778
  apiKey: string;
@@ -2860,6 +2895,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2860
2895
  accessToken?: string | undefined;
2861
2896
  channelSecret?: string | undefined;
2862
2897
  additionalCredentials?: any;
2898
+ senderId?: string | undefined;
2863
2899
  vonageCredentials?: {
2864
2900
  mobileNumber: string;
2865
2901
  apiKey: string;
@@ -2976,6 +3012,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2976
3012
  accessToken?: string | undefined;
2977
3013
  channelSecret?: string | undefined;
2978
3014
  additionalCredentials?: any;
3015
+ senderId?: string | undefined;
2979
3016
  vonageCredentials?: {
2980
3017
  mobileNumber: string;
2981
3018
  apiKey: string;
@@ -4985,6 +5022,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4985
5022
  accessToken: z.ZodOptional<z.ZodString>;
4986
5023
  channelSecret: z.ZodOptional<z.ZodString>;
4987
5024
  additionalCredentials: z.ZodOptional<z.ZodAny>;
5025
+ senderId: z.ZodOptional<z.ZodString>;
4988
5026
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4989
5027
  mobileNumber: z.ZodString;
4990
5028
  apiKey: z.ZodString;
@@ -5005,6 +5043,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5005
5043
  accessToken?: string | undefined;
5006
5044
  channelSecret?: string | undefined;
5007
5045
  additionalCredentials?: any;
5046
+ senderId?: string | undefined;
5008
5047
  vonageCredentials?: {
5009
5048
  mobileNumber: string;
5010
5049
  apiKey: string;
@@ -5017,6 +5056,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5017
5056
  accessToken?: string | undefined;
5018
5057
  channelSecret?: string | undefined;
5019
5058
  additionalCredentials?: any;
5059
+ senderId?: string | undefined;
5020
5060
  vonageCredentials?: {
5021
5061
  mobileNumber: string;
5022
5062
  apiKey: string;
@@ -5263,6 +5303,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5263
5303
  accessToken?: string | undefined;
5264
5304
  channelSecret?: string | undefined;
5265
5305
  additionalCredentials?: any;
5306
+ senderId?: string | undefined;
5266
5307
  vonageCredentials?: {
5267
5308
  mobileNumber: string;
5268
5309
  apiKey: string;
@@ -5340,6 +5381,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5340
5381
  accessToken?: string | undefined;
5341
5382
  channelSecret?: string | undefined;
5342
5383
  additionalCredentials?: any;
5384
+ senderId?: string | undefined;
5343
5385
  vonageCredentials?: {
5344
5386
  mobileNumber: string;
5345
5387
  apiKey: string;
@@ -5865,6 +5907,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5865
5907
  accessToken?: string | undefined;
5866
5908
  channelSecret?: string | undefined;
5867
5909
  additionalCredentials?: any;
5910
+ senderId?: string | undefined;
5868
5911
  vonageCredentials?: {
5869
5912
  mobileNumber: string;
5870
5913
  apiKey: string;
@@ -6253,6 +6296,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6253
6296
  accessToken?: string | undefined;
6254
6297
  channelSecret?: string | undefined;
6255
6298
  additionalCredentials?: any;
6299
+ senderId?: string | undefined;
6256
6300
  vonageCredentials?: {
6257
6301
  mobileNumber: string;
6258
6302
  apiKey: string;
@@ -9357,6 +9401,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
9357
9401
  accessToken: z.ZodOptional<z.ZodString>;
9358
9402
  channelSecret: z.ZodOptional<z.ZodString>;
9359
9403
  additionalCredentials: z.ZodOptional<z.ZodAny>;
9404
+ senderId: z.ZodOptional<z.ZodString>;
9360
9405
  vonageCredentials: z.ZodOptional<z.ZodObject<{
9361
9406
  mobileNumber: z.ZodString;
9362
9407
  apiKey: z.ZodString;
@@ -9377,6 +9422,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
9377
9422
  accessToken?: string | undefined;
9378
9423
  channelSecret?: string | undefined;
9379
9424
  additionalCredentials?: any;
9425
+ senderId?: string | undefined;
9380
9426
  vonageCredentials?: {
9381
9427
  mobileNumber: string;
9382
9428
  apiKey: string;
@@ -9389,6 +9435,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
9389
9435
  accessToken?: string | undefined;
9390
9436
  channelSecret?: string | undefined;
9391
9437
  additionalCredentials?: any;
9438
+ senderId?: string | undefined;
9392
9439
  vonageCredentials?: {
9393
9440
  mobileNumber: string;
9394
9441
  apiKey: string;
@@ -9635,6 +9682,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
9635
9682
  accessToken?: string | undefined;
9636
9683
  channelSecret?: string | undefined;
9637
9684
  additionalCredentials?: any;
9685
+ senderId?: string | undefined;
9638
9686
  vonageCredentials?: {
9639
9687
  mobileNumber: string;
9640
9688
  apiKey: string;
@@ -9712,6 +9760,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
9712
9760
  accessToken?: string | undefined;
9713
9761
  channelSecret?: string | undefined;
9714
9762
  additionalCredentials?: any;
9763
+ senderId?: string | undefined;
9715
9764
  vonageCredentials?: {
9716
9765
  mobileNumber: string;
9717
9766
  apiKey: string;
@@ -10237,6 +10286,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10237
10286
  accessToken?: string | undefined;
10238
10287
  channelSecret?: string | undefined;
10239
10288
  additionalCredentials?: any;
10289
+ senderId?: string | undefined;
10240
10290
  vonageCredentials?: {
10241
10291
  mobileNumber: string;
10242
10292
  apiKey: string;
@@ -10625,6 +10675,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10625
10675
  accessToken?: string | undefined;
10626
10676
  channelSecret?: string | undefined;
10627
10677
  additionalCredentials?: any;
10678
+ senderId?: string | undefined;
10628
10679
  vonageCredentials?: {
10629
10680
  mobileNumber: string;
10630
10681
  apiKey: string;
@@ -12786,6 +12837,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
12786
12837
  accessToken?: string | undefined;
12787
12838
  channelSecret?: string | undefined;
12788
12839
  additionalCredentials?: any;
12840
+ senderId?: string | undefined;
12789
12841
  vonageCredentials?: {
12790
12842
  mobileNumber: string;
12791
12843
  apiKey: string;
@@ -13511,6 +13563,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
13511
13563
  accessToken?: string | undefined;
13512
13564
  channelSecret?: string | undefined;
13513
13565
  additionalCredentials?: any;
13566
+ senderId?: string | undefined;
13514
13567
  vonageCredentials?: {
13515
13568
  mobileNumber: string;
13516
13569
  apiKey: string;
@@ -14237,6 +14290,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14237
14290
  accessToken?: string | undefined;
14238
14291
  channelSecret?: string | undefined;
14239
14292
  additionalCredentials?: any;
14293
+ senderId?: string | undefined;
14240
14294
  vonageCredentials?: {
14241
14295
  mobileNumber: string;
14242
14296
  apiKey: string;
@@ -14962,6 +15016,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14962
15016
  accessToken?: string | undefined;
14963
15017
  channelSecret?: string | undefined;
14964
15018
  additionalCredentials?: any;
15019
+ senderId?: string | undefined;
14965
15020
  vonageCredentials?: {
14966
15021
  mobileNumber: string;
14967
15022
  apiKey: string;
@@ -15688,6 +15743,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15688
15743
  accessToken?: string | undefined;
15689
15744
  channelSecret?: string | undefined;
15690
15745
  additionalCredentials?: any;
15746
+ senderId?: string | undefined;
15691
15747
  vonageCredentials?: {
15692
15748
  mobileNumber: string;
15693
15749
  apiKey: string;
@@ -16413,6 +16469,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16413
16469
  accessToken?: string | undefined;
16414
16470
  channelSecret?: string | undefined;
16415
16471
  additionalCredentials?: any;
16472
+ senderId?: string | undefined;
16416
16473
  vonageCredentials?: {
16417
16474
  mobileNumber: string;
16418
16475
  apiKey: string;
@@ -17141,6 +17198,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17141
17198
  accessToken?: string | undefined;
17142
17199
  channelSecret?: string | undefined;
17143
17200
  additionalCredentials?: any;
17201
+ senderId?: string | undefined;
17144
17202
  vonageCredentials?: {
17145
17203
  mobileNumber: string;
17146
17204
  apiKey: string;
@@ -17866,6 +17924,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17866
17924
  accessToken?: string | undefined;
17867
17925
  channelSecret?: string | undefined;
17868
17926
  additionalCredentials?: any;
17927
+ senderId?: string | undefined;
17869
17928
  vonageCredentials?: {
17870
17929
  mobileNumber: string;
17871
17930
  apiKey: string;
@@ -18595,6 +18654,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18595
18654
  accessToken?: string | undefined;
18596
18655
  channelSecret?: string | undefined;
18597
18656
  additionalCredentials?: any;
18657
+ senderId?: string | undefined;
18598
18658
  vonageCredentials?: {
18599
18659
  mobileNumber: string;
18600
18660
  apiKey: string;
@@ -19320,6 +19380,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19320
19380
  accessToken?: string | undefined;
19321
19381
  channelSecret?: string | undefined;
19322
19382
  additionalCredentials?: any;
19383
+ senderId?: string | undefined;
19323
19384
  vonageCredentials?: {
19324
19385
  mobileNumber: string;
19325
19386
  apiKey: string;
@@ -19939,6 +20000,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
19939
20000
  accessToken: z.ZodOptional<z.ZodString>;
19940
20001
  channelSecret: z.ZodOptional<z.ZodString>;
19941
20002
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20003
+ senderId: z.ZodOptional<z.ZodString>;
19942
20004
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19943
20005
  mobileNumber: z.ZodString;
19944
20006
  apiKey: z.ZodString;
@@ -19959,6 +20021,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
19959
20021
  accessToken?: string | undefined;
19960
20022
  channelSecret?: string | undefined;
19961
20023
  additionalCredentials?: any;
20024
+ senderId?: string | undefined;
19962
20025
  vonageCredentials?: {
19963
20026
  mobileNumber: string;
19964
20027
  apiKey: string;
@@ -19971,6 +20034,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
19971
20034
  accessToken?: string | undefined;
19972
20035
  channelSecret?: string | undefined;
19973
20036
  additionalCredentials?: any;
20037
+ senderId?: string | undefined;
19974
20038
  vonageCredentials?: {
19975
20039
  mobileNumber: string;
19976
20040
  apiKey: string;
@@ -20013,6 +20077,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20013
20077
  accessToken?: string | undefined;
20014
20078
  channelSecret?: string | undefined;
20015
20079
  additionalCredentials?: any;
20080
+ senderId?: string | undefined;
20016
20081
  vonageCredentials?: {
20017
20082
  mobileNumber: string;
20018
20083
  apiKey: string;
@@ -20043,6 +20108,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20043
20108
  accessToken?: string | undefined;
20044
20109
  channelSecret?: string | undefined;
20045
20110
  additionalCredentials?: any;
20111
+ senderId?: string | undefined;
20046
20112
  vonageCredentials?: {
20047
20113
  mobileNumber: string;
20048
20114
  apiKey: string;
@@ -20075,6 +20141,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20075
20141
  accessToken?: string | undefined;
20076
20142
  channelSecret?: string | undefined;
20077
20143
  additionalCredentials?: any;
20144
+ senderId?: string | undefined;
20078
20145
  vonageCredentials?: {
20079
20146
  mobileNumber: string;
20080
20147
  apiKey: string;
@@ -20108,6 +20175,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20108
20175
  accessToken?: string | undefined;
20109
20176
  channelSecret?: string | undefined;
20110
20177
  additionalCredentials?: any;
20178
+ senderId?: string | undefined;
20111
20179
  vonageCredentials?: {
20112
20180
  mobileNumber: string;
20113
20181
  apiKey: string;
@@ -21514,6 +21582,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
21514
21582
  accessToken: z.ZodOptional<z.ZodString>;
21515
21583
  channelSecret: z.ZodOptional<z.ZodString>;
21516
21584
  additionalCredentials: z.ZodOptional<z.ZodAny>;
21585
+ senderId: z.ZodOptional<z.ZodString>;
21517
21586
  vonageCredentials: z.ZodOptional<z.ZodObject<{
21518
21587
  mobileNumber: z.ZodString;
21519
21588
  apiKey: z.ZodString;
@@ -21534,6 +21603,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
21534
21603
  accessToken?: string | undefined;
21535
21604
  channelSecret?: string | undefined;
21536
21605
  additionalCredentials?: any;
21606
+ senderId?: string | undefined;
21537
21607
  vonageCredentials?: {
21538
21608
  mobileNumber: string;
21539
21609
  apiKey: string;
@@ -21546,6 +21616,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
21546
21616
  accessToken?: string | undefined;
21547
21617
  channelSecret?: string | undefined;
21548
21618
  additionalCredentials?: any;
21619
+ senderId?: string | undefined;
21549
21620
  vonageCredentials?: {
21550
21621
  mobileNumber: string;
21551
21622
  apiKey: string;
@@ -21588,6 +21659,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
21588
21659
  accessToken?: string | undefined;
21589
21660
  channelSecret?: string | undefined;
21590
21661
  additionalCredentials?: any;
21662
+ senderId?: string | undefined;
21591
21663
  vonageCredentials?: {
21592
21664
  mobileNumber: string;
21593
21665
  apiKey: string;
@@ -21618,6 +21690,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
21618
21690
  accessToken?: string | undefined;
21619
21691
  channelSecret?: string | undefined;
21620
21692
  additionalCredentials?: any;
21693
+ senderId?: string | undefined;
21621
21694
  vonageCredentials?: {
21622
21695
  mobileNumber: string;
21623
21696
  apiKey: string;
@@ -22281,6 +22354,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
22281
22354
  accessToken?: string | undefined;
22282
22355
  channelSecret?: string | undefined;
22283
22356
  additionalCredentials?: any;
22357
+ senderId?: string | undefined;
22284
22358
  vonageCredentials?: {
22285
22359
  mobileNumber: string;
22286
22360
  apiKey: string;
@@ -22594,6 +22668,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
22594
22668
  accessToken?: string | undefined;
22595
22669
  channelSecret?: string | undefined;
22596
22670
  additionalCredentials?: any;
22671
+ senderId?: string | undefined;
22597
22672
  vonageCredentials?: {
22598
22673
  mobileNumber: string;
22599
22674
  apiKey: string;
@@ -23563,6 +23638,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23563
23638
  accessToken?: string | undefined;
23564
23639
  channelSecret?: string | undefined;
23565
23640
  additionalCredentials?: any;
23641
+ senderId?: string | undefined;
23566
23642
  vonageCredentials?: {
23567
23643
  mobileNumber: string;
23568
23644
  apiKey: string;
@@ -24039,6 +24115,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24039
24115
  accessToken?: string | undefined;
24040
24116
  channelSecret?: string | undefined;
24041
24117
  additionalCredentials?: any;
24118
+ senderId?: string | undefined;
24042
24119
  vonageCredentials?: {
24043
24120
  mobileNumber: string;
24044
24121
  apiKey: string;
@@ -24517,6 +24594,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24517
24594
  accessToken?: string | undefined;
24518
24595
  channelSecret?: string | undefined;
24519
24596
  additionalCredentials?: any;
24597
+ senderId?: string | undefined;
24520
24598
  vonageCredentials?: {
24521
24599
  mobileNumber: string;
24522
24600
  apiKey: string;
@@ -24995,6 +25073,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24995
25073
  accessToken?: string | undefined;
24996
25074
  channelSecret?: string | undefined;
24997
25075
  additionalCredentials?: any;
25076
+ senderId?: string | undefined;
24998
25077
  vonageCredentials?: {
24999
25078
  mobileNumber: string;
25000
25079
  apiKey: string;