@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.
Files changed (60) hide show
  1. package/dist/index.js +128 -27
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +128 -27
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/botpress/index.d.ts +23 -14
  6. package/dist/src/botpress/index.d.ts.map +1 -1
  7. package/dist/src/botpress/validation.d.ts +23 -14
  8. package/dist/src/botpress/validation.d.ts.map +1 -1
  9. package/dist/src/channel/index.d.ts +105 -7
  10. package/dist/src/channel/index.d.ts.map +1 -1
  11. package/dist/src/channel/schema.d.ts +8 -0
  12. package/dist/src/channel/schema.d.ts.map +1 -1
  13. package/dist/src/channel/validation.d.ts +6 -1
  14. package/dist/src/channel/validation.d.ts.map +1 -1
  15. package/dist/src/chat/index.d.ts +116 -0
  16. package/dist/src/chat/index.d.ts.map +1 -1
  17. package/dist/src/chat/schema.d.ts +16 -0
  18. package/dist/src/chat/schema.d.ts.map +1 -1
  19. package/dist/src/chat/validation.d.ts +75 -0
  20. package/dist/src/chat/validation.d.ts.map +1 -1
  21. package/dist/src/contract.d.ts +1005 -166
  22. package/dist/src/contract.d.ts.map +1 -1
  23. package/dist/src/cx-log/index.d.ts +11 -0
  24. package/dist/src/cx-log/index.d.ts.map +1 -1
  25. package/dist/src/cx-log/schema.d.ts +9 -0
  26. package/dist/src/cx-log/schema.d.ts.map +1 -1
  27. package/dist/src/dashboard/index.d.ts +156 -146
  28. package/dist/src/dashboard/index.d.ts.map +1 -1
  29. package/dist/src/dashboard/schema.d.ts +207 -207
  30. package/dist/src/dashboard/validation.d.ts +10 -0
  31. package/dist/src/dashboard/validation.d.ts.map +1 -1
  32. package/dist/src/export/index.d.ts +43 -0
  33. package/dist/src/export/index.d.ts.map +1 -0
  34. package/dist/src/instagram/index.d.ts +141 -0
  35. package/dist/src/instagram/index.d.ts.map +1 -1
  36. package/dist/src/instagram/validation.d.ts +7 -0
  37. package/dist/src/instagram/validation.d.ts.map +1 -1
  38. package/dist/src/line/index.d.ts +132 -0
  39. package/dist/src/line/index.d.ts.map +1 -1
  40. package/dist/src/line/validation.d.ts +26 -0
  41. package/dist/src/line/validation.d.ts.map +1 -1
  42. package/dist/src/messenger/index.d.ts +111 -0
  43. package/dist/src/messenger/index.d.ts.map +1 -1
  44. package/dist/src/messenger/validation.d.ts +5 -0
  45. package/dist/src/messenger/validation.d.ts.map +1 -1
  46. package/dist/src/telephony-cdr/index.d.ts +125 -0
  47. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  48. package/dist/src/telephony-cdr/schema.d.ts +7 -0
  49. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  50. package/dist/src/ticket/index.d.ts +125 -0
  51. package/dist/src/ticket/index.d.ts.map +1 -1
  52. package/dist/src/ticket/schema.d.ts +7 -0
  53. package/dist/src/ticket/schema.d.ts.map +1 -1
  54. package/dist/src/viber/index.d.ts +60 -0
  55. package/dist/src/viber/index.d.ts.map +1 -1
  56. package/dist/src/webchat/index.d.ts +34 -0
  57. package/dist/src/webchat/index.d.ts.map +1 -1
  58. package/dist/src/workflow-rule/index.d.ts +18 -0
  59. package/dist/src/workflow-rule/index.d.ts.map +1 -1
  60. package/package.json +10 -4
@@ -34,18 +34,21 @@ export declare const channelContract: {
34
34
  accessToken: z.ZodOptional<z.ZodString>;
35
35
  channelSecret: z.ZodOptional<z.ZodString>;
36
36
  additionalCredentials: z.ZodOptional<z.ZodAny>;
37
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
37
38
  }, "strip", z.ZodTypeAny, {
38
39
  id: string;
39
40
  name: string;
40
41
  accessToken?: string | undefined;
41
42
  channelSecret?: string | undefined;
42
43
  additionalCredentials?: any;
44
+ lineRichMenuId?: string | null | undefined;
43
45
  }, {
44
46
  id: string;
45
47
  name: string;
46
48
  accessToken?: string | undefined;
47
49
  channelSecret?: string | undefined;
48
50
  additionalCredentials?: any;
51
+ lineRichMenuId?: string | null | undefined;
49
52
  }>;
50
53
  brandName: z.ZodString;
51
54
  platformId: z.ZodString;
@@ -286,6 +289,7 @@ export declare const channelContract: {
286
289
  accessToken?: string | undefined;
287
290
  channelSecret?: string | undefined;
288
291
  additionalCredentials?: any;
292
+ lineRichMenuId?: string | null | undefined;
289
293
  };
290
294
  status: boolean;
291
295
  createdAt: Date;
