@kl1/contracts 1.1.43-uat → 1.1.45-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 +128 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +128 -27
- package/dist/index.mjs.map +1 -1
- package/dist/src/botpress/index.d.ts +23 -14
- package/dist/src/botpress/index.d.ts.map +1 -1
- package/dist/src/botpress/validation.d.ts +23 -14
- 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 +1005 -166
- 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/dashboard/index.d.ts +156 -146
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +207 -207
- package/dist/src/dashboard/validation.d.ts +10 -0
- package/dist/src/dashboard/validation.d.ts.map +1 -1
- package/dist/src/export/index.d.ts +43 -0
- package/dist/src/export/index.d.ts.map +1 -0
- 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
@@ -139,24 +139,28 @@ export declare const instagramContract: {
|
|
139
139
|
accessToken: z.ZodOptional<z.ZodString>;
|
140
140
|
channelSecret: z.ZodOptional<z.ZodString>;
|
141
141
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
142
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
142
143
|
}, "strip", z.ZodTypeAny, {
|
143
144
|
id: string;
|
144
145
|
name: string;
|
145
146
|
accessToken?: string | undefined;
|
146
147
|
channelSecret?: string | undefined;
|
147
148
|
additionalCredentials?: any;
|
149
|
+
lineRichMenuId?: string | null | undefined;
|
148
150
|
}, {
|
149
151
|
id: string;
|
150
152
|
name: string;
|
151
153
|
accessToken?: string | undefined;
|
152
154
|
channelSecret?: string | undefined;
|
153
155
|
additionalCredentials?: any;
|
156
|
+
lineRichMenuId?: string | null | undefined;
|
154
157
|
}>;
|
155
158
|
platformId: z.ZodString;
|
156
159
|
brandName: z.ZodString;
|
157
160
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
158
161
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
159
162
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
163
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
160
164
|
actor: z.ZodOptional<z.ZodObject<{
|
161
165
|
id: z.ZodString;
|
162
166
|
name: z.ZodString;
|
@@ -186,12 +190,14 @@ export declare const instagramContract: {
|
|
186
190
|
accessToken?: string | undefined;
|
187
191
|
channelSecret?: string | undefined;
|
188
192
|
additionalCredentials?: any;
|
193
|
+
lineRichMenuId?: string | null | undefined;
|
189
194
|
};
|
190
195
|
status: boolean;
|
191
196
|
brandName: string;
|
192
197
|
platformId: string;
|
193
198
|
connectedUserName?: string | null | undefined;
|
194
199
|
connectedUserId?: string | null | undefined;
|
200
|
+
lineRichMenuId?: string | null | undefined;
|
195
201
|
actor?: {
|
196
202
|
id: string;
|
197
203
|
address: string | null;
|
@@ -209,12 +215,14 @@ export declare const instagramContract: {
|
|
209
215
|
accessToken?: string | undefined;
|
210
216
|
channelSecret?: string | undefined;
|
211
217
|
additionalCredentials?: any;
|
218
|
+
lineRichMenuId?: string | null | undefined;
|
212
219
|
};
|
213
220
|
status: boolean;
|
214
221
|
brandName: string;
|
215
222
|
platformId: string;
|
216
223
|
connectedUserName?: string | null | undefined;
|
217
224
|
connectedUserId?: string | null | undefined;
|
225
|
+
lineRichMenuId?: string | null | undefined;
|
218
226
|
actor?: {
|
219
227
|
id: string;
|
220
228
|
address: string | null;
|
@@ -236,12 +244,14 @@ export declare const instagramContract: {
|
|
236
244
|
accessToken?: string | undefined;
|
237
245
|
channelSecret?: string | undefined;
|
238
246
|
additionalCredentials?: any;
|
247
|
+
lineRichMenuId?: string | null | undefined;
|
239
248
|
};
|
240
249
|
status: boolean;
|
241
250
|
brandName: string;
|
242
251
|
platformId: string;
|
243
252
|
connectedUserName?: string | null | undefined;
|
244
253
|
connectedUserId?: string | null | undefined;
|
254
|
+
lineRichMenuId?: string | null | undefined;
|
245
255
|
actor?: {
|
246
256
|
id: string;
|
247
257
|
address: string | null;
|
@@ -302,12 +312,14 @@ export declare const instagramContract: {
|
|
302
312
|
accessToken?: string | undefined;
|
303
313
|
channelSecret?: string | undefined;
|
304
314
|
additionalCredentials?: any;
|
315
|
+
lineRichMenuId?: string | null | undefined;
|
305
316
|
};
|
306
317
|
status: boolean;
|
307
318
|
brandName: string;
|
308
319
|
platformId: string;
|
309
320
|
connectedUserName?: string | null | undefined;
|
310
321
|
connectedUserId?: string | null | undefined;
|
322
|
+
lineRichMenuId?: string | null | undefined;
|
311
323
|
actor?: {
|
312
324
|
id: string;
|
313
325
|
address: string | null;
|
@@ -508,12 +520,14 @@ export declare const instagramContract: {
|
|
508
520
|
accessToken?: string | undefined;
|
509
521
|
channelSecret?: string | undefined;
|
510
522
|
additionalCredentials?: any;
|
523
|
+
lineRichMenuId?: string | null | undefined;
|
511
524
|
};
|
512
525
|
status: boolean;
|
513
526
|
brandName: string;
|
514
527
|
platformId: string;
|
515
528
|
connectedUserName?: string | null | undefined;
|
516
529
|
connectedUserId?: string | null | undefined;
|
530
|
+
lineRichMenuId?: string | null | undefined;
|
517
531
|
actor?: {
|
518
532
|
id: string;
|
519
533
|
address: string | null;
|
@@ -606,12 +620,14 @@ export declare const instagramContract: {
|
|
606
620
|
accessToken?: string | undefined;
|
607
621
|
channelSecret?: string | undefined;
|
608
622
|
additionalCredentials?: any;
|
623
|
+
lineRichMenuId?: string | null | undefined;
|
609
624
|
};
|
610
625
|
status: boolean;
|
611
626
|
brandName: string;
|
612
627
|
platformId: string;
|
613
628
|
connectedUserName?: string | null | undefined;
|
614
629
|
connectedUserId?: string | null | undefined;
|
630
|
+
lineRichMenuId?: string | null | undefined;
|
615
631
|
actor?: {
|
616
632
|
id: string;
|
617
633
|
address: string | null;
|
@@ -2056,18 +2072,21 @@ export declare const instagramContract: {
|
|
2056
2072
|
accessToken: z.ZodOptional<z.ZodString>;
|
2057
2073
|
channelSecret: z.ZodOptional<z.ZodString>;
|
2058
2074
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2075
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2059
2076
|
}, "strip", z.ZodTypeAny, {
|
2060
2077
|
id: string;
|
2061
2078
|
name: string;
|
2062
2079
|
accessToken?: string | undefined;
|
2063
2080
|
channelSecret?: string | undefined;
|
2064
2081
|
additionalCredentials?: any;
|
2082
|
+
lineRichMenuId?: string | null | undefined;
|
2065
2083
|
}, {
|
2066
2084
|
id: string;
|
2067
2085
|
name: string;
|
2068
2086
|
accessToken?: string | undefined;
|
2069
2087
|
channelSecret?: string | undefined;
|
2070
2088
|
additionalCredentials?: any;
|
2089
|
+
lineRichMenuId?: string | null | undefined;
|
2071
2090
|
}>;
|
2072
2091
|
brandName: z.ZodString;
|
2073
2092
|
platformId: z.ZodString;
|
@@ -2308,6 +2327,7 @@ export declare const instagramContract: {
|
|
2308
2327
|
accessToken?: string | undefined;
|
2309
2328
|
channelSecret?: string | undefined;
|
2310
2329
|
additionalCredentials?: any;
|
2330
|
+
lineRichMenuId?: string | null | undefined;
|
2311
2331
|
};
|
2312
2332
|
status: boolean;
|
2313
2333
|
createdAt: Date;
|
@@ -2379,6 +2399,7 @@ export declare const instagramContract: {
|
|
2379
2399
|
accessToken?: string | undefined;
|
2380
2400
|
channelSecret?: string | undefined;
|
2381
2401
|
additionalCredentials?: any;
|
2402
|
+
lineRichMenuId?: string | null | undefined;
|
2382
2403
|
};
|
2383
2404
|
status: boolean;
|
2384
2405
|
createdAt: Date;
|
@@ -2897,6 +2918,7 @@ export declare const instagramContract: {
|
|
2897
2918
|
accessToken?: string | undefined;
|
2898
2919
|
channelSecret?: string | undefined;
|
2899
2920
|
additionalCredentials?: any;
|
2921
|
+
lineRichMenuId?: string | null | undefined;
|
2900
2922
|
};
|
2901
2923
|
status: boolean;
|
2902
2924
|
createdAt: Date;
|
@@ -3263,6 +3285,7 @@ export declare const instagramContract: {
|
|
3263
3285
|
accessToken?: string | undefined;
|
3264
3286
|
channelSecret?: string | undefined;
|
3265
3287
|
additionalCredentials?: any;
|
3288
|
+
lineRichMenuId?: string | null | undefined;
|
3266
3289
|
};
|
3267
3290
|
status: boolean;
|
3268
3291
|
createdAt: Date;
|
@@ -5400,6 +5423,7 @@ export declare const instagramContract: {
|
|
5400
5423
|
accessToken?: string | undefined;
|
5401
5424
|
channelSecret?: string | undefined;
|
5402
5425
|
additionalCredentials?: any;
|
5426
|
+
lineRichMenuId?: string | null | undefined;
|
5403
5427
|
};
|
5404
5428
|
status: boolean;
|
5405
5429
|
createdAt: Date;
|
@@ -6101,6 +6125,7 @@ export declare const instagramContract: {
|
|
6101
6125
|
accessToken?: string | undefined;
|
6102
6126
|
channelSecret?: string | undefined;
|
6103
6127
|
additionalCredentials?: any;
|
6128
|
+
lineRichMenuId?: string | null | undefined;
|
6104
6129
|
};
|
6105
6130
|
status: boolean;
|
6106
6131
|
createdAt: Date;
|
@@ -6804,6 +6829,7 @@ export declare const instagramContract: {
|
|
6804
6829
|
accessToken?: string | undefined;
|
6805
6830
|
channelSecret?: string | undefined;
|
6806
6831
|
additionalCredentials?: any;
|
6832
|
+
lineRichMenuId?: string | null | undefined;
|
6807
6833
|
};
|
6808
6834
|
status: boolean;
|
6809
6835
|
createdAt: Date;
|
@@ -7508,6 +7534,7 @@ export declare const instagramContract: {
|
|
7508
7534
|
accessToken?: string | undefined;
|
7509
7535
|
channelSecret?: string | undefined;
|
7510
7536
|
additionalCredentials?: any;
|
7537
|
+
lineRichMenuId?: string | null | undefined;
|
7511
7538
|
};
|
7512
7539
|
status: boolean;
|
7513
7540
|
createdAt: Date;
|
@@ -8114,24 +8141,28 @@ export declare const instagramContract: {
|
|
8114
8141
|
accessToken: z.ZodOptional<z.ZodString>;
|
8115
8142
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8116
8143
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8144
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8117
8145
|
}, "strip", z.ZodTypeAny, {
|
8118
8146
|
id: string;
|
8119
8147
|
name: string;
|
8120
8148
|
accessToken?: string | undefined;
|
8121
8149
|
channelSecret?: string | undefined;
|
8122
8150
|
additionalCredentials?: any;
|
8151
|
+
lineRichMenuId?: string | null | undefined;
|
8123
8152
|
}, {
|
8124
8153
|
id: string;
|
8125
8154
|
name: string;
|
8126
8155
|
accessToken?: string | undefined;
|
8127
8156
|
channelSecret?: string | undefined;
|
8128
8157
|
additionalCredentials?: any;
|
8158
|
+
lineRichMenuId?: string | null | undefined;
|
8129
8159
|
}>>;
|
8130
8160
|
platformId: z.ZodOptional<z.ZodString>;
|
8131
8161
|
brandName: z.ZodOptional<z.ZodString>;
|
8132
8162
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
|
8133
8163
|
connectedUserName: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8134
8164
|
connectedUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8165
|
+
lineRichMenuId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8135
8166
|
actor: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
8136
8167
|
id: z.ZodString;
|
8137
8168
|
name: z.ZodString;
|
@@ -8161,12 +8192,14 @@ export declare const instagramContract: {
|
|
8161
8192
|
accessToken?: string | undefined;
|
8162
8193
|
channelSecret?: string | undefined;
|
8163
8194
|
additionalCredentials?: any;
|
8195
|
+
lineRichMenuId?: string | null | undefined;
|
8164
8196
|
} | undefined;
|
8165
8197
|
platformId?: string | undefined;
|
8166
8198
|
brandName?: string | undefined;
|
8167
8199
|
status?: boolean | undefined;
|
8168
8200
|
connectedUserName?: string | null | undefined;
|
8169
8201
|
connectedUserId?: string | null | undefined;
|
8202
|
+
lineRichMenuId?: string | null | undefined;
|
8170
8203
|
actor?: {
|
8171
8204
|
id: string;
|
8172
8205
|
address: string | null;
|
@@ -8184,12 +8217,14 @@ export declare const instagramContract: {
|
|
8184
8217
|
accessToken?: string | undefined;
|
8185
8218
|
channelSecret?: string | undefined;
|
8186
8219
|
additionalCredentials?: any;
|
8220
|
+
lineRichMenuId?: string | null | undefined;
|
8187
8221
|
} | undefined;
|
8188
8222
|
platformId?: string | undefined;
|
8189
8223
|
brandName?: string | undefined;
|
8190
8224
|
status?: boolean | undefined;
|
8191
8225
|
connectedUserName?: string | null | undefined;
|
8192
8226
|
connectedUserId?: string | null | undefined;
|
8227
|
+
lineRichMenuId?: string | null | undefined;
|
8193
8228
|
actor?: {
|
8194
8229
|
id: string;
|
8195
8230
|
address: string | null;
|
@@ -8212,24 +8247,28 @@ export declare const instagramContract: {
|
|
8212
8247
|
accessToken: z.ZodOptional<z.ZodString>;
|
8213
8248
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8214
8249
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8250
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8215
8251
|
}, "strip", z.ZodTypeAny, {
|
8216
8252
|
id: string;
|
8217
8253
|
name: string;
|
8218
8254
|
accessToken?: string | undefined;
|
8219
8255
|
channelSecret?: string | undefined;
|
8220
8256
|
additionalCredentials?: any;
|
8257
|
+
lineRichMenuId?: string | null | undefined;
|
8221
8258
|
}, {
|
8222
8259
|
id: string;
|
8223
8260
|
name: string;
|
8224
8261
|
accessToken?: string | undefined;
|
8225
8262
|
channelSecret?: string | undefined;
|
8226
8263
|
additionalCredentials?: any;
|
8264
|
+
lineRichMenuId?: string | null | undefined;
|
8227
8265
|
}>;
|
8228
8266
|
platformId: z.ZodString;
|
8229
8267
|
brandName: z.ZodString;
|
8230
8268
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
8231
8269
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8232
8270
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8271
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8233
8272
|
actor: z.ZodOptional<z.ZodObject<{
|
8234
8273
|
id: z.ZodString;
|
8235
8274
|
name: z.ZodString;
|
@@ -8259,12 +8298,14 @@ export declare const instagramContract: {
|
|
8259
8298
|
accessToken?: string | undefined;
|
8260
8299
|
channelSecret?: string | undefined;
|
8261
8300
|
additionalCredentials?: any;
|
8301
|
+
lineRichMenuId?: string | null | undefined;
|
8262
8302
|
};
|
8263
8303
|
status: boolean;
|
8264
8304
|
brandName: string;
|
8265
8305
|
platformId: string;
|
8266
8306
|
connectedUserName?: string | null | undefined;
|
8267
8307
|
connectedUserId?: string | null | undefined;
|
8308
|
+
lineRichMenuId?: string | null | undefined;
|
8268
8309
|
actor?: {
|
8269
8310
|
id: string;
|
8270
8311
|
address: string | null;
|
@@ -8282,12 +8323,14 @@ export declare const instagramContract: {
|
|
8282
8323
|
accessToken?: string | undefined;
|
8283
8324
|
channelSecret?: string | undefined;
|
8284
8325
|
additionalCredentials?: any;
|
8326
|
+
lineRichMenuId?: string | null | undefined;
|
8285
8327
|
};
|
8286
8328
|
status: boolean;
|
8287
8329
|
brandName: string;
|
8288
8330
|
platformId: string;
|
8289
8331
|
connectedUserName?: string | null | undefined;
|
8290
8332
|
connectedUserId?: string | null | undefined;
|
8333
|
+
lineRichMenuId?: string | null | undefined;
|
8291
8334
|
actor?: {
|
8292
8335
|
id: string;
|
8293
8336
|
address: string | null;
|
@@ -8307,12 +8350,14 @@ export declare const instagramContract: {
|
|
8307
8350
|
accessToken?: string | undefined;
|
8308
8351
|
channelSecret?: string | undefined;
|
8309
8352
|
additionalCredentials?: any;
|
8353
|
+
lineRichMenuId?: string | null | undefined;
|
8310
8354
|
};
|
8311
8355
|
status: boolean;
|
8312
8356
|
brandName: string;
|
8313
8357
|
platformId: string;
|
8314
8358
|
connectedUserName?: string | null | undefined;
|
8315
8359
|
connectedUserId?: string | null | undefined;
|
8360
|
+
lineRichMenuId?: string | null | undefined;
|
8316
8361
|
actor?: {
|
8317
8362
|
id: string;
|
8318
8363
|
address: string | null;
|
@@ -8333,12 +8378,14 @@ export declare const instagramContract: {
|
|
8333
8378
|
accessToken?: string | undefined;
|
8334
8379
|
channelSecret?: string | undefined;
|
8335
8380
|
additionalCredentials?: any;
|
8381
|
+
lineRichMenuId?: string | null | undefined;
|
8336
8382
|
};
|
8337
8383
|
status: boolean;
|
8338
8384
|
brandName: string;
|
8339
8385
|
platformId: string;
|
8340
8386
|
connectedUserName?: string | null | undefined;
|
8341
8387
|
connectedUserId?: string | null | undefined;
|
8388
|
+
lineRichMenuId?: string | null | undefined;
|
8342
8389
|
actor?: {
|
8343
8390
|
id: string;
|
8344
8391
|
address: string | null;
|
@@ -8383,24 +8430,28 @@ export declare const instagramContract: {
|
|
8383
8430
|
accessToken: z.ZodOptional<z.ZodString>;
|
8384
8431
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8385
8432
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8433
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8386
8434
|
}, "strip", z.ZodTypeAny, {
|
8387
8435
|
id: string;
|
8388
8436
|
name: string;
|
8389
8437
|
accessToken?: string | undefined;
|
8390
8438
|
channelSecret?: string | undefined;
|
8391
8439
|
additionalCredentials?: any;
|
8440
|
+
lineRichMenuId?: string | null | undefined;
|
8392
8441
|
}, {
|
8393
8442
|
id: string;
|
8394
8443
|
name: string;
|
8395
8444
|
accessToken?: string | undefined;
|
8396
8445
|
channelSecret?: string | undefined;
|
8397
8446
|
additionalCredentials?: any;
|
8447
|
+
lineRichMenuId?: string | null | undefined;
|
8398
8448
|
}>>;
|
8399
8449
|
platformId: z.ZodOptional<z.ZodString>;
|
8400
8450
|
brandName: z.ZodOptional<z.ZodString>;
|
8401
8451
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
|
8402
8452
|
connectedUserName: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8403
8453
|
connectedUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8454
|
+
lineRichMenuId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
8404
8455
|
actor: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
8405
8456
|
id: z.ZodString;
|
8406
8457
|
name: z.ZodString;
|
@@ -8430,12 +8481,14 @@ export declare const instagramContract: {
|
|
8430
8481
|
accessToken?: string | undefined;
|
8431
8482
|
channelSecret?: string | undefined;
|
8432
8483
|
additionalCredentials?: any;
|
8484
|
+
lineRichMenuId?: string | null | undefined;
|
8433
8485
|
} | undefined;
|
8434
8486
|
platformId?: string | undefined;
|
8435
8487
|
brandName?: string | undefined;
|
8436
8488
|
status?: boolean | undefined;
|
8437
8489
|
connectedUserName?: string | null | undefined;
|
8438
8490
|
connectedUserId?: string | null | undefined;
|
8491
|
+
lineRichMenuId?: string | null | undefined;
|
8439
8492
|
actor?: {
|
8440
8493
|
id: string;
|
8441
8494
|
address: string | null;
|
@@ -8453,12 +8506,14 @@ export declare const instagramContract: {
|
|
8453
8506
|
accessToken?: string | undefined;
|
8454
8507
|
channelSecret?: string | undefined;
|
8455
8508
|
additionalCredentials?: any;
|
8509
|
+
lineRichMenuId?: string | null | undefined;
|
8456
8510
|
} | undefined;
|
8457
8511
|
platformId?: string | undefined;
|
8458
8512
|
brandName?: string | undefined;
|
8459
8513
|
status?: boolean | undefined;
|
8460
8514
|
connectedUserName?: string | null | undefined;
|
8461
8515
|
connectedUserId?: string | null | undefined;
|
8516
|
+
lineRichMenuId?: string | null | undefined;
|
8462
8517
|
actor?: {
|
8463
8518
|
id: string;
|
8464
8519
|
address: string | null;
|
@@ -8481,24 +8536,28 @@ export declare const instagramContract: {
|
|
8481
8536
|
accessToken: z.ZodOptional<z.ZodString>;
|
8482
8537
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8483
8538
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8539
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8484
8540
|
}, "strip", z.ZodTypeAny, {
|
8485
8541
|
id: string;
|
8486
8542
|
name: string;
|
8487
8543
|
accessToken?: string | undefined;
|
8488
8544
|
channelSecret?: string | undefined;
|
8489
8545
|
additionalCredentials?: any;
|
8546
|
+
lineRichMenuId?: string | null | undefined;
|
8490
8547
|
}, {
|
8491
8548
|
id: string;
|
8492
8549
|
name: string;
|
8493
8550
|
accessToken?: string | undefined;
|
8494
8551
|
channelSecret?: string | undefined;
|
8495
8552
|
additionalCredentials?: any;
|
8553
|
+
lineRichMenuId?: string | null | undefined;
|
8496
8554
|
}>;
|
8497
8555
|
platformId: z.ZodString;
|
8498
8556
|
brandName: z.ZodString;
|
8499
8557
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
8500
8558
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8501
8559
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8560
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8502
8561
|
actor: z.ZodOptional<z.ZodObject<{
|
8503
8562
|
id: z.ZodString;
|
8504
8563
|
name: z.ZodString;
|
@@ -8528,12 +8587,14 @@ export declare const instagramContract: {
|
|
8528
8587
|
accessToken?: string | undefined;
|
8529
8588
|
channelSecret?: string | undefined;
|
8530
8589
|
additionalCredentials?: any;
|
8590
|
+
lineRichMenuId?: string | null | undefined;
|
8531
8591
|
};
|
8532
8592
|
status: boolean;
|
8533
8593
|
brandName: string;
|
8534
8594
|
platformId: string;
|
8535
8595
|
connectedUserName?: string | null | undefined;
|
8536
8596
|
connectedUserId?: string | null | undefined;
|
8597
|
+
lineRichMenuId?: string | null | undefined;
|
8537
8598
|
actor?: {
|
8538
8599
|
id: string;
|
8539
8600
|
address: string | null;
|
@@ -8551,12 +8612,14 @@ export declare const instagramContract: {
|
|
8551
8612
|
accessToken?: string | undefined;
|
8552
8613
|
channelSecret?: string | undefined;
|
8553
8614
|
additionalCredentials?: any;
|
8615
|
+
lineRichMenuId?: string | null | undefined;
|
8554
8616
|
};
|
8555
8617
|
status: boolean;
|
8556
8618
|
brandName: string;
|
8557
8619
|
platformId: string;
|
8558
8620
|
connectedUserName?: string | null | undefined;
|
8559
8621
|
connectedUserId?: string | null | undefined;
|
8622
|
+
lineRichMenuId?: string | null | undefined;
|
8560
8623
|
actor?: {
|
8561
8624
|
id: string;
|
8562
8625
|
address: string | null;
|
@@ -8576,12 +8639,14 @@ export declare const instagramContract: {
|
|
8576
8639
|
accessToken?: string | undefined;
|
8577
8640
|
channelSecret?: string | undefined;
|
8578
8641
|
additionalCredentials?: any;
|
8642
|
+
lineRichMenuId?: string | null | undefined;
|
8579
8643
|
};
|
8580
8644
|
status: boolean;
|
8581
8645
|
brandName: string;
|
8582
8646
|
platformId: string;
|
8583
8647
|
connectedUserName?: string | null | undefined;
|
8584
8648
|
connectedUserId?: string | null | undefined;
|
8649
|
+
lineRichMenuId?: string | null | undefined;
|
8585
8650
|
actor?: {
|
8586
8651
|
id: string;
|
8587
8652
|
address: string | null;
|
@@ -8602,12 +8667,14 @@ export declare const instagramContract: {
|
|
8602
8667
|
accessToken?: string | undefined;
|
8603
8668
|
channelSecret?: string | undefined;
|
8604
8669
|
additionalCredentials?: any;
|
8670
|
+
lineRichMenuId?: string | null | undefined;
|
8605
8671
|
};
|
8606
8672
|
status: boolean;
|
8607
8673
|
brandName: string;
|
8608
8674
|
platformId: string;
|
8609
8675
|
connectedUserName?: string | null | undefined;
|
8610
8676
|
connectedUserId?: string | null | undefined;
|
8677
|
+
lineRichMenuId?: string | null | undefined;
|
8611
8678
|
actor?: {
|
8612
8679
|
id: string;
|
8613
8680
|
address: string | null;
|
@@ -8664,24 +8731,28 @@ export declare const instagramContract: {
|
|
8664
8731
|
accessToken: z.ZodOptional<z.ZodString>;
|
8665
8732
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8666
8733
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8734
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8667
8735
|
}, "strip", z.ZodTypeAny, {
|
8668
8736
|
id: string;
|
8669
8737
|
name: string;
|
8670
8738
|
accessToken?: string | undefined;
|
8671
8739
|
channelSecret?: string | undefined;
|
8672
8740
|
additionalCredentials?: any;
|
8741
|
+
lineRichMenuId?: string | null | undefined;
|
8673
8742
|
}, {
|
8674
8743
|
id: string;
|
8675
8744
|
name: string;
|
8676
8745
|
accessToken?: string | undefined;
|
8677
8746
|
channelSecret?: string | undefined;
|
8678
8747
|
additionalCredentials?: any;
|
8748
|
+
lineRichMenuId?: string | null | undefined;
|
8679
8749
|
}>;
|
8680
8750
|
platformId: z.ZodString;
|
8681
8751
|
brandName: z.ZodString;
|
8682
8752
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
8683
8753
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8684
8754
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8755
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8685
8756
|
actor: z.ZodOptional<z.ZodObject<{
|
8686
8757
|
id: z.ZodString;
|
8687
8758
|
name: z.ZodString;
|
@@ -8711,12 +8782,14 @@ export declare const instagramContract: {
|
|
8711
8782
|
accessToken?: string | undefined;
|
8712
8783
|
channelSecret?: string | undefined;
|
8713
8784
|
additionalCredentials?: any;
|
8785
|
+
lineRichMenuId?: string | null | undefined;
|
8714
8786
|
};
|
8715
8787
|
status: boolean;
|
8716
8788
|
brandName: string;
|
8717
8789
|
platformId: string;
|
8718
8790
|
connectedUserName?: string | null | undefined;
|
8719
8791
|
connectedUserId?: string | null | undefined;
|
8792
|
+
lineRichMenuId?: string | null | undefined;
|
8720
8793
|
actor?: {
|
8721
8794
|
id: string;
|
8722
8795
|
address: string | null;
|
@@ -8734,12 +8807,14 @@ export declare const instagramContract: {
|
|
8734
8807
|
accessToken?: string | undefined;
|
8735
8808
|
channelSecret?: string | undefined;
|
8736
8809
|
additionalCredentials?: any;
|
8810
|
+
lineRichMenuId?: string | null | undefined;
|
8737
8811
|
};
|
8738
8812
|
status: boolean;
|
8739
8813
|
brandName: string;
|
8740
8814
|
platformId: string;
|
8741
8815
|
connectedUserName?: string | null | undefined;
|
8742
8816
|
connectedUserId?: string | null | undefined;
|
8817
|
+
lineRichMenuId?: string | null | undefined;
|
8743
8818
|
actor?: {
|
8744
8819
|
id: string;
|
8745
8820
|
address: string | null;
|
@@ -8759,12 +8834,14 @@ export declare const instagramContract: {
|
|
8759
8834
|
accessToken?: string | undefined;
|
8760
8835
|
channelSecret?: string | undefined;
|
8761
8836
|
additionalCredentials?: any;
|
8837
|
+
lineRichMenuId?: string | null | undefined;
|
8762
8838
|
};
|
8763
8839
|
status: boolean;
|
8764
8840
|
brandName: string;
|
8765
8841
|
platformId: string;
|
8766
8842
|
connectedUserName?: string | null | undefined;
|
8767
8843
|
connectedUserId?: string | null | undefined;
|
8844
|
+
lineRichMenuId?: string | null | undefined;
|
8768
8845
|
actor?: {
|
8769
8846
|
id: string;
|
8770
8847
|
address: string | null;
|
@@ -8785,12 +8862,14 @@ export declare const instagramContract: {
|
|
8785
8862
|
accessToken?: string | undefined;
|
8786
8863
|
channelSecret?: string | undefined;
|
8787
8864
|
additionalCredentials?: any;
|
8865
|
+
lineRichMenuId?: string | null | undefined;
|
8788
8866
|
};
|
8789
8867
|
status: boolean;
|
8790
8868
|
brandName: string;
|
8791
8869
|
platformId: string;
|
8792
8870
|
connectedUserName?: string | null | undefined;
|
8793
8871
|
connectedUserId?: string | null | undefined;
|
8872
|
+
lineRichMenuId?: string | null | undefined;
|
8794
8873
|
actor?: {
|
8795
8874
|
id: string;
|
8796
8875
|
address: string | null;
|
@@ -8847,24 +8926,28 @@ export declare const instagramContract: {
|
|
8847
8926
|
accessToken: z.ZodOptional<z.ZodString>;
|
8848
8927
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8849
8928
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8929
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8850
8930
|
}, "strip", z.ZodTypeAny, {
|
8851
8931
|
id: string;
|
8852
8932
|
name: string;
|
8853
8933
|
accessToken?: string | undefined;
|
8854
8934
|
channelSecret?: string | undefined;
|
8855
8935
|
additionalCredentials?: any;
|
8936
|
+
lineRichMenuId?: string | null | undefined;
|
8856
8937
|
}, {
|
8857
8938
|
id: string;
|
8858
8939
|
name: string;
|
8859
8940
|
accessToken?: string | undefined;
|
8860
8941
|
channelSecret?: string | undefined;
|
8861
8942
|
additionalCredentials?: any;
|
8943
|
+
lineRichMenuId?: string | null | undefined;
|
8862
8944
|
}>;
|
8863
8945
|
platformId: z.ZodString;
|
8864
8946
|
brandName: z.ZodString;
|
8865
8947
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
8866
8948
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8867
8949
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8950
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8868
8951
|
actor: z.ZodOptional<z.ZodObject<{
|
8869
8952
|
id: z.ZodString;
|
8870
8953
|
name: z.ZodString;
|
@@ -8894,12 +8977,14 @@ export declare const instagramContract: {
|
|
8894
8977
|
accessToken?: string | undefined;
|
8895
8978
|
channelSecret?: string | undefined;
|
8896
8979
|
additionalCredentials?: any;
|
8980
|
+
lineRichMenuId?: string | null | undefined;
|
8897
8981
|
};
|
8898
8982
|
status: boolean;
|
8899
8983
|
brandName: string;
|
8900
8984
|
platformId: string;
|
8901
8985
|
connectedUserName?: string | null | undefined;
|
8902
8986
|
connectedUserId?: string | null | undefined;
|
8987
|
+
lineRichMenuId?: string | null | undefined;
|
8903
8988
|
actor?: {
|
8904
8989
|
id: string;
|
8905
8990
|
address: string | null;
|
@@ -8917,12 +9002,14 @@ export declare const instagramContract: {
|
|
8917
9002
|
accessToken?: string | undefined;
|
8918
9003
|
channelSecret?: string | undefined;
|
8919
9004
|
additionalCredentials?: any;
|
9005
|
+
lineRichMenuId?: string | null | undefined;
|
8920
9006
|
};
|
8921
9007
|
status: boolean;
|
8922
9008
|
brandName: string;
|
8923
9009
|
platformId: string;
|
8924
9010
|
connectedUserName?: string | null | undefined;
|
8925
9011
|
connectedUserId?: string | null | undefined;
|
9012
|
+
lineRichMenuId?: string | null | undefined;
|
8926
9013
|
actor?: {
|
8927
9014
|
id: string;
|
8928
9015
|
address: string | null;
|
@@ -8942,12 +9029,14 @@ export declare const instagramContract: {
|
|
8942
9029
|
accessToken?: string | undefined;
|
8943
9030
|
channelSecret?: string | undefined;
|
8944
9031
|
additionalCredentials?: any;
|
9032
|
+
lineRichMenuId?: string | null | undefined;
|
8945
9033
|
};
|
8946
9034
|
status: boolean;
|
8947
9035
|
brandName: string;
|
8948
9036
|
platformId: string;
|
8949
9037
|
connectedUserName?: string | null | undefined;
|
8950
9038
|
connectedUserId?: string | null | undefined;
|
9039
|
+
lineRichMenuId?: string | null | undefined;
|
8951
9040
|
actor?: {
|
8952
9041
|
id: string;
|
8953
9042
|
address: string | null;
|
@@ -8968,12 +9057,14 @@ export declare const instagramContract: {
|
|
8968
9057
|
accessToken?: string | undefined;
|
8969
9058
|
channelSecret?: string | undefined;
|
8970
9059
|
additionalCredentials?: any;
|
9060
|
+
lineRichMenuId?: string | null | undefined;
|
8971
9061
|
};
|
8972
9062
|
status: boolean;
|
8973
9063
|
brandName: string;
|
8974
9064
|
platformId: string;
|
8975
9065
|
connectedUserName?: string | null | undefined;
|
8976
9066
|
connectedUserId?: string | null | undefined;
|
9067
|
+
lineRichMenuId?: string | null | undefined;
|
8977
9068
|
actor?: {
|
8978
9069
|
id: string;
|
8979
9070
|
address: string | null;
|
@@ -9018,24 +9109,28 @@ export declare const instagramContract: {
|
|
9018
9109
|
accessToken: z.ZodOptional<z.ZodString>;
|
9019
9110
|
channelSecret: z.ZodOptional<z.ZodString>;
|
9020
9111
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9112
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9021
9113
|
}, "strip", z.ZodTypeAny, {
|
9022
9114
|
id: string;
|
9023
9115
|
name: string;
|
9024
9116
|
accessToken?: string | undefined;
|
9025
9117
|
channelSecret?: string | undefined;
|
9026
9118
|
additionalCredentials?: any;
|
9119
|
+
lineRichMenuId?: string | null | undefined;
|
9027
9120
|
}, {
|
9028
9121
|
id: string;
|
9029
9122
|
name: string;
|
9030
9123
|
accessToken?: string | undefined;
|
9031
9124
|
channelSecret?: string | undefined;
|
9032
9125
|
additionalCredentials?: any;
|
9126
|
+
lineRichMenuId?: string | null | undefined;
|
9033
9127
|
}>>;
|
9034
9128
|
platformId: z.ZodOptional<z.ZodString>;
|
9035
9129
|
brandName: z.ZodOptional<z.ZodString>;
|
9036
9130
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
|
9037
9131
|
connectedUserName: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
9038
9132
|
connectedUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
9133
|
+
lineRichMenuId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
9039
9134
|
actor: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
9040
9135
|
id: z.ZodString;
|
9041
9136
|
name: z.ZodString;
|
@@ -9065,12 +9160,14 @@ export declare const instagramContract: {
|
|
9065
9160
|
accessToken?: string | undefined;
|
9066
9161
|
channelSecret?: string | undefined;
|
9067
9162
|
additionalCredentials?: any;
|
9163
|
+
lineRichMenuId?: string | null | undefined;
|
9068
9164
|
} | undefined;
|
9069
9165
|
platformId?: string | undefined;
|
9070
9166
|
brandName?: string | undefined;
|
9071
9167
|
status?: boolean | undefined;
|
9072
9168
|
connectedUserName?: string | null | undefined;
|
9073
9169
|
connectedUserId?: string | null | undefined;
|
9170
|
+
lineRichMenuId?: string | null | undefined;
|
9074
9171
|
actor?: {
|
9075
9172
|
id: string;
|
9076
9173
|
address: string | null;
|
@@ -9088,12 +9185,14 @@ export declare const instagramContract: {
|
|
9088
9185
|
accessToken?: string | undefined;
|
9089
9186
|
channelSecret?: string | undefined;
|
9090
9187
|
additionalCredentials?: any;
|
9188
|
+
lineRichMenuId?: string | null | undefined;
|
9091
9189
|
} | undefined;
|
9092
9190
|
platformId?: string | undefined;
|
9093
9191
|
brandName?: string | undefined;
|
9094
9192
|
status?: boolean | undefined;
|
9095
9193
|
connectedUserName?: string | null | undefined;
|
9096
9194
|
connectedUserId?: string | null | undefined;
|
9195
|
+
lineRichMenuId?: string | null | undefined;
|
9097
9196
|
actor?: {
|
9098
9197
|
id: string;
|
9099
9198
|
address: string | null;
|
@@ -9116,24 +9215,28 @@ export declare const instagramContract: {
|
|
9116
9215
|
accessToken: z.ZodOptional<z.ZodString>;
|
9117
9216
|
channelSecret: z.ZodOptional<z.ZodString>;
|
9118
9217
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9218
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9119
9219
|
}, "strip", z.ZodTypeAny, {
|
9120
9220
|
id: string;
|
9121
9221
|
name: string;
|
9122
9222
|
accessToken?: string | undefined;
|
9123
9223
|
channelSecret?: string | undefined;
|
9124
9224
|
additionalCredentials?: any;
|
9225
|
+
lineRichMenuId?: string | null | undefined;
|
9125
9226
|
}, {
|
9126
9227
|
id: string;
|
9127
9228
|
name: string;
|
9128
9229
|
accessToken?: string | undefined;
|
9129
9230
|
channelSecret?: string | undefined;
|
9130
9231
|
additionalCredentials?: any;
|
9232
|
+
lineRichMenuId?: string | null | undefined;
|
9131
9233
|
}>;
|
9132
9234
|
platformId: z.ZodString;
|
9133
9235
|
brandName: z.ZodString;
|
9134
9236
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
9135
9237
|
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9136
9238
|
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9239
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9137
9240
|
actor: z.ZodOptional<z.ZodObject<{
|
9138
9241
|
id: z.ZodString;
|
9139
9242
|
name: z.ZodString;
|
@@ -9163,12 +9266,14 @@ export declare const instagramContract: {
|
|
9163
9266
|
accessToken?: string | undefined;
|
9164
9267
|
channelSecret?: string | undefined;
|
9165
9268
|
additionalCredentials?: any;
|
9269
|
+
lineRichMenuId?: string | null | undefined;
|
9166
9270
|
};
|
9167
9271
|
status: boolean;
|
9168
9272
|
brandName: string;
|
9169
9273
|
platformId: string;
|
9170
9274
|
connectedUserName?: string | null | undefined;
|
9171
9275
|
connectedUserId?: string | null | undefined;
|
9276
|
+
lineRichMenuId?: string | null | undefined;
|
9172
9277
|
actor?: {
|
9173
9278
|
id: string;
|
9174
9279
|
address: string | null;
|
@@ -9186,12 +9291,14 @@ export declare const instagramContract: {
|
|
9186
9291
|
accessToken?: string | undefined;
|
9187
9292
|
channelSecret?: string | undefined;
|
9188
9293
|
additionalCredentials?: any;
|
9294
|
+
lineRichMenuId?: string | null | undefined;
|
9189
9295
|
};
|
9190
9296
|
status: boolean;
|
9191
9297
|
brandName: string;
|
9192
9298
|
platformId: string;
|
9193
9299
|
connectedUserName?: string | null | undefined;
|
9194
9300
|
connectedUserId?: string | null | undefined;
|
9301
|
+
lineRichMenuId?: string | null | undefined;
|
9195
9302
|
actor?: {
|
9196
9303
|
id: string;
|
9197
9304
|
address: string | null;
|
@@ -9211,12 +9318,14 @@ export declare const instagramContract: {
|
|
9211
9318
|
accessToken?: string | undefined;
|
9212
9319
|
channelSecret?: string | undefined;
|
9213
9320
|
additionalCredentials?: any;
|
9321
|
+
lineRichMenuId?: string | null | undefined;
|
9214
9322
|
};
|
9215
9323
|
status: boolean;
|
9216
9324
|
brandName: string;
|
9217
9325
|
platformId: string;
|
9218
9326
|
connectedUserName?: string | null | undefined;
|
9219
9327
|
connectedUserId?: string | null | undefined;
|
9328
|
+
lineRichMenuId?: string | null | undefined;
|
9220
9329
|
actor?: {
|
9221
9330
|
id: string;
|
9222
9331
|
address: string | null;
|
@@ -9237,12 +9346,14 @@ export declare const instagramContract: {
|
|
9237
9346
|
accessToken?: string | undefined;
|
9238
9347
|
channelSecret?: string | undefined;
|
9239
9348
|
additionalCredentials?: any;
|
9349
|
+
lineRichMenuId?: string | null | undefined;
|
9240
9350
|
};
|
9241
9351
|
status: boolean;
|
9242
9352
|
brandName: string;
|
9243
9353
|
platformId: string;
|
9244
9354
|
connectedUserName?: string | null | undefined;
|
9245
9355
|
connectedUserId?: string | null | undefined;
|
9356
|
+
lineRichMenuId?: string | null | undefined;
|
9246
9357
|
actor?: {
|
9247
9358
|
id: string;
|
9248
9359
|
address: string | null;
|
@@ -9406,5 +9517,35 @@ export declare const instagramContract: {
|
|
9406
9517
|
};
|
9407
9518
|
path: "/pages";
|
9408
9519
|
};
|
9520
|
+
setBotPersistentMenu: {
|
9521
|
+
body: z.ZodObject<{
|
9522
|
+
pageAccessToken: z.ZodString;
|
9523
|
+
}, "strip", z.ZodTypeAny, {
|
9524
|
+
pageAccessToken: string;
|
9525
|
+
}, {
|
9526
|
+
pageAccessToken: string;
|
9527
|
+
}>;
|
9528
|
+
method: "POST";
|
9529
|
+
responses: {
|
9530
|
+
200: z.ZodObject<{
|
9531
|
+
requestId: z.ZodString;
|
9532
|
+
}, "strip", z.ZodTypeAny, {
|
9533
|
+
requestId: string;
|
9534
|
+
}, {
|
9535
|
+
requestId: string;
|
9536
|
+
}>;
|
9537
|
+
500: z.ZodObject<{
|
9538
|
+
message: z.ZodString;
|
9539
|
+
error: z.ZodAny;
|
9540
|
+
}, "strip", z.ZodTypeAny, {
|
9541
|
+
message: string;
|
9542
|
+
error?: any;
|
9543
|
+
}, {
|
9544
|
+
message: string;
|
9545
|
+
error?: any;
|
9546
|
+
}>;
|
9547
|
+
};
|
9548
|
+
path: "/set-bot-persistent-menu";
|
9549
|
+
};
|
9409
9550
|
};
|
9410
9551
|
//# sourceMappingURL=index.d.ts.map
|