@kl1/contracts 1.1.46 → 1.1.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/channel/index.d.ts +184 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +21 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +8 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +230 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +90 -0
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +79 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +817 -3
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +83 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +75 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +9 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +83 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +21 -0
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/schema.d.ts +5 -0
- package/dist/api-contracts/src/sms/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/validation.d.ts +3 -0
- package/dist/api-contracts/src/sms/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +20328 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -0
- package/dist/api-contracts/src/telegram/schema.d.ts +2 -0
- package/dist/api-contracts/src/telegram/schema.d.ts.map +1 -0
- package/dist/api-contracts/src/telegram/validation.d.ts +45 -0
- package/dist/api-contracts/src/telegram/validation.d.ts.map +1 -0
- package/dist/api-contracts/src/viber/index.d.ts +61 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +40 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +24 -3
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +22 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -2568,6 +2568,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2568
2568
|
accessToken: z.ZodOptional<z.ZodString>;
|
2569
2569
|
channelSecret: z.ZodOptional<z.ZodString>;
|
2570
2570
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2571
|
+
senderId: z.ZodOptional<z.ZodString>;
|
2571
2572
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
2572
2573
|
mobileNumber: z.ZodString;
|
2573
2574
|
apiKey: z.ZodString;
|
@@ -2588,6 +2589,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2588
2589
|
accessToken?: string | undefined;
|
2589
2590
|
channelSecret?: string | undefined;
|
2590
2591
|
additionalCredentials?: any;
|
2592
|
+
senderId?: string | undefined;
|
2591
2593
|
vonageCredentials?: {
|
2592
2594
|
mobileNumber: string;
|
2593
2595
|
apiKey: string;
|
@@ -2600,6 +2602,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2600
2602
|
accessToken?: string | undefined;
|
2601
2603
|
channelSecret?: string | undefined;
|
2602
2604
|
additionalCredentials?: any;
|
2605
|
+
senderId?: string | undefined;
|
2603
2606
|
vonageCredentials?: {
|
2604
2607
|
mobileNumber: string;
|
2605
2608
|
apiKey: string;
|
@@ -2608,6 +2611,9 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2608
2611
|
lineRichMenuId?: string | null | undefined;
|
2609
2612
|
}>;
|
2610
2613
|
brandName: z.ZodString;
|
2614
|
+
/**
|
2615
|
+
* Message Type Enum
|
2616
|
+
*/
|
2611
2617
|
platformId: z.ZodString;
|
2612
2618
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
2613
2619
|
isReloginRequired: z.ZodBoolean;
|
@@ -2646,6 +2652,9 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2646
2652
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
2647
2653
|
roles: z.ZodArray<z.ZodObject<{
|
2648
2654
|
id: z.ZodString;
|
2655
|
+
/**
|
2656
|
+
* Room
|
2657
|
+
*/
|
2649
2658
|
createdAt: z.ZodDate;
|
2650
2659
|
updatedAt: z.ZodDate;
|
2651
2660
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
@@ -2846,6 +2855,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2846
2855
|
accessToken?: string | undefined;
|
2847
2856
|
channelSecret?: string | undefined;
|
2848
2857
|
additionalCredentials?: any;
|
2858
|
+
senderId?: string | undefined;
|
2849
2859
|
vonageCredentials?: {
|
2850
2860
|
mobileNumber: string;
|
2851
2861
|
apiKey: string;
|
@@ -2923,6 +2933,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2923
2933
|
accessToken?: string | undefined;
|
2924
2934
|
channelSecret?: string | undefined;
|
2925
2935
|
additionalCredentials?: any;
|
2936
|
+
senderId?: string | undefined;
|
2926
2937
|
vonageCredentials?: {
|
2927
2938
|
mobileNumber: string;
|
2928
2939
|
apiKey: string;
|
@@ -3448,6 +3459,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3448
3459
|
accessToken?: string | undefined;
|
3449
3460
|
channelSecret?: string | undefined;
|
3450
3461
|
additionalCredentials?: any;
|
3462
|
+
senderId?: string | undefined;
|
3451
3463
|
vonageCredentials?: {
|
3452
3464
|
mobileNumber: string;
|
3453
3465
|
apiKey: string;
|
@@ -3836,6 +3848,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3836
3848
|
accessToken?: string | undefined;
|
3837
3849
|
channelSecret?: string | undefined;
|
3838
3850
|
additionalCredentials?: any;
|
3851
|
+
senderId?: string | undefined;
|
3839
3852
|
vonageCredentials?: {
|
3840
3853
|
mobileNumber: string;
|
3841
3854
|
apiKey: string;
|
@@ -5718,6 +5731,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5718
5731
|
accessToken: z.ZodOptional<z.ZodString>;
|
5719
5732
|
channelSecret: z.ZodOptional<z.ZodString>;
|
5720
5733
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
5734
|
+
senderId: z.ZodOptional<z.ZodString>;
|
5721
5735
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
5722
5736
|
mobileNumber: z.ZodString;
|
5723
5737
|
apiKey: z.ZodString;
|
@@ -5738,6 +5752,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5738
5752
|
accessToken?: string | undefined;
|
5739
5753
|
channelSecret?: string | undefined;
|
5740
5754
|
additionalCredentials?: any;
|
5755
|
+
senderId?: string | undefined;
|
5741
5756
|
vonageCredentials?: {
|
5742
5757
|
mobileNumber: string;
|
5743
5758
|
apiKey: string;
|
@@ -5750,6 +5765,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5750
5765
|
accessToken?: string | undefined;
|
5751
5766
|
channelSecret?: string | undefined;
|
5752
5767
|
additionalCredentials?: any;
|
5768
|
+
senderId?: string | undefined;
|
5753
5769
|
vonageCredentials?: {
|
5754
5770
|
mobileNumber: string;
|
5755
5771
|
apiKey: string;
|
@@ -5758,6 +5774,9 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5758
5774
|
lineRichMenuId?: string | null | undefined;
|
5759
5775
|
}>;
|
5760
5776
|
brandName: z.ZodString;
|
5777
|
+
/**
|
5778
|
+
* Message Type Enum
|
5779
|
+
*/
|
5761
5780
|
platformId: z.ZodString;
|
5762
5781
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
5763
5782
|
isReloginRequired: z.ZodBoolean;
|
@@ -5796,6 +5815,9 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5796
5815
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
5797
5816
|
roles: z.ZodArray<z.ZodObject<{
|
5798
5817
|
id: z.ZodString;
|
5818
|
+
/**
|
5819
|
+
* Room
|
5820
|
+
*/
|
5799
5821
|
createdAt: z.ZodDate;
|
5800
5822
|
updatedAt: z.ZodDate;
|
5801
5823
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
@@ -5996,6 +6018,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5996
6018
|
accessToken?: string | undefined;
|
5997
6019
|
channelSecret?: string | undefined;
|
5998
6020
|
additionalCredentials?: any;
|
6021
|
+
senderId?: string | undefined;
|
5999
6022
|
vonageCredentials?: {
|
6000
6023
|
mobileNumber: string;
|
6001
6024
|
apiKey: string;
|
@@ -6073,6 +6096,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6073
6096
|
accessToken?: string | undefined;
|
6074
6097
|
channelSecret?: string | undefined;
|
6075
6098
|
additionalCredentials?: any;
|
6099
|
+
senderId?: string | undefined;
|
6076
6100
|
vonageCredentials?: {
|
6077
6101
|
mobileNumber: string;
|
6078
6102
|
apiKey: string;
|
@@ -6598,6 +6622,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6598
6622
|
accessToken?: string | undefined;
|
6599
6623
|
channelSecret?: string | undefined;
|
6600
6624
|
additionalCredentials?: any;
|
6625
|
+
senderId?: string | undefined;
|
6601
6626
|
vonageCredentials?: {
|
6602
6627
|
mobileNumber: string;
|
6603
6628
|
apiKey: string;
|
@@ -6986,6 +7011,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6986
7011
|
accessToken?: string | undefined;
|
6987
7012
|
channelSecret?: string | undefined;
|
6988
7013
|
additionalCredentials?: any;
|
7014
|
+
senderId?: string | undefined;
|
6989
7015
|
vonageCredentials?: {
|
6990
7016
|
mobileNumber: string;
|
6991
7017
|
apiKey: string;
|
@@ -9147,6 +9173,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
9147
9173
|
accessToken?: string | undefined;
|
9148
9174
|
channelSecret?: string | undefined;
|
9149
9175
|
additionalCredentials?: any;
|
9176
|
+
senderId?: string | undefined;
|
9150
9177
|
vonageCredentials?: {
|
9151
9178
|
mobileNumber: string;
|
9152
9179
|
apiKey: string;
|
@@ -9872,6 +9899,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
9872
9899
|
accessToken?: string | undefined;
|
9873
9900
|
channelSecret?: string | undefined;
|
9874
9901
|
additionalCredentials?: any;
|
9902
|
+
senderId?: string | undefined;
|
9875
9903
|
vonageCredentials?: {
|
9876
9904
|
mobileNumber: string;
|
9877
9905
|
apiKey: string;
|
@@ -12415,6 +12443,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12415
12443
|
accessToken: z.ZodOptional<z.ZodString>;
|
12416
12444
|
channelSecret: z.ZodOptional<z.ZodString>;
|
12417
12445
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
12446
|
+
senderId: z.ZodOptional<z.ZodString>;
|
12418
12447
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
12419
12448
|
mobileNumber: z.ZodString;
|
12420
12449
|
apiKey: z.ZodString;
|
@@ -12435,6 +12464,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12435
12464
|
accessToken?: string | undefined;
|
12436
12465
|
channelSecret?: string | undefined;
|
12437
12466
|
additionalCredentials?: any;
|
12467
|
+
senderId?: string | undefined;
|
12438
12468
|
vonageCredentials?: {
|
12439
12469
|
mobileNumber: string;
|
12440
12470
|
apiKey: string;
|
@@ -12447,6 +12477,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12447
12477
|
accessToken?: string | undefined;
|
12448
12478
|
channelSecret?: string | undefined;
|
12449
12479
|
additionalCredentials?: any;
|
12480
|
+
senderId?: string | undefined;
|
12450
12481
|
vonageCredentials?: {
|
12451
12482
|
mobileNumber: string;
|
12452
12483
|
apiKey: string;
|
@@ -12455,6 +12486,9 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12455
12486
|
lineRichMenuId?: string | null | undefined;
|
12456
12487
|
}>;
|
12457
12488
|
brandName: z.ZodString;
|
12489
|
+
/**
|
12490
|
+
* Message Type Enum
|
12491
|
+
*/
|
12458
12492
|
platformId: z.ZodString;
|
12459
12493
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
12460
12494
|
isReloginRequired: z.ZodBoolean;
|
@@ -12493,6 +12527,9 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12493
12527
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
12494
12528
|
roles: z.ZodArray<z.ZodObject<{
|
12495
12529
|
id: z.ZodString;
|
12530
|
+
/**
|
12531
|
+
* Room
|
12532
|
+
*/
|
12496
12533
|
createdAt: z.ZodDate;
|
12497
12534
|
updatedAt: z.ZodDate;
|
12498
12535
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
@@ -12693,6 +12730,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12693
12730
|
accessToken?: string | undefined;
|
12694
12731
|
channelSecret?: string | undefined;
|
12695
12732
|
additionalCredentials?: any;
|
12733
|
+
senderId?: string | undefined;
|
12696
12734
|
vonageCredentials?: {
|
12697
12735
|
mobileNumber: string;
|
12698
12736
|
apiKey: string;
|
@@ -12770,6 +12808,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
12770
12808
|
accessToken?: string | undefined;
|
12771
12809
|
channelSecret?: string | undefined;
|
12772
12810
|
additionalCredentials?: any;
|
12811
|
+
senderId?: string | undefined;
|
12773
12812
|
vonageCredentials?: {
|
12774
12813
|
mobileNumber: string;
|
12775
12814
|
apiKey: string;
|
@@ -13295,6 +13334,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
13295
13334
|
accessToken?: string | undefined;
|
13296
13335
|
channelSecret?: string | undefined;
|
13297
13336
|
additionalCredentials?: any;
|
13337
|
+
senderId?: string | undefined;
|
13298
13338
|
vonageCredentials?: {
|
13299
13339
|
mobileNumber: string;
|
13300
13340
|
apiKey: string;
|
@@ -13683,6 +13723,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
13683
13723
|
accessToken?: string | undefined;
|
13684
13724
|
channelSecret?: string | undefined;
|
13685
13725
|
additionalCredentials?: any;
|
13726
|
+
senderId?: string | undefined;
|
13686
13727
|
vonageCredentials?: {
|
13687
13728
|
mobileNumber: string;
|
13688
13729
|
apiKey: string;
|
@@ -15314,6 +15355,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15314
15355
|
accessToken: z.ZodOptional<z.ZodString>;
|
15315
15356
|
channelSecret: z.ZodOptional<z.ZodString>;
|
15316
15357
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
15358
|
+
senderId: z.ZodOptional<z.ZodString>;
|
15317
15359
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
15318
15360
|
mobileNumber: z.ZodString;
|
15319
15361
|
apiKey: z.ZodString;
|
@@ -15334,6 +15376,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15334
15376
|
accessToken?: string | undefined;
|
15335
15377
|
channelSecret?: string | undefined;
|
15336
15378
|
additionalCredentials?: any;
|
15379
|
+
senderId?: string | undefined;
|
15337
15380
|
vonageCredentials?: {
|
15338
15381
|
mobileNumber: string;
|
15339
15382
|
apiKey: string;
|
@@ -15346,6 +15389,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15346
15389
|
accessToken?: string | undefined;
|
15347
15390
|
channelSecret?: string | undefined;
|
15348
15391
|
additionalCredentials?: any;
|
15392
|
+
senderId?: string | undefined;
|
15349
15393
|
vonageCredentials?: {
|
15350
15394
|
mobileNumber: string;
|
15351
15395
|
apiKey: string;
|
@@ -15354,6 +15398,9 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15354
15398
|
lineRichMenuId?: string | null | undefined;
|
15355
15399
|
}>;
|
15356
15400
|
brandName: z.ZodString;
|
15401
|
+
/**
|
15402
|
+
* Message Type Enum
|
15403
|
+
*/
|
15357
15404
|
platformId: z.ZodString;
|
15358
15405
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
15359
15406
|
isReloginRequired: z.ZodBoolean;
|
@@ -15392,6 +15439,9 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15392
15439
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
15393
15440
|
roles: z.ZodArray<z.ZodObject<{
|
15394
15441
|
id: z.ZodString;
|
15442
|
+
/**
|
15443
|
+
* Room
|
15444
|
+
*/
|
15395
15445
|
createdAt: z.ZodDate;
|
15396
15446
|
updatedAt: z.ZodDate;
|
15397
15447
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
@@ -15592,6 +15642,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15592
15642
|
accessToken?: string | undefined;
|
15593
15643
|
channelSecret?: string | undefined;
|
15594
15644
|
additionalCredentials?: any;
|
15645
|
+
senderId?: string | undefined;
|
15595
15646
|
vonageCredentials?: {
|
15596
15647
|
mobileNumber: string;
|
15597
15648
|
apiKey: string;
|
@@ -15669,6 +15720,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15669
15720
|
accessToken?: string | undefined;
|
15670
15721
|
channelSecret?: string | undefined;
|
15671
15722
|
additionalCredentials?: any;
|
15723
|
+
senderId?: string | undefined;
|
15672
15724
|
vonageCredentials?: {
|
15673
15725
|
mobileNumber: string;
|
15674
15726
|
apiKey: string;
|
@@ -17003,6 +17055,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
17003
17055
|
accessToken?: string | undefined;
|
17004
17056
|
channelSecret?: string | undefined;
|
17005
17057
|
additionalCredentials?: any;
|
17058
|
+
senderId?: string | undefined;
|
17006
17059
|
vonageCredentials?: {
|
17007
17060
|
mobileNumber: string;
|
17008
17061
|
apiKey: string;
|
@@ -17267,6 +17320,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
17267
17320
|
accessToken?: string | undefined;
|
17268
17321
|
channelSecret?: string | undefined;
|
17269
17322
|
additionalCredentials?: any;
|
17323
|
+
senderId?: string | undefined;
|
17270
17324
|
vonageCredentials?: {
|
17271
17325
|
mobileNumber: string;
|
17272
17326
|
apiKey: string;
|
@@ -17641,6 +17695,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
17641
17695
|
accessToken?: string | undefined;
|
17642
17696
|
channelSecret?: string | undefined;
|
17643
17697
|
additionalCredentials?: any;
|
17698
|
+
senderId?: string | undefined;
|
17644
17699
|
vonageCredentials?: {
|
17645
17700
|
mobileNumber: string;
|
17646
17701
|
apiKey: string;
|
@@ -18257,6 +18312,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
18257
18312
|
accessToken?: string | undefined;
|
18258
18313
|
channelSecret?: string | undefined;
|
18259
18314
|
additionalCredentials?: any;
|
18315
|
+
senderId?: string | undefined;
|
18260
18316
|
vonageCredentials?: {
|
18261
18317
|
mobileNumber: string;
|
18262
18318
|
apiKey: string;
|
@@ -18634,6 +18690,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
18634
18690
|
accessToken?: string | undefined;
|
18635
18691
|
channelSecret?: string | undefined;
|
18636
18692
|
additionalCredentials?: any;
|
18693
|
+
senderId?: string | undefined;
|
18637
18694
|
vonageCredentials?: {
|
18638
18695
|
mobileNumber: string;
|
18639
18696
|
apiKey: string;
|
@@ -19250,6 +19307,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
19250
19307
|
accessToken?: string | undefined;
|
19251
19308
|
channelSecret?: string | undefined;
|
19252
19309
|
additionalCredentials?: any;
|
19310
|
+
senderId?: string | undefined;
|
19253
19311
|
vonageCredentials?: {
|
19254
19312
|
mobileNumber: string;
|
19255
19313
|
apiKey: string;
|
@@ -22447,6 +22505,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22447
22505
|
accessToken: z.ZodOptional<z.ZodString>;
|
22448
22506
|
channelSecret: z.ZodOptional<z.ZodString>;
|
22449
22507
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
22508
|
+
senderId: z.ZodOptional<z.ZodString>;
|
22450
22509
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
22451
22510
|
mobileNumber: z.ZodString;
|
22452
22511
|
apiKey: z.ZodString;
|
@@ -22467,6 +22526,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22467
22526
|
accessToken?: string | undefined;
|
22468
22527
|
channelSecret?: string | undefined;
|
22469
22528
|
additionalCredentials?: any;
|
22529
|
+
senderId?: string | undefined;
|
22470
22530
|
vonageCredentials?: {
|
22471
22531
|
mobileNumber: string;
|
22472
22532
|
apiKey: string;
|
@@ -22479,6 +22539,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22479
22539
|
accessToken?: string | undefined;
|
22480
22540
|
channelSecret?: string | undefined;
|
22481
22541
|
additionalCredentials?: any;
|
22542
|
+
senderId?: string | undefined;
|
22482
22543
|
vonageCredentials?: {
|
22483
22544
|
mobileNumber: string;
|
22484
22545
|
apiKey: string;
|
@@ -22487,6 +22548,9 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22487
22548
|
lineRichMenuId?: string | null | undefined;
|
22488
22549
|
}>;
|
22489
22550
|
brandName: z.ZodString;
|
22551
|
+
/**
|
22552
|
+
* Message Type Enum
|
22553
|
+
*/
|
22490
22554
|
platformId: z.ZodString;
|
22491
22555
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
22492
22556
|
isReloginRequired: z.ZodBoolean;
|
@@ -22525,6 +22589,9 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22525
22589
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
22526
22590
|
roles: z.ZodArray<z.ZodObject<{
|
22527
22591
|
id: z.ZodString;
|
22592
|
+
/**
|
22593
|
+
* Room
|
22594
|
+
*/
|
22528
22595
|
createdAt: z.ZodDate;
|
22529
22596
|
updatedAt: z.ZodDate;
|
22530
22597
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
@@ -22725,6 +22792,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22725
22792
|
accessToken?: string | undefined;
|
22726
22793
|
channelSecret?: string | undefined;
|
22727
22794
|
additionalCredentials?: any;
|
22795
|
+
senderId?: string | undefined;
|
22728
22796
|
vonageCredentials?: {
|
22729
22797
|
mobileNumber: string;
|
22730
22798
|
apiKey: string;
|
@@ -22802,6 +22870,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
22802
22870
|
accessToken?: string | undefined;
|
22803
22871
|
channelSecret?: string | undefined;
|
22804
22872
|
additionalCredentials?: any;
|
22873
|
+
senderId?: string | undefined;
|
22805
22874
|
vonageCredentials?: {
|
22806
22875
|
mobileNumber: string;
|
22807
22876
|
apiKey: string;
|
@@ -23327,6 +23396,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
23327
23396
|
accessToken?: string | undefined;
|
23328
23397
|
channelSecret?: string | undefined;
|
23329
23398
|
additionalCredentials?: any;
|
23399
|
+
senderId?: string | undefined;
|
23330
23400
|
vonageCredentials?: {
|
23331
23401
|
mobileNumber: string;
|
23332
23402
|
apiKey: string;
|
@@ -23715,6 +23785,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
23715
23785
|
accessToken?: string | undefined;
|
23716
23786
|
channelSecret?: string | undefined;
|
23717
23787
|
additionalCredentials?: any;
|
23788
|
+
senderId?: string | undefined;
|
23718
23789
|
vonageCredentials?: {
|
23719
23790
|
mobileNumber: string;
|
23720
23791
|
apiKey: string;
|
@@ -27866,6 +27937,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
27866
27937
|
accessToken: z.ZodOptional<z.ZodString>;
|
27867
27938
|
channelSecret: z.ZodOptional<z.ZodString>;
|
27868
27939
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
27940
|
+
senderId: z.ZodOptional<z.ZodString>;
|
27869
27941
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
27870
27942
|
mobileNumber: z.ZodString;
|
27871
27943
|
apiKey: z.ZodString;
|
@@ -27886,6 +27958,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
27886
27958
|
accessToken?: string | undefined;
|
27887
27959
|
channelSecret?: string | undefined;
|
27888
27960
|
additionalCredentials?: any;
|
27961
|
+
senderId?: string | undefined;
|
27889
27962
|
vonageCredentials?: {
|
27890
27963
|
mobileNumber: string;
|
27891
27964
|
apiKey: string;
|
@@ -27898,6 +27971,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
27898
27971
|
accessToken?: string | undefined;
|
27899
27972
|
channelSecret?: string | undefined;
|
27900
27973
|
additionalCredentials?: any;
|
27974
|
+
senderId?: string | undefined;
|
27901
27975
|
vonageCredentials?: {
|
27902
27976
|
mobileNumber: string;
|
27903
27977
|
apiKey: string;
|
@@ -27906,6 +27980,9 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
27906
27980
|
lineRichMenuId?: string | null | undefined;
|
27907
27981
|
}>;
|
27908
27982
|
brandName: z.ZodString;
|
27983
|
+
/**
|
27984
|
+
* Message Type Enum
|
27985
|
+
*/
|
27909
27986
|
platformId: z.ZodString;
|
27910
27987
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
27911
27988
|
isReloginRequired: z.ZodBoolean;
|
@@ -27944,6 +28021,9 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
27944
28021
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
27945
28022
|
roles: z.ZodArray<z.ZodObject<{
|
27946
28023
|
id: z.ZodString;
|
28024
|
+
/**
|
28025
|
+
* Room
|
28026
|
+
*/
|
27947
28027
|
createdAt: z.ZodDate;
|
27948
28028
|
updatedAt: z.ZodDate;
|
27949
28029
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
@@ -28144,6 +28224,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
28144
28224
|
accessToken?: string | undefined;
|
28145
28225
|
channelSecret?: string | undefined;
|
28146
28226
|
additionalCredentials?: any;
|
28227
|
+
senderId?: string | undefined;
|
28147
28228
|
vonageCredentials?: {
|
28148
28229
|
mobileNumber: string;
|
28149
28230
|
apiKey: string;
|
@@ -28221,6 +28302,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
28221
28302
|
accessToken?: string | undefined;
|
28222
28303
|
channelSecret?: string | undefined;
|
28223
28304
|
additionalCredentials?: any;
|
28305
|
+
senderId?: string | undefined;
|
28224
28306
|
vonageCredentials?: {
|
28225
28307
|
mobileNumber: string;
|
28226
28308
|
apiKey: string;
|
@@ -28746,6 +28828,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
28746
28828
|
accessToken?: string | undefined;
|
28747
28829
|
channelSecret?: string | undefined;
|
28748
28830
|
additionalCredentials?: any;
|
28831
|
+
senderId?: string | undefined;
|
28749
28832
|
vonageCredentials?: {
|
28750
28833
|
mobileNumber: string;
|
28751
28834
|
apiKey: string;
|
@@ -29134,6 +29217,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
29134
29217
|
accessToken?: string | undefined;
|
29135
29218
|
channelSecret?: string | undefined;
|
29136
29219
|
additionalCredentials?: any;
|
29220
|
+
senderId?: string | undefined;
|
29137
29221
|
vonageCredentials?: {
|
29138
29222
|
mobileNumber: string;
|
29139
29223
|
apiKey: string;
|
@@ -31295,6 +31379,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
31295
31379
|
accessToken?: string | undefined;
|
31296
31380
|
channelSecret?: string | undefined;
|
31297
31381
|
additionalCredentials?: any;
|
31382
|
+
senderId?: string | undefined;
|
31298
31383
|
vonageCredentials?: {
|
31299
31384
|
mobileNumber: string;
|
31300
31385
|
apiKey: string;
|
@@ -32020,6 +32105,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
32020
32105
|
accessToken?: string | undefined;
|
32021
32106
|
channelSecret?: string | undefined;
|
32022
32107
|
additionalCredentials?: any;
|
32108
|
+
senderId?: string | undefined;
|
32023
32109
|
vonageCredentials?: {
|
32024
32110
|
mobileNumber: string;
|
32025
32111
|
apiKey: string;
|
@@ -32752,6 +32838,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
32752
32838
|
accessToken?: string | undefined;
|
32753
32839
|
channelSecret?: string | undefined;
|
32754
32840
|
additionalCredentials?: any;
|
32841
|
+
senderId?: string | undefined;
|
32755
32842
|
vonageCredentials?: {
|
32756
32843
|
mobileNumber: string;
|
32757
32844
|
apiKey: string;
|
@@ -33472,6 +33559,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
33472
33559
|
accessToken?: string | undefined;
|
33473
33560
|
channelSecret?: string | undefined;
|
33474
33561
|
additionalCredentials?: any;
|
33562
|
+
senderId?: string | undefined;
|
33475
33563
|
vonageCredentials?: {
|
33476
33564
|
mobileNumber: string;
|
33477
33565
|
apiKey: string;
|
@@ -34330,6 +34418,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
34330
34418
|
accessToken?: string | undefined;
|
34331
34419
|
channelSecret?: string | undefined;
|
34332
34420
|
additionalCredentials?: any;
|
34421
|
+
senderId?: string | undefined;
|
34333
34422
|
vonageCredentials?: {
|
34334
34423
|
mobileNumber: string;
|
34335
34424
|
apiKey: string;
|
@@ -35050,6 +35139,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
35050
35139
|
accessToken?: string | undefined;
|
35051
35140
|
channelSecret?: string | undefined;
|
35052
35141
|
additionalCredentials?: any;
|
35142
|
+
senderId?: string | undefined;
|
35053
35143
|
vonageCredentials?: {
|
35054
35144
|
mobileNumber: string;
|
35055
35145
|
apiKey: string;
|