@@ -357,6 +361,7 @@ export declare const channelContract: {
357
361
  accessToken?: string | undefined;
358
362
  channelSecret?: string | undefined;
359
363
  additionalCredentials?: any;
364
+ lineRichMenuId?: string | null | undefined;
360
365
  };
361
366
  status: boolean;
362
367
  createdAt: Date;
@@ -430,6 +435,7 @@ export declare const channelContract: {
430
435
  accessToken?: string | undefined;
431
436
  channelSecret?: string | undefined;
432
437
  additionalCredentials?: any;
438
+ lineRichMenuId?: string | null | undefined;
433
439
  };
434
440
  status: boolean;
435
441
  createdAt: Date;
@@ -504,6 +510,7 @@ export declare const channelContract: {
504
510
  accessToken?: string | undefined;
505
511
  channelSecret?: string | undefined;
506
512
  additionalCredentials?: any;
513
+ lineRichMenuId?: string | null | undefined;
507
514
  };
508
515
  status: boolean;
509
516
  createdAt: Date;
@@ -610,18 +617,21 @@ export declare const channelContract: {
610
617
  accessToken: z.ZodOptional<z.ZodString>;
611
618
  channelSecret: z.ZodOptional<z.ZodString>;
612
619
  additionalCredentials: z.ZodOptional<z.ZodAny>;
620
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
613
621
  }, "strip", z.ZodTypeAny, {
614
622
  id: string;
615
623
  name: string;
616
624
  accessToken?: string | undefined;
617
625
  channelSecret?: string | undefined;
618
626
  additionalCredentials?: any;
627
+ lineRichMenuId?: string | null | undefined;
619
628
  }, {
620
629
  id: string;
621
630
  name: string;
622
631
  accessToken?: string | undefined;
623
632
  channelSecret?: string | undefined;
624
633
  additionalCredentials?: any;
634
+ lineRichMenuId?: string | null | undefined;
625
635
  }>;
626
636
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
627
637
  actor: z.ZodOptional<z.ZodObject<{
@@ -643,6 +653,7 @@ export declare const channelContract: {
643
653
  email: string;
644
654
  phone: string | null;
645
655
  }>>;
656
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
646
657
  brandName: z.ZodString;
647
658
  platformId: z.ZodString;
648
659
  connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -662,6 +673,7 @@ export declare const channelContract: {
662
673
  accessToken?: string | undefined;
663
674
  channelSecret?: string | undefined;
664
675
  additionalCredentials?: any;
676
+ lineRichMenuId?: string | null | undefined;
665
677
  };
666
678
  status: boolean;
667
679
  createdAt: string;
@@ -677,6 +689,7 @@ export declare const channelContract: {
677
689
  email: string;
678
690
  phone: string | null;
679
691
  } | undefined;
692
+ lineRichMenuId?: string | null | undefined;
680
693
  connectedUserName?: string | null | undefined;
681
694
  connectedUserId?: string | null | undefined;
682
695
  }, {
@@ -689,6 +702,7 @@ export declare const channelContract: {
689
702
  accessToken?: string | undefined;
690
703
  channelSecret?: string | undefined;
691
704
  additionalCredentials?: any;
705
+ lineRichMenuId?: string | null | undefined;
692
706
  };
693
707
  status: boolean;
694
708
  createdAt: string;
@@ -704,6 +718,7 @@ export declare const channelContract: {
704
718
  email: string;
705
719
  phone: string | null;
706
720
  } | undefined;
721
+ lineRichMenuId?: string | null | undefined;
707
722
  connectedUserName?: string | null | undefined;
708
723
  connectedUserId?: string | null | undefined;
709
724
  }>;
@@ -718,6 +733,7 @@ export declare const channelContract: {
718
733
  accessToken?: string | undefined;
719
734
  channelSecret?: string | undefined;
720
735
  additionalCredentials?: any;
736
+ lineRichMenuId?: string | null | undefined;
721
737
  };
722
738
  status: boolean;
723
739
  createdAt: string;
@@ -733,6 +749,7 @@ export declare const channelContract: {
733
749
  email: string;
734
750
  phone: string | null;
735
751
  } | undefined;
752
+ lineRichMenuId?: string | null | undefined;
736
753
  connectedUserName?: string | null | undefined;
737
754
  connectedUserId?: string | null | undefined;
738
755
  };
@@ -748,6 +765,7 @@ export declare const channelContract: {
748
765
  accessToken?: string | undefined;
749
766
  channelSecret?: string | undefined;
750
767
  additionalCredentials?: any;
768
+ lineRichMenuId?: string | null | undefined;
751
769
  };
752
770
  status: boolean;
753
771
  createdAt: string;
@@ -763,6 +781,7 @@ export declare const channelContract: {
763
781
  email: string;
764
782
  phone: string | null;
765
783
  } | undefined;
784
+ lineRichMenuId?: string | null | undefined;
766
785
  connectedUserName?: string | null | undefined;
767
786
  connectedUserId?: string | null | undefined;
768
787
  };
