@kl1/contracts 1.1.42-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 +107 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +107 -9
- 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 +1 -1
@@ -143,24 +143,28 @@ export declare const messengerContract: {
|
|
143
143
|
accessToken: z.ZodOptional<z.ZodString>;
|
144
144
|
channelSecret: z.ZodOptional<z.ZodString>;
|
145
145
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
146
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
146
147
|
}, "strip", z.ZodTypeAny, {
|
147
148
|
id: string;
|
148
149
|
name: string;
|
149
150
|
accessToken?: string | undefined;
|
150
151
|
channelSecret?: string | undefined;
|
151
152
|
additionalCredentials?: any;
|
153
|
+
lineRichMenuId?: string | null | undefined;
|
152
154
|
}, {
|
153
155
|
id: string;
|
154
156
|
name: string;
|
155
157
|
accessToken?: string | undefined;
|
156
158
|
channelSecret?: string | undefined;
|
157
159
|
additionalCredentials?: any;
|
160
|
+
lineRichMenuId?: string | null | undefined;
|
158
161
|
}>;
|
159
162
|
platformId: z.ZodString;
|
160
163
|
brandName: z.ZodString;
|
161
164
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
162
165
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
163
166
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
167
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
164
168
|
actor: z.ZodOptional<z.ZodObject<{
|
165
169
|
id: z.ZodString;
|
166
170
|
name: z.ZodString;
|
@@ -190,12 +194,14 @@ export declare const messengerContract: {
|
|
190
194
|
accessToken?: string | undefined;
|
191
195
|
channelSecret?: string | undefined;
|
192
196
|
additionalCredentials?: any;
|
197
|
+
lineRichMenuId?: string | null | undefined;
|
193
198
|
};
|
194
199
|
status: boolean;
|
195
200
|
brandName: string;
|
196
201
|
platformId: string;
|
197
202
|
connectedUserName?: string | null | undefined;
|
198
203
|
connectedUserId?: string | null | undefined;
|
204
|
+
lineRichMenuId?: string | null | undefined;
|
199
205
|
actor?: {
|
200
206
|
id: string;
|
201
207
|
address: string | null;
|
@@ -213,12 +219,14 @@ export declare const messengerContract: {
|
|
213
219
|
accessToken?: string | undefined;
|
214
220
|
channelSecret?: string | undefined;
|
215
221
|
additionalCredentials?: any;
|
222
|
+
lineRichMenuId?: string | null | undefined;
|
216
223
|
};
|
217
224
|
status: boolean;
|
218
225
|
brandName: string;
|
219
226
|
platformId: string;
|
220
227
|
connectedUserName?: string | null | undefined;
|
221
228
|
connectedUserId?: string | null | undefined;
|
229
|
+
lineRichMenuId?: string | null | undefined;
|
222
230
|
actor?: {
|
223
231
|
id: string;
|
224
232
|
address: string | null;
|
@@ -240,12 +248,14 @@ export declare const messengerContract: {
|
|
240
248
|
accessToken?: string | undefined;
|
241
249
|
channelSecret?: string | undefined;
|
242
250
|
additionalCredentials?: any;
|
251
|
+
lineRichMenuId?: string | null | undefined;
|
243
252
|
};
|
244
253
|
status: boolean;
|
245
254
|
brandName: string;
|
246
255
|
platformId: string;
|
247
256
|
connectedUserName?: string | null | undefined;
|
248
257
|
connectedUserId?: string | null | undefined;
|
258
|
+
lineRichMenuId?: string | null | undefined;
|
249
259
|
actor?: {
|
250
260
|
id: string;
|
251
261
|
address: string | null;
|
@@ -306,12 +316,14 @@ export declare const messengerContract: {
|
|
306
316
|
accessToken?: string | undefined;
|
307
317
|
channelSecret?: string | undefined;
|
308
318
|
additionalCredentials?: any;
|
319
|
+
lineRichMenuId?: string | null | undefined;
|
309
320
|
};
|
310
321
|
status: boolean;
|
311
322
|
brandName: string;
|
312
323
|
platformId: string;
|
313
324
|
connectedUserName?: string | null | undefined;
|
314
325
|
connectedUserId?: string | null | undefined;
|
326
|
+
lineRichMenuId?: string | null | undefined;
|
315
327
|
actor?: {
|
316
328
|
id: string;
|
317
329
|
address: string | null;
|
@@ -512,12 +524,14 @@ export declare const messengerContract: {
|
|
512
524
|
accessToken?: string | undefined;
|
513
525
|
channelSecret?: string | undefined;
|
514
526
|
additionalCredentials?: any;
|
527
|
+
lineRichMenuId?: string | null | undefined;
|
515
528
|
};
|
516
529
|
status: boolean;
|
517
530
|
brandName: string;
|
518
531
|
platformId: string;
|
519
532
|
connectedUserName?: string | null | undefined;
|
520
533
|
connectedUserId?: string | null | undefined;
|
534
|
+
lineRichMenuId?: string | null | undefined;
|
521
535
|
actor?: {
|
522
536
|
id: string;
|
523
537
|
address: string | null;
|
@@ -610,12 +624,14 @@ export declare const messengerContract: {
|
|
610
624
|
accessToken?: string | undefined;
|
611
625
|
channelSecret?: string | undefined;
|
612
626
|
additionalCredentials?: any;
|
627
|
+
lineRichMenuId?: string | null | undefined;
|
613
628
|
};
|
614
629
|
status: boolean;
|
615
630
|
brandName: string;
|
616
631
|
platformId: string;
|
617
632
|
connectedUserName?: string | null | undefined;
|
618
633
|
connectedUserId?: string | null | undefined;
|
634
|
+
lineRichMenuId?: string | null | undefined;
|
619
635
|
actor?: {
|
620
636
|
id: string;
|
621
637
|
address: string | null;
|
@@ -2060,18 +2076,21 @@ export declare const messengerContract: {
|
|
2060
2076
|
accessToken: z.ZodOptional<z.ZodString>;
|
2061
2077
|
channelSecret: z.ZodOptional<z.ZodString>;
|
2062
2078
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2079
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2063
2080
|
}, "strip", z.ZodTypeAny, {
|
2064
2081
|
id: string;
|
2065
2082
|
name: string;
|
2066
2083
|
accessToken?: string | undefined;
|
2067
2084
|
channelSecret?: string | undefined;
|
2068
2085
|
additionalCredentials?: any;
|
2086
|
+
lineRichMenuId?: string | null | undefined;
|
2069
2087
|
}, {
|
2070
2088
|
id: string;
|
2071
2089
|
name: string;
|
2072
2090
|
accessToken?: string | undefined;
|
2073
2091
|
channelSecret?: string | undefined;
|
2074
2092
|
additionalCredentials?: any;
|
2093
|
+
lineRichMenuId?: string | null | undefined;
|
2075
2094
|
}>;
|
2076
2095
|
brandName: z.ZodString;
|
2077
2096
|
platformId: z.ZodString;
|
@@ -2312,6 +2331,7 @@ export declare const messengerContract: {
|
|
2312
2331
|
accessToken?: string | undefined;
|
2313
2332
|
channelSecret?: string | undefined;
|
2314
2333
|
additionalCredentials?: any;
|
2334
|
+
lineRichMenuId?: string | null | undefined;
|
2315
2335
|
};
|
2316
2336
|
status: boolean;
|
2317
2337
|
createdAt: Date;
|
@@ -2383,6 +2403,7 @@ export declare const messengerContract: {
|
|
2383
2403
|
accessToken?: string | undefined;
|
2384
2404
|
channelSecret?: string | undefined;
|
2385
2405
|
additionalCredentials?: any;
|
2406
|
+
lineRichMenuId?: string | null | undefined;
|
2386
2407
|
};
|
2387
2408
|
status: boolean;
|
2388
2409
|
createdAt: Date;
|
@@ -2901,6 +2922,7 @@ export declare const messengerContract: {
|
|
2901
2922
|
accessToken?: string | undefined;
|
2902
2923
|
channelSecret?: string | undefined;
|
2903
2924
|
additionalCredentials?: any;
|
2925
|
+
lineRichMenuId?: string | null | undefined;
|
2904
2926
|
};
|
2905
2927
|
status: boolean;
|
2906
2928
|
createdAt: Date;
|
@@ -3267,6 +3289,7 @@ export declare const messengerContract: {
|
|
3267
3289
|
accessToken?: string | undefined;
|
3268
3290
|
channelSecret?: string | undefined;
|
3269
3291
|
additionalCredentials?: any;
|
3292
|
+
lineRichMenuId?: string | null | undefined;
|
3270
3293
|
};
|
3271
3294
|
status: boolean;
|
3272
3295
|
createdAt: Date;
|
@@ -5404,6 +5427,7 @@ export declare const messengerContract: {
|
|
5404
5427
|
accessToken?: string | undefined;
|
5405
5428
|
channelSecret?: string | undefined;
|
5406
5429
|
additionalCredentials?: any;
|
5430
|
+
lineRichMenuId?: string | null | undefined;
|
5407
5431
|
};
|
5408
5432
|
status: boolean;
|
5409
5433
|
createdAt: Date;
|
@@ -6105,6 +6129,7 @@ export declare const messengerContract: {
|
|
6105
6129
|
accessToken?: string | undefined;
|
6106
6130
|
channelSecret?: string | undefined;
|
6107
6131
|
additionalCredentials?: any;
|
6132
|
+
lineRichMenuId?: string | null | undefined;
|
6108
6133
|
};
|
6109
6134
|
status: boolean;
|
6110
6135
|
createdAt: Date;
|
@@ -6808,6 +6833,7 @@ export declare const messengerContract: {
|
|
6808
6833
|
accessToken?: string | undefined;
|
6809
6834
|
channelSecret?: string | undefined;
|
6810
6835
|
additionalCredentials?: any;
|
6836
|
+
lineRichMenuId?: string | null | undefined;
|
6811
6837
|
};
|
6812
6838
|
status: boolean;
|
6813
6839
|
createdAt: Date;
|
@@ -7512,6 +7538,7 @@ export declare const messengerContract: {
|
|
7512
7538
|
accessToken?: string | undefined;
|
7513
7539
|
channelSecret?: string | undefined;
|
7514
7540
|
additionalCredentials?: any;
|
7541
|
+
lineRichMenuId?: string | null | undefined;
|
7515
7542
|
};
|
7516
7543
|
status: boolean;
|
7517
7544
|
createdAt: Date;
|
@@ -8128,24 +8155,28 @@ export declare const messengerContract: {
|
|
8128
8155
|
accessToken: z.ZodOptional<z.ZodString>;
|
8129
8156
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8130
8157
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8158
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8131
8159
|
}, "strip", z.ZodTypeAny, {
|
8132
8160
|
id: string;
|
8133
8161
|
name: string;
|
8134
8162
|
accessToken?: string | undefined;
|
8135
8163
|
channelSecret?: string | undefined;
|
8136
8164
|
additionalCredentials?: any;
|
8165
|
+
lineRichMenuId?: string | null | undefined;
|
8137
8166
|
}, {
|
8138
8167
|
id: string;
|
8139
8168
|
name: string;
|
8140
8169
|
accessToken?: string | undefined;
|
8141
8170
|
channelSecret?: string | undefined;
|
8142
8171
|
additionalCredentials?: any;
|
8172
|
+
lineRichMenuId?: string | null | undefined;
|
8143
8173
|
}>>;
|
8144
8174
|
platformId: z.ZodOptional<z.ZodString>;
|
8145
8175
|
brandName: z.ZodOptional<z.ZodString>;
|
8146
8176
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
|
8147
8177
|
connectedUserName: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8148
8178
|
connectedUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8179
|
+
lineRichMenuId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8149
8180
|
actor: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
8150
8181
|
id: z.ZodString;
|
8151
8182
|
name: z.ZodString;
|
@@ -8175,12 +8206,14 @@ export declare const messengerContract: {
|
|
8175
8206
|
accessToken?: string | undefined;
|
8176
8207
|
channelSecret?: string | undefined;
|
8177
8208
|
additionalCredentials?: any;
|
8209
|
+
lineRichMenuId?: string | null | undefined;
|
8178
8210
|
} | undefined;
|
8179
8211
|
platformId?: string | undefined;
|
8180
8212
|
brandName?: string | undefined;
|
8181
8213
|
status?: boolean | undefined;
|
8182
8214
|
connectedUserName?: string | null | undefined;
|
8183
8215
|
connectedUserId?: string | null | undefined;
|
8216
|
+
lineRichMenuId?: string | null | undefined;
|
8184
8217
|
actor?: {
|
8185
8218
|
id: string;
|
8186
8219
|
address: string | null;
|
@@ -8198,12 +8231,14 @@ export declare const messengerContract: {
|
|
8198
8231
|
accessToken?: string | undefined;
|
8199
8232
|
channelSecret?: string | undefined;
|
8200
8233
|
additionalCredentials?: any;
|
8234
|
+
lineRichMenuId?: string | null | undefined;
|
8201
8235
|
} | undefined;
|
8202
8236
|
platformId?: string | undefined;
|
8203
8237
|
brandName?: string | undefined;
|
8204
8238
|
status?: boolean | undefined;
|
8205
8239
|
connectedUserName?: string | null | undefined;
|
8206
8240
|
connectedUserId?: string | null | undefined;
|
8241
|
+
lineRichMenuId?: string | null | undefined;
|
8207
8242
|
actor?: {
|
8208
8243
|
id: string;
|
8209
8244
|
address: string | null;
|
@@ -8226,24 +8261,28 @@ export declare const messengerContract: {
|
|
8226
8261
|
accessToken: z.ZodOptional<z.ZodString>;
|
8227
8262
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8228
8263
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8264
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8229
8265
|
}, "strip", z.ZodTypeAny, {
|
8230
8266
|
id: string;
|
8231
8267
|
name: string;
|
8232
8268
|
accessToken?: string | undefined;
|
8233
8269
|
channelSecret?: string | undefined;
|
8234
8270
|
additionalCredentials?: any;
|
8271
|
+
lineRichMenuId?: string | null | undefined;
|
8235
8272
|
}, {
|
8236
8273
|
id: string;
|
8237
8274
|
name: string;
|
8238
8275
|
accessToken?: string | undefined;
|
8239
8276
|
channelSecret?: string | undefined;
|
8240
8277
|
additionalCredentials?: any;
|
8278
|
+
lineRichMenuId?: string | null | undefined;
|
8241
8279
|
}>;
|
8242
8280
|
platformId: z.ZodString;
|
8243
8281
|
brandName: z.ZodString;
|
8244
8282
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
8245
8283
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8246
8284
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8285
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8247
8286
|
actor: z.ZodOptional<z.ZodObject<{
|
8248
8287
|
id: z.ZodString;
|
8249
8288
|
name: z.ZodString;
|
@@ -8273,12 +8312,14 @@ export declare const messengerContract: {
|
|
8273
8312
|
accessToken?: string | undefined;
|
8274
8313
|
channelSecret?: string | undefined;
|
8275
8314
|
additionalCredentials?: any;
|
8315
|
+
lineRichMenuId?: string | null | undefined;
|
8276
8316
|
};
|
8277
8317
|
status: boolean;
|
8278
8318
|
brandName: string;
|
8279
8319
|
platformId: string;
|
8280
8320
|
connectedUserName?: string | null | undefined;
|
8281
8321
|
connectedUserId?: string | null | undefined;
|
8322
|
+
lineRichMenuId?: string | null | undefined;
|
8282
8323
|
actor?: {
|
8283
8324
|
id: string;
|
8284
8325
|
address: string | null;
|
@@ -8296,12 +8337,14 @@ export declare const messengerContract: {
|
|
8296
8337
|
accessToken?: string | undefined;
|
8297
8338
|
channelSecret?: string | undefined;
|
8298
8339
|
additionalCredentials?: any;
|
8340
|
+
lineRichMenuId?: string | null | undefined;
|
8299
8341
|
};
|
8300
8342
|
status: boolean;
|
8301
8343
|
brandName: string;
|
8302
8344
|
platformId: string;
|
8303
8345
|
connectedUserName?: string | null | undefined;
|
8304
8346
|
connectedUserId?: string | null | undefined;
|
8347
|
+
lineRichMenuId?: string | null | undefined;
|
8305
8348
|
actor?: {
|
8306
8349
|
id: string;
|
8307
8350
|
address: string | null;
|
@@ -8321,12 +8364,14 @@ export declare const messengerContract: {
|
|
8321
8364
|
accessToken?: string | undefined;
|
8322
8365
|
channelSecret?: string | undefined;
|
8323
8366
|
additionalCredentials?: any;
|
8367
|
+
lineRichMenuId?: string | null | undefined;
|
8324
8368
|
};
|
8325
8369
|
status: boolean;
|
8326
8370
|
brandName: string;
|
8327
8371
|
platformId: string;
|
8328
8372
|
connectedUserName?: string | null | undefined;
|
8329
8373
|
connectedUserId?: string | null | undefined;
|
8374
|
+
lineRichMenuId?: string | null | undefined;
|
8330
8375
|
actor?: {
|
8331
8376
|
id: string;
|
8332
8377
|
address: string | null;
|
@@ -8347,12 +8392,14 @@ export declare const messengerContract: {
|
|
8347
8392
|
accessToken?: string | undefined;
|
8348
8393
|
channelSecret?: string | undefined;
|
8349
8394
|
additionalCredentials?: any;
|
8395
|
+
lineRichMenuId?: string | null | undefined;
|
8350
8396
|
};
|
8351
8397
|
status: boolean;
|
8352
8398
|
brandName: string;
|
8353
8399
|
platformId: string;
|
8354
8400
|
connectedUserName?: string | null | undefined;
|
8355
8401
|
connectedUserId?: string | null | undefined;
|
8402
|
+
lineRichMenuId?: string | null | undefined;
|
8356
8403
|
actor?: {
|
8357
8404
|
id: string;
|
8358
8405
|
address: string | null;
|
@@ -8397,24 +8444,28 @@ export declare const messengerContract: {
|
|
8397
8444
|
accessToken: z.ZodOptional<z.ZodString>;
|
8398
8445
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8399
8446
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8447
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8400
8448
|
}, "strip", z.ZodTypeAny, {
|
8401
8449
|
id: string;
|
8402
8450
|
name: string;
|
8403
8451
|
accessToken?: string | undefined;
|
8404
8452
|
channelSecret?: string | undefined;
|
8405
8453
|
additionalCredentials?: any;
|
8454
|
+
lineRichMenuId?: string | null | undefined;
|
8406
8455
|
}, {
|
8407
8456
|
id: string;
|
8408
8457
|
name: string;
|
8409
8458
|
accessToken?: string | undefined;
|
8410
8459
|
channelSecret?: string | undefined;
|
8411
8460
|
additionalCredentials?: any;
|
8461
|
+
lineRichMenuId?: string | null | undefined;
|
8412
8462
|
}>>;
|
8413
8463
|
platformId: z.ZodOptional<z.ZodString>;
|
8414
8464
|
brandName: z.ZodOptional<z.ZodString>;
|
8415
8465
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
|
8416
8466
|
connectedUserName: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8417
8467
|
connectedUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8468
|
+
lineRichMenuId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8418
8469
|
actor: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
8419
8470
|
id: z.ZodString;
|
8420
8471
|
name: z.ZodString;
|
@@ -8444,12 +8495,14 @@ export declare const messengerContract: {
|
|
8444
8495
|
accessToken?: string | undefined;
|
8445
8496
|
channelSecret?: string | undefined;
|
8446
8497
|
additionalCredentials?: any;
|
8498
|
+
lineRichMenuId?: string | null | undefined;
|
8447
8499
|
} | undefined;
|
8448
8500
|
platformId?: string | undefined;
|
8449
8501
|
brandName?: string | undefined;
|
8450
8502
|
status?: boolean | undefined;
|
8451
8503
|
connectedUserName?: string | null | undefined;
|
8452
8504
|
connectedUserId?: string | null | undefined;
|
8505
|
+
lineRichMenuId?: string | null | undefined;
|
8453
8506
|
actor?: {
|
8454
8507
|
id: string;
|
8455
8508
|
address: string | null;
|
@@ -8467,12 +8520,14 @@ export declare const messengerContract: {
|
|
8467
8520
|
accessToken?: string | undefined;
|
8468
8521
|
channelSecret?: string | undefined;
|
8469
8522
|
additionalCredentials?: any;
|
8523
|
+
lineRichMenuId?: string | null | undefined;
|
8470
8524
|
} | undefined;
|
8471
8525
|
platformId?: string | undefined;
|
8472
8526
|
brandName?: string | undefined;
|
8473
8527
|
status?: boolean | undefined;
|
8474
8528
|
connectedUserName?: string | null | undefined;
|
8475
8529
|
connectedUserId?: string | null | undefined;
|
8530
|
+
lineRichMenuId?: string | null | undefined;
|
8476
8531
|
actor?: {
|
8477
8532
|
id: string;
|
8478
8533
|
address: string | null;
|
@@ -8495,24 +8550,28 @@ export declare const messengerContract: {
|
|
8495
8550
|
accessToken: z.ZodOptional<z.ZodString>;
|
8496
8551
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8497
8552
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8553
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8498
8554
|
}, "strip", z.ZodTypeAny, {
|
8499
8555
|
id: string;
|
8500
8556
|
name: string;
|
8501
8557
|
accessToken?: string | undefined;
|
8502
8558
|
channelSecret?: string | undefined;
|
8503
8559
|
additionalCredentials?: any;
|
8560
|
+
lineRichMenuId?: string | null | undefined;
|
8504
8561
|
}, {
|
8505
8562
|
id: string;
|
8506
8563
|
name: string;
|
8507
8564
|
accessToken?: string | undefined;
|
8508
8565
|
channelSecret?: string | undefined;
|
8509
8566
|
additionalCredentials?: any;
|
8567
|
+
lineRichMenuId?: string | null | undefined;
|
8510
8568
|
}>;
|
8511
8569
|
platformId: z.ZodString;
|
8512
8570
|
brandName: z.ZodString;
|
8513
8571
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
8514
8572
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8515
8573
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8574
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8516
8575
|
actor: z.ZodOptional<z.ZodObject<{
|
8517
8576
|
id: z.ZodString;
|
8518
8577
|
name: z.ZodString;
|
@@ -8542,12 +8601,14 @@ export declare const messengerContract: {
|
|
8542
8601
|
accessToken?: string | undefined;
|
8543
8602
|
channelSecret?: string | undefined;
|
8544
8603
|
additionalCredentials?: any;
|
8604
|
+
lineRichMenuId?: string | null | undefined;
|
8545
8605
|
};
|
8546
8606
|
status: boolean;
|
8547
8607
|
brandName: string;
|
8548
8608
|
platformId: string;
|
8549
8609
|
connectedUserName?: string | null | undefined;
|
8550
8610
|
connectedUserId?: string | null | undefined;
|
8611
|
+
lineRichMenuId?: string | null | undefined;
|
8551
8612
|
actor?: {
|
8552
8613
|
id: string;
|
8553
8614
|
address: string | null;
|
@@ -8565,12 +8626,14 @@ export declare const messengerContract: {
|
|
8565
8626
|
accessToken?: string | undefined;
|
8566
8627
|
channelSecret?: string | undefined;
|
8567
8628
|
additionalCredentials?: any;
|
8629
|
+
lineRichMenuId?: string | null | undefined;
|
8568
8630
|
};
|
8569
8631
|
status: boolean;
|
8570
8632
|
brandName: string;
|
8571
8633
|
platformId: string;
|
8572
8634
|
connectedUserName?: string | null | undefined;
|
8573
8635
|
connectedUserId?: string | null | undefined;
|
8636
|
+
lineRichMenuId?: string | null | undefined;
|
8574
8637
|
actor?: {
|
8575
8638
|
id: string;
|
8576
8639
|
address: string | null;
|
@@ -8590,12 +8653,14 @@ export declare const messengerContract: {
|
|
8590
8653
|
accessToken?: string | undefined;
|
8591
8654
|
channelSecret?: string | undefined;
|
8592
8655
|
additionalCredentials?: any;
|
8656
|
+
lineRichMenuId?: string | null | undefined;
|
8593
8657
|
};
|
8594
8658
|
status: boolean;
|
8595
8659
|
brandName: string;
|
8596
8660
|
platformId: string;
|
8597
8661
|
connectedUserName?: string | null | undefined;
|
8598
8662
|
connectedUserId?: string | null | undefined;
|
8663
|
+
lineRichMenuId?: string | null | undefined;
|
8599
8664
|
actor?: {
|
8600
8665
|
id: string;
|
8601
8666
|
address: string | null;
|
@@ -8616,12 +8681,14 @@ export declare const messengerContract: {
|
|
8616
8681
|
accessToken?: string | undefined;
|
8617
8682
|
channelSecret?: string | undefined;
|
8618
8683
|
additionalCredentials?: any;
|
8684
|
+
lineRichMenuId?: string | null | undefined;
|
8619
8685
|
};
|
8620
8686
|
status: boolean;
|
8621
8687
|
brandName: string;
|
8622
8688
|
platformId: string;
|
8623
8689
|
connectedUserName?: string | null | undefined;
|
8624
8690
|
connectedUserId?: string | null | undefined;
|
8691
|
+
lineRichMenuId?: string | null | undefined;
|
8625
8692
|
actor?: {
|
8626
8693
|
id: string;
|
8627
8694
|
address: string | null;
|
@@ -8678,24 +8745,28 @@ export declare const messengerContract: {
|
|
8678
8745
|
accessToken: z.ZodOptional<z.ZodString>;
|
8679
8746
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8680
8747
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8748
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8681
8749
|
}, "strip", z.ZodTypeAny, {
|
8682
8750
|
id: string;
|
8683
8751
|
name: string;
|
8684
8752
|
accessToken?: string | undefined;
|
8685
8753
|
channelSecret?: string | undefined;
|
8686
8754
|
additionalCredentials?: any;
|
8755
|
+
lineRichMenuId?: string | null | undefined;
|
8687
8756
|
}, {
|
8688
8757
|
id: string;
|
8689
8758
|
name: string;
|
8690
8759
|
accessToken?: string | undefined;
|
8691
8760
|
channelSecret?: string | undefined;
|
8692
8761
|
additionalCredentials?: any;
|
8762
|
+
lineRichMenuId?: string | null | undefined;
|
8693
8763
|
}>;
|
8694
8764
|
platformId: z.ZodString;
|
8695
8765
|
brandName: z.ZodString;
|
8696
8766
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
8697
8767
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8698
8768
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8769
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8699
8770
|
actor: z.ZodOptional<z.ZodObject<{
|
8700
8771
|
id: z.ZodString;
|
8701
8772
|
name: z.ZodString;
|
@@ -8725,12 +8796,14 @@ export declare const messengerContract: {
|
|
8725
8796
|
accessToken?: string | undefined;
|
8726
8797
|
channelSecret?: string | undefined;
|
8727
8798
|
additionalCredentials?: any;
|
8799
|
+
lineRichMenuId?: string | null | undefined;
|
8728
8800
|
};
|
8729
8801
|
status: boolean;
|
8730
8802
|
brandName: string;
|
8731
8803
|
platformId: string;
|
8732
8804
|
connectedUserName?: string | null | undefined;
|
8733
8805
|
connectedUserId?: string | null | undefined;
|
8806
|
+
lineRichMenuId?: string | null | undefined;
|
8734
8807
|
actor?: {
|
8735
8808
|
id: string;
|
8736
8809
|
address: string | null;
|
@@ -8748,12 +8821,14 @@ export declare const messengerContract: {
|
|
8748
8821
|
accessToken?: string | undefined;
|
8749
8822
|
channelSecret?: string | undefined;
|
8750
8823
|
additionalCredentials?: any;
|
8824
|
+
lineRichMenuId?: string | null | undefined;
|
8751
8825
|
};
|
8752
8826
|
status: boolean;
|
8753
8827
|
brandName: string;
|
8754
8828
|
platformId: string;
|
8755
8829
|
connectedUserName?: string | null | undefined;
|
8756
8830
|
connectedUserId?: string | null | undefined;
|
8831
|
+
lineRichMenuId?: string | null | undefined;
|
8757
8832
|
actor?: {
|
8758
8833
|
id: string;
|
8759
8834
|
address: string | null;
|
@@ -8773,12 +8848,14 @@ export declare const messengerContract: {
|
|
8773
8848
|
accessToken?: string | undefined;
|
8774
8849
|
channelSecret?: string | undefined;
|
8775
8850
|
additionalCredentials?: any;
|
8851
|
+
lineRichMenuId?: string | null | undefined;
|
8776
8852
|
};
|
8777
8853
|
status: boolean;
|
8778
8854
|
brandName: string;
|
8779
8855
|
platformId: string;
|
8780
8856
|
connectedUserName?: string | null | undefined;
|
8781
8857
|
connectedUserId?: string | null | undefined;
|
8858
|
+
lineRichMenuId?: string | null | undefined;
|
8782
8859
|
actor?: {
|
8783
8860
|
id: string;
|
8784
8861
|
address: string | null;
|
@@ -8799,12 +8876,14 @@ export declare const messengerContract: {
|
|
8799
8876
|
accessToken?: string | undefined;
|
8800
8877
|
channelSecret?: string | undefined;
|
8801
8878
|
additionalCredentials?: any;
|
8879
|
+
lineRichMenuId?: string | null | undefined;
|
8802
8880
|
};
|
8803
8881
|
status: boolean;
|
8804
8882
|
brandName: string;
|
8805
8883
|
platformId: string;
|
8806
8884
|
connectedUserName?: string | null | undefined;
|
8807
8885
|
connectedUserId?: string | null | undefined;
|
8886
|
+
lineRichMenuId?: string | null | undefined;
|
8808
8887
|
actor?: {
|
8809
8888
|
id: string;
|
8810
8889
|
address: string | null;
|
@@ -8861,24 +8940,28 @@ export declare const messengerContract: {
|
|
8861
8940
|
accessToken: z.ZodOptional<z.ZodString>;
|
8862
8941
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8863
8942
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8943
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8864
8944
|
}, "strip", z.ZodTypeAny, {
|
8865
8945
|
id: string;
|
8866
8946
|
name: string;
|
8867
8947
|
accessToken?: string | undefined;
|
8868
8948
|
channelSecret?: string | undefined;
|
8869
8949
|
additionalCredentials?: any;
|
8950
|
+
lineRichMenuId?: string | null | undefined;
|
8870
8951
|
}, {
|
8871
8952
|
id: string;
|
8872
8953
|
name: string;
|
8873
8954
|
accessToken?: string | undefined;
|
8874
8955
|
channelSecret?: string | undefined;
|
8875
8956
|
additionalCredentials?: any;
|
8957
|
+
lineRichMenuId?: string | null | undefined;
|
8876
8958
|
}>;
|
8877
8959
|
platformId: z.ZodString;
|
8878
8960
|
brandName: z.ZodString;
|
8879
8961
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
8880
8962
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8881
8963
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8964
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8882
8965
|
actor: z.ZodOptional<z.ZodObject<{
|
8883
8966
|
id: z.ZodString;
|
8884
8967
|
name: z.ZodString;
|
@@ -8908,12 +8991,14 @@ export declare const messengerContract: {
|
|
8908
8991
|
accessToken?: string | undefined;
|
8909
8992
|
channelSecret?: string | undefined;
|
8910
8993
|
additionalCredentials?: any;
|
8994
|
+
lineRichMenuId?: string | null | undefined;
|
8911
8995
|
};
|
8912
8996
|
status: boolean;
|
8913
8997
|
brandName: string;
|
8914
8998
|
platformId: string;
|
8915
8999
|
connectedUserName?: string | null | undefined;
|
8916
9000
|
connectedUserId?: string | null | undefined;
|
9001
|
+
lineRichMenuId?: string | null | undefined;
|
8917
9002
|
actor?: {
|
8918
9003
|
id: string;
|
8919
9004
|
address: string | null;
|
@@ -8931,12 +9016,14 @@ export declare const messengerContract: {
|
|
8931
9016
|
accessToken?: string | undefined;
|
8932
9017
|
channelSecret?: string | undefined;
|
8933
9018
|
additionalCredentials?: any;
|
9019
|
+
lineRichMenuId?: string | null | undefined;
|
8934
9020
|
};
|
8935
9021
|
status: boolean;
|
8936
9022
|
brandName: string;
|
8937
9023
|
platformId: string;
|
8938
9024
|
connectedUserName?: string | null | undefined;
|
8939
9025
|
connectedUserId?: string | null | undefined;
|
9026
|
+
lineRichMenuId?: string | null | undefined;
|
8940
9027
|
actor?: {
|
8941
9028
|
id: string;
|
8942
9029
|
address: string | null;
|
@@ -8956,12 +9043,14 @@ export declare const messengerContract: {
|
|
8956
9043
|
accessToken?: string | undefined;
|
8957
9044
|
channelSecret?: string | undefined;
|
8958
9045
|
additionalCredentials?: any;
|
9046
|
+
lineRichMenuId?: string | null | undefined;
|
8959
9047
|
};
|
8960
9048
|
status: boolean;
|
8961
9049
|
brandName: string;
|
8962
9050
|
platformId: string;
|
8963
9051
|
connectedUserName?: string | null | undefined;
|
8964
9052
|
connectedUserId?: string | null | undefined;
|
9053
|
+
lineRichMenuId?: string | null | undefined;
|
8965
9054
|
actor?: {
|
8966
9055
|
id: string;
|
8967
9056
|
address: string | null;
|
@@ -8982,12 +9071,14 @@ export declare const messengerContract: {
|
|
8982
9071
|
accessToken?: string | undefined;
|
8983
9072
|
channelSecret?: string | undefined;
|
8984
9073
|
additionalCredentials?: any;
|
9074
|
+
lineRichMenuId?: string | null | undefined;
|
8985
9075
|
};
|
8986
9076
|
status: boolean;
|
8987
9077
|
brandName: string;
|
8988
9078
|
platformId: string;
|
8989
9079
|
connectedUserName?: string | null | undefined;
|
8990
9080
|
connectedUserId?: string | null | undefined;
|
9081
|
+
lineRichMenuId?: string | null | undefined;
|
8991
9082
|
actor?: {
|
8992
9083
|
id: string;
|
8993
9084
|
address: string | null;
|
@@ -9031,18 +9122,21 @@ export declare const messengerContract: {
|
|
9031
9122
|
accessToken: z.ZodOptional<z.ZodString>;
|
9032
9123
|
channelSecret: z.ZodOptional<z.ZodString>;
|
9033
9124
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9125
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9034
9126
|
}, "strip", z.ZodTypeAny, {
|
9035
9127
|
id: string;
|
9036
9128
|
name: string;
|
9037
9129
|
accessToken?: string | undefined;
|
9038
9130
|
channelSecret?: string | undefined;
|
9039
9131
|
additionalCredentials?: any;
|
9132
|
+
lineRichMenuId?: string | null | undefined;
|
9040
9133
|
}, {
|
9041
9134
|
id: string;
|
9042
9135
|
name: string;
|
9043
9136
|
accessToken?: string | undefined;
|
9044
9137
|
channelSecret?: string | undefined;
|
9045
9138
|
additionalCredentials?: any;
|
9139
|
+
lineRichMenuId?: string | null | undefined;
|
9046
9140
|
}>;
|
9047
9141
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
9048
9142
|
actor: z.ZodOptional<z.ZodObject<{
|
@@ -9064,6 +9158,7 @@ export declare const messengerContract: {
|
|
9064
9158
|
email: string;
|
9065
9159
|
phone: string | null;
|
9066
9160
|
}>>;
|
9161
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9067
9162
|
brandName: z.ZodString;
|
9068
9163
|
platformId: z.ZodString;
|
9069
9164
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -9083,6 +9178,7 @@ export declare const messengerContract: {
|
|
9083
9178
|
accessToken?: string | undefined;
|
9084
9179
|
channelSecret?: string | undefined;
|
9085
9180
|
additionalCredentials?: any;
|
9181
|
+
lineRichMenuId?: string | null | undefined;
|
9086
9182
|
};
|
9087
9183
|
status: boolean;
|
9088
9184
|
createdAt: string;
|
@@ -9098,6 +9194,7 @@ export declare const messengerContract: {
|
|
9098
9194
|
email: string;
|
9099
9195
|
phone: string | null;
|
9100
9196
|
} | undefined;
|
9197
|
+
lineRichMenuId?: string | null | undefined;
|
9101
9198
|
connectedUserName?: string | null | undefined;
|
9102
9199
|
connectedUserId?: string | null | undefined;
|
9103
9200
|
}, {
|
@@ -9110,6 +9207,7 @@ export declare const messengerContract: {
|
|
9110
9207
|
accessToken?: string | undefined;
|
9111
9208
|
channelSecret?: string | undefined;
|
9112
9209
|
additionalCredentials?: any;
|
9210
|
+
lineRichMenuId?: string | null | undefined;
|
9113
9211
|
};
|
9114
9212
|
status: boolean;
|
9115
9213
|
createdAt: string;
|
@@ -9125,6 +9223,7 @@ export declare const messengerContract: {
|
|
9125
9223
|
email: string;
|
9126
9224
|
phone: string | null;
|
9127
9225
|
} | undefined;
|
9226
|
+
lineRichMenuId?: string | null | undefined;
|
9128
9227
|
connectedUserName?: string | null | undefined;
|
9129
9228
|
connectedUserId?: string | null | undefined;
|
9130
9229
|
}>;
|
@@ -9142,24 +9241,28 @@ export declare const messengerContract: {
|
|
9142
9241
|
accessToken: z.ZodOptional<z.ZodString>;
|
9143
9242
|
channelSecret: z.ZodOptional<z.ZodString>;
|
9144
9243
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9244
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9145
9245
|
}, "strip", z.ZodTypeAny, {
|
9146
9246
|
id: string;
|
9147
9247
|
name: string;
|
9148
9248
|
accessToken?: string | undefined;
|
9149
9249
|
channelSecret?: string | undefined;
|
9150
9250
|
additionalCredentials?: any;
|
9251
|
+
lineRichMenuId?: string | null | undefined;
|
9151
9252
|
}, {
|
9152
9253
|
id: string;
|
9153
9254
|
name: string;
|
9154
9255
|
accessToken?: string | undefined;
|
9155
9256
|
channelSecret?: string | undefined;
|
9156
9257
|
additionalCredentials?: any;
|
9258
|
+
lineRichMenuId?: string | null | undefined;
|
9157
9259
|
}>;
|
9158
9260
|
platformId: z.ZodString;
|
9159
9261
|
brandName: z.ZodString;
|
9160
9262
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
9161
9263
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9162
9264
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9265
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9163
9266
|
actor: z.ZodOptional<z.ZodObject<{
|
9164
9267
|
id: z.ZodString;
|
9165
9268
|
name: z.ZodString;
|
@@ -9189,12 +9292,14 @@ export declare const messengerContract: {
|
|
9189
9292
|
accessToken?: string | undefined;
|
9190
9293
|
channelSecret?: string | undefined;
|
9191
9294
|
additionalCredentials?: any;
|
9295
|
+
lineRichMenuId?: string | null | undefined;
|
9192
9296
|
};
|
9193
9297
|
status: boolean;
|
9194
9298
|
brandName: string;
|
9195
9299
|
platformId: string;
|
9196
9300
|
connectedUserName?: string | null | undefined;
|
9197
9301
|
connectedUserId?: string | null | undefined;
|
9302
|
+
lineRichMenuId?: string | null | undefined;
|
9198
9303
|
actor?: {
|
9199
9304
|
id: string;
|
9200
9305
|
address: string | null;
|
@@ -9212,12 +9317,14 @@ export declare const messengerContract: {
|
|
9212
9317
|
accessToken?: string | undefined;
|
9213
9318
|
channelSecret?: string | undefined;
|
9214
9319
|
additionalCredentials?: any;
|
9320
|
+
lineRichMenuId?: string | null | undefined;
|
9215
9321
|
};
|
9216
9322
|
status: boolean;
|
9217
9323
|
brandName: string;
|
9218
9324
|
platformId: string;
|
9219
9325
|
connectedUserName?: string | null | undefined;
|
9220
9326
|
connectedUserId?: string | null | undefined;
|
9327
|
+
lineRichMenuId?: string | null | undefined;
|
9221
9328
|
actor?: {
|
9222
9329
|
id: string;
|
9223
9330
|
address: string | null;
|
@@ -9237,12 +9344,14 @@ export declare const messengerContract: {
|
|
9237
9344
|
accessToken?: string | undefined;
|
9238
9345
|
channelSecret?: string | undefined;
|
9239
9346
|
additionalCredentials?: any;
|
9347
|
+
lineRichMenuId?: string | null | undefined;
|
9240
9348
|
};
|
9241
9349
|
status: boolean;
|
9242
9350
|
brandName: string;
|
9243
9351
|
platformId: string;
|
9244
9352
|
connectedUserName?: string | null | undefined;
|
9245
9353
|
connectedUserId?: string | null | undefined;
|
9354
|
+
lineRichMenuId?: string | null | undefined;
|
9246
9355
|
actor?: {
|
9247
9356
|
id: string;
|
9248
9357
|
address: string | null;
|
@@ -9263,12 +9372,14 @@ export declare const messengerContract: {
|
|
9263
9372
|
accessToken?: string | undefined;
|
9264
9373
|
channelSecret?: string | undefined;
|
9265
9374
|
additionalCredentials?: any;
|
9375
|
+
lineRichMenuId?: string | null | undefined;
|
9266
9376
|
};
|
9267
9377
|
status: boolean;
|
9268
9378
|
brandName: string;
|
9269
9379
|
platformId: string;
|
9270
9380
|
connectedUserName?: string | null | undefined;
|
9271
9381
|
connectedUserId?: string | null | undefined;
|
9382
|
+
lineRichMenuId?: string | null | undefined;
|
9272
9383
|
actor?: {
|
9273
9384
|
id: string;
|
9274
9385
|
address: string | null;
|