@kl1/contracts 1.1.28 → 1.1.29

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.
Files changed (48) hide show
  1. package/dist/index.js +2955 -2729
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +2950 -2728
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/botpress/index.d.ts +14 -14
  6. package/dist/src/botpress/validation.d.ts +14 -14
  7. package/dist/src/botpress/validation.d.ts.map +1 -1
  8. package/dist/src/channel/index.d.ts +1687 -0
  9. package/dist/src/channel/index.d.ts.map +1 -1
  10. package/dist/src/channel/schema.d.ts +44 -0
  11. package/dist/src/channel/schema.d.ts.map +1 -1
  12. package/dist/src/channel/validation.d.ts +12 -0
  13. package/dist/src/channel/validation.d.ts.map +1 -1
  14. package/dist/src/chat/index.d.ts +883 -59
  15. package/dist/src/chat/index.d.ts.map +1 -1
  16. package/dist/src/chat/schema.d.ts +152 -20
  17. package/dist/src/chat/schema.d.ts.map +1 -1
  18. package/dist/src/chat/validation.d.ts +228 -61
  19. package/dist/src/chat/validation.d.ts.map +1 -1
  20. package/dist/src/contract.d.ts +2558 -282
  21. package/dist/src/contract.d.ts.map +1 -1
  22. package/dist/src/cx-log/index.d.ts +86 -0
  23. package/dist/src/cx-log/index.d.ts.map +1 -1
  24. package/dist/src/cx-log/schema.d.ts +70 -0
  25. package/dist/src/cx-log/schema.d.ts.map +1 -1
  26. package/dist/src/index.d.ts +1 -0
  27. package/dist/src/index.d.ts.map +1 -1
  28. package/dist/src/instagram/index.d.ts +286 -53
  29. package/dist/src/instagram/index.d.ts.map +1 -1
  30. package/dist/src/instagram/validation.d.ts +7 -0
  31. package/dist/src/instagram/validation.d.ts.map +1 -1
  32. package/dist/src/line/index.d.ts +282 -58
  33. package/dist/src/line/index.d.ts.map +1 -1
  34. package/dist/src/line/validation.d.ts +31 -5
  35. package/dist/src/line/validation.d.ts.map +1 -1
  36. package/dist/src/messenger/index.d.ts +291 -54
  37. package/dist/src/messenger/index.d.ts.map +1 -1
  38. package/dist/src/messenger/validation.d.ts +48 -0
  39. package/dist/src/messenger/validation.d.ts.map +1 -1
  40. package/dist/src/viber/index.d.ts +346 -53
  41. package/dist/src/viber/index.d.ts.map +1 -1
  42. package/dist/src/webchat/index.d.ts +226 -53
  43. package/dist/src/webchat/index.d.ts.map +1 -1
  44. package/dist/src/workflow-rule/index.d.ts +150 -0
  45. package/dist/src/workflow-rule/index.d.ts.map +1 -1
  46. package/package.json +1 -1
  47. package/dist/src/contract2.d.ts +0 -2
  48. package/dist/src/contract2.d.ts.map +0 -1