@@ -824,18 +843,21 @@ export declare const channelContract: {
824
843
  accessToken: z.ZodOptional<z.ZodString>;
825
844
  channelSecret: z.ZodOptional<z.ZodString>;
826
845
  additionalCredentials: z.ZodOptional<z.ZodAny>;
846
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
827
847
  }, "strip", z.ZodTypeAny, {
828
848
  id: string;
829
849
  name: string;
830
850
  accessToken?: string | undefined;
831
851
  channelSecret?: string | undefined;
832
852
  additionalCredentials?: any;
853
+ lineRichMenuId?: string | null | undefined;
833
854
  }, {
834
855
  id: string;
835
856
  name: string;
836
857
  accessToken?: string | undefined;
837
858
  channelSecret?: string | undefined;
838
859
  additionalCredentials?: any;
860
+ lineRichMenuId?: string | null | undefined;
839
861
  }>;
840
862
  brandName: z.ZodString;
841
863
  platformId: z.ZodString;
@@ -1076,6 +1098,7 @@ export declare const channelContract: {
1076
1098
  accessToken?: string | undefined;
1077
1099
  channelSecret?: string | undefined;
1078
1100
  additionalCredentials?: any;
1101
+ lineRichMenuId?: string | null | undefined;
1079
1102
  };
1080
1103
  status: boolean;
1081
1104
  createdAt: Date;
@@ -1147,6 +1170,7 @@ export declare const channelContract: {
1147
1170
  accessToken?: string | undefined;
1148
1171
  channelSecret?: string | undefined;
1149
1172
  additionalCredentials?: any;
1173
+ lineRichMenuId?: string | null | undefined;
1150
1174
  };
1151
1175
  status: boolean;
1152
1176
  createdAt: Date;
@@ -1220,6 +1244,7 @@ export declare const channelContract: {
1220
1244
  accessToken?: string | undefined;
1221
1245
  channelSecret?: string | undefined;
1222
1246
  additionalCredentials?: any;
1247
+ lineRichMenuId?: string | null | undefined;
1223
1248
  };
1224
1249
  status: boolean;
1225
1250
  createdAt: Date;
@@ -1294,6 +1319,7 @@ export declare const channelContract: {
1294
1319
  accessToken?: string | undefined;
1295
1320
  channelSecret?: string | undefined;
1296
1321
  additionalCredentials?: any;
1322
+ lineRichMenuId?: string | null | undefined;
1297
1323
  };
1298
1324
  status: boolean;
1299
1325
  createdAt: Date;
@@ -1420,18 +1446,21 @@ export declare const channelContract: {
1420
1446
  accessToken: z.ZodOptional<z.ZodString>;
1421
1447
  channelSecret: z.ZodOptional<z.ZodString>;
1422
1448
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1449
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1423
1450
  }, "strip", z.ZodTypeAny, {
1424
1451
  id: string;
1425
1452
  name: string;
1426
1453
  accessToken?: string | undefined;
1427
1454
  channelSecret?: string | undefined;
1428
1455
  additionalCredentials?: any;
1456
+ lineRichMenuId?: string | null | undefined;
1429
1457
  }, {
1430
1458
  id: string;
1431
1459
  name: string;
1432
1460
  accessToken?: string | undefined;
1433
1461
  channelSecret?: string | undefined;
1434
1462
  additionalCredentials?: any;
1463
+ lineRichMenuId?: string | null | undefined;
1435
1464
  }>;
1436
1465
  brandName: z.ZodString;
1437
1466
  platformId: z.ZodString;
@@ -1672,6 +1701,7 @@ export declare const channelContract: {
1672
1701
  accessToken?: string | undefined;
1673
1702
  channelSecret?: string | undefined;
1674
1703
  additionalCredentials?: any;
1704
+ lineRichMenuId?: string | null | undefined;
1675
1705
  };
1676
1706
  status: boolean;
1677
1707
  createdAt: Date;
@@ -1743,6 +1773,7 @@ export declare const channelContract: {
1743
1773
  accessToken?: string | undefined;
1744
1774
  channelSecret?: string | undefined;
1745
1775
  additionalCredentials?: any;
1776
+ lineRichMenuId?: string | null | undefined;
1746
1777
  };
1747
1778
  status: boolean;
1748
1779
  createdAt: Date;
@@ -1816,6 +1847,7 @@ export declare const channelContract: {
1816
1847
  accessToken?: string | undefined;
1817
1848
  channelSecret?: string | undefined;
1818
1849
  additionalCredentials?: any;
1850
+ lineRichMenuId?: string | null | undefined;
1819
1851
  };
1820
1852
  status: boolean;
1821
1853
  createdAt: Date;
@@ -1890,6 +1922,7 @@ export declare const channelContract: {
1890
1922
  accessToken?: string | undefined;
1891
1923
  channelSecret?: string | undefined;
1892
1924
  additionalCredentials?: any;
1925
+ lineRichMenuId?: string | null | undefined;
1893
1926
  };
1894
1927
  status: boolean;
1895
1928
  createdAt: Date;
@@ -2010,18 +2043,21 @@ export declare const channelContract: {
2010
2043
  accessToken: z.ZodOptional<z.ZodString>;
2011
2044
  channelSecret: z.ZodOptional<z.ZodString>;
2012
2045
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2046
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2013
2047
  }, "strip", z.ZodTypeAny, {
2014
2048
  id: string;
2015
2049
  name: string;
2016
2050
  accessToken?: string | undefined;
2017
2051
  channelSecret?: string | undefined;
2018
2052
  additionalCredentials?: any;
2053
+ lineRichMenuId?: string | null | undefined;
2019
2054
  }, {
2020
2055
  id: string;
2021
2056
  name: string;
2022
2057
  accessToken?: string | undefined;
2023
2058
  channelSecret?: string | undefined;
2024
2059
  additionalCredentials?: any;
2060
+ lineRichMenuId?: string | null | undefined;
2025
2061
  }>;
