@kl1/contracts 1.1.43-uat → 1.1.44-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/index.js +106 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +106 -8
- package/dist/index.mjs.map +1 -1
- package/dist/src/botpress/index.d.ts +17 -8
- package/dist/src/botpress/index.d.ts.map +1 -1
- package/dist/src/botpress/validation.d.ts +17 -8
- package/dist/src/botpress/validation.d.ts.map +1 -1
- package/dist/src/channel/index.d.ts +105 -7
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +8 -0
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +6 -1
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +116 -0
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +16 -0
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +75 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +845 -15
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +11 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +9 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +141 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/instagram/validation.d.ts +7 -0
- package/dist/src/instagram/validation.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +132 -0
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/validation.d.ts +26 -0
- package/dist/src/line/validation.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +111 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/messenger/validation.d.ts +5 -0
- package/dist/src/messenger/validation.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +125 -0
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +7 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +125 -0
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +7 -0
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +60 -0
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +34 -0
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +18 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/package.json +10 -4
package/dist/src/line/index.d.ts
CHANGED
@@ -117,24 +117,28 @@ export declare const lineContract: {
|
|
117
117
|
accessToken: z.ZodOptional<z.ZodString>;
|
118
118
|
channelSecret: z.ZodOptional<z.ZodString>;
|
119
119
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
120
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
120
121
|
}, "strip", z.ZodTypeAny, {
|
121
122
|
id: string;
|
122
123
|
name: string;
|
123
124
|
accessToken?: string | undefined;
|
124
125
|
channelSecret?: string | undefined;
|
125
126
|
additionalCredentials?: any;
|
127
|
+
lineRichMenuId?: string | null | undefined;
|
126
128
|
}, {
|
127
129
|
id: string;
|
128
130
|
name: string;
|
129
131
|
accessToken?: string | undefined;
|
130
132
|
channelSecret?: string | undefined;
|
131
133
|
additionalCredentials?: any;
|
134
|
+
lineRichMenuId?: string | null | undefined;
|
132
135
|
}>;
|
133
136
|
platformId: z.ZodString;
|
134
137
|
brandName: z.ZodString;
|
135
138
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
136
139
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
137
140
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
141
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
138
142
|
actor: z.ZodOptional<z.ZodObject<{
|
139
143
|
id: z.ZodString;
|
140
144
|
name: z.ZodString;
|
@@ -164,12 +168,14 @@ export declare const lineContract: {
|
|
164
168
|
accessToken?: string | undefined;
|
165
169
|
channelSecret?: string | undefined;
|
166
170
|
additionalCredentials?: any;
|
171
|
+
lineRichMenuId?: string | null | undefined;
|
167
172
|
};
|
168
173
|
status: boolean;
|
169
174
|
brandName: string;
|
170
175
|
platformId: string;
|
171
176
|
connectedUserName?: string | null | undefined;
|
172
177
|
connectedUserId?: string | null | undefined;
|
178
|
+
lineRichMenuId?: string | null | undefined;
|
173
179
|
actor?: {
|
174
180
|
id: string;
|
175
181
|
address: string | null;
|
@@ -187,12 +193,14 @@ export declare const lineContract: {
|
|
187
193
|
accessToken?: string | undefined;
|
188
194
|
channelSecret?: string | undefined;
|
189
195
|
additionalCredentials?: any;
|
196
|
+
lineRichMenuId?: string | null | undefined;
|
190
197
|
};
|
191
198
|
status: boolean;
|
192
199
|
brandName: string;
|
193
200
|
platformId: string;
|
194
201
|
connectedUserName?: string | null | undefined;
|
195
202
|
connectedUserId?: string | null | undefined;
|
203
|
+
lineRichMenuId?: string | null | undefined;
|
196
204
|
actor?: {
|
197
205
|
id: string;
|
198
206
|
address: string | null;
|
@@ -213,12 +221,14 @@ export declare const lineContract: {
|
|
213
221
|
accessToken?: string | undefined;
|
214
222
|
channelSecret?: string | undefined;
|
215
223
|
additionalCredentials?: any;
|
224
|
+
lineRichMenuId?: string | null | undefined;
|
216
225
|
};
|
217
226
|
status: boolean;
|
218
227
|
brandName: string;
|
219
228
|
platformId: string;
|
220
229
|
connectedUserName?: string | null | undefined;
|
221
230
|
connectedUserId?: string | null | undefined;
|
231
|
+
lineRichMenuId?: string | null | undefined;
|
222
232
|
actor?: {
|
223
233
|
id: string;
|
224
234
|
address: string | null;
|
@@ -268,12 +278,14 @@ export declare const lineContract: {
|
|
268
278
|
accessToken?: string | undefined;
|
269
279
|
channelSecret?: string | undefined;
|
270
280
|
additionalCredentials?: any;
|
281
|
+
lineRichMenuId?: string | null | undefined;
|
271
282
|
};
|
272
283
|
status: boolean;
|
273
284
|
brandName: string;
|
274
285
|
platformId: string;
|
275
286
|
connectedUserName?: string | null | undefined;
|
276
287
|
connectedUserId?: string | null | undefined;
|
288
|
+
lineRichMenuId?: string | null | undefined;
|
277
289
|
actor?: {
|
278
290
|
id: string;
|
279
291
|
address: string | null;
|
@@ -451,12 +463,14 @@ export declare const lineContract: {
|
|
451
463
|
accessToken?: string | undefined;
|
452
464
|
channelSecret?: string | undefined;
|
453
465
|
additionalCredentials?: any;
|
466
|
+
lineRichMenuId?: string | null | undefined;
|
454
467
|
};
|
455
468
|
status: boolean;
|
456
469
|
brandName: string;
|
457
470
|
platformId: string;
|
458
471
|
connectedUserName?: string | null | undefined;
|
459
472
|
connectedUserId?: string | null | undefined;
|
473
|
+
lineRichMenuId?: string | null | undefined;
|
460
474
|
actor?: {
|
461
475
|
id: string;
|
462
476
|
address: string | null;
|
@@ -537,12 +551,14 @@ export declare const lineContract: {
|
|
537
551
|
accessToken?: string | undefined;
|
538
552
|
channelSecret?: string | undefined;
|
539
553
|
additionalCredentials?: any;
|
554
|
+
lineRichMenuId?: string | null | undefined;
|
540
555
|
};
|
541
556
|
status: boolean;
|
542
557
|
brandName: string;
|
543
558
|
platformId: string;
|
544
559
|
connectedUserName?: string | null | undefined;
|
545
560
|
connectedUserId?: string | null | undefined;
|
561
|
+
lineRichMenuId?: string | null | undefined;
|
546
562
|
actor?: {
|
547
563
|
id: string;
|
548
564
|
address: string | null;
|
@@ -678,24 +694,28 @@ export declare const lineContract: {
|
|
678
694
|
accessToken: z.ZodOptional<z.ZodString>;
|
679
695
|
channelSecret: z.ZodOptional<z.ZodString>;
|
680
696
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
697
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
681
698
|
}, "strip", z.ZodTypeAny, {
|
682
699
|
id: string;
|
683
700
|
name: string;
|
684
701
|
accessToken?: string | undefined;
|
685
702
|
channelSecret?: string | undefined;
|
686
703
|
additionalCredentials?: any;
|
704
|
+
lineRichMenuId?: string | null | undefined;
|
687
705
|
}, {
|
688
706
|
id: string;
|
689
707
|
name: string;
|
690
708
|
accessToken?: string | undefined;
|
691
709
|
channelSecret?: string | undefined;
|
692
710
|
additionalCredentials?: any;
|
711
|
+
lineRichMenuId?: string | null | undefined;
|
693
712
|
}>;
|
694
713
|
platformId: z.ZodString;
|
695
714
|
brandName: z.ZodString;
|
696
715
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
697
716
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
698
717
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
718
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
699
719
|
actor: z.ZodOptional<z.ZodObject<{
|
700
720
|
id: z.ZodString;
|
701
721
|
name: z.ZodString;
|
@@ -725,12 +745,14 @@ export declare const lineContract: {
|
|
725
745
|
accessToken?: string | undefined;
|
726
746
|
channelSecret?: string | undefined;
|
727
747
|
additionalCredentials?: any;
|
748
|
+
lineRichMenuId?: string | null | undefined;
|
728
749
|
};
|
729
750
|
status: boolean;
|
730
751
|
brandName: string;
|
731
752
|
platformId: string;
|
732
753
|
connectedUserName?: string | null | undefined;
|
733
754
|
connectedUserId?: string | null | undefined;
|
755
|
+
lineRichMenuId?: string | null | undefined;
|
734
756
|
actor?: {
|
735
757
|
id: string;
|
736
758
|
address: string | null;
|
@@ -748,12 +770,14 @@ export declare const lineContract: {
|
|
748
770
|
accessToken?: string | undefined;
|
749
771
|
channelSecret?: string | undefined;
|
750
772
|
additionalCredentials?: any;
|
773
|
+
lineRichMenuId?: string | null | undefined;
|
751
774
|
};
|
752
775
|
status: boolean;
|
753
776
|
brandName: string;
|
754
777
|
platformId: string;
|
755
778
|
connectedUserName?: string | null | undefined;
|
756
779
|
connectedUserId?: string | null | undefined;
|
780
|
+
lineRichMenuId?: string | null | undefined;
|
757
781
|
actor?: {
|
758
782
|
id: string;
|
759
783
|
address: string | null;
|
@@ -773,12 +797,14 @@ export declare const lineContract: {
|
|
773
797
|
accessToken?: string | undefined;
|
774
798
|
channelSecret?: string | undefined;
|
775
799
|
additionalCredentials?: any;
|
800
|
+
lineRichMenuId?: string | null | undefined;
|
776
801
|
};
|
777
802
|
status: boolean;
|
778
803
|
brandName: string;
|
779
804
|
platformId: string;
|
780
805
|
connectedUserName?: string | null | undefined;
|
781
806
|
connectedUserId?: string | null | undefined;
|
807
|
+
lineRichMenuId?: string | null | undefined;
|
782
808
|
actor?: {
|
783
809
|
id: string;
|
784
810
|
address: string | null;
|
@@ -799,12 +825,14 @@ export declare const lineContract: {
|
|
799
825
|
accessToken?: string | undefined;
|
800
826
|
channelSecret?: string | undefined;
|
801
827
|
additionalCredentials?: any;
|
828
|
+
lineRichMenuId?: string | null | undefined;
|
802
829
|
};
|
803
830
|
status: boolean;
|
804
831
|
brandName: string;
|
805
832
|
platformId: string;
|
806
833
|
connectedUserName?: string | null | undefined;
|
807
834
|
connectedUserId?: string | null | undefined;
|
835
|
+
lineRichMenuId?: string | null | undefined;
|
808
836
|
actor?: {
|
809
837
|
id: string;
|
810
838
|
address: string | null;
|
@@ -974,24 +1002,28 @@ export declare const lineContract: {
|
|
974
1002
|
accessToken: z.ZodOptional<z.ZodString>;
|
975
1003
|
channelSecret: z.ZodOptional<z.ZodString>;
|
976
1004
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
1005
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
977
1006
|
}, "strip", z.ZodTypeAny, {
|
978
1007
|
id: string;
|
979
1008
|
name: string;
|
980
1009
|
accessToken?: string | undefined;
|
981
1010
|
channelSecret?: string | undefined;
|
982
1011
|
additionalCredentials?: any;
|
1012
|
+
lineRichMenuId?: string | null | undefined;
|
983
1013
|
}, {
|
984
1014
|
id: string;
|
985
1015
|
name: string;
|
986
1016
|
accessToken?: string | undefined;
|
987
1017
|
channelSecret?: string | undefined;
|
988
1018
|
additionalCredentials?: any;
|
1019
|
+
lineRichMenuId?: string | null | undefined;
|
989
1020
|
}>;
|
990
1021
|
platformId: z.ZodString;
|
991
1022
|
brandName: z.ZodString;
|
992
1023
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
993
1024
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
994
1025
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1026
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
995
1027
|
actor: z.ZodOptional<z.ZodObject<{
|
996
1028
|
id: z.ZodString;
|
997
1029
|
name: z.ZodString;
|
@@ -1021,12 +1053,14 @@ export declare const lineContract: {
|
|
1021
1053
|
accessToken?: string | undefined;
|
1022
1054
|
channelSecret?: string | undefined;
|
1023
1055
|
additionalCredentials?: any;
|
1056
|
+
lineRichMenuId?: string | null | undefined;
|
1024
1057
|
};
|
1025
1058
|
status: boolean;
|
1026
1059
|
brandName: string;
|
1027
1060
|
platformId: string;
|
1028
1061
|
connectedUserName?: string | null | undefined;
|
1029
1062
|
connectedUserId?: string | null | undefined;
|
1063
|
+
lineRichMenuId?: string | null | undefined;
|
1030
1064
|
actor?: {
|
1031
1065
|
id: string;
|
1032
1066
|
address: string | null;
|
@@ -1044,12 +1078,14 @@ export declare const lineContract: {
|
|
1044
1078
|
accessToken?: string | undefined;
|
1045
1079
|
channelSecret?: string | undefined;
|
1046
1080
|
additionalCredentials?: any;
|
1081
|
+
lineRichMenuId?: string | null | undefined;
|
1047
1082
|
};
|
1048
1083
|
status: boolean;
|
1049
1084
|
brandName: string;
|
1050
1085
|
platformId: string;
|
1051
1086
|
connectedUserName?: string | null | undefined;
|
1052
1087
|
connectedUserId?: string | null | undefined;
|
1088
|
+
lineRichMenuId?: string | null | undefined;
|
1053
1089
|
actor?: {
|
1054
1090
|
id: string;
|
1055
1091
|
address: string | null;
|
@@ -1071,12 +1107,14 @@ export declare const lineContract: {
|
|
1071
1107
|
accessToken?: string | undefined;
|
1072
1108
|
channelSecret?: string | undefined;
|
1073
1109
|
additionalCredentials?: any;
|
1110
|
+
lineRichMenuId?: string | null | undefined;
|
1074
1111
|
};
|
1075
1112
|
status: boolean;
|
1076
1113
|
brandName: string;
|
1077
1114
|
platformId: string;
|
1078
1115
|
connectedUserName?: string | null | undefined;
|
1079
1116
|
connectedUserId?: string | null | undefined;
|
1117
|
+
lineRichMenuId?: string | null | undefined;
|
1080
1118
|
actor?: {
|
1081
1119
|
id: string;
|
1082
1120
|
address: string | null;
|
@@ -1137,12 +1175,14 @@ export declare const lineContract: {
|
|
1137
1175
|
accessToken?: string | undefined;
|
1138
1176
|
channelSecret?: string | undefined;
|
1139
1177
|
additionalCredentials?: any;
|
1178
|
+
lineRichMenuId?: string | null | undefined;
|
1140
1179
|
};
|
1141
1180
|
status: boolean;
|
1142
1181
|
brandName: string;
|
1143
1182
|
platformId: string;
|
1144
1183
|
connectedUserName?: string | null | undefined;
|
1145
1184
|
connectedUserId?: string | null | undefined;
|
1185
|
+
lineRichMenuId?: string | null | undefined;
|
1146
1186
|
actor?: {
|
1147
1187
|
id: string;
|
1148
1188
|
address: string | null;
|
@@ -1343,12 +1383,14 @@ export declare const lineContract: {
|
|
1343
1383
|
accessToken?: string | undefined;
|
1344
1384
|
channelSecret?: string | undefined;
|
1345
1385
|
additionalCredentials?: any;
|
1386
|
+
lineRichMenuId?: string | null | undefined;
|
1346
1387
|
};
|
1347
1388
|
status: boolean;
|
1348
1389
|
brandName: string;
|
1349
1390
|
platformId: string;
|
1350
1391
|
connectedUserName?: string | null | undefined;
|
1351
1392
|
connectedUserId?: string | null | undefined;
|
1393
|
+
lineRichMenuId?: string | null | undefined;
|
1352
1394
|
actor?: {
|
1353
1395
|
id: string;
|
1354
1396
|
address: string | null;
|
@@ -1441,12 +1483,14 @@ export declare const lineContract: {
|
|
1441
1483
|
accessToken?: string | undefined;
|
1442
1484
|
channelSecret?: string | undefined;
|
1443
1485
|
additionalCredentials?: any;
|
1486
|
+
lineRichMenuId?: string | null | undefined;
|
1444
1487
|
};
|
1445
1488
|
status: boolean;
|
1446
1489
|
brandName: string;
|
1447
1490
|
platformId: string;
|
1448
1491
|
connectedUserName?: string | null | undefined;
|
1449
1492
|
connectedUserId?: string | null | undefined;
|
1493
|
+
lineRichMenuId?: string | null | undefined;
|
1450
1494
|
actor?: {
|
1451
1495
|
id: string;
|
1452
1496
|
address: string | null;
|
@@ -2891,18 +2935,21 @@ export declare const lineContract: {
|
|
2891
2935
|
accessToken: z.ZodOptional<z.ZodString>;
|
2892
2936
|
channelSecret: z.ZodOptional<z.ZodString>;
|
2893
2937
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2938
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2894
2939
|
}, "strip", z.ZodTypeAny, {
|
2895
2940
|
id: string;
|
2896
2941
|
name: string;
|
2897
2942
|
accessToken?: string | undefined;
|
2898
2943
|
channelSecret?: string | undefined;
|
2899
2944
|
additionalCredentials?: any;
|
2945
|
+
lineRichMenuId?: string | null | undefined;
|
2900
2946
|
}, {
|
2901
2947
|
id: string;
|
2902
2948
|
name: string;
|
2903
2949
|
accessToken?: string | undefined;
|
2904
2950
|
channelSecret?: string | undefined;
|
2905
2951
|
additionalCredentials?: any;
|
2952
|
+
lineRichMenuId?: string | null | undefined;
|
2906
2953
|
}>;
|
2907
2954
|
brandName: z.ZodString;
|
2908
2955
|
platformId: z.ZodString;
|
@@ -3143,6 +3190,7 @@ export declare const lineContract: {
|
|
3143
3190
|
accessToken?: string | undefined;
|
3144
3191
|
channelSecret?: string | undefined;
|
3145
3192
|
additionalCredentials?: any;
|
3193
|
+
lineRichMenuId?: string | null | undefined;
|
3146
3194
|
};
|
3147
3195
|
status: boolean;
|
3148
3196
|
createdAt: Date;
|
@@ -3214,6 +3262,7 @@ export declare const lineContract: {
|
|
3214
3262
|
accessToken?: string | undefined;
|
3215
3263
|
channelSecret?: string | undefined;
|
3216
3264
|
additionalCredentials?: any;
|
3265
|
+
lineRichMenuId?: string | null | undefined;
|
3217
3266
|
};
|
3218
3267
|
status: boolean;
|
3219
3268
|
createdAt: Date;
|
@@ -3732,6 +3781,7 @@ export declare const lineContract: {
|
|
3732
3781
|
accessToken?: string | undefined;
|
3733
3782
|
channelSecret?: string | undefined;
|
3734
3783
|
additionalCredentials?: any;
|
3784
|
+
lineRichMenuId?: string | null | undefined;
|
3735
3785
|
};
|
3736
3786
|
status: boolean;
|
3737
3787
|
createdAt: Date;
|
@@ -4098,6 +4148,7 @@ export declare const lineContract: {
|
|
4098
4148
|
accessToken?: string | undefined;
|
4099
4149
|
channelSecret?: string | undefined;
|
4100
4150
|
additionalCredentials?: any;
|
4151
|
+
lineRichMenuId?: string | null | undefined;
|
4101
4152
|
};
|
4102
4153
|
status: boolean;
|
4103
4154
|
createdAt: Date;
|
@@ -6235,6 +6286,7 @@ export declare const lineContract: {
|
|
6235
6286
|
accessToken?: string | undefined;
|
6236
6287
|
channelSecret?: string | undefined;
|
6237
6288
|
additionalCredentials?: any;
|
6289
|
+
lineRichMenuId?: string | null | undefined;
|
6238
6290
|
};
|
6239
6291
|
status: boolean;
|
6240
6292
|
createdAt: Date;
|
@@ -6936,6 +6988,7 @@ export declare const lineContract: {
|
|
6936
6988
|
accessToken?: string | undefined;
|
6937
6989
|
channelSecret?: string | undefined;
|
6938
6990
|
additionalCredentials?: any;
|
6991
|
+
lineRichMenuId?: string | null | undefined;
|
6939
6992
|
};
|
6940
6993
|
status: boolean;
|
6941
6994
|
createdAt: Date;
|
@@ -7639,6 +7692,7 @@ export declare const lineContract: {
|
|
7639
7692
|
accessToken?: string | undefined;
|
7640
7693
|
channelSecret?: string | undefined;
|
7641
7694
|
additionalCredentials?: any;
|
7695
|
+
lineRichMenuId?: string | null | undefined;
|
7642
7696
|
};
|
7643
7697
|
status: boolean;
|
7644
7698
|
createdAt: Date;
|
@@ -8343,6 +8397,7 @@ export declare const lineContract: {
|
|
8343
8397
|
accessToken?: string | undefined;
|
8344
8398
|
channelSecret?: string | undefined;
|
8345
8399
|
additionalCredentials?: any;
|
8400
|
+
lineRichMenuId?: string | null | undefined;
|
8346
8401
|
};
|
8347
8402
|
status: boolean;
|
8348
8403
|
createdAt: Date;
|
@@ -8949,24 +9004,28 @@ export declare const lineContract: {
|
|
8949
9004
|
accessToken: z.ZodOptional<z.ZodString>;
|
8950
9005
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8951
9006
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9007
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8952
9008
|
}, "strip", z.ZodTypeAny, {
|
8953
9009
|
id: string;
|
8954
9010
|
name: string;
|
8955
9011
|
accessToken?: string | undefined;
|
8956
9012
|
channelSecret?: string | undefined;
|
8957
9013
|
additionalCredentials?: any;
|
9014
|
+
lineRichMenuId?: string | null | undefined;
|
8958
9015
|
}, {
|
8959
9016
|
id: string;
|
8960
9017
|
name: string;
|
8961
9018
|
accessToken?: string | undefined;
|
8962
9019
|
channelSecret?: string | undefined;
|
8963
9020
|
additionalCredentials?: any;
|
9021
|
+
lineRichMenuId?: string | null | undefined;
|
8964
9022
|
}>>;
|
8965
9023
|
platformId: z.ZodOptional<z.ZodString>;
|
8966
9024
|
brandName: z.ZodOptional<z.ZodString>;
|
8967
9025
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
|
8968
9026
|
connectedUserName: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8969
9027
|
connectedUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
9028
|
+
lineRichMenuId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8970
9029
|
actor: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
8971
9030
|
id: z.ZodString;
|
8972
9031
|
name: z.ZodString;
|
@@ -8996,12 +9055,14 @@ export declare const lineContract: {
|
|
8996
9055
|
accessToken?: string | undefined;
|
8997
9056
|
channelSecret?: string | undefined;
|
8998
9057
|
additionalCredentials?: any;
|
9058
|
+
lineRichMenuId?: string | null | undefined;
|
8999
9059
|
} | undefined;
|
9000
9060
|
platformId?: string | undefined;
|
9001
9061
|
brandName?: string | undefined;
|
9002
9062
|
status?: boolean | undefined;
|
9003
9063
|
connectedUserName?: string | null | undefined;
|
9004
9064
|
connectedUserId?: string | null | undefined;
|
9065
|
+
lineRichMenuId?: string | null | undefined;
|
9005
9066
|
actor?: {
|
9006
9067
|
id: string;
|
9007
9068
|
address: string | null;
|
@@ -9019,12 +9080,14 @@ export declare const lineContract: {
|
|
9019
9080
|
accessToken?: string | undefined;
|
9020
9081
|
channelSecret?: string | undefined;
|
9021
9082
|
additionalCredentials?: any;
|
9083
|
+
lineRichMenuId?: string | null | undefined;
|
9022
9084
|
} | undefined;
|
9023
9085
|
platformId?: string | undefined;
|
9024
9086
|
brandName?: string | undefined;
|
9025
9087
|
status?: boolean | undefined;
|
9026
9088
|
connectedUserName?: string | null | undefined;
|
9027
9089
|
connectedUserId?: string | null | undefined;
|
9090
|
+
lineRichMenuId?: string | null | undefined;
|
9028
9091
|
actor?: {
|
9029
9092
|
id: string;
|
9030
9093
|
address: string | null;
|
@@ -9047,24 +9110,28 @@ export declare const lineContract: {
|
|
9047
9110
|
accessToken: z.ZodOptional<z.ZodString>;
|
9048
9111
|
channelSecret: z.ZodOptional<z.ZodString>;
|
9049
9112
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9113
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9050
9114
|
}, "strip", z.ZodTypeAny, {
|
9051
9115
|
id: string;
|
9052
9116
|
name: string;
|
9053
9117
|
accessToken?: string | undefined;
|
9054
9118
|
channelSecret?: string | undefined;
|
9055
9119
|
additionalCredentials?: any;
|
9120
|
+
lineRichMenuId?: string | null | undefined;
|
9056
9121
|
}, {
|
9057
9122
|
id: string;
|
9058
9123
|
name: string;
|
9059
9124
|
accessToken?: string | undefined;
|
9060
9125
|
channelSecret?: string | undefined;
|
9061
9126
|
additionalCredentials?: any;
|
9127
|
+
lineRichMenuId?: string | null | undefined;
|
9062
9128
|
}>;
|
9063
9129
|
platformId: z.ZodString;
|
9064
9130
|
brandName: z.ZodString;
|
9065
9131
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
9066
9132
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9067
9133
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9134
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9068
9135
|
actor: z.ZodOptional<z.ZodObject<{
|
9069
9136
|
id: z.ZodString;
|
9070
9137
|
name: z.ZodString;
|
@@ -9094,12 +9161,14 @@ export declare const lineContract: {
|
|
9094
9161
|
accessToken?: string | undefined;
|
9095
9162
|
channelSecret?: string | undefined;
|
9096
9163
|
additionalCredentials?: any;
|
9164
|
+
lineRichMenuId?: string | null | undefined;
|
9097
9165
|
};
|
9098
9166
|
status: boolean;
|
9099
9167
|
brandName: string;
|
9100
9168
|
platformId: string;
|
9101
9169
|
connectedUserName?: string | null | undefined;
|
9102
9170
|
connectedUserId?: string | null | undefined;
|
9171
|
+
lineRichMenuId?: string | null | undefined;
|
9103
9172
|
actor?: {
|
9104
9173
|
id: string;
|
9105
9174
|
address: string | null;
|
@@ -9117,12 +9186,14 @@ export declare const lineContract: {
|
|
9117
9186
|
accessToken?: string | undefined;
|
9118
9187
|
channelSecret?: string | undefined;
|
9119
9188
|
additionalCredentials?: any;
|
9189
|
+
lineRichMenuId?: string | null | undefined;
|
9120
9190
|
};
|
9121
9191
|
status: boolean;
|
9122
9192
|
brandName: string;
|
9123
9193
|
platformId: string;
|
9124
9194
|
connectedUserName?: string | null | undefined;
|
9125
9195
|
connectedUserId?: string | null | undefined;
|
9196
|
+
lineRichMenuId?: string | null | undefined;
|
9126
9197
|
actor?: {
|
9127
9198
|
id: string;
|
9128
9199
|
address: string | null;
|
@@ -9142,12 +9213,14 @@ export declare const lineContract: {
|
|
9142
9213
|
accessToken?: string | undefined;
|
9143
9214
|
channelSecret?: string | undefined;
|
9144
9215
|
additionalCredentials?: any;
|
9216
|
+
lineRichMenuId?: string | null | undefined;
|
9145
9217
|
};
|
9146
9218
|
status: boolean;
|
9147
9219
|
brandName: string;
|
9148
9220
|
platformId: string;
|
9149
9221
|
connectedUserName?: string | null | undefined;
|
9150
9222
|
connectedUserId?: string | null | undefined;
|
9223
|
+
lineRichMenuId?: string | null | undefined;
|
9151
9224
|
actor?: {
|
9152
9225
|
id: string;
|
9153
9226
|
address: string | null;
|
@@ -9168,12 +9241,14 @@ export declare const lineContract: {
|
|
9168
9241
|
accessToken?: string | undefined;
|
9169
9242
|
channelSecret?: string | undefined;
|
9170
9243
|
additionalCredentials?: any;
|
9244
|
+
lineRichMenuId?: string | null | undefined;
|
9171
9245
|
};
|
9172
9246
|
status: boolean;
|
9173
9247
|
brandName: string;
|
9174
9248
|
platformId: string;
|
9175
9249
|
connectedUserName?: string | null | undefined;
|
9176
9250
|
connectedUserId?: string | null | undefined;
|
9251
|
+
lineRichMenuId?: string | null | undefined;
|
9177
9252
|
actor?: {
|
9178
9253
|
id: string;
|
9179
9254
|
address: string | null;
|
@@ -9230,24 +9305,28 @@ export declare const lineContract: {
|
|
9230
9305
|
accessToken: z.ZodOptional<z.ZodString>;
|
9231
9306
|
channelSecret: z.ZodOptional<z.ZodString>;
|
9232
9307
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9308
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9233
9309
|
}, "strip", z.ZodTypeAny, {
|
9234
9310
|
id: string;
|
9235
9311
|
name: string;
|
9236
9312
|
accessToken?: string | undefined;
|
9237
9313
|
channelSecret?: string | undefined;
|
9238
9314
|
additionalCredentials?: any;
|
9315
|
+
lineRichMenuId?: string | null | undefined;
|
9239
9316
|
}, {
|
9240
9317
|
id: string;
|
9241
9318
|
name: string;
|
9242
9319
|
accessToken?: string | undefined;
|
9243
9320
|
channelSecret?: string | undefined;
|
9244
9321
|
additionalCredentials?: any;
|
9322
|
+
lineRichMenuId?: string | null | undefined;
|
9245
9323
|
}>;
|
9246
9324
|
platformId: z.ZodString;
|
9247
9325
|
brandName: z.ZodString;
|
9248
9326
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
9249
9327
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9250
9328
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9329
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9251
9330
|
actor: z.ZodOptional<z.ZodObject<{
|
9252
9331
|
id: z.ZodString;
|
9253
9332
|
name: z.ZodString;
|
@@ -9277,12 +9356,14 @@ export declare const lineContract: {
|
|
9277
9356
|
accessToken?: string | undefined;
|
9278
9357
|
channelSecret?: string | undefined;
|
9279
9358
|
additionalCredentials?: any;
|
9359
|
+
lineRichMenuId?: string | null | undefined;
|
9280
9360
|
};
|
9281
9361
|
status: boolean;
|
9282
9362
|
brandName: string;
|
9283
9363
|
platformId: string;
|
9284
9364
|
connectedUserName?: string | null | undefined;
|
9285
9365
|
connectedUserId?: string | null | undefined;
|
9366
|
+
lineRichMenuId?: string | null | undefined;
|
9286
9367
|
actor?: {
|
9287
9368
|
id: string;
|
9288
9369
|
address: string | null;
|
@@ -9300,12 +9381,14 @@ export declare const lineContract: {
|
|
9300
9381
|
accessToken?: string | undefined;
|
9301
9382
|
channelSecret?: string | undefined;
|
9302
9383
|
additionalCredentials?: any;
|
9384
|
+
lineRichMenuId?: string | null | undefined;
|
9303
9385
|
};
|
9304
9386
|
status: boolean;
|
9305
9387
|
brandName: string;
|
9306
9388
|
platformId: string;
|
9307
9389
|
connectedUserName?: string | null | undefined;
|
9308
9390
|
connectedUserId?: string | null | undefined;
|
9391
|
+
lineRichMenuId?: string | null | undefined;
|
9309
9392
|
actor?: {
|
9310
9393
|
id: string;
|
9311
9394
|
address: string | null;
|
@@ -9325,12 +9408,14 @@ export declare const lineContract: {
|
|
9325
9408
|
accessToken?: string | undefined;
|
9326
9409
|
channelSecret?: string | undefined;
|
9327
9410
|
additionalCredentials?: any;
|
9411
|
+
lineRichMenuId?: string | null | undefined;
|
9328
9412
|
};
|
9329
9413
|
status: boolean;
|
9330
9414
|
brandName: string;
|
9331
9415
|
platformId: string;
|
9332
9416
|
connectedUserName?: string | null | undefined;
|
9333
9417
|
connectedUserId?: string | null | undefined;
|
9418
|
+
lineRichMenuId?: string | null | undefined;
|
9334
9419
|
actor?: {
|
9335
9420
|
id: string;
|
9336
9421
|
address: string | null;
|
@@ -9351,12 +9436,14 @@ export declare const lineContract: {
|
|
9351
9436
|
accessToken?: string | undefined;
|
9352
9437
|
channelSecret?: string | undefined;
|
9353
9438
|
additionalCredentials?: any;
|
9439
|
+
lineRichMenuId?: string | null | undefined;
|
9354
9440
|
};
|
9355
9441
|
status: boolean;
|
9356
9442
|
brandName: string;
|
9357
9443
|
platformId: string;
|
9358
9444
|
connectedUserName?: string | null | undefined;
|
9359
9445
|
connectedUserId?: string | null | undefined;
|
9446
|
+
lineRichMenuId?: string | null | undefined;
|
9360
9447
|
actor?: {
|
9361
9448
|
id: string;
|
9362
9449
|
address: string | null;
|
@@ -9413,24 +9500,28 @@ export declare const lineContract: {
|
|
9413
9500
|
accessToken: z.ZodOptional<z.ZodString>;
|
9414
9501
|
channelSecret: z.ZodOptional<z.ZodString>;
|
9415
9502
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9503
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9416
9504
|
}, "strip", z.ZodTypeAny, {
|
9417
9505
|
id: string;
|
9418
9506
|
name: string;
|
9419
9507
|
accessToken?: string | undefined;
|
9420
9508
|
channelSecret?: string | undefined;
|
9421
9509
|
additionalCredentials?: any;
|
9510
|
+
lineRichMenuId?: string | null | undefined;
|
9422
9511
|
}, {
|
9423
9512
|
id: string;
|
9424
9513
|
name: string;
|
9425
9514
|
accessToken?: string | undefined;
|
9426
9515
|
channelSecret?: string | undefined;
|
9427
9516
|
additionalCredentials?: any;
|
9517
|
+
lineRichMenuId?: string | null | undefined;
|
9428
9518
|
}>;
|
9429
9519
|
platformId: z.ZodString;
|
9430
9520
|
brandName: z.ZodString;
|
9431
9521
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
9432
9522
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9433
9523
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9524
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9434
9525
|
actor: z.ZodOptional<z.ZodObject<{
|
9435
9526
|
id: z.ZodString;
|
9436
9527
|
name: z.ZodString;
|
@@ -9460,12 +9551,14 @@ export declare const lineContract: {
|
|
9460
9551
|
accessToken?: string | undefined;
|
9461
9552
|
channelSecret?: string | undefined;
|
9462
9553
|
additionalCredentials?: any;
|
9554
|
+
lineRichMenuId?: string | null | undefined;
|
9463
9555
|
};
|
9464
9556
|
status: boolean;
|
9465
9557
|
brandName: string;
|
9466
9558
|
platformId: string;
|
9467
9559
|
connectedUserName?: string | null | undefined;
|
9468
9560
|
connectedUserId?: string | null | undefined;
|
9561
|
+
lineRichMenuId?: string | null | undefined;
|
9469
9562
|
actor?: {
|
9470
9563
|
id: string;
|
9471
9564
|
address: string | null;
|
@@ -9483,12 +9576,14 @@ export declare const lineContract: {
|
|
9483
9576
|
accessToken?: string | undefined;
|
9484
9577
|
channelSecret?: string | undefined;
|
9485
9578
|
additionalCredentials?: any;
|
9579
|
+
lineRichMenuId?: string | null | undefined;
|
9486
9580
|
};
|
9487
9581
|
status: boolean;
|
9488
9582
|
brandName: string;
|
9489
9583
|
platformId: string;
|
9490
9584
|
connectedUserName?: string | null | undefined;
|
9491
9585
|
connectedUserId?: string | null | undefined;
|
9586
|
+
lineRichMenuId?: string | null | undefined;
|
9492
9587
|
actor?: {
|
9493
9588
|
id: string;
|
9494
9589
|
address: string | null;
|
@@ -9508,12 +9603,14 @@ export declare const lineContract: {
|
|
9508
9603
|
accessToken?: string | undefined;
|
9509
9604
|
channelSecret?: string | undefined;
|
9510
9605
|
additionalCredentials?: any;
|
9606
|
+
lineRichMenuId?: string | null | undefined;
|
9511
9607
|
};
|
9512
9608
|
status: boolean;
|
9513
9609
|
brandName: string;
|
9514
9610
|
platformId: string;
|
9515
9611
|
connectedUserName?: string | null | undefined;
|
9516
9612
|
connectedUserId?: string | null | undefined;
|
9613
|
+
lineRichMenuId?: string | null | undefined;
|
9517
9614
|
actor?: {
|
9518
9615
|
id: string;
|
9519
9616
|
address: string | null;
|
@@ -9534,12 +9631,14 @@ export declare const lineContract: {
|
|
9534
9631
|
accessToken?: string | undefined;
|
9535
9632
|
channelSecret?: string | undefined;
|
9536
9633
|
additionalCredentials?: any;
|
9634
|
+
lineRichMenuId?: string | null | undefined;
|
9537
9635
|
};
|
9538
9636
|
status: boolean;
|
9539
9637
|
brandName: string;
|
9540
9638
|
platformId: string;
|
9541
9639
|
connectedUserName?: string | null | undefined;
|
9542
9640
|
connectedUserId?: string | null | undefined;
|
9641
|
+
lineRichMenuId?: string | null | undefined;
|
9543
9642
|
actor?: {
|
9544
9643
|
id: string;
|
9545
9644
|
address: string | null;
|
@@ -9573,5 +9672,38 @@ export declare const lineContract: {
|
|
9573
9672
|
};
|
9574
9673
|
path: "/delete/:channelId";
|
9575
9674
|
};
|
9675
|
+
createUserLevelRichMenu: {
|
9676
|
+
body: z.ZodObject<{
|
9677
|
+
linePlatformUserId: z.ZodString;
|
9678
|
+
channelId: z.ZodString;
|
9679
|
+
}, "strip", z.ZodTypeAny, {
|
9680
|
+
channelId: string;
|
9681
|
+
linePlatformUserId: string;
|
9682
|
+
}, {
|
9683
|
+
channelId: string;
|
9684
|
+
linePlatformUserId: string;
|
9685
|
+
}>;
|
9686
|
+
method: "POST";
|
9687
|
+
responses: {
|
9688
|
+
200: z.ZodObject<{
|
9689
|
+
requestId: z.ZodString;
|
9690
|
+
}, "strip", z.ZodTypeAny, {
|
9691
|
+
requestId: string;
|
9692
|
+
}, {
|
9693
|
+
requestId: string;
|
9694
|
+
}>;
|
9695
|
+
500: z.ZodObject<{
|
9696
|
+
message: z.ZodString;
|
9697
|
+
error: z.ZodAny;
|
9698
|
+
}, "strip", z.ZodTypeAny, {
|
9699
|
+
message: string;
|
9700
|
+
error?: any;
|
9701
|
+
}, {
|
9702
|
+
message: string;
|
9703
|
+
error?: any;
|
9704
|
+
}>;
|
9705
|
+
};
|
9706
|
+
path: "/create-user-level-rich-menu";
|
9707
|
+
};
|
9576
9708
|
};
|
9577
9709
|
//# sourceMappingURL=index.d.ts.map
|