@kl1/contracts 1.2.7-uat → 1.2.9-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/automation-queue/index.d.ts +3 -3
- package/dist/api-contracts/src/automation-queue/validation.d.ts +3 -3
- package/dist/api-contracts/src/channel/index.d.ts +121 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +8 -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 +54 -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 +667 -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/mail/mail-contract.d.ts +10 -1404
- package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/message-contract.d.ts +10 -1404
- package/dist/api-contracts/src/mail/message-contract.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/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 +10 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1415,6 +1415,7 @@ export declare const receiveMessageContract: {
|
|
|
1415
1415
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
1416
1416
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
1417
1417
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
1418
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
1418
1419
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
1419
1420
|
mobileNumber: z.ZodString;
|
|
1420
1421
|
apiKey: z.ZodString;
|
|
@@ -1435,6 +1436,7 @@ export declare const receiveMessageContract: {
|
|
|
1435
1436
|
accessToken?: string | undefined;
|
|
1436
1437
|
channelSecret?: string | undefined;
|
|
1437
1438
|
additionalCredentials?: any;
|
|
1439
|
+
senderId?: string | undefined;
|
|
1438
1440
|
vonageCredentials?: {
|
|
1439
1441
|
mobileNumber: string;
|
|
1440
1442
|
apiKey: string;
|
|
@@ -1447,6 +1449,7 @@ export declare const receiveMessageContract: {
|
|
|
1447
1449
|
accessToken?: string | undefined;
|
|
1448
1450
|
channelSecret?: string | undefined;
|
|
1449
1451
|
additionalCredentials?: any;
|
|
1452
|
+
senderId?: string | undefined;
|
|
1450
1453
|
vonageCredentials?: {
|
|
1451
1454
|
mobileNumber: string;
|
|
1452
1455
|
apiKey: string;
|
|
@@ -1489,6 +1492,7 @@ export declare const receiveMessageContract: {
|
|
|
1489
1492
|
accessToken?: string | undefined;
|
|
1490
1493
|
channelSecret?: string | undefined;
|
|
1491
1494
|
additionalCredentials?: any;
|
|
1495
|
+
senderId?: string | undefined;
|
|
1492
1496
|
vonageCredentials?: {
|
|
1493
1497
|
mobileNumber: string;
|
|
1494
1498
|
apiKey: string;
|
|
@@ -1519,6 +1523,7 @@ export declare const receiveMessageContract: {
|
|
|
1519
1523
|
accessToken?: string | undefined;
|
|
1520
1524
|
channelSecret?: string | undefined;
|
|
1521
1525
|
additionalCredentials?: any;
|
|
1526
|
+
senderId?: string | undefined;
|
|
1522
1527
|
vonageCredentials?: {
|
|
1523
1528
|
mobileNumber: string;
|
|
1524
1529
|
apiKey: string;
|
|
@@ -2182,6 +2187,7 @@ export declare const receiveMessageContract: {
|
|
|
2182
2187
|
accessToken?: string | undefined;
|
|
2183
2188
|
channelSecret?: string | undefined;
|
|
2184
2189
|
additionalCredentials?: any;
|
|
2190
|
+
senderId?: string | undefined;
|
|
2185
2191
|
vonageCredentials?: {
|
|
2186
2192
|
mobileNumber: string;
|
|
2187
2193
|
apiKey: string;
|
|
@@ -2495,6 +2501,7 @@ export declare const receiveMessageContract: {
|
|
|
2495
2501
|
accessToken?: string | undefined;
|
|
2496
2502
|
channelSecret?: string | undefined;
|
|
2497
2503
|
additionalCredentials?: any;
|
|
2504
|
+
senderId?: string | undefined;
|
|
2498
2505
|
vonageCredentials?: {
|
|
2499
2506
|
mobileNumber: string;
|
|
2500
2507
|
apiKey: string;
|
|
@@ -3464,6 +3471,7 @@ export declare const receiveMessageContract: {
|
|
|
3464
3471
|
accessToken?: string | undefined;
|
|
3465
3472
|
channelSecret?: string | undefined;
|
|
3466
3473
|
additionalCredentials?: any;
|
|
3474
|
+
senderId?: string | undefined;
|
|
3467
3475
|
vonageCredentials?: {
|
|
3468
3476
|
mobileNumber: string;
|
|
3469
3477
|
apiKey: string;
|
|
@@ -3940,6 +3948,7 @@ export declare const receiveMessageContract: {
|
|
|
3940
3948
|
accessToken?: string | undefined;
|
|
3941
3949
|
channelSecret?: string | undefined;
|
|
3942
3950
|
additionalCredentials?: any;
|
|
3951
|
+
senderId?: string | undefined;
|
|
3943
3952
|
vonageCredentials?: {
|
|
3944
3953
|
mobileNumber: string;
|
|
3945
3954
|
apiKey: string;
|
|
@@ -4418,6 +4427,7 @@ export declare const receiveMessageContract: {
|
|
|
4418
4427
|
accessToken?: string | undefined;
|
|
4419
4428
|
channelSecret?: string | undefined;
|
|
4420
4429
|
additionalCredentials?: any;
|
|
4430
|
+
senderId?: string | undefined;
|
|
4421
4431
|
vonageCredentials?: {
|
|
4422
4432
|
mobileNumber: string;
|
|
4423
4433
|
apiKey: string;
|
|
@@ -4896,6 +4906,7 @@ export declare const receiveMessageContract: {
|
|
|
4896
4906
|
accessToken?: string | undefined;
|
|
4897
4907
|
channelSecret?: string | undefined;
|
|
4898
4908
|
additionalCredentials?: any;
|
|
4909
|
+
senderId?: string | undefined;
|
|
4899
4910
|
vonageCredentials?: {
|
|
4900
4911
|
mobileNumber: string;
|
|
4901
4912
|
apiKey: string;
|
|
@@ -5212,6 +5223,7 @@ export declare const mainFeedContract: {
|
|
|
5212
5223
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
5213
5224
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
5214
5225
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
5226
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
5215
5227
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
5216
5228
|
mobileNumber: z.ZodString;
|
|
5217
5229
|
apiKey: z.ZodString;
|
|
@@ -5232,6 +5244,7 @@ export declare const mainFeedContract: {
|
|
|
5232
5244
|
accessToken?: string | undefined;
|
|
5233
5245
|
channelSecret?: string | undefined;
|
|
5234
5246
|
additionalCredentials?: any;
|
|
5247
|
+
senderId?: string | undefined;
|
|
5235
5248
|
vonageCredentials?: {
|
|
5236
5249
|
mobileNumber: string;
|
|
5237
5250
|
apiKey: string;
|
|
@@ -5244,6 +5257,7 @@ export declare const mainFeedContract: {
|
|
|
5244
5257
|
accessToken?: string | undefined;
|
|
5245
5258
|
channelSecret?: string | undefined;
|
|
5246
5259
|
additionalCredentials?: any;
|
|
5260
|
+
senderId?: string | undefined;
|
|
5247
5261
|
vonageCredentials?: {
|
|
5248
5262
|
mobileNumber: string;
|
|
5249
5263
|
apiKey: string;
|
|
@@ -5490,6 +5504,7 @@ export declare const mainFeedContract: {
|
|
|
5490
5504
|
accessToken?: string | undefined;
|
|
5491
5505
|
channelSecret?: string | undefined;
|
|
5492
5506
|
additionalCredentials?: any;
|
|
5507
|
+
senderId?: string | undefined;
|
|
5493
5508
|
vonageCredentials?: {
|
|
5494
5509
|
mobileNumber: string;
|
|
5495
5510
|
apiKey: string;
|
|
@@ -5567,6 +5582,7 @@ export declare const mainFeedContract: {
|
|
|
5567
5582
|
accessToken?: string | undefined;
|
|
5568
5583
|
channelSecret?: string | undefined;
|
|
5569
5584
|
additionalCredentials?: any;
|
|
5585
|
+
senderId?: string | undefined;
|
|
5570
5586
|
vonageCredentials?: {
|
|
5571
5587
|
mobileNumber: string;
|
|
5572
5588
|
apiKey: string;
|
|
@@ -6901,6 +6917,7 @@ export declare const mainFeedContract: {
|
|
|
6901
6917
|
accessToken?: string | undefined;
|
|
6902
6918
|
channelSecret?: string | undefined;
|
|
6903
6919
|
additionalCredentials?: any;
|
|
6920
|
+
senderId?: string | undefined;
|
|
6904
6921
|
vonageCredentials?: {
|
|
6905
6922
|
mobileNumber: string;
|
|
6906
6923
|
apiKey: string;
|
|
@@ -7165,6 +7182,7 @@ export declare const mainFeedContract: {
|
|
|
7165
7182
|
accessToken?: string | undefined;
|
|
7166
7183
|
channelSecret?: string | undefined;
|
|
7167
7184
|
additionalCredentials?: any;
|
|
7185
|
+
senderId?: string | undefined;
|
|
7168
7186
|
vonageCredentials?: {
|
|
7169
7187
|
mobileNumber: string;
|
|
7170
7188
|
apiKey: string;
|
|
@@ -7431,6 +7449,7 @@ export declare const mainFeedContract: {
|
|
|
7431
7449
|
accessToken?: string | undefined;
|
|
7432
7450
|
channelSecret?: string | undefined;
|
|
7433
7451
|
additionalCredentials?: any;
|
|
7452
|
+
senderId?: string | undefined;
|
|
7434
7453
|
vonageCredentials?: {
|
|
7435
7454
|
mobileNumber: string;
|
|
7436
7455
|
apiKey: string;
|
|
@@ -7698,6 +7717,7 @@ export declare const mainFeedContract: {
|
|
|
7698
7717
|
accessToken?: string | undefined;
|
|
7699
7718
|
channelSecret?: string | undefined;
|
|
7700
7719
|
additionalCredentials?: any;
|
|
7720
|
+
senderId?: string | undefined;
|
|
7701
7721
|
vonageCredentials?: {
|
|
7702
7722
|
mobileNumber: string;
|
|
7703
7723
|
apiKey: string;
|
|
@@ -9935,6 +9955,7 @@ export declare const mainFeedContract: {
|
|
|
9935
9955
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
9936
9956
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
9937
9957
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
9958
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
9938
9959
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
9939
9960
|
mobileNumber: z.ZodString;
|
|
9940
9961
|
apiKey: z.ZodString;
|
|
@@ -9955,6 +9976,7 @@ export declare const mainFeedContract: {
|
|
|
9955
9976
|
accessToken?: string | undefined;
|
|
9956
9977
|
channelSecret?: string | undefined;
|
|
9957
9978
|
additionalCredentials?: any;
|
|
9979
|
+
senderId?: string | undefined;
|
|
9958
9980
|
vonageCredentials?: {
|
|
9959
9981
|
mobileNumber: string;
|
|
9960
9982
|
apiKey: string;
|
|
@@ -9967,6 +9989,7 @@ export declare const mainFeedContract: {
|
|
|
9967
9989
|
accessToken?: string | undefined;
|
|
9968
9990
|
channelSecret?: string | undefined;
|
|
9969
9991
|
additionalCredentials?: any;
|
|
9992
|
+
senderId?: string | undefined;
|
|
9970
9993
|
vonageCredentials?: {
|
|
9971
9994
|
mobileNumber: string;
|
|
9972
9995
|
apiKey: string;
|
|
@@ -10213,6 +10236,7 @@ export declare const mainFeedContract: {
|
|
|
10213
10236
|
accessToken?: string | undefined;
|
|
10214
10237
|
channelSecret?: string | undefined;
|
|
10215
10238
|
additionalCredentials?: any;
|
|
10239
|
+
senderId?: string | undefined;
|
|
10216
10240
|
vonageCredentials?: {
|
|
10217
10241
|
mobileNumber: string;
|
|
10218
10242
|
apiKey: string;
|
|
@@ -10290,6 +10314,7 @@ export declare const mainFeedContract: {
|
|
|
10290
10314
|
accessToken?: string | undefined;
|
|
10291
10315
|
channelSecret?: string | undefined;
|
|
10292
10316
|
additionalCredentials?: any;
|
|
10317
|
+
senderId?: string | undefined;
|
|
10293
10318
|
vonageCredentials?: {
|
|
10294
10319
|
mobileNumber: string;
|
|
10295
10320
|
apiKey: string;
|
|
@@ -10815,6 +10840,7 @@ export declare const mainFeedContract: {
|
|
|
10815
10840
|
accessToken?: string | undefined;
|
|
10816
10841
|
channelSecret?: string | undefined;
|
|
10817
10842
|
additionalCredentials?: any;
|
|
10843
|
+
senderId?: string | undefined;
|
|
10818
10844
|
vonageCredentials?: {
|
|
10819
10845
|
mobileNumber: string;
|
|
10820
10846
|
apiKey: string;
|
|
@@ -11203,6 +11229,7 @@ export declare const mainFeedContract: {
|
|
|
11203
11229
|
accessToken?: string | undefined;
|
|
11204
11230
|
channelSecret?: string | undefined;
|
|
11205
11231
|
additionalCredentials?: any;
|
|
11232
|
+
senderId?: string | undefined;
|
|
11206
11233
|
vonageCredentials?: {
|
|
11207
11234
|
mobileNumber: string;
|
|
11208
11235
|
apiKey: string;
|
|
@@ -15354,6 +15381,7 @@ export declare const mainFeedContract: {
|
|
|
15354
15381
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
15355
15382
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
15356
15383
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
15384
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
15357
15385
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
15358
15386
|
mobileNumber: z.ZodString;
|
|
15359
15387
|
apiKey: z.ZodString;
|
|
@@ -15374,6 +15402,7 @@ export declare const mainFeedContract: {
|
|
|
15374
15402
|
accessToken?: string | undefined;
|
|
15375
15403
|
channelSecret?: string | undefined;
|
|
15376
15404
|
additionalCredentials?: any;
|
|
15405
|
+
senderId?: string | undefined;
|
|
15377
15406
|
vonageCredentials?: {
|
|
15378
15407
|
mobileNumber: string;
|
|
15379
15408
|
apiKey: string;
|
|
@@ -15386,6 +15415,7 @@ export declare const mainFeedContract: {
|
|
|
15386
15415
|
accessToken?: string | undefined;
|
|
15387
15416
|
channelSecret?: string | undefined;
|
|
15388
15417
|
additionalCredentials?: any;
|
|
15418
|
+
senderId?: string | undefined;
|
|
15389
15419
|
vonageCredentials?: {
|
|
15390
15420
|
mobileNumber: string;
|
|
15391
15421
|
apiKey: string;
|
|
@@ -15632,6 +15662,7 @@ export declare const mainFeedContract: {
|
|
|
15632
15662
|
accessToken?: string | undefined;
|
|
15633
15663
|
channelSecret?: string | undefined;
|
|
15634
15664
|
additionalCredentials?: any;
|
|
15665
|
+
senderId?: string | undefined;
|
|
15635
15666
|
vonageCredentials?: {
|
|
15636
15667
|
mobileNumber: string;
|
|
15637
15668
|
apiKey: string;
|
|
@@ -15709,6 +15740,7 @@ export declare const mainFeedContract: {
|
|
|
15709
15740
|
accessToken?: string | undefined;
|
|
15710
15741
|
channelSecret?: string | undefined;
|
|
15711
15742
|
additionalCredentials?: any;
|
|
15743
|
+
senderId?: string | undefined;
|
|
15712
15744
|
vonageCredentials?: {
|
|
15713
15745
|
mobileNumber: string;
|
|
15714
15746
|
apiKey: string;
|
|
@@ -16234,6 +16266,7 @@ export declare const mainFeedContract: {
|
|
|
16234
16266
|
accessToken?: string | undefined;
|
|
16235
16267
|
channelSecret?: string | undefined;
|
|
16236
16268
|
additionalCredentials?: any;
|
|
16269
|
+
senderId?: string | undefined;
|
|
16237
16270
|
vonageCredentials?: {
|
|
16238
16271
|
mobileNumber: string;
|
|
16239
16272
|
apiKey: string;
|
|
@@ -16622,6 +16655,7 @@ export declare const mainFeedContract: {
|
|
|
16622
16655
|
accessToken?: string | undefined;
|
|
16623
16656
|
channelSecret?: string | undefined;
|
|
16624
16657
|
additionalCredentials?: any;
|
|
16658
|
+
senderId?: string | undefined;
|
|
16625
16659
|
vonageCredentials?: {
|
|
16626
16660
|
mobileNumber: string;
|
|
16627
16661
|
apiKey: string;
|
|
@@ -18783,6 +18817,7 @@ export declare const mainFeedContract: {
|
|
|
18783
18817
|
accessToken?: string | undefined;
|
|
18784
18818
|
channelSecret?: string | undefined;
|
|
18785
18819
|
additionalCredentials?: any;
|
|
18820
|
+
senderId?: string | undefined;
|
|
18786
18821
|
vonageCredentials?: {
|
|
18787
18822
|
mobileNumber: string;
|
|
18788
18823
|
apiKey: string;
|
|
@@ -19508,6 +19543,7 @@ export declare const mainFeedContract: {
|
|
|
19508
19543
|
accessToken?: string | undefined;
|
|
19509
19544
|
channelSecret?: string | undefined;
|
|
19510
19545
|
additionalCredentials?: any;
|
|
19546
|
+
senderId?: string | undefined;
|
|
19511
19547
|
vonageCredentials?: {
|
|
19512
19548
|
mobileNumber: string;
|
|
19513
19549
|
apiKey: string;
|
|
@@ -20240,6 +20276,7 @@ export declare const mainFeedContract: {
|
|
|
20240
20276
|
accessToken?: string | undefined;
|
|
20241
20277
|
channelSecret?: string | undefined;
|
|
20242
20278
|
additionalCredentials?: any;
|
|
20279
|
+
senderId?: string | undefined;
|
|
20243
20280
|
vonageCredentials?: {
|
|
20244
20281
|
mobileNumber: string;
|
|
20245
20282
|
apiKey: string;
|
|
@@ -20960,6 +20997,7 @@ export declare const mainFeedContract: {
|
|
|
20960
20997
|
accessToken?: string | undefined;
|
|
20961
20998
|
channelSecret?: string | undefined;
|
|
20962
20999
|
additionalCredentials?: any;
|
|
21000
|
+
senderId?: string | undefined;
|
|
20963
21001
|
vonageCredentials?: {
|
|
20964
21002
|
mobileNumber: string;
|
|
20965
21003
|
apiKey: string;
|
|
@@ -21818,6 +21856,7 @@ export declare const mainFeedContract: {
|
|
|
21818
21856
|
accessToken?: string | undefined;
|
|
21819
21857
|
channelSecret?: string | undefined;
|
|
21820
21858
|
additionalCredentials?: any;
|
|
21859
|
+
senderId?: string | undefined;
|
|
21821
21860
|
vonageCredentials?: {
|
|
21822
21861
|
mobileNumber: string;
|
|
21823
21862
|
apiKey: string;
|
|
@@ -22538,6 +22577,7 @@ export declare const mainFeedContract: {
|
|
|
22538
22577
|
accessToken?: string | undefined;
|
|
22539
22578
|
channelSecret?: string | undefined;
|
|
22540
22579
|
additionalCredentials?: any;
|
|
22580
|
+
senderId?: string | undefined;
|
|
22541
22581
|
vonageCredentials?: {
|
|
22542
22582
|
mobileNumber: string;
|
|
22543
22583
|
apiKey: string;
|
|
@@ -23398,6 +23438,7 @@ export declare const mainFeedContract: {
|
|
|
23398
23438
|
accessToken?: string | undefined;
|
|
23399
23439
|
channelSecret?: string | undefined;
|
|
23400
23440
|
additionalCredentials?: any;
|
|
23441
|
+
senderId?: string | undefined;
|
|
23401
23442
|
vonageCredentials?: {
|
|
23402
23443
|
mobileNumber: string;
|
|
23403
23444
|
apiKey: string;
|
|
@@ -24118,6 +24159,7 @@ export declare const mainFeedContract: {
|
|
|
24118
24159
|
accessToken?: string | undefined;
|
|
24119
24160
|
channelSecret?: string | undefined;
|
|
24120
24161
|
additionalCredentials?: any;
|
|
24162
|
+
senderId?: string | undefined;
|
|
24121
24163
|
vonageCredentials?: {
|
|
24122
24164
|
mobileNumber: string;
|
|
24123
24165
|
apiKey: string;
|
|
@@ -24982,6 +25024,7 @@ export declare const mainFeedContract: {
|
|
|
24982
25024
|
accessToken?: string | undefined;
|
|
24983
25025
|
channelSecret?: string | undefined;
|
|
24984
25026
|
additionalCredentials?: any;
|
|
25027
|
+
senderId?: string | undefined;
|
|
24985
25028
|
vonageCredentials?: {
|
|
24986
25029
|
mobileNumber: string;
|
|
24987
25030
|
apiKey: string;
|
|
@@ -25702,6 +25745,7 @@ export declare const mainFeedContract: {
|
|
|
25702
25745
|
accessToken?: string | undefined;
|
|
25703
25746
|
channelSecret?: string | undefined;
|
|
25704
25747
|
additionalCredentials?: any;
|
|
25748
|
+
senderId?: string | undefined;
|
|
25705
25749
|
vonageCredentials?: {
|
|
25706
25750
|
mobileNumber: string;
|
|
25707
25751
|
apiKey: string;
|
|
@@ -28083,6 +28127,7 @@ export declare const mainChatRoomContract: {
|
|
|
28083
28127
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
28084
28128
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
28085
28129
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
28130
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
28086
28131
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
28087
28132
|
mobileNumber: z.ZodString;
|
|
28088
28133
|
apiKey: z.ZodString;
|
|
@@ -28103,6 +28148,7 @@ export declare const mainChatRoomContract: {
|
|
|
28103
28148
|
accessToken?: string | undefined;
|
|
28104
28149
|
channelSecret?: string | undefined;
|
|
28105
28150
|
additionalCredentials?: any;
|
|
28151
|
+
senderId?: string | undefined;
|
|
28106
28152
|
vonageCredentials?: {
|
|
28107
28153
|
mobileNumber: string;
|
|
28108
28154
|
apiKey: string;
|
|
@@ -28115,6 +28161,7 @@ export declare const mainChatRoomContract: {
|
|
|
28115
28161
|
accessToken?: string | undefined;
|
|
28116
28162
|
channelSecret?: string | undefined;
|
|
28117
28163
|
additionalCredentials?: any;
|
|
28164
|
+
senderId?: string | undefined;
|
|
28118
28165
|
vonageCredentials?: {
|
|
28119
28166
|
mobileNumber: string;
|
|
28120
28167
|
apiKey: string;
|
|
@@ -28361,6 +28408,7 @@ export declare const mainChatRoomContract: {
|
|
|
28361
28408
|
accessToken?: string | undefined;
|
|
28362
28409
|
channelSecret?: string | undefined;
|
|
28363
28410
|
additionalCredentials?: any;
|
|
28411
|
+
senderId?: string | undefined;
|
|
28364
28412
|
vonageCredentials?: {
|
|
28365
28413
|
mobileNumber: string;
|
|
28366
28414
|
apiKey: string;
|
|
@@ -28438,6 +28486,7 @@ export declare const mainChatRoomContract: {
|
|
|
28438
28486
|
accessToken?: string | undefined;
|
|
28439
28487
|
channelSecret?: string | undefined;
|
|
28440
28488
|
additionalCredentials?: any;
|
|
28489
|
+
senderId?: string | undefined;
|
|
28441
28490
|
vonageCredentials?: {
|
|
28442
28491
|
mobileNumber: string;
|
|
28443
28492
|
apiKey: string;
|
|
@@ -28963,6 +29012,7 @@ export declare const mainChatRoomContract: {
|
|
|
28963
29012
|
accessToken?: string | undefined;
|
|
28964
29013
|
channelSecret?: string | undefined;
|
|
28965
29014
|
additionalCredentials?: any;
|
|
29015
|
+
senderId?: string | undefined;
|
|
28966
29016
|
vonageCredentials?: {
|
|
28967
29017
|
mobileNumber: string;
|
|
28968
29018
|
apiKey: string;
|
|
@@ -29351,6 +29401,7 @@ export declare const mainChatRoomContract: {
|
|
|
29351
29401
|
accessToken?: string | undefined;
|
|
29352
29402
|
channelSecret?: string | undefined;
|
|
29353
29403
|
additionalCredentials?: any;
|
|
29404
|
+
senderId?: string | undefined;
|
|
29354
29405
|
vonageCredentials?: {
|
|
29355
29406
|
mobileNumber: string;
|
|
29356
29407
|
apiKey: string;
|
|
@@ -29751,6 +29802,7 @@ export declare const mainChatRoomContract: {
|
|
|
29751
29802
|
accessToken?: string | undefined;
|
|
29752
29803
|
channelSecret?: string | undefined;
|
|
29753
29804
|
additionalCredentials?: any;
|
|
29805
|
+
senderId?: string | undefined;
|
|
29754
29806
|
vonageCredentials?: {
|
|
29755
29807
|
mobileNumber: string;
|
|
29756
29808
|
apiKey: string;
|
|
@@ -30149,6 +30201,7 @@ export declare const mainChatRoomContract: {
|
|
|
30149
30201
|
accessToken?: string | undefined;
|
|
30150
30202
|
channelSecret?: string | undefined;
|
|
30151
30203
|
additionalCredentials?: any;
|
|
30204
|
+
senderId?: string | undefined;
|
|
30152
30205
|
vonageCredentials?: {
|
|
30153
30206
|
mobileNumber: string;
|
|
30154
30207
|
apiKey: string;
|
|
@@ -32062,6 +32115,7 @@ export declare const mainChatRoomContract: {
|
|
|
32062
32115
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
32063
32116
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
32064
32117
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
32118
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
32065
32119
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
32066
32120
|
mobileNumber: z.ZodString;
|
|
32067
32121
|
apiKey: z.ZodString;
|
|
@@ -32082,6 +32136,7 @@ export declare const mainChatRoomContract: {
|
|
|
32082
32136
|
accessToken?: string | undefined;
|
|
32083
32137
|
channelSecret?: string | undefined;
|
|
32084
32138
|
additionalCredentials?: any;
|
|
32139
|
+
senderId?: string | undefined;
|
|
32085
32140
|
vonageCredentials?: {
|
|
32086
32141
|
mobileNumber: string;
|
|
32087
32142
|
apiKey: string;
|
|
@@ -32094,6 +32149,7 @@ export declare const mainChatRoomContract: {
|
|
|
32094
32149
|
accessToken?: string | undefined;
|
|
32095
32150
|
channelSecret?: string | undefined;
|
|
32096
32151
|
additionalCredentials?: any;
|
|
32152
|
+
senderId?: string | undefined;
|
|
32097
32153
|
vonageCredentials?: {
|
|
32098
32154
|
mobileNumber: string;
|
|
32099
32155
|
apiKey: string;
|
|
@@ -32340,6 +32396,7 @@ export declare const mainChatRoomContract: {
|
|
|
32340
32396
|
accessToken?: string | undefined;
|
|
32341
32397
|
channelSecret?: string | undefined;
|
|
32342
32398
|
additionalCredentials?: any;
|
|
32399
|
+
senderId?: string | undefined;
|
|
32343
32400
|
vonageCredentials?: {
|
|
32344
32401
|
mobileNumber: string;
|
|
32345
32402
|
apiKey: string;
|
|
@@ -32417,6 +32474,7 @@ export declare const mainChatRoomContract: {
|
|
|
32417
32474
|
accessToken?: string | undefined;
|
|
32418
32475
|
channelSecret?: string | undefined;
|
|
32419
32476
|
additionalCredentials?: any;
|
|
32477
|
+
senderId?: string | undefined;
|
|
32420
32478
|
vonageCredentials?: {
|
|
32421
32479
|
mobileNumber: string;
|
|
32422
32480
|
apiKey: string;
|
|
@@ -32942,6 +33000,7 @@ export declare const mainChatRoomContract: {
|
|
|
32942
33000
|
accessToken?: string | undefined;
|
|
32943
33001
|
channelSecret?: string | undefined;
|
|
32944
33002
|
additionalCredentials?: any;
|
|
33003
|
+
senderId?: string | undefined;
|
|
32945
33004
|
vonageCredentials?: {
|
|
32946
33005
|
mobileNumber: string;
|
|
32947
33006
|
apiKey: string;
|
|
@@ -33330,6 +33389,7 @@ export declare const mainChatRoomContract: {
|
|
|
33330
33389
|
accessToken?: string | undefined;
|
|
33331
33390
|
channelSecret?: string | undefined;
|
|
33332
33391
|
additionalCredentials?: any;
|
|
33392
|
+
senderId?: string | undefined;
|
|
33333
33393
|
vonageCredentials?: {
|
|
33334
33394
|
mobileNumber: string;
|
|
33335
33395
|
apiKey: string;
|
|
@@ -33763,6 +33823,7 @@ export declare const mainChatRoomContract: {
|
|
|
33763
33823
|
accessToken?: string | undefined;
|
|
33764
33824
|
channelSecret?: string | undefined;
|
|
33765
33825
|
additionalCredentials?: any;
|
|
33826
|
+
senderId?: string | undefined;
|
|
33766
33827
|
vonageCredentials?: {
|
|
33767
33828
|
mobileNumber: string;
|
|
33768
33829
|
apiKey: string;
|
|
@@ -34168,6 +34229,7 @@ export declare const mainChatRoomContract: {
|
|
|
34168
34229
|
accessToken?: string | undefined;
|
|
34169
34230
|
channelSecret?: string | undefined;
|
|
34170
34231
|
additionalCredentials?: any;
|
|
34232
|
+
senderId?: string | undefined;
|
|
34171
34233
|
vonageCredentials?: {
|
|
34172
34234
|
mobileNumber: string;
|
|
34173
34235
|
apiKey: string;
|
|
@@ -34575,6 +34637,7 @@ export declare const mainChatRoomContract: {
|
|
|
34575
34637
|
accessToken?: string | undefined;
|
|
34576
34638
|
channelSecret?: string | undefined;
|
|
34577
34639
|
additionalCredentials?: any;
|
|
34640
|
+
senderId?: string | undefined;
|
|
34578
34641
|
vonageCredentials?: {
|
|
34579
34642
|
mobileNumber: string;
|
|
34580
34643
|
apiKey: string;
|
|
@@ -34983,6 +35046,7 @@ export declare const mainChatRoomContract: {
|
|
|
34983
35046
|
accessToken?: string | undefined;
|
|
34984
35047
|
channelSecret?: string | undefined;
|
|
34985
35048
|
additionalCredentials?: any;
|
|
35049
|
+
senderId?: string | undefined;
|
|
34986
35050
|
vonageCredentials?: {
|
|
34987
35051
|
mobileNumber: string;
|
|
34988
35052
|
apiKey: string;
|
|
@@ -35438,6 +35502,7 @@ export declare const mainChatRoomContract: {
|
|
|
35438
35502
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
35439
35503
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
35440
35504
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
35505
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
35441
35506
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
35442
35507
|
mobileNumber: z.ZodString;
|
|
35443
35508
|
apiKey: z.ZodString;
|
|
@@ -35458,6 +35523,7 @@ export declare const mainChatRoomContract: {
|
|
|
35458
35523
|
accessToken?: string | undefined;
|
|
35459
35524
|
channelSecret?: string | undefined;
|
|
35460
35525
|
additionalCredentials?: any;
|
|
35526
|
+
senderId?: string | undefined;
|
|
35461
35527
|
vonageCredentials?: {
|
|
35462
35528
|
mobileNumber: string;
|
|
35463
35529
|
apiKey: string;
|
|
@@ -35470,6 +35536,7 @@ export declare const mainChatRoomContract: {
|
|
|
35470
35536
|
accessToken?: string | undefined;
|
|
35471
35537
|
channelSecret?: string | undefined;
|
|
35472
35538
|
additionalCredentials?: any;
|
|
35539
|
+
senderId?: string | undefined;
|
|
35473
35540
|
vonageCredentials?: {
|
|
35474
35541
|
mobileNumber: string;
|
|
35475
35542
|
apiKey: string;
|
|
@@ -35716,6 +35783,7 @@ export declare const mainChatRoomContract: {
|
|
|
35716
35783
|
accessToken?: string | undefined;
|
|
35717
35784
|
channelSecret?: string | undefined;
|
|
35718
35785
|
additionalCredentials?: any;
|
|
35786
|
+
senderId?: string | undefined;
|
|
35719
35787
|
vonageCredentials?: {
|
|
35720
35788
|
mobileNumber: string;
|
|
35721
35789
|
apiKey: string;
|
|
@@ -35793,6 +35861,7 @@ export declare const mainChatRoomContract: {
|
|
|
35793
35861
|
accessToken?: string | undefined;
|
|
35794
35862
|
channelSecret?: string | undefined;
|
|
35795
35863
|
additionalCredentials?: any;
|
|
35864
|
+
senderId?: string | undefined;
|
|
35796
35865
|
vonageCredentials?: {
|
|
35797
35866
|
mobileNumber: string;
|
|
35798
35867
|
apiKey: string;
|
|
@@ -37788,6 +37857,7 @@ export declare const mainChatRoomContract: {
|
|
|
37788
37857
|
accessToken?: string | undefined;
|
|
37789
37858
|
channelSecret?: string | undefined;
|
|
37790
37859
|
additionalCredentials?: any;
|
|
37860
|
+
senderId?: string | undefined;
|
|
37791
37861
|
vonageCredentials?: {
|
|
37792
37862
|
mobileNumber: string;
|
|
37793
37863
|
apiKey: string;
|
|
@@ -38177,6 +38247,7 @@ export declare const mainChatRoomContract: {
|
|
|
38177
38247
|
accessToken?: string | undefined;
|
|
38178
38248
|
channelSecret?: string | undefined;
|
|
38179
38249
|
additionalCredentials?: any;
|
|
38250
|
+
senderId?: string | undefined;
|
|
38180
38251
|
vonageCredentials?: {
|
|
38181
38252
|
mobileNumber: string;
|
|
38182
38253
|
apiKey: string;
|
|
@@ -38568,6 +38639,7 @@ export declare const mainChatRoomContract: {
|
|
|
38568
38639
|
accessToken?: string | undefined;
|
|
38569
38640
|
channelSecret?: string | undefined;
|
|
38570
38641
|
additionalCredentials?: any;
|
|
38642
|
+
senderId?: string | undefined;
|
|
38571
38643
|
vonageCredentials?: {
|
|
38572
38644
|
mobileNumber: string;
|
|
38573
38645
|
apiKey: string;
|
|
@@ -38960,6 +39032,7 @@ export declare const mainChatRoomContract: {
|
|
|
38960
39032
|
accessToken?: string | undefined;
|
|
38961
39033
|
channelSecret?: string | undefined;
|
|
38962
39034
|
additionalCredentials?: any;
|
|
39035
|
+
senderId?: string | undefined;
|
|
38963
39036
|
vonageCredentials?: {
|
|
38964
39037
|
mobileNumber: string;
|
|
38965
39038
|
apiKey: string;
|
|
@@ -39398,6 +39471,7 @@ export declare const mainChatRoomContract: {
|
|
|
39398
39471
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
39399
39472
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
39400
39473
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
39474
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
39401
39475
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
39402
39476
|
mobileNumber: z.ZodString;
|
|
39403
39477
|
apiKey: z.ZodString;
|
|
@@ -39418,6 +39492,7 @@ export declare const mainChatRoomContract: {
|
|
|
39418
39492
|
accessToken?: string | undefined;
|
|
39419
39493
|
channelSecret?: string | undefined;
|
|
39420
39494
|
additionalCredentials?: any;
|
|
39495
|
+
senderId?: string | undefined;
|
|
39421
39496
|
vonageCredentials?: {
|
|
39422
39497
|
mobileNumber: string;
|
|
39423
39498
|
apiKey: string;
|
|
@@ -39430,6 +39505,7 @@ export declare const mainChatRoomContract: {
|
|
|
39430
39505
|
accessToken?: string | undefined;
|
|
39431
39506
|
channelSecret?: string | undefined;
|
|
39432
39507
|
additionalCredentials?: any;
|
|
39508
|
+
senderId?: string | undefined;
|
|
39433
39509
|
vonageCredentials?: {
|
|
39434
39510
|
mobileNumber: string;
|
|
39435
39511
|
apiKey: string;
|
|
@@ -39676,6 +39752,7 @@ export declare const mainChatRoomContract: {
|
|
|
39676
39752
|
accessToken?: string | undefined;
|
|
39677
39753
|
channelSecret?: string | undefined;
|
|
39678
39754
|
additionalCredentials?: any;
|
|
39755
|
+
senderId?: string | undefined;
|
|
39679
39756
|
vonageCredentials?: {
|
|
39680
39757
|
mobileNumber: string;
|
|
39681
39758
|
apiKey: string;
|
|
@@ -39753,6 +39830,7 @@ export declare const mainChatRoomContract: {
|
|
|
39753
39830
|
accessToken?: string | undefined;
|
|
39754
39831
|
channelSecret?: string | undefined;
|
|
39755
39832
|
additionalCredentials?: any;
|
|
39833
|
+
senderId?: string | undefined;
|
|
39756
39834
|
vonageCredentials?: {
|
|
39757
39835
|
mobileNumber: string;
|
|
39758
39836
|
apiKey: string;
|
|
@@ -42518,6 +42596,7 @@ export declare const mainChatRoomContract: {
|
|
|
42518
42596
|
accessToken?: string | undefined;
|
|
42519
42597
|
channelSecret?: string | undefined;
|
|
42520
42598
|
additionalCredentials?: any;
|
|
42599
|
+
senderId?: string | undefined;
|
|
42521
42600
|
vonageCredentials?: {
|
|
42522
42601
|
mobileNumber: string;
|
|
42523
42602
|
apiKey: string;
|
|
@@ -43019,6 +43098,7 @@ export declare const mainChatRoomContract: {
|
|
|
43019
43098
|
accessToken?: string | undefined;
|
|
43020
43099
|
channelSecret?: string | undefined;
|
|
43021
43100
|
additionalCredentials?: any;
|
|
43101
|
+
senderId?: string | undefined;
|
|
43022
43102
|
vonageCredentials?: {
|
|
43023
43103
|
mobileNumber: string;
|
|
43024
43104
|
apiKey: string;
|
|
@@ -43522,6 +43602,7 @@ export declare const mainChatRoomContract: {
|
|
|
43522
43602
|
accessToken?: string | undefined;
|
|
43523
43603
|
channelSecret?: string | undefined;
|
|
43524
43604
|
additionalCredentials?: any;
|
|
43605
|
+
senderId?: string | undefined;
|
|
43525
43606
|
vonageCredentials?: {
|
|
43526
43607
|
mobileNumber: string;
|
|
43527
43608
|
apiKey: string;
|
|
@@ -44026,6 +44107,7 @@ export declare const mainChatRoomContract: {
|
|
|
44026
44107
|
accessToken?: string | undefined;
|
|
44027
44108
|
channelSecret?: string | undefined;
|
|
44028
44109
|
additionalCredentials?: any;
|
|
44110
|
+
senderId?: string | undefined;
|
|
44029
44111
|
vonageCredentials?: {
|
|
44030
44112
|
mobileNumber: string;
|
|
44031
44113
|
apiKey: string;
|
|
@@ -44566,6 +44648,7 @@ export declare const mainChatRoomContract: {
|
|
|
44566
44648
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
44567
44649
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
44568
44650
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
44651
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
44569
44652
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
44570
44653
|
mobileNumber: z.ZodString;
|
|
44571
44654
|
apiKey: z.ZodString;
|
|
@@ -44586,6 +44669,7 @@ export declare const mainChatRoomContract: {
|
|
|
44586
44669
|
accessToken?: string | undefined;
|
|
44587
44670
|
channelSecret?: string | undefined;
|
|
44588
44671
|
additionalCredentials?: any;
|
|
44672
|
+
senderId?: string | undefined;
|
|
44589
44673
|
vonageCredentials?: {
|
|
44590
44674
|
mobileNumber: string;
|
|
44591
44675
|
apiKey: string;
|
|
@@ -44598,6 +44682,7 @@ export declare const mainChatRoomContract: {
|
|
|
44598
44682
|
accessToken?: string | undefined;
|
|
44599
44683
|
channelSecret?: string | undefined;
|
|
44600
44684
|
additionalCredentials?: any;
|
|
44685
|
+
senderId?: string | undefined;
|
|
44601
44686
|
vonageCredentials?: {
|
|
44602
44687
|
mobileNumber: string;
|
|
44603
44688
|
apiKey: string;
|
|
@@ -44844,6 +44929,7 @@ export declare const mainChatRoomContract: {
|
|
|
44844
44929
|
accessToken?: string | undefined;
|
|
44845
44930
|
channelSecret?: string | undefined;
|
|
44846
44931
|
additionalCredentials?: any;
|
|
44932
|
+
senderId?: string | undefined;
|
|
44847
44933
|
vonageCredentials?: {
|
|
44848
44934
|
mobileNumber: string;
|
|
44849
44935
|
apiKey: string;
|
|
@@ -44921,6 +45007,7 @@ export declare const mainChatRoomContract: {
|
|
|
44921
45007
|
accessToken?: string | undefined;
|
|
44922
45008
|
channelSecret?: string | undefined;
|
|
44923
45009
|
additionalCredentials?: any;
|
|
45010
|
+
senderId?: string | undefined;
|
|
44924
45011
|
vonageCredentials?: {
|
|
44925
45012
|
mobileNumber: string;
|
|
44926
45013
|
apiKey: string;
|
|
@@ -46916,6 +47003,7 @@ export declare const mainChatRoomContract: {
|
|
|
46916
47003
|
accessToken?: string | undefined;
|
|
46917
47004
|
channelSecret?: string | undefined;
|
|
46918
47005
|
additionalCredentials?: any;
|
|
47006
|
+
senderId?: string | undefined;
|
|
46919
47007
|
vonageCredentials?: {
|
|
46920
47008
|
mobileNumber: string;
|
|
46921
47009
|
apiKey: string;
|
|
@@ -47305,6 +47393,7 @@ export declare const mainChatRoomContract: {
|
|
|
47305
47393
|
accessToken?: string | undefined;
|
|
47306
47394
|
channelSecret?: string | undefined;
|
|
47307
47395
|
additionalCredentials?: any;
|
|
47396
|
+
senderId?: string | undefined;
|
|
47308
47397
|
vonageCredentials?: {
|
|
47309
47398
|
mobileNumber: string;
|
|
47310
47399
|
apiKey: string;
|
|
@@ -47696,6 +47785,7 @@ export declare const mainChatRoomContract: {
|
|
|
47696
47785
|
accessToken?: string | undefined;
|
|
47697
47786
|
channelSecret?: string | undefined;
|
|
47698
47787
|
additionalCredentials?: any;
|
|
47788
|
+
senderId?: string | undefined;
|
|
47699
47789
|
vonageCredentials?: {
|
|
47700
47790
|
mobileNumber: string;
|
|
47701
47791
|
apiKey: string;
|
|
@@ -48088,6 +48178,7 @@ export declare const mainChatRoomContract: {
|
|
|
48088
48178
|
accessToken?: string | undefined;
|
|
48089
48179
|
channelSecret?: string | undefined;
|
|
48090
48180
|
additionalCredentials?: any;
|
|
48181
|
+
senderId?: string | undefined;
|
|
48091
48182
|
vonageCredentials?: {
|
|
48092
48183
|
mobileNumber: string;
|
|
48093
48184
|
apiKey: string;
|
|
@@ -48530,6 +48621,7 @@ export declare const mainChatRoomContract: {
|
|
|
48530
48621
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
48531
48622
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
48532
48623
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
48624
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
48533
48625
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
48534
48626
|
mobileNumber: z.ZodString;
|
|
48535
48627
|
apiKey: z.ZodString;
|
|
@@ -48550,6 +48642,7 @@ export declare const mainChatRoomContract: {
|
|
|
48550
48642
|
accessToken?: string | undefined;
|
|
48551
48643
|
channelSecret?: string | undefined;
|
|
48552
48644
|
additionalCredentials?: any;
|
|
48645
|
+
senderId?: string | undefined;
|
|
48553
48646
|
vonageCredentials?: {
|
|
48554
48647
|
mobileNumber: string;
|
|
48555
48648
|
apiKey: string;
|
|
@@ -48562,6 +48655,7 @@ export declare const mainChatRoomContract: {
|
|
|
48562
48655
|
accessToken?: string | undefined;
|
|
48563
48656
|
channelSecret?: string | undefined;
|
|
48564
48657
|
additionalCredentials?: any;
|
|
48658
|
+
senderId?: string | undefined;
|
|
48565
48659
|
vonageCredentials?: {
|
|
48566
48660
|
mobileNumber: string;
|
|
48567
48661
|
apiKey: string;
|
|
@@ -48808,6 +48902,7 @@ export declare const mainChatRoomContract: {
|
|
|
48808
48902
|
accessToken?: string | undefined;
|
|
48809
48903
|
channelSecret?: string | undefined;
|
|
48810
48904
|
additionalCredentials?: any;
|
|
48905
|
+
senderId?: string | undefined;
|
|
48811
48906
|
vonageCredentials?: {
|
|
48812
48907
|
mobileNumber: string;
|
|
48813
48908
|
apiKey: string;
|
|
@@ -48885,6 +48980,7 @@ export declare const mainChatRoomContract: {
|
|
|
48885
48980
|
accessToken?: string | undefined;
|
|
48886
48981
|
channelSecret?: string | undefined;
|
|
48887
48982
|
additionalCredentials?: any;
|
|
48983
|
+
senderId?: string | undefined;
|
|
48888
48984
|
vonageCredentials?: {
|
|
48889
48985
|
mobileNumber: string;
|
|
48890
48986
|
apiKey: string;
|
|
@@ -50879,6 +50975,7 @@ export declare const mainChatRoomContract: {
|
|
|
50879
50975
|
accessToken?: string | undefined;
|
|
50880
50976
|
channelSecret?: string | undefined;
|
|
50881
50977
|
additionalCredentials?: any;
|
|
50978
|
+
senderId?: string | undefined;
|
|
50882
50979
|
vonageCredentials?: {
|
|
50883
50980
|
mobileNumber: string;
|
|
50884
50981
|
apiKey: string;
|
|
@@ -51267,6 +51364,7 @@ export declare const mainChatRoomContract: {
|
|
|
51267
51364
|
accessToken?: string | undefined;
|
|
51268
51365
|
channelSecret?: string | undefined;
|
|
51269
51366
|
additionalCredentials?: any;
|
|
51367
|
+
senderId?: string | undefined;
|
|
51270
51368
|
vonageCredentials?: {
|
|
51271
51369
|
mobileNumber: string;
|
|
51272
51370
|
apiKey: string;
|
|
@@ -51657,6 +51755,7 @@ export declare const mainChatRoomContract: {
|
|
|
51657
51755
|
accessToken?: string | undefined;
|
|
51658
51756
|
channelSecret?: string | undefined;
|
|
51659
51757
|
additionalCredentials?: any;
|
|
51758
|
+
senderId?: string | undefined;
|
|
51660
51759
|
vonageCredentials?: {
|
|
51661
51760
|
mobileNumber: string;
|
|
51662
51761
|
apiKey: string;
|
|
@@ -52051,6 +52150,7 @@ export declare const mainChatRoomContract: {
|
|
|
52051
52150
|
accessToken?: string | undefined;
|
|
52052
52151
|
channelSecret?: string | undefined;
|
|
52053
52152
|
additionalCredentials?: any;
|
|
52153
|
+
senderId?: string | undefined;
|
|
52054
52154
|
vonageCredentials?: {
|
|
52055
52155
|
mobileNumber: string;
|
|
52056
52156
|
apiKey: string;
|
|
@@ -54804,6 +54904,7 @@ export declare const mainChatContract: {
|
|
|
54804
54904
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
54805
54905
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
54806
54906
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
54907
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
54807
54908
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
54808
54909
|
mobileNumber: z.ZodString;
|
|
54809
54910
|
apiKey: z.ZodString;
|
|
@@ -54824,6 +54925,7 @@ export declare const mainChatContract: {
|
|
|
54824
54925
|
accessToken?: string | undefined;
|
|
54825
54926
|
channelSecret?: string | undefined;
|
|
54826
54927
|
additionalCredentials?: any;
|
|
54928
|
+
senderId?: string | undefined;
|
|
54827
54929
|
vonageCredentials?: {
|
|
54828
54930
|
mobileNumber: string;
|
|
54829
54931
|
apiKey: string;
|
|
@@ -54836,6 +54938,7 @@ export declare const mainChatContract: {
|
|
|
54836
54938
|
accessToken?: string | undefined;
|
|
54837
54939
|
channelSecret?: string | undefined;
|
|
54838
54940
|
additionalCredentials?: any;
|
|
54941
|
+
senderId?: string | undefined;
|
|
54839
54942
|
vonageCredentials?: {
|
|
54840
54943
|
mobileNumber: string;
|
|
54841
54944
|
apiKey: string;
|
|
@@ -55082,6 +55185,7 @@ export declare const mainChatContract: {
|
|
|
55082
55185
|
accessToken?: string | undefined;
|
|
55083
55186
|
channelSecret?: string | undefined;
|
|
55084
55187
|
additionalCredentials?: any;
|
|
55188
|
+
senderId?: string | undefined;
|
|
55085
55189
|
vonageCredentials?: {
|
|
55086
55190
|
mobileNumber: string;
|
|
55087
55191
|
apiKey: string;
|
|
@@ -55159,6 +55263,7 @@ export declare const mainChatContract: {
|
|
|
55159
55263
|
accessToken?: string | undefined;
|
|
55160
55264
|
channelSecret?: string | undefined;
|
|
55161
55265
|
additionalCredentials?: any;
|
|
55266
|
+
senderId?: string | undefined;
|
|
55162
55267
|
vonageCredentials?: {
|
|
55163
55268
|
mobileNumber: string;
|
|
55164
55269
|
apiKey: string;
|
|
@@ -55684,6 +55789,7 @@ export declare const mainChatContract: {
|
|
|
55684
55789
|
accessToken?: string | undefined;
|
|
55685
55790
|
channelSecret?: string | undefined;
|
|
55686
55791
|
additionalCredentials?: any;
|
|
55792
|
+
senderId?: string | undefined;
|
|
55687
55793
|
vonageCredentials?: {
|
|
55688
55794
|
mobileNumber: string;
|
|
55689
55795
|
apiKey: string;
|
|
@@ -56072,6 +56178,7 @@ export declare const mainChatContract: {
|
|
|
56072
56178
|
accessToken?: string | undefined;
|
|
56073
56179
|
channelSecret?: string | undefined;
|
|
56074
56180
|
additionalCredentials?: any;
|
|
56181
|
+
senderId?: string | undefined;
|
|
56075
56182
|
vonageCredentials?: {
|
|
56076
56183
|
mobileNumber: string;
|
|
56077
56184
|
apiKey: string;
|
|
@@ -59176,6 +59283,7 @@ export declare const mainChatContract: {
|
|
|
59176
59283
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
59177
59284
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
59178
59285
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
59286
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
59179
59287
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
59180
59288
|
mobileNumber: z.ZodString;
|
|
59181
59289
|
apiKey: z.ZodString;
|
|
@@ -59196,6 +59304,7 @@ export declare const mainChatContract: {
|
|
|
59196
59304
|
accessToken?: string | undefined;
|
|
59197
59305
|
channelSecret?: string | undefined;
|
|
59198
59306
|
additionalCredentials?: any;
|
|
59307
|
+
senderId?: string | undefined;
|
|
59199
59308
|
vonageCredentials?: {
|
|
59200
59309
|
mobileNumber: string;
|
|
59201
59310
|
apiKey: string;
|
|
@@ -59208,6 +59317,7 @@ export declare const mainChatContract: {
|
|
|
59208
59317
|
accessToken?: string | undefined;
|
|
59209
59318
|
channelSecret?: string | undefined;
|
|
59210
59319
|
additionalCredentials?: any;
|
|
59320
|
+
senderId?: string | undefined;
|
|
59211
59321
|
vonageCredentials?: {
|
|
59212
59322
|
mobileNumber: string;
|
|
59213
59323
|
apiKey: string;
|
|
@@ -59454,6 +59564,7 @@ export declare const mainChatContract: {
|
|
|
59454
59564
|
accessToken?: string | undefined;
|
|
59455
59565
|
channelSecret?: string | undefined;
|
|
59456
59566
|
additionalCredentials?: any;
|
|
59567
|
+
senderId?: string | undefined;
|
|
59457
59568
|
vonageCredentials?: {
|
|
59458
59569
|
mobileNumber: string;
|
|
59459
59570
|
apiKey: string;
|
|
@@ -59531,6 +59642,7 @@ export declare const mainChatContract: {
|
|
|
59531
59642
|
accessToken?: string | undefined;
|
|
59532
59643
|
channelSecret?: string | undefined;
|
|
59533
59644
|
additionalCredentials?: any;
|
|
59645
|
+
senderId?: string | undefined;
|
|
59534
59646
|
vonageCredentials?: {
|
|
59535
59647
|
mobileNumber: string;
|
|
59536
59648
|
apiKey: string;
|
|
@@ -60056,6 +60168,7 @@ export declare const mainChatContract: {
|
|
|
60056
60168
|
accessToken?: string | undefined;
|
|
60057
60169
|
channelSecret?: string | undefined;
|
|
60058
60170
|
additionalCredentials?: any;
|
|
60171
|
+
senderId?: string | undefined;
|
|
60059
60172
|
vonageCredentials?: {
|
|
60060
60173
|
mobileNumber: string;
|
|
60061
60174
|
apiKey: string;
|
|
@@ -60444,6 +60557,7 @@ export declare const mainChatContract: {
|
|
|
60444
60557
|
accessToken?: string | undefined;
|
|
60445
60558
|
channelSecret?: string | undefined;
|
|
60446
60559
|
additionalCredentials?: any;
|
|
60560
|
+
senderId?: string | undefined;
|
|
60447
60561
|
vonageCredentials?: {
|
|
60448
60562
|
mobileNumber: string;
|
|
60449
60563
|
apiKey: string;
|
|
@@ -62605,6 +62719,7 @@ export declare const mainChatContract: {
|
|
|
62605
62719
|
accessToken?: string | undefined;
|
|
62606
62720
|
channelSecret?: string | undefined;
|
|
62607
62721
|
additionalCredentials?: any;
|
|
62722
|
+
senderId?: string | undefined;
|
|
62608
62723
|
vonageCredentials?: {
|
|
62609
62724
|
mobileNumber: string;
|
|
62610
62725
|
apiKey: string;
|
|
@@ -63330,6 +63445,7 @@ export declare const mainChatContract: {
|
|
|
63330
63445
|
accessToken?: string | undefined;
|
|
63331
63446
|
channelSecret?: string | undefined;
|
|
63332
63447
|
additionalCredentials?: any;
|
|
63448
|
+
senderId?: string | undefined;
|
|
63333
63449
|
vonageCredentials?: {
|
|
63334
63450
|
mobileNumber: string;
|
|
63335
63451
|
apiKey: string;
|
|
@@ -64056,6 +64172,7 @@ export declare const mainChatContract: {
|
|
|
64056
64172
|
accessToken?: string | undefined;
|
|
64057
64173
|
channelSecret?: string | undefined;
|
|
64058
64174
|
additionalCredentials?: any;
|
|
64175
|
+
senderId?: string | undefined;
|
|
64059
64176
|
vonageCredentials?: {
|
|
64060
64177
|
mobileNumber: string;
|
|
64061
64178
|
apiKey: string;
|
|
@@ -64781,6 +64898,7 @@ export declare const mainChatContract: {
|
|
|
64781
64898
|
accessToken?: string | undefined;
|
|
64782
64899
|
channelSecret?: string | undefined;
|
|
64783
64900
|
additionalCredentials?: any;
|
|
64901
|
+
senderId?: string | undefined;
|
|
64784
64902
|
vonageCredentials?: {
|
|
64785
64903
|
mobileNumber: string;
|
|
64786
64904
|
apiKey: string;
|
|
@@ -65507,6 +65625,7 @@ export declare const mainChatContract: {
|
|
|
65507
65625
|
accessToken?: string | undefined;
|
|
65508
65626
|
channelSecret?: string | undefined;
|
|
65509
65627
|
additionalCredentials?: any;
|
|
65628
|
+
senderId?: string | undefined;
|
|
65510
65629
|
vonageCredentials?: {
|
|
65511
65630
|
mobileNumber: string;
|
|
65512
65631
|
apiKey: string;
|
|
@@ -66232,6 +66351,7 @@ export declare const mainChatContract: {
|
|
|
66232
66351
|
accessToken?: string | undefined;
|
|
66233
66352
|
channelSecret?: string | undefined;
|
|
66234
66353
|
additionalCredentials?: any;
|
|
66354
|
+
senderId?: string | undefined;
|
|
66235
66355
|
vonageCredentials?: {
|
|
66236
66356
|
mobileNumber: string;
|
|
66237
66357
|
apiKey: string;
|
|
@@ -66960,6 +67080,7 @@ export declare const mainChatContract: {
|
|
|
66960
67080
|
accessToken?: string | undefined;
|
|
66961
67081
|
channelSecret?: string | undefined;
|
|
66962
67082
|
additionalCredentials?: any;
|
|
67083
|
+
senderId?: string | undefined;
|
|
66963
67084
|
vonageCredentials?: {
|
|
66964
67085
|
mobileNumber: string;
|
|
66965
67086
|
apiKey: string;
|
|
@@ -67685,6 +67806,7 @@ export declare const mainChatContract: {
|
|
|
67685
67806
|
accessToken?: string | undefined;
|
|
67686
67807
|
channelSecret?: string | undefined;
|
|
67687
67808
|
additionalCredentials?: any;
|
|
67809
|
+
senderId?: string | undefined;
|
|
67688
67810
|
vonageCredentials?: {
|
|
67689
67811
|
mobileNumber: string;
|
|
67690
67812
|
apiKey: string;
|
|
@@ -68414,6 +68536,7 @@ export declare const mainChatContract: {
|
|
|
68414
68536
|
accessToken?: string | undefined;
|
|
68415
68537
|
channelSecret?: string | undefined;
|
|
68416
68538
|
additionalCredentials?: any;
|
|
68539
|
+
senderId?: string | undefined;
|
|
68417
68540
|
vonageCredentials?: {
|
|
68418
68541
|
mobileNumber: string;
|
|
68419
68542
|
apiKey: string;
|
|
@@ -69139,6 +69262,7 @@ export declare const mainChatContract: {
|
|
|
69139
69262
|
accessToken?: string | undefined;
|
|
69140
69263
|
channelSecret?: string | undefined;
|
|
69141
69264
|
additionalCredentials?: any;
|
|
69265
|
+
senderId?: string | undefined;
|
|
69142
69266
|
vonageCredentials?: {
|
|
69143
69267
|
mobileNumber: string;
|
|
69144
69268
|
apiKey: string;
|
|
@@ -71333,6 +71457,7 @@ export declare const mainChatContract: {
|
|
|
71333
71457
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
71334
71458
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
71335
71459
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
71460
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
71336
71461
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
71337
71462
|
mobileNumber: z.ZodString;
|
|
71338
71463
|
apiKey: z.ZodString;
|
|
@@ -71353,6 +71478,7 @@ export declare const mainChatContract: {
|
|
|
71353
71478
|
accessToken?: string | undefined;
|
|
71354
71479
|
channelSecret?: string | undefined;
|
|
71355
71480
|
additionalCredentials?: any;
|
|
71481
|
+
senderId?: string | undefined;
|
|
71356
71482
|
vonageCredentials?: {
|
|
71357
71483
|
mobileNumber: string;
|
|
71358
71484
|
apiKey: string;
|
|
@@ -71365,6 +71491,7 @@ export declare const mainChatContract: {
|
|
|
71365
71491
|
accessToken?: string | undefined;
|
|
71366
71492
|
channelSecret?: string | undefined;
|
|
71367
71493
|
additionalCredentials?: any;
|
|
71494
|
+
senderId?: string | undefined;
|
|
71368
71495
|
vonageCredentials?: {
|
|
71369
71496
|
mobileNumber: string;
|
|
71370
71497
|
apiKey: string;
|
|
@@ -71611,6 +71738,7 @@ export declare const mainChatContract: {
|
|
|
71611
71738
|
accessToken?: string | undefined;
|
|
71612
71739
|
channelSecret?: string | undefined;
|
|
71613
71740
|
additionalCredentials?: any;
|
|
71741
|
+
senderId?: string | undefined;
|
|
71614
71742
|
vonageCredentials?: {
|
|
71615
71743
|
mobileNumber: string;
|
|
71616
71744
|
apiKey: string;
|
|
@@ -71688,6 +71816,7 @@ export declare const mainChatContract: {
|
|
|
71688
71816
|
accessToken?: string | undefined;
|
|
71689
71817
|
channelSecret?: string | undefined;
|
|
71690
71818
|
additionalCredentials?: any;
|
|
71819
|
+
senderId?: string | undefined;
|
|
71691
71820
|
vonageCredentials?: {
|
|
71692
71821
|
mobileNumber: string;
|
|
71693
71822
|
apiKey: string;
|
|
@@ -72213,6 +72342,7 @@ export declare const mainChatContract: {
|
|
|
72213
72342
|
accessToken?: string | undefined;
|
|
72214
72343
|
channelSecret?: string | undefined;
|
|
72215
72344
|
additionalCredentials?: any;
|
|
72345
|
+
senderId?: string | undefined;
|
|
72216
72346
|
vonageCredentials?: {
|
|
72217
72347
|
mobileNumber: string;
|
|
72218
72348
|
apiKey: string;
|
|
@@ -72601,6 +72731,7 @@ export declare const mainChatContract: {
|
|
|
72601
72731
|
accessToken?: string | undefined;
|
|
72602
72732
|
channelSecret?: string | undefined;
|
|
72603
72733
|
additionalCredentials?: any;
|
|
72734
|
+
senderId?: string | undefined;
|
|
72604
72735
|
vonageCredentials?: {
|
|
72605
72736
|
mobileNumber: string;
|
|
72606
72737
|
apiKey: string;
|
|
@@ -74762,6 +74893,7 @@ export declare const mainChatContract: {
|
|
|
74762
74893
|
accessToken?: string | undefined;
|
|
74763
74894
|
channelSecret?: string | undefined;
|
|
74764
74895
|
additionalCredentials?: any;
|
|
74896
|
+
senderId?: string | undefined;
|
|
74765
74897
|
vonageCredentials?: {
|
|
74766
74898
|
mobileNumber: string;
|
|
74767
74899
|
apiKey: string;
|
|
@@ -75487,6 +75619,7 @@ export declare const mainChatContract: {
|
|
|
75487
75619
|
accessToken?: string | undefined;
|
|
75488
75620
|
channelSecret?: string | undefined;
|
|
75489
75621
|
additionalCredentials?: any;
|
|
75622
|
+
senderId?: string | undefined;
|
|
75490
75623
|
vonageCredentials?: {
|
|
75491
75624
|
mobileNumber: string;
|
|
75492
75625
|
apiKey: string;
|
|
@@ -76214,6 +76347,7 @@ export declare const mainChatContract: {
|
|
|
76214
76347
|
accessToken?: string | undefined;
|
|
76215
76348
|
channelSecret?: string | undefined;
|
|
76216
76349
|
additionalCredentials?: any;
|
|
76350
|
+
senderId?: string | undefined;
|
|
76217
76351
|
vonageCredentials?: {
|
|
76218
76352
|
mobileNumber: string;
|
|
76219
76353
|
apiKey: string;
|
|
@@ -76942,6 +77076,7 @@ export declare const mainChatContract: {
|
|
|
76942
77076
|
accessToken?: string | undefined;
|
|
76943
77077
|
channelSecret?: string | undefined;
|
|
76944
77078
|
additionalCredentials?: any;
|
|
77079
|
+
senderId?: string | undefined;
|
|
76945
77080
|
vonageCredentials?: {
|
|
76946
77081
|
mobileNumber: string;
|
|
76947
77082
|
apiKey: string;
|
|
@@ -79654,6 +79789,7 @@ export declare const mainChatContract: {
|
|
|
79654
79789
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
79655
79790
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
79656
79791
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
79792
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
79657
79793
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
79658
79794
|
mobileNumber: z.ZodString;
|
|
79659
79795
|
apiKey: z.ZodString;
|
|
@@ -79674,6 +79810,7 @@ export declare const mainChatContract: {
|
|
|
79674
79810
|
accessToken?: string | undefined;
|
|
79675
79811
|
channelSecret?: string | undefined;
|
|
79676
79812
|
additionalCredentials?: any;
|
|
79813
|
+
senderId?: string | undefined;
|
|
79677
79814
|
vonageCredentials?: {
|
|
79678
79815
|
mobileNumber: string;
|
|
79679
79816
|
apiKey: string;
|
|
@@ -79686,6 +79823,7 @@ export declare const mainChatContract: {
|
|
|
79686
79823
|
accessToken?: string | undefined;
|
|
79687
79824
|
channelSecret?: string | undefined;
|
|
79688
79825
|
additionalCredentials?: any;
|
|
79826
|
+
senderId?: string | undefined;
|
|
79689
79827
|
vonageCredentials?: {
|
|
79690
79828
|
mobileNumber: string;
|
|
79691
79829
|
apiKey: string;
|
|
@@ -79932,6 +80070,7 @@ export declare const mainChatContract: {
|
|
|
79932
80070
|
accessToken?: string | undefined;
|
|
79933
80071
|
channelSecret?: string | undefined;
|
|
79934
80072
|
additionalCredentials?: any;
|
|
80073
|
+
senderId?: string | undefined;
|
|
79935
80074
|
vonageCredentials?: {
|
|
79936
80075
|
mobileNumber: string;
|
|
79937
80076
|
apiKey: string;
|
|
@@ -80009,6 +80148,7 @@ export declare const mainChatContract: {
|
|
|
80009
80148
|
accessToken?: string | undefined;
|
|
80010
80149
|
channelSecret?: string | undefined;
|
|
80011
80150
|
additionalCredentials?: any;
|
|
80151
|
+
senderId?: string | undefined;
|
|
80012
80152
|
vonageCredentials?: {
|
|
80013
80153
|
mobileNumber: string;
|
|
80014
80154
|
apiKey: string;
|
|
@@ -80534,6 +80674,7 @@ export declare const mainChatContract: {
|
|
|
80534
80674
|
accessToken?: string | undefined;
|
|
80535
80675
|
channelSecret?: string | undefined;
|
|
80536
80676
|
additionalCredentials?: any;
|
|
80677
|
+
senderId?: string | undefined;
|
|
80537
80678
|
vonageCredentials?: {
|
|
80538
80679
|
mobileNumber: string;
|
|
80539
80680
|
apiKey: string;
|
|
@@ -80922,6 +81063,7 @@ export declare const mainChatContract: {
|
|
|
80922
81063
|
accessToken?: string | undefined;
|
|
80923
81064
|
channelSecret?: string | undefined;
|
|
80924
81065
|
additionalCredentials?: any;
|
|
81066
|
+
senderId?: string | undefined;
|
|
80925
81067
|
vonageCredentials?: {
|
|
80926
81068
|
mobileNumber: string;
|
|
80927
81069
|
apiKey: string;
|
|
@@ -82553,6 +82695,7 @@ export declare const mainChatContract: {
|
|
|
82553
82695
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
82554
82696
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
82555
82697
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
82698
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
82556
82699
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
82557
82700
|
mobileNumber: z.ZodString;
|
|
82558
82701
|
apiKey: z.ZodString;
|
|
@@ -82573,6 +82716,7 @@ export declare const mainChatContract: {
|
|
|
82573
82716
|
accessToken?: string | undefined;
|
|
82574
82717
|
channelSecret?: string | undefined;
|
|
82575
82718
|
additionalCredentials?: any;
|
|
82719
|
+
senderId?: string | undefined;
|
|
82576
82720
|
vonageCredentials?: {
|
|
82577
82721
|
mobileNumber: string;
|
|
82578
82722
|
apiKey: string;
|
|
@@ -82585,6 +82729,7 @@ export declare const mainChatContract: {
|
|
|
82585
82729
|
accessToken?: string | undefined;
|
|
82586
82730
|
channelSecret?: string | undefined;
|
|
82587
82731
|
additionalCredentials?: any;
|
|
82732
|
+
senderId?: string | undefined;
|
|
82588
82733
|
vonageCredentials?: {
|
|
82589
82734
|
mobileNumber: string;
|
|
82590
82735
|
apiKey: string;
|
|
@@ -82831,6 +82976,7 @@ export declare const mainChatContract: {
|
|
|
82831
82976
|
accessToken?: string | undefined;
|
|
82832
82977
|
channelSecret?: string | undefined;
|
|
82833
82978
|
additionalCredentials?: any;
|
|
82979
|
+
senderId?: string | undefined;
|
|
82834
82980
|
vonageCredentials?: {
|
|
82835
82981
|
mobileNumber: string;
|
|
82836
82982
|
apiKey: string;
|
|
@@ -82908,6 +83054,7 @@ export declare const mainChatContract: {
|
|
|
82908
83054
|
accessToken?: string | undefined;
|
|
82909
83055
|
channelSecret?: string | undefined;
|
|
82910
83056
|
additionalCredentials?: any;
|
|
83057
|
+
senderId?: string | undefined;
|
|
82911
83058
|
vonageCredentials?: {
|
|
82912
83059
|
mobileNumber: string;
|
|
82913
83060
|
apiKey: string;
|
|
@@ -84242,6 +84389,7 @@ export declare const mainChatContract: {
|
|
|
84242
84389
|
accessToken?: string | undefined;
|
|
84243
84390
|
channelSecret?: string | undefined;
|
|
84244
84391
|
additionalCredentials?: any;
|
|
84392
|
+
senderId?: string | undefined;
|
|
84245
84393
|
vonageCredentials?: {
|
|
84246
84394
|
mobileNumber: string;
|
|
84247
84395
|
apiKey: string;
|
|
@@ -84506,6 +84654,7 @@ export declare const mainChatContract: {
|
|
|
84506
84654
|
accessToken?: string | undefined;
|
|
84507
84655
|
channelSecret?: string | undefined;
|
|
84508
84656
|
additionalCredentials?: any;
|
|
84657
|
+
senderId?: string | undefined;
|
|
84509
84658
|
vonageCredentials?: {
|
|
84510
84659
|
mobileNumber: string;
|
|
84511
84660
|
apiKey: string;
|
|
@@ -84880,6 +85029,7 @@ export declare const mainChatContract: {
|
|
|
84880
85029
|
accessToken?: string | undefined;
|
|
84881
85030
|
channelSecret?: string | undefined;
|
|
84882
85031
|
additionalCredentials?: any;
|
|
85032
|
+
senderId?: string | undefined;
|
|
84883
85033
|
vonageCredentials?: {
|
|
84884
85034
|
mobileNumber: string;
|
|
84885
85035
|
apiKey: string;
|
|
@@ -85496,6 +85646,7 @@ export declare const mainChatContract: {
|
|
|
85496
85646
|
accessToken?: string | undefined;
|
|
85497
85647
|
channelSecret?: string | undefined;
|
|
85498
85648
|
additionalCredentials?: any;
|
|
85649
|
+
senderId?: string | undefined;
|
|
85499
85650
|
vonageCredentials?: {
|
|
85500
85651
|
mobileNumber: string;
|
|
85501
85652
|
apiKey: string;
|
|
@@ -85873,6 +86024,7 @@ export declare const mainChatContract: {
|
|
|
85873
86024
|
accessToken?: string | undefined;
|
|
85874
86025
|
channelSecret?: string | undefined;
|
|
85875
86026
|
additionalCredentials?: any;
|
|
86027
|
+
senderId?: string | undefined;
|
|
85876
86028
|
vonageCredentials?: {
|
|
85877
86029
|
mobileNumber: string;
|
|
85878
86030
|
apiKey: string;
|
|
@@ -86489,6 +86641,7 @@ export declare const mainChatContract: {
|
|
|
86489
86641
|
accessToken?: string | undefined;
|
|
86490
86642
|
channelSecret?: string | undefined;
|
|
86491
86643
|
additionalCredentials?: any;
|
|
86644
|
+
senderId?: string | undefined;
|
|
86492
86645
|
vonageCredentials?: {
|
|
86493
86646
|
mobileNumber: string;
|
|
86494
86647
|
apiKey: string;
|
|
@@ -86868,6 +87021,7 @@ export declare const mainChatContract: {
|
|
|
86868
87021
|
accessToken?: string | undefined;
|
|
86869
87022
|
channelSecret?: string | undefined;
|
|
86870
87023
|
additionalCredentials?: any;
|
|
87024
|
+
senderId?: string | undefined;
|
|
86871
87025
|
vonageCredentials?: {
|
|
86872
87026
|
mobileNumber: string;
|
|
86873
87027
|
apiKey: string;
|
|
@@ -87484,6 +87638,7 @@ export declare const mainChatContract: {
|
|
|
87484
87638
|
accessToken?: string | undefined;
|
|
87485
87639
|
channelSecret?: string | undefined;
|
|
87486
87640
|
additionalCredentials?: any;
|
|
87641
|
+
senderId?: string | undefined;
|
|
87487
87642
|
vonageCredentials?: {
|
|
87488
87643
|
mobileNumber: string;
|
|
87489
87644
|
apiKey: string;
|
|
@@ -87867,6 +88022,7 @@ export declare const mainChatContract: {
|
|
|
87867
88022
|
accessToken?: string | undefined;
|
|
87868
88023
|
channelSecret?: string | undefined;
|
|
87869
88024
|
additionalCredentials?: any;
|
|
88025
|
+
senderId?: string | undefined;
|
|
87870
88026
|
vonageCredentials?: {
|
|
87871
88027
|
mobileNumber: string;
|
|
87872
88028
|
apiKey: string;
|
|
@@ -88483,6 +88639,7 @@ export declare const mainChatContract: {
|
|
|
88483
88639
|
accessToken?: string | undefined;
|
|
88484
88640
|
channelSecret?: string | undefined;
|
|
88485
88641
|
additionalCredentials?: any;
|
|
88642
|
+
senderId?: string | undefined;
|
|
88486
88643
|
vonageCredentials?: {
|
|
88487
88644
|
mobileNumber: string;
|
|
88488
88645
|
apiKey: string;
|
|
@@ -90266,6 +90423,7 @@ export declare const mainChatContract: {
|
|
|
90266
90423
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
90267
90424
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
90268
90425
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
90426
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
90269
90427
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
90270
90428
|
mobileNumber: z.ZodString;
|
|
90271
90429
|
apiKey: z.ZodString;
|
|
@@ -90286,6 +90444,7 @@ export declare const mainChatContract: {
|
|
|
90286
90444
|
accessToken?: string | undefined;
|
|
90287
90445
|
channelSecret?: string | undefined;
|
|
90288
90446
|
additionalCredentials?: any;
|
|
90447
|
+
senderId?: string | undefined;
|
|
90289
90448
|
vonageCredentials?: {
|
|
90290
90449
|
mobileNumber: string;
|
|
90291
90450
|
apiKey: string;
|
|
@@ -90298,6 +90457,7 @@ export declare const mainChatContract: {
|
|
|
90298
90457
|
accessToken?: string | undefined;
|
|
90299
90458
|
channelSecret?: string | undefined;
|
|
90300
90459
|
additionalCredentials?: any;
|
|
90460
|
+
senderId?: string | undefined;
|
|
90301
90461
|
vonageCredentials?: {
|
|
90302
90462
|
mobileNumber: string;
|
|
90303
90463
|
apiKey: string;
|
|
@@ -90544,6 +90704,7 @@ export declare const mainChatContract: {
|
|
|
90544
90704
|
accessToken?: string | undefined;
|
|
90545
90705
|
channelSecret?: string | undefined;
|
|
90546
90706
|
additionalCredentials?: any;
|
|
90707
|
+
senderId?: string | undefined;
|
|
90547
90708
|
vonageCredentials?: {
|
|
90548
90709
|
mobileNumber: string;
|
|
90549
90710
|
apiKey: string;
|
|
@@ -90621,6 +90782,7 @@ export declare const mainChatContract: {
|
|
|
90621
90782
|
accessToken?: string | undefined;
|
|
90622
90783
|
channelSecret?: string | undefined;
|
|
90623
90784
|
additionalCredentials?: any;
|
|
90785
|
+
senderId?: string | undefined;
|
|
90624
90786
|
vonageCredentials?: {
|
|
90625
90787
|
mobileNumber: string;
|
|
90626
90788
|
apiKey: string;
|
|
@@ -91146,6 +91308,7 @@ export declare const mainChatContract: {
|
|
|
91146
91308
|
accessToken?: string | undefined;
|
|
91147
91309
|
channelSecret?: string | undefined;
|
|
91148
91310
|
additionalCredentials?: any;
|
|
91311
|
+
senderId?: string | undefined;
|
|
91149
91312
|
vonageCredentials?: {
|
|
91150
91313
|
mobileNumber: string;
|
|
91151
91314
|
apiKey: string;
|
|
@@ -91534,6 +91697,7 @@ export declare const mainChatContract: {
|
|
|
91534
91697
|
accessToken?: string | undefined;
|
|
91535
91698
|
channelSecret?: string | undefined;
|
|
91536
91699
|
additionalCredentials?: any;
|
|
91700
|
+
senderId?: string | undefined;
|
|
91537
91701
|
vonageCredentials?: {
|
|
91538
91702
|
mobileNumber: string;
|
|
91539
91703
|
apiKey: string;
|
|
@@ -91924,6 +92088,7 @@ export declare const mainChatContract: {
|
|
|
91924
92088
|
accessToken?: string | undefined;
|
|
91925
92089
|
channelSecret?: string | undefined;
|
|
91926
92090
|
additionalCredentials?: any;
|
|
92091
|
+
senderId?: string | undefined;
|
|
91927
92092
|
vonageCredentials?: {
|
|
91928
92093
|
mobileNumber: string;
|
|
91929
92094
|
apiKey: string;
|
|
@@ -92315,6 +92480,7 @@ export declare const mainChatContract: {
|
|
|
92315
92480
|
accessToken?: string | undefined;
|
|
92316
92481
|
channelSecret?: string | undefined;
|
|
92317
92482
|
additionalCredentials?: any;
|
|
92483
|
+
senderId?: string | undefined;
|
|
92318
92484
|
vonageCredentials?: {
|
|
92319
92485
|
mobileNumber: string;
|
|
92320
92486
|
apiKey: string;
|
|
@@ -94226,6 +94392,7 @@ export declare const mainChatContract: {
|
|
|
94226
94392
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
94227
94393
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
94228
94394
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
94395
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
94229
94396
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
94230
94397
|
mobileNumber: z.ZodString;
|
|
94231
94398
|
apiKey: z.ZodString;
|
|
@@ -94246,6 +94413,7 @@ export declare const mainChatContract: {
|
|
|
94246
94413
|
accessToken?: string | undefined;
|
|
94247
94414
|
channelSecret?: string | undefined;
|
|
94248
94415
|
additionalCredentials?: any;
|
|
94416
|
+
senderId?: string | undefined;
|
|
94249
94417
|
vonageCredentials?: {
|
|
94250
94418
|
mobileNumber: string;
|
|
94251
94419
|
apiKey: string;
|
|
@@ -94258,6 +94426,7 @@ export declare const mainChatContract: {
|
|
|
94258
94426
|
accessToken?: string | undefined;
|
|
94259
94427
|
channelSecret?: string | undefined;
|
|
94260
94428
|
additionalCredentials?: any;
|
|
94429
|
+
senderId?: string | undefined;
|
|
94261
94430
|
vonageCredentials?: {
|
|
94262
94431
|
mobileNumber: string;
|
|
94263
94432
|
apiKey: string;
|
|
@@ -94504,6 +94673,7 @@ export declare const mainChatContract: {
|
|
|
94504
94673
|
accessToken?: string | undefined;
|
|
94505
94674
|
channelSecret?: string | undefined;
|
|
94506
94675
|
additionalCredentials?: any;
|
|
94676
|
+
senderId?: string | undefined;
|
|
94507
94677
|
vonageCredentials?: {
|
|
94508
94678
|
mobileNumber: string;
|
|
94509
94679
|
apiKey: string;
|
|
@@ -94581,6 +94751,7 @@ export declare const mainChatContract: {
|
|
|
94581
94751
|
accessToken?: string | undefined;
|
|
94582
94752
|
channelSecret?: string | undefined;
|
|
94583
94753
|
additionalCredentials?: any;
|
|
94754
|
+
senderId?: string | undefined;
|
|
94584
94755
|
vonageCredentials?: {
|
|
94585
94756
|
mobileNumber: string;
|
|
94586
94757
|
apiKey: string;
|
|
@@ -95106,6 +95277,7 @@ export declare const mainChatContract: {
|
|
|
95106
95277
|
accessToken?: string | undefined;
|
|
95107
95278
|
channelSecret?: string | undefined;
|
|
95108
95279
|
additionalCredentials?: any;
|
|
95280
|
+
senderId?: string | undefined;
|
|
95109
95281
|
vonageCredentials?: {
|
|
95110
95282
|
mobileNumber: string;
|
|
95111
95283
|
apiKey: string;
|
|
@@ -95494,6 +95666,7 @@ export declare const mainChatContract: {
|
|
|
95494
95666
|
accessToken?: string | undefined;
|
|
95495
95667
|
channelSecret?: string | undefined;
|
|
95496
95668
|
additionalCredentials?: any;
|
|
95669
|
+
senderId?: string | undefined;
|
|
95497
95670
|
vonageCredentials?: {
|
|
95498
95671
|
mobileNumber: string;
|
|
95499
95672
|
apiKey: string;
|
|
@@ -95884,6 +96057,7 @@ export declare const mainChatContract: {
|
|
|
95884
96057
|
accessToken?: string | undefined;
|
|
95885
96058
|
channelSecret?: string | undefined;
|
|
95886
96059
|
additionalCredentials?: any;
|
|
96060
|
+
senderId?: string | undefined;
|
|
95887
96061
|
vonageCredentials?: {
|
|
95888
96062
|
mobileNumber: string;
|
|
95889
96063
|
apiKey: string;
|
|
@@ -96275,6 +96449,7 @@ export declare const mainChatContract: {
|
|
|
96275
96449
|
accessToken?: string | undefined;
|
|
96276
96450
|
channelSecret?: string | undefined;
|
|
96277
96451
|
additionalCredentials?: any;
|
|
96452
|
+
senderId?: string | undefined;
|
|
96278
96453
|
vonageCredentials?: {
|
|
96279
96454
|
mobileNumber: string;
|
|
96280
96455
|
apiKey: string;
|
|
@@ -99247,6 +99422,7 @@ export declare const mainChatContract: {
|
|
|
99247
99422
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
99248
99423
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
99249
99424
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
99425
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
99250
99426
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
99251
99427
|
mobileNumber: z.ZodString;
|
|
99252
99428
|
apiKey: z.ZodString;
|
|
@@ -99267,6 +99443,7 @@ export declare const mainChatContract: {
|
|
|
99267
99443
|
accessToken?: string | undefined;
|
|
99268
99444
|
channelSecret?: string | undefined;
|
|
99269
99445
|
additionalCredentials?: any;
|
|
99446
|
+
senderId?: string | undefined;
|
|
99270
99447
|
vonageCredentials?: {
|
|
99271
99448
|
mobileNumber: string;
|
|
99272
99449
|
apiKey: string;
|
|
@@ -99279,6 +99456,7 @@ export declare const mainChatContract: {
|
|
|
99279
99456
|
accessToken?: string | undefined;
|
|
99280
99457
|
channelSecret?: string | undefined;
|
|
99281
99458
|
additionalCredentials?: any;
|
|
99459
|
+
senderId?: string | undefined;
|
|
99282
99460
|
vonageCredentials?: {
|
|
99283
99461
|
mobileNumber: string;
|
|
99284
99462
|
apiKey: string;
|
|
@@ -99525,6 +99703,7 @@ export declare const mainChatContract: {
|
|
|
99525
99703
|
accessToken?: string | undefined;
|
|
99526
99704
|
channelSecret?: string | undefined;
|
|
99527
99705
|
additionalCredentials?: any;
|
|
99706
|
+
senderId?: string | undefined;
|
|
99528
99707
|
vonageCredentials?: {
|
|
99529
99708
|
mobileNumber: string;
|
|
99530
99709
|
apiKey: string;
|
|
@@ -99602,6 +99781,7 @@ export declare const mainChatContract: {
|
|
|
99602
99781
|
accessToken?: string | undefined;
|
|
99603
99782
|
channelSecret?: string | undefined;
|
|
99604
99783
|
additionalCredentials?: any;
|
|
99784
|
+
senderId?: string | undefined;
|
|
99605
99785
|
vonageCredentials?: {
|
|
99606
99786
|
mobileNumber: string;
|
|
99607
99787
|
apiKey: string;
|
|
@@ -100127,6 +100307,7 @@ export declare const mainChatContract: {
|
|
|
100127
100307
|
accessToken?: string | undefined;
|
|
100128
100308
|
channelSecret?: string | undefined;
|
|
100129
100309
|
additionalCredentials?: any;
|
|
100310
|
+
senderId?: string | undefined;
|
|
100130
100311
|
vonageCredentials?: {
|
|
100131
100312
|
mobileNumber: string;
|
|
100132
100313
|
apiKey: string;
|
|
@@ -100515,6 +100696,7 @@ export declare const mainChatContract: {
|
|
|
100515
100696
|
accessToken?: string | undefined;
|
|
100516
100697
|
channelSecret?: string | undefined;
|
|
100517
100698
|
additionalCredentials?: any;
|
|
100699
|
+
senderId?: string | undefined;
|
|
100518
100700
|
vonageCredentials?: {
|
|
100519
100701
|
mobileNumber: string;
|
|
100520
100702
|
apiKey: string;
|
|
@@ -100905,6 +101087,7 @@ export declare const mainChatContract: {
|
|
|
100905
101087
|
accessToken?: string | undefined;
|
|
100906
101088
|
channelSecret?: string | undefined;
|
|
100907
101089
|
additionalCredentials?: any;
|
|
101090
|
+
senderId?: string | undefined;
|
|
100908
101091
|
vonageCredentials?: {
|
|
100909
101092
|
mobileNumber: string;
|
|
100910
101093
|
apiKey: string;
|
|
@@ -101296,6 +101479,7 @@ export declare const mainChatContract: {
|
|
|
101296
101479
|
accessToken?: string | undefined;
|
|
101297
101480
|
channelSecret?: string | undefined;
|
|
101298
101481
|
additionalCredentials?: any;
|
|
101482
|
+
senderId?: string | undefined;
|
|
101299
101483
|
vonageCredentials?: {
|
|
101300
101484
|
mobileNumber: string;
|
|
101301
101485
|
apiKey: string;
|
|
@@ -104046,6 +104230,7 @@ export declare const mainChatMessageContract: {
|
|
|
104046
104230
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
104047
104231
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
104048
104232
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
104233
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
104049
104234
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
104050
104235
|
mobileNumber: z.ZodString;
|
|
104051
104236
|
apiKey: z.ZodString;
|
|
@@ -104066,6 +104251,7 @@ export declare const mainChatMessageContract: {
|
|
|
104066
104251
|
accessToken?: string | undefined;
|
|
104067
104252
|
channelSecret?: string | undefined;
|
|
104068
104253
|
additionalCredentials?: any;
|
|
104254
|
+
senderId?: string | undefined;
|
|
104069
104255
|
vonageCredentials?: {
|
|
104070
104256
|
mobileNumber: string;
|
|
104071
104257
|
apiKey: string;
|
|
@@ -104078,6 +104264,7 @@ export declare const mainChatMessageContract: {
|
|
|
104078
104264
|
accessToken?: string | undefined;
|
|
104079
104265
|
channelSecret?: string | undefined;
|
|
104080
104266
|
additionalCredentials?: any;
|
|
104267
|
+
senderId?: string | undefined;
|
|
104081
104268
|
vonageCredentials?: {
|
|
104082
104269
|
mobileNumber: string;
|
|
104083
104270
|
apiKey: string;
|
|
@@ -104324,6 +104511,7 @@ export declare const mainChatMessageContract: {
|
|
|
104324
104511
|
accessToken?: string | undefined;
|
|
104325
104512
|
channelSecret?: string | undefined;
|
|
104326
104513
|
additionalCredentials?: any;
|
|
104514
|
+
senderId?: string | undefined;
|
|
104327
104515
|
vonageCredentials?: {
|
|
104328
104516
|
mobileNumber: string;
|
|
104329
104517
|
apiKey: string;
|
|
@@ -104401,6 +104589,7 @@ export declare const mainChatMessageContract: {
|
|
|
104401
104589
|
accessToken?: string | undefined;
|
|
104402
104590
|
channelSecret?: string | undefined;
|
|
104403
104591
|
additionalCredentials?: any;
|
|
104592
|
+
senderId?: string | undefined;
|
|
104404
104593
|
vonageCredentials?: {
|
|
104405
104594
|
mobileNumber: string;
|
|
104406
104595
|
apiKey: string;
|
|
@@ -104926,6 +105115,7 @@ export declare const mainChatMessageContract: {
|
|
|
104926
105115
|
accessToken?: string | undefined;
|
|
104927
105116
|
channelSecret?: string | undefined;
|
|
104928
105117
|
additionalCredentials?: any;
|
|
105118
|
+
senderId?: string | undefined;
|
|
104929
105119
|
vonageCredentials?: {
|
|
104930
105120
|
mobileNumber: string;
|
|
104931
105121
|
apiKey: string;
|
|
@@ -105314,6 +105504,7 @@ export declare const mainChatMessageContract: {
|
|
|
105314
105504
|
accessToken?: string | undefined;
|
|
105315
105505
|
channelSecret?: string | undefined;
|
|
105316
105506
|
additionalCredentials?: any;
|
|
105507
|
+
senderId?: string | undefined;
|
|
105317
105508
|
vonageCredentials?: {
|
|
105318
105509
|
mobileNumber: string;
|
|
105319
105510
|
apiKey: string;
|
|
@@ -108418,6 +108609,7 @@ export declare const mainChatMessageContract: {
|
|
|
108418
108609
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
108419
108610
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
108420
108611
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
108612
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
108421
108613
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
108422
108614
|
mobileNumber: z.ZodString;
|
|
108423
108615
|
apiKey: z.ZodString;
|
|
@@ -108438,6 +108630,7 @@ export declare const mainChatMessageContract: {
|
|
|
108438
108630
|
accessToken?: string | undefined;
|
|
108439
108631
|
channelSecret?: string | undefined;
|
|
108440
108632
|
additionalCredentials?: any;
|
|
108633
|
+
senderId?: string | undefined;
|
|
108441
108634
|
vonageCredentials?: {
|
|
108442
108635
|
mobileNumber: string;
|
|
108443
108636
|
apiKey: string;
|
|
@@ -108450,6 +108643,7 @@ export declare const mainChatMessageContract: {
|
|
|
108450
108643
|
accessToken?: string | undefined;
|
|
108451
108644
|
channelSecret?: string | undefined;
|
|
108452
108645
|
additionalCredentials?: any;
|
|
108646
|
+
senderId?: string | undefined;
|
|
108453
108647
|
vonageCredentials?: {
|
|
108454
108648
|
mobileNumber: string;
|
|
108455
108649
|
apiKey: string;
|
|
@@ -108696,6 +108890,7 @@ export declare const mainChatMessageContract: {
|
|
|
108696
108890
|
accessToken?: string | undefined;
|
|
108697
108891
|
channelSecret?: string | undefined;
|
|
108698
108892
|
additionalCredentials?: any;
|
|
108893
|
+
senderId?: string | undefined;
|
|
108699
108894
|
vonageCredentials?: {
|
|
108700
108895
|
mobileNumber: string;
|
|
108701
108896
|
apiKey: string;
|
|
@@ -108773,6 +108968,7 @@ export declare const mainChatMessageContract: {
|
|
|
108773
108968
|
accessToken?: string | undefined;
|
|
108774
108969
|
channelSecret?: string | undefined;
|
|
108775
108970
|
additionalCredentials?: any;
|
|
108971
|
+
senderId?: string | undefined;
|
|
108776
108972
|
vonageCredentials?: {
|
|
108777
108973
|
mobileNumber: string;
|
|
108778
108974
|
apiKey: string;
|
|
@@ -109298,6 +109494,7 @@ export declare const mainChatMessageContract: {
|
|
|
109298
109494
|
accessToken?: string | undefined;
|
|
109299
109495
|
channelSecret?: string | undefined;
|
|
109300
109496
|
additionalCredentials?: any;
|
|
109497
|
+
senderId?: string | undefined;
|
|
109301
109498
|
vonageCredentials?: {
|
|
109302
109499
|
mobileNumber: string;
|
|
109303
109500
|
apiKey: string;
|
|
@@ -109686,6 +109883,7 @@ export declare const mainChatMessageContract: {
|
|
|
109686
109883
|
accessToken?: string | undefined;
|
|
109687
109884
|
channelSecret?: string | undefined;
|
|
109688
109885
|
additionalCredentials?: any;
|
|
109886
|
+
senderId?: string | undefined;
|
|
109689
109887
|
vonageCredentials?: {
|
|
109690
109888
|
mobileNumber: string;
|
|
109691
109889
|
apiKey: string;
|
|
@@ -111847,6 +112045,7 @@ export declare const mainChatMessageContract: {
|
|
|
111847
112045
|
accessToken?: string | undefined;
|
|
111848
112046
|
channelSecret?: string | undefined;
|
|
111849
112047
|
additionalCredentials?: any;
|
|
112048
|
+
senderId?: string | undefined;
|
|
111850
112049
|
vonageCredentials?: {
|
|
111851
112050
|
mobileNumber: string;
|
|
111852
112051
|
apiKey: string;
|
|
@@ -112572,6 +112771,7 @@ export declare const mainChatMessageContract: {
|
|
|
112572
112771
|
accessToken?: string | undefined;
|
|
112573
112772
|
channelSecret?: string | undefined;
|
|
112574
112773
|
additionalCredentials?: any;
|
|
112774
|
+
senderId?: string | undefined;
|
|
112575
112775
|
vonageCredentials?: {
|
|
112576
112776
|
mobileNumber: string;
|
|
112577
112777
|
apiKey: string;
|
|
@@ -113298,6 +113498,7 @@ export declare const mainChatMessageContract: {
|
|
|
113298
113498
|
accessToken?: string | undefined;
|
|
113299
113499
|
channelSecret?: string | undefined;
|
|
113300
113500
|
additionalCredentials?: any;
|
|
113501
|
+
senderId?: string | undefined;
|
|
113301
113502
|
vonageCredentials?: {
|
|
113302
113503
|
mobileNumber: string;
|
|
113303
113504
|
apiKey: string;
|
|
@@ -114023,6 +114224,7 @@ export declare const mainChatMessageContract: {
|
|
|
114023
114224
|
accessToken?: string | undefined;
|
|
114024
114225
|
channelSecret?: string | undefined;
|
|
114025
114226
|
additionalCredentials?: any;
|
|
114227
|
+
senderId?: string | undefined;
|
|
114026
114228
|
vonageCredentials?: {
|
|
114027
114229
|
mobileNumber: string;
|
|
114028
114230
|
apiKey: string;
|
|
@@ -114749,6 +114951,7 @@ export declare const mainChatMessageContract: {
|
|
|
114749
114951
|
accessToken?: string | undefined;
|
|
114750
114952
|
channelSecret?: string | undefined;
|
|
114751
114953
|
additionalCredentials?: any;
|
|
114954
|
+
senderId?: string | undefined;
|
|
114752
114955
|
vonageCredentials?: {
|
|
114753
114956
|
mobileNumber: string;
|
|
114754
114957
|
apiKey: string;
|
|
@@ -115474,6 +115677,7 @@ export declare const mainChatMessageContract: {
|
|
|
115474
115677
|
accessToken?: string | undefined;
|
|
115475
115678
|
channelSecret?: string | undefined;
|
|
115476
115679
|
additionalCredentials?: any;
|
|
115680
|
+
senderId?: string | undefined;
|
|
115477
115681
|
vonageCredentials?: {
|
|
115478
115682
|
mobileNumber: string;
|
|
115479
115683
|
apiKey: string;
|
|
@@ -116202,6 +116406,7 @@ export declare const mainChatMessageContract: {
|
|
|
116202
116406
|
accessToken?: string | undefined;
|
|
116203
116407
|
channelSecret?: string | undefined;
|
|
116204
116408
|
additionalCredentials?: any;
|
|
116409
|
+
senderId?: string | undefined;
|
|
116205
116410
|
vonageCredentials?: {
|
|
116206
116411
|
mobileNumber: string;
|
|
116207
116412
|
apiKey: string;
|
|
@@ -116927,6 +117132,7 @@ export declare const mainChatMessageContract: {
|
|
|
116927
117132
|
accessToken?: string | undefined;
|
|
116928
117133
|
channelSecret?: string | undefined;
|
|
116929
117134
|
additionalCredentials?: any;
|
|
117135
|
+
senderId?: string | undefined;
|
|
116930
117136
|
vonageCredentials?: {
|
|
116931
117137
|
mobileNumber: string;
|
|
116932
117138
|
apiKey: string;
|
|
@@ -117656,6 +117862,7 @@ export declare const mainChatMessageContract: {
|
|
|
117656
117862
|
accessToken?: string | undefined;
|
|
117657
117863
|
channelSecret?: string | undefined;
|
|
117658
117864
|
additionalCredentials?: any;
|
|
117865
|
+
senderId?: string | undefined;
|
|
117659
117866
|
vonageCredentials?: {
|
|
117660
117867
|
mobileNumber: string;
|
|
117661
117868
|
apiKey: string;
|
|
@@ -118381,6 +118588,7 @@ export declare const mainChatMessageContract: {
|
|
|
118381
118588
|
accessToken?: string | undefined;
|
|
118382
118589
|
channelSecret?: string | undefined;
|
|
118383
118590
|
additionalCredentials?: any;
|
|
118591
|
+
senderId?: string | undefined;
|
|
118384
118592
|
vonageCredentials?: {
|
|
118385
118593
|
mobileNumber: string;
|
|
118386
118594
|
apiKey: string;
|
|
@@ -119066,6 +119274,7 @@ export declare const mainChatMessageContract: {
|
|
|
119066
119274
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
119067
119275
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
119068
119276
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
119277
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
119069
119278
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
119070
119279
|
mobileNumber: z.ZodString;
|
|
119071
119280
|
apiKey: z.ZodString;
|
|
@@ -119086,6 +119295,7 @@ export declare const mainChatMessageContract: {
|
|
|
119086
119295
|
accessToken?: string | undefined;
|
|
119087
119296
|
channelSecret?: string | undefined;
|
|
119088
119297
|
additionalCredentials?: any;
|
|
119298
|
+
senderId?: string | undefined;
|
|
119089
119299
|
vonageCredentials?: {
|
|
119090
119300
|
mobileNumber: string;
|
|
119091
119301
|
apiKey: string;
|
|
@@ -119098,6 +119308,7 @@ export declare const mainChatMessageContract: {
|
|
|
119098
119308
|
accessToken?: string | undefined;
|
|
119099
119309
|
channelSecret?: string | undefined;
|
|
119100
119310
|
additionalCredentials?: any;
|
|
119311
|
+
senderId?: string | undefined;
|
|
119101
119312
|
vonageCredentials?: {
|
|
119102
119313
|
mobileNumber: string;
|
|
119103
119314
|
apiKey: string;
|
|
@@ -119140,6 +119351,7 @@ export declare const mainChatMessageContract: {
|
|
|
119140
119351
|
accessToken?: string | undefined;
|
|
119141
119352
|
channelSecret?: string | undefined;
|
|
119142
119353
|
additionalCredentials?: any;
|
|
119354
|
+
senderId?: string | undefined;
|
|
119143
119355
|
vonageCredentials?: {
|
|
119144
119356
|
mobileNumber: string;
|
|
119145
119357
|
apiKey: string;
|
|
@@ -119170,6 +119382,7 @@ export declare const mainChatMessageContract: {
|
|
|
119170
119382
|
accessToken?: string | undefined;
|
|
119171
119383
|
channelSecret?: string | undefined;
|
|
119172
119384
|
additionalCredentials?: any;
|
|
119385
|
+
senderId?: string | undefined;
|
|
119173
119386
|
vonageCredentials?: {
|
|
119174
119387
|
mobileNumber: string;
|
|
119175
119388
|
apiKey: string;
|
|
@@ -119203,6 +119416,7 @@ export declare const mainChatMessageContract: {
|
|
|
119203
119416
|
accessToken?: string | undefined;
|
|
119204
119417
|
channelSecret?: string | undefined;
|
|
119205
119418
|
additionalCredentials?: any;
|
|
119419
|
+
senderId?: string | undefined;
|
|
119206
119420
|
vonageCredentials?: {
|
|
119207
119421
|
mobileNumber: string;
|
|
119208
119422
|
apiKey: string;
|
|
@@ -119236,6 +119450,7 @@ export declare const mainChatMessageContract: {
|
|
|
119236
119450
|
accessToken?: string | undefined;
|
|
119237
119451
|
channelSecret?: string | undefined;
|
|
119238
119452
|
additionalCredentials?: any;
|
|
119453
|
+
senderId?: string | undefined;
|
|
119239
119454
|
vonageCredentials?: {
|
|
119240
119455
|
mobileNumber: string;
|
|
119241
119456
|
apiKey: string;
|
|
@@ -119421,6 +119636,7 @@ export declare const mainChatMessageContract: {
|
|
|
119421
119636
|
accessToken?: string | undefined;
|
|
119422
119637
|
channelSecret?: string | undefined;
|
|
119423
119638
|
additionalCredentials?: any;
|
|
119639
|
+
senderId?: string | undefined;
|
|
119424
119640
|
vonageCredentials?: {
|
|
119425
119641
|
mobileNumber: string;
|
|
119426
119642
|
apiKey: string;
|
|
@@ -119488,6 +119704,7 @@ export declare const mainChatMessageContract: {
|
|
|
119488
119704
|
accessToken?: string | undefined;
|
|
119489
119705
|
channelSecret?: string | undefined;
|
|
119490
119706
|
additionalCredentials?: any;
|
|
119707
|
+
senderId?: string | undefined;
|
|
119491
119708
|
vonageCredentials?: {
|
|
119492
119709
|
mobileNumber: string;
|
|
119493
119710
|
apiKey: string;
|
|
@@ -119557,6 +119774,7 @@ export declare const mainChatMessageContract: {
|
|
|
119557
119774
|
accessToken?: string | undefined;
|
|
119558
119775
|
channelSecret?: string | undefined;
|
|
119559
119776
|
additionalCredentials?: any;
|
|
119777
|
+
senderId?: string | undefined;
|
|
119560
119778
|
vonageCredentials?: {
|
|
119561
119779
|
mobileNumber: string;
|
|
119562
119780
|
apiKey: string;
|
|
@@ -119627,6 +119845,7 @@ export declare const mainChatMessageContract: {
|
|
|
119627
119845
|
accessToken?: string | undefined;
|
|
119628
119846
|
channelSecret?: string | undefined;
|
|
119629
119847
|
additionalCredentials?: any;
|
|
119848
|
+
senderId?: string | undefined;
|
|
119630
119849
|
vonageCredentials?: {
|
|
119631
119850
|
mobileNumber: string;
|
|
119632
119851
|
apiKey: string;
|
|
@@ -121195,6 +121414,7 @@ export declare const mainChatMessageContract: {
|
|
|
121195
121414
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
121196
121415
|
channelSecret: z.ZodOptional<z.ZodString>;
|
|
121197
121416
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
121417
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
121198
121418
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
121199
121419
|
mobileNumber: z.ZodString;
|
|
121200
121420
|
apiKey: z.ZodString;
|
|
@@ -121215,6 +121435,7 @@ export declare const mainChatMessageContract: {
|
|
|
121215
121435
|
accessToken?: string | undefined;
|
|
121216
121436
|
channelSecret?: string | undefined;
|
|
121217
121437
|
additionalCredentials?: any;
|
|
121438
|
+
senderId?: string | undefined;
|
|
121218
121439
|
vonageCredentials?: {
|
|
121219
121440
|
mobileNumber: string;
|
|
121220
121441
|
apiKey: string;
|
|
@@ -121227,6 +121448,7 @@ export declare const mainChatMessageContract: {
|
|
|
121227
121448
|
accessToken?: string | undefined;
|
|
121228
121449
|
channelSecret?: string | undefined;
|
|
121229
121450
|
additionalCredentials?: any;
|
|
121451
|
+
senderId?: string | undefined;
|
|
121230
121452
|
vonageCredentials?: {
|
|
121231
121453
|
mobileNumber: string;
|
|
121232
121454
|
apiKey: string;
|
|
@@ -121473,6 +121695,7 @@ export declare const mainChatMessageContract: {
|
|
|
121473
121695
|
accessToken?: string | undefined;
|
|
121474
121696
|
channelSecret?: string | undefined;
|
|
121475
121697
|
additionalCredentials?: any;
|
|
121698
|
+
senderId?: string | undefined;
|
|
121476
121699
|
vonageCredentials?: {
|
|
121477
121700
|
mobileNumber: string;
|
|
121478
121701
|
apiKey: string;
|
|
@@ -121550,6 +121773,7 @@ export declare const mainChatMessageContract: {
|
|
|
121550
121773
|
accessToken?: string | undefined;
|
|
121551
121774
|
channelSecret?: string | undefined;
|
|
121552
121775
|
additionalCredentials?: any;
|
|
121776
|
+
senderId?: string | undefined;
|
|
121553
121777
|
vonageCredentials?: {
|
|
121554
121778
|
mobileNumber: string;
|
|
121555
121779
|
apiKey: string;
|
|
@@ -122075,6 +122299,7 @@ export declare const mainChatMessageContract: {
|
|
|
122075
122299
|
accessToken?: string | undefined;
|
|
122076
122300
|
channelSecret?: string | undefined;
|
|
122077
122301
|
additionalCredentials?: any;
|
|
122302
|
+
senderId?: string | undefined;
|
|
122078
122303
|
vonageCredentials?: {
|
|
122079
122304
|
mobileNumber: string;
|
|
122080
122305
|
apiKey: string;
|
|
@@ -122463,6 +122688,7 @@ export declare const mainChatMessageContract: {
|
|
|
122463
122688
|
accessToken?: string | undefined;
|
|
122464
122689
|
channelSecret?: string | undefined;
|
|
122465
122690
|
additionalCredentials?: any;
|
|
122691
|
+
senderId?: string | undefined;
|
|
122466
122692
|
vonageCredentials?: {
|
|
122467
122693
|
mobileNumber: string;
|
|
122468
122694
|
apiKey: string;
|
|
@@ -124624,6 +124850,7 @@ export declare const mainChatMessageContract: {
|
|
|
124624
124850
|
accessToken?: string | undefined;
|
|
124625
124851
|
channelSecret?: string | undefined;
|
|
124626
124852
|
additionalCredentials?: any;
|
|
124853
|
+
senderId?: string | undefined;
|
|
124627
124854
|
vonageCredentials?: {
|
|
124628
124855
|
mobileNumber: string;
|
|
124629
124856
|
apiKey: string;
|
|
@@ -125349,6 +125576,7 @@ export declare const mainChatMessageContract: {
|
|
|
125349
125576
|
accessToken?: string | undefined;
|
|
125350
125577
|
channelSecret?: string | undefined;
|
|
125351
125578
|
additionalCredentials?: any;
|
|
125579
|
+
senderId?: string | undefined;
|
|
125352
125580
|
vonageCredentials?: {
|
|
125353
125581
|
mobileNumber: string;
|
|
125354
125582
|
apiKey: string;
|
|
@@ -126076,6 +126304,7 @@ export declare const mainChatMessageContract: {
|
|
|
126076
126304
|
accessToken?: string | undefined;
|
|
126077
126305
|
channelSecret?: string | undefined;
|
|
126078
126306
|
additionalCredentials?: any;
|
|
126307
|
+
senderId?: string | undefined;
|
|
126079
126308
|
vonageCredentials?: {
|
|
126080
126309
|
mobileNumber: string;
|
|
126081
126310
|
apiKey: string;
|
|
@@ -126804,6 +127033,7 @@ export declare const mainChatMessageContract: {
|
|
|
126804
127033
|
accessToken?: string | undefined;
|
|
126805
127034
|
channelSecret?: string | undefined;
|
|
126806
127035
|
additionalCredentials?: any;
|
|
127036
|
+
senderId?: string | undefined;
|
|
126807
127037
|
vonageCredentials?: {
|
|
126808
127038
|
mobileNumber: string;
|
|
126809
127039
|
apiKey: string;
|