2026
2062
  brandName: z.ZodString;
2027
2063
  platformId: z.ZodString;
@@ -2262,6 +2298,7 @@ export declare const channelContract: {
2262
2298
  accessToken?: string | undefined;
2263
2299
  channelSecret?: string | undefined;
2264
2300
  additionalCredentials?: any;
2301
+ lineRichMenuId?: string | null | undefined;
2265
2302
  };
2266
2303
  status: boolean;
2267
2304
  createdAt: Date;
@@ -2333,6 +2370,7 @@ export declare const channelContract: {
2333
2370
  accessToken?: string | undefined;
2334
2371
  channelSecret?: string | undefined;
2335
2372
  additionalCredentials?: any;
2373
+ lineRichMenuId?: string | null | undefined;
2336
2374
  };
2337
2375
  status: boolean;
2338
2376
  createdAt: Date;
@@ -2406,6 +2444,7 @@ export declare const channelContract: {
2406
2444
  accessToken?: string | undefined;
2407
2445
  channelSecret?: string | undefined;
2408
2446
  additionalCredentials?: any;
2447
+ lineRichMenuId?: string | null | undefined;
2409
2448
  };
2410
2449
  status: boolean;
2411
2450
  createdAt: Date;
@@ -2480,6 +2519,7 @@ export declare const channelContract: {
2480
2519
  accessToken?: string | undefined;
2481
2520
  channelSecret?: string | undefined;
2482
2521
  additionalCredentials?: any;
2522
+ lineRichMenuId?: string | null | undefined;
2483
2523
  };
2484
2524
  status: boolean;
2485
2525
  createdAt: Date;
@@ -2583,18 +2623,21 @@ export declare const channelContract: {
2583
2623
  accessToken: z.ZodOptional<z.ZodString>;
2584
2624
  channelSecret: z.ZodOptional<z.ZodString>;
2585
2625
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2626
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2586
2627
  }, "strip", z.ZodTypeAny, {
2587
2628
  id: string;
2588
2629
  name: string;
2589
2630
  accessToken?: string | undefined;
2590
2631
  channelSecret?: string | undefined;
2591
2632
  additionalCredentials?: any;
2633
+ lineRichMenuId?: string | null | undefined;
2592
2634
  }, {
2593
2635
  id: string;
2594
2636
  name: string;
2595
2637
  accessToken?: string | undefined;
2596
2638
  channelSecret?: string | undefined;
2597
2639
  additionalCredentials?: any;
2640
+ lineRichMenuId?: string | null | undefined;
2598
2641
  }>;
2599
2642
  platformId: z.ZodString;
2600
2643
  connectedUserId: z.ZodString;
@@ -2608,6 +2651,7 @@ export declare const channelContract: {
2608
2651
  accessToken?: string | undefined;
2609
2652
  channelSecret?: string | undefined;
2610
2653
  additionalCredentials?: any;
2654
+ lineRichMenuId?: string | null | undefined;
2611
2655
  };
2612
2656
  platformId: string;
2613
2657
  connectedUserId: string;
@@ -2621,6 +2665,7 @@ export declare const channelContract: {
2621
2665
  accessToken?: string | undefined;
2622
2666
  channelSecret?: string | undefined;
2623
2667
  additionalCredentials?: any;
2668
+ lineRichMenuId?: string | null | undefined;
2624
2669
  };
2625
2670
  platformId: string;
2626
2671
  connectedUserId: string;
@@ -2644,18 +2689,21 @@ export declare const channelContract: {
2644
2689
  accessToken: z.ZodOptional<z.ZodString>;
2645
2690
  channelSecret: z.ZodOptional<z.ZodString>;
2646
2691
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2692
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2647
2693
  }, "strip", z.ZodTypeAny, {
2648
2694
  id: string;
2649
2695
  name: string;
2650
2696
  accessToken?: string | undefined;
2651
2697
  channelSecret?: string | undefined;
2652
2698
  additionalCredentials?: any;
2699
+ lineRichMenuId?: string | null | undefined;
2653
2700
  }, {
2654
2701
  id: string;
2655
2702
  name: string;
2656
2703
  accessToken?: string | undefined;
2657
2704
  channelSecret?: string | undefined;
2658
2705
  additionalCredentials?: any;
2706
+ lineRichMenuId?: string | null | undefined;
2659
2707
  }>;
2660
2708
  brandName: z.ZodString;
2661
2709
  platformId: z.ZodString;
@@ -2896,6 +2944,7 @@ export declare const channelContract: {
2896
2944
  accessToken?: string | undefined;
2897
2945
  channelSecret?: string | undefined;
2898
2946
  additionalCredentials?: any;
2947
+ lineRichMenuId?: string | null | undefined;
2899
2948
  };
2900
2949
  status: boolean;
2901
2950
  createdAt: Date;
