@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
@@ -117,6 +117,7 @@ export declare const lineContract: {
117
117
  accessToken: z.ZodOptional<z.ZodString>;
118
118
  channelSecret: z.ZodOptional<z.ZodString>;
119
119
  additionalCredentials: z.ZodOptional<z.ZodAny>;
120
+ senderId: z.ZodOptional<z.ZodString>;
120
121
  vonageCredentials: z.ZodOptional<z.ZodObject<{
121
122
  mobileNumber: z.ZodString;
122
123
  apiKey: z.ZodString;
@@ -137,6 +138,7 @@ export declare const lineContract: {
137
138
  accessToken?: string | undefined;
138
139
  channelSecret?: string | undefined;
139
140
  additionalCredentials?: any;
141
+ senderId?: string | undefined;
140
142
  vonageCredentials?: {
141
143
  mobileNumber: string;
142
144
  apiKey: string;
@@ -149,6 +151,7 @@ export declare const lineContract: {
149
151
  accessToken?: string | undefined;
150
152
  channelSecret?: string | undefined;
151
153
  additionalCredentials?: any;
154
+ senderId?: string | undefined;
152
155
  vonageCredentials?: {
153
156
  mobileNumber: string;
154
157
  apiKey: string;
@@ -191,6 +194,7 @@ export declare const lineContract: {
191
194
  accessToken?: string | undefined;
192
195
  channelSecret?: string | undefined;
193
196
  additionalCredentials?: any;
197
+ senderId?: string | undefined;
194
198
  vonageCredentials?: {
195
199
  mobileNumber: string;
196
200
  apiKey: string;
@@ -221,6 +225,7 @@ export declare const lineContract: {
221
225
  accessToken?: string | undefined;
222
226
  channelSecret?: string | undefined;
223
227
  additionalCredentials?: any;
228
+ senderId?: string | undefined;
224
229
  vonageCredentials?: {
225
230
  mobileNumber: string;
226
231
  apiKey: string;
@@ -254,6 +259,7 @@ export declare const lineContract: {
254
259
  accessToken?: string | undefined;
255
260
  channelSecret?: string | undefined;
256
261
  additionalCredentials?: any;
262
+ senderId?: string | undefined;
257
263
  vonageCredentials?: {
258
264
  mobileNumber: string;
259
265
  apiKey: string;
@@ -316,6 +322,7 @@ export declare const lineContract: {
316
322
  accessToken?: string | undefined;
317
323
  channelSecret?: string | undefined;
318
324
  additionalCredentials?: any;
325
+ senderId?: string | undefined;
319
326
  vonageCredentials?: {
320
327
  mobileNumber: string;
321
328
  apiKey: string;
@@ -506,6 +513,7 @@ export declare const lineContract: {
506
513
  accessToken?: string | undefined;
507
514
  channelSecret?: string | undefined;
508
515
  additionalCredentials?: any;
516
+ senderId?: string | undefined;
509
517
  vonageCredentials?: {
510
518
  mobileNumber: string;
511
519
  apiKey: string;
@@ -599,6 +607,7 @@ export declare const lineContract: {
599
607
  accessToken?: string | undefined;
600
608
  channelSecret?: string | undefined;
601
609
  additionalCredentials?: any;
610
+ senderId?: string | undefined;
602
611
  vonageCredentials?: {
603
612
  mobileNumber: string;
604
613
  apiKey: string;
@@ -747,6 +756,7 @@ export declare const lineContract: {
747
756
  accessToken: z.ZodOptional<z.ZodString>;
748
757
  channelSecret: z.ZodOptional<z.ZodString>;
749
758
  additionalCredentials: z.ZodOptional<z.ZodAny>;
759
+ senderId: z.ZodOptional<z.ZodString>;
750
760
  vonageCredentials: z.ZodOptional<z.ZodObject<{
751
761
  mobileNumber: z.ZodString;
752
762
  apiKey: z.ZodString;
@@ -767,6 +777,7 @@ export declare const lineContract: {
767
777
  accessToken?: string | undefined;
768
778
  channelSecret?: string | undefined;
769
779
  additionalCredentials?: any;
780
+ senderId?: string | undefined;
770
781
  vonageCredentials?: {
771
782
  mobileNumber: string;
772
783
  apiKey: string;
@@ -779,6 +790,7 @@ export declare const lineContract: {
779
790
  accessToken?: string | undefined;
780
791
  channelSecret?: string | undefined;
781
792
  additionalCredentials?: any;
793
+ senderId?: string | undefined;
782
794
  vonageCredentials?: {
783
795
  mobileNumber: string;
784
796
  apiKey: string;
@@ -821,6 +833,7 @@ export declare const lineContract: {
821
833
  accessToken?: string | undefined;
822
834
  channelSecret?: string | undefined;
823
835
  additionalCredentials?: any;
836
+ senderId?: string | undefined;
824
837
  vonageCredentials?: {
825
838
  mobileNumber: string;
826
839
  apiKey: string;
@@ -851,6 +864,7 @@ export declare const lineContract: {
851
864
  accessToken?: string | undefined;
852
865
  channelSecret?: string | undefined;
853
866
  additionalCredentials?: any;
867
+ senderId?: string | undefined;
854
868
  vonageCredentials?: {
855
869
  mobileNumber: string;
856
870
  apiKey: string;
@@ -883,6 +897,7 @@ export declare const lineContract: {
883
897
  accessToken?: string | undefined;
884
898
  channelSecret?: string | undefined;
885
899
  additionalCredentials?: any;
900
+ senderId?: string | undefined;
886
901
  vonageCredentials?: {
887
902
  mobileNumber: string;
888
903
  apiKey: string;
@@ -916,6 +931,7 @@ export declare const lineContract: {
916
931
  accessToken?: string | undefined;
917
932
  channelSecret?: string | undefined;
918
933
  additionalCredentials?: any;
934
+ senderId?: string | undefined;
919
935
  vonageCredentials?: {
920
936
  mobileNumber: string;
921
937
  apiKey: string;
@@ -1098,6 +1114,7 @@ export declare const lineContract: {
1098
1114
  accessToken: z.ZodOptional<z.ZodString>;
1099
1115
  channelSecret: z.ZodOptional<z.ZodString>;
1100
1116
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1117
+ senderId: z.ZodOptional<z.ZodString>;
1101
1118
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1102
1119
  mobileNumber: z.ZodString;
1103
1120
  apiKey: z.ZodString;
@@ -1118,6 +1135,7 @@ export declare const lineContract: {
1118
1135
  accessToken?: string | undefined;
1119
1136
  channelSecret?: string | undefined;
1120
1137
  additionalCredentials?: any;
1138
+ senderId?: string | undefined;
1121
1139
  vonageCredentials?: {
1122
1140
  mobileNumber: string;
1123
1141
  apiKey: string;
@@ -1130,6 +1148,7 @@ export declare const lineContract: {
1130
1148
  accessToken?: string | undefined;
1131
1149
  channelSecret?: string | undefined;
1132
1150
  additionalCredentials?: any;
1151
+ senderId?: string | undefined;
1133
1152
  vonageCredentials?: {
1134
1153
  mobileNumber: string;
1135
1154
  apiKey: string;
@@ -1172,6 +1191,7 @@ export declare const lineContract: {
1172
1191
  accessToken?: string | undefined;
1173
1192
  channelSecret?: string | undefined;
1174
1193
  additionalCredentials?: any;
1194
+ senderId?: string | undefined;
1175
1195
  vonageCredentials?: {
1176
1196
  mobileNumber: string;
1177
1197
  apiKey: string;
@@ -1202,6 +1222,7 @@ export declare const lineContract: {
1202
1222
  accessToken?: string | undefined;
1203
1223
  channelSecret?: string | undefined;
1204
1224
  additionalCredentials?: any;
1225
+ senderId?: string | undefined;
1205
1226
  vonageCredentials?: {
1206
1227
  mobileNumber: string;
1207
1228
  apiKey: string;
@@ -1236,6 +1257,7 @@ export declare const lineContract: {
1236
1257
  accessToken?: string | undefined;
1237
1258
  channelSecret?: string | undefined;
1238
1259
  additionalCredentials?: any;
1260
+ senderId?: string | undefined;
1239
1261
  vonageCredentials?: {
1240
1262
  mobileNumber: string;
1241
1263
  apiKey: string;
@@ -1309,6 +1331,7 @@ export declare const lineContract: {
1309
1331
  accessToken?: string | undefined;
1310
1332
  channelSecret?: string | undefined;
1311
1333
  additionalCredentials?: any;
1334
+ senderId?: string | undefined;
1312
1335
  vonageCredentials?: {
1313
1336
  mobileNumber: string;
1314
1337
  apiKey: string;
@@ -1550,6 +1573,7 @@ export declare const lineContract: {
1550
1573
  accessToken?: string | undefined;
1551
1574
  channelSecret?: string | undefined;
1552
1575
  additionalCredentials?: any;
1576
+ senderId?: string | undefined;
1553
1577
  vonageCredentials?: {
1554
1578
  mobileNumber: string;
1555
1579
  apiKey: string;
@@ -1662,6 +1686,7 @@ export declare const lineContract: {
1662
1686
  accessToken?: string | undefined;
1663
1687
  channelSecret?: string | undefined;
1664
1688
  additionalCredentials?: any;
1689
+ senderId?: string | undefined;
1665
1690
  vonageCredentials?: {
1666
1691
  mobileNumber: string;
1667
1692
  apiKey: string;
@@ -3669,6 +3694,7 @@ export declare const lineContract: {
3669
3694
  accessToken: z.ZodOptional<z.ZodString>;
3670
3695
  channelSecret: z.ZodOptional<z.ZodString>;
3671
3696
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3697
+ senderId: z.ZodOptional<z.ZodString>;
3672
3698
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3673
3699
  mobileNumber: z.ZodString;
3674
3700
  apiKey: z.ZodString;
@@ -3689,6 +3715,7 @@ export declare const lineContract: {
3689
3715
  accessToken?: string | undefined;
3690
3716
  channelSecret?: string | undefined;
3691
3717
  additionalCredentials?: any;
3718
+ senderId?: string | undefined;
3692
3719
  vonageCredentials?: {
3693
3720
  mobileNumber: string;
3694
3721
  apiKey: string;
@@ -3701,6 +3728,7 @@ export declare const lineContract: {
3701
3728
  accessToken?: string | undefined;
3702
3729
  channelSecret?: string | undefined;
3703
3730
  additionalCredentials?: any;
3731
+ senderId?: string | undefined;
3704
3732
  vonageCredentials?: {
3705
3733
  mobileNumber: string;
3706
3734
  apiKey: string;
@@ -3947,6 +3975,7 @@ export declare const lineContract: {
3947
3975
  accessToken?: string | undefined;
3948
3976
  channelSecret?: string | undefined;
3949
3977
  additionalCredentials?: any;
3978
+ senderId?: string | undefined;
3950
3979
  vonageCredentials?: {
3951
3980
  mobileNumber: string;
3952
3981
  apiKey: string;
@@ -4024,6 +4053,7 @@ export declare const lineContract: {
4024
4053
  accessToken?: string | undefined;
4025
4054
  channelSecret?: string | undefined;
4026
4055
  additionalCredentials?: any;
4056
+ senderId?: string | undefined;
4027
4057
  vonageCredentials?: {
4028
4058
  mobileNumber: string;
4029
4059
  apiKey: string;
@@ -4549,6 +4579,7 @@ export declare const lineContract: {
4549
4579
  accessToken?: string | undefined;
4550
4580
  channelSecret?: string | undefined;
4551
4581
  additionalCredentials?: any;
4582
+ senderId?: string | undefined;
4552
4583
  vonageCredentials?: {
4553
4584
  mobileNumber: string;
4554
4585
  apiKey: string;
@@ -4937,6 +4968,7 @@ export declare const lineContract: {
4937
4968
  accessToken?: string | undefined;
4938
4969
  channelSecret?: string | undefined;
4939
4970
  additionalCredentials?: any;
4971
+ senderId?: string | undefined;
4940
4972
  vonageCredentials?: {
4941
4973
  mobileNumber: string;
4942
4974
  apiKey: string;
@@ -8041,6 +8073,7 @@ export declare const lineContract: {
8041
8073
  accessToken: z.ZodOptional<z.ZodString>;
8042
8074
  channelSecret: z.ZodOptional<z.ZodString>;
8043
8075
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8076
+ senderId: z.ZodOptional<z.ZodString>;
8044
8077
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8045
8078
  mobileNumber: z.ZodString;
8046
8079
  apiKey: z.ZodString;
@@ -8061,6 +8094,7 @@ export declare const lineContract: {
8061
8094
  accessToken?: string | undefined;
8062
8095
  channelSecret?: string | undefined;
8063
8096
  additionalCredentials?: any;
8097
+ senderId?: string | undefined;
8064
8098
  vonageCredentials?: {
8065
8099
  mobileNumber: string;
8066
8100
  apiKey: string;
@@ -8073,6 +8107,7 @@ export declare const lineContract: {
8073
8107
  accessToken?: string | undefined;
8074
8108
  channelSecret?: string | undefined;
8075
8109
  additionalCredentials?: any;
8110
+ senderId?: string | undefined;
8076
8111
  vonageCredentials?: {
8077
8112
  mobileNumber: string;
8078
8113
  apiKey: string;
@@ -8319,6 +8354,7 @@ export declare const lineContract: {
8319
8354
  accessToken?: string | undefined;
8320
8355
  channelSecret?: string | undefined;
8321
8356
  additionalCredentials?: any;
8357
+ senderId?: string | undefined;
8322
8358
  vonageCredentials?: {
8323
8359
  mobileNumber: string;
8324
8360
  apiKey: string;
@@ -8396,6 +8432,7 @@ export declare const lineContract: {
8396
8432
  accessToken?: string | undefined;
8397
8433
  channelSecret?: string | undefined;
8398
8434
  additionalCredentials?: any;
8435
+ senderId?: string | undefined;
8399
8436
  vonageCredentials?: {
8400
8437
  mobileNumber: string;
8401
8438
  apiKey: string;
@@ -8921,6 +8958,7 @@ export declare const lineContract: {
8921
8958
  accessToken?: string | undefined;
8922
8959
  channelSecret?: string | undefined;
8923
8960
  additionalCredentials?: any;
8961
+ senderId?: string | undefined;
8924
8962
  vonageCredentials?: {
8925
8963
  mobileNumber: string;
8926
8964
  apiKey: string;
@@ -9309,6 +9347,7 @@ export declare const lineContract: {
9309
9347
  accessToken?: string | undefined;
9310
9348
  channelSecret?: string | undefined;
9311
9349
  additionalCredentials?: any;
9350
+ senderId?: string | undefined;
9312
9351
  vonageCredentials?: {
9313
9352
  mobileNumber: string;
9314
9353
  apiKey: string;
@@ -11470,6 +11509,7 @@ export declare const lineContract: {
11470
11509
  accessToken?: string | undefined;
11471
11510
  channelSecret?: string | undefined;
11472
11511
  additionalCredentials?: any;
11512
+ senderId?: string | undefined;
11473
11513
  vonageCredentials?: {
11474
11514
  mobileNumber: string;
11475
11515
  apiKey: string;
@@ -12195,6 +12235,7 @@ export declare const lineContract: {
12195
12235
  accessToken?: string | undefined;
12196
12236
  channelSecret?: string | undefined;
12197
12237
  additionalCredentials?: any;
12238
+ senderId?: string | undefined;
12198
12239
  vonageCredentials?: {
12199
12240
  mobileNumber: string;
12200
12241
  apiKey: string;
@@ -12921,6 +12962,7 @@ export declare const lineContract: {
12921
12962
  accessToken?: string | undefined;
12922
12963
  channelSecret?: string | undefined;
12923
12964
  additionalCredentials?: any;
12965
+ senderId?: string | undefined;
12924
12966
  vonageCredentials?: {
12925
12967
  mobileNumber: string;
12926
12968
  apiKey: string;
@@ -13646,6 +13688,7 @@ export declare const lineContract: {
13646
13688
  accessToken?: string | undefined;
13647
13689
  channelSecret?: string | undefined;
13648
13690
  additionalCredentials?: any;
13691
+ senderId?: string | undefined;
13649
13692
  vonageCredentials?: {
13650
13693
  mobileNumber: string;
13651
13694
  apiKey: string;
@@ -14372,6 +14415,7 @@ export declare const lineContract: {
14372
14415
  accessToken?: string | undefined;
14373
14416
  channelSecret?: string | undefined;
14374
14417
  additionalCredentials?: any;
14418
+ senderId?: string | undefined;
14375
14419
  vonageCredentials?: {
14376
14420
  mobileNumber: string;
14377
14421
  apiKey: string;
@@ -15097,6 +15141,7 @@ export declare const lineContract: {
15097
15141
  accessToken?: string | undefined;
15098
15142
  channelSecret?: string | undefined;
15099
15143
  additionalCredentials?: any;
15144
+ senderId?: string | undefined;
15100
15145
  vonageCredentials?: {
15101
15146
  mobileNumber: string;
15102
15147
  apiKey: string;
@@ -15825,6 +15870,7 @@ export declare const lineContract: {
15825
15870
  accessToken?: string | undefined;
15826
15871
  channelSecret?: string | undefined;
15827
15872
  additionalCredentials?: any;
15873
+ senderId?: string | undefined;
15828
15874
  vonageCredentials?: {
15829
15875
  mobileNumber: string;
15830
15876
  apiKey: string;
@@ -16550,6 +16596,7 @@ export declare const lineContract: {
16550
16596
  accessToken?: string | undefined;
16551
16597
  channelSecret?: string | undefined;
16552
16598
  additionalCredentials?: any;
16599
+ senderId?: string | undefined;
16553
16600
  vonageCredentials?: {
16554
16601
  mobileNumber: string;
16555
16602
  apiKey: string;
@@ -17279,6 +17326,7 @@ export declare const lineContract: {
17279
17326
  accessToken?: string | undefined;
17280
17327
  channelSecret?: string | undefined;
17281
17328
  additionalCredentials?: any;
17329
+ senderId?: string | undefined;
17282
17330
  vonageCredentials?: {
17283
17331
  mobileNumber: string;
17284
17332
  apiKey: string;
@@ -18004,6 +18052,7 @@ export declare const lineContract: {
18004
18052
  accessToken?: string | undefined;
18005
18053
  channelSecret?: string | undefined;
18006
18054
  additionalCredentials?: any;
18055
+ senderId?: string | undefined;
18007
18056
  vonageCredentials?: {
18008
18057
  mobileNumber: string;
18009
18058
  apiKey: string;
@@ -18635,6 +18684,7 @@ export declare const lineContract: {
18635
18684
  accessToken: z.ZodOptional<z.ZodString>;
18636
18685
  channelSecret: z.ZodOptional<z.ZodString>;
18637
18686
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18687
+ senderId: z.ZodOptional<z.ZodString>;
18638
18688
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18639
18689
  mobileNumber: z.ZodString;
18640
18690
  apiKey: z.ZodString;
@@ -18655,6 +18705,7 @@ export declare const lineContract: {
18655
18705
  accessToken?: string | undefined;
18656
18706
  channelSecret?: string | undefined;
18657
18707
  additionalCredentials?: any;
18708
+ senderId?: string | undefined;
18658
18709
  vonageCredentials?: {
18659
18710
  mobileNumber: string;
18660
18711
  apiKey: string;
@@ -18667,6 +18718,7 @@ export declare const lineContract: {
18667
18718
  accessToken?: string | undefined;
18668
18719
  channelSecret?: string | undefined;
18669
18720
  additionalCredentials?: any;
18721
+ senderId?: string | undefined;
18670
18722
  vonageCredentials?: {
18671
18723
  mobileNumber: string;
18672
18724
  apiKey: string;
@@ -18709,6 +18761,7 @@ export declare const lineContract: {
18709
18761
  accessToken?: string | undefined;
18710
18762
  channelSecret?: string | undefined;
18711
18763
  additionalCredentials?: any;
18764
+ senderId?: string | undefined;
18712
18765
  vonageCredentials?: {
18713
18766
  mobileNumber: string;
18714
18767
  apiKey: string;
@@ -18739,6 +18792,7 @@ export declare const lineContract: {
18739
18792
  accessToken?: string | undefined;
18740
18793
  channelSecret?: string | undefined;
18741
18794
  additionalCredentials?: any;
18795
+ senderId?: string | undefined;
18742
18796
  vonageCredentials?: {
18743
18797
  mobileNumber: string;
18744
18798
  apiKey: string;
@@ -18774,6 +18828,7 @@ export declare const lineContract: {
18774
18828
  accessToken: z.ZodOptional<z.ZodString>;
18775
18829
  channelSecret: z.ZodOptional<z.ZodString>;
18776
18830
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18831
+ senderId: z.ZodOptional<z.ZodString>;
18777
18832
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18778
18833
  mobileNumber: z.ZodString;
18779
18834
  apiKey: z.ZodString;
@@ -18794,6 +18849,7 @@ export declare const lineContract: {
18794
18849
  accessToken?: string | undefined;
18795
18850
  channelSecret?: string | undefined;
18796
18851
  additionalCredentials?: any;
18852
+ senderId?: string | undefined;
18797
18853
  vonageCredentials?: {
18798
18854
  mobileNumber: string;
18799
18855
  apiKey: string;
@@ -18806,6 +18862,7 @@ export declare const lineContract: {
18806
18862
  accessToken?: string | undefined;
18807
18863
  channelSecret?: string | undefined;
18808
18864
  additionalCredentials?: any;
18865
+ senderId?: string | undefined;
18809
18866
  vonageCredentials?: {
18810
18867
  mobileNumber: string;
18811
18868
  apiKey: string;
@@ -18848,6 +18905,7 @@ export declare const lineContract: {
18848
18905
  accessToken?: string | undefined;
18849
18906
  channelSecret?: string | undefined;
18850
18907
  additionalCredentials?: any;
18908
+ senderId?: string | undefined;
18851
18909
  vonageCredentials?: {
18852
18910
  mobileNumber: string;
18853
18911
  apiKey: string;
@@ -18878,6 +18936,7 @@ export declare const lineContract: {
18878
18936
  accessToken?: string | undefined;
18879
18937
  channelSecret?: string | undefined;
18880
18938
  additionalCredentials?: any;
18939
+ senderId?: string | undefined;
18881
18940
  vonageCredentials?: {
18882
18941
  mobileNumber: string;
18883
18942
  apiKey: string;
@@ -18910,6 +18969,7 @@ export declare const lineContract: {
18910
18969
  accessToken?: string | undefined;
18911
18970
  channelSecret?: string | undefined;
18912
18971
  additionalCredentials?: any;
18972
+ senderId?: string | undefined;
18913
18973
  vonageCredentials?: {
18914
18974
  mobileNumber: string;
18915
18975
  apiKey: string;
@@ -18943,6 +19003,7 @@ export declare const lineContract: {
18943
19003
  accessToken?: string | undefined;
18944
19004
  channelSecret?: string | undefined;
18945
19005
  additionalCredentials?: any;
19006
+ senderId?: string | undefined;
18946
19007
  vonageCredentials?: {
18947
19008
  mobileNumber: string;
18948
19009
  apiKey: string;
@@ -19012,6 +19073,7 @@ export declare const lineContract: {
19012
19073
  accessToken: z.ZodOptional<z.ZodString>;
19013
19074
  channelSecret: z.ZodOptional<z.ZodString>;
19014
19075
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19076
+ senderId: z.ZodOptional<z.ZodString>;
19015
19077
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19016
19078
  mobileNumber: z.ZodString;
19017
19079
  apiKey: z.ZodString;
@@ -19032,6 +19094,7 @@ export declare const lineContract: {
19032
19094
  accessToken?: string | undefined;
19033
19095
  channelSecret?: string | undefined;
19034
19096
  additionalCredentials?: any;
19097
+ senderId?: string | undefined;
19035
19098
  vonageCredentials?: {
19036
19099
  mobileNumber: string;
19037
19100
  apiKey: string;
@@ -19044,6 +19107,7 @@ export declare const lineContract: {
19044
19107
  accessToken?: string | undefined;
19045
19108
  channelSecret?: string | undefined;
19046
19109
  additionalCredentials?: any;
19110
+ senderId?: string | undefined;
19047
19111
  vonageCredentials?: {
19048
19112
  mobileNumber: string;
19049
19113
  apiKey: string;
@@ -19086,6 +19150,7 @@ export declare const lineContract: {
19086
19150
  accessToken?: string | undefined;
19087
19151
  channelSecret?: string | undefined;
19088
19152
  additionalCredentials?: any;
19153
+ senderId?: string | undefined;
19089
19154
  vonageCredentials?: {
19090
19155
  mobileNumber: string;
19091
19156
  apiKey: string;
@@ -19116,6 +19181,7 @@ export declare const lineContract: {
19116
19181
  accessToken?: string | undefined;
19117
19182
  channelSecret?: string | undefined;
19118
19183
  additionalCredentials?: any;
19184
+ senderId?: string | undefined;
19119
19185
  vonageCredentials?: {
19120
19186
  mobileNumber: string;
19121
19187
  apiKey: string;
@@ -19148,6 +19214,7 @@ export declare const lineContract: {
19148
19214
  accessToken?: string | undefined;
19149
19215
  channelSecret?: string | undefined;
19150
19216
  additionalCredentials?: any;
19217
+ senderId?: string | undefined;
19151
19218
  vonageCredentials?: {
19152
19219
  mobileNumber: string;
19153
19220
  apiKey: string;
@@ -19181,6 +19248,7 @@ export declare const lineContract: {
19181
19248
  accessToken?: string | undefined;
19182
19249
  channelSecret?: string | undefined;
19183
19250
  additionalCredentials?: any;
19251
+ senderId?: string | undefined;
19184
19252
  vonageCredentials?: {
19185
19253
  mobileNumber: string;
19186
19254
  apiKey: string;
@@ -19250,6 +19318,7 @@ export declare const lineContract: {
19250
19318
  accessToken: z.ZodOptional<z.ZodString>;
19251
19319
  channelSecret: z.ZodOptional<z.ZodString>;
19252
19320
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19321
+ senderId: z.ZodOptional<z.ZodString>;
19253
19322
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19254
19323
  mobileNumber: z.ZodString;
19255
19324
  apiKey: z.ZodString;
@@ -19270,6 +19339,7 @@ export declare const lineContract: {
19270
19339
  accessToken?: string | undefined;
19271
19340
  channelSecret?: string | undefined;
19272
19341
  additionalCredentials?: any;
19342
+ senderId?: string | undefined;
19273
19343
  vonageCredentials?: {
19274
19344
  mobileNumber: string;
19275
19345
  apiKey: string;
@@ -19282,6 +19352,7 @@ export declare const lineContract: {
19282
19352
  accessToken?: string | undefined;
19283
19353
  channelSecret?: string | undefined;
19284
19354
  additionalCredentials?: any;
19355
+ senderId?: string | undefined;
19285
19356
  vonageCredentials?: {
19286
19357
  mobileNumber: string;
19287
19358
  apiKey: string;
@@ -19324,6 +19395,7 @@ export declare const lineContract: {
19324
19395
  accessToken?: string | undefined;
19325
19396
  channelSecret?: string | undefined;
19326
19397
  additionalCredentials?: any;
19398
+ senderId?: string | undefined;
19327
19399
  vonageCredentials?: {
19328
19400
  mobileNumber: string;
19329
19401
  apiKey: string;
@@ -19354,6 +19426,7 @@ export declare const lineContract: {
19354
19426
  accessToken?: string | undefined;
19355
19427
  channelSecret?: string | undefined;
19356
19428
  additionalCredentials?: any;
19429
+ senderId?: string | undefined;
19357
19430
  vonageCredentials?: {
19358
19431
  mobileNumber: string;
19359
19432
  apiKey: string;
@@ -19386,6 +19459,7 @@ export declare const lineContract: {
19386
19459
  accessToken?: string | undefined;
19387
19460
  channelSecret?: string | undefined;
19388
19461
  additionalCredentials?: any;
19462
+ senderId?: string | undefined;
19389
19463
  vonageCredentials?: {
19390
19464
  mobileNumber: string;
19391
19465
  apiKey: string;
@@ -19419,6 +19493,7 @@ export declare const lineContract: {
19419
19493
  accessToken?: string | undefined;
19420
19494
  channelSecret?: string | undefined;
19421
19495
  additionalCredentials?: any;
19496
+ senderId?: string | undefined;
19422
19497
  vonageCredentials?: {
19423
19498
  mobileNumber: string;
19424
19499
  apiKey: string;