@@ -5,6 +5,7 @@ export type GetInstagramPagesQuery = z.infer<typeof GetInstagramPagesQuerySchema
5
5
  export declare const instagramContract: {
6
6
  sendMessage: {
7
7
  body: z.ZodObject<{
8
+ isBot: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
8
9
  room: z.ZodObject<{
9
10
  id: z.ZodString;
10
11
  lastMessage: z.ZodOptional<z.ZodString>;
@@ -138,24 +139,28 @@ export declare const instagramContract: {
138
139
  accessToken: z.ZodOptional<z.ZodString>;
139
140
  channelSecret: z.ZodOptional<z.ZodString>;
140
141
  additionalCredentials: z.ZodOptional<z.ZodAny>;
142
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
141
143
  }, "strip", z.ZodTypeAny, {
142
144
  id: string;
143
145
  name: string;
144
146
  accessToken?: string | undefined;
145
147
  channelSecret?: string | undefined;
146
148
  additionalCredentials?: any;
149
+ lineRichMenuId?: string | null | undefined;
147
150
  }, {
148
151
  id: string;
149
152
  name: string;
150
153
  accessToken?: string | undefined;
151
154
  channelSecret?: string | undefined;
152
155
  additionalCredentials?: any;
156
+ lineRichMenuId?: string | null | undefined;
153
157
  }>;
154
158
  platformId: z.ZodString;
155
159
  brandName: z.ZodString;
156
160
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
157
161
  connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
158
162
  connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
163
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
159
164
  actor: z.ZodOptional<z.ZodObject<{
160
165
  id: z.ZodString;
161
166
  name: z.ZodString;
@@ -185,12 +190,14 @@ export declare const instagramContract: {
185
190
  accessToken?: string | undefined;
186
191
  channelSecret?: string | undefined;
187
192
  additionalCredentials?: any;
193
+ lineRichMenuId?: string | null | undefined;
188
194
  };
189
195
  status: boolean;
190
196
  brandName: string;
191
197
  platformId: string;
192
198
  connectedUserName?: string | null | undefined;
193
199
  connectedUserId?: string | null | undefined;
200
+ lineRichMenuId?: string | null | undefined;
194
201
  actor?: {
195
202
  id: string;
196
203
  address: string | null;
@@ -208,12 +215,14 @@ export declare const instagramContract: {
208
215
  accessToken?: string | undefined;
209
216
  channelSecret?: string | undefined;
210
217
  additionalCredentials?: any;
218
+ lineRichMenuId?: string | null | undefined;
211
219
  };
212
220
  status: boolean;
213
221
  brandName: string;
214
222
  platformId: string;
215
223
  connectedUserName?: string | null | undefined;
216
224
  connectedUserId?: string | null | undefined;
225
+ lineRichMenuId?: string | null | undefined;
217
226
  actor?: {
218
227
  id: string;
219
228
  address: string | null;
@@ -235,12 +244,14 @@ export declare const instagramContract: {
235
244
  accessToken?: string | undefined;
236
245
  channelSecret?: string | undefined;
237
246
  additionalCredentials?: any;
247
+ lineRichMenuId?: string | null | undefined;
238
248
  };
239
249
  status: boolean;
240
250
  brandName: string;
241
251
  platformId: string;
242
252
  connectedUserName?: string | null | undefined;
243
253
  connectedUserId?: string | null | undefined;
254
+ lineRichMenuId?: string | null | undefined;
244
255
  actor?: {
245
256
  id: string;
246
257
  address: string | null;
@@ -301,12 +312,14 @@ export declare const instagramContract: {
301
312
  accessToken?: string | undefined;
302
313
  channelSecret?: string | undefined;
303
314
  additionalCredentials?: any;
315
+ lineRichMenuId?: string | null | undefined;
304
316
  };
305
317
  status: boolean;
306
318
  brandName: string;
307
319
  platformId: string;
308
320
  connectedUserName?: string | null | undefined;
309
321
  connectedUserId?: string | null | undefined;
322
+ lineRichMenuId?: string | null | undefined;
310
323
  actor?: {
311
324
  id: string;
312
325
  address: string | null;
@@ -359,7 +372,7 @@ export declare const instagramContract: {
359
372
  message: z.ZodObject<{
360
373
  message: z.ZodOptional<z.ZodString>;
361
374
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
362
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
375
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
363
376
  readAt: z.ZodOptional<z.ZodDate>;
364
377
  metadata: z.ZodOptional<z.ZodAny>;
365
378
  platformId: z.ZodOptional<z.ZodString>;
@@ -375,18 +388,21 @@ export declare const instagramContract: {
375
388
  fileName: z.ZodString;
376
389
  fileSize: z.ZodNumber;
377
390
  fileKey: z.ZodString;
391
+ originalUrl: z.ZodOptional<z.ZodString>;
378
392
  }, "strip", z.ZodTypeAny, {
379
393
  fileName: string;
380
394
  fileKey: string;
381
395
  bucketName: string;
382
396
  fileSize: number;
397
+ originalUrl?: string | undefined;
383
398
  }, {
384
399
  fileName: string;
385
400
  fileKey: string;
386
401
  bucketName: string;
387
402
  fileSize: number;
403
+ originalUrl?: string | undefined;
388
404
  }>>;
389
- sender: z.ZodObject<{
405
+ sender: z.ZodOptional<z.ZodObject<{
390
406
  id: z.ZodString;
391
407
  name: z.ZodString;
392
408
  email: z.ZodString;
@@ -404,17 +420,10 @@ export declare const instagramContract: {
404
420
  name: string;
405
421
  email: string;
406
422
  phone: string | null;
407
- }>;
423
+ }>>;
408
424
  }, "strip", z.ZodTypeAny, {
409
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
425
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
410
426
  direction: "incoming" | "outgoing" | "system";
411
- sender: {
412
- id: string;
413
- address: string | null;
414
- name: string;
415
- email: string;
416
- phone: string | null;
417
- };
418
427
  message?: string | undefined;
419
428
  readAt?: Date | undefined;
420
429
  metadata?: any;
@@ -431,17 +440,18 @@ export declare const instagramContract: {
431
440
  fileKey: string;
432
441
  bucketName: string;
433
442
  fileSize: number;
443
+ originalUrl?: string | undefined;
434
444
  } | undefined;
435
- }, {
436
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
437
- direction: "incoming" | "outgoing" | "system";
438
- sender: {
445
+ sender?: {
439
446
  id: string;
440
447
  address: string | null;
441
448
  name: string;
442
449
  email: string;
443
450
  phone: string | null;
444
- };
451
+ } | undefined;
452
+ }, {
453
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
454
+ direction: "incoming" | "outgoing" | "system";
445
455
  message?: string | undefined;
446
456
  readAt?: Date | undefined;
447
457
  metadata?: any;
@@ -458,19 +468,20 @@ export declare const instagramContract: {
458
468
  fileKey: string;
459
469
  bucketName: string;
460
470
  fileSize: number;
471
+ originalUrl?: string | undefined;
461
472
  } | undefined;
462
- }>;
463
- }, "strip", z.ZodTypeAny, {
464
- message: {
465
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
466
- direction: "incoming" | "outgoing" | "system";
467
- sender: {
473
+ sender?: {
468
474
  id: string;
469
475
  address: string | null;
470
476
  name: string;
471
477
  email: string;
472
478
  phone: string | null;
473
- };
479
+ } | undefined;
480
+ }>;
481
+ }, "strip", z.ZodTypeAny, {
482
+ message: {
483
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
484
+ direction: "incoming" | "outgoing" | "system";
474
485
  message?: string | undefined;
475
486
  readAt?: Date | undefined;
476
487
  metadata?: any;
@@ -487,6 +498,14 @@ export declare const instagramContract: {
487
498
  fileKey: string;
488
499
  bucketName: string;
489
500
  fileSize: number;
501
+ originalUrl?: string | undefined;
502
+ } | undefined;
503
+ sender?: {
504
+ id: string;
505
+ address: string | null;
506
+ name: string;
507
+ email: string;
508
+ phone: string | null;
490
509
  } | undefined;
491
510
  };
492
511
  room: {
@@ -501,12 +520,14 @@ export declare const instagramContract: {
501
520
  accessToken?: string | undefined;
502
521
  channelSecret?: string | undefined;
503
522
  additionalCredentials?: any;
523
+ lineRichMenuId?: string | null | undefined;
504
524
  };
505
525
  status: boolean;
506
526
  brandName: string;
507
527
  platformId: string;
508
528
  connectedUserName?: string | null | undefined;
509
529
  connectedUserId?: string | null | undefined;
530
+ lineRichMenuId?: string | null | undefined;
510
531
  actor?: {
511
532
  id: string;
512
533
  address: string | null;
@@ -556,17 +577,11 @@ export declare const instagramContract: {
556
577
  metadata?: any;
557
578
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
558
579
  };
580
+ isBot: boolean | null;
559
581
  }, {
560
582
  message: {
561
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
583
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
562
584
  direction: "incoming" | "outgoing" | "system";
563
- sender: {
564
- id: string;
565
- address: string | null;
566
- name: string;
567
- email: string;
568
- phone: string | null;
569
- };
570
585
  message?: string | undefined;
571
586
  readAt?: Date | undefined;
572
587
  metadata?: any;
@@ -583,6 +598,14 @@ export declare const instagramContract: {
583
598
  fileKey: string;
584
599
  bucketName: string;
585
600
  fileSize: number;
601
+ originalUrl?: string | undefined;
602
+ } | undefined;
603
+ sender?: {
604
+ id: string;
605
+ address: string | null;
606
+ name: string;
607
+ email: string;
608
+ phone: string | null;
586
609
  } | undefined;
587
610
  };
588
611
  room: {
@@ -597,12 +620,14 @@ export declare const instagramContract: {
597
620
  accessToken?: string | undefined;
598
621
  channelSecret?: string | undefined;
599
622
  additionalCredentials?: any;
623
+ lineRichMenuId?: string | null | undefined;
600
624
  };
601
625
  status: boolean;
602
626
  brandName: string;
603
627
  platformId: string;
604
628
  connectedUserName?: string | null | undefined;
605
629
  connectedUserId?: string | null | undefined;
630
+ lineRichMenuId?: string | null | undefined;
606
631
  actor?: {
607
632
  id: string;
608
633
  address: string | null;
@@ -652,6 +677,7 @@ export declare const instagramContract: {
652
677
  metadata?: any;
653
678
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
654
679
  };
680
+ isBot?: boolean | null | undefined;
655
681
  }>;
656
682
  method: "POST";
657
683
  responses: {
@@ -664,7 +690,7 @@ export declare const instagramContract: {
664
690
  deletedAt: z.ZodNullable<z.ZodDate>;
665
691
  message: z.ZodString;
666
692
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
667
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
693
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
668
694
  readAt: z.ZodDate;
669
695
  metadata: z.ZodAny;
670
696
  platformId: z.ZodString;
@@ -689,6 +715,7 @@ export declare const instagramContract: {
689
715
  firstResponseAt: z.ZodDate;
690
716
  firstResponseTime: z.ZodNumber;
691
717
  isLatest: z.ZodBoolean;
718
+ isBotRoom: z.ZodBoolean;
692
719
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
693
720
  platformContact: z.ZodObject<{
694
721
  id: z.ZodString;
@@ -2045,18 +2072,21 @@ export declare const instagramContract: {
2045
2072
  accessToken: z.ZodOptional<z.ZodString>;
2046
2073
  channelSecret: z.ZodOptional<z.ZodString>;
2047
2074
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2075
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2048
2076
  }, "strip", z.ZodTypeAny, {
2049
2077
  id: string;
2050
2078
  name: string;
2051
2079
  accessToken?: string | undefined;
2052
2080
  channelSecret?: string | undefined;
2053
2081
  additionalCredentials?: any;
2082
+ lineRichMenuId?: string | null | undefined;
2054
2083
  }, {
2055
2084
  id: string;
2056
2085
  name: string;
2057
2086
  accessToken?: string | undefined;
2058
2087
  channelSecret?: string | undefined;
2059
2088
  additionalCredentials?: any;
2089
+ lineRichMenuId?: string | null | undefined;
2060
2090
  }>;
2061
2091
  brandName: z.ZodString;
2062
2092
  platformId: z.ZodString;
@@ -2064,6 +2094,25 @@ export declare const instagramContract: {
2064
2094
  isReloginRequired: z.ZodBoolean;
2065
2095
  connectedUserName: z.ZodString;
2066
2096
  connectedUserId: z.ZodString;
2097
+ botpressBot: z.ZodNullable<z.ZodObject<{
2098
+ id: z.ZodString;
2099
+ name: z.ZodString;
2100
+ botId: z.ZodString;
2101
+ integrationId: z.ZodString;
2102
+ accessToken: z.ZodString;
2103
+ }, "strip", z.ZodTypeAny, {
2104
+ id: string;
2105
+ name: string;
2106
+ accessToken: string;
2107
+ botId: string;
2108
+ integrationId: string;
2109
+ }, {
2110
+ id: string;
2111
+ name: string;
2112
+ accessToken: string;
2113
+ botId: string;
2114
+ integrationId: string;
2115
+ }>>;
2067
2116
  actor: z.ZodObject<{
2068
2117
  id: z.ZodString;
2069
2118
  createdAt: z.ZodDate;
@@ -2278,6 +2327,7 @@ export declare const instagramContract: {
2278
2327
  accessToken?: string | undefined;
2279
2328
  channelSecret?: string | undefined;
2280
2329
  additionalCredentials?: any;
2330
+ lineRichMenuId?: string | null | undefined;
2281
2331
  };
2282
2332
  status: boolean;
2283
2333
  createdAt: Date;
@@ -2332,6 +2382,13 @@ export declare const instagramContract: {
2332
2382
  isReloginRequired: boolean;
2333
2383
  connectedUserName: string;
2334
2384
  connectedUserId: string;
2385
+ botpressBot: {
2386
+ id: string;
2387
+ name: string;
2388
+ accessToken: string;
2389
+ botId: string;
2390
+ integrationId: string;
2391
+ } | null;
2335
2392
  }, {
2336
2393
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | "webchat";
2337
2394
  id: string;
@@ -2342,6 +2399,7 @@ export declare const instagramContract: {
2342
2399
  accessToken?: string | undefined;
2343
2400
  channelSecret?: string | undefined;
2344
2401
  additionalCredentials?: any;
2402
+ lineRichMenuId?: string | null | undefined;
2345
2403
  };
2346
2404
  status: boolean;
2347
2405
  createdAt: Date;
@@ -2396,6 +2454,13 @@ export declare const instagramContract: {
2396
2454
  isReloginRequired: boolean;
2397
2455
  connectedUserName: string;
2398
2456
  connectedUserId: string;
2457
+ botpressBot: {
2458
+ id: string;
2459
+ name: string;
2460
+ accessToken: string;
2461
+ botId: string;
2462
+ integrationId: string;
2463
+ } | null;
2399
2464
  }>;
2400
2465
  cxlog: z.ZodObject<{
2401
2466
  id: z.ZodString;
@@ -2853,6 +2918,7 @@ export declare const instagramContract: {
2853
2918
  accessToken?: string | undefined;
2854
2919
  channelSecret?: string | undefined;
2855
2920
  additionalCredentials?: any;
2921
+ lineRichMenuId?: string | null | undefined;
2856
2922
  };
2857
2923
  status: boolean;
2858
2924
  createdAt: Date;
@@ -2907,6 +2973,13 @@ export declare const instagramContract: {
2907
2973
  isReloginRequired: boolean;
2908
2974
  connectedUserName: string;
2909
2975
  connectedUserId: string;
2976
+ botpressBot: {
2977
+ id: string;
2978
+ name: string;
2979
+ accessToken: string;
2980
+ botId: string;
2981
+ integrationId: string;
2982
+ } | null;
2910
2983
  };
2911
2984
  direction: "incoming" | "outgoing" | "system";
2912
2985
  status: number;
@@ -3121,6 +3194,7 @@ export declare const instagramContract: {
3121
3194
  };
3122
3195
  closedAt: Date;
3123
3196
  lastMessageAt: Date | null;
3197
+ isBotRoom: boolean;
3124
3198
  cxlog: {
3125
3199
  id: string;
3126
3200
  channel: string | null;
@@ -3211,6 +3285,7 @@ export declare const instagramContract: {
3211
3285
  accessToken?: string | undefined;
3212
3286
  channelSecret?: string | undefined;
3213
3287
  additionalCredentials?: any;
3288
+ lineRichMenuId?: string | null | undefined;
3214
3289
  };
3215
3290
  status: boolean;
3216
3291
  createdAt: Date;
@@ -3265,6 +3340,13 @@ export declare const instagramContract: {
3265
3340
  isReloginRequired: boolean;
3266
3341
  connectedUserName: string;
3267
3342
  connectedUserId: string;
3343
+ botpressBot: {
3344
+ id: string;
3345
+ name: string;
3346
+ accessToken: string;
3347
+ botId: string;
3348
+ integrationId: string;
3349
+ } | null;
3268
3350
  };
3269
3351
  direction: "incoming" | "outgoing" | "system";
3270
3352
  status: number;
@@ -3479,6 +3561,7 @@ export declare const instagramContract: {
3479
3561
  };
3480
3562
  closedAt: Date;
3481
3563
  lastMessageAt: Date | null;
3564
+ isBotRoom: boolean;
3482
3565
  cxlog: {
3483
3566
  id: string;
3484
3567
  channel: string | null;
@@ -3599,7 +3682,7 @@ export declare const instagramContract: {
3599
3682
  deletedAt: z.ZodNullable<z.ZodDate>;
3600
3683
  message: z.ZodString;
3601
3684
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
3602
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
3685
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
3603
3686
  readAt: z.ZodDate;
3604
3687
  metadata: z.ZodAny;
3605
3688
  platformId: z.ZodString;
@@ -4257,7 +4340,7 @@ export declare const instagramContract: {
4257
4340
  };
4258
4341
  }>;
4259
4342
  }, "strip", z.ZodTypeAny, {
4260
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
4343
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
4261
4344
  message: string;
4262
4345
  id: string;
4263
4346
  url: string;
@@ -4309,7 +4392,6 @@ export declare const instagramContract: {
4309
4392
  telephonySignature: string | null;
4310
4393
  };
4311
4394
  };
4312
- platformId: string;
4313
4395
  upload: {
4314
4396
  id: string;
4315
4397
  createdAt: Date;
@@ -4366,6 +4448,7 @@ export declare const instagramContract: {
4366
4448
  telephonySignature: string | null;
4367
4449
  };
4368
4450
  };
4451
+ platformId: string;
4369
4452
  readAt: Date;
4370
4453
  platformMessageId: string;
4371
4454
  replyPlatformMessageId: string;
@@ -4419,7 +4502,7 @@ export declare const instagramContract: {
4419
4502
  metadata?: any;
4420
4503
  template?: any;
4421
4504
  }, {
4422
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
4505
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
4423
4506
  message: string;
4424
4507
  id: string;
4425
4508
  url: string;
@@ -4471,7 +4554,6 @@ export declare const instagramContract: {
4471
4554
  telephonySignature: string | null;
4472
4555
  };
4473
4556
  };
4474
- platformId: string;
4475
4557
  upload: {
4476
4558
  id: string;
4477
4559
  createdAt: Date;
@@ -4528,6 +4610,7 @@ export declare const instagramContract: {
4528
4610
  telephonySignature: string | null;
4529
4611
  };
4530
4612
  };
4613
+ platformId: string;
4531
4614
  readAt: Date;
4532
4615
  platformMessageId: string;
4533
4616
  replyPlatformMessageId: string;
@@ -5219,7 +5302,7 @@ export declare const instagramContract: {
5219
5302
  isActive: boolean;
5220
5303
  }>;
5221
5304
  }, "strip", z.ZodTypeAny, {
5222
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
5305
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
5223
5306
  message: string;
5224
5307
  id: string;
5225
5308
  url: string;
@@ -5271,7 +5354,6 @@ export declare const instagramContract: {
5271
5354
  telephonySignature: string | null;
5272
5355
  };
5273
5356
  };
5274
- platformId: string;
5275
5357
  upload: {
5276
5358
  id: string;
5277
5359
  createdAt: Date;
@@ -5328,6 +5410,7 @@ export declare const instagramContract: {
5328
5410
  telephonySignature: string | null;
5329
5411
  };
5330
5412
  };
5413
+ platformId: string;
5331
5414
  room: {
5332
5415
  id: string;
5333
5416
  channel: {
@@ -5340,6 +5423,7 @@ export declare const instagramContract: {
5340
5423
  accessToken?: string | undefined;
5341
5424
  channelSecret?: string | undefined;
5342
5425
  additionalCredentials?: any;
5426
+ lineRichMenuId?: string | null | undefined;
5343
5427
  };
5344
5428
  status: boolean;
5345
5429
  createdAt: Date;
@@ -5394,6 +5478,13 @@ export declare const instagramContract: {
5394
5478
  isReloginRequired: boolean;
5395
5479
  connectedUserName: string;
5396
5480
  connectedUserId: string;
5481
+ botpressBot: {
5482
+ id: string;
5483
+ name: string;
5484
+ accessToken: string;
5485
+ botId: string;
5486
+ integrationId: string;
5487
+ } | null;
5397
5488
  };
5398
5489
  direction: "incoming" | "outgoing" | "system";
5399
5490
  status: number;
@@ -5608,6 +5699,7 @@ export declare const instagramContract: {
5608
5699
  };
5609
5700
  closedAt: Date;
5610
5701
  lastMessageAt: Date | null;
5702
+ isBotRoom: boolean;
5611
5703
  cxlog: {
5612
5704
  id: string;
5613
5705
  channel: string | null;
@@ -5703,7 +5795,7 @@ export declare const instagramContract: {
5703
5795
  previewUrl: string;
5704
5796
  imageSetId: string;
5705
5797
  repliedMessage: {
5706
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
5798
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
5707
5799
  message: string;
5708
5800
  id: string;
5709
5801
  url: string;
@@ -5755,7 +5847,6 @@ export declare const instagramContract: {
5755
5847
  telephonySignature: string | null;
5756
5848
  };
5757
5849
  };
5758
- platformId: string;
5759
5850
  upload: {
5760
5851
  id: string;
5761
5852
  createdAt: Date;
@@ -5812,6 +5903,7 @@ export declare const instagramContract: {
5812
5903
  telephonySignature: string | null;
5813
5904
  };
5814
5905
  };
5906
+ platformId: string;
5815
5907
  readAt: Date;
5816
5908
  platformMessageId: string;
5817
5909
  replyPlatformMessageId: string;
@@ -5912,7 +6004,7 @@ export declare const instagramContract: {
5912
6004
  metadata?: any;
5913
6005
  template?: any;
5914
6006
  }, {
5915
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
6007
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
5916
6008
  message: string;
5917
6009
  id: string;
5918
6010
  url: string;
@@ -5964,7 +6056,6 @@ export declare const instagramContract: {
5964
6056
  telephonySignature: string | null;
5965
6057
  };
5966
6058
  };
5967
- platformId: string;
5968
6059
  upload: {
5969
6060
  id: string;
5970
6061
  createdAt: Date;
@@ -6021,6 +6112,7 @@ export declare const instagramContract: {
6021
6112
  telephonySignature: string | null;
6022
6113
  };
6023
6114
  };
6115
+ platformId: string;
6024
6116
  room: {
6025
6117
  id: string;
6026
6118
  channel: {
@@ -6033,6 +6125,7 @@ export declare const instagramContract: {
6033
6125
  accessToken?: string | undefined;
6034
6126
  channelSecret?: string | undefined;
6035
6127
  additionalCredentials?: any;
6128
+ lineRichMenuId?: string | null | undefined;
6036
6129
  };
6037
6130
  status: boolean;
6038
6131
  createdAt: Date;
@@ -6087,6 +6180,13 @@ export declare const instagramContract: {
6087
6180
  isReloginRequired: boolean;
6088
6181
  connectedUserName: string;
6089
6182
  connectedUserId: string;
6183
+ botpressBot: {
6184
+ id: string;
6185
+ name: string;
6186
+ accessToken: string;
6187
+ botId: string;
6188
+ integrationId: string;
6189
+ } | null;
6090
6190
  };
6091
6191
  direction: "incoming" | "outgoing" | "system";
6092
6192
  status: number;
@@ -6301,6 +6401,7 @@ export declare const instagramContract: {
6301
6401
  };
6302
6402
  closedAt: Date;
6303
6403
  lastMessageAt: Date | null;
6404
+ isBotRoom: boolean;
6304
6405
  cxlog: {
6305
6406
  id: string;
6306
6407
  channel: string | null;
@@ -6396,7 +6497,7 @@ export declare const instagramContract: {
6396
6497
  previewUrl: string;
6397
6498
  imageSetId: string;
6398
6499
  repliedMessage: {
6399
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
6500
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
6400
6501
  message: string;
6401
6502
  id: string;
6402
6503
  url: string;
@@ -6448,7 +6549,6 @@ export declare const instagramContract: {
6448
6549
  telephonySignature: string | null;
6449
6550
  };
6450
6551
  };
6451
- platformId: string;
6452
6552
  upload: {
6453
6553
  id: string;
6454
6554
  createdAt: Date;
@@ -6505,6 +6605,7 @@ export declare const instagramContract: {
6505
6605
  telephonySignature: string | null;
6506
6606
  };
6507
6607
  };
6608
+ platformId: string;
6508
6609
  readAt: Date;
6509
6610
  platformMessageId: string;
6510
6611
  replyPlatformMessageId: string;
@@ -6607,7 +6708,7 @@ export declare const instagramContract: {
6607
6708
  }>;
6608
6709
  }, "strip", z.ZodTypeAny, {
6609
6710
  data: {
6610
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
6711
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
6611
6712
  message: string;
6612
6713
  id: string;
6613
6714
  url: string;
@@ -6659,7 +6760,6 @@ export declare const instagramContract: {
6659
6760
  telephonySignature: string | null;
6660
6761
  };
6661
6762
  };
6662
- platformId: string;
6663
6763
  upload: {
6664
6764
  id: string;
6665
6765
  createdAt: Date;
@@ -6716,6 +6816,7 @@ export declare const instagramContract: {
6716
6816
  telephonySignature: string | null;
6717
6817
  };
6718
6818
  };
6819
+ platformId: string;
6719
6820
  room: {
6720
6821
  id: string;
6721
6822
  channel: {
@@ -6728,6 +6829,7 @@ export declare const instagramContract: {
6728
6829
  accessToken?: string | undefined;
6729
6830
  channelSecret?: string | undefined;
6730
6831
  additionalCredentials?: any;
6832
+ lineRichMenuId?: string | null | undefined;
6731
6833
  };
6732
6834
  status: boolean;
6733
6835
  createdAt: Date;
@@ -6782,6 +6884,13 @@ export declare const instagramContract: {
6782
6884
  isReloginRequired: boolean;
6783
6885
  connectedUserName: string;
6784
6886
  connectedUserId: string;
6887
+ botpressBot: {
6888
+ id: string;
6889
+ name: string;
6890
+ accessToken: string;
6891
+ botId: string;
6892
+ integrationId: string;
6893
+ } | null;
6785
6894
  };
6786
6895
  direction: "incoming" | "outgoing" | "system";
6787
6896
  status: number;
@@ -6996,6 +7105,7 @@ export declare const instagramContract: {
6996
7105
  };
6997
7106
  closedAt: Date;
6998
7107
  lastMessageAt: Date | null;
7108
+ isBotRoom: boolean;
6999
7109
  cxlog: {
7000
7110
  id: string;
7001
7111
  channel: string | null;
@@ -7091,7 +7201,7 @@ export declare const instagramContract: {
7091
7201
  previewUrl: string;
7092
7202
  imageSetId: string;
7093
7203
  repliedMessage: {
7094
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
7204
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
7095
7205
  message: string;
7096
7206
  id: string;
7097
7207
  url: string;
@@ -7143,7 +7253,6 @@ export declare const instagramContract: {
7143
7253
  telephonySignature: string | null;
7144
7254
  };
7145
7255
  };
7146
- platformId: string;
7147
7256
  upload: {
7148
7257
  id: string;
7149
7258
  createdAt: Date;
@@ -7200,6 +7309,7 @@ export declare const instagramContract: {
7200
7309
  telephonySignature: string | null;
7201
7310
  };
7202
7311
  };
7312
+ platformId: string;
7203
7313
  readAt: Date;
7204
7314
  platformMessageId: string;
7205
7315
  replyPlatformMessageId: string;
@@ -7303,7 +7413,7 @@ export declare const instagramContract: {
7303
7413
  requestId: string;
7304
7414
  }, {
7305
7415
  data: {
7306
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
7416
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
7307
7417
  message: string;
7308
7418
  id: string;
7309
7419
  url: string;
@@ -7355,7 +7465,6 @@ export declare const instagramContract: {
7355
7465
  telephonySignature: string | null;
7356
7466
  };
7357
7467
  };
7358
- platformId: string;
7359
7468
  upload: {
7360
7469
  id: string;
7361
7470
  createdAt: Date;
@@ -7412,6 +7521,7 @@ export declare const instagramContract: {
7412
7521
  telephonySignature: string | null;
7413
7522
  };
7414
7523
  };
7524
+ platformId: string;
7415
7525
  room: {
7416
7526
  id: string;
7417
7527
  channel: {
@@ -7424,6 +7534,7 @@ export declare const instagramContract: {
7424
7534
  accessToken?: string | undefined;
7425
7535
  channelSecret?: string | undefined;
7426
7536
  additionalCredentials?: any;
7537
+ lineRichMenuId?: string | null | undefined;
7427
7538
  };
7428
7539
  status: boolean;
7429
7540
  createdAt: Date;
@@ -7478,6 +7589,13 @@ export declare const instagramContract: {
7478
7589
  isReloginRequired: boolean;
7479
7590
  connectedUserName: string;
7480
7591
  connectedUserId: string;
7592
+ botpressBot: {
7593
+ id: string;
7594
+ name: string;
7595
+ accessToken: string;
7596
+ botId: string;
7597
+ integrationId: string;
7598
+ } | null;
7481
7599
  };
7482
7600
  direction: "incoming" | "outgoing" | "system";
7483
7601
  status: number;
@@ -7692,6 +7810,7 @@ export declare const instagramContract: {
7692
7810
  };
7693
7811
  closedAt: Date;
7694
7812
  lastMessageAt: Date | null;
7813
+ isBotRoom: boolean;
7695
7814
  cxlog: {
7696
7815
  id: string;
7697
7816
  channel: string | null;
@@ -7787,7 +7906,7 @@ export declare const instagramContract: {
7787
7906
  previewUrl: string;
7788
7907
  imageSetId: string;
7789
7908
  repliedMessage: {
7790
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
7909
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
7791
7910
  message: string;
7792
7911
  id: string;
7793
7912
  url: string;
@@ -7839,7 +7958,6 @@ export declare const instagramContract: {
7839
7958
  telephonySignature: string | null;
7840
7959
  };
7841
7960
  };
7842
- platformId: string;
7843
7961
  upload: {
7844
7962
  id: string;
7845
7963
  createdAt: Date;
@@ -7896,6 +8014,7 @@ export declare const instagramContract: {
7896
8014
  telephonySignature: string | null;
7897
8015
  };
7898
8016
  };
8017
+ platformId: string;
7899
8018
  readAt: Date;
7900
8019
  platformMessageId: string;
7901
8020
  replyPlatformMessageId: string;
@@ -8022,24 +8141,28 @@ export declare const instagramContract: {
8022
8141
  accessToken: z.ZodOptional<z.ZodString>;
8023
8142
  channelSecret: z.ZodOptional<z.ZodString>;
8024
8143
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8144
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8025
8145
  }, "strip", z.ZodTypeAny, {
8026
8146
  id: string;
8027
8147
  name: string;
8028
8148
  accessToken?: string | undefined;
8029
8149
  channelSecret?: string | undefined;
8030
8150
  additionalCredentials?: any;
8151
+ lineRichMenuId?: string | null | undefined;
8031
8152
  }, {
8032
8153
  id: string;
8033
8154
  name: string;
8034
8155
  accessToken?: string | undefined;
8035
8156
  channelSecret?: string | undefined;
8036
8157
  additionalCredentials?: any;
8158
+ lineRichMenuId?: string | null | undefined;
8037
8159
  }>>;
8038
8160
  platformId: z.ZodOptional<z.ZodString>;
8039
8161
  brandName: z.ZodOptional<z.ZodString>;
8040
8162
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
8041
8163
  connectedUserName: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8042
8164
  connectedUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8165
+ lineRichMenuId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8043
8166
  actor: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8044
8167
  id: z.ZodString;
8045
8168
  name: z.ZodString;
@@ -8069,12 +8192,14 @@ export declare const instagramContract: {
8069
8192
  accessToken?: string | undefined;
8070
8193
  channelSecret?: string | undefined;
8071
8194
  additionalCredentials?: any;
8195
+ lineRichMenuId?: string | null | undefined;
8072
8196
  } | undefined;
8073
8197
  platformId?: string | undefined;
8074
8198
  brandName?: string | undefined;
8075
8199
  status?: boolean | undefined;
8076
8200
  connectedUserName?: string | null | undefined;
8077
8201
  connectedUserId?: string | null | undefined;
8202
+ lineRichMenuId?: string | null | undefined;
8078
8203
  actor?: {
8079
8204
  id: string;
8080
8205
  address: string | null;
@@ -8092,12 +8217,14 @@ export declare const instagramContract: {
8092
8217
  accessToken?: string | undefined;
8093
8218
  channelSecret?: string | undefined;
8094
8219
  additionalCredentials?: any;
8220
+ lineRichMenuId?: string | null | undefined;
8095
8221
  } | undefined;
8096
8222
  platformId?: string | undefined;
8097
8223
  brandName?: string | undefined;
8098
8224
  status?: boolean | undefined;
8099
8225
  connectedUserName?: string | null | undefined;
8100
8226
  connectedUserId?: string | null | undefined;
8227
+ lineRichMenuId?: string | null | undefined;
8101
8228
  actor?: {
8102
8229
  id: string;
8103
8230
  address: string | null;
@@ -8120,24 +8247,28 @@ export declare const instagramContract: {
8120
8247
  accessToken: z.ZodOptional<z.ZodString>;
8121
8248
  channelSecret: z.ZodOptional<z.ZodString>;
8122
8249
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8250
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8123
8251
  }, "strip", z.ZodTypeAny, {
8124
8252
  id: string;
8125
8253
  name: string;
8126
8254
  accessToken?: string | undefined;
8127
8255
  channelSecret?: string | undefined;
8128
8256
  additionalCredentials?: any;
8257
+ lineRichMenuId?: string | null | undefined;
8129
8258
  }, {
8130
8259
  id: string;
8131
8260
  name: string;
8132
8261
  accessToken?: string | undefined;
8133
8262
  channelSecret?: string | undefined;
8134
8263
  additionalCredentials?: any;
8264
+ lineRichMenuId?: string | null | undefined;
8135
8265
  }>;
8136
8266
  platformId: z.ZodString;
8137
8267
  brandName: z.ZodString;
8138
8268
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
8139
8269
  connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8140
8270
  connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8271
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8141
8272
  actor: z.ZodOptional<z.ZodObject<{
8142
8273
  id: z.ZodString;
8143
8274
  name: z.ZodString;
@@ -8167,12 +8298,14 @@ export declare const instagramContract: {
8167
8298
  accessToken?: string | undefined;
8168
8299
  channelSecret?: string | undefined;
8169
8300
  additionalCredentials?: any;
8301
+ lineRichMenuId?: string | null | undefined;
8170
8302
  };
8171
8303
  status: boolean;
8172
8304
  brandName: string;
8173
8305
  platformId: string;
8174
8306
  connectedUserName?: string | null | undefined;
8175
8307
  connectedUserId?: string | null | undefined;
8308
+ lineRichMenuId?: string | null | undefined;
8176
8309
  actor?: {
8177
8310
  id: string;
8178
8311
  address: string | null;
@@ -8190,12 +8323,14 @@ export declare const instagramContract: {
8190
8323
  accessToken?: string | undefined;
8191
8324
  channelSecret?: string | undefined;
8192
8325
  additionalCredentials?: any;
8326
+ lineRichMenuId?: string | null | undefined;
8193
8327
  };
8194
8328
  status: boolean;
8195
8329
  brandName: string;
8196
8330
  platformId: string;
8197
8331
  connectedUserName?: string | null | undefined;
8198
8332
  connectedUserId?: string | null | undefined;
8333
+ lineRichMenuId?: string | null | undefined;
8199
8334
  actor?: {
8200
8335
  id: string;
8201
8336
  address: string | null;
@@ -8215,12 +8350,14 @@ export declare const instagramContract: {
8215
8350
  accessToken?: string | undefined;
8216
8351
  channelSecret?: string | undefined;
8217
8352
  additionalCredentials?: any;
8353
+ lineRichMenuId?: string | null | undefined;
8218
8354
  };
8219
8355
  status: boolean;
8220
8356
  brandName: string;
8221
8357
  platformId: string;
8222
8358
  connectedUserName?: string | null | undefined;
8223
8359
  connectedUserId?: string | null | undefined;
8360
+ lineRichMenuId?: string | null | undefined;
8224
8361
  actor?: {
8225
8362
  id: string;
8226
8363
  address: string | null;
@@ -8241,12 +8378,14 @@ export declare const instagramContract: {
8241
8378
  accessToken?: string | undefined;
8242
8379
  channelSecret?: string | undefined;
8243
8380
  additionalCredentials?: any;
8381
+ lineRichMenuId?: string | null | undefined;
8244
8382
  };
8245
8383
  status: boolean;
8246
8384
  brandName: string;
8247
8385
  platformId: string;
8248
8386
  connectedUserName?: string | null | undefined;
8249
8387
  connectedUserId?: string | null | undefined;
8388
+ lineRichMenuId?: string | null | undefined;
8250
8389
  actor?: {
8251
8390
  id: string;
8252
8391
  address: string | null;
@@ -8291,24 +8430,28 @@ export declare const instagramContract: {
8291
8430
  accessToken: z.ZodOptional<z.ZodString>;
8292
8431
  channelSecret: z.ZodOptional<z.ZodString>;
8293
8432
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8433
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8294
8434
  }, "strip", z.ZodTypeAny, {
8295
8435
  id: string;
8296
8436
  name: string;
8297
8437
  accessToken?: string | undefined;
8298
8438
  channelSecret?: string | undefined;
8299
8439
  additionalCredentials?: any;
8440
+ lineRichMenuId?: string | null | undefined;
8300
8441
  }, {
8301
8442
  id: string;
8302
8443
  name: string;
8303
8444
  accessToken?: string | undefined;
8304
8445
  channelSecret?: string | undefined;
8305
8446
  additionalCredentials?: any;
8447
+ lineRichMenuId?: string | null | undefined;
8306
8448
  }>>;
8307
8449
  platformId: z.ZodOptional<z.ZodString>;
8308
8450
  brandName: z.ZodOptional<z.ZodString>;
8309
8451
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
8310
8452
  connectedUserName: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8311
8453
  connectedUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8454
+ lineRichMenuId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8312
8455
  actor: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8313
8456
  id: z.ZodString;
8314
8457
  name: z.ZodString;
@@ -8338,12 +8481,14 @@ export declare const instagramContract: {
8338
8481
  accessToken?: string | undefined;
8339
8482
  channelSecret?: string | undefined;
8340
8483
  additionalCredentials?: any;
8484
+ lineRichMenuId?: string | null | undefined;
8341
8485
  } | undefined;
8342
8486
  platformId?: string | undefined;
8343
8487
  brandName?: string | undefined;
8344
8488
  status?: boolean | undefined;
8345
8489
  connectedUserName?: string | null | undefined;
8346
8490
  connectedUserId?: string | null | undefined;
8491
+ lineRichMenuId?: string | null | undefined;
8347
8492
  actor?: {
8348
8493
  id: string;
8349
8494
  address: string | null;
@@ -8361,12 +8506,14 @@ export declare const instagramContract: {
8361
8506
  accessToken?: string | undefined;
8362
8507
  channelSecret?: string | undefined;
8363
8508
  additionalCredentials?: any;
8509
+ lineRichMenuId?: string | null | undefined;
8364
8510
  } | undefined;
8365
8511
  platformId?: string | undefined;
8366
8512
  brandName?: string | undefined;
8367
8513
  status?: boolean | undefined;
8368
8514
  connectedUserName?: string | null | undefined;
8369
8515
  connectedUserId?: string | null | undefined;
8516
+ lineRichMenuId?: string | null | undefined;
8370
8517
  actor?: {
8371
8518
  id: string;
8372
8519
  address: string | null;
@@ -8389,24 +8536,28 @@ export declare const instagramContract: {
8389
8536
  accessToken: z.ZodOptional<z.ZodString>;
8390
8537
  channelSecret: z.ZodOptional<z.ZodString>;
8391
8538
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8539
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8392
8540
  }, "strip", z.ZodTypeAny, {
8393
8541
  id: string;
8394
8542
  name: string;
8395
8543
  accessToken?: string | undefined;
8396
8544
  channelSecret?: string | undefined;
8397
8545
  additionalCredentials?: any;
8546
+ lineRichMenuId?: string | null | undefined;
8398
8547
  }, {
8399
8548
  id: string;
8400
8549
  name: string;
8401
8550
  accessToken?: string | undefined;
8402
8551
  channelSecret?: string | undefined;
8403
8552
  additionalCredentials?: any;
8553
+ lineRichMenuId?: string | null | undefined;
8404
8554
  }>;
8405
8555
  platformId: z.ZodString;
8406
8556
  brandName: z.ZodString;
8407
8557
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
8408
8558
  connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8409
8559
  connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8560
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8410
8561
  actor: z.ZodOptional<z.ZodObject<{
8411
8562
  id: z.ZodString;
8412
8563
  name: z.ZodString;
@@ -8436,12 +8587,14 @@ export declare const instagramContract: {
8436
8587
  accessToken?: string | undefined;
8437
8588
  channelSecret?: string | undefined;
8438
8589
  additionalCredentials?: any;
8590
+ lineRichMenuId?: string | null | undefined;
8439
8591
  };
8440
8592
  status: boolean;
8441
8593
  brandName: string;
8442
8594
  platformId: string;
8443
8595
  connectedUserName?: string | null | undefined;
8444
8596
  connectedUserId?: string | null | undefined;
8597
+ lineRichMenuId?: string | null | undefined;
8445
8598
  actor?: {
8446
8599
  id: string;
8447
8600
  address: string | null;
@@ -8459,12 +8612,14 @@ export declare const instagramContract: {
8459
8612
  accessToken?: string | undefined;
8460
8613
  channelSecret?: string | undefined;
8461
8614
  additionalCredentials?: any;
8615
+ lineRichMenuId?: string | null | undefined;
8462
8616
  };
8463
8617
  status: boolean;
8464
8618
  brandName: string;
8465
8619
  platformId: string;
8466
8620
  connectedUserName?: string | null | undefined;
8467
8621
  connectedUserId?: string | null | undefined;
8622
+ lineRichMenuId?: string | null | undefined;
8468
8623
  actor?: {
8469
8624
  id: string;
8470
8625
  address: string | null;
@@ -8484,12 +8639,14 @@ export declare const instagramContract: {
8484
8639
  accessToken?: string | undefined;
8485
8640
  channelSecret?: string | undefined;
8486
8641
  additionalCredentials?: any;
8642
+ lineRichMenuId?: string | null | undefined;
8487
8643
  };
8488
8644
  status: boolean;
8489
8645
  brandName: string;
8490
8646
  platformId: string;
8491
8647
  connectedUserName?: string | null | undefined;
8492
8648
  connectedUserId?: string | null | undefined;
8649
+ lineRichMenuId?: string | null | undefined;
8493
8650
  actor?: {
8494
8651
  id: string;
8495
8652
  address: string | null;
@@ -8510,12 +8667,14 @@ export declare const instagramContract: {
8510
8667
  accessToken?: string | undefined;
8511
8668
  channelSecret?: string | undefined;
8512
8669
  additionalCredentials?: any;
8670
+ lineRichMenuId?: string | null | undefined;
8513
8671
  };
8514
8672
  status: boolean;
8515
8673
  brandName: string;
8516
8674
  platformId: string;
8517
8675
  connectedUserName?: string | null | undefined;
8518
8676
  connectedUserId?: string | null | undefined;
8677
+ lineRichMenuId?: string | null | undefined;
8519
8678
  actor?: {
8520
8679
  id: string;
8521
8680
  address: string | null;
@@ -8572,24 +8731,28 @@ export declare const instagramContract: {
8572
8731
  accessToken: z.ZodOptional<z.ZodString>;
8573
8732
  channelSecret: z.ZodOptional<z.ZodString>;
8574
8733
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8734
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8575
8735
  }, "strip", z.ZodTypeAny, {
8576
8736
  id: string;
8577
8737
  name: string;
8578
8738
  accessToken?: string | undefined;
8579
8739
  channelSecret?: string | undefined;
8580
8740
  additionalCredentials?: any;
8741
+ lineRichMenuId?: string | null | undefined;
8581
8742
  }, {
8582
8743
  id: string;
8583
8744
  name: string;
8584
8745
  accessToken?: string | undefined;
8585
8746
  channelSecret?: string | undefined;
8586
8747
  additionalCredentials?: any;
8748
+ lineRichMenuId?: string | null | undefined;
8587
8749
  }>;
8588
8750
  platformId: z.ZodString;
8589
8751
  brandName: z.ZodString;
8590
8752
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
8591
8753
  connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8592
8754
  connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8755
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8593
8756
  actor: z.ZodOptional<z.ZodObject<{
8594
8757
  id: z.ZodString;
8595
8758
  name: z.ZodString;
@@ -8619,12 +8782,14 @@ export declare const instagramContract: {
8619
8782
  accessToken?: string | undefined;
8620
8783
  channelSecret?: string | undefined;
8621
8784
  additionalCredentials?: any;
8785
+ lineRichMenuId?: string | null | undefined;
8622
8786
  };
8623
8787
  status: boolean;
8624
8788
  brandName: string;
8625
8789
  platformId: string;
8626
8790
  connectedUserName?: string | null | undefined;
8627
8791
  connectedUserId?: string | null | undefined;
8792
+ lineRichMenuId?: string | null | undefined;
8628
8793
  actor?: {
8629
8794
  id: string;
8630
8795
  address: string | null;
@@ -8642,12 +8807,14 @@ export declare const instagramContract: {
8642
8807
  accessToken?: string | undefined;
8643
8808
  channelSecret?: string | undefined;
8644
8809
  additionalCredentials?: any;
8810
+ lineRichMenuId?: string | null | undefined;
8645
8811
  };
8646
8812
  status: boolean;
8647
8813
  brandName: string;
8648
8814
  platformId: string;
8649
8815
  connectedUserName?: string | null | undefined;
8650
8816
  connectedUserId?: string | null | undefined;
8817
+ lineRichMenuId?: string | null | undefined;
8651
8818
  actor?: {
8652
8819
  id: string;
8653
8820
  address: string | null;
@@ -8667,12 +8834,14 @@ export declare const instagramContract: {
8667
8834
  accessToken?: string | undefined;
8668
8835
  channelSecret?: string | undefined;
8669
8836
  additionalCredentials?: any;
8837
+ lineRichMenuId?: string | null | undefined;
8670
8838
  };
8671
8839
  status: boolean;
8672
8840
  brandName: string;
8673
8841
  platformId: string;
8674
8842
  connectedUserName?: string | null | undefined;
8675
8843
  connectedUserId?: string | null | undefined;
8844
+ lineRichMenuId?: string | null | undefined;
8676
8845
  actor?: {
8677
8846
  id: string;
8678
8847
  address: string | null;
@@ -8693,12 +8862,14 @@ export declare const instagramContract: {
8693
8862
  accessToken?: string | undefined;
8694
8863
  channelSecret?: string | undefined;
8695
8864
  additionalCredentials?: any;
8865
+ lineRichMenuId?: string | null | undefined;
8696
8866
  };
8697
8867
  status: boolean;
8698
8868
  brandName: string;
8699
8869
  platformId: string;
8700
8870
  connectedUserName?: string | null | undefined;
8701
8871
  connectedUserId?: string | null | undefined;
8872
+ lineRichMenuId?: string | null | undefined;
8702
8873
  actor?: {
8703
8874
  id: string;
8704
8875
  address: string | null;
@@ -8755,24 +8926,28 @@ export declare const instagramContract: {
8755
8926
  accessToken: z.ZodOptional<z.ZodString>;
8756
8927
  channelSecret: z.ZodOptional<z.ZodString>;
8757
8928
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8929
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8758
8930
  }, "strip", z.ZodTypeAny, {
8759
8931
  id: string;
8760
8932
  name: string;
8761
8933
  accessToken?: string | undefined;
8762
8934
  channelSecret?: string | undefined;
8763
8935
  additionalCredentials?: any;
8936
+ lineRichMenuId?: string | null | undefined;
8764
8937
  }, {
8765
8938
  id: string;
8766
8939
  name: string;
8767
8940
  accessToken?: string | undefined;
8768
8941
  channelSecret?: string | undefined;
8769
8942
  additionalCredentials?: any;
8943
+ lineRichMenuId?: string | null | undefined;
8770
8944
  }>;
8771
8945
  platformId: z.ZodString;
8772
8946
  brandName: z.ZodString;
8773
8947
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
8774
8948
  connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8775
8949
  connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8950
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8776
8951
  actor: z.ZodOptional<z.ZodObject<{
8777
8952
  id: z.ZodString;
8778
8953
  name: z.ZodString;
@@ -8802,12 +8977,14 @@ export declare const instagramContract: {
8802
8977
  accessToken?: string | undefined;
8803
8978
  channelSecret?: string | undefined;
8804
8979
  additionalCredentials?: any;
8980
+ lineRichMenuId?: string | null | undefined;
8805
8981
  };
8806
8982
  status: boolean;
8807
8983
  brandName: string;
8808
8984
  platformId: string;
8809
8985
  connectedUserName?: string | null | undefined;
8810
8986
  connectedUserId?: string | null | undefined;
8987
+ lineRichMenuId?: string | null | undefined;
8811
8988
  actor?: {
8812
8989
  id: string;
8813
8990
  address: string | null;
@@ -8825,12 +9002,14 @@ export declare const instagramContract: {
8825
9002
  accessToken?: string | undefined;
8826
9003
  channelSecret?: string | undefined;
8827
9004
  additionalCredentials?: any;
9005
+ lineRichMenuId?: string | null | undefined;
8828
9006
  };
8829
9007
  status: boolean;
8830
9008
  brandName: string;
8831
9009
  platformId: string;
8832
9010
  connectedUserName?: string | null | undefined;
8833
9011
  connectedUserId?: string | null | undefined;
9012
+ lineRichMenuId?: string | null | undefined;
8834
9013
  actor?: {
8835
9014
  id: string;
8836
9015
  address: string | null;
@@ -8850,12 +9029,14 @@ export declare const instagramContract: {
8850
9029
  accessToken?: string | undefined;
8851
9030
  channelSecret?: string | undefined;
8852
9031
  additionalCredentials?: any;
9032
+ lineRichMenuId?: string | null | undefined;
8853
9033
  };
8854
9034
  status: boolean;
8855
9035
  brandName: string;
8856
9036
  platformId: string;
8857
9037
  connectedUserName?: string | null | undefined;
8858
9038
  connectedUserId?: string | null | undefined;
9039
+ lineRichMenuId?: string | null | undefined;
8859
9040
  actor?: {
8860
9041
  id: string;
8861
9042
  address: string | null;
@@ -8876,12 +9057,14 @@ export declare const instagramContract: {
8876
9057
  accessToken?: string | undefined;
8877
9058
  channelSecret?: string | undefined;
8878
9059
  additionalCredentials?: any;
9060
+ lineRichMenuId?: string | null | undefined;
8879
9061
  };
8880
9062
  status: boolean;
8881
9063
  brandName: string;
8882
9064
  platformId: string;
8883
9065
  connectedUserName?: string | null | undefined;
8884
9066
  connectedUserId?: string | null | undefined;
9067
+ lineRichMenuId?: string | null | undefined;
8885
9068
  actor?: {
8886
9069
  id: string;
8887
9070
  address: string | null;
@@ -8926,24 +9109,28 @@ export declare const instagramContract: {
8926
9109
  accessToken: z.ZodOptional<z.ZodString>;
8927
9110
  channelSecret: z.ZodOptional<z.ZodString>;
8928
9111
  additionalCredentials: z.ZodOptional<z.ZodAny>;
9112
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8929
9113
  }, "strip", z.ZodTypeAny, {
8930
9114
  id: string;
8931
9115
  name: string;
8932
9116
  accessToken?: string | undefined;
8933
9117
  channelSecret?: string | undefined;
8934
9118
  additionalCredentials?: any;
9119
+ lineRichMenuId?: string | null | undefined;
8935
9120
  }, {
8936
9121
  id: string;
8937
9122
  name: string;
8938
9123
  accessToken?: string | undefined;
8939
9124
  channelSecret?: string | undefined;
8940
9125
  additionalCredentials?: any;
9126
+ lineRichMenuId?: string | null | undefined;
8941
9127
  }>>;
8942
9128
  platformId: z.ZodOptional<z.ZodString>;
8943
9129
  brandName: z.ZodOptional<z.ZodString>;
8944
9130
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
8945
9131
  connectedUserName: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8946
9132
  connectedUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
9133
+ lineRichMenuId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8947
9134
  actor: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8948
9135
  id: z.ZodString;
8949
9136
  name: z.ZodString;
@@ -8973,12 +9160,14 @@ export declare const instagramContract: {
8973
9160
  accessToken?: string | undefined;
8974
9161
  channelSecret?: string | undefined;
8975
9162
  additionalCredentials?: any;
9163
+ lineRichMenuId?: string | null | undefined;
8976
9164
  } | undefined;
8977
9165
  platformId?: string | undefined;
8978
9166
  brandName?: string | undefined;
8979
9167
  status?: boolean | undefined;
8980
9168
  connectedUserName?: string | null | undefined;
8981
9169
  connectedUserId?: string | null | undefined;
9170
+ lineRichMenuId?: string | null | undefined;
8982
9171
  actor?: {
8983
9172
  id: string;
8984
9173
  address: string | null;
@@ -8996,12 +9185,14 @@ export declare const instagramContract: {
8996
9185
  accessToken?: string | undefined;
8997
9186
  channelSecret?: string | undefined;
8998
9187
  additionalCredentials?: any;
9188
+ lineRichMenuId?: string | null | undefined;
8999
9189
  } | undefined;
9000
9190
  platformId?: string | undefined;
9001
9191
  brandName?: string | undefined;
9002
9192
  status?: boolean | undefined;
9003
9193
  connectedUserName?: string | null | undefined;
9004
9194
  connectedUserId?: string | null | undefined;
9195
+ lineRichMenuId?: string | null | undefined;
9005
9196
  actor?: {
9006
9197
  id: string;
9007
9198
  address: string | null;
@@ -9024,24 +9215,28 @@ export declare const instagramContract: {
9024
9215
  accessToken: z.ZodOptional<z.ZodString>;
9025
9216
  channelSecret: z.ZodOptional<z.ZodString>;
9026
9217
  additionalCredentials: z.ZodOptional<z.ZodAny>;
9218
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9027
9219
  }, "strip", z.ZodTypeAny, {
9028
9220
  id: string;
9029
9221
  name: string;
9030
9222
  accessToken?: string | undefined;
9031
9223
  channelSecret?: string | undefined;
9032
9224
  additionalCredentials?: any;
9225
+ lineRichMenuId?: string | null | undefined;
9033
9226
  }, {
9034
9227
  id: string;
9035
9228
  name: string;
9036
9229
  accessToken?: string | undefined;
9037
9230
  channelSecret?: string | undefined;
9038
9231
  additionalCredentials?: any;
9232
+ lineRichMenuId?: string | null | undefined;
9039
9233
  }>;
9040
9234
  platformId: z.ZodString;
9041
9235
  brandName: z.ZodString;
9042
9236
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
9043
9237
  connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9044
9238
  connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9239
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9045
9240
  actor: z.ZodOptional<z.ZodObject<{
9046
9241
  id: z.ZodString;
9047
9242
  name: z.ZodString;
@@ -9071,12 +9266,14 @@ export declare const instagramContract: {
9071
9266
  accessToken?: string | undefined;
9072
9267
  channelSecret?: string | undefined;
9073
9268
  additionalCredentials?: any;
9269
+ lineRichMenuId?: string | null | undefined;
9074
9270
  };
9075
9271
  status: boolean;
9076
9272
  brandName: string;
9077
9273
  platformId: string;
9078
9274
  connectedUserName?: string | null | undefined;
9079
9275
  connectedUserId?: string | null | undefined;
9276
+ lineRichMenuId?: string | null | undefined;
9080
9277
  actor?: {
9081
9278
  id: string;
9082
9279
  address: string | null;
@@ -9094,12 +9291,14 @@ export declare const instagramContract: {
9094
9291
  accessToken?: string | undefined;
9095
9292
  channelSecret?: string | undefined;
9096
9293
  additionalCredentials?: any;
9294
+ lineRichMenuId?: string | null | undefined;
9097
9295
  };
9098
9296
  status: boolean;
9099
9297
  brandName: string;
9100
9298
  platformId: string;
9101
9299
  connectedUserName?: string | null | undefined;
9102
9300
  connectedUserId?: string | null | undefined;
9301
+ lineRichMenuId?: string | null | undefined;
9103
9302
  actor?: {
9104
9303
  id: string;
9105
9304
  address: string | null;
@@ -9119,12 +9318,14 @@ export declare const instagramContract: {
9119
9318
  accessToken?: string | undefined;
9120
9319
  channelSecret?: string | undefined;
9121
9320
  additionalCredentials?: any;
9321
+ lineRichMenuId?: string | null | undefined;
9122
9322
  };
9123
9323
  status: boolean;
9124
9324
  brandName: string;
9125
9325
  platformId: string;
9126
9326
  connectedUserName?: string | null | undefined;
9127
9327
  connectedUserId?: string | null | undefined;
9328
+ lineRichMenuId?: string | null | undefined;
9128
9329
  actor?: {
9129
9330
  id: string;
9130
9331
  address: string | null;
@@ -9145,12 +9346,14 @@ export declare const instagramContract: {
9145
9346
  accessToken?: string | undefined;
9146
9347
  channelSecret?: string | undefined;
9147
9348
  additionalCredentials?: any;
9349
+ lineRichMenuId?: string | null | undefined;
9148
9350
  };
9149
9351
  status: boolean;
9150
9352
  brandName: string;
9151
9353
  platformId: string;
9152
9354
  connectedUserName?: string | null | undefined;
9153
9355
  connectedUserId?: string | null | undefined;
9356
+ lineRichMenuId?: string | null | undefined;
9154
9357
  actor?: {
9155
9358
  id: string;
9156
9359
  address: string | null;
@@ -9314,5 +9517,35 @@ export declare const instagramContract: {
9314
9517
  };
9315
9518
  path: "/pages";
9316
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
+ };
9317
9550
  };
9318
9551
  //# sourceMappingURL=index.d.ts.map