@@ -2967,6 +3016,7 @@ export declare const channelContract: {
2967
3016
  accessToken?: string | undefined;
2968
3017
  channelSecret?: string | undefined;
2969
3018
  additionalCredentials?: any;
3019
+ lineRichMenuId?: string | null | undefined;
2970
3020
  };
2971
3021
  status: boolean;
2972
3022
  createdAt: Date;
@@ -3040,6 +3090,7 @@ export declare const channelContract: {
3040
3090
  accessToken?: string | undefined;
3041
3091
  channelSecret?: string | undefined;
3042
3092
  additionalCredentials?: any;
3093
+ lineRichMenuId?: string | null | undefined;
3043
3094
  };
3044
3095
  status: boolean;
3045
3096
  createdAt: Date;
@@ -3114,6 +3165,7 @@ export declare const channelContract: {
3114
3165
  accessToken?: string | undefined;
3115
3166
  channelSecret?: string | undefined;
3116
3167
  additionalCredentials?: any;
3168
+ lineRichMenuId?: string | null | undefined;
3117
3169
  };
3118
3170
  status: boolean;
3119
3171
  createdAt: Date;
@@ -3232,18 +3284,21 @@ export declare const channelContract: {
3232
3284
  accessToken: z.ZodOptional<z.ZodString>;
3233
3285
  channelSecret: z.ZodOptional<z.ZodString>;
3234
3286
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3287
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3235
3288
  }, "strip", z.ZodTypeAny, {
3236
3289
  id: string;
3237
3290
  name: string;
3238
3291
  accessToken?: string | undefined;
3239
3292
  channelSecret?: string | undefined;
3240
3293
  additionalCredentials?: any;
3294
+ lineRichMenuId?: string | null | undefined;
3241
3295
  }, {
3242
3296
  id: string;
3243
3297
  name: string;
3244
3298
  accessToken?: string | undefined;
3245
3299
  channelSecret?: string | undefined;
3246
3300
  additionalCredentials?: any;
3301
+ lineRichMenuId?: string | null | undefined;
3247
3302
  }>;
3248
3303
  brandName: z.ZodString;
3249
3304
  platformId: z.ZodString;
@@ -3484,6 +3539,7 @@ export declare const channelContract: {
3484
3539
  accessToken?: string | undefined;
3485
3540
  channelSecret?: string | undefined;
3486
3541
  additionalCredentials?: any;
3542
+ lineRichMenuId?: string | null | undefined;
3487
3543
  };
3488
3544
  status: boolean;
3489
3545
  createdAt: Date;
@@ -3555,6 +3611,7 @@ export declare const channelContract: {
3555
3611
  accessToken?: string | undefined;
3556
3612
  channelSecret?: string | undefined;
3557
3613
  additionalCredentials?: any;
3614
+ lineRichMenuId?: string | null | undefined;
3558
3615
  };
3559
3616
  status: boolean;
3560
3617
  createdAt: Date;
@@ -3628,6 +3685,7 @@ export declare const channelContract: {
3628
3685
  accessToken?: string | undefined;
3629
3686
  channelSecret?: string | undefined;
3630
3687
  additionalCredentials?: any;
3688
+ lineRichMenuId?: string | null | undefined;
3631
3689
  };
3632
3690
  status: boolean;
3633
3691
  createdAt: Date;
@@ -3702,6 +3760,7 @@ export declare const channelContract: {
3702
3760
  accessToken?: string | undefined;
3703
3761
  channelSecret?: string | undefined;
3704
3762
  additionalCredentials?: any;
3763
+ lineRichMenuId?: string | null | undefined;
3705
3764
  };
3706
3765
  status: boolean;
3707
3766
  createdAt: Date;
@@ -3806,13 +3865,7 @@ export declare const channelContract: {
3806
3865
  }>>>;
3807
3866
  };
