@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.
- package/dist/api-contracts/src/channel/index.d.ts +184 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +21 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +8 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +230 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +90 -0
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +79 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +817 -3
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +83 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +75 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +9 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +83 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +21 -0
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/schema.d.ts +5 -0
- package/dist/api-contracts/src/sms/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/validation.d.ts +3 -0
- package/dist/api-contracts/src/sms/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +20328 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -0
- package/dist/api-contracts/src/telegram/schema.d.ts +2 -0
- package/dist/api-contracts/src/telegram/schema.d.ts.map +1 -0
- package/dist/api-contracts/src/telegram/validation.d.ts +45 -0
- package/dist/api-contracts/src/telegram/validation.d.ts.map +1 -0
- package/dist/api-contracts/src/viber/index.d.ts +61 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +40 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +24 -3
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +22 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -1414,6 +1414,7 @@ export declare const receiveMessageContract: {
|
|
1414
1414
|
accessToken: z.ZodOptional<z.ZodString>;
|
1415
1415
|
channelSecret: z.ZodOptional<z.ZodString>;
|
1416
1416
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
1417
|
+
senderId: z.ZodOptional<z.ZodString>;
|
1417
1418
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
1418
1419
|
mobileNumber: z.ZodString;
|
1419
1420
|
apiKey: z.ZodString;
|
@@ -1434,6 +1435,7 @@ export declare const receiveMessageContract: {
|
|
1434
1435
|
accessToken?: string | undefined;
|
1435
1436
|
channelSecret?: string | undefined;
|
1436
1437
|
additionalCredentials?: any;
|
1438
|
+
senderId?: string | undefined;
|
1437
1439
|
vonageCredentials?: {
|
1438
1440
|
mobileNumber: string;
|
1439
1441
|
apiKey: string;
|
@@ -1446,6 +1448,7 @@ export declare const receiveMessageContract: {
|
|
1446
1448
|
accessToken?: string | undefined;
|
1447
1449
|
channelSecret?: string | undefined;
|
1448
1450
|
additionalCredentials?: any;
|
1451
|
+
senderId?: string | undefined;
|
1449
1452
|
vonageCredentials?: {
|
1450
1453
|
mobileNumber: string;
|
1451
1454
|
apiKey: string;
|
@@ -1488,6 +1491,7 @@ export declare const receiveMessageContract: {
|
|
1488
1491
|
accessToken?: string | undefined;
|
1489
1492
|
channelSecret?: string | undefined;
|
1490
1493
|
additionalCredentials?: any;
|
1494
|
+
senderId?: string | undefined;
|
1491
1495
|
vonageCredentials?: {
|
1492
1496
|
mobileNumber: string;
|
1493
1497
|
apiKey: string;
|
@@ -1518,6 +1522,7 @@ export declare const receiveMessageContract: {
|
|
1518
1522
|
accessToken?: string | undefined;
|
1519
1523
|
channelSecret?: string | undefined;
|
1520
1524
|
additionalCredentials?: any;
|
1525
|
+
senderId?: string | undefined;
|
1521
1526
|
vonageCredentials?: {
|
1522
1527
|
mobileNumber: string;
|
1523
1528
|
apiKey: string;
|
@@ -2181,6 +2186,7 @@ export declare const receiveMessageContract: {
|
|
2181
2186
|
accessToken?: string | undefined;
|
2182
2187
|
channelSecret?: string | undefined;
|
2183
2188
|
additionalCredentials?: any;
|
2189
|
+
senderId?: string | undefined;
|
2184
2190
|
vonageCredentials?: {
|
2185
2191
|
mobileNumber: string;
|
2186
2192
|
apiKey: string;
|
@@ -2494,6 +2500,7 @@ export declare const receiveMessageContract: {
|
|
2494
2500
|
accessToken?: string | undefined;
|
2495
2501
|
channelSecret?: string | undefined;
|
2496
2502
|
additionalCredentials?: any;
|
2503
|
+
senderId?: string | undefined;
|
2497
2504
|
vonageCredentials?: {
|
2498
2505
|
mobileNumber: string;
|
2499
2506
|
apiKey: string;
|
@@ -3463,6 +3470,7 @@ export declare const receiveMessageContract: {
|
|
3463
3470
|
accessToken?: string | undefined;
|
3464
3471
|
channelSecret?: string | undefined;
|
3465
3472
|
additionalCredentials?: any;
|
3473
|
+
senderId?: string | undefined;
|
3466
3474
|
vonageCredentials?: {
|
3467
3475
|
mobileNumber: string;
|
3468
3476
|
apiKey: string;
|
@@ -3939,6 +3947,7 @@ export declare const receiveMessageContract: {
|
|
3939
3947
|
accessToken?: string | undefined;
|
3940
3948
|
channelSecret?: string | undefined;
|
3941
3949
|
additionalCredentials?: any;
|
3950
|
+
senderId?: string | undefined;
|
3942
3951
|
vonageCredentials?: {
|
3943
3952
|
mobileNumber: string;
|
3944
3953
|
apiKey: string;
|
@@ -4417,6 +4426,7 @@ export declare const receiveMessageContract: {
|
|
4417
4426
|
accessToken?: string | undefined;
|
4418
4427
|
channelSecret?: string | undefined;
|
4419
4428
|
additionalCredentials?: any;
|
4429
|
+
senderId?: string | undefined;
|
4420
4430
|
vonageCredentials?: {
|
4421
4431
|
mobileNumber: string;
|
4422
4432
|
apiKey: string;
|
@@ -4895,6 +4905,7 @@ export declare const receiveMessageContract: {
|
|
4895
4905
|
accessToken?: string | undefined;
|
4896
4906
|
channelSecret?: string | undefined;
|
4897
4907
|
additionalCredentials?: any;
|
4908
|
+
senderId?: string | undefined;
|
4898
4909
|
vonageCredentials?: {
|
4899
4910
|
mobileNumber: string;
|
4900
4911
|
apiKey: string;
|
@@ -5211,6 +5222,7 @@ export declare const mainFeedContract: {
|
|
5211
5222
|
accessToken: z.ZodOptional<z.ZodString>;
|
5212
5223
|
channelSecret: z.ZodOptional<z.ZodString>;
|
5213
5224
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
5225
|
+
senderId: z.ZodOptional<z.ZodString>;
|
5214
5226
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
5215
5227
|
mobileNumber: z.ZodString;
|
5216
5228
|
apiKey: z.ZodString;
|
@@ -5231,6 +5243,7 @@ export declare const mainFeedContract: {
|
|
5231
5243
|
accessToken?: string | undefined;
|
5232
5244
|
channelSecret?: string | undefined;
|
5233
5245
|
additionalCredentials?: any;
|
5246
|
+
senderId?: string | undefined;
|
5234
5247
|
vonageCredentials?: {
|
5235
5248
|
mobileNumber: string;
|
5236
5249
|
apiKey: string;
|
@@ -5243,6 +5256,7 @@ export declare const mainFeedContract: {
|
|
5243
5256
|
accessToken?: string | undefined;
|
5244
5257
|
channelSecret?: string | undefined;
|
5245
5258
|
additionalCredentials?: any;
|
5259
|
+
senderId?: string | undefined;
|
5246
5260
|
vonageCredentials?: {
|
5247
5261
|
mobileNumber: string;
|
5248
5262
|
apiKey: string;
|
@@ -5489,6 +5503,7 @@ export declare const mainFeedContract: {
|
|
5489
5503
|
accessToken?: string | undefined;
|
5490
5504
|
channelSecret?: string | undefined;
|
5491
5505
|
additionalCredentials?: any;
|
5506
|
+
senderId?: string | undefined;
|
5492
5507
|
vonageCredentials?: {
|
5493
5508
|
mobileNumber: string;
|
5494
5509
|
apiKey: string;
|
@@ -5566,6 +5581,7 @@ export declare const mainFeedContract: {
|
|
5566
5581
|
accessToken?: string | undefined;
|
5567
5582
|
channelSecret?: string | undefined;
|
5568
5583
|
additionalCredentials?: any;
|
5584
|
+
senderId?: string | undefined;
|
5569
5585
|
vonageCredentials?: {
|
5570
5586
|
mobileNumber: string;
|
5571
5587
|
apiKey: string;
|
@@ -6900,6 +6916,7 @@ export declare const mainFeedContract: {
|
|
6900
6916
|
accessToken?: string | undefined;
|
6901
6917
|
channelSecret?: string | undefined;
|
6902
6918
|
additionalCredentials?: any;
|
6919
|
+
senderId?: string | undefined;
|
6903
6920
|
vonageCredentials?: {
|
6904
6921
|
mobileNumber: string;
|
6905
6922
|
apiKey: string;
|
@@ -7164,6 +7181,7 @@ export declare const mainFeedContract: {
|
|
7164
7181
|
accessToken?: string | undefined;
|
7165
7182
|
channelSecret?: string | undefined;
|
7166
7183
|
additionalCredentials?: any;
|
7184
|
+
senderId?: string | undefined;
|
7167
7185
|
vonageCredentials?: {
|
7168
7186
|
mobileNumber: string;
|
7169
7187
|
apiKey: string;
|
@@ -7430,6 +7448,7 @@ export declare const mainFeedContract: {
|
|
7430
7448
|
accessToken?: string | undefined;
|
7431
7449
|
channelSecret?: string | undefined;
|
7432
7450
|
additionalCredentials?: any;
|
7451
|
+
senderId?: string | undefined;
|
7433
7452
|
vonageCredentials?: {
|
7434
7453
|
mobileNumber: string;
|
7435
7454
|
apiKey: string;
|
@@ -7697,6 +7716,7 @@ export declare const mainFeedContract: {
|
|
7697
7716
|
accessToken?: string | undefined;
|
7698
7717
|
channelSecret?: string | undefined;
|
7699
7718
|
additionalCredentials?: any;
|
7719
|
+
senderId?: string | undefined;
|
7700
7720
|
vonageCredentials?: {
|
7701
7721
|
mobileNumber: string;
|
7702
7722
|
apiKey: string;
|
@@ -9934,6 +9954,7 @@ export declare const mainFeedContract: {
|
|
9934
9954
|
accessToken: z.ZodOptional<z.ZodString>;
|
9935
9955
|
channelSecret: z.ZodOptional<z.ZodString>;
|
9936
9956
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9957
|
+
senderId: z.ZodOptional<z.ZodString>;
|
9937
9958
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
9938
9959
|
mobileNumber: z.ZodString;
|
9939
9960
|
apiKey: z.ZodString;
|
@@ -9954,6 +9975,7 @@ export declare const mainFeedContract: {
|
|
9954
9975
|
accessToken?: string | undefined;
|
9955
9976
|
channelSecret?: string | undefined;
|
9956
9977
|
additionalCredentials?: any;
|
9978
|
+
senderId?: string | undefined;
|
9957
9979
|
vonageCredentials?: {
|
9958
9980
|
mobileNumber: string;
|
9959
9981
|
apiKey: string;
|
@@ -9966,6 +9988,7 @@ export declare const mainFeedContract: {
|
|
9966
9988
|
accessToken?: string | undefined;
|
9967
9989
|
channelSecret?: string | undefined;
|
9968
9990
|
additionalCredentials?: any;
|
9991
|
+
senderId?: string | undefined;
|
9969
9992
|
vonageCredentials?: {
|
9970
9993
|
mobileNumber: string;
|
9971
9994
|
apiKey: string;
|
@@ -10212,6 +10235,7 @@ export declare const mainFeedContract: {
|
|
10212
10235
|
accessToken?: string | undefined;
|
10213
10236
|
channelSecret?: string | undefined;
|
10214
10237
|
additionalCredentials?: any;
|
10238
|
+
senderId?: string | undefined;
|
10215
10239
|
vonageCredentials?: {
|
10216
10240
|
mobileNumber: string;
|
10217
10241
|
apiKey: string;
|
@@ -10289,6 +10313,7 @@ export declare const mainFeedContract: {
|
|
10289
10313
|
accessToken?: string | undefined;
|
10290
10314
|
channelSecret?: string | undefined;
|
10291
10315
|
additionalCredentials?: any;
|
10316
|
+
senderId?: string | undefined;
|
10292
10317
|
vonageCredentials?: {
|
10293
10318
|
mobileNumber: string;
|
10294
10319
|
apiKey: string;
|
@@ -10814,6 +10839,7 @@ export declare const mainFeedContract: {
|
|
10814
10839
|
accessToken?: string | undefined;
|
10815
10840
|
channelSecret?: string | undefined;
|
10816
10841
|
additionalCredentials?: any;
|
10842
|
+
senderId?: string | undefined;
|
10817
10843
|
vonageCredentials?: {
|
10818
10844
|
mobileNumber: string;
|
10819
10845
|
apiKey: string;
|
@@ -11202,6 +11228,7 @@ export declare const mainFeedContract: {
|
|
11202
11228
|
accessToken?: string | undefined;
|
11203
11229
|
channelSecret?: string | undefined;
|
11204
11230
|
additionalCredentials?: any;
|
11231
|
+
senderId?: string | undefined;
|
11205
11232
|
vonageCredentials?: {
|
11206
11233
|
mobileNumber: string;
|
11207
11234
|
apiKey: string;
|
@@ -15353,6 +15380,7 @@ export declare const mainFeedContract: {
|
|
15353
15380
|
accessToken: z.ZodOptional<z.ZodString>;
|
15354
15381
|
channelSecret: z.ZodOptional<z.ZodString>;
|
15355
15382
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
15383
|
+
senderId: z.ZodOptional<z.ZodString>;
|
15356
15384
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
15357
15385
|
mobileNumber: z.ZodString;
|
15358
15386
|
apiKey: z.ZodString;
|
@@ -15373,6 +15401,7 @@ export declare const mainFeedContract: {
|
|
15373
15401
|
accessToken?: string | undefined;
|
15374
15402
|
channelSecret?: string | undefined;
|
15375
15403
|
additionalCredentials?: any;
|
15404
|
+
senderId?: string | undefined;
|
15376
15405
|
vonageCredentials?: {
|
15377
15406
|
mobileNumber: string;
|
15378
15407
|
apiKey: string;
|
@@ -15385,6 +15414,7 @@ export declare const mainFeedContract: {
|
|
15385
15414
|
accessToken?: string | undefined;
|
15386
15415
|
channelSecret?: string | undefined;
|
15387
15416
|
additionalCredentials?: any;
|
15417
|
+
senderId?: string | undefined;
|
15388
15418
|
vonageCredentials?: {
|
15389
15419
|
mobileNumber: string;
|
15390
15420
|
apiKey: string;
|
@@ -15631,6 +15661,7 @@ export declare const mainFeedContract: {
|
|
15631
15661
|
accessToken?: string | undefined;
|
15632
15662
|
channelSecret?: string | undefined;
|
15633
15663
|
additionalCredentials?: any;
|
15664
|
+
senderId?: string | undefined;
|
15634
15665
|
vonageCredentials?: {
|
15635
15666
|
mobileNumber: string;
|
15636
15667
|
apiKey: string;
|
@@ -15708,6 +15739,7 @@ export declare const mainFeedContract: {
|
|
15708
15739
|
accessToken?: string | undefined;
|
15709
15740
|
channelSecret?: string | undefined;
|
15710
15741
|
additionalCredentials?: any;
|
15742
|
+
senderId?: string | undefined;
|
15711
15743
|
vonageCredentials?: {
|
15712
15744
|
mobileNumber: string;
|
15713
15745
|
apiKey: string;
|
@@ -16233,6 +16265,7 @@ export declare const mainFeedContract: {
|
|
16233
16265
|
accessToken?: string | undefined;
|
16234
16266
|
channelSecret?: string | undefined;
|
16235
16267
|
additionalCredentials?: any;
|
16268
|
+
senderId?: string | undefined;
|
16236
16269
|
vonageCredentials?: {
|
16237
16270
|
mobileNumber: string;
|
16238
16271
|
apiKey: string;
|
@@ -16621,6 +16654,7 @@ export declare const mainFeedContract: {
|
|
16621
16654
|
accessToken?: string | undefined;
|
16622
16655
|
channelSecret?: string | undefined;
|
16623
16656
|
additionalCredentials?: any;
|
16657
|
+
senderId?: string | undefined;
|
16624
16658
|
vonageCredentials?: {
|
16625
16659
|
mobileNumber: string;
|
16626
16660
|
apiKey: string;
|
@@ -18782,6 +18816,7 @@ export declare const mainFeedContract: {
|
|
18782
18816
|
accessToken?: string | undefined;
|
18783
18817
|
channelSecret?: string | undefined;
|
18784
18818
|
additionalCredentials?: any;
|
18819
|
+
senderId?: string | undefined;
|
18785
18820
|
vonageCredentials?: {
|
18786
18821
|
mobileNumber: string;
|
18787
18822
|
apiKey: string;
|
@@ -19507,6 +19542,7 @@ export declare const mainFeedContract: {
|
|
19507
19542
|
accessToken?: string | undefined;
|
19508
19543
|
channelSecret?: string | undefined;
|
19509
19544
|
additionalCredentials?: any;
|
19545
|
+
senderId?: string | undefined;
|
19510
19546
|
vonageCredentials?: {
|
19511
19547
|
mobileNumber: string;
|
19512
19548
|
apiKey: string;
|
@@ -20239,6 +20275,7 @@ export declare const mainFeedContract: {
|
|
20239
20275
|
accessToken?: string | undefined;
|
20240
20276
|
channelSecret?: string | undefined;
|
20241
20277
|
additionalCredentials?: any;
|
20278
|
+
senderId?: string | undefined;
|
20242
20279
|
vonageCredentials?: {
|
20243
20280
|
mobileNumber: string;
|
20244
20281
|
apiKey: string;
|
@@ -20959,6 +20996,7 @@ export declare const mainFeedContract: {
|
|
20959
20996
|
accessToken?: string | undefined;
|
20960
20997
|
channelSecret?: string | undefined;
|
20961
20998
|
additionalCredentials?: any;
|
20999
|
+
senderId?: string | undefined;
|
20962
21000
|
vonageCredentials?: {
|
20963
21001
|
mobileNumber: string;
|
20964
21002
|
apiKey: string;
|
@@ -21817,6 +21855,7 @@ export declare const mainFeedContract: {
|
|
21817
21855
|
accessToken?: string | undefined;
|
21818
21856
|
channelSecret?: string | undefined;
|
21819
21857
|
additionalCredentials?: any;
|
21858
|
+
senderId?: string | undefined;
|
21820
21859
|
vonageCredentials?: {
|
21821
21860
|
mobileNumber: string;
|
21822
21861
|
apiKey: string;
|
@@ -22537,6 +22576,7 @@ export declare const mainFeedContract: {
|
|
22537
22576
|
accessToken?: string | undefined;
|
22538
22577
|
channelSecret?: string | undefined;
|
22539
22578
|
additionalCredentials?: any;
|
22579
|
+
senderId?: string | undefined;
|
22540
22580
|
vonageCredentials?: {
|
22541
22581
|
mobileNumber: string;
|
22542
22582
|
apiKey: string;
|
@@ -23397,6 +23437,7 @@ export declare const mainFeedContract: {
|
|
23397
23437
|
accessToken?: string | undefined;
|
23398
23438
|
channelSecret?: string | undefined;
|
23399
23439
|
additionalCredentials?: any;
|
23440
|
+
senderId?: string | undefined;
|
23400
23441
|
vonageCredentials?: {
|
23401
23442
|
mobileNumber: string;
|
23402
23443
|
apiKey: string;
|
@@ -24117,6 +24158,7 @@ export declare const mainFeedContract: {
|
|
24117
24158
|
accessToken?: string | undefined;
|
24118
24159
|
channelSecret?: string | undefined;
|
24119
24160
|
additionalCredentials?: any;
|
24161
|
+
senderId?: string | undefined;
|
24120
24162
|
vonageCredentials?: {
|
24121
24163
|
mobileNumber: string;
|
24122
24164
|
apiKey: string;
|
@@ -24981,6 +25023,7 @@ export declare const mainFeedContract: {
|
|
24981
25023
|
accessToken?: string | undefined;
|
24982
25024
|
channelSecret?: string | undefined;
|
24983
25025
|
additionalCredentials?: any;
|
25026
|
+
senderId?: string | undefined;
|
24984
25027
|
vonageCredentials?: {
|
24985
25028
|
mobileNumber: string;
|
24986
25029
|
apiKey: string;
|
@@ -25701,6 +25744,7 @@ export declare const mainFeedContract: {
|
|
25701
25744
|
accessToken?: string | undefined;
|
25702
25745
|
channelSecret?: string | undefined;
|
25703
25746
|
additionalCredentials?: any;
|
25747
|
+
senderId?: string | undefined;
|
25704
25748
|
vonageCredentials?: {
|
25705
25749
|
mobileNumber: string;
|
25706
25750
|
apiKey: string;
|
@@ -28082,6 +28126,7 @@ export declare const mainChatRoomContract: {
|
|
28082
28126
|
accessToken: z.ZodOptional<z.ZodString>;
|
28083
28127
|
channelSecret: z.ZodOptional<z.ZodString>;
|
28084
28128
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
28129
|
+
senderId: z.ZodOptional<z.ZodString>;
|
28085
28130
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
28086
28131
|
mobileNumber: z.ZodString;
|
28087
28132
|
apiKey: z.ZodString;
|
@@ -28102,6 +28147,7 @@ export declare const mainChatRoomContract: {
|
|
28102
28147
|
accessToken?: string | undefined;
|
28103
28148
|
channelSecret?: string | undefined;
|
28104
28149
|
additionalCredentials?: any;
|
28150
|
+
senderId?: string | undefined;
|
28105
28151
|
vonageCredentials?: {
|
28106
28152
|
mobileNumber: string;
|
28107
28153
|
apiKey: string;
|
@@ -28114,6 +28160,7 @@ export declare const mainChatRoomContract: {
|
|
28114
28160
|
accessToken?: string | undefined;
|
28115
28161
|
channelSecret?: string | undefined;
|
28116
28162
|
additionalCredentials?: any;
|
28163
|
+
senderId?: string | undefined;
|
28117
28164
|
vonageCredentials?: {
|
28118
28165
|
mobileNumber: string;
|
28119
28166
|
apiKey: string;
|
@@ -28360,6 +28407,7 @@ export declare const mainChatRoomContract: {
|
|
28360
28407
|
accessToken?: string | undefined;
|
28361
28408
|
channelSecret?: string | undefined;
|
28362
28409
|
additionalCredentials?: any;
|
28410
|
+
senderId?: string | undefined;
|
28363
28411
|
vonageCredentials?: {
|
28364
28412
|
mobileNumber: string;
|
28365
28413
|
apiKey: string;
|
@@ -28437,6 +28485,7 @@ export declare const mainChatRoomContract: {
|
|
28437
28485
|
accessToken?: string | undefined;
|
28438
28486
|
channelSecret?: string | undefined;
|
28439
28487
|
additionalCredentials?: any;
|
28488
|
+
senderId?: string | undefined;
|
28440
28489
|
vonageCredentials?: {
|
28441
28490
|
mobileNumber: string;
|
28442
28491
|
apiKey: string;
|
@@ -28962,6 +29011,7 @@ export declare const mainChatRoomContract: {
|
|
28962
29011
|
accessToken?: string | undefined;
|
28963
29012
|
channelSecret?: string | undefined;
|
28964
29013
|
additionalCredentials?: any;
|
29014
|
+
senderId?: string | undefined;
|
28965
29015
|
vonageCredentials?: {
|
28966
29016
|
mobileNumber: string;
|
28967
29017
|
apiKey: string;
|
@@ -29350,6 +29400,7 @@ export declare const mainChatRoomContract: {
|
|
29350
29400
|
accessToken?: string | undefined;
|
29351
29401
|
channelSecret?: string | undefined;
|
29352
29402
|
additionalCredentials?: any;
|
29403
|
+
senderId?: string | undefined;
|
29353
29404
|
vonageCredentials?: {
|
29354
29405
|
mobileNumber: string;
|
29355
29406
|
apiKey: string;
|
@@ -29750,6 +29801,7 @@ export declare const mainChatRoomContract: {
|
|
29750
29801
|
accessToken?: string | undefined;
|
29751
29802
|
channelSecret?: string | undefined;
|
29752
29803
|
additionalCredentials?: any;
|
29804
|
+
senderId?: string | undefined;
|
29753
29805
|
vonageCredentials?: {
|
29754
29806
|
mobileNumber: string;
|
29755
29807
|
apiKey: string;
|
@@ -30148,6 +30200,7 @@ export declare const mainChatRoomContract: {
|
|
30148
30200
|
accessToken?: string | undefined;
|
30149
30201
|
channelSecret?: string | undefined;
|
30150
30202
|
additionalCredentials?: any;
|
30203
|
+
senderId?: string | undefined;
|
30151
30204
|
vonageCredentials?: {
|
30152
30205
|
mobileNumber: string;
|
30153
30206
|
apiKey: string;
|
@@ -32061,6 +32114,7 @@ export declare const mainChatRoomContract: {
|
|
32061
32114
|
accessToken: z.ZodOptional<z.ZodString>;
|
32062
32115
|
channelSecret: z.ZodOptional<z.ZodString>;
|
32063
32116
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
32117
|
+
senderId: z.ZodOptional<z.ZodString>;
|
32064
32118
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
32065
32119
|
mobileNumber: z.ZodString;
|
32066
32120
|
apiKey: z.ZodString;
|
@@ -32081,6 +32135,7 @@ export declare const mainChatRoomContract: {
|
|
32081
32135
|
accessToken?: string | undefined;
|
32082
32136
|
channelSecret?: string | undefined;
|
32083
32137
|
additionalCredentials?: any;
|
32138
|
+
senderId?: string | undefined;
|
32084
32139
|
vonageCredentials?: {
|
32085
32140
|
mobileNumber: string;
|
32086
32141
|
apiKey: string;
|
@@ -32093,6 +32148,7 @@ export declare const mainChatRoomContract: {
|
|
32093
32148
|
accessToken?: string | undefined;
|
32094
32149
|
channelSecret?: string | undefined;
|
32095
32150
|
additionalCredentials?: any;
|
32151
|
+
senderId?: string | undefined;
|
32096
32152
|
vonageCredentials?: {
|
32097
32153
|
mobileNumber: string;
|
32098
32154
|
apiKey: string;
|
@@ -32339,6 +32395,7 @@ export declare const mainChatRoomContract: {
|
|
32339
32395
|
accessToken?: string | undefined;
|
32340
32396
|
channelSecret?: string | undefined;
|
32341
32397
|
additionalCredentials?: any;
|
32398
|
+
senderId?: string | undefined;
|
32342
32399
|
vonageCredentials?: {
|
32343
32400
|
mobileNumber: string;
|
32344
32401
|
apiKey: string;
|
@@ -32416,6 +32473,7 @@ export declare const mainChatRoomContract: {
|
|
32416
32473
|
accessToken?: string | undefined;
|
32417
32474
|
channelSecret?: string | undefined;
|
32418
32475
|
additionalCredentials?: any;
|
32476
|
+
senderId?: string | undefined;
|
32419
32477
|
vonageCredentials?: {
|
32420
32478
|
mobileNumber: string;
|
32421
32479
|
apiKey: string;
|
@@ -32941,6 +32999,7 @@ export declare const mainChatRoomContract: {
|
|
32941
32999
|
accessToken?: string | undefined;
|
32942
33000
|
channelSecret?: string | undefined;
|
32943
33001
|
additionalCredentials?: any;
|
33002
|
+
senderId?: string | undefined;
|
32944
33003
|
vonageCredentials?: {
|
32945
33004
|
mobileNumber: string;
|
32946
33005
|
apiKey: string;
|
@@ -33329,6 +33388,7 @@ export declare const mainChatRoomContract: {
|
|
33329
33388
|
accessToken?: string | undefined;
|
33330
33389
|
channelSecret?: string | undefined;
|
33331
33390
|
additionalCredentials?: any;
|
33391
|
+
senderId?: string | undefined;
|
33332
33392
|
vonageCredentials?: {
|
33333
33393
|
mobileNumber: string;
|
33334
33394
|
apiKey: string;
|
@@ -33762,6 +33822,7 @@ export declare const mainChatRoomContract: {
|
|
33762
33822
|
accessToken?: string | undefined;
|
33763
33823
|
channelSecret?: string | undefined;
|
33764
33824
|
additionalCredentials?: any;
|
33825
|
+
senderId?: string | undefined;
|
33765
33826
|
vonageCredentials?: {
|
33766
33827
|
mobileNumber: string;
|
33767
33828
|
apiKey: string;
|
@@ -34167,6 +34228,7 @@ export declare const mainChatRoomContract: {
|
|
34167
34228
|
accessToken?: string | undefined;
|
34168
34229
|
channelSecret?: string | undefined;
|
34169
34230
|
additionalCredentials?: any;
|
34231
|
+
senderId?: string | undefined;
|
34170
34232
|
vonageCredentials?: {
|
34171
34233
|
mobileNumber: string;
|
34172
34234
|
apiKey: string;
|
@@ -34574,6 +34636,7 @@ export declare const mainChatRoomContract: {
|
|
34574
34636
|
accessToken?: string | undefined;
|
34575
34637
|
channelSecret?: string | undefined;
|
34576
34638
|
additionalCredentials?: any;
|
34639
|
+
senderId?: string | undefined;
|
34577
34640
|
vonageCredentials?: {
|
34578
34641
|
mobileNumber: string;
|
34579
34642
|
apiKey: string;
|
@@ -34982,6 +35045,7 @@ export declare const mainChatRoomContract: {
|
|
34982
35045
|
accessToken?: string | undefined;
|
34983
35046
|
channelSecret?: string | undefined;
|
34984
35047
|
additionalCredentials?: any;
|
35048
|
+
senderId?: string | undefined;
|
34985
35049
|
vonageCredentials?: {
|
34986
35050
|
mobileNumber: string;
|
34987
35051
|
apiKey: string;
|
@@ -35437,6 +35501,7 @@ export declare const mainChatRoomContract: {
|
|
35437
35501
|
accessToken: z.ZodOptional<z.ZodString>;
|
35438
35502
|
channelSecret: z.ZodOptional<z.ZodString>;
|
35439
35503
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
35504
|
+
senderId: z.ZodOptional<z.ZodString>;
|
35440
35505
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
35441
35506
|
mobileNumber: z.ZodString;
|
35442
35507
|
apiKey: z.ZodString;
|
@@ -35457,6 +35522,7 @@ export declare const mainChatRoomContract: {
|
|
35457
35522
|
accessToken?: string | undefined;
|
35458
35523
|
channelSecret?: string | undefined;
|
35459
35524
|
additionalCredentials?: any;
|
35525
|
+
senderId?: string | undefined;
|
35460
35526
|
vonageCredentials?: {
|
35461
35527
|
mobileNumber: string;
|
35462
35528
|
apiKey: string;
|
@@ -35469,6 +35535,7 @@ export declare const mainChatRoomContract: {
|
|
35469
35535
|
accessToken?: string | undefined;
|
35470
35536
|
channelSecret?: string | undefined;
|
35471
35537
|
additionalCredentials?: any;
|
35538
|
+
senderId?: string | undefined;
|
35472
35539
|
vonageCredentials?: {
|
35473
35540
|
mobileNumber: string;
|
35474
35541
|
apiKey: string;
|
@@ -35715,6 +35782,7 @@ export declare const mainChatRoomContract: {
|
|
35715
35782
|
accessToken?: string | undefined;
|
35716
35783
|
channelSecret?: string | undefined;
|
35717
35784
|
additionalCredentials?: any;
|
35785
|
+
senderId?: string | undefined;
|
35718
35786
|
vonageCredentials?: {
|
35719
35787
|
mobileNumber: string;
|
35720
35788
|
apiKey: string;
|
@@ -35792,6 +35860,7 @@ export declare const mainChatRoomContract: {
|
|
35792
35860
|
accessToken?: string | undefined;
|
35793
35861
|
channelSecret?: string | undefined;
|
35794
35862
|
additionalCredentials?: any;
|
35863
|
+
senderId?: string | undefined;
|
35795
35864
|
vonageCredentials?: {
|
35796
35865
|
mobileNumber: string;
|
35797
35866
|
apiKey: string;
|
@@ -37787,6 +37856,7 @@ export declare const mainChatRoomContract: {
|
|
37787
37856
|
accessToken?: string | undefined;
|
37788
37857
|
channelSecret?: string | undefined;
|
37789
37858
|
additionalCredentials?: any;
|
37859
|
+
senderId?: string | undefined;
|
37790
37860
|
vonageCredentials?: {
|
37791
37861
|
mobileNumber: string;
|
37792
37862
|
apiKey: string;
|
@@ -38176,6 +38246,7 @@ export declare const mainChatRoomContract: {
|
|
38176
38246
|
accessToken?: string | undefined;
|
38177
38247
|
channelSecret?: string | undefined;
|
38178
38248
|
additionalCredentials?: any;
|
38249
|
+
senderId?: string | undefined;
|
38179
38250
|
vonageCredentials?: {
|
38180
38251
|
mobileNumber: string;
|
38181
38252
|
apiKey: string;
|
@@ -38567,6 +38638,7 @@ export declare const mainChatRoomContract: {
|
|
38567
38638
|
accessToken?: string | undefined;
|
38568
38639
|
channelSecret?: string | undefined;
|
38569
38640
|
additionalCredentials?: any;
|
38641
|
+
senderId?: string | undefined;
|
38570
38642
|
vonageCredentials?: {
|
38571
38643
|
mobileNumber: string;
|
38572
38644
|
apiKey: string;
|
@@ -38959,6 +39031,7 @@ export declare const mainChatRoomContract: {
|
|
38959
39031
|
accessToken?: string | undefined;
|
38960
39032
|
channelSecret?: string | undefined;
|
38961
39033
|
additionalCredentials?: any;
|
39034
|
+
senderId?: string | undefined;
|
38962
39035
|
vonageCredentials?: {
|
38963
39036
|
mobileNumber: string;
|
38964
39037
|
apiKey: string;
|
@@ -39397,6 +39470,7 @@ export declare const mainChatRoomContract: {
|
|
39397
39470
|
accessToken: z.ZodOptional<z.ZodString>;
|
39398
39471
|
channelSecret: z.ZodOptional<z.ZodString>;
|
39399
39472
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
39473
|
+
senderId: z.ZodOptional<z.ZodString>;
|
39400
39474
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
39401
39475
|
mobileNumber: z.ZodString;
|
39402
39476
|
apiKey: z.ZodString;
|
@@ -39417,6 +39491,7 @@ export declare const mainChatRoomContract: {
|
|
39417
39491
|
accessToken?: string | undefined;
|
39418
39492
|
channelSecret?: string | undefined;
|
39419
39493
|
additionalCredentials?: any;
|
39494
|
+
senderId?: string | undefined;
|
39420
39495
|
vonageCredentials?: {
|
39421
39496
|
mobileNumber: string;
|
39422
39497
|
apiKey: string;
|
@@ -39429,6 +39504,7 @@ export declare const mainChatRoomContract: {
|
|
39429
39504
|
accessToken?: string | undefined;
|
39430
39505
|
channelSecret?: string | undefined;
|
39431
39506
|
additionalCredentials?: any;
|
39507
|
+
senderId?: string | undefined;
|
39432
39508
|
vonageCredentials?: {
|
39433
39509
|
mobileNumber: string;
|
39434
39510
|
apiKey: string;
|
@@ -39675,6 +39751,7 @@ export declare const mainChatRoomContract: {
|
|
39675
39751
|
accessToken?: string | undefined;
|
39676
39752
|
channelSecret?: string | undefined;
|
39677
39753
|
additionalCredentials?: any;
|
39754
|
+
senderId?: string | undefined;
|
39678
39755
|
vonageCredentials?: {
|
39679
39756
|
mobileNumber: string;
|
39680
39757
|
apiKey: string;
|
@@ -39752,6 +39829,7 @@ export declare const mainChatRoomContract: {
|
|
39752
39829
|
accessToken?: string | undefined;
|
39753
39830
|
channelSecret?: string | undefined;
|
39754
39831
|
additionalCredentials?: any;
|
39832
|
+
senderId?: string | undefined;
|
39755
39833
|
vonageCredentials?: {
|
39756
39834
|
mobileNumber: string;
|
39757
39835
|
apiKey: string;
|
@@ -42517,6 +42595,7 @@ export declare const mainChatRoomContract: {
|
|
42517
42595
|
accessToken?: string | undefined;
|
42518
42596
|
channelSecret?: string | undefined;
|
42519
42597
|
additionalCredentials?: any;
|
42598
|
+
senderId?: string | undefined;
|
42520
42599
|
vonageCredentials?: {
|
42521
42600
|
mobileNumber: string;
|
42522
42601
|
apiKey: string;
|
@@ -43018,6 +43097,7 @@ export declare const mainChatRoomContract: {
|
|
43018
43097
|
accessToken?: string | undefined;
|
43019
43098
|
channelSecret?: string | undefined;
|
43020
43099
|
additionalCredentials?: any;
|
43100
|
+
senderId?: string | undefined;
|
43021
43101
|
vonageCredentials?: {
|
43022
43102
|
mobileNumber: string;
|
43023
43103
|
apiKey: string;
|
@@ -43521,6 +43601,7 @@ export declare const mainChatRoomContract: {
|
|
43521
43601
|
accessToken?: string | undefined;
|
43522
43602
|
channelSecret?: string | undefined;
|
43523
43603
|
additionalCredentials?: any;
|
43604
|
+
senderId?: string | undefined;
|
43524
43605
|
vonageCredentials?: {
|
43525
43606
|
mobileNumber: string;
|
43526
43607
|
apiKey: string;
|
@@ -44025,6 +44106,7 @@ export declare const mainChatRoomContract: {
|
|
44025
44106
|
accessToken?: string | undefined;
|
44026
44107
|
channelSecret?: string | undefined;
|
44027
44108
|
additionalCredentials?: any;
|
44109
|
+
senderId?: string | undefined;
|
44028
44110
|
vonageCredentials?: {
|
44029
44111
|
mobileNumber: string;
|
44030
44112
|
apiKey: string;
|
@@ -44565,6 +44647,7 @@ export declare const mainChatRoomContract: {
|
|
44565
44647
|
accessToken: z.ZodOptional<z.ZodString>;
|
44566
44648
|
channelSecret: z.ZodOptional<z.ZodString>;
|
44567
44649
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
44650
|
+
senderId: z.ZodOptional<z.ZodString>;
|
44568
44651
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
44569
44652
|
mobileNumber: z.ZodString;
|
44570
44653
|
apiKey: z.ZodString;
|
@@ -44585,6 +44668,7 @@ export declare const mainChatRoomContract: {
|
|
44585
44668
|
accessToken?: string | undefined;
|
44586
44669
|
channelSecret?: string | undefined;
|
44587
44670
|
additionalCredentials?: any;
|
44671
|
+
senderId?: string | undefined;
|
44588
44672
|
vonageCredentials?: {
|
44589
44673
|
mobileNumber: string;
|
44590
44674
|
apiKey: string;
|
@@ -44597,6 +44681,7 @@ export declare const mainChatRoomContract: {
|
|
44597
44681
|
accessToken?: string | undefined;
|
44598
44682
|
channelSecret?: string | undefined;
|
44599
44683
|
additionalCredentials?: any;
|
44684
|
+
senderId?: string | undefined;
|
44600
44685
|
vonageCredentials?: {
|
44601
44686
|
mobileNumber: string;
|
44602
44687
|
apiKey: string;
|
@@ -44843,6 +44928,7 @@ export declare const mainChatRoomContract: {
|
|
44843
44928
|
accessToken?: string | undefined;
|
44844
44929
|
channelSecret?: string | undefined;
|
44845
44930
|
additionalCredentials?: any;
|
44931
|
+
senderId?: string | undefined;
|
44846
44932
|
vonageCredentials?: {
|
44847
44933
|
mobileNumber: string;
|
44848
44934
|
apiKey: string;
|
@@ -44920,6 +45006,7 @@ export declare const mainChatRoomContract: {
|
|
44920
45006
|
accessToken?: string | undefined;
|
44921
45007
|
channelSecret?: string | undefined;
|
44922
45008
|
additionalCredentials?: any;
|
45009
|
+
senderId?: string | undefined;
|
44923
45010
|
vonageCredentials?: {
|
44924
45011
|
mobileNumber: string;
|
44925
45012
|
apiKey: string;
|
@@ -46915,6 +47002,7 @@ export declare const mainChatRoomContract: {
|
|
46915
47002
|
accessToken?: string | undefined;
|
46916
47003
|
channelSecret?: string | undefined;
|
46917
47004
|
additionalCredentials?: any;
|
47005
|
+
senderId?: string | undefined;
|
46918
47006
|
vonageCredentials?: {
|
46919
47007
|
mobileNumber: string;
|
46920
47008
|
apiKey: string;
|
@@ -47304,6 +47392,7 @@ export declare const mainChatRoomContract: {
|
|
47304
47392
|
accessToken?: string | undefined;
|
47305
47393
|
channelSecret?: string | undefined;
|
47306
47394
|
additionalCredentials?: any;
|
47395
|
+
senderId?: string | undefined;
|
47307
47396
|
vonageCredentials?: {
|
47308
47397
|
mobileNumber: string;
|
47309
47398
|
apiKey: string;
|
@@ -47695,6 +47784,7 @@ export declare const mainChatRoomContract: {
|
|
47695
47784
|
accessToken?: string | undefined;
|
47696
47785
|
channelSecret?: string | undefined;
|
47697
47786
|
additionalCredentials?: any;
|
47787
|
+
senderId?: string | undefined;
|
47698
47788
|
vonageCredentials?: {
|
47699
47789
|
mobileNumber: string;
|
47700
47790
|
apiKey: string;
|
@@ -48087,6 +48177,7 @@ export declare const mainChatRoomContract: {
|
|
48087
48177
|
accessToken?: string | undefined;
|
48088
48178
|
channelSecret?: string | undefined;
|
48089
48179
|
additionalCredentials?: any;
|
48180
|
+
senderId?: string | undefined;
|
48090
48181
|
vonageCredentials?: {
|
48091
48182
|
mobileNumber: string;
|
48092
48183
|
apiKey: string;
|
@@ -48529,6 +48620,7 @@ export declare const mainChatRoomContract: {
|
|
48529
48620
|
accessToken: z.ZodOptional<z.ZodString>;
|
48530
48621
|
channelSecret: z.ZodOptional<z.ZodString>;
|
48531
48622
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
48623
|
+
senderId: z.ZodOptional<z.ZodString>;
|
48532
48624
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
48533
48625
|
mobileNumber: z.ZodString;
|
48534
48626
|
apiKey: z.ZodString;
|
@@ -48549,6 +48641,7 @@ export declare const mainChatRoomContract: {
|
|
48549
48641
|
accessToken?: string | undefined;
|
48550
48642
|
channelSecret?: string | undefined;
|
48551
48643
|
additionalCredentials?: any;
|
48644
|
+
senderId?: string | undefined;
|
48552
48645
|
vonageCredentials?: {
|
48553
48646
|
mobileNumber: string;
|
48554
48647
|
apiKey: string;
|
@@ -48561,6 +48654,7 @@ export declare const mainChatRoomContract: {
|
|
48561
48654
|
accessToken?: string | undefined;
|
48562
48655
|
channelSecret?: string | undefined;
|
48563
48656
|
additionalCredentials?: any;
|
48657
|
+
senderId?: string | undefined;
|
48564
48658
|
vonageCredentials?: {
|
48565
48659
|
mobileNumber: string;
|
48566
48660
|
apiKey: string;
|
@@ -48807,6 +48901,7 @@ export declare const mainChatRoomContract: {
|
|
48807
48901
|
accessToken?: string | undefined;
|
48808
48902
|
channelSecret?: string | undefined;
|
48809
48903
|
additionalCredentials?: any;
|
48904
|
+
senderId?: string | undefined;
|
48810
48905
|
vonageCredentials?: {
|
48811
48906
|
mobileNumber: string;
|
48812
48907
|
apiKey: string;
|
@@ -48884,6 +48979,7 @@ export declare const mainChatRoomContract: {
|
|
48884
48979
|
accessToken?: string | undefined;
|
48885
48980
|
channelSecret?: string | undefined;
|
48886
48981
|
additionalCredentials?: any;
|
48982
|
+
senderId?: string | undefined;
|
48887
48983
|
vonageCredentials?: {
|
48888
48984
|
mobileNumber: string;
|
48889
48985
|
apiKey: string;
|
@@ -50878,6 +50974,7 @@ export declare const mainChatRoomContract: {
|
|
50878
50974
|
accessToken?: string | undefined;
|
50879
50975
|
channelSecret?: string | undefined;
|
50880
50976
|
additionalCredentials?: any;
|
50977
|
+
senderId?: string | undefined;
|
50881
50978
|
vonageCredentials?: {
|
50882
50979
|
mobileNumber: string;
|
50883
50980
|
apiKey: string;
|
@@ -51266,6 +51363,7 @@ export declare const mainChatRoomContract: {
|
|
51266
51363
|
accessToken?: string | undefined;
|
51267
51364
|
channelSecret?: string | undefined;
|
51268
51365
|
additionalCredentials?: any;
|
51366
|
+
senderId?: string | undefined;
|
51269
51367
|
vonageCredentials?: {
|
51270
51368
|
mobileNumber: string;
|
51271
51369
|
apiKey: string;
|
@@ -51656,6 +51754,7 @@ export declare const mainChatRoomContract: {
|
|
51656
51754
|
accessToken?: string | undefined;
|
51657
51755
|
channelSecret?: string | undefined;
|
51658
51756
|
additionalCredentials?: any;
|
51757
|
+
senderId?: string | undefined;
|
51659
51758
|
vonageCredentials?: {
|
51660
51759
|
mobileNumber: string;
|
51661
51760
|
apiKey: string;
|
@@ -52050,6 +52149,7 @@ export declare const mainChatRoomContract: {
|
|
52050
52149
|
accessToken?: string | undefined;
|
52051
52150
|
channelSecret?: string | undefined;
|
52052
52151
|
additionalCredentials?: any;
|
52152
|
+
senderId?: string | undefined;
|
52053
52153
|
vonageCredentials?: {
|
52054
52154
|
mobileNumber: string;
|
52055
52155
|
apiKey: string;
|
@@ -54803,6 +54903,7 @@ export declare const mainChatContract: {
|
|
54803
54903
|
accessToken: z.ZodOptional<z.ZodString>;
|
54804
54904
|
channelSecret: z.ZodOptional<z.ZodString>;
|
54805
54905
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
54906
|
+
senderId: z.ZodOptional<z.ZodString>;
|
54806
54907
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
54807
54908
|
mobileNumber: z.ZodString;
|
54808
54909
|
apiKey: z.ZodString;
|
@@ -54823,6 +54924,7 @@ export declare const mainChatContract: {
|
|
54823
54924
|
accessToken?: string | undefined;
|
54824
54925
|
channelSecret?: string | undefined;
|
54825
54926
|
additionalCredentials?: any;
|
54927
|
+
senderId?: string | undefined;
|
54826
54928
|
vonageCredentials?: {
|
54827
54929
|
mobileNumber: string;
|
54828
54930
|
apiKey: string;
|
@@ -54835,6 +54937,7 @@ export declare const mainChatContract: {
|
|
54835
54937
|
accessToken?: string | undefined;
|
54836
54938
|
channelSecret?: string | undefined;
|
54837
54939
|
additionalCredentials?: any;
|
54940
|
+
senderId?: string | undefined;
|
54838
54941
|
vonageCredentials?: {
|
54839
54942
|
mobileNumber: string;
|
54840
54943
|
apiKey: string;
|
@@ -55081,6 +55184,7 @@ export declare const mainChatContract: {
|
|
55081
55184
|
accessToken?: string | undefined;
|
55082
55185
|
channelSecret?: string | undefined;
|
55083
55186
|
additionalCredentials?: any;
|
55187
|
+
senderId?: string | undefined;
|
55084
55188
|
vonageCredentials?: {
|
55085
55189
|
mobileNumber: string;
|
55086
55190
|
apiKey: string;
|
@@ -55158,6 +55262,7 @@ export declare const mainChatContract: {
|
|
55158
55262
|
accessToken?: string | undefined;
|
55159
55263
|
channelSecret?: string | undefined;
|
55160
55264
|
additionalCredentials?: any;
|
55265
|
+
senderId?: string | undefined;
|
55161
55266
|
vonageCredentials?: {
|
55162
55267
|
mobileNumber: string;
|
55163
55268
|
apiKey: string;
|
@@ -55683,6 +55788,7 @@ export declare const mainChatContract: {
|
|
55683
55788
|
accessToken?: string | undefined;
|
55684
55789
|
channelSecret?: string | undefined;
|
55685
55790
|
additionalCredentials?: any;
|
55791
|
+
senderId?: string | undefined;
|
55686
55792
|
vonageCredentials?: {
|
55687
55793
|
mobileNumber: string;
|
55688
55794
|
apiKey: string;
|
@@ -56071,6 +56177,7 @@ export declare const mainChatContract: {
|
|
56071
56177
|
accessToken?: string | undefined;
|
56072
56178
|
channelSecret?: string | undefined;
|
56073
56179
|
additionalCredentials?: any;
|
56180
|
+
senderId?: string | undefined;
|
56074
56181
|
vonageCredentials?: {
|
56075
56182
|
mobileNumber: string;
|
56076
56183
|
apiKey: string;
|
@@ -59175,6 +59282,7 @@ export declare const mainChatContract: {
|
|
59175
59282
|
accessToken: z.ZodOptional<z.ZodString>;
|
59176
59283
|
channelSecret: z.ZodOptional<z.ZodString>;
|
59177
59284
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
59285
|
+
senderId: z.ZodOptional<z.ZodString>;
|
59178
59286
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
59179
59287
|
mobileNumber: z.ZodString;
|
59180
59288
|
apiKey: z.ZodString;
|
@@ -59195,6 +59303,7 @@ export declare const mainChatContract: {
|
|
59195
59303
|
accessToken?: string | undefined;
|
59196
59304
|
channelSecret?: string | undefined;
|
59197
59305
|
additionalCredentials?: any;
|
59306
|
+
senderId?: string | undefined;
|
59198
59307
|
vonageCredentials?: {
|
59199
59308
|
mobileNumber: string;
|
59200
59309
|
apiKey: string;
|
@@ -59207,6 +59316,7 @@ export declare const mainChatContract: {
|
|
59207
59316
|
accessToken?: string | undefined;
|
59208
59317
|
channelSecret?: string | undefined;
|
59209
59318
|
additionalCredentials?: any;
|
59319
|
+
senderId?: string | undefined;
|
59210
59320
|
vonageCredentials?: {
|
59211
59321
|
mobileNumber: string;
|
59212
59322
|
apiKey: string;
|
@@ -59453,6 +59563,7 @@ export declare const mainChatContract: {
|
|
59453
59563
|
accessToken?: string | undefined;
|
59454
59564
|
channelSecret?: string | undefined;
|
59455
59565
|
additionalCredentials?: any;
|
59566
|
+
senderId?: string | undefined;
|
59456
59567
|
vonageCredentials?: {
|
59457
59568
|
mobileNumber: string;
|
59458
59569
|
apiKey: string;
|
@@ -59530,6 +59641,7 @@ export declare const mainChatContract: {
|
|
59530
59641
|
accessToken?: string | undefined;
|
59531
59642
|
channelSecret?: string | undefined;
|
59532
59643
|
additionalCredentials?: any;
|
59644
|
+
senderId?: string | undefined;
|
59533
59645
|
vonageCredentials?: {
|
59534
59646
|
mobileNumber: string;
|
59535
59647
|
apiKey: string;
|
@@ -60055,6 +60167,7 @@ export declare const mainChatContract: {
|
|
60055
60167
|
accessToken?: string | undefined;
|
60056
60168
|
channelSecret?: string | undefined;
|
60057
60169
|
additionalCredentials?: any;
|
60170
|
+
senderId?: string | undefined;
|
60058
60171
|
vonageCredentials?: {
|
60059
60172
|
mobileNumber: string;
|
60060
60173
|
apiKey: string;
|
@@ -60443,6 +60556,7 @@ export declare const mainChatContract: {
|
|
60443
60556
|
accessToken?: string | undefined;
|
60444
60557
|
channelSecret?: string | undefined;
|
60445
60558
|
additionalCredentials?: any;
|
60559
|
+
senderId?: string | undefined;
|
60446
60560
|
vonageCredentials?: {
|
60447
60561
|
mobileNumber: string;
|
60448
60562
|
apiKey: string;
|
@@ -62604,6 +62718,7 @@ export declare const mainChatContract: {
|
|
62604
62718
|
accessToken?: string | undefined;
|
62605
62719
|
channelSecret?: string | undefined;
|
62606
62720
|
additionalCredentials?: any;
|
62721
|
+
senderId?: string | undefined;
|
62607
62722
|
vonageCredentials?: {
|
62608
62723
|
mobileNumber: string;
|
62609
62724
|
apiKey: string;
|
@@ -63329,6 +63444,7 @@ export declare const mainChatContract: {
|
|
63329
63444
|
accessToken?: string | undefined;
|
63330
63445
|
channelSecret?: string | undefined;
|
63331
63446
|
additionalCredentials?: any;
|
63447
|
+
senderId?: string | undefined;
|
63332
63448
|
vonageCredentials?: {
|
63333
63449
|
mobileNumber: string;
|
63334
63450
|
apiKey: string;
|
@@ -64055,6 +64171,7 @@ export declare const mainChatContract: {
|
|
64055
64171
|
accessToken?: string | undefined;
|
64056
64172
|
channelSecret?: string | undefined;
|
64057
64173
|
additionalCredentials?: any;
|
64174
|
+
senderId?: string | undefined;
|
64058
64175
|
vonageCredentials?: {
|
64059
64176
|
mobileNumber: string;
|
64060
64177
|
apiKey: string;
|
@@ -64780,6 +64897,7 @@ export declare const mainChatContract: {
|
|
64780
64897
|
accessToken?: string | undefined;
|
64781
64898
|
channelSecret?: string | undefined;
|
64782
64899
|
additionalCredentials?: any;
|
64900
|
+
senderId?: string | undefined;
|
64783
64901
|
vonageCredentials?: {
|
64784
64902
|
mobileNumber: string;
|
64785
64903
|
apiKey: string;
|
@@ -65506,6 +65624,7 @@ export declare const mainChatContract: {
|
|
65506
65624
|
accessToken?: string | undefined;
|
65507
65625
|
channelSecret?: string | undefined;
|
65508
65626
|
additionalCredentials?: any;
|
65627
|
+
senderId?: string | undefined;
|
65509
65628
|
vonageCredentials?: {
|
65510
65629
|
mobileNumber: string;
|
65511
65630
|
apiKey: string;
|
@@ -66231,6 +66350,7 @@ export declare const mainChatContract: {
|
|
66231
66350
|
accessToken?: string | undefined;
|
66232
66351
|
channelSecret?: string | undefined;
|
66233
66352
|
additionalCredentials?: any;
|
66353
|
+
senderId?: string | undefined;
|
66234
66354
|
vonageCredentials?: {
|
66235
66355
|
mobileNumber: string;
|
66236
66356
|
apiKey: string;
|
@@ -66959,6 +67079,7 @@ export declare const mainChatContract: {
|
|
66959
67079
|
accessToken?: string | undefined;
|
66960
67080
|
channelSecret?: string | undefined;
|
66961
67081
|
additionalCredentials?: any;
|
67082
|
+
senderId?: string | undefined;
|
66962
67083
|
vonageCredentials?: {
|
66963
67084
|
mobileNumber: string;
|
66964
67085
|
apiKey: string;
|
@@ -67684,6 +67805,7 @@ export declare const mainChatContract: {
|
|
67684
67805
|
accessToken?: string | undefined;
|
67685
67806
|
channelSecret?: string | undefined;
|
67686
67807
|
additionalCredentials?: any;
|
67808
|
+
senderId?: string | undefined;
|
67687
67809
|
vonageCredentials?: {
|
67688
67810
|
mobileNumber: string;
|
67689
67811
|
apiKey: string;
|
@@ -68413,6 +68535,7 @@ export declare const mainChatContract: {
|
|
68413
68535
|
accessToken?: string | undefined;
|
68414
68536
|
channelSecret?: string | undefined;
|
68415
68537
|
additionalCredentials?: any;
|
68538
|
+
senderId?: string | undefined;
|
68416
68539
|
vonageCredentials?: {
|
68417
68540
|
mobileNumber: string;
|
68418
68541
|
apiKey: string;
|
@@ -69138,6 +69261,7 @@ export declare const mainChatContract: {
|
|
69138
69261
|
accessToken?: string | undefined;
|
69139
69262
|
channelSecret?: string | undefined;
|
69140
69263
|
additionalCredentials?: any;
|
69264
|
+
senderId?: string | undefined;
|
69141
69265
|
vonageCredentials?: {
|
69142
69266
|
mobileNumber: string;
|
69143
69267
|
apiKey: string;
|
@@ -71332,6 +71456,7 @@ export declare const mainChatContract: {
|
|
71332
71456
|
accessToken: z.ZodOptional<z.ZodString>;
|
71333
71457
|
channelSecret: z.ZodOptional<z.ZodString>;
|
71334
71458
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
71459
|
+
senderId: z.ZodOptional<z.ZodString>;
|
71335
71460
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
71336
71461
|
mobileNumber: z.ZodString;
|
71337
71462
|
apiKey: z.ZodString;
|
@@ -71352,6 +71477,7 @@ export declare const mainChatContract: {
|
|
71352
71477
|
accessToken?: string | undefined;
|
71353
71478
|
channelSecret?: string | undefined;
|
71354
71479
|
additionalCredentials?: any;
|
71480
|
+
senderId?: string | undefined;
|
71355
71481
|
vonageCredentials?: {
|
71356
71482
|
mobileNumber: string;
|
71357
71483
|
apiKey: string;
|
@@ -71364,6 +71490,7 @@ export declare const mainChatContract: {
|
|
71364
71490
|
accessToken?: string | undefined;
|
71365
71491
|
channelSecret?: string | undefined;
|
71366
71492
|
additionalCredentials?: any;
|
71493
|
+
senderId?: string | undefined;
|
71367
71494
|
vonageCredentials?: {
|
71368
71495
|
mobileNumber: string;
|
71369
71496
|
apiKey: string;
|
@@ -71610,6 +71737,7 @@ export declare const mainChatContract: {
|
|
71610
71737
|
accessToken?: string | undefined;
|
71611
71738
|
channelSecret?: string | undefined;
|
71612
71739
|
additionalCredentials?: any;
|
71740
|
+
senderId?: string | undefined;
|
71613
71741
|
vonageCredentials?: {
|
71614
71742
|
mobileNumber: string;
|
71615
71743
|
apiKey: string;
|
@@ -71687,6 +71815,7 @@ export declare const mainChatContract: {
|
|
71687
71815
|
accessToken?: string | undefined;
|
71688
71816
|
channelSecret?: string | undefined;
|
71689
71817
|
additionalCredentials?: any;
|
71818
|
+
senderId?: string | undefined;
|
71690
71819
|
vonageCredentials?: {
|
71691
71820
|
mobileNumber: string;
|
71692
71821
|
apiKey: string;
|
@@ -72212,6 +72341,7 @@ export declare const mainChatContract: {
|
|
72212
72341
|
accessToken?: string | undefined;
|
72213
72342
|
channelSecret?: string | undefined;
|
72214
72343
|
additionalCredentials?: any;
|
72344
|
+
senderId?: string | undefined;
|
72215
72345
|
vonageCredentials?: {
|
72216
72346
|
mobileNumber: string;
|
72217
72347
|
apiKey: string;
|
@@ -72600,6 +72730,7 @@ export declare const mainChatContract: {
|
|
72600
72730
|
accessToken?: string | undefined;
|
72601
72731
|
channelSecret?: string | undefined;
|
72602
72732
|
additionalCredentials?: any;
|
72733
|
+
senderId?: string | undefined;
|
72603
72734
|
vonageCredentials?: {
|
72604
72735
|
mobileNumber: string;
|
72605
72736
|
apiKey: string;
|
@@ -74761,6 +74892,7 @@ export declare const mainChatContract: {
|
|
74761
74892
|
accessToken?: string | undefined;
|
74762
74893
|
channelSecret?: string | undefined;
|
74763
74894
|
additionalCredentials?: any;
|
74895
|
+
senderId?: string | undefined;
|
74764
74896
|
vonageCredentials?: {
|
74765
74897
|
mobileNumber: string;
|
74766
74898
|
apiKey: string;
|
@@ -75486,6 +75618,7 @@ export declare const mainChatContract: {
|
|
75486
75618
|
accessToken?: string | undefined;
|
75487
75619
|
channelSecret?: string | undefined;
|
75488
75620
|
additionalCredentials?: any;
|
75621
|
+
senderId?: string | undefined;
|
75489
75622
|
vonageCredentials?: {
|
75490
75623
|
mobileNumber: string;
|
75491
75624
|
apiKey: string;
|
@@ -76213,6 +76346,7 @@ export declare const mainChatContract: {
|
|
76213
76346
|
accessToken?: string | undefined;
|
76214
76347
|
channelSecret?: string | undefined;
|
76215
76348
|
additionalCredentials?: any;
|
76349
|
+
senderId?: string | undefined;
|
76216
76350
|
vonageCredentials?: {
|
76217
76351
|
mobileNumber: string;
|
76218
76352
|
apiKey: string;
|
@@ -76941,6 +77075,7 @@ export declare const mainChatContract: {
|
|
76941
77075
|
accessToken?: string | undefined;
|
76942
77076
|
channelSecret?: string | undefined;
|
76943
77077
|
additionalCredentials?: any;
|
77078
|
+
senderId?: string | undefined;
|
76944
77079
|
vonageCredentials?: {
|
76945
77080
|
mobileNumber: string;
|
76946
77081
|
apiKey: string;
|
@@ -79650,6 +79785,7 @@ export declare const mainChatContract: {
|
|
79650
79785
|
accessToken: z.ZodOptional<z.ZodString>;
|
79651
79786
|
channelSecret: z.ZodOptional<z.ZodString>;
|
79652
79787
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
79788
|
+
senderId: z.ZodOptional<z.ZodString>;
|
79653
79789
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
79654
79790
|
mobileNumber: z.ZodString;
|
79655
79791
|
apiKey: z.ZodString;
|
@@ -79670,6 +79806,7 @@ export declare const mainChatContract: {
|
|
79670
79806
|
accessToken?: string | undefined;
|
79671
79807
|
channelSecret?: string | undefined;
|
79672
79808
|
additionalCredentials?: any;
|
79809
|
+
senderId?: string | undefined;
|
79673
79810
|
vonageCredentials?: {
|
79674
79811
|
mobileNumber: string;
|
79675
79812
|
apiKey: string;
|
@@ -79682,6 +79819,7 @@ export declare const mainChatContract: {
|
|
79682
79819
|
accessToken?: string | undefined;
|
79683
79820
|
channelSecret?: string | undefined;
|
79684
79821
|
additionalCredentials?: any;
|
79822
|
+
senderId?: string | undefined;
|
79685
79823
|
vonageCredentials?: {
|
79686
79824
|
mobileNumber: string;
|
79687
79825
|
apiKey: string;
|
@@ -79928,6 +80066,7 @@ export declare const mainChatContract: {
|
|
79928
80066
|
accessToken?: string | undefined;
|
79929
80067
|
channelSecret?: string | undefined;
|
79930
80068
|
additionalCredentials?: any;
|
80069
|
+
senderId?: string | undefined;
|
79931
80070
|
vonageCredentials?: {
|
79932
80071
|
mobileNumber: string;
|
79933
80072
|
apiKey: string;
|
@@ -80005,6 +80144,7 @@ export declare const mainChatContract: {
|
|
80005
80144
|
accessToken?: string | undefined;
|
80006
80145
|
channelSecret?: string | undefined;
|
80007
80146
|
additionalCredentials?: any;
|
80147
|
+
senderId?: string | undefined;
|
80008
80148
|
vonageCredentials?: {
|
80009
80149
|
mobileNumber: string;
|
80010
80150
|
apiKey: string;
|
@@ -80530,6 +80670,7 @@ export declare const mainChatContract: {
|
|
80530
80670
|
accessToken?: string | undefined;
|
80531
80671
|
channelSecret?: string | undefined;
|
80532
80672
|
additionalCredentials?: any;
|
80673
|
+
senderId?: string | undefined;
|
80533
80674
|
vonageCredentials?: {
|
80534
80675
|
mobileNumber: string;
|
80535
80676
|
apiKey: string;
|
@@ -80918,6 +81059,7 @@ export declare const mainChatContract: {
|
|
80918
81059
|
accessToken?: string | undefined;
|
80919
81060
|
channelSecret?: string | undefined;
|
80920
81061
|
additionalCredentials?: any;
|
81062
|
+
senderId?: string | undefined;
|
80921
81063
|
vonageCredentials?: {
|
80922
81064
|
mobileNumber: string;
|
80923
81065
|
apiKey: string;
|
@@ -82549,6 +82691,7 @@ export declare const mainChatContract: {
|
|
82549
82691
|
accessToken: z.ZodOptional<z.ZodString>;
|
82550
82692
|
channelSecret: z.ZodOptional<z.ZodString>;
|
82551
82693
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
82694
|
+
senderId: z.ZodOptional<z.ZodString>;
|
82552
82695
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
82553
82696
|
mobileNumber: z.ZodString;
|
82554
82697
|
apiKey: z.ZodString;
|
@@ -82569,6 +82712,7 @@ export declare const mainChatContract: {
|
|
82569
82712
|
accessToken?: string | undefined;
|
82570
82713
|
channelSecret?: string | undefined;
|
82571
82714
|
additionalCredentials?: any;
|
82715
|
+
senderId?: string | undefined;
|
82572
82716
|
vonageCredentials?: {
|
82573
82717
|
mobileNumber: string;
|
82574
82718
|
apiKey: string;
|
@@ -82581,6 +82725,7 @@ export declare const mainChatContract: {
|
|
82581
82725
|
accessToken?: string | undefined;
|
82582
82726
|
channelSecret?: string | undefined;
|
82583
82727
|
additionalCredentials?: any;
|
82728
|
+
senderId?: string | undefined;
|
82584
82729
|
vonageCredentials?: {
|
82585
82730
|
mobileNumber: string;
|
82586
82731
|
apiKey: string;
|
@@ -82827,6 +82972,7 @@ export declare const mainChatContract: {
|
|
82827
82972
|
accessToken?: string | undefined;
|
82828
82973
|
channelSecret?: string | undefined;
|
82829
82974
|
additionalCredentials?: any;
|
82975
|
+
senderId?: string | undefined;
|
82830
82976
|
vonageCredentials?: {
|
82831
82977
|
mobileNumber: string;
|
82832
82978
|
apiKey: string;
|
@@ -82904,6 +83050,7 @@ export declare const mainChatContract: {
|
|
82904
83050
|
accessToken?: string | undefined;
|
82905
83051
|
channelSecret?: string | undefined;
|
82906
83052
|
additionalCredentials?: any;
|
83053
|
+
senderId?: string | undefined;
|
82907
83054
|
vonageCredentials?: {
|
82908
83055
|
mobileNumber: string;
|
82909
83056
|
apiKey: string;
|
@@ -84238,6 +84385,7 @@ export declare const mainChatContract: {
|
|
84238
84385
|
accessToken?: string | undefined;
|
84239
84386
|
channelSecret?: string | undefined;
|
84240
84387
|
additionalCredentials?: any;
|
84388
|
+
senderId?: string | undefined;
|
84241
84389
|
vonageCredentials?: {
|
84242
84390
|
mobileNumber: string;
|
84243
84391
|
apiKey: string;
|
@@ -84502,6 +84650,7 @@ export declare const mainChatContract: {
|
|
84502
84650
|
accessToken?: string | undefined;
|
84503
84651
|
channelSecret?: string | undefined;
|
84504
84652
|
additionalCredentials?: any;
|
84653
|
+
senderId?: string | undefined;
|
84505
84654
|
vonageCredentials?: {
|
84506
84655
|
mobileNumber: string;
|
84507
84656
|
apiKey: string;
|
@@ -84876,6 +85025,7 @@ export declare const mainChatContract: {
|
|
84876
85025
|
accessToken?: string | undefined;
|
84877
85026
|
channelSecret?: string | undefined;
|
84878
85027
|
additionalCredentials?: any;
|
85028
|
+
senderId?: string | undefined;
|
84879
85029
|
vonageCredentials?: {
|
84880
85030
|
mobileNumber: string;
|
84881
85031
|
apiKey: string;
|
@@ -85492,6 +85642,7 @@ export declare const mainChatContract: {
|
|
85492
85642
|
accessToken?: string | undefined;
|
85493
85643
|
channelSecret?: string | undefined;
|
85494
85644
|
additionalCredentials?: any;
|
85645
|
+
senderId?: string | undefined;
|
85495
85646
|
vonageCredentials?: {
|
85496
85647
|
mobileNumber: string;
|
85497
85648
|
apiKey: string;
|
@@ -85869,6 +86020,7 @@ export declare const mainChatContract: {
|
|
85869
86020
|
accessToken?: string | undefined;
|
85870
86021
|
channelSecret?: string | undefined;
|
85871
86022
|
additionalCredentials?: any;
|
86023
|
+
senderId?: string | undefined;
|
85872
86024
|
vonageCredentials?: {
|
85873
86025
|
mobileNumber: string;
|
85874
86026
|
apiKey: string;
|
@@ -86485,6 +86637,7 @@ export declare const mainChatContract: {
|
|
86485
86637
|
accessToken?: string | undefined;
|
86486
86638
|
channelSecret?: string | undefined;
|
86487
86639
|
additionalCredentials?: any;
|
86640
|
+
senderId?: string | undefined;
|
86488
86641
|
vonageCredentials?: {
|
86489
86642
|
mobileNumber: string;
|
86490
86643
|
apiKey: string;
|
@@ -86864,6 +87017,7 @@ export declare const mainChatContract: {
|
|
86864
87017
|
accessToken?: string | undefined;
|
86865
87018
|
channelSecret?: string | undefined;
|
86866
87019
|
additionalCredentials?: any;
|
87020
|
+
senderId?: string | undefined;
|
86867
87021
|
vonageCredentials?: {
|
86868
87022
|
mobileNumber: string;
|
86869
87023
|
apiKey: string;
|
@@ -87480,6 +87634,7 @@ export declare const mainChatContract: {
|
|
87480
87634
|
accessToken?: string | undefined;
|
87481
87635
|
channelSecret?: string | undefined;
|
87482
87636
|
additionalCredentials?: any;
|
87637
|
+
senderId?: string | undefined;
|
87483
87638
|
vonageCredentials?: {
|
87484
87639
|
mobileNumber: string;
|
87485
87640
|
apiKey: string;
|
@@ -87863,6 +88018,7 @@ export declare const mainChatContract: {
|
|
87863
88018
|
accessToken?: string | undefined;
|
87864
88019
|
channelSecret?: string | undefined;
|
87865
88020
|
additionalCredentials?: any;
|
88021
|
+
senderId?: string | undefined;
|
87866
88022
|
vonageCredentials?: {
|
87867
88023
|
mobileNumber: string;
|
87868
88024
|
apiKey: string;
|
@@ -88479,6 +88635,7 @@ export declare const mainChatContract: {
|
|
88479
88635
|
accessToken?: string | undefined;
|
88480
88636
|
channelSecret?: string | undefined;
|
88481
88637
|
additionalCredentials?: any;
|
88638
|
+
senderId?: string | undefined;
|
88482
88639
|
vonageCredentials?: {
|
88483
88640
|
mobileNumber: string;
|
88484
88641
|
apiKey: string;
|
@@ -90262,6 +90419,7 @@ export declare const mainChatContract: {
|
|
90262
90419
|
accessToken: z.ZodOptional<z.ZodString>;
|
90263
90420
|
channelSecret: z.ZodOptional<z.ZodString>;
|
90264
90421
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
90422
|
+
senderId: z.ZodOptional<z.ZodString>;
|
90265
90423
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
90266
90424
|
mobileNumber: z.ZodString;
|
90267
90425
|
apiKey: z.ZodString;
|
@@ -90282,6 +90440,7 @@ export declare const mainChatContract: {
|
|
90282
90440
|
accessToken?: string | undefined;
|
90283
90441
|
channelSecret?: string | undefined;
|
90284
90442
|
additionalCredentials?: any;
|
90443
|
+
senderId?: string | undefined;
|
90285
90444
|
vonageCredentials?: {
|
90286
90445
|
mobileNumber: string;
|
90287
90446
|
apiKey: string;
|
@@ -90294,6 +90453,7 @@ export declare const mainChatContract: {
|
|
90294
90453
|
accessToken?: string | undefined;
|
90295
90454
|
channelSecret?: string | undefined;
|
90296
90455
|
additionalCredentials?: any;
|
90456
|
+
senderId?: string | undefined;
|
90297
90457
|
vonageCredentials?: {
|
90298
90458
|
mobileNumber: string;
|
90299
90459
|
apiKey: string;
|
@@ -90540,6 +90700,7 @@ export declare const mainChatContract: {
|
|
90540
90700
|
accessToken?: string | undefined;
|
90541
90701
|
channelSecret?: string | undefined;
|
90542
90702
|
additionalCredentials?: any;
|
90703
|
+
senderId?: string | undefined;
|
90543
90704
|
vonageCredentials?: {
|
90544
90705
|
mobileNumber: string;
|
90545
90706
|
apiKey: string;
|
@@ -90617,6 +90778,7 @@ export declare const mainChatContract: {
|
|
90617
90778
|
accessToken?: string | undefined;
|
90618
90779
|
channelSecret?: string | undefined;
|
90619
90780
|
additionalCredentials?: any;
|
90781
|
+
senderId?: string | undefined;
|
90620
90782
|
vonageCredentials?: {
|
90621
90783
|
mobileNumber: string;
|
90622
90784
|
apiKey: string;
|
@@ -91142,6 +91304,7 @@ export declare const mainChatContract: {
|
|
91142
91304
|
accessToken?: string | undefined;
|
91143
91305
|
channelSecret?: string | undefined;
|
91144
91306
|
additionalCredentials?: any;
|
91307
|
+
senderId?: string | undefined;
|
91145
91308
|
vonageCredentials?: {
|
91146
91309
|
mobileNumber: string;
|
91147
91310
|
apiKey: string;
|
@@ -91530,6 +91693,7 @@ export declare const mainChatContract: {
|
|
91530
91693
|
accessToken?: string | undefined;
|
91531
91694
|
channelSecret?: string | undefined;
|
91532
91695
|
additionalCredentials?: any;
|
91696
|
+
senderId?: string | undefined;
|
91533
91697
|
vonageCredentials?: {
|
91534
91698
|
mobileNumber: string;
|
91535
91699
|
apiKey: string;
|
@@ -91920,6 +92084,7 @@ export declare const mainChatContract: {
|
|
91920
92084
|
accessToken?: string | undefined;
|
91921
92085
|
channelSecret?: string | undefined;
|
91922
92086
|
additionalCredentials?: any;
|
92087
|
+
senderId?: string | undefined;
|
91923
92088
|
vonageCredentials?: {
|
91924
92089
|
mobileNumber: string;
|
91925
92090
|
apiKey: string;
|
@@ -92311,6 +92476,7 @@ export declare const mainChatContract: {
|
|
92311
92476
|
accessToken?: string | undefined;
|
92312
92477
|
channelSecret?: string | undefined;
|
92313
92478
|
additionalCredentials?: any;
|
92479
|
+
senderId?: string | undefined;
|
92314
92480
|
vonageCredentials?: {
|
92315
92481
|
mobileNumber: string;
|
92316
92482
|
apiKey: string;
|
@@ -94222,6 +94388,7 @@ export declare const mainChatContract: {
|
|
94222
94388
|
accessToken: z.ZodOptional<z.ZodString>;
|
94223
94389
|
channelSecret: z.ZodOptional<z.ZodString>;
|
94224
94390
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
94391
|
+
senderId: z.ZodOptional<z.ZodString>;
|
94225
94392
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
94226
94393
|
mobileNumber: z.ZodString;
|
94227
94394
|
apiKey: z.ZodString;
|
@@ -94242,6 +94409,7 @@ export declare const mainChatContract: {
|
|
94242
94409
|
accessToken?: string | undefined;
|
94243
94410
|
channelSecret?: string | undefined;
|
94244
94411
|
additionalCredentials?: any;
|
94412
|
+
senderId?: string | undefined;
|
94245
94413
|
vonageCredentials?: {
|
94246
94414
|
mobileNumber: string;
|
94247
94415
|
apiKey: string;
|
@@ -94254,6 +94422,7 @@ export declare const mainChatContract: {
|
|
94254
94422
|
accessToken?: string | undefined;
|
94255
94423
|
channelSecret?: string | undefined;
|
94256
94424
|
additionalCredentials?: any;
|
94425
|
+
senderId?: string | undefined;
|
94257
94426
|
vonageCredentials?: {
|
94258
94427
|
mobileNumber: string;
|
94259
94428
|
apiKey: string;
|
@@ -94500,6 +94669,7 @@ export declare const mainChatContract: {
|
|
94500
94669
|
accessToken?: string | undefined;
|
94501
94670
|
channelSecret?: string | undefined;
|
94502
94671
|
additionalCredentials?: any;
|
94672
|
+
senderId?: string | undefined;
|
94503
94673
|
vonageCredentials?: {
|
94504
94674
|
mobileNumber: string;
|
94505
94675
|
apiKey: string;
|
@@ -94577,6 +94747,7 @@ export declare const mainChatContract: {
|
|
94577
94747
|
accessToken?: string | undefined;
|
94578
94748
|
channelSecret?: string | undefined;
|
94579
94749
|
additionalCredentials?: any;
|
94750
|
+
senderId?: string | undefined;
|
94580
94751
|
vonageCredentials?: {
|
94581
94752
|
mobileNumber: string;
|
94582
94753
|
apiKey: string;
|
@@ -95102,6 +95273,7 @@ export declare const mainChatContract: {
|
|
95102
95273
|
accessToken?: string | undefined;
|
95103
95274
|
channelSecret?: string | undefined;
|
95104
95275
|
additionalCredentials?: any;
|
95276
|
+
senderId?: string | undefined;
|
95105
95277
|
vonageCredentials?: {
|
95106
95278
|
mobileNumber: string;
|
95107
95279
|
apiKey: string;
|
@@ -95490,6 +95662,7 @@ export declare const mainChatContract: {
|
|
95490
95662
|
accessToken?: string | undefined;
|
95491
95663
|
channelSecret?: string | undefined;
|
95492
95664
|
additionalCredentials?: any;
|
95665
|
+
senderId?: string | undefined;
|
95493
95666
|
vonageCredentials?: {
|
95494
95667
|
mobileNumber: string;
|
95495
95668
|
apiKey: string;
|
@@ -95880,6 +96053,7 @@ export declare const mainChatContract: {
|
|
95880
96053
|
accessToken?: string | undefined;
|
95881
96054
|
channelSecret?: string | undefined;
|
95882
96055
|
additionalCredentials?: any;
|
96056
|
+
senderId?: string | undefined;
|
95883
96057
|
vonageCredentials?: {
|
95884
96058
|
mobileNumber: string;
|
95885
96059
|
apiKey: string;
|
@@ -96271,6 +96445,7 @@ export declare const mainChatContract: {
|
|
96271
96445
|
accessToken?: string | undefined;
|
96272
96446
|
channelSecret?: string | undefined;
|
96273
96447
|
additionalCredentials?: any;
|
96448
|
+
senderId?: string | undefined;
|
96274
96449
|
vonageCredentials?: {
|
96275
96450
|
mobileNumber: string;
|
96276
96451
|
apiKey: string;
|
@@ -99243,6 +99418,7 @@ export declare const mainChatContract: {
|
|
99243
99418
|
accessToken: z.ZodOptional<z.ZodString>;
|
99244
99419
|
channelSecret: z.ZodOptional<z.ZodString>;
|
99245
99420
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
99421
|
+
senderId: z.ZodOptional<z.ZodString>;
|
99246
99422
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
99247
99423
|
mobileNumber: z.ZodString;
|
99248
99424
|
apiKey: z.ZodString;
|
@@ -99263,6 +99439,7 @@ export declare const mainChatContract: {
|
|
99263
99439
|
accessToken?: string | undefined;
|
99264
99440
|
channelSecret?: string | undefined;
|
99265
99441
|
additionalCredentials?: any;
|
99442
|
+
senderId?: string | undefined;
|
99266
99443
|
vonageCredentials?: {
|
99267
99444
|
mobileNumber: string;
|
99268
99445
|
apiKey: string;
|
@@ -99275,6 +99452,7 @@ export declare const mainChatContract: {
|
|
99275
99452
|
accessToken?: string | undefined;
|
99276
99453
|
channelSecret?: string | undefined;
|
99277
99454
|
additionalCredentials?: any;
|
99455
|
+
senderId?: string | undefined;
|
99278
99456
|
vonageCredentials?: {
|
99279
99457
|
mobileNumber: string;
|
99280
99458
|
apiKey: string;
|
@@ -99521,6 +99699,7 @@ export declare const mainChatContract: {
|
|
99521
99699
|
accessToken?: string | undefined;
|
99522
99700
|
channelSecret?: string | undefined;
|
99523
99701
|
additionalCredentials?: any;
|
99702
|
+
senderId?: string | undefined;
|
99524
99703
|
vonageCredentials?: {
|
99525
99704
|
mobileNumber: string;
|
99526
99705
|
apiKey: string;
|
@@ -99598,6 +99777,7 @@ export declare const mainChatContract: {
|
|
99598
99777
|
accessToken?: string | undefined;
|
99599
99778
|
channelSecret?: string | undefined;
|
99600
99779
|
additionalCredentials?: any;
|
99780
|
+
senderId?: string | undefined;
|
99601
99781
|
vonageCredentials?: {
|
99602
99782
|
mobileNumber: string;
|
99603
99783
|
apiKey: string;
|
@@ -100123,6 +100303,7 @@ export declare const mainChatContract: {
|
|
100123
100303
|
accessToken?: string | undefined;
|
100124
100304
|
channelSecret?: string | undefined;
|
100125
100305
|
additionalCredentials?: any;
|
100306
|
+
senderId?: string | undefined;
|
100126
100307
|
vonageCredentials?: {
|
100127
100308
|
mobileNumber: string;
|
100128
100309
|
apiKey: string;
|
@@ -100511,6 +100692,7 @@ export declare const mainChatContract: {
|
|
100511
100692
|
accessToken?: string | undefined;
|
100512
100693
|
channelSecret?: string | undefined;
|
100513
100694
|
additionalCredentials?: any;
|
100695
|
+
senderId?: string | undefined;
|
100514
100696
|
vonageCredentials?: {
|
100515
100697
|
mobileNumber: string;
|
100516
100698
|
apiKey: string;
|
@@ -100901,6 +101083,7 @@ export declare const mainChatContract: {
|
|
100901
101083
|
accessToken?: string | undefined;
|
100902
101084
|
channelSecret?: string | undefined;
|
100903
101085
|
additionalCredentials?: any;
|
101086
|
+
senderId?: string | undefined;
|
100904
101087
|
vonageCredentials?: {
|
100905
101088
|
mobileNumber: string;
|
100906
101089
|
apiKey: string;
|
@@ -101292,6 +101475,7 @@ export declare const mainChatContract: {
|
|
101292
101475
|
accessToken?: string | undefined;
|
101293
101476
|
channelSecret?: string | undefined;
|
101294
101477
|
additionalCredentials?: any;
|
101478
|
+
senderId?: string | undefined;
|
101295
101479
|
vonageCredentials?: {
|
101296
101480
|
mobileNumber: string;
|
101297
101481
|
apiKey: string;
|
@@ -104042,6 +104226,7 @@ export declare const mainChatMessageContract: {
|
|
104042
104226
|
accessToken: z.ZodOptional<z.ZodString>;
|
104043
104227
|
channelSecret: z.ZodOptional<z.ZodString>;
|
104044
104228
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
104229
|
+
senderId: z.ZodOptional<z.ZodString>;
|
104045
104230
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
104046
104231
|
mobileNumber: z.ZodString;
|
104047
104232
|
apiKey: z.ZodString;
|
@@ -104062,6 +104247,7 @@ export declare const mainChatMessageContract: {
|
|
104062
104247
|
accessToken?: string | undefined;
|
104063
104248
|
channelSecret?: string | undefined;
|
104064
104249
|
additionalCredentials?: any;
|
104250
|
+
senderId?: string | undefined;
|
104065
104251
|
vonageCredentials?: {
|
104066
104252
|
mobileNumber: string;
|
104067
104253
|
apiKey: string;
|
@@ -104074,6 +104260,7 @@ export declare const mainChatMessageContract: {
|
|
104074
104260
|
accessToken?: string | undefined;
|
104075
104261
|
channelSecret?: string | undefined;
|
104076
104262
|
additionalCredentials?: any;
|
104263
|
+
senderId?: string | undefined;
|
104077
104264
|
vonageCredentials?: {
|
104078
104265
|
mobileNumber: string;
|
104079
104266
|
apiKey: string;
|
@@ -104320,6 +104507,7 @@ export declare const mainChatMessageContract: {
|
|
104320
104507
|
accessToken?: string | undefined;
|
104321
104508
|
channelSecret?: string | undefined;
|
104322
104509
|
additionalCredentials?: any;
|
104510
|
+
senderId?: string | undefined;
|
104323
104511
|
vonageCredentials?: {
|
104324
104512
|
mobileNumber: string;
|
104325
104513
|
apiKey: string;
|
@@ -104397,6 +104585,7 @@ export declare const mainChatMessageContract: {
|
|
104397
104585
|
accessToken?: string | undefined;
|
104398
104586
|
channelSecret?: string | undefined;
|
104399
104587
|
additionalCredentials?: any;
|
104588
|
+
senderId?: string | undefined;
|
104400
104589
|
vonageCredentials?: {
|
104401
104590
|
mobileNumber: string;
|
104402
104591
|
apiKey: string;
|
@@ -104922,6 +105111,7 @@ export declare const mainChatMessageContract: {
|
|
104922
105111
|
accessToken?: string | undefined;
|
104923
105112
|
channelSecret?: string | undefined;
|
104924
105113
|
additionalCredentials?: any;
|
105114
|
+
senderId?: string | undefined;
|
104925
105115
|
vonageCredentials?: {
|
104926
105116
|
mobileNumber: string;
|
104927
105117
|
apiKey: string;
|
@@ -105310,6 +105500,7 @@ export declare const mainChatMessageContract: {
|
|
105310
105500
|
accessToken?: string | undefined;
|
105311
105501
|
channelSecret?: string | undefined;
|
105312
105502
|
additionalCredentials?: any;
|
105503
|
+
senderId?: string | undefined;
|
105313
105504
|
vonageCredentials?: {
|
105314
105505
|
mobileNumber: string;
|
105315
105506
|
apiKey: string;
|
@@ -108414,6 +108605,7 @@ export declare const mainChatMessageContract: {
|
|
108414
108605
|
accessToken: z.ZodOptional<z.ZodString>;
|
108415
108606
|
channelSecret: z.ZodOptional<z.ZodString>;
|
108416
108607
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
108608
|
+
senderId: z.ZodOptional<z.ZodString>;
|
108417
108609
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
108418
108610
|
mobileNumber: z.ZodString;
|
108419
108611
|
apiKey: z.ZodString;
|
@@ -108434,6 +108626,7 @@ export declare const mainChatMessageContract: {
|
|
108434
108626
|
accessToken?: string | undefined;
|
108435
108627
|
channelSecret?: string | undefined;
|
108436
108628
|
additionalCredentials?: any;
|
108629
|
+
senderId?: string | undefined;
|
108437
108630
|
vonageCredentials?: {
|
108438
108631
|
mobileNumber: string;
|
108439
108632
|
apiKey: string;
|
@@ -108446,6 +108639,7 @@ export declare const mainChatMessageContract: {
|
|
108446
108639
|
accessToken?: string | undefined;
|
108447
108640
|
channelSecret?: string | undefined;
|
108448
108641
|
additionalCredentials?: any;
|
108642
|
+
senderId?: string | undefined;
|
108449
108643
|
vonageCredentials?: {
|
108450
108644
|
mobileNumber: string;
|
108451
108645
|
apiKey: string;
|
@@ -108692,6 +108886,7 @@ export declare const mainChatMessageContract: {
|
|
108692
108886
|
accessToken?: string | undefined;
|
108693
108887
|
channelSecret?: string | undefined;
|
108694
108888
|
additionalCredentials?: any;
|
108889
|
+
senderId?: string | undefined;
|
108695
108890
|
vonageCredentials?: {
|
108696
108891
|
mobileNumber: string;
|
108697
108892
|
apiKey: string;
|
@@ -108769,6 +108964,7 @@ export declare const mainChatMessageContract: {
|
|
108769
108964
|
accessToken?: string | undefined;
|
108770
108965
|
channelSecret?: string | undefined;
|
108771
108966
|
additionalCredentials?: any;
|
108967
|
+
senderId?: string | undefined;
|
108772
108968
|
vonageCredentials?: {
|
108773
108969
|
mobileNumber: string;
|
108774
108970
|
apiKey: string;
|
@@ -109294,6 +109490,7 @@ export declare const mainChatMessageContract: {
|
|
109294
109490
|
accessToken?: string | undefined;
|
109295
109491
|
channelSecret?: string | undefined;
|
109296
109492
|
additionalCredentials?: any;
|
109493
|
+
senderId?: string | undefined;
|
109297
109494
|
vonageCredentials?: {
|
109298
109495
|
mobileNumber: string;
|
109299
109496
|
apiKey: string;
|
@@ -109682,6 +109879,7 @@ export declare const mainChatMessageContract: {
|
|
109682
109879
|
accessToken?: string | undefined;
|
109683
109880
|
channelSecret?: string | undefined;
|
109684
109881
|
additionalCredentials?: any;
|
109882
|
+
senderId?: string | undefined;
|
109685
109883
|
vonageCredentials?: {
|
109686
109884
|
mobileNumber: string;
|
109687
109885
|
apiKey: string;
|
@@ -111843,6 +112041,7 @@ export declare const mainChatMessageContract: {
|
|
111843
112041
|
accessToken?: string | undefined;
|
111844
112042
|
channelSecret?: string | undefined;
|
111845
112043
|
additionalCredentials?: any;
|
112044
|
+
senderId?: string | undefined;
|
111846
112045
|
vonageCredentials?: {
|
111847
112046
|
mobileNumber: string;
|
111848
112047
|
apiKey: string;
|
@@ -112568,6 +112767,7 @@ export declare const mainChatMessageContract: {
|
|
112568
112767
|
accessToken?: string | undefined;
|
112569
112768
|
channelSecret?: string | undefined;
|
112570
112769
|
additionalCredentials?: any;
|
112770
|
+
senderId?: string | undefined;
|
112571
112771
|
vonageCredentials?: {
|
112572
112772
|
mobileNumber: string;
|
112573
112773
|
apiKey: string;
|
@@ -113294,6 +113494,7 @@ export declare const mainChatMessageContract: {
|
|
113294
113494
|
accessToken?: string | undefined;
|
113295
113495
|
channelSecret?: string | undefined;
|
113296
113496
|
additionalCredentials?: any;
|
113497
|
+
senderId?: string | undefined;
|
113297
113498
|
vonageCredentials?: {
|
113298
113499
|
mobileNumber: string;
|
113299
113500
|
apiKey: string;
|
@@ -114019,6 +114220,7 @@ export declare const mainChatMessageContract: {
|
|
114019
114220
|
accessToken?: string | undefined;
|
114020
114221
|
channelSecret?: string | undefined;
|
114021
114222
|
additionalCredentials?: any;
|
114223
|
+
senderId?: string | undefined;
|
114022
114224
|
vonageCredentials?: {
|
114023
114225
|
mobileNumber: string;
|
114024
114226
|
apiKey: string;
|
@@ -114745,6 +114947,7 @@ export declare const mainChatMessageContract: {
|
|
114745
114947
|
accessToken?: string | undefined;
|
114746
114948
|
channelSecret?: string | undefined;
|
114747
114949
|
additionalCredentials?: any;
|
114950
|
+
senderId?: string | undefined;
|
114748
114951
|
vonageCredentials?: {
|
114749
114952
|
mobileNumber: string;
|
114750
114953
|
apiKey: string;
|
@@ -115470,6 +115673,7 @@ export declare const mainChatMessageContract: {
|
|
115470
115673
|
accessToken?: string | undefined;
|
115471
115674
|
channelSecret?: string | undefined;
|
115472
115675
|
additionalCredentials?: any;
|
115676
|
+
senderId?: string | undefined;
|
115473
115677
|
vonageCredentials?: {
|
115474
115678
|
mobileNumber: string;
|
115475
115679
|
apiKey: string;
|
@@ -116198,6 +116402,7 @@ export declare const mainChatMessageContract: {
|
|
116198
116402
|
accessToken?: string | undefined;
|
116199
116403
|
channelSecret?: string | undefined;
|
116200
116404
|
additionalCredentials?: any;
|
116405
|
+
senderId?: string | undefined;
|
116201
116406
|
vonageCredentials?: {
|
116202
116407
|
mobileNumber: string;
|
116203
116408
|
apiKey: string;
|
@@ -116923,6 +117128,7 @@ export declare const mainChatMessageContract: {
|
|
116923
117128
|
accessToken?: string | undefined;
|
116924
117129
|
channelSecret?: string | undefined;
|
116925
117130
|
additionalCredentials?: any;
|
117131
|
+
senderId?: string | undefined;
|
116926
117132
|
vonageCredentials?: {
|
116927
117133
|
mobileNumber: string;
|
116928
117134
|
apiKey: string;
|
@@ -117652,6 +117858,7 @@ export declare const mainChatMessageContract: {
|
|
117652
117858
|
accessToken?: string | undefined;
|
117653
117859
|
channelSecret?: string | undefined;
|
117654
117860
|
additionalCredentials?: any;
|
117861
|
+
senderId?: string | undefined;
|
117655
117862
|
vonageCredentials?: {
|
117656
117863
|
mobileNumber: string;
|
117657
117864
|
apiKey: string;
|
@@ -118377,6 +118584,7 @@ export declare const mainChatMessageContract: {
|
|
118377
118584
|
accessToken?: string | undefined;
|
118378
118585
|
channelSecret?: string | undefined;
|
118379
118586
|
additionalCredentials?: any;
|
118587
|
+
senderId?: string | undefined;
|
118380
118588
|
vonageCredentials?: {
|
118381
118589
|
mobileNumber: string;
|
118382
118590
|
apiKey: string;
|
@@ -119062,6 +119270,7 @@ export declare const mainChatMessageContract: {
|
|
119062
119270
|
accessToken: z.ZodOptional<z.ZodString>;
|
119063
119271
|
channelSecret: z.ZodOptional<z.ZodString>;
|
119064
119272
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
119273
|
+
senderId: z.ZodOptional<z.ZodString>;
|
119065
119274
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
119066
119275
|
mobileNumber: z.ZodString;
|
119067
119276
|
apiKey: z.ZodString;
|
@@ -119082,6 +119291,7 @@ export declare const mainChatMessageContract: {
|
|
119082
119291
|
accessToken?: string | undefined;
|
119083
119292
|
channelSecret?: string | undefined;
|
119084
119293
|
additionalCredentials?: any;
|
119294
|
+
senderId?: string | undefined;
|
119085
119295
|
vonageCredentials?: {
|
119086
119296
|
mobileNumber: string;
|
119087
119297
|
apiKey: string;
|
@@ -119094,6 +119304,7 @@ export declare const mainChatMessageContract: {
|
|
119094
119304
|
accessToken?: string | undefined;
|
119095
119305
|
channelSecret?: string | undefined;
|
119096
119306
|
additionalCredentials?: any;
|
119307
|
+
senderId?: string | undefined;
|
119097
119308
|
vonageCredentials?: {
|
119098
119309
|
mobileNumber: string;
|
119099
119310
|
apiKey: string;
|
@@ -119136,6 +119347,7 @@ export declare const mainChatMessageContract: {
|
|
119136
119347
|
accessToken?: string | undefined;
|
119137
119348
|
channelSecret?: string | undefined;
|
119138
119349
|
additionalCredentials?: any;
|
119350
|
+
senderId?: string | undefined;
|
119139
119351
|
vonageCredentials?: {
|
119140
119352
|
mobileNumber: string;
|
119141
119353
|
apiKey: string;
|
@@ -119166,6 +119378,7 @@ export declare const mainChatMessageContract: {
|
|
119166
119378
|
accessToken?: string | undefined;
|
119167
119379
|
channelSecret?: string | undefined;
|
119168
119380
|
additionalCredentials?: any;
|
119381
|
+
senderId?: string | undefined;
|
119169
119382
|
vonageCredentials?: {
|
119170
119383
|
mobileNumber: string;
|
119171
119384
|
apiKey: string;
|
@@ -119199,6 +119412,7 @@ export declare const mainChatMessageContract: {
|
|
119199
119412
|
accessToken?: string | undefined;
|
119200
119413
|
channelSecret?: string | undefined;
|
119201
119414
|
additionalCredentials?: any;
|
119415
|
+
senderId?: string | undefined;
|
119202
119416
|
vonageCredentials?: {
|
119203
119417
|
mobileNumber: string;
|
119204
119418
|
apiKey: string;
|
@@ -119232,6 +119446,7 @@ export declare const mainChatMessageContract: {
|
|
119232
119446
|
accessToken?: string | undefined;
|
119233
119447
|
channelSecret?: string | undefined;
|
119234
119448
|
additionalCredentials?: any;
|
119449
|
+
senderId?: string | undefined;
|
119235
119450
|
vonageCredentials?: {
|
119236
119451
|
mobileNumber: string;
|
119237
119452
|
apiKey: string;
|
@@ -119417,6 +119632,7 @@ export declare const mainChatMessageContract: {
|
|
119417
119632
|
accessToken?: string | undefined;
|
119418
119633
|
channelSecret?: string | undefined;
|
119419
119634
|
additionalCredentials?: any;
|
119635
|
+
senderId?: string | undefined;
|
119420
119636
|
vonageCredentials?: {
|
119421
119637
|
mobileNumber: string;
|
119422
119638
|
apiKey: string;
|
@@ -119484,6 +119700,7 @@ export declare const mainChatMessageContract: {
|
|
119484
119700
|
accessToken?: string | undefined;
|
119485
119701
|
channelSecret?: string | undefined;
|
119486
119702
|
additionalCredentials?: any;
|
119703
|
+
senderId?: string | undefined;
|
119487
119704
|
vonageCredentials?: {
|
119488
119705
|
mobileNumber: string;
|
119489
119706
|
apiKey: string;
|
@@ -119553,6 +119770,7 @@ export declare const mainChatMessageContract: {
|
|
119553
119770
|
accessToken?: string | undefined;
|
119554
119771
|
channelSecret?: string | undefined;
|
119555
119772
|
additionalCredentials?: any;
|
119773
|
+
senderId?: string | undefined;
|
119556
119774
|
vonageCredentials?: {
|
119557
119775
|
mobileNumber: string;
|
119558
119776
|
apiKey: string;
|
@@ -119623,6 +119841,7 @@ export declare const mainChatMessageContract: {
|
|
119623
119841
|
accessToken?: string | undefined;
|
119624
119842
|
channelSecret?: string | undefined;
|
119625
119843
|
additionalCredentials?: any;
|
119844
|
+
senderId?: string | undefined;
|
119626
119845
|
vonageCredentials?: {
|
119627
119846
|
mobileNumber: string;
|
119628
119847
|
apiKey: string;
|
@@ -121191,6 +121410,7 @@ export declare const mainChatMessageContract: {
|
|
121191
121410
|
accessToken: z.ZodOptional<z.ZodString>;
|
121192
121411
|
channelSecret: z.ZodOptional<z.ZodString>;
|
121193
121412
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
121413
|
+
senderId: z.ZodOptional<z.ZodString>;
|
121194
121414
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
121195
121415
|
mobileNumber: z.ZodString;
|
121196
121416
|
apiKey: z.ZodString;
|
@@ -121211,6 +121431,7 @@ export declare const mainChatMessageContract: {
|
|
121211
121431
|
accessToken?: string | undefined;
|
121212
121432
|
channelSecret?: string | undefined;
|
121213
121433
|
additionalCredentials?: any;
|
121434
|
+
senderId?: string | undefined;
|
121214
121435
|
vonageCredentials?: {
|
121215
121436
|
mobileNumber: string;
|
121216
121437
|
apiKey: string;
|
@@ -121223,6 +121444,7 @@ export declare const mainChatMessageContract: {
|
|
121223
121444
|
accessToken?: string | undefined;
|
121224
121445
|
channelSecret?: string | undefined;
|
121225
121446
|
additionalCredentials?: any;
|
121447
|
+
senderId?: string | undefined;
|
121226
121448
|
vonageCredentials?: {
|
121227
121449
|
mobileNumber: string;
|
121228
121450
|
apiKey: string;
|
@@ -121469,6 +121691,7 @@ export declare const mainChatMessageContract: {
|
|
121469
121691
|
accessToken?: string | undefined;
|
121470
121692
|
channelSecret?: string | undefined;
|
121471
121693
|
additionalCredentials?: any;
|
121694
|
+
senderId?: string | undefined;
|
121472
121695
|
vonageCredentials?: {
|
121473
121696
|
mobileNumber: string;
|
121474
121697
|
apiKey: string;
|
@@ -121546,6 +121769,7 @@ export declare const mainChatMessageContract: {
|
|
121546
121769
|
accessToken?: string | undefined;
|
121547
121770
|
channelSecret?: string | undefined;
|
121548
121771
|
additionalCredentials?: any;
|
121772
|
+
senderId?: string | undefined;
|
121549
121773
|
vonageCredentials?: {
|
121550
121774
|
mobileNumber: string;
|
121551
121775
|
apiKey: string;
|
@@ -122071,6 +122295,7 @@ export declare const mainChatMessageContract: {
|
|
122071
122295
|
accessToken?: string | undefined;
|
122072
122296
|
channelSecret?: string | undefined;
|
122073
122297
|
additionalCredentials?: any;
|
122298
|
+
senderId?: string | undefined;
|
122074
122299
|
vonageCredentials?: {
|
122075
122300
|
mobileNumber: string;
|
122076
122301
|
apiKey: string;
|
@@ -122459,6 +122684,7 @@ export declare const mainChatMessageContract: {
|
|
122459
122684
|
accessToken?: string | undefined;
|
122460
122685
|
channelSecret?: string | undefined;
|
122461
122686
|
additionalCredentials?: any;
|
122687
|
+
senderId?: string | undefined;
|
122462
122688
|
vonageCredentials?: {
|
122463
122689
|
mobileNumber: string;
|
122464
122690
|
apiKey: string;
|
@@ -124620,6 +124846,7 @@ export declare const mainChatMessageContract: {
|
|
124620
124846
|
accessToken?: string | undefined;
|
124621
124847
|
channelSecret?: string | undefined;
|
124622
124848
|
additionalCredentials?: any;
|
124849
|
+
senderId?: string | undefined;
|
124623
124850
|
vonageCredentials?: {
|
124624
124851
|
mobileNumber: string;
|
124625
124852
|
apiKey: string;
|
@@ -125345,6 +125572,7 @@ export declare const mainChatMessageContract: {
|
|
125345
125572
|
accessToken?: string | undefined;
|
125346
125573
|
channelSecret?: string | undefined;
|
125347
125574
|
additionalCredentials?: any;
|
125575
|
+
senderId?: string | undefined;
|
125348
125576
|
vonageCredentials?: {
|
125349
125577
|
mobileNumber: string;
|
125350
125578
|
apiKey: string;
|
@@ -126072,6 +126300,7 @@ export declare const mainChatMessageContract: {
|
|
126072
126300
|
accessToken?: string | undefined;
|
126073
126301
|
channelSecret?: string | undefined;
|
126074
126302
|
additionalCredentials?: any;
|
126303
|
+
senderId?: string | undefined;
|
126075
126304
|
vonageCredentials?: {
|
126076
126305
|
mobileNumber: string;
|
126077
126306
|
apiKey: string;
|
@@ -126800,6 +127029,7 @@ export declare const mainChatMessageContract: {
|
|
126800
127029
|
accessToken?: string | undefined;
|
126801
127030
|
channelSecret?: string | undefined;
|
126802
127031
|
additionalCredentials?: any;
|
127032
|
+
senderId?: string | undefined;
|
126803
127033
|
vonageCredentials?: {
|
126804
127034
|
mobileNumber: string;
|
126805
127035
|
apiKey: string;
|