3808
3867
  disconnectBot: {
3809
- body: z.ZodObject<{
3810
- botId: z.ZodString;
3811
- }, "strip", z.ZodTypeAny, {
3812
- botId: string;
3813
- }, {
3814
- botId: string;
3815
- }>;
3868
+ body: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
3816
3869
  method: "POST";
3817
3870
  responses: {
3818
3871
  200: z.ZodObject<{
@@ -3830,18 +3883,21 @@ export declare const channelContract: {
3830
3883
  accessToken: z.ZodOptional<z.ZodString>;
3831
3884
  channelSecret: z.ZodOptional<z.ZodString>;
3832
3885
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3886
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3833
3887
  }, "strip", z.ZodTypeAny, {
3834
3888
  id: string;
3835
3889
  name: string;
3836
3890
  accessToken?: string | undefined;
3837
3891
  channelSecret?: string | undefined;
3838
3892
  additionalCredentials?: any;
3893
+ lineRichMenuId?: string | null | undefined;
3839
3894
  }, {
3840
3895
  id: string;
3841
3896
  name: string;
3842
3897
  accessToken?: string | undefined;
3843
3898
  channelSecret?: string | undefined;
3844
3899
  additionalCredentials?: any;
3900
+ lineRichMenuId?: string | null | undefined;
3845
3901
  }>;
3846
3902
  brandName: z.ZodString;
3847
3903
  platformId: z.ZodString;
@@ -4082,6 +4138,7 @@ export declare const channelContract: {
4082
4138
  accessToken?: string | undefined;
4083
4139
  channelSecret?: string | undefined;
4084
4140
  additionalCredentials?: any;
4141
+ lineRichMenuId?: string | null | undefined;
4085
4142
  };
4086
4143
  status: boolean;
4087
4144
  createdAt: Date;
@@ -4153,6 +4210,7 @@ export declare const channelContract: {
4153
4210
  accessToken?: string | undefined;
4154
4211
  channelSecret?: string | undefined;
4155
4212
  additionalCredentials?: any;
4213
+ lineRichMenuId?: string | null | undefined;
4156
4214
  };
4157
4215
  status: boolean;
4158
4216
  createdAt: Date;
@@ -4226,6 +4284,7 @@ export declare const channelContract: {
4226
4284
  accessToken?: string | undefined;
4227
4285
  channelSecret?: string | undefined;
4228
4286
  additionalCredentials?: any;
4287
+ lineRichMenuId?: string | null | undefined;
4229
4288
  };
4230
4289
  status: boolean;
4231
4290
  createdAt: Date;
@@ -4300,6 +4359,7 @@ export declare const channelContract: {
4300
4359
  accessToken?: string | undefined;
4301
4360
  channelSecret?: string | undefined;
4302
4361
  additionalCredentials?: any;
4362
+ lineRichMenuId?: string | null | undefined;
4303
4363
  };
4304
4364
  status: boolean;
4305
4365
  createdAt: Date;
@@ -4598,18 +4658,21 @@ export declare const channelContract: {
4598
4658
  accessToken: z.ZodOptional<z.ZodString>;
4599
4659
  channelSecret: z.ZodOptional<z.ZodString>;
4600
4660
  additionalCredentials: z.ZodOptional<z.ZodAny>;
4661
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4601
4662
  }, "strip", z.ZodTypeAny, {
4602
4663
  id: string;
4603
4664
  name: string;
4604
4665
  accessToken?: string | undefined;
4605
4666
  channelSecret?: string | undefined;
4606
4667
  additionalCredentials?: any;
4668
+ lineRichMenuId?: string | null | undefined;
4607
4669
  }, {
4608
4670
  id: string;
4609
4671
  name: string;
4610
4672
  accessToken?: string | undefined;
4611
4673
  channelSecret?: string | undefined;
4612
4674
  additionalCredentials?: any;
4675
+ lineRichMenuId?: string | null | undefined;
4613
4676
  }>;
4614
4677
  platformId: z.ZodString;
4615
4678
  connectedUserId: z.ZodString;
@@ -4623,6 +4686,7 @@ export declare const channelContract: {
4623
4686
  accessToken?: string | undefined;
4624
4687
  channelSecret?: string | undefined;
4625
4688
  additionalCredentials?: any;
4689
+ lineRichMenuId?: string | null | undefined;
4626
4690
  };
4627
4691
  platformId: string;
4628
4692
  connectedUserId: string;
@@ -4636,6 +4700,7 @@ export declare const channelContract: {
4636
4700
  accessToken?: string | undefined;
4637
4701
  channelSecret?: string | undefined;
4638
4702
  additionalCredentials?: any;
4703
+ lineRichMenuId?: string | null | undefined;
4639
4704
  };
4640
4705
  platformId: string;
4641
4706
  connectedUserId: string;
@@ -4659,18 +4724,21 @@ export declare const channelContract: {
4659
4724
  accessToken: z.ZodOptional<z.ZodString>;
4660
4725
  channelSecret: z.ZodOptional<z.ZodString>;
4661
4726
  additionalCredentials: z.ZodOptional<z.ZodAny>;
4727
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4662
4728
  }, "strip", z.ZodTypeAny, {
4663
4729
  id: string;
4664
4730
  name: string;
4665
4731
  accessToken?: string | undefined;
4666
4732
  channelSecret?: string | undefined;
4667
4733
  additionalCredentials?: any;
4734
+ lineRichMenuId?: string | null | undefined;
4668
4735
  }, {
4669
4736
  id: string;
4670
4737
  name: string;
4671
4738
  accessToken?: string | undefined;
4672
4739
  channelSecret?: string | undefined;
4673
4740
  additionalCredentials?: any;
4741
+ lineRichMenuId?: string | null | undefined;
4674
4742
  }>;
4675
4743
  brandName: z.ZodString;
4676
4744
  platformId: z.ZodString;
@@ -4911,6 +4979,7 @@ export declare const channelContract: {
4911
4979
  accessToken?: string | undefined;
4912
4980
  channelSecret?: string | undefined;
4913
4981
  additionalCredentials?: any;
4982
+ lineRichMenuId?: string | null | undefined;
4914
4983
  };
4915
4984
  status: boolean;
4916
4985
  createdAt: Date;
@@ -4982,6 +5051,7 @@ export declare const channelContract: {
4982
5051
  accessToken?: string | undefined;
4983
5052
  channelSecret?: string | undefined;
4984
5053
  additionalCredentials?: any;
5054
+ lineRichMenuId?: string | null | undefined;
4985
5055
  };
4986
5056
  status: boolean;
4987
5057
  createdAt: Date;
@@ -5055,6 +5125,7 @@ export declare const channelContract: {
5055
5125
  accessToken?: string | undefined;
5056
5126
  channelSecret?: string | undefined;
5057
5127
  additionalCredentials?: any;
5128
+ lineRichMenuId?: string | null | undefined;
5058
5129
  };
5059
5130
  status: boolean;
5060
5131
  createdAt: Date;
@@ -5129,6 +5200,7 @@ export declare const channelContract: {
5129
5200
  accessToken?: string | undefined;
5130
5201
  channelSecret?: string | undefined;
5131
5202
  additionalCredentials?: any;
5203
+ lineRichMenuId?: string | null | undefined;
5132
5204
  };
5133
5205
  status: boolean;
5134
5206
  createdAt: Date;
@@ -5483,18 +5555,21 @@ export declare const channelContract: {
5483
5555
  accessToken: z.ZodOptional<z.ZodString>;
5484
5556
  channelSecret: z.ZodOptional<z.ZodString>;
5485
5557
  additionalCredentials: z.ZodOptional<z.ZodAny>;
5558
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5486
5559
  }, "strip", z.ZodTypeAny, {
5487
5560
  id: string;
5488
5561
  name: string;
5489
5562
  accessToken?: string | undefined;
5490
5563
  channelSecret?: string | undefined;
5491
5564
  additionalCredentials?: any;
5565
+ lineRichMenuId?: string | null | undefined;
5492
5566
  }, {
5493
5567
  id: string;
5494
5568
  name: string;
5495
5569
  accessToken?: string | undefined;
5496
5570
  channelSecret?: string | undefined;
5497
5571
  additionalCredentials?: any;
5572
+ lineRichMenuId?: string | null | undefined;
5498
5573
  }>;
5499
5574
  platformId: z.ZodString;
5500
5575
  connectedUserId: z.ZodString;
@@ -5508,6 +5583,7 @@ export declare const channelContract: {
5508
5583
  accessToken?: string | undefined;
5509
5584
  channelSecret?: string | undefined;
5510
5585
  additionalCredentials?: any;
5586
+ lineRichMenuId?: string | null | undefined;
5511
5587
  };
5512
5588
  platformId: string;
5513
5589
  connectedUserId: string;
@@ -5521,6 +5597,7 @@ export declare const channelContract: {
5521
5597
  accessToken?: string | undefined;
5522
5598
  channelSecret?: string | undefined;
5523
5599
  additionalCredentials?: any;
5600
+ lineRichMenuId?: string | null | undefined;
5524
5601
  };
5525
5602
  platformId: string;
5526
5603
  connectedUserId: string;
@@ -5544,18 +5621,21 @@ export declare const channelContract: {
5544
5621
  accessToken: z.ZodOptional<z.ZodString>;
5545
5622
  channelSecret: z.ZodOptional<z.ZodString>;
5546
5623
  additionalCredentials: z.ZodOptional<z.ZodAny>;
5624
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5547
5625
  }, "strip", z.ZodTypeAny, {
5548
5626
  id: string;
5549
5627
  name: string;
5550
5628
  accessToken?: string | undefined;
5551
5629
  channelSecret?: string | undefined;
5552
5630
  additionalCredentials?: any;
5631
+ lineRichMenuId?: string | null | undefined;
5553
5632
  }, {
5554
5633
  id: string;
5555
5634
  name: string;
5556
5635
  accessToken?: string | undefined;
5557
5636
  channelSecret?: string | undefined;
5558
5637
  additionalCredentials?: any;
5638
+ lineRichMenuId?: string | null | undefined;
5559
5639
  }>;
5560
5640
  brandName: z.ZodString;
5561
5641
  platformId: z.ZodString;
@@ -5796,6 +5876,7 @@ export declare const channelContract: {
5796
5876
  accessToken?: string | undefined;
5797
5877
  channelSecret?: string | undefined;
5798
5878
  additionalCredentials?: any;
5879
+ lineRichMenuId?: string | null | undefined;
5799
5880
  };
5800
5881
  status: boolean;
5801
5882
  createdAt: Date;
@@ -5867,6 +5948,7 @@ export declare const channelContract: {
5867
5948
  accessToken?: string | undefined;
5868
5949
  channelSecret?: string | undefined;
5869
5950
  additionalCredentials?: any;
5951
+ lineRichMenuId?: string | null | undefined;
5870
5952
  };
5871
5953
  status: boolean;
5872
5954
  createdAt: Date;
@@ -5940,6 +6022,7 @@ export declare const channelContract: {
5940
6022
  accessToken?: string | undefined;
5941
6023
  channelSecret?: string | undefined;
5942
6024
  additionalCredentials?: any;
6025
+ lineRichMenuId?: string | null | undefined;
5943
6026
  };
5944
6027
  status: boolean;
5945
6028
  createdAt: Date;
@@ -6014,6 +6097,7 @@ export declare const channelContract: {
6014
6097
  accessToken?: string | undefined;
6015
6098
  channelSecret?: string | undefined;
6016
6099
  additionalCredentials?: any;
6100
+ lineRichMenuId?: string | null | undefined;
6017
6101
  };
6018
6102
  status: boolean;
6019
6103
  createdAt: Date;
@@ -6138,18 +6222,21 @@ export declare const channelContract: {
6138
6222
  accessToken: z.ZodOptional<z.ZodString>;
6139
6223
  channelSecret: z.ZodOptional<z.ZodString>;
6140
6224
  additionalCredentials: z.ZodOptional<z.ZodAny>;
6225
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
6141
6226
  }, "strip", z.ZodTypeAny, {
6142
6227
  id: string;
6143
6228
  name: string;
6144
6229
  accessToken?: string | undefined;
6145
6230
  channelSecret?: string | undefined;
6146
6231
  additionalCredentials?: any;
6232
+ lineRichMenuId?: string | null | undefined;
6147
6233
  }, {
6148
6234
  id: string;
6149
6235
  name: string;
6150
6236
  accessToken?: string | undefined;
6151
6237
  channelSecret?: string | undefined;
6152
6238
  additionalCredentials?: any;
6239
+ lineRichMenuId?: string | null | undefined;
6153
6240
  }>;
6154
6241
  brandName: z.ZodString;
6155
6242
  platformId: z.ZodString;
@@ -6390,6 +6477,7 @@ export declare const channelContract: {
6390
6477
  accessToken?: string | undefined;
6391
6478
  channelSecret?: string | undefined;
6392
6479
  additionalCredentials?: any;
6480
+ lineRichMenuId?: string | null | undefined;
6393
6481
  };
6394
6482
  status: boolean;
6395
6483
  createdAt: Date;
@@ -6461,6 +6549,7 @@ export declare const channelContract: {
6461
6549
  accessToken?: string | undefined;
6462
6550
  channelSecret?: string | undefined;
6463
6551
  additionalCredentials?: any;
6552
+ lineRichMenuId?: string | null | undefined;
6464
6553
  };
6465
6554
  status: boolean;
6466
6555
  createdAt: Date;
@@ -6534,6 +6623,7 @@ export declare const channelContract: {
6534
6623
  accessToken?: string | undefined;
6535
6624
  channelSecret?: string | undefined;
6536
6625
  additionalCredentials?: any;
6626
+ lineRichMenuId?: string | null | undefined;
6537
6627
  };
6538
6628
  status: boolean;
6539
6629
  createdAt: Date;
@@ -6608,6 +6698,7 @@ export declare const channelContract: {
6608
6698
  accessToken?: string | undefined;
6609
6699
  channelSecret?: string | undefined;
6610
6700
  additionalCredentials?: any;
6701
+ lineRichMenuId?: string | null | undefined;
6611
6702
  };
6612
6703
  status: boolean;
6613
6704
  createdAt: Date;
@@ -6792,18 +6883,21 @@ export declare const channelContract: {
6792
6883
  accessToken: z.ZodOptional<z.ZodString>;
6793
6884
  channelSecret: z.ZodOptional<z.ZodString>;
6794
6885
  additionalCredentials: z.ZodOptional<z.ZodAny>;
6886
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
6795
6887
  }, "strip", z.ZodTypeAny, {
6796
6888
  id: string;
6797
6889
  name: string;
6798
6890
  accessToken?: string | undefined;
6799
6891
  channelSecret?: string | undefined;
6800
6892
  additionalCredentials?: any;
6893
+ lineRichMenuId?: string | null | undefined;
6801
6894
  }, {
6802
6895
  id: string;
6803
6896
  name: string;
6804
6897
  accessToken?: string | undefined;
6805
6898
  channelSecret?: string | undefined;
6806
6899
  additionalCredentials?: any;
6900
+ lineRichMenuId?: string | null | undefined;
6807
6901
  }>;
6808
6902
  brandName: z.ZodString;
6809
6903
  platformId: z.ZodString;
@@ -7044,6 +7138,7 @@ export declare const channelContract: {
7044
7138
  accessToken?: string | undefined;
7045
7139
  channelSecret?: string | undefined;
7046
7140
  additionalCredentials?: any;
7141
+ lineRichMenuId?: string | null | undefined;
7047
7142
  };
7048
7143
  status: boolean;
7049
7144
  createdAt: Date;
@@ -7115,6 +7210,7 @@ export declare const channelContract: {
7115
7210
  accessToken?: string | undefined;
7116
7211
  channelSecret?: string | undefined;
7117
7212
  additionalCredentials?: any;
7213
+ lineRichMenuId?: string | null | undefined;
7118
7214
  };
7119
7215
  status: boolean;
7120
7216
  createdAt: Date;
@@ -7188,6 +7284,7 @@ export declare const channelContract: {
7188
7284
  accessToken?: string | undefined;
7189
7285
  channelSecret?: string | undefined;
7190
7286
  additionalCredentials?: any;
7287
+ lineRichMenuId?: string | null | undefined;
7191
7288
  };
7192
7289
  status: boolean;
7193
7290
  createdAt: Date;
@@ -7262,6 +7359,7 @@ export declare const channelContract: {
7262
7359
  accessToken?: string | undefined;
7263
7360
  channelSecret?: string | undefined;
7264
7361
  additionalCredentials?: any;
7362
+ lineRichMenuId?: string | null | undefined;
7265
7363
  };
7266
7364
  status: boolean;
7267
7365
  createdAt: Date;