@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
@@ -2377,18 +2377,21 @@ export declare const apiContract: {
2377
2377
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
2378
2378
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
2379
2379
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
2380
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
2380
2381
  }, "strip", import("zod").ZodTypeAny, {
2381
2382
  id: string;
2382
2383
  name: string;
2383
2384
  accessToken?: string | undefined;
2384
2385
  channelSecret?: string | undefined;
2385
2386
  additionalCredentials?: any;
2387
+ lineRichMenuId?: string | null | undefined;
2386
2388
  }, {
2387
2389
  id: string;
2388
2390
  name: string;
2389
2391
  accessToken?: string | undefined;
2390
2392
  channelSecret?: string | undefined;
2391
2393
  additionalCredentials?: any;
2394
+ lineRichMenuId?: string | null | undefined;
2392
2395
  }>;
2393
2396
  brandName: import("zod").ZodString;
2394
2397
  platformId: import("zod").ZodString;
@@ -2629,6 +2632,7 @@ export declare const apiContract: {
2629
2632
  accessToken?: string | undefined;
2630
2633
  channelSecret?: string | undefined;
2631
2634
  additionalCredentials?: any;
2635
+ lineRichMenuId?: string | null | undefined;
2632
2636
  };
2633
2637
  status: boolean;
2634
2638
  createdAt: Date;
@@ -2700,6 +2704,7 @@ export declare const apiContract: {
2700
2704
  accessToken?: string | undefined;
2701
2705
  channelSecret?: string | undefined;
2702
2706
  additionalCredentials?: any;
2707
+ lineRichMenuId?: string | null | undefined;
2703
2708
  };
2704
2709
  status: boolean;
2705
2710
  createdAt: Date;
@@ -2774,6 +2779,7 @@ export declare const apiContract: {
2774
2779
  accessToken?: string | undefined;
2775
2780
  channelSecret?: string | undefined;
2776
2781
  additionalCredentials?: any;
2782
+ lineRichMenuId?: string | null | undefined;
2777
2783
  };
2778
2784
  status: boolean;
2779
2785
  createdAt: Date;
@@ -3059,6 +3065,7 @@ export declare const apiContract: {
3059
3065
  accessToken?: string | undefined;
3060
3066
  channelSecret?: string | undefined;
3061
3067
  additionalCredentials?: any;
3068
+ lineRichMenuId?: string | null | undefined;
3062
3069
  };
3063
3070
  status: boolean;
3064
3071
  createdAt: Date;
@@ -6554,6 +6561,7 @@ export declare const apiContract: {
6554
6561
  accessToken?: string | undefined;
6555
6562
  channelSecret?: string | undefined;
6556
6563
  additionalCredentials?: any;
6564
+ lineRichMenuId?: string | null | undefined;
6557
6565
  };
6558
6566
  status: boolean;
6559
6567
  createdAt: Date;
@@ -7322,6 +7330,7 @@ export declare const apiContract: {
7322
7330
  accessToken?: string | undefined;
7323
7331
  channelSecret?: string | undefined;
7324
7332
  additionalCredentials?: any;
7333
+ lineRichMenuId?: string | null | undefined;
7325
7334
  };
7326
7335
  status: boolean;
7327
7336
  createdAt: Date;
@@ -8096,6 +8105,7 @@ export declare const apiContract: {
8096
8105
  accessToken?: string | undefined;
8097
8106
  channelSecret?: string | undefined;
8098
8107
  additionalCredentials?: any;
8108
+ lineRichMenuId?: string | null | undefined;
8099
8109
  };
8100
8110
  status: boolean;
8101
8111
  createdAt: Date;
@@ -8870,6 +8880,7 @@ export declare const apiContract: {
8870
8880
  accessToken?: string | undefined;
8871
8881
  channelSecret?: string | undefined;
8872
8882
  additionalCredentials?: any;
8883
+ lineRichMenuId?: string | null | undefined;
8873
8884
  };
8874
8885
  status: boolean;
8875
8886
  createdAt: Date;
@@ -9889,163 +9900,163 @@ export declare const apiContract: {
9889
9900
  requestId: import("zod").ZodString;
9890
9901
  queuecallDashboard: import("zod").ZodObject<{
9891
9902
  totalTelephonyQueueCallCountList: import("zod").ZodObject<{
9892
- totalQueueCall: import("zod").ZodString;
9893
- totalMissedQueueCall: import("zod").ZodString;
9894
- totalAnsweredQueueCall: import("zod").ZodString;
9895
- totalAbandonedQueueCall: import("zod").ZodString;
9896
- totalAverageRingDuration: import("zod").ZodString;
9897
- totalAverageTalkDuration: import("zod").ZodString;
9898
- totalAverageCallDuration: import("zod").ZodString;
9899
- totalSla: import("zod").ZodString;
9903
+ totalQueueCall: import("zod").ZodNumber;
9904
+ totalMissedQueueCall: import("zod").ZodNumber;
9905
+ totalAnsweredQueueCall: import("zod").ZodNumber;
9906
+ totalAbandonedQueueCall: import("zod").ZodNumber;
9907
+ totalAverageRingDuration: import("zod").ZodNumber;
9908
+ totalAverageTalkDuration: import("zod").ZodNumber;
9909
+ totalAverageCallDuration: import("zod").ZodNumber;
9910
+ totalSla: import("zod").ZodNumber;
9900
9911
  totalMissedCallPercent: import("zod").ZodString;
9901
- totalMaximumRingDuration: import("zod").ZodString;
9912
+ totalMaximumRingDuration: import("zod").ZodNumber;
9902
9913
  }, "strip", import("zod").ZodTypeAny, {
9903
- totalQueueCall: string;
9904
- totalMissedQueueCall: string;
9905
- totalAnsweredQueueCall: string;
9906
- totalAbandonedQueueCall: string;
9907
- totalAverageRingDuration: string;
9908
- totalAverageTalkDuration: string;
9909
- totalAverageCallDuration: string;
9910
- totalSla: string;
9914
+ totalQueueCall: number;
9915
+ totalMissedQueueCall: number;
9916
+ totalAnsweredQueueCall: number;
9917
+ totalAbandonedQueueCall: number;
9918
+ totalAverageRingDuration: number;
9919
+ totalAverageTalkDuration: number;
9920
+ totalAverageCallDuration: number;
9921
+ totalSla: number;
9911
9922
  totalMissedCallPercent: string;
9912
- totalMaximumRingDuration: string;
9923
+ totalMaximumRingDuration: number;
9913
9924
  }, {
9914
- totalQueueCall: string;
9915
- totalMissedQueueCall: string;
9916
- totalAnsweredQueueCall: string;
9917
- totalAbandonedQueueCall: string;
9918
- totalAverageRingDuration: string;
9919
- totalAverageTalkDuration: string;
9920
- totalAverageCallDuration: string;
9921
- totalSla: string;
9925
+ totalQueueCall: number;
9926
+ totalMissedQueueCall: number;
9927
+ totalAnsweredQueueCall: number;
9928
+ totalAbandonedQueueCall: number;
9929
+ totalAverageRingDuration: number;
9930
+ totalAverageTalkDuration: number;
9931
+ totalAverageCallDuration: number;
9932
+ totalSla: number;
9922
9933
  totalMissedCallPercent: string;
9923
- totalMaximumRingDuration: string;
9934
+ totalMaximumRingDuration: number;
9924
9935
  }>;
9925
9936
  telephonyQueueCallCountListByQueueNumber: import("zod").ZodArray<import("zod").ZodObject<{
9926
9937
  queueNumber: import("zod").ZodString;
9927
9938
  queueName: import("zod").ZodString;
9928
9939
  yeastarQueueCallCountList: import("zod").ZodObject<{
9929
- totalQueueCall: import("zod").ZodString;
9930
- totalMissedQueueCall: import("zod").ZodString;
9931
- totalAnsweredQueueCall: import("zod").ZodString;
9932
- totalAbandonedQueueCall: import("zod").ZodString;
9933
- totalAverageTalkDuration: import("zod").ZodString;
9934
- totalAverageCallDuration: import("zod").ZodString;
9935
- totalAverageRingDuration: import("zod").ZodString;
9936
- totalSla: import("zod").ZodString;
9940
+ totalQueueCall: import("zod").ZodNumber;
9941
+ totalMissedQueueCall: import("zod").ZodNumber;
9942
+ totalAnsweredQueueCall: import("zod").ZodNumber;
9943
+ totalAbandonedQueueCall: import("zod").ZodNumber;
9944
+ totalAverageTalkDuration: import("zod").ZodNumber;
9945
+ totalAverageCallDuration: import("zod").ZodNumber;
9946
+ totalAverageRingDuration: import("zod").ZodNumber;
9947
+ totalSla: import("zod").ZodNumber;
9937
9948
  totalMissedCallPercent: import("zod").ZodString;
9938
- totalMaximumRingDuration: import("zod").ZodString;
9949
+ totalMaximumRingDuration: import("zod").ZodNumber;
9939
9950
  }, "strip", import("zod").ZodTypeAny, {
9940
- totalQueueCall: string;
9941
- totalMissedQueueCall: string;
9942
- totalAnsweredQueueCall: string;
9943
- totalAbandonedQueueCall: string;
9944
- totalAverageRingDuration: string;
9945
- totalAverageTalkDuration: string;
9946
- totalAverageCallDuration: string;
9947
- totalSla: string;
9951
+ totalQueueCall: number;
9952
+ totalMissedQueueCall: number;
9953
+ totalAnsweredQueueCall: number;
9954
+ totalAbandonedQueueCall: number;
9955
+ totalAverageRingDuration: number;
9956
+ totalAverageTalkDuration: number;
9957
+ totalAverageCallDuration: number;
9958
+ totalSla: number;
9948
9959
  totalMissedCallPercent: string;
9949
- totalMaximumRingDuration: string;
9960
+ totalMaximumRingDuration: number;
9950
9961
  }, {
9951
- totalQueueCall: string;
9952
- totalMissedQueueCall: string;
9953
- totalAnsweredQueueCall: string;
9954
- totalAbandonedQueueCall: string;
9955
- totalAverageRingDuration: string;
9956
- totalAverageTalkDuration: string;
9957
- totalAverageCallDuration: string;
9958
- totalSla: string;
9962
+ totalQueueCall: number;
9963
+ totalMissedQueueCall: number;
9964
+ totalAnsweredQueueCall: number;
9965
+ totalAbandonedQueueCall: number;
9966
+ totalAverageRingDuration: number;
9967
+ totalAverageTalkDuration: number;
9968
+ totalAverageCallDuration: number;
9969
+ totalSla: number;
9959
9970
  totalMissedCallPercent: string;
9960
- totalMaximumRingDuration: string;
9971
+ totalMaximumRingDuration: number;
9961
9972
  }>;
9962
9973
  }, "strip", import("zod").ZodTypeAny, {
9963
9974
  queueName: string;
9964
9975
  queueNumber: string;
9965
9976
  yeastarQueueCallCountList: {
9966
- totalQueueCall: string;
9967
- totalMissedQueueCall: string;
9968
- totalAnsweredQueueCall: string;
9969
- totalAbandonedQueueCall: string;
9970
- totalAverageRingDuration: string;
9971
- totalAverageTalkDuration: string;
9972
- totalAverageCallDuration: string;
9973
- totalSla: string;
9977
+ totalQueueCall: number;
9978
+ totalMissedQueueCall: number;
9979
+ totalAnsweredQueueCall: number;
9980
+ totalAbandonedQueueCall: number;
9981
+ totalAverageRingDuration: number;
9982
+ totalAverageTalkDuration: number;
9983
+ totalAverageCallDuration: number;
9984
+ totalSla: number;
9974
9985
  totalMissedCallPercent: string;
9975
- totalMaximumRingDuration: string;
9986
+ totalMaximumRingDuration: number;
9976
9987
  };
9977
9988
  }, {
9978
9989
  queueName: string;
9979
9990
  queueNumber: string;
9980
9991
  yeastarQueueCallCountList: {
9981
- totalQueueCall: string;
9982
- totalMissedQueueCall: string;
9983
- totalAnsweredQueueCall: string;
9984
- totalAbandonedQueueCall: string;
9985
- totalAverageRingDuration: string;
9986
- totalAverageTalkDuration: string;
9987
- totalAverageCallDuration: string;
9988
- totalSla: string;
9992
+ totalQueueCall: number;
9993
+ totalMissedQueueCall: number;
9994
+ totalAnsweredQueueCall: number;
9995
+ totalAbandonedQueueCall: number;
9996
+ totalAverageRingDuration: number;
9997
+ totalAverageTalkDuration: number;
9998
+ totalAverageCallDuration: number;
9999
+ totalSla: number;
9989
10000
  totalMissedCallPercent: string;
9990
- totalMaximumRingDuration: string;
10001
+ totalMaximumRingDuration: number;
9991
10002
  };
9992
10003
  }>, "many">;
9993
10004
  }, "strip", import("zod").ZodTypeAny, {
9994
10005
  totalTelephonyQueueCallCountList: {
9995
- totalQueueCall: string;
9996
- totalMissedQueueCall: string;
9997
- totalAnsweredQueueCall: string;
9998
- totalAbandonedQueueCall: string;
9999
- totalAverageRingDuration: string;
10000
- totalAverageTalkDuration: string;
10001
- totalAverageCallDuration: string;
10002
- totalSla: string;
10006
+ totalQueueCall: number;
10007
+ totalMissedQueueCall: number;
10008
+ totalAnsweredQueueCall: number;
10009
+ totalAbandonedQueueCall: number;
10010
+ totalAverageRingDuration: number;
10011
+ totalAverageTalkDuration: number;
10012
+ totalAverageCallDuration: number;
10013
+ totalSla: number;
10003
10014
  totalMissedCallPercent: string;
10004
- totalMaximumRingDuration: string;
10015
+ totalMaximumRingDuration: number;
10005
10016
  };
10006
10017
  telephonyQueueCallCountListByQueueNumber: {
10007
10018
  queueName: string;
10008
10019
  queueNumber: string;
10009
10020
  yeastarQueueCallCountList: {
10010
- totalQueueCall: string;
10011
- totalMissedQueueCall: string;
10012
- totalAnsweredQueueCall: string;
10013
- totalAbandonedQueueCall: string;
10014
- totalAverageRingDuration: string;
10015
- totalAverageTalkDuration: string;
10016
- totalAverageCallDuration: string;
10017
- totalSla: string;
10021
+ totalQueueCall: number;
10022
+ totalMissedQueueCall: number;
10023
+ totalAnsweredQueueCall: number;
10024
+ totalAbandonedQueueCall: number;
10025
+ totalAverageRingDuration: number;
10026
+ totalAverageTalkDuration: number;
10027
+ totalAverageCallDuration: number;
10028
+ totalSla: number;
10018
10029
  totalMissedCallPercent: string;
10019
- totalMaximumRingDuration: string;
10030
+ totalMaximumRingDuration: number;
10020
10031
  };
10021
10032
  }[];
10022
10033
  }, {
10023
10034
  totalTelephonyQueueCallCountList: {
10024
- totalQueueCall: string;
10025
- totalMissedQueueCall: string;
10026
- totalAnsweredQueueCall: string;
10027
- totalAbandonedQueueCall: string;
10028
- totalAverageRingDuration: string;
10029
- totalAverageTalkDuration: string;
10030
- totalAverageCallDuration: string;
10031
- totalSla: string;
10035
+ totalQueueCall: number;
10036
+ totalMissedQueueCall: number;
10037
+ totalAnsweredQueueCall: number;
10038
+ totalAbandonedQueueCall: number;
10039
+ totalAverageRingDuration: number;
10040
+ totalAverageTalkDuration: number;
10041
+ totalAverageCallDuration: number;
10042
+ totalSla: number;
10032
10043
  totalMissedCallPercent: string;
10033
- totalMaximumRingDuration: string;
10044
+ totalMaximumRingDuration: number;
10034
10045
  };
10035
10046
  telephonyQueueCallCountListByQueueNumber: {
10036
10047
  queueName: string;
10037
10048
  queueNumber: string;
10038
10049
  yeastarQueueCallCountList: {
10039
- totalQueueCall: string;
10040
- totalMissedQueueCall: string;
10041
- totalAnsweredQueueCall: string;
10042
- totalAbandonedQueueCall: string;
10043
- totalAverageRingDuration: string;
10044
- totalAverageTalkDuration: string;
10045
- totalAverageCallDuration: string;
10046
- totalSla: string;
10050
+ totalQueueCall: number;
10051
+ totalMissedQueueCall: number;
10052
+ totalAnsweredQueueCall: number;
10053
+ totalAbandonedQueueCall: number;
10054
+ totalAverageRingDuration: number;
10055
+ totalAverageTalkDuration: number;
10056
+ totalAverageCallDuration: number;
10057
+ totalSla: number;
10047
10058
  totalMissedCallPercent: string;
10048
- totalMaximumRingDuration: string;
10059
+ totalMaximumRingDuration: number;
10049
10060
  };
10050
10061
  }[];
10051
10062
  }>;
@@ -10053,31 +10064,31 @@ export declare const apiContract: {
10053
10064
  requestId: string;
10054
10065
  queuecallDashboard: {
10055
10066
  totalTelephonyQueueCallCountList: {
10056
- totalQueueCall: string;
10057
- totalMissedQueueCall: string;
10058
- totalAnsweredQueueCall: string;
10059
- totalAbandonedQueueCall: string;
10060
- totalAverageRingDuration: string;
10061
- totalAverageTalkDuration: string;
10062
- totalAverageCallDuration: string;
10063
- totalSla: string;
10067
+ totalQueueCall: number;
10068
+ totalMissedQueueCall: number;
10069
+ totalAnsweredQueueCall: number;
10070
+ totalAbandonedQueueCall: number;
10071
+ totalAverageRingDuration: number;
10072
+ totalAverageTalkDuration: number;
10073
+ totalAverageCallDuration: number;
10074
+ totalSla: number;
10064
10075
  totalMissedCallPercent: string;
10065
- totalMaximumRingDuration: string;
10076
+ totalMaximumRingDuration: number;
10066
10077
  };
10067
10078
  telephonyQueueCallCountListByQueueNumber: {
10068
10079
  queueName: string;
10069
10080
  queueNumber: string;
10070
10081
  yeastarQueueCallCountList: {
10071
- totalQueueCall: string;
10072
- totalMissedQueueCall: string;
10073
- totalAnsweredQueueCall: string;
10074
- totalAbandonedQueueCall: string;
10075
- totalAverageRingDuration: string;
10076
- totalAverageTalkDuration: string;
10077
- totalAverageCallDuration: string;
10078
- totalSla: string;
10082
+ totalQueueCall: number;
10083
+ totalMissedQueueCall: number;
10084
+ totalAnsweredQueueCall: number;
10085
+ totalAbandonedQueueCall: number;
10086
+ totalAverageRingDuration: number;
10087
+ totalAverageTalkDuration: number;
10088
+ totalAverageCallDuration: number;
10089
+ totalSla: number;
10079
10090
  totalMissedCallPercent: string;
10080
- totalMaximumRingDuration: string;
10091
+ totalMaximumRingDuration: number;
10081
10092
  };
10082
10093
  }[];
10083
10094
  };
@@ -10085,31 +10096,31 @@ export declare const apiContract: {
10085
10096
  requestId: string;
10086
10097
  queuecallDashboard: {
10087
10098
  totalTelephonyQueueCallCountList: {
10088
- totalQueueCall: string;
10089
- totalMissedQueueCall: string;
10090
- totalAnsweredQueueCall: string;
10091
- totalAbandonedQueueCall: string;
10092
- totalAverageRingDuration: string;
10093
- totalAverageTalkDuration: string;
10094
- totalAverageCallDuration: string;
10095
- totalSla: string;
10099
+ totalQueueCall: number;
10100
+ totalMissedQueueCall: number;
10101
+ totalAnsweredQueueCall: number;
10102
+ totalAbandonedQueueCall: number;
10103
+ totalAverageRingDuration: number;
10104
+ totalAverageTalkDuration: number;
10105
+ totalAverageCallDuration: number;
10106
+ totalSla: number;
10096
10107
  totalMissedCallPercent: string;
10097
- totalMaximumRingDuration: string;
10108
+ totalMaximumRingDuration: number;
10098
10109
  };
10099
10110
  telephonyQueueCallCountListByQueueNumber: {
10100
10111
  queueName: string;
10101
10112
  queueNumber: string;
10102
10113
  yeastarQueueCallCountList: {
10103
- totalQueueCall: string;
10104
- totalMissedQueueCall: string;
10105
- totalAnsweredQueueCall: string;
10106
- totalAbandonedQueueCall: string;
10107
- totalAverageRingDuration: string;
10108
- totalAverageTalkDuration: string;
10109
- totalAverageCallDuration: string;
10110
- totalSla: string;
10114
+ totalQueueCall: number;
10115
+ totalMissedQueueCall: number;
10116
+ totalAnsweredQueueCall: number;
10117
+ totalAbandonedQueueCall: number;
10118
+ totalAverageRingDuration: number;
10119
+ totalAverageTalkDuration: number;
10120
+ totalAverageCallDuration: number;
10121
+ totalSla: number;
10111
10122
  totalMissedCallPercent: string;
10112
- totalMaximumRingDuration: string;
10123
+ totalMaximumRingDuration: number;
10113
10124
  };
10114
10125
  }[];
10115
10126
  };
@@ -10714,7 +10725,16 @@ export declare const apiContract: {
10714
10725
  getMessageChannelData: {
10715
10726
  summary: "Get message channel data";
10716
10727
  method: "GET";
10717
- query: null;
10728
+ query: import("zod").ZodObject<{
10729
+ selectedDate: import("zod").ZodString;
10730
+ time: import("zod").ZodEnum<["byDay", "byMonth"]>;
10731
+ }, "strip", import("zod").ZodTypeAny, {
10732
+ time: "byDay" | "byMonth";
10733
+ selectedDate: string;
10734
+ }, {
10735
+ time: "byDay" | "byMonth";
10736
+ selectedDate: string;
10737
+ }>;
10718
10738
  responses: {
10719
10739
  200: import("zod").ZodObject<{
10720
10740
  requestId: import("zod").ZodString;
@@ -19369,18 +19389,21 @@ export declare const apiContract: {
19369
19389
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
19370
19390
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
19371
19391
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
19392
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
19372
19393
  }, "strip", import("zod").ZodTypeAny, {
19373
19394
  id: string;
19374
19395
  name: string;
19375
19396
  accessToken?: string | undefined;
19376
19397
  channelSecret?: string | undefined;
19377
19398
  additionalCredentials?: any;
19399
+ lineRichMenuId?: string | null | undefined;
19378
19400
  }, {
19379
19401
  id: string;
19380
19402
  name: string;
19381
19403
  accessToken?: string | undefined;
19382
19404
  channelSecret?: string | undefined;
19383
19405
  additionalCredentials?: any;
19406
+ lineRichMenuId?: string | null | undefined;
19384
19407
  }>;
19385
19408
  brandName: import("zod").ZodString;
19386
19409
  platformId: import("zod").ZodString;
@@ -19621,6 +19644,7 @@ export declare const apiContract: {
19621
19644
  accessToken?: string | undefined;
19622
19645
  channelSecret?: string | undefined;
19623
19646
  additionalCredentials?: any;
19647
+ lineRichMenuId?: string | null | undefined;
19624
19648
  };
19625
19649
  status: boolean;
19626
19650
  createdAt: Date;
@@ -19692,6 +19716,7 @@ export declare const apiContract: {
19692
19716
  accessToken?: string | undefined;
19693
19717
  channelSecret?: string | undefined;
19694
19718
  additionalCredentials?: any;
19719
+ lineRichMenuId?: string | null | undefined;
19695
19720
  };
19696
19721
  status: boolean;
19697
19722
  createdAt: Date;
@@ -19765,6 +19790,7 @@ export declare const apiContract: {
19765
19790
  accessToken?: string | undefined;
19766
19791
  channelSecret?: string | undefined;
19767
19792
  additionalCredentials?: any;
19793
+ lineRichMenuId?: string | null | undefined;
19768
19794
  };
19769
19795
  status: boolean;
19770
19796
  createdAt: Date;
@@ -19839,6 +19865,7 @@ export declare const apiContract: {
19839
19865
  accessToken?: string | undefined;
19840
19866
  channelSecret?: string | undefined;
19841
19867
  additionalCredentials?: any;
19868
+ lineRichMenuId?: string | null | undefined;
19842
19869
  };
19843
19870
  status: boolean;
19844
19871
  createdAt: Date;
@@ -19945,18 +19972,21 @@ export declare const apiContract: {
19945
19972
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
19946
19973
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
19947
19974
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
19975
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
19948
19976
  }, "strip", import("zod").ZodTypeAny, {
19949
19977
  id: string;
19950
19978
  name: string;
19951
19979
  accessToken?: string | undefined;
19952
19980
  channelSecret?: string | undefined;
19953
19981
  additionalCredentials?: any;
19982
+ lineRichMenuId?: string | null | undefined;
19954
19983
  }, {
19955
19984
  id: string;
19956
19985
  name: string;
19957
19986
  accessToken?: string | undefined;
19958
19987
  channelSecret?: string | undefined;
19959
19988
  additionalCredentials?: any;
19989
+ lineRichMenuId?: string | null | undefined;
19960
19990
  }>;
19961
19991
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
19962
19992
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -19978,6 +20008,7 @@ export declare const apiContract: {
19978
20008
  email: string;
19979
20009
  phone: string | null;
19980
20010
  }>>;
20011
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
19981
20012
  brandName: import("zod").ZodString;
19982
20013
  platformId: import("zod").ZodString;
19983
20014
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
@@ -19997,6 +20028,7 @@ export declare const apiContract: {
19997
20028
  accessToken?: string | undefined;
19998
20029
  channelSecret?: string | undefined;
19999
20030
  additionalCredentials?: any;
20031
+ lineRichMenuId?: string | null | undefined;
20000
20032
  };
20001
20033
  status: boolean;
20002
20034
  createdAt: string;
@@ -20012,6 +20044,7 @@ export declare const apiContract: {
20012
20044
  email: string;
20013
20045
  phone: string | null;
20014
20046
  } | undefined;
20047
+ lineRichMenuId?: string | null | undefined;
20015
20048
  connectedUserName?: string | null | undefined;
20016
20049
  connectedUserId?: string | null | undefined;
20017
20050
  }, {
@@ -20024,6 +20057,7 @@ export declare const apiContract: {
20024
20057
  accessToken?: string | undefined;
20025
20058
  channelSecret?: string | undefined;
20026
20059
  additionalCredentials?: any;
20060
+ lineRichMenuId?: string | null | undefined;
20027
20061
  };
20028
20062
  status: boolean;
20029
20063
  createdAt: string;
@@ -20039,6 +20073,7 @@ export declare const apiContract: {
20039
20073
  email: string;
20040
20074
  phone: string | null;
20041
20075
  } | undefined;
20076
+ lineRichMenuId?: string | null | undefined;
20042
20077
  connectedUserName?: string | null | undefined;
20043
20078
  connectedUserId?: string | null | undefined;
20044
20079
  }>;
@@ -20053,6 +20088,7 @@ export declare const apiContract: {
20053
20088
  accessToken?: string | undefined;
20054
20089
  channelSecret?: string | undefined;
20055
20090
  additionalCredentials?: any;
20091
+ lineRichMenuId?: string | null | undefined;
20056
20092
  };
20057
20093
  status: boolean;
20058
20094
  createdAt: string;
@@ -20068,6 +20104,7 @@ export declare const apiContract: {
20068
20104
  email: string;
20069
20105
  phone: string | null;
20070
20106
  } | undefined;
20107
+ lineRichMenuId?: string | null | undefined;
20071
20108
  connectedUserName?: string | null | undefined;
20072
20109
  connectedUserId?: string | null | undefined;
20073
20110
  };
@@ -20083,6 +20120,7 @@ export declare const apiContract: {
20083
20120
  accessToken?: string | undefined;
20084
20121
  channelSecret?: string | undefined;
20085
20122
  additionalCredentials?: any;
20123
+ lineRichMenuId?: string | null | undefined;
20086
20124
  };
20087
20125
  status: boolean;
20088
20126
  createdAt: string;
@@ -20098,6 +20136,7 @@ export declare const apiContract: {
20098
20136
  email: string;
20099
20137
  phone: string | null;
20100
20138
  } | undefined;
20139
+ lineRichMenuId?: string | null | undefined;
20101
20140
  connectedUserName?: string | null | undefined;
20102
20141
  connectedUserId?: string | null | undefined;
20103
20142
  };
@@ -20159,18 +20198,21 @@ export declare const apiContract: {
20159
20198
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
20160
20199
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
20161
20200
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
20201
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
20162
20202
  }, "strip", import("zod").ZodTypeAny, {
20163
20203
  id: string;
20164
20204
  name: string;
20165
20205
  accessToken?: string | undefined;
20166
20206
  channelSecret?: string | undefined;
20167
20207
  additionalCredentials?: any;
20208
+ lineRichMenuId?: string | null | undefined;
20168
20209
  }, {
20169
20210
  id: string;
20170
20211
  name: string;
20171
20212
  accessToken?: string | undefined;
20172
20213
  channelSecret?: string | undefined;
20173
20214
  additionalCredentials?: any;
20215
+ lineRichMenuId?: string | null | undefined;
20174
20216
  }>;
20175
20217
  brandName: import("zod").ZodString;
20176
20218
  platformId: import("zod").ZodString;
@@ -20411,6 +20453,7 @@ export declare const apiContract: {
20411
20453
  accessToken?: string | undefined;
20412
20454
  channelSecret?: string | undefined;
20413
20455
  additionalCredentials?: any;
20456
+ lineRichMenuId?: string | null | undefined;
20414
20457
  };
20415
20458
  status: boolean;
20416
20459
  createdAt: Date;
@@ -20482,6 +20525,7 @@ export declare const apiContract: {
20482
20525
  accessToken?: string | undefined;
20483
20526
  channelSecret?: string | undefined;
20484
20527
  additionalCredentials?: any;
20528
+ lineRichMenuId?: string | null | undefined;
20485
20529
  };
20486
20530
  status: boolean;
20487
20531
  createdAt: Date;
@@ -20555,6 +20599,7 @@ export declare const apiContract: {
20555
20599
  accessToken?: string | undefined;
20556
20600
  channelSecret?: string | undefined;
20557
20601
  additionalCredentials?: any;
20602
+ lineRichMenuId?: string | null | undefined;
20558
20603
  };
20559
20604
  status: boolean;
20560
20605
  createdAt: Date;
@@ -20629,6 +20674,7 @@ export declare const apiContract: {
20629
20674
  accessToken?: string | undefined;
20630
20675
  channelSecret?: string | undefined;
20631
20676
  additionalCredentials?: any;
20677
+ lineRichMenuId?: string | null | undefined;
20632
20678
  };
20633
20679
  status: boolean;
20634
20680
  createdAt: Date;
@@ -20755,18 +20801,21 @@ export declare const apiContract: {
20755
20801
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
20756
20802
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
20757
20803
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
20804
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
20758
20805
  }, "strip", import("zod").ZodTypeAny, {
20759
20806
  id: string;
20760
20807
  name: string;
20761
20808
  accessToken?: string | undefined;
20762
20809
  channelSecret?: string | undefined;
20763
20810
  additionalCredentials?: any;
20811
+ lineRichMenuId?: string | null | undefined;
20764
20812
  }, {
20765
20813
  id: string;
20766
20814
  name: string;
20767
20815
  accessToken?: string | undefined;
20768
20816
  channelSecret?: string | undefined;
20769
20817
  additionalCredentials?: any;
20818
+ lineRichMenuId?: string | null | undefined;
20770
20819
  }>;
20771
20820
  brandName: import("zod").ZodString;
20772
20821
  platformId: import("zod").ZodString;
@@ -21007,6 +21056,7 @@ export declare const apiContract: {
21007
21056
  accessToken?: string | undefined;
21008
21057
  channelSecret?: string | undefined;
21009
21058
  additionalCredentials?: any;
21059
+ lineRichMenuId?: string | null | undefined;
21010
21060
  };
21011
21061
  status: boolean;
21012
21062
  createdAt: Date;
@@ -21078,6 +21128,7 @@ export declare const apiContract: {
21078
21128
  accessToken?: string | undefined;
21079
21129
  channelSecret?: string | undefined;
21080
21130
  additionalCredentials?: any;
21131
+ lineRichMenuId?: string | null | undefined;
21081
21132
  };
21082
21133
  status: boolean;
21083
21134
  createdAt: Date;
@@ -21151,6 +21202,7 @@ export declare const apiContract: {
21151
21202
  accessToken?: string | undefined;
21152
21203
  channelSecret?: string | undefined;
21153
21204
  additionalCredentials?: any;
21205
+ lineRichMenuId?: string | null | undefined;
21154
21206
  };
21155
21207
  status: boolean;
21156
21208
  createdAt: Date;
@@ -21225,6 +21277,7 @@ export declare const apiContract: {
21225
21277
  accessToken?: string | undefined;
21226
21278
  channelSecret?: string | undefined;
21227
21279
  additionalCredentials?: any;
21280
+ lineRichMenuId?: string | null | undefined;
21228
21281
  };
21229
21282
  status: boolean;
21230
21283
  createdAt: Date;
@@ -21345,18 +21398,21 @@ export declare const apiContract: {
21345
21398
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
21346
21399
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
21347
21400
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
21401
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
21348
21402
  }, "strip", import("zod").ZodTypeAny, {
21349
21403
  id: string;
21350
21404
  name: string;
21351
21405
  accessToken?: string | undefined;
21352
21406
  channelSecret?: string | undefined;
21353
21407
  additionalCredentials?: any;
21408
+ lineRichMenuId?: string | null | undefined;
21354
21409
  }, {
21355
21410
  id: string;
21356
21411
  name: string;
21357
21412
  accessToken?: string | undefined;
21358
21413
  channelSecret?: string | undefined;
21359
21414
  additionalCredentials?: any;
21415
+ lineRichMenuId?: string | null | undefined;
21360
21416
  }>;
21361
21417
  brandName: import("zod").ZodString;
21362
21418
  platformId: import("zod").ZodString;
@@ -21597,6 +21653,7 @@ export declare const apiContract: {
21597
21653
  accessToken?: string | undefined;
21598
21654
  channelSecret?: string | undefined;
21599
21655
  additionalCredentials?: any;
21656
+ lineRichMenuId?: string | null | undefined;
21600
21657
  };
21601
21658
  status: boolean;
21602
21659
  createdAt: Date;
@@ -21668,6 +21725,7 @@ export declare const apiContract: {
21668
21725
  accessToken?: string | undefined;
21669
21726
  channelSecret?: string | undefined;
21670
21727
  additionalCredentials?: any;
21728
+ lineRichMenuId?: string | null | undefined;
21671
21729
  };
21672
21730
  status: boolean;
21673
21731
  createdAt: Date;
@@ -21741,6 +21799,7 @@ export declare const apiContract: {
21741
21799
  accessToken?: string | undefined;
21742
21800
  channelSecret?: string | undefined;
21743
21801
  additionalCredentials?: any;
21802
+ lineRichMenuId?: string | null | undefined;
21744
21803
  };
21745
21804
  status: boolean;
21746
21805
  createdAt: Date;
@@ -21815,6 +21874,7 @@ export declare const apiContract: {
21815
21874
  accessToken?: string | undefined;
21816
21875
  channelSecret?: string | undefined;
21817
21876
  additionalCredentials?: any;
21877
+ lineRichMenuId?: string | null | undefined;
21818
21878
  };
21819
21879
  status: boolean;
21820
21880
  createdAt: Date;
@@ -21918,18 +21978,21 @@ export declare const apiContract: {
21918
21978
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
21919
21979
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
21920
21980
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
21981
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
21921
21982
  }, "strip", import("zod").ZodTypeAny, {
21922
21983
  id: string;
21923
21984
  name: string;
21924
21985
  accessToken?: string | undefined;
21925
21986
  channelSecret?: string | undefined;
21926
21987
  additionalCredentials?: any;
21988
+ lineRichMenuId?: string | null | undefined;
21927
21989
  }, {
21928
21990
  id: string;
21929
21991
  name: string;
21930
21992
  accessToken?: string | undefined;
21931
21993
  channelSecret?: string | undefined;
21932
21994
  additionalCredentials?: any;
21995
+ lineRichMenuId?: string | null | undefined;
21933
21996
  }>;
21934
21997
  platformId: import("zod").ZodString;
21935
21998
  connectedUserId: import("zod").ZodString;
@@ -21943,6 +22006,7 @@ export declare const apiContract: {
21943
22006
  accessToken?: string | undefined;
21944
22007
  channelSecret?: string | undefined;
21945
22008
  additionalCredentials?: any;
22009
+ lineRichMenuId?: string | null | undefined;
21946
22010
  };
21947
22011
  platformId: string;
21948
22012
  connectedUserId: string;
@@ -21956,6 +22020,7 @@ export declare const apiContract: {
21956
22020
  accessToken?: string | undefined;
21957
22021
  channelSecret?: string | undefined;
21958
22022
  additionalCredentials?: any;
22023
+ lineRichMenuId?: string | null | undefined;
21959
22024
  };
21960
22025
  platformId: string;
21961
22026
  connectedUserId: string;
@@ -21979,18 +22044,21 @@ export declare const apiContract: {
21979
22044
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
21980
22045
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
21981
22046
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
22047
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
21982
22048
  }, "strip", import("zod").ZodTypeAny, {
21983
22049
  id: string;
21984
22050
  name: string;
21985
22051
  accessToken?: string | undefined;
21986
22052
  channelSecret?: string | undefined;
21987
22053
  additionalCredentials?: any;
22054
+ lineRichMenuId?: string | null | undefined;
21988
22055
  }, {
21989
22056
  id: string;
21990
22057
  name: string;
21991
22058
  accessToken?: string | undefined;
21992
22059
  channelSecret?: string | undefined;
21993
22060
  additionalCredentials?: any;
22061
+ lineRichMenuId?: string | null | undefined;
21994
22062
  }>;
21995
22063
  brandName: import("zod").ZodString;
21996
22064
  platformId: import("zod").ZodString;
@@ -22231,6 +22299,7 @@ export declare const apiContract: {
22231
22299
  accessToken?: string | undefined;
22232
22300
  channelSecret?: string | undefined;
22233
22301
  additionalCredentials?: any;
22302
+ lineRichMenuId?: string | null | undefined;
22234
22303
  };
22235
22304
  status: boolean;
22236
22305
  createdAt: Date;
@@ -22302,6 +22371,7 @@ export declare const apiContract: {
22302
22371
  accessToken?: string | undefined;
22303
22372
  channelSecret?: string | undefined;
22304
22373
  additionalCredentials?: any;
22374
+ lineRichMenuId?: string | null | undefined;
22305
22375
  };
22306
22376
  status: boolean;
22307
22377
  createdAt: Date;
@@ -22375,6 +22445,7 @@ export declare const apiContract: {
22375
22445
  accessToken?: string | undefined;
22376
22446
  channelSecret?: string | undefined;
22377
22447
  additionalCredentials?: any;
22448
+ lineRichMenuId?: string | null | undefined;
22378
22449
  };
22379
22450
  status: boolean;
22380
22451
  createdAt: Date;
@@ -22449,6 +22520,7 @@ export declare const apiContract: {
22449
22520
  accessToken?: string | undefined;
22450
22521
  channelSecret?: string | undefined;
22451
22522
  additionalCredentials?: any;
22523
+ lineRichMenuId?: string | null | undefined;
22452
22524
  };
22453
22525
  status: boolean;
22454
22526
  createdAt: Date;
@@ -22567,18 +22639,21 @@ export declare const apiContract: {
22567
22639
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
22568
22640
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
22569
22641
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
22642
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
22570
22643
  }, "strip", import("zod").ZodTypeAny, {
22571
22644
  id: string;
22572
22645
  name: string;
22573
22646
  accessToken?: string | undefined;
22574
22647
  channelSecret?: string | undefined;
22575
22648
  additionalCredentials?: any;
22649
+ lineRichMenuId?: string | null | undefined;
22576
22650
  }, {
22577
22651
  id: string;
22578
22652
  name: string;
22579
22653
  accessToken?: string | undefined;
22580
22654
  channelSecret?: string | undefined;
22581
22655
  additionalCredentials?: any;
22656
+ lineRichMenuId?: string | null | undefined;
22582
22657
  }>;
22583
22658
  brandName: import("zod").ZodString;
22584
22659
  platformId: import("zod").ZodString;
@@ -22819,6 +22894,7 @@ export declare const apiContract: {
22819
22894
  accessToken?: string | undefined;
22820
22895
  channelSecret?: string | undefined;
22821
22896
  additionalCredentials?: any;
22897
+ lineRichMenuId?: string | null | undefined;
22822
22898
  };
22823
22899
  status: boolean;
22824
22900
  createdAt: Date;
@@ -22890,6 +22966,7 @@ export declare const apiContract: {
22890
22966
  accessToken?: string | undefined;
22891
22967
  channelSecret?: string | undefined;
22892
22968
  additionalCredentials?: any;
22969
+ lineRichMenuId?: string | null | undefined;
22893
22970
  };
22894
22971
  status: boolean;
22895
22972
  createdAt: Date;
@@ -22963,6 +23040,7 @@ export declare const apiContract: {
22963
23040
  accessToken?: string | undefined;
22964
23041
  channelSecret?: string | undefined;
22965
23042
  additionalCredentials?: any;
23043
+ lineRichMenuId?: string | null | undefined;
22966
23044
  };
22967
23045
  status: boolean;
22968
23046
  createdAt: Date;
@@ -23037,6 +23115,7 @@ export declare const apiContract: {
23037
23115
  accessToken?: string | undefined;
23038
23116
  channelSecret?: string | undefined;
23039
23117
  additionalCredentials?: any;
23118
+ lineRichMenuId?: string | null | undefined;
23040
23119
  };
23041
23120
  status: boolean;
23042
23121
  createdAt: Date;
@@ -23141,13 +23220,7 @@ export declare const apiContract: {
23141
23220
  }>>>;
23142
23221
  };
23143
23222
  disconnectBot: {
23144
- body: import("zod").ZodObject<{
23145
- botId: import("zod").ZodString;
23146
- }, "strip", import("zod").ZodTypeAny, {
23147
- botId: string;
23148
- }, {
23149
- botId: string;
23150
- }>;
23223
+ body: import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>;
23151
23224
  method: "POST";
23152
23225
  responses: {
23153
23226
  200: import("zod").ZodObject<{
@@ -23165,18 +23238,21 @@ export declare const apiContract: {
23165
23238
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
23166
23239
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
23167
23240
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
23241
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
23168
23242
  }, "strip", import("zod").ZodTypeAny, {
23169
23243
  id: string;
23170
23244
  name: string;
23171
23245
  accessToken?: string | undefined;
23172
23246
  channelSecret?: string | undefined;
23173
23247
  additionalCredentials?: any;
23248
+ lineRichMenuId?: string | null | undefined;
23174
23249
  }, {
23175
23250
  id: string;
23176
23251
  name: string;
23177
23252
  accessToken?: string | undefined;
23178
23253
  channelSecret?: string | undefined;
23179
23254
  additionalCredentials?: any;
23255
+ lineRichMenuId?: string | null | undefined;
23180
23256
  }>;
23181
23257
  brandName: import("zod").ZodString;
23182
23258
  platformId: import("zod").ZodString;
@@ -23417,6 +23493,7 @@ export declare const apiContract: {
23417
23493
  accessToken?: string | undefined;
23418
23494
  channelSecret?: string | undefined;
23419
23495
  additionalCredentials?: any;
23496
+ lineRichMenuId?: string | null | undefined;
23420
23497
  };
23421
23498
  status: boolean;
23422
23499
  createdAt: Date;
@@ -23488,6 +23565,7 @@ export declare const apiContract: {
23488
23565
  accessToken?: string | undefined;
23489
23566
  channelSecret?: string | undefined;
23490
23567
  additionalCredentials?: any;
23568
+ lineRichMenuId?: string | null | undefined;
23491
23569
  };
23492
23570
  status: boolean;
23493
23571
  createdAt: Date;
@@ -23561,6 +23639,7 @@ export declare const apiContract: {
23561
23639
  accessToken?: string | undefined;
23562
23640
  channelSecret?: string | undefined;
23563
23641
  additionalCredentials?: any;
23642
+ lineRichMenuId?: string | null | undefined;
23564
23643
  };
23565
23644
  status: boolean;
23566
23645
  createdAt: Date;
@@ -23635,6 +23714,7 @@ export declare const apiContract: {
23635
23714
  accessToken?: string | undefined;
23636
23715
  channelSecret?: string | undefined;
23637
23716
  additionalCredentials?: any;
23717
+ lineRichMenuId?: string | null | undefined;
23638
23718
  };
23639
23719
  status: boolean;
23640
23720
  createdAt: Date;
@@ -23933,18 +24013,21 @@ export declare const apiContract: {
23933
24013
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
23934
24014
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
23935
24015
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
24016
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
23936
24017
  }, "strip", import("zod").ZodTypeAny, {
23937
24018
  id: string;
23938
24019
  name: string;
23939
24020
  accessToken?: string | undefined;
23940
24021
  channelSecret?: string | undefined;
23941
24022
  additionalCredentials?: any;
24023
+ lineRichMenuId?: string | null | undefined;
23942
24024
  }, {
23943
24025
  id: string;
23944
24026
  name: string;
23945
24027
  accessToken?: string | undefined;
23946
24028
  channelSecret?: string | undefined;
23947
24029
  additionalCredentials?: any;
24030
+ lineRichMenuId?: string | null | undefined;
23948
24031
  }>;
23949
24032
  platformId: import("zod").ZodString;
23950
24033
  connectedUserId: import("zod").ZodString;
@@ -23958,6 +24041,7 @@ export declare const apiContract: {
23958
24041
  accessToken?: string | undefined;
23959
24042
  channelSecret?: string | undefined;
23960
24043
  additionalCredentials?: any;
24044
+ lineRichMenuId?: string | null | undefined;
23961
24045
  };
23962
24046
  platformId: string;
23963
24047
  connectedUserId: string;
@@ -23971,6 +24055,7 @@ export declare const apiContract: {
23971
24055
  accessToken?: string | undefined;
23972
24056
  channelSecret?: string | undefined;
23973
24057
  additionalCredentials?: any;
24058
+ lineRichMenuId?: string | null | undefined;
23974
24059
  };
23975
24060
  platformId: string;
23976
24061
  connectedUserId: string;
@@ -23994,18 +24079,21 @@ export declare const apiContract: {
23994
24079
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
23995
24080
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
23996
24081
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
24082
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
23997
24083
  }, "strip", import("zod").ZodTypeAny, {
23998
24084
  id: string;
23999
24085
  name: string;
24000
24086
  accessToken?: string | undefined;
24001
24087
  channelSecret?: string | undefined;
24002
24088
  additionalCredentials?: any;
24089
+ lineRichMenuId?: string | null | undefined;
24003
24090
  }, {
24004
24091
  id: string;
24005
24092
  name: string;
24006
24093
  accessToken?: string | undefined;
24007
24094
  channelSecret?: string | undefined;
24008
24095
  additionalCredentials?: any;
24096
+ lineRichMenuId?: string | null | undefined;
24009
24097
  }>;
24010
24098
  brandName: import("zod").ZodString;
24011
24099
  platformId: import("zod").ZodString;
@@ -24246,6 +24334,7 @@ export declare const apiContract: {
24246
24334
  accessToken?: string | undefined;
24247
24335
  channelSecret?: string | undefined;
24248
24336
  additionalCredentials?: any;
24337
+ lineRichMenuId?: string | null | undefined;
24249
24338
  };
24250
24339
  status: boolean;
24251
24340
  createdAt: Date;
@@ -24317,6 +24406,7 @@ export declare const apiContract: {
24317
24406
  accessToken?: string | undefined;
24318
24407
  channelSecret?: string | undefined;
24319
24408
  additionalCredentials?: any;
24409
+ lineRichMenuId?: string | null | undefined;
24320
24410
  };
24321
24411
  status: boolean;
24322
24412
  createdAt: Date;
@@ -24390,6 +24480,7 @@ export declare const apiContract: {
24390
24480
  accessToken?: string | undefined;
24391
24481
  channelSecret?: string | undefined;
24392
24482
  additionalCredentials?: any;
24483
+ lineRichMenuId?: string | null | undefined;
24393
24484
  };
24394
24485
  status: boolean;
24395
24486
  createdAt: Date;
@@ -24464,6 +24555,7 @@ export declare const apiContract: {
24464
24555
  accessToken?: string | undefined;
24465
24556
  channelSecret?: string | undefined;
24466
24557
  additionalCredentials?: any;
24558
+ lineRichMenuId?: string | null | undefined;
24467
24559
  };
24468
24560
  status: boolean;
24469
24561
  createdAt: Date;
@@ -24818,18 +24910,21 @@ export declare const apiContract: {
24818
24910
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
24819
24911
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
24820
24912
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
24913
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
24821
24914
  }, "strip", import("zod").ZodTypeAny, {
24822
24915
  id: string;
24823
24916
  name: string;
24824
24917
  accessToken?: string | undefined;
24825
24918
  channelSecret?: string | undefined;
24826
24919
  additionalCredentials?: any;
24920
+ lineRichMenuId?: string | null | undefined;
24827
24921
  }, {
24828
24922
  id: string;
24829
24923
  name: string;
24830
24924
  accessToken?: string | undefined;
24831
24925
  channelSecret?: string | undefined;
24832
24926
  additionalCredentials?: any;
24927
+ lineRichMenuId?: string | null | undefined;
24833
24928
  }>;
24834
24929
  platformId: import("zod").ZodString;
24835
24930
  connectedUserId: import("zod").ZodString;
@@ -24843,6 +24938,7 @@ export declare const apiContract: {
24843
24938
  accessToken?: string | undefined;
24844
24939
  channelSecret?: string | undefined;
24845
24940
  additionalCredentials?: any;
24941
+ lineRichMenuId?: string | null | undefined;
24846
24942
  };
24847
24943
  platformId: string;
24848
24944
  connectedUserId: string;
@@ -24856,6 +24952,7 @@ export declare const apiContract: {
24856
24952
  accessToken?: string | undefined;
24857
24953
  channelSecret?: string | undefined;
24858
24954
  additionalCredentials?: any;
24955
+ lineRichMenuId?: string | null | undefined;
24859
24956
  };
24860
24957
  platformId: string;
24861
24958
  connectedUserId: string;
@@ -24879,18 +24976,21 @@ export declare const apiContract: {
24879
24976
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
24880
24977
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
24881
24978
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
24979
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
24882
24980
  }, "strip", import("zod").ZodTypeAny, {
24883
24981
  id: string;
24884
24982
  name: string;
24885
24983
  accessToken?: string | undefined;
24886
24984
  channelSecret?: string | undefined;
24887
24985
  additionalCredentials?: any;
24986
+ lineRichMenuId?: string | null | undefined;
24888
24987
  }, {
24889
24988
  id: string;
24890
24989
  name: string;
24891
24990
  accessToken?: string | undefined;
24892
24991
  channelSecret?: string | undefined;
24893
24992
  additionalCredentials?: any;
24993
+ lineRichMenuId?: string | null | undefined;
24894
24994
  }>;
24895
24995
  brandName: import("zod").ZodString;
24896
24996
  platformId: import("zod").ZodString;
@@ -25131,6 +25231,7 @@ export declare const apiContract: {
25131
25231
  accessToken?: string | undefined;
25132
25232
  channelSecret?: string | undefined;
25133
25233
  additionalCredentials?: any;
25234
+ lineRichMenuId?: string | null | undefined;
25134
25235
  };
25135
25236
  status: boolean;
25136
25237
  createdAt: Date;
@@ -25202,6 +25303,7 @@ export declare const apiContract: {
25202
25303
  accessToken?: string | undefined;
25203
25304
  channelSecret?: string | undefined;
25204
25305
  additionalCredentials?: any;
25306
+ lineRichMenuId?: string | null | undefined;
25205
25307
  };
25206
25308
  status: boolean;
25207
25309
  createdAt: Date;
@@ -25275,6 +25377,7 @@ export declare const apiContract: {
25275
25377
  accessToken?: string | undefined;
25276
25378
  channelSecret?: string | undefined;
25277
25379
  additionalCredentials?: any;
25380
+ lineRichMenuId?: string | null | undefined;
25278
25381
  };
25279
25382
  status: boolean;
25280
25383
  createdAt: Date;
@@ -25349,6 +25452,7 @@ export declare const apiContract: {
25349
25452
  accessToken?: string | undefined;
25350
25453
  channelSecret?: string | undefined;
25351
25454
  additionalCredentials?: any;
25455
+ lineRichMenuId?: string | null | undefined;
25352
25456
  };
25353
25457
  status: boolean;
25354
25458
  createdAt: Date;
@@ -25473,18 +25577,21 @@ export declare const apiContract: {
25473
25577
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
25474
25578
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
25475
25579
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
25580
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
25476
25581
  }, "strip", import("zod").ZodTypeAny, {
25477
25582
  id: string;
25478
25583
  name: string;
25479
25584
  accessToken?: string | undefined;
25480
25585
  channelSecret?: string | undefined;
25481
25586
  additionalCredentials?: any;
25587
+ lineRichMenuId?: string | null | undefined;
25482
25588
  }, {
25483
25589
  id: string;
25484
25590
  name: string;
25485
25591
  accessToken?: string | undefined;
25486
25592
  channelSecret?: string | undefined;
25487
25593
  additionalCredentials?: any;
25594
+ lineRichMenuId?: string | null | undefined;
25488
25595
  }>;
25489
25596
  brandName: import("zod").ZodString;
25490
25597
  platformId: import("zod").ZodString;
@@ -25725,6 +25832,7 @@ export declare const apiContract: {
25725
25832
  accessToken?: string | undefined;
25726
25833
  channelSecret?: string | undefined;
25727
25834
  additionalCredentials?: any;
25835
+ lineRichMenuId?: string | null | undefined;
25728
25836
  };
25729
25837
  status: boolean;
25730
25838
  createdAt: Date;
@@ -25796,6 +25904,7 @@ export declare const apiContract: {
25796
25904
  accessToken?: string | undefined;
25797
25905
  channelSecret?: string | undefined;
25798
25906
  additionalCredentials?: any;
25907
+ lineRichMenuId?: string | null | undefined;
25799
25908
  };
25800
25909
  status: boolean;
25801
25910
  createdAt: Date;
@@ -25869,6 +25978,7 @@ export declare const apiContract: {
25869
25978
  accessToken?: string | undefined;
25870
25979
  channelSecret?: string | undefined;
25871
25980
  additionalCredentials?: any;
25981
+ lineRichMenuId?: string | null | undefined;
25872
25982
  };
25873
25983
  status: boolean;
25874
25984
  createdAt: Date;
@@ -25943,6 +26053,7 @@ export declare const apiContract: {
25943
26053
  accessToken?: string | undefined;
25944
26054
  channelSecret?: string | undefined;
25945
26055
  additionalCredentials?: any;
26056
+ lineRichMenuId?: string | null | undefined;
25946
26057
  };
25947
26058
  status: boolean;
25948
26059
  createdAt: Date;
@@ -26127,18 +26238,21 @@ export declare const apiContract: {
26127
26238
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
26128
26239
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
26129
26240
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
26241
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
26130
26242
  }, "strip", import("zod").ZodTypeAny, {
26131
26243
  id: string;
26132
26244
  name: string;
26133
26245
  accessToken?: string | undefined;
26134
26246
  channelSecret?: string | undefined;
26135
26247
  additionalCredentials?: any;
26248
+ lineRichMenuId?: string | null | undefined;
26136
26249
  }, {
26137
26250
  id: string;
26138
26251
  name: string;
26139
26252
  accessToken?: string | undefined;
26140
26253
  channelSecret?: string | undefined;
26141
26254
  additionalCredentials?: any;
26255
+ lineRichMenuId?: string | null | undefined;
26142
26256
  }>;
26143
26257
  brandName: import("zod").ZodString;
26144
26258
  platformId: import("zod").ZodString;
@@ -26379,6 +26493,7 @@ export declare const apiContract: {
26379
26493
  accessToken?: string | undefined;
26380
26494
  channelSecret?: string | undefined;
26381
26495
  additionalCredentials?: any;
26496
+ lineRichMenuId?: string | null | undefined;
26382
26497
  };
26383
26498
  status: boolean;
26384
26499
  createdAt: Date;
@@ -26450,6 +26565,7 @@ export declare const apiContract: {
26450
26565
  accessToken?: string | undefined;
26451
26566
  channelSecret?: string | undefined;
26452
26567
  additionalCredentials?: any;
26568
+ lineRichMenuId?: string | null | undefined;
26453
26569
  };
26454
26570
  status: boolean;
26455
26571
  createdAt: Date;
@@ -26523,6 +26639,7 @@ export declare const apiContract: {
26523
26639
  accessToken?: string | undefined;
26524
26640
  channelSecret?: string | undefined;
26525
26641
  additionalCredentials?: any;
26642
+ lineRichMenuId?: string | null | undefined;
26526
26643
  };
26527
26644
  status: boolean;
26528
26645
  createdAt: Date;
@@ -26597,6 +26714,7 @@ export declare const apiContract: {
26597
26714
  accessToken?: string | undefined;
26598
26715
  channelSecret?: string | undefined;
26599
26716
  additionalCredentials?: any;
26717
+ lineRichMenuId?: string | null | undefined;
26600
26718
  };
26601
26719
  status: boolean;
26602
26720
  createdAt: Date;
@@ -59368,6 +59486,131 @@ export declare const ticketContract: {
59368
59486
  'x-client-timezone'?: string | undefined;
59369
59487
  }>>>;
59370
59488
  };
59489
+ getTicketReasonRequired: {
59490
+ method: "GET";
59491
+ responses: {
59492
+ 200: import("zod").ZodObject<{
59493
+ requestId: import("zod").ZodString;
59494
+ ticketReasonRequired: import("zod").ZodString;
59495
+ }, "strip", import("zod").ZodTypeAny, {
59496
+ requestId: string;
59497
+ ticketReasonRequired: string;
59498
+ }, {
59499
+ requestId: string;
59500
+ ticketReasonRequired: string;
59501
+ }>;
59502
+ 400: import("zod").ZodObject<{
59503
+ message: import("zod").ZodString;
59504
+ }, "strip", import("zod").ZodTypeAny, {
59505
+ message: string;
59506
+ }, {
59507
+ message: string;
59508
+ }>;
59509
+ 401: import("zod").ZodObject<{
59510
+ message: import("zod").ZodString;
59511
+ error: import("zod").ZodAny;
59512
+ }, "strip", import("zod").ZodTypeAny, {
59513
+ message: string;
59514
+ error?: any;
59515
+ }, {
59516
+ message: string;
59517
+ error?: any;
59518
+ }>;
59519
+ 500: import("zod").ZodObject<{
59520
+ message: import("zod").ZodString;
59521
+ error: import("zod").ZodAny;
59522
+ }, "strip", import("zod").ZodTypeAny, {
59523
+ message: string;
59524
+ error?: any;
59525
+ }, {
59526
+ message: string;
59527
+ error?: any;
59528
+ }>;
59529
+ };
59530
+ path: "ticket/gs/ticket-reason-required";
59531
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
59532
+ 'x-tenant': import("zod").ZodString;
59533
+ authorization: import("zod").ZodString;
59534
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
59535
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
59536
+ }, "strip", import("zod").ZodTypeAny, {
59537
+ 'x-tenant': string;
59538
+ authorization: string;
59539
+ 'x-client-timezone': string;
59540
+ 'x-code'?: string | undefined;
59541
+ }, {
59542
+ 'x-tenant': string;
59543
+ authorization: string;
59544
+ 'x-code'?: string | undefined;
59545
+ 'x-client-timezone'?: string | undefined;
59546
+ }>>>;
59547
+ };
59548
+ updateTicketReasonRequired: {
59549
+ body: import("zod").ZodObject<{
59550
+ ticketReasonRequired: import("zod").ZodString;
59551
+ }, "strip", import("zod").ZodTypeAny, {
59552
+ ticketReasonRequired: string;
59553
+ }, {
59554
+ ticketReasonRequired: string;
59555
+ }>;
59556
+ method: "PATCH";
59557
+ responses: {
59558
+ 200: import("zod").ZodObject<{
59559
+ requestId: import("zod").ZodString;
59560
+ ticketReasonRequired: import("zod").ZodString;
59561
+ }, "strip", import("zod").ZodTypeAny, {
59562
+ requestId: string;
59563
+ ticketReasonRequired: string;
59564
+ }, {
59565
+ requestId: string;
59566
+ ticketReasonRequired: string;
59567
+ }>;
59568
+ 400: import("zod").ZodObject<{
59569
+ message: import("zod").ZodString;
59570
+ }, "strip", import("zod").ZodTypeAny, {
59571
+ message: string;
59572
+ }, {
59573
+ message: string;
59574
+ }>;
59575
+ 401: import("zod").ZodObject<{
59576
+ message: import("zod").ZodString;
59577
+ error: import("zod").ZodAny;
59578
+ }, "strip", import("zod").ZodTypeAny, {
59579
+ message: string;
59580
+ error?: any;
59581
+ }, {
59582
+ message: string;
59583
+ error?: any;
59584
+ }>;
59585
+ 500: import("zod").ZodObject<{
59586
+ message: import("zod").ZodString;
59587
+ error: import("zod").ZodAny;
59588
+ }, "strip", import("zod").ZodTypeAny, {
59589
+ message: string;
59590
+ error?: any;
59591
+ }, {
59592
+ message: string;
59593
+ error?: any;
59594
+ }>;
59595
+ };
59596
+ path: "ticket/gs/ticket-reason-required";
59597
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
59598
+ 'x-tenant': import("zod").ZodString;
59599
+ authorization: import("zod").ZodString;
59600
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
59601
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
59602
+ }, "strip", import("zod").ZodTypeAny, {
59603
+ 'x-tenant': string;
59604
+ authorization: string;
59605
+ 'x-client-timezone': string;
59606
+ 'x-code'?: string | undefined;
59607
+ }, {
59608
+ 'x-tenant': string;
59609
+ authorization: string;
59610
+ 'x-code'?: string | undefined;
59611
+ 'x-client-timezone'?: string | undefined;
59612
+ }>>>;
59613
+ };
59371
59614
  };
59372
59615
  };
59373
59616
  export declare const extensionContract: {
@@ -74397,24 +74640,28 @@ export declare const platformContract: {
74397
74640
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
74398
74641
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
74399
74642
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
74643
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
74400
74644
  }, "strip", import("zod").ZodTypeAny, {
74401
74645
  id: string;
74402
74646
  name: string;
74403
74647
  accessToken?: string | undefined;
74404
74648
  channelSecret?: string | undefined;
74405
74649
  additionalCredentials?: any;
74650
+ lineRichMenuId?: string | null | undefined;
74406
74651
  }, {
74407
74652
  id: string;
74408
74653
  name: string;
74409
74654
  accessToken?: string | undefined;
74410
74655
  channelSecret?: string | undefined;
74411
74656
  additionalCredentials?: any;
74657
+ lineRichMenuId?: string | null | undefined;
74412
74658
  }>;
74413
74659
  platformId: import("zod").ZodString;
74414
74660
  brandName: import("zod").ZodString;
74415
74661
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
74416
74662
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
74417
74663
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
74664
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
74418
74665
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
74419
74666
  id: import("zod").ZodString;
74420
74667
  name: import("zod").ZodString;
@@ -74444,12 +74691,14 @@ export declare const platformContract: {
74444
74691
  accessToken?: string | undefined;
74445
74692
  channelSecret?: string | undefined;
74446
74693
  additionalCredentials?: any;
74694
+ lineRichMenuId?: string | null | undefined;
74447
74695
  };
74448
74696
  status: boolean;
74449
74697
  brandName: string;
74450
74698
  platformId: string;
74451
74699
  connectedUserName?: string | null | undefined;
74452
74700
  connectedUserId?: string | null | undefined;
74701
+ lineRichMenuId?: string | null | undefined;
74453
74702
  actor?: {
74454
74703
  id: string;
74455
74704
  address: string | null;
@@ -74467,12 +74716,14 @@ export declare const platformContract: {
74467
74716
  accessToken?: string | undefined;
74468
74717
  channelSecret?: string | undefined;
74469
74718
  additionalCredentials?: any;
74719
+ lineRichMenuId?: string | null | undefined;
74470
74720
  };
74471
74721
  status: boolean;
74472
74722
  brandName: string;
74473
74723
  platformId: string;
74474
74724
  connectedUserName?: string | null | undefined;
74475
74725
  connectedUserId?: string | null | undefined;
74726
+ lineRichMenuId?: string | null | undefined;
74476
74727
  actor?: {
74477
74728
  id: string;
74478
74729
  address: string | null;
@@ -74493,12 +74744,14 @@ export declare const platformContract: {
74493
74744
  accessToken?: string | undefined;
74494
74745
  channelSecret?: string | undefined;
74495
74746
  additionalCredentials?: any;
74747
+ lineRichMenuId?: string | null | undefined;
74496
74748
  };
74497
74749
  status: boolean;
74498
74750
  brandName: string;
74499
74751
  platformId: string;
74500
74752
  connectedUserName?: string | null | undefined;
74501
74753
  connectedUserId?: string | null | undefined;
74754
+ lineRichMenuId?: string | null | undefined;
74502
74755
  actor?: {
74503
74756
  id: string;
74504
74757
  address: string | null;
@@ -74548,12 +74801,14 @@ export declare const platformContract: {
74548
74801
  accessToken?: string | undefined;
74549
74802
  channelSecret?: string | undefined;
74550
74803
  additionalCredentials?: any;
74804
+ lineRichMenuId?: string | null | undefined;
74551
74805
  };
74552
74806
  status: boolean;
74553
74807
  brandName: string;
74554
74808
  platformId: string;
74555
74809
  connectedUserName?: string | null | undefined;
74556
74810
  connectedUserId?: string | null | undefined;
74811
+ lineRichMenuId?: string | null | undefined;
74557
74812
  actor?: {
74558
74813
  id: string;
74559
74814
  address: string | null;
@@ -74731,12 +74986,14 @@ export declare const platformContract: {
74731
74986
  accessToken?: string | undefined;
74732
74987
  channelSecret?: string | undefined;
74733
74988
  additionalCredentials?: any;
74989
+ lineRichMenuId?: string | null | undefined;
74734
74990
  };
74735
74991
  status: boolean;
74736
74992
  brandName: string;
74737
74993
  platformId: string;
74738
74994
  connectedUserName?: string | null | undefined;
74739
74995
  connectedUserId?: string | null | undefined;
74996
+ lineRichMenuId?: string | null | undefined;
74740
74997
  actor?: {
74741
74998
  id: string;
74742
74999
  address: string | null;
@@ -74817,12 +75074,14 @@ export declare const platformContract: {
74817
75074
  accessToken?: string | undefined;
74818
75075
  channelSecret?: string | undefined;
74819
75076
  additionalCredentials?: any;
75077
+ lineRichMenuId?: string | null | undefined;
74820
75078
  };
74821
75079
  status: boolean;
74822
75080
  brandName: string;
74823
75081
  platformId: string;
74824
75082
  connectedUserName?: string | null | undefined;
74825
75083
  connectedUserId?: string | null | undefined;
75084
+ lineRichMenuId?: string | null | undefined;
74826
75085
  actor?: {
74827
75086
  id: string;
74828
75087
  address: string | null;
@@ -74958,24 +75217,28 @@ export declare const platformContract: {
74958
75217
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
74959
75218
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
74960
75219
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
75220
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
74961
75221
  }, "strip", import("zod").ZodTypeAny, {
74962
75222
  id: string;
74963
75223
  name: string;
74964
75224
  accessToken?: string | undefined;
74965
75225
  channelSecret?: string | undefined;
74966
75226
  additionalCredentials?: any;
75227
+ lineRichMenuId?: string | null | undefined;
74967
75228
  }, {
74968
75229
  id: string;
74969
75230
  name: string;
74970
75231
  accessToken?: string | undefined;
74971
75232
  channelSecret?: string | undefined;
74972
75233
  additionalCredentials?: any;
75234
+ lineRichMenuId?: string | null | undefined;
74973
75235
  }>;
74974
75236
  platformId: import("zod").ZodString;
74975
75237
  brandName: import("zod").ZodString;
74976
75238
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
74977
75239
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
74978
75240
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
75241
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
74979
75242
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
74980
75243
  id: import("zod").ZodString;
74981
75244
  name: import("zod").ZodString;
@@ -75005,12 +75268,14 @@ export declare const platformContract: {
75005
75268
  accessToken?: string | undefined;
75006
75269
  channelSecret?: string | undefined;
75007
75270
  additionalCredentials?: any;
75271
+ lineRichMenuId?: string | null | undefined;
75008
75272
  };
75009
75273
  status: boolean;
75010
75274
  brandName: string;
75011
75275
  platformId: string;
75012
75276
  connectedUserName?: string | null | undefined;
75013
75277
  connectedUserId?: string | null | undefined;
75278
+ lineRichMenuId?: string | null | undefined;
75014
75279
  actor?: {
75015
75280
  id: string;
75016
75281
  address: string | null;
@@ -75028,12 +75293,14 @@ export declare const platformContract: {
75028
75293
  accessToken?: string | undefined;
75029
75294
  channelSecret?: string | undefined;
75030
75295
  additionalCredentials?: any;
75296
+ lineRichMenuId?: string | null | undefined;
75031
75297
  };
75032
75298
  status: boolean;
75033
75299
  brandName: string;
75034
75300
  platformId: string;
75035
75301
  connectedUserName?: string | null | undefined;
75036
75302
  connectedUserId?: string | null | undefined;
75303
+ lineRichMenuId?: string | null | undefined;
75037
75304
  actor?: {
75038
75305
  id: string;
75039
75306
  address: string | null;
@@ -75053,12 +75320,14 @@ export declare const platformContract: {
75053
75320
  accessToken?: string | undefined;
75054
75321
  channelSecret?: string | undefined;
75055
75322
  additionalCredentials?: any;
75323
+ lineRichMenuId?: string | null | undefined;
75056
75324
  };
75057
75325
  status: boolean;
75058
75326
  brandName: string;
75059
75327
  platformId: string;
75060
75328
  connectedUserName?: string | null | undefined;
75061
75329
  connectedUserId?: string | null | undefined;
75330
+ lineRichMenuId?: string | null | undefined;
75062
75331
  actor?: {
75063
75332
  id: string;
75064
75333
  address: string | null;
@@ -75079,12 +75348,14 @@ export declare const platformContract: {
75079
75348
  accessToken?: string | undefined;
75080
75349
  channelSecret?: string | undefined;
75081
75350
  additionalCredentials?: any;
75351
+ lineRichMenuId?: string | null | undefined;
75082
75352
  };
75083
75353
  status: boolean;
75084
75354
  brandName: string;
75085
75355
  platformId: string;
75086
75356
  connectedUserName?: string | null | undefined;
75087
75357
  connectedUserId?: string | null | undefined;
75358
+ lineRichMenuId?: string | null | undefined;
75088
75359
  actor?: {
75089
75360
  id: string;
75090
75361
  address: string | null;
@@ -75254,24 +75525,28 @@ export declare const platformContract: {
75254
75525
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
75255
75526
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
75256
75527
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
75528
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
75257
75529
  }, "strip", import("zod").ZodTypeAny, {
75258
75530
  id: string;
75259
75531
  name: string;
75260
75532
  accessToken?: string | undefined;
75261
75533
  channelSecret?: string | undefined;
75262
75534
  additionalCredentials?: any;
75535
+ lineRichMenuId?: string | null | undefined;
75263
75536
  }, {
75264
75537
  id: string;
75265
75538
  name: string;
75266
75539
  accessToken?: string | undefined;
75267
75540
  channelSecret?: string | undefined;
75268
75541
  additionalCredentials?: any;
75542
+ lineRichMenuId?: string | null | undefined;
75269
75543
  }>;
75270
75544
  platformId: import("zod").ZodString;
75271
75545
  brandName: import("zod").ZodString;
75272
75546
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
75273
75547
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
75274
75548
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
75549
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
75275
75550
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
75276
75551
  id: import("zod").ZodString;
75277
75552
  name: import("zod").ZodString;
@@ -75301,12 +75576,14 @@ export declare const platformContract: {
75301
75576
  accessToken?: string | undefined;
75302
75577
  channelSecret?: string | undefined;
75303
75578
  additionalCredentials?: any;
75579
+ lineRichMenuId?: string | null | undefined;
75304
75580
  };
75305
75581
  status: boolean;
75306
75582
  brandName: string;
75307
75583
  platformId: string;
75308
75584
  connectedUserName?: string | null | undefined;
75309
75585
  connectedUserId?: string | null | undefined;
75586
+ lineRichMenuId?: string | null | undefined;
75310
75587
  actor?: {
75311
75588
  id: string;
75312
75589
  address: string | null;
@@ -75324,12 +75601,14 @@ export declare const platformContract: {
75324
75601
  accessToken?: string | undefined;
75325
75602
  channelSecret?: string | undefined;
75326
75603
  additionalCredentials?: any;
75604
+ lineRichMenuId?: string | null | undefined;
75327
75605
  };
75328
75606
  status: boolean;
75329
75607
  brandName: string;
75330
75608
  platformId: string;
75331
75609
  connectedUserName?: string | null | undefined;
75332
75610
  connectedUserId?: string | null | undefined;
75611
+ lineRichMenuId?: string | null | undefined;
75333
75612
  actor?: {
75334
75613
  id: string;
75335
75614
  address: string | null;
@@ -75351,12 +75630,14 @@ export declare const platformContract: {
75351
75630
  accessToken?: string | undefined;
75352
75631
  channelSecret?: string | undefined;
75353
75632
  additionalCredentials?: any;
75633
+ lineRichMenuId?: string | null | undefined;
75354
75634
  };
75355
75635
  status: boolean;
75356
75636
  brandName: string;
75357
75637
  platformId: string;
75358
75638
  connectedUserName?: string | null | undefined;
75359
75639
  connectedUserId?: string | null | undefined;
75640
+ lineRichMenuId?: string | null | undefined;
75360
75641
  actor?: {
75361
75642
  id: string;
75362
75643
  address: string | null;
@@ -75417,12 +75698,14 @@ export declare const platformContract: {
75417
75698
  accessToken?: string | undefined;
75418
75699
  channelSecret?: string | undefined;
75419
75700
  additionalCredentials?: any;
75701
+ lineRichMenuId?: string | null | undefined;
75420
75702
  };
75421
75703
  status: boolean;
75422
75704
  brandName: string;
75423
75705
  platformId: string;
75424
75706
  connectedUserName?: string | null | undefined;
75425
75707
  connectedUserId?: string | null | undefined;
75708
+ lineRichMenuId?: string | null | undefined;
75426
75709
  actor?: {
75427
75710
  id: string;
75428
75711
  address: string | null;
@@ -75623,12 +75906,14 @@ export declare const platformContract: {
75623
75906
  accessToken?: string | undefined;
75624
75907
  channelSecret?: string | undefined;
75625
75908
  additionalCredentials?: any;
75909
+ lineRichMenuId?: string | null | undefined;
75626
75910
  };
75627
75911
  status: boolean;
75628
75912
  brandName: string;
75629
75913
  platformId: string;
75630
75914
  connectedUserName?: string | null | undefined;
75631
75915
  connectedUserId?: string | null | undefined;
75916
+ lineRichMenuId?: string | null | undefined;
75632
75917
  actor?: {
75633
75918
  id: string;
75634
75919
  address: string | null;
@@ -75721,12 +76006,14 @@ export declare const platformContract: {
75721
76006
  accessToken?: string | undefined;
75722
76007
  channelSecret?: string | undefined;
75723
76008
  additionalCredentials?: any;
76009
+ lineRichMenuId?: string | null | undefined;
75724
76010
  };
75725
76011
  status: boolean;
75726
76012
  brandName: string;
75727
76013
  platformId: string;
75728
76014
  connectedUserName?: string | null | undefined;
75729
76015
  connectedUserId?: string | null | undefined;
76016
+ lineRichMenuId?: string | null | undefined;
75730
76017
  actor?: {
75731
76018
  id: string;
75732
76019
  address: string | null;
@@ -77171,18 +77458,21 @@ export declare const platformContract: {
77171
77458
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
77172
77459
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
77173
77460
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
77461
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
77174
77462
  }, "strip", import("zod").ZodTypeAny, {
77175
77463
  id: string;
77176
77464
  name: string;
77177
77465
  accessToken?: string | undefined;
77178
77466
  channelSecret?: string | undefined;
77179
77467
  additionalCredentials?: any;
77468
+ lineRichMenuId?: string | null | undefined;
77180
77469
  }, {
77181
77470
  id: string;
77182
77471
  name: string;
77183
77472
  accessToken?: string | undefined;
77184
77473
  channelSecret?: string | undefined;
77185
77474
  additionalCredentials?: any;
77475
+ lineRichMenuId?: string | null | undefined;
77186
77476
  }>;
77187
77477
  brandName: import("zod").ZodString;
77188
77478
  platformId: import("zod").ZodString;
@@ -77423,6 +77713,7 @@ export declare const platformContract: {
77423
77713
  accessToken?: string | undefined;
77424
77714
  channelSecret?: string | undefined;
77425
77715
  additionalCredentials?: any;
77716
+ lineRichMenuId?: string | null | undefined;
77426
77717
  };
77427
77718
  status: boolean;
77428
77719
  createdAt: Date;
@@ -77494,6 +77785,7 @@ export declare const platformContract: {
77494
77785
  accessToken?: string | undefined;
77495
77786
  channelSecret?: string | undefined;
77496
77787
  additionalCredentials?: any;
77788
+ lineRichMenuId?: string | null | undefined;
77497
77789
  };
77498
77790
  status: boolean;
77499
77791
  createdAt: Date;
@@ -78012,6 +78304,7 @@ export declare const platformContract: {
78012
78304
  accessToken?: string | undefined;
78013
78305
  channelSecret?: string | undefined;
78014
78306
  additionalCredentials?: any;
78307
+ lineRichMenuId?: string | null | undefined;
78015
78308
  };
78016
78309
  status: boolean;
78017
78310
  createdAt: Date;
@@ -78378,6 +78671,7 @@ export declare const platformContract: {
78378
78671
  accessToken?: string | undefined;
78379
78672
  channelSecret?: string | undefined;
78380
78673
  additionalCredentials?: any;
78674
+ lineRichMenuId?: string | null | undefined;
78381
78675
  };
78382
78676
  status: boolean;
78383
78677
  createdAt: Date;
@@ -80515,6 +80809,7 @@ export declare const platformContract: {
80515
80809
  accessToken?: string | undefined;
80516
80810
  channelSecret?: string | undefined;
80517
80811
  additionalCredentials?: any;
80812
+ lineRichMenuId?: string | null | undefined;
80518
80813
  };
80519
80814
  status: boolean;
80520
80815
  createdAt: Date;
@@ -81216,6 +81511,7 @@ export declare const platformContract: {
81216
81511
  accessToken?: string | undefined;
81217
81512
  channelSecret?: string | undefined;
81218
81513
  additionalCredentials?: any;
81514
+ lineRichMenuId?: string | null | undefined;
81219
81515
  };
81220
81516
  status: boolean;
81221
81517
  createdAt: Date;
@@ -81919,6 +82215,7 @@ export declare const platformContract: {
81919
82215
  accessToken?: string | undefined;
81920
82216
  channelSecret?: string | undefined;
81921
82217
  additionalCredentials?: any;
82218
+ lineRichMenuId?: string | null | undefined;
81922
82219
  };
81923
82220
  status: boolean;
81924
82221
  createdAt: Date;
@@ -82623,6 +82920,7 @@ export declare const platformContract: {
82623
82920
  accessToken?: string | undefined;
82624
82921
  channelSecret?: string | undefined;
82625
82922
  additionalCredentials?: any;
82923
+ lineRichMenuId?: string | null | undefined;
82626
82924
  };
82627
82925
  status: boolean;
82628
82926
  createdAt: Date;
@@ -83229,24 +83527,28 @@ export declare const platformContract: {
83229
83527
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
83230
83528
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
83231
83529
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
83530
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83232
83531
  }, "strip", import("zod").ZodTypeAny, {
83233
83532
  id: string;
83234
83533
  name: string;
83235
83534
  accessToken?: string | undefined;
83236
83535
  channelSecret?: string | undefined;
83237
83536
  additionalCredentials?: any;
83537
+ lineRichMenuId?: string | null | undefined;
83238
83538
  }, {
83239
83539
  id: string;
83240
83540
  name: string;
83241
83541
  accessToken?: string | undefined;
83242
83542
  channelSecret?: string | undefined;
83243
83543
  additionalCredentials?: any;
83544
+ lineRichMenuId?: string | null | undefined;
83244
83545
  }>>;
83245
83546
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
83246
83547
  brandName: import("zod").ZodOptional<import("zod").ZodString>;
83247
83548
  status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>>;
83248
83549
  connectedUserName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
83249
83550
  connectedUserId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
83551
+ lineRichMenuId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
83250
83552
  actor: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodObject<{
83251
83553
  id: import("zod").ZodString;
83252
83554
  name: import("zod").ZodString;
@@ -83276,12 +83578,14 @@ export declare const platformContract: {
83276
83578
  accessToken?: string | undefined;
83277
83579
  channelSecret?: string | undefined;
83278
83580
  additionalCredentials?: any;
83581
+ lineRichMenuId?: string | null | undefined;
83279
83582
  } | undefined;
83280
83583
  platformId?: string | undefined;
83281
83584
  brandName?: string | undefined;
83282
83585
  status?: boolean | undefined;
83283
83586
  connectedUserName?: string | null | undefined;
83284
83587
  connectedUserId?: string | null | undefined;
83588
+ lineRichMenuId?: string | null | undefined;
83285
83589
  actor?: {
83286
83590
  id: string;
83287
83591
  address: string | null;
@@ -83299,12 +83603,14 @@ export declare const platformContract: {
83299
83603
  accessToken?: string | undefined;
83300
83604
  channelSecret?: string | undefined;
83301
83605
  additionalCredentials?: any;
83606
+ lineRichMenuId?: string | null | undefined;
83302
83607
  } | undefined;
83303
83608
  platformId?: string | undefined;
83304
83609
  brandName?: string | undefined;
83305
83610
  status?: boolean | undefined;
83306
83611
  connectedUserName?: string | null | undefined;
83307
83612
  connectedUserId?: string | null | undefined;
83613
+ lineRichMenuId?: string | null | undefined;
83308
83614
  actor?: {
83309
83615
  id: string;
83310
83616
  address: string | null;
@@ -83327,24 +83633,28 @@ export declare const platformContract: {
83327
83633
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
83328
83634
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
83329
83635
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
83636
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83330
83637
  }, "strip", import("zod").ZodTypeAny, {
83331
83638
  id: string;
83332
83639
  name: string;
83333
83640
  accessToken?: string | undefined;
83334
83641
  channelSecret?: string | undefined;
83335
83642
  additionalCredentials?: any;
83643
+ lineRichMenuId?: string | null | undefined;
83336
83644
  }, {
83337
83645
  id: string;
83338
83646
  name: string;
83339
83647
  accessToken?: string | undefined;
83340
83648
  channelSecret?: string | undefined;
83341
83649
  additionalCredentials?: any;
83650
+ lineRichMenuId?: string | null | undefined;
83342
83651
  }>;
83343
83652
  platformId: import("zod").ZodString;
83344
83653
  brandName: import("zod").ZodString;
83345
83654
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
83346
83655
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83347
83656
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83657
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83348
83658
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
83349
83659
  id: import("zod").ZodString;
83350
83660
  name: import("zod").ZodString;
@@ -83374,12 +83684,14 @@ export declare const platformContract: {
83374
83684
  accessToken?: string | undefined;
83375
83685
  channelSecret?: string | undefined;
83376
83686
  additionalCredentials?: any;
83687
+ lineRichMenuId?: string | null | undefined;
83377
83688
  };
83378
83689
  status: boolean;
83379
83690
  brandName: string;
83380
83691
  platformId: string;
83381
83692
  connectedUserName?: string | null | undefined;
83382
83693
  connectedUserId?: string | null | undefined;
83694
+ lineRichMenuId?: string | null | undefined;
83383
83695
  actor?: {
83384
83696
  id: string;
83385
83697
  address: string | null;
@@ -83397,12 +83709,14 @@ export declare const platformContract: {
83397
83709
  accessToken?: string | undefined;
83398
83710
  channelSecret?: string | undefined;
83399
83711
  additionalCredentials?: any;
83712
+ lineRichMenuId?: string | null | undefined;
83400
83713
  };
83401
83714
  status: boolean;
83402
83715
  brandName: string;
83403
83716
  platformId: string;
83404
83717
  connectedUserName?: string | null | undefined;
83405
83718
  connectedUserId?: string | null | undefined;
83719
+ lineRichMenuId?: string | null | undefined;
83406
83720
  actor?: {
83407
83721
  id: string;
83408
83722
  address: string | null;
@@ -83422,12 +83736,14 @@ export declare const platformContract: {
83422
83736
  accessToken?: string | undefined;
83423
83737
  channelSecret?: string | undefined;
83424
83738
  additionalCredentials?: any;
83739
+ lineRichMenuId?: string | null | undefined;
83425
83740
  };
83426
83741
  status: boolean;
83427
83742
  brandName: string;
83428
83743
  platformId: string;
83429
83744
  connectedUserName?: string | null | undefined;
83430
83745
  connectedUserId?: string | null | undefined;
83746
+ lineRichMenuId?: string | null | undefined;
83431
83747
  actor?: {
83432
83748
  id: string;
83433
83749
  address: string | null;
@@ -83448,12 +83764,14 @@ export declare const platformContract: {
83448
83764
  accessToken?: string | undefined;
83449
83765
  channelSecret?: string | undefined;
83450
83766
  additionalCredentials?: any;
83767
+ lineRichMenuId?: string | null | undefined;
83451
83768
  };
83452
83769
  status: boolean;
83453
83770
  brandName: string;
83454
83771
  platformId: string;
83455
83772
  connectedUserName?: string | null | undefined;
83456
83773
  connectedUserId?: string | null | undefined;
83774
+ lineRichMenuId?: string | null | undefined;
83457
83775
  actor?: {
83458
83776
  id: string;
83459
83777
  address: string | null;
@@ -83510,24 +83828,28 @@ export declare const platformContract: {
83510
83828
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
83511
83829
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
83512
83830
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
83831
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83513
83832
  }, "strip", import("zod").ZodTypeAny, {
83514
83833
  id: string;
83515
83834
  name: string;
83516
83835
  accessToken?: string | undefined;
83517
83836
  channelSecret?: string | undefined;
83518
83837
  additionalCredentials?: any;
83838
+ lineRichMenuId?: string | null | undefined;
83519
83839
  }, {
83520
83840
  id: string;
83521
83841
  name: string;
83522
83842
  accessToken?: string | undefined;
83523
83843
  channelSecret?: string | undefined;
83524
83844
  additionalCredentials?: any;
83845
+ lineRichMenuId?: string | null | undefined;
83525
83846
  }>;
83526
83847
  platformId: import("zod").ZodString;
83527
83848
  brandName: import("zod").ZodString;
83528
83849
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
83529
83850
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83530
83851
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83852
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83531
83853
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
83532
83854
  id: import("zod").ZodString;
83533
83855
  name: import("zod").ZodString;
@@ -83557,12 +83879,14 @@ export declare const platformContract: {
83557
83879
  accessToken?: string | undefined;
83558
83880
  channelSecret?: string | undefined;
83559
83881
  additionalCredentials?: any;
83882
+ lineRichMenuId?: string | null | undefined;
83560
83883
  };
83561
83884
  status: boolean;
83562
83885
  brandName: string;
83563
83886
  platformId: string;
83564
83887
  connectedUserName?: string | null | undefined;
83565
83888
  connectedUserId?: string | null | undefined;
83889
+ lineRichMenuId?: string | null | undefined;
83566
83890
  actor?: {
83567
83891
  id: string;
83568
83892
  address: string | null;
@@ -83580,12 +83904,14 @@ export declare const platformContract: {
83580
83904
  accessToken?: string | undefined;
83581
83905
  channelSecret?: string | undefined;
83582
83906
  additionalCredentials?: any;
83907
+ lineRichMenuId?: string | null | undefined;
83583
83908
  };
83584
83909
  status: boolean;
83585
83910
  brandName: string;
83586
83911
  platformId: string;
83587
83912
  connectedUserName?: string | null | undefined;
83588
83913
  connectedUserId?: string | null | undefined;
83914
+ lineRichMenuId?: string | null | undefined;
83589
83915
  actor?: {
83590
83916
  id: string;
83591
83917
  address: string | null;
@@ -83605,12 +83931,14 @@ export declare const platformContract: {
83605
83931
  accessToken?: string | undefined;
83606
83932
  channelSecret?: string | undefined;
83607
83933
  additionalCredentials?: any;
83934
+ lineRichMenuId?: string | null | undefined;
83608
83935
  };
83609
83936
  status: boolean;
83610
83937
  brandName: string;
83611
83938
  platformId: string;
83612
83939
  connectedUserName?: string | null | undefined;
83613
83940
  connectedUserId?: string | null | undefined;
83941
+ lineRichMenuId?: string | null | undefined;
83614
83942
  actor?: {
83615
83943
  id: string;
83616
83944
  address: string | null;
@@ -83631,12 +83959,14 @@ export declare const platformContract: {
83631
83959
  accessToken?: string | undefined;
83632
83960
  channelSecret?: string | undefined;
83633
83961
  additionalCredentials?: any;
83962
+ lineRichMenuId?: string | null | undefined;
83634
83963
  };
83635
83964
  status: boolean;
83636
83965
  brandName: string;
83637
83966
  platformId: string;
83638
83967
  connectedUserName?: string | null | undefined;
83639
83968
  connectedUserId?: string | null | undefined;
83969
+ lineRichMenuId?: string | null | undefined;
83640
83970
  actor?: {
83641
83971
  id: string;
83642
83972
  address: string | null;
@@ -83693,24 +84023,28 @@ export declare const platformContract: {
83693
84023
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
83694
84024
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
83695
84025
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
84026
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83696
84027
  }, "strip", import("zod").ZodTypeAny, {
83697
84028
  id: string;
83698
84029
  name: string;
83699
84030
  accessToken?: string | undefined;
83700
84031
  channelSecret?: string | undefined;
83701
84032
  additionalCredentials?: any;
84033
+ lineRichMenuId?: string | null | undefined;
83702
84034
  }, {
83703
84035
  id: string;
83704
84036
  name: string;
83705
84037
  accessToken?: string | undefined;
83706
84038
  channelSecret?: string | undefined;
83707
84039
  additionalCredentials?: any;
84040
+ lineRichMenuId?: string | null | undefined;
83708
84041
  }>;
83709
84042
  platformId: import("zod").ZodString;
83710
84043
  brandName: import("zod").ZodString;
83711
84044
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
83712
84045
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83713
84046
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
84047
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83714
84048
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
83715
84049
  id: import("zod").ZodString;
83716
84050
  name: import("zod").ZodString;
@@ -83740,12 +84074,14 @@ export declare const platformContract: {
83740
84074
  accessToken?: string | undefined;
83741
84075
  channelSecret?: string | undefined;
83742
84076
  additionalCredentials?: any;
84077
+ lineRichMenuId?: string | null | undefined;
83743
84078
  };
83744
84079
  status: boolean;
83745
84080
  brandName: string;
83746
84081
  platformId: string;
83747
84082
  connectedUserName?: string | null | undefined;
83748
84083
  connectedUserId?: string | null | undefined;
84084
+ lineRichMenuId?: string | null | undefined;
83749
84085
  actor?: {
83750
84086
  id: string;
83751
84087
  address: string | null;
@@ -83763,12 +84099,14 @@ export declare const platformContract: {
83763
84099
  accessToken?: string | undefined;
83764
84100
  channelSecret?: string | undefined;
83765
84101
  additionalCredentials?: any;
84102
+ lineRichMenuId?: string | null | undefined;
83766
84103
  };
83767
84104
  status: boolean;
83768
84105
  brandName: string;
83769
84106
  platformId: string;
83770
84107
  connectedUserName?: string | null | undefined;
83771
84108
  connectedUserId?: string | null | undefined;
84109
+ lineRichMenuId?: string | null | undefined;
83772
84110
  actor?: {
83773
84111
  id: string;
83774
84112
  address: string | null;
@@ -83788,12 +84126,14 @@ export declare const platformContract: {
83788
84126
  accessToken?: string | undefined;
83789
84127
  channelSecret?: string | undefined;
83790
84128
  additionalCredentials?: any;
84129
+ lineRichMenuId?: string | null | undefined;
83791
84130
  };
83792
84131
  status: boolean;
83793
84132
  brandName: string;
83794
84133
  platformId: string;
83795
84134
  connectedUserName?: string | null | undefined;
83796
84135
  connectedUserId?: string | null | undefined;
84136
+ lineRichMenuId?: string | null | undefined;
83797
84137
  actor?: {
83798
84138
  id: string;
83799
84139
  address: string | null;
@@ -83814,12 +84154,14 @@ export declare const platformContract: {
83814
84154
  accessToken?: string | undefined;
83815
84155
  channelSecret?: string | undefined;
83816
84156
  additionalCredentials?: any;
84157
+ lineRichMenuId?: string | null | undefined;
83817
84158
  };
83818
84159
  status: boolean;
83819
84160
  brandName: string;
83820
84161
  platformId: string;
83821
84162
  connectedUserName?: string | null | undefined;
83822
84163
  connectedUserId?: string | null | undefined;
84164
+ lineRichMenuId?: string | null | undefined;
83823
84165
  actor?: {
83824
84166
  id: string;
83825
84167
  address: string | null;
@@ -83853,6 +84195,39 @@ export declare const platformContract: {
83853
84195
  };
83854
84196
  path: "/delete/:channelId";
83855
84197
  };
84198
+ createUserLevelRichMenu: {
84199
+ body: import("zod").ZodObject<{
84200
+ linePlatformUserId: import("zod").ZodString;
84201
+ channelId: import("zod").ZodString;
84202
+ }, "strip", import("zod").ZodTypeAny, {
84203
+ channelId: string;
84204
+ linePlatformUserId: string;
84205
+ }, {
84206
+ channelId: string;
84207
+ linePlatformUserId: string;
84208
+ }>;
84209
+ method: "POST";
84210
+ responses: {
84211
+ 200: import("zod").ZodObject<{
84212
+ requestId: import("zod").ZodString;
84213
+ }, "strip", import("zod").ZodTypeAny, {
84214
+ requestId: string;
84215
+ }, {
84216
+ requestId: string;
84217
+ }>;
84218
+ 500: import("zod").ZodObject<{
84219
+ message: import("zod").ZodString;
84220
+ error: import("zod").ZodAny;
84221
+ }, "strip", import("zod").ZodTypeAny, {
84222
+ message: string;
84223
+ error?: any;
84224
+ }, {
84225
+ message: string;
84226
+ error?: any;
84227
+ }>;
84228
+ };
84229
+ path: "/create-user-level-rich-menu";
84230
+ };
83856
84231
  };
83857
84232
  messenger: {
83858
84233
  sendMessage: {
@@ -83991,24 +84366,28 @@ export declare const platformContract: {
83991
84366
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
83992
84367
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
83993
84368
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
84369
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
83994
84370
  }, "strip", import("zod").ZodTypeAny, {
83995
84371
  id: string;
83996
84372
  name: string;
83997
84373
  accessToken?: string | undefined;
83998
84374
  channelSecret?: string | undefined;
83999
84375
  additionalCredentials?: any;
84376
+ lineRichMenuId?: string | null | undefined;
84000
84377
  }, {
84001
84378
  id: string;
84002
84379
  name: string;
84003
84380
  accessToken?: string | undefined;
84004
84381
  channelSecret?: string | undefined;
84005
84382
  additionalCredentials?: any;
84383
+ lineRichMenuId?: string | null | undefined;
84006
84384
  }>;
84007
84385
  platformId: import("zod").ZodString;
84008
84386
  brandName: import("zod").ZodString;
84009
84387
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
84010
84388
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
84011
84389
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
84390
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
84012
84391
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
84013
84392
  id: import("zod").ZodString;
84014
84393
  name: import("zod").ZodString;
@@ -84038,12 +84417,14 @@ export declare const platformContract: {
84038
84417
  accessToken?: string | undefined;
84039
84418
  channelSecret?: string | undefined;
84040
84419
  additionalCredentials?: any;
84420
+ lineRichMenuId?: string | null | undefined;
84041
84421
  };
84042
84422
  status: boolean;
84043
84423
  brandName: string;
84044
84424
  platformId: string;
84045
84425
  connectedUserName?: string | null | undefined;
84046
84426
  connectedUserId?: string | null | undefined;
84427
+ lineRichMenuId?: string | null | undefined;
84047
84428
  actor?: {
84048
84429
  id: string;
84049
84430
  address: string | null;
@@ -84061,12 +84442,14 @@ export declare const platformContract: {
84061
84442
  accessToken?: string | undefined;
84062
84443
  channelSecret?: string | undefined;
84063
84444
  additionalCredentials?: any;
84445
+ lineRichMenuId?: string | null | undefined;
84064
84446
  };
84065
84447
  status: boolean;
84066
84448
  brandName: string;
84067
84449
  platformId: string;
84068
84450
  connectedUserName?: string | null | undefined;
84069
84451
  connectedUserId?: string | null | undefined;
84452
+ lineRichMenuId?: string | null | undefined;
84070
84453
  actor?: {
84071
84454
  id: string;
84072
84455
  address: string | null;
@@ -84088,12 +84471,14 @@ export declare const platformContract: {
84088
84471
  accessToken?: string | undefined;
84089
84472
  channelSecret?: string | undefined;
84090
84473
  additionalCredentials?: any;
84474
+ lineRichMenuId?: string | null | undefined;
84091
84475
  };
84092
84476
  status: boolean;
84093
84477
  brandName: string;
84094
84478
  platformId: string;
84095
84479
  connectedUserName?: string | null | undefined;
84096
84480
  connectedUserId?: string | null | undefined;
84481
+ lineRichMenuId?: string | null | undefined;
84097
84482
  actor?: {
84098
84483
  id: string;
84099
84484
  address: string | null;
@@ -84154,12 +84539,14 @@ export declare const platformContract: {
84154
84539
  accessToken?: string | undefined;
84155
84540
  channelSecret?: string | undefined;
84156
84541
  additionalCredentials?: any;
84542
+ lineRichMenuId?: string | null | undefined;
84157
84543
  };
84158
84544
  status: boolean;
84159
84545
  brandName: string;
84160
84546
  platformId: string;
84161
84547
  connectedUserName?: string | null | undefined;
84162
84548
  connectedUserId?: string | null | undefined;
84549
+ lineRichMenuId?: string | null | undefined;
84163
84550
  actor?: {
84164
84551
  id: string;
84165
84552
  address: string | null;
@@ -84360,12 +84747,14 @@ export declare const platformContract: {
84360
84747
  accessToken?: string | undefined;
84361
84748
  channelSecret?: string | undefined;
84362
84749
  additionalCredentials?: any;
84750
+ lineRichMenuId?: string | null | undefined;
84363
84751
  };
84364
84752
  status: boolean;
84365
84753
  brandName: string;
84366
84754
  platformId: string;
84367
84755
  connectedUserName?: string | null | undefined;
84368
84756
  connectedUserId?: string | null | undefined;
84757
+ lineRichMenuId?: string | null | undefined;
84369
84758
  actor?: {
84370
84759
  id: string;
84371
84760
  address: string | null;
@@ -84458,12 +84847,14 @@ export declare const platformContract: {
84458
84847
  accessToken?: string | undefined;
84459
84848
  channelSecret?: string | undefined;
84460
84849
  additionalCredentials?: any;
84850
+ lineRichMenuId?: string | null | undefined;
84461
84851
  };
84462
84852
  status: boolean;
84463
84853
  brandName: string;
84464
84854
  platformId: string;
84465
84855
  connectedUserName?: string | null | undefined;
84466
84856
  connectedUserId?: string | null | undefined;
84857
+ lineRichMenuId?: string | null | undefined;
84467
84858
  actor?: {
84468
84859
  id: string;
84469
84860
  address: string | null;
@@ -85908,18 +86299,21 @@ export declare const platformContract: {
85908
86299
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
85909
86300
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
85910
86301
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
86302
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
85911
86303
  }, "strip", import("zod").ZodTypeAny, {
85912
86304
  id: string;
85913
86305
  name: string;
85914
86306
  accessToken?: string | undefined;
85915
86307
  channelSecret?: string | undefined;
85916
86308
  additionalCredentials?: any;
86309
+ lineRichMenuId?: string | null | undefined;
85917
86310
  }, {
85918
86311
  id: string;
85919
86312
  name: string;
85920
86313
  accessToken?: string | undefined;
85921
86314
  channelSecret?: string | undefined;
85922
86315
  additionalCredentials?: any;
86316
+ lineRichMenuId?: string | null | undefined;
85923
86317
  }>;
85924
86318
  brandName: import("zod").ZodString;
85925
86319
  platformId: import("zod").ZodString;
@@ -86160,6 +86554,7 @@ export declare const platformContract: {
86160
86554
  accessToken?: string | undefined;
86161
86555
  channelSecret?: string | undefined;
86162
86556
  additionalCredentials?: any;
86557
+ lineRichMenuId?: string | null | undefined;
86163
86558
  };
86164
86559
  status: boolean;
86165
86560
  createdAt: Date;
@@ -86231,6 +86626,7 @@ export declare const platformContract: {
86231
86626
  accessToken?: string | undefined;
86232
86627
  channelSecret?: string | undefined;
86233
86628
  additionalCredentials?: any;
86629
+ lineRichMenuId?: string | null | undefined;
86234
86630
  };
86235
86631
  status: boolean;
86236
86632
  createdAt: Date;
@@ -86749,6 +87145,7 @@ export declare const platformContract: {
86749
87145
  accessToken?: string | undefined;
86750
87146
  channelSecret?: string | undefined;
86751
87147
  additionalCredentials?: any;
87148
+ lineRichMenuId?: string | null | undefined;
86752
87149
  };
86753
87150
  status: boolean;
86754
87151
  createdAt: Date;
@@ -87115,6 +87512,7 @@ export declare const platformContract: {
87115
87512
  accessToken?: string | undefined;
87116
87513
  channelSecret?: string | undefined;
87117
87514
  additionalCredentials?: any;
87515
+ lineRichMenuId?: string | null | undefined;
87118
87516
  };
87119
87517
  status: boolean;
87120
87518
  createdAt: Date;
@@ -89252,6 +89650,7 @@ export declare const platformContract: {
89252
89650
  accessToken?: string | undefined;
89253
89651
  channelSecret?: string | undefined;
89254
89652
  additionalCredentials?: any;
89653
+ lineRichMenuId?: string | null | undefined;
89255
89654
  };
89256
89655
  status: boolean;
89257
89656
  createdAt: Date;
@@ -89953,6 +90352,7 @@ export declare const platformContract: {
89953
90352
  accessToken?: string | undefined;
89954
90353
  channelSecret?: string | undefined;
89955
90354
  additionalCredentials?: any;
90355
+ lineRichMenuId?: string | null | undefined;
89956
90356
  };
89957
90357
  status: boolean;
89958
90358
  createdAt: Date;
@@ -90656,6 +91056,7 @@ export declare const platformContract: {
90656
91056
  accessToken?: string | undefined;
90657
91057
  channelSecret?: string | undefined;
90658
91058
  additionalCredentials?: any;
91059
+ lineRichMenuId?: string | null | undefined;
90659
91060
  };
90660
91061
  status: boolean;
90661
91062
  createdAt: Date;
@@ -91360,6 +91761,7 @@ export declare const platformContract: {
91360
91761
  accessToken?: string | undefined;
91361
91762
  channelSecret?: string | undefined;
91362
91763
  additionalCredentials?: any;
91764
+ lineRichMenuId?: string | null | undefined;
91363
91765
  };
91364
91766
  status: boolean;
91365
91767
  createdAt: Date;
@@ -91976,24 +92378,28 @@ export declare const platformContract: {
91976
92378
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
91977
92379
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
91978
92380
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
92381
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
91979
92382
  }, "strip", import("zod").ZodTypeAny, {
91980
92383
  id: string;
91981
92384
  name: string;
91982
92385
  accessToken?: string | undefined;
91983
92386
  channelSecret?: string | undefined;
91984
92387
  additionalCredentials?: any;
92388
+ lineRichMenuId?: string | null | undefined;
91985
92389
  }, {
91986
92390
  id: string;
91987
92391
  name: string;
91988
92392
  accessToken?: string | undefined;
91989
92393
  channelSecret?: string | undefined;
91990
92394
  additionalCredentials?: any;
92395
+ lineRichMenuId?: string | null | undefined;
91991
92396
  }>>;
91992
92397
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
91993
92398
  brandName: import("zod").ZodOptional<import("zod").ZodString>;
91994
92399
  status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>>;
91995
92400
  connectedUserName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
91996
92401
  connectedUserId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
92402
+ lineRichMenuId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
91997
92403
  actor: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodObject<{
91998
92404
  id: import("zod").ZodString;
91999
92405
  name: import("zod").ZodString;
@@ -92023,12 +92429,14 @@ export declare const platformContract: {
92023
92429
  accessToken?: string | undefined;
92024
92430
  channelSecret?: string | undefined;
92025
92431
  additionalCredentials?: any;
92432
+ lineRichMenuId?: string | null | undefined;
92026
92433
  } | undefined;
92027
92434
  platformId?: string | undefined;
92028
92435
  brandName?: string | undefined;
92029
92436
  status?: boolean | undefined;
92030
92437
  connectedUserName?: string | null | undefined;
92031
92438
  connectedUserId?: string | null | undefined;
92439
+ lineRichMenuId?: string | null | undefined;
92032
92440
  actor?: {
92033
92441
  id: string;
92034
92442
  address: string | null;
@@ -92046,12 +92454,14 @@ export declare const platformContract: {
92046
92454
  accessToken?: string | undefined;
92047
92455
  channelSecret?: string | undefined;
92048
92456
  additionalCredentials?: any;
92457
+ lineRichMenuId?: string | null | undefined;
92049
92458
  } | undefined;
92050
92459
  platformId?: string | undefined;
92051
92460
  brandName?: string | undefined;
92052
92461
  status?: boolean | undefined;
92053
92462
  connectedUserName?: string | null | undefined;
92054
92463
  connectedUserId?: string | null | undefined;
92464
+ lineRichMenuId?: string | null | undefined;
92055
92465
  actor?: {
92056
92466
  id: string;
92057
92467
  address: string | null;
@@ -92074,24 +92484,28 @@ export declare const platformContract: {
92074
92484
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
92075
92485
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
92076
92486
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
92487
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92077
92488
  }, "strip", import("zod").ZodTypeAny, {
92078
92489
  id: string;
92079
92490
  name: string;
92080
92491
  accessToken?: string | undefined;
92081
92492
  channelSecret?: string | undefined;
92082
92493
  additionalCredentials?: any;
92494
+ lineRichMenuId?: string | null | undefined;
92083
92495
  }, {
92084
92496
  id: string;
92085
92497
  name: string;
92086
92498
  accessToken?: string | undefined;
92087
92499
  channelSecret?: string | undefined;
92088
92500
  additionalCredentials?: any;
92501
+ lineRichMenuId?: string | null | undefined;
92089
92502
  }>;
92090
92503
  platformId: import("zod").ZodString;
92091
92504
  brandName: import("zod").ZodString;
92092
92505
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
92093
92506
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92094
92507
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92508
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92095
92509
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
92096
92510
  id: import("zod").ZodString;
92097
92511
  name: import("zod").ZodString;
@@ -92121,12 +92535,14 @@ export declare const platformContract: {
92121
92535
  accessToken?: string | undefined;
92122
92536
  channelSecret?: string | undefined;
92123
92537
  additionalCredentials?: any;
92538
+ lineRichMenuId?: string | null | undefined;
92124
92539
  };
92125
92540
  status: boolean;
92126
92541
  brandName: string;
92127
92542
  platformId: string;
92128
92543
  connectedUserName?: string | null | undefined;
92129
92544
  connectedUserId?: string | null | undefined;
92545
+ lineRichMenuId?: string | null | undefined;
92130
92546
  actor?: {
92131
92547
  id: string;
92132
92548
  address: string | null;
@@ -92144,12 +92560,14 @@ export declare const platformContract: {
92144
92560
  accessToken?: string | undefined;
92145
92561
  channelSecret?: string | undefined;
92146
92562
  additionalCredentials?: any;
92563
+ lineRichMenuId?: string | null | undefined;
92147
92564
  };
92148
92565
  status: boolean;
92149
92566
  brandName: string;
92150
92567
  platformId: string;
92151
92568
  connectedUserName?: string | null | undefined;
92152
92569
  connectedUserId?: string | null | undefined;
92570
+ lineRichMenuId?: string | null | undefined;
92153
92571
  actor?: {
92154
92572
  id: string;
92155
92573
  address: string | null;
@@ -92169,12 +92587,14 @@ export declare const platformContract: {
92169
92587
  accessToken?: string | undefined;
92170
92588
  channelSecret?: string | undefined;
92171
92589
  additionalCredentials?: any;
92590
+ lineRichMenuId?: string | null | undefined;
92172
92591
  };
92173
92592
  status: boolean;
92174
92593
  brandName: string;
92175
92594
  platformId: string;
92176
92595
  connectedUserName?: string | null | undefined;
92177
92596
  connectedUserId?: string | null | undefined;
92597
+ lineRichMenuId?: string | null | undefined;
92178
92598
  actor?: {
92179
92599
  id: string;
92180
92600
  address: string | null;
@@ -92195,12 +92615,14 @@ export declare const platformContract: {
92195
92615
  accessToken?: string | undefined;
92196
92616
  channelSecret?: string | undefined;
92197
92617
  additionalCredentials?: any;
92618
+ lineRichMenuId?: string | null | undefined;
92198
92619
  };
92199
92620
  status: boolean;
92200
92621
  brandName: string;
92201
92622
  platformId: string;
92202
92623
  connectedUserName?: string | null | undefined;
92203
92624
  connectedUserId?: string | null | undefined;
92625
+ lineRichMenuId?: string | null | undefined;
92204
92626
  actor?: {
92205
92627
  id: string;
92206
92628
  address: string | null;
@@ -92245,24 +92667,28 @@ export declare const platformContract: {
92245
92667
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
92246
92668
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
92247
92669
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
92670
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92248
92671
  }, "strip", import("zod").ZodTypeAny, {
92249
92672
  id: string;
92250
92673
  name: string;
92251
92674
  accessToken?: string | undefined;
92252
92675
  channelSecret?: string | undefined;
92253
92676
  additionalCredentials?: any;
92677
+ lineRichMenuId?: string | null | undefined;
92254
92678
  }, {
92255
92679
  id: string;
92256
92680
  name: string;
92257
92681
  accessToken?: string | undefined;
92258
92682
  channelSecret?: string | undefined;
92259
92683
  additionalCredentials?: any;
92684
+ lineRichMenuId?: string | null | undefined;
92260
92685
  }>>;
92261
92686
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
92262
92687
  brandName: import("zod").ZodOptional<import("zod").ZodString>;
92263
92688
  status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>>;
92264
92689
  connectedUserName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
92265
92690
  connectedUserId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
92691
+ lineRichMenuId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
92266
92692
  actor: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodObject<{
92267
92693
  id: import("zod").ZodString;
92268
92694
  name: import("zod").ZodString;
@@ -92292,12 +92718,14 @@ export declare const platformContract: {
92292
92718
  accessToken?: string | undefined;
92293
92719
  channelSecret?: string | undefined;
92294
92720
  additionalCredentials?: any;
92721
+ lineRichMenuId?: string | null | undefined;
92295
92722
  } | undefined;
92296
92723
  platformId?: string | undefined;
92297
92724
  brandName?: string | undefined;
92298
92725
  status?: boolean | undefined;
92299
92726
  connectedUserName?: string | null | undefined;
92300
92727
  connectedUserId?: string | null | undefined;
92728
+ lineRichMenuId?: string | null | undefined;
92301
92729
  actor?: {
92302
92730
  id: string;
92303
92731
  address: string | null;
@@ -92315,12 +92743,14 @@ export declare const platformContract: {
92315
92743
  accessToken?: string | undefined;
92316
92744
  channelSecret?: string | undefined;
92317
92745
  additionalCredentials?: any;
92746
+ lineRichMenuId?: string | null | undefined;
92318
92747
  } | undefined;
92319
92748
  platformId?: string | undefined;
92320
92749
  brandName?: string | undefined;
92321
92750
  status?: boolean | undefined;
92322
92751
  connectedUserName?: string | null | undefined;
92323
92752
  connectedUserId?: string | null | undefined;
92753
+ lineRichMenuId?: string | null | undefined;
92324
92754
  actor?: {
92325
92755
  id: string;
92326
92756
  address: string | null;
@@ -92343,24 +92773,28 @@ export declare const platformContract: {
92343
92773
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
92344
92774
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
92345
92775
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
92776
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92346
92777
  }, "strip", import("zod").ZodTypeAny, {
92347
92778
  id: string;
92348
92779
  name: string;
92349
92780
  accessToken?: string | undefined;
92350
92781
  channelSecret?: string | undefined;
92351
92782
  additionalCredentials?: any;
92783
+ lineRichMenuId?: string | null | undefined;
92352
92784
  }, {
92353
92785
  id: string;
92354
92786
  name: string;
92355
92787
  accessToken?: string | undefined;
92356
92788
  channelSecret?: string | undefined;
92357
92789
  additionalCredentials?: any;
92790
+ lineRichMenuId?: string | null | undefined;
92358
92791
  }>;
92359
92792
  platformId: import("zod").ZodString;
92360
92793
  brandName: import("zod").ZodString;
92361
92794
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
92362
92795
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92363
92796
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92797
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92364
92798
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
92365
92799
  id: import("zod").ZodString;
92366
92800
  name: import("zod").ZodString;
@@ -92390,12 +92824,14 @@ export declare const platformContract: {
92390
92824
  accessToken?: string | undefined;
92391
92825
  channelSecret?: string | undefined;
92392
92826
  additionalCredentials?: any;
92827
+ lineRichMenuId?: string | null | undefined;
92393
92828
  };
92394
92829
  status: boolean;
92395
92830
  brandName: string;
92396
92831
  platformId: string;
92397
92832
  connectedUserName?: string | null | undefined;
92398
92833
  connectedUserId?: string | null | undefined;
92834
+ lineRichMenuId?: string | null | undefined;
92399
92835
  actor?: {
92400
92836
  id: string;
92401
92837
  address: string | null;
@@ -92413,12 +92849,14 @@ export declare const platformContract: {
92413
92849
  accessToken?: string | undefined;
92414
92850
  channelSecret?: string | undefined;
92415
92851
  additionalCredentials?: any;
92852
+ lineRichMenuId?: string | null | undefined;
92416
92853
  };
92417
92854
  status: boolean;
92418
92855
  brandName: string;
92419
92856
  platformId: string;
92420
92857
  connectedUserName?: string | null | undefined;
92421
92858
  connectedUserId?: string | null | undefined;
92859
+ lineRichMenuId?: string | null | undefined;
92422
92860
  actor?: {
92423
92861
  id: string;
92424
92862
  address: string | null;
@@ -92438,12 +92876,14 @@ export declare const platformContract: {
92438
92876
  accessToken?: string | undefined;
92439
92877
  channelSecret?: string | undefined;
92440
92878
  additionalCredentials?: any;
92879
+ lineRichMenuId?: string | null | undefined;
92441
92880
  };
92442
92881
  status: boolean;
92443
92882
  brandName: string;
92444
92883
  platformId: string;
92445
92884
  connectedUserName?: string | null | undefined;
92446
92885
  connectedUserId?: string | null | undefined;
92886
+ lineRichMenuId?: string | null | undefined;
92447
92887
  actor?: {
92448
92888
  id: string;
92449
92889
  address: string | null;
@@ -92464,12 +92904,14 @@ export declare const platformContract: {
92464
92904
  accessToken?: string | undefined;
92465
92905
  channelSecret?: string | undefined;
92466
92906
  additionalCredentials?: any;
92907
+ lineRichMenuId?: string | null | undefined;
92467
92908
  };
92468
92909
  status: boolean;
92469
92910
  brandName: string;
92470
92911
  platformId: string;
92471
92912
  connectedUserName?: string | null | undefined;
92472
92913
  connectedUserId?: string | null | undefined;
92914
+ lineRichMenuId?: string | null | undefined;
92473
92915
  actor?: {
92474
92916
  id: string;
92475
92917
  address: string | null;
@@ -92526,24 +92968,28 @@ export declare const platformContract: {
92526
92968
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
92527
92969
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
92528
92970
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
92971
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92529
92972
  }, "strip", import("zod").ZodTypeAny, {
92530
92973
  id: string;
92531
92974
  name: string;
92532
92975
  accessToken?: string | undefined;
92533
92976
  channelSecret?: string | undefined;
92534
92977
  additionalCredentials?: any;
92978
+ lineRichMenuId?: string | null | undefined;
92535
92979
  }, {
92536
92980
  id: string;
92537
92981
  name: string;
92538
92982
  accessToken?: string | undefined;
92539
92983
  channelSecret?: string | undefined;
92540
92984
  additionalCredentials?: any;
92985
+ lineRichMenuId?: string | null | undefined;
92541
92986
  }>;
92542
92987
  platformId: import("zod").ZodString;
92543
92988
  brandName: import("zod").ZodString;
92544
92989
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
92545
92990
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92546
92991
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92992
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92547
92993
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
92548
92994
  id: import("zod").ZodString;
92549
92995
  name: import("zod").ZodString;
@@ -92573,12 +93019,14 @@ export declare const platformContract: {
92573
93019
  accessToken?: string | undefined;
92574
93020
  channelSecret?: string | undefined;
92575
93021
  additionalCredentials?: any;
93022
+ lineRichMenuId?: string | null | undefined;
92576
93023
  };
92577
93024
  status: boolean;
92578
93025
  brandName: string;
92579
93026
  platformId: string;
92580
93027
  connectedUserName?: string | null | undefined;
92581
93028
  connectedUserId?: string | null | undefined;
93029
+ lineRichMenuId?: string | null | undefined;
92582
93030
  actor?: {
92583
93031
  id: string;
92584
93032
  address: string | null;
@@ -92596,12 +93044,14 @@ export declare const platformContract: {
92596
93044
  accessToken?: string | undefined;
92597
93045
  channelSecret?: string | undefined;
92598
93046
  additionalCredentials?: any;
93047
+ lineRichMenuId?: string | null | undefined;
92599
93048
  };
92600
93049
  status: boolean;
92601
93050
  brandName: string;
92602
93051
  platformId: string;
92603
93052
  connectedUserName?: string | null | undefined;
92604
93053
  connectedUserId?: string | null | undefined;
93054
+ lineRichMenuId?: string | null | undefined;
92605
93055
  actor?: {
92606
93056
  id: string;
92607
93057
  address: string | null;
@@ -92621,12 +93071,14 @@ export declare const platformContract: {
92621
93071
  accessToken?: string | undefined;
92622
93072
  channelSecret?: string | undefined;
92623
93073
  additionalCredentials?: any;
93074
+ lineRichMenuId?: string | null | undefined;
92624
93075
  };
92625
93076
  status: boolean;
92626
93077
  brandName: string;
92627
93078
  platformId: string;
92628
93079
  connectedUserName?: string | null | undefined;
92629
93080
  connectedUserId?: string | null | undefined;
93081
+ lineRichMenuId?: string | null | undefined;
92630
93082
  actor?: {
92631
93083
  id: string;
92632
93084
  address: string | null;
@@ -92647,12 +93099,14 @@ export declare const platformContract: {
92647
93099
  accessToken?: string | undefined;
92648
93100
  channelSecret?: string | undefined;
92649
93101
  additionalCredentials?: any;
93102
+ lineRichMenuId?: string | null | undefined;
92650
93103
  };
92651
93104
  status: boolean;
92652
93105
  brandName: string;
92653
93106
  platformId: string;
92654
93107
  connectedUserName?: string | null | undefined;
92655
93108
  connectedUserId?: string | null | undefined;
93109
+ lineRichMenuId?: string | null | undefined;
92656
93110
  actor?: {
92657
93111
  id: string;
92658
93112
  address: string | null;
@@ -92709,24 +93163,28 @@ export declare const platformContract: {
92709
93163
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
92710
93164
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
92711
93165
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
93166
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92712
93167
  }, "strip", import("zod").ZodTypeAny, {
92713
93168
  id: string;
92714
93169
  name: string;
92715
93170
  accessToken?: string | undefined;
92716
93171
  channelSecret?: string | undefined;
92717
93172
  additionalCredentials?: any;
93173
+ lineRichMenuId?: string | null | undefined;
92718
93174
  }, {
92719
93175
  id: string;
92720
93176
  name: string;
92721
93177
  accessToken?: string | undefined;
92722
93178
  channelSecret?: string | undefined;
92723
93179
  additionalCredentials?: any;
93180
+ lineRichMenuId?: string | null | undefined;
92724
93181
  }>;
92725
93182
  platformId: import("zod").ZodString;
92726
93183
  brandName: import("zod").ZodString;
92727
93184
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
92728
93185
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92729
93186
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
93187
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92730
93188
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
92731
93189
  id: import("zod").ZodString;
92732
93190
  name: import("zod").ZodString;
@@ -92756,12 +93214,14 @@ export declare const platformContract: {
92756
93214
  accessToken?: string | undefined;
92757
93215
  channelSecret?: string | undefined;
92758
93216
  additionalCredentials?: any;
93217
+ lineRichMenuId?: string | null | undefined;
92759
93218
  };
92760
93219
  status: boolean;
92761
93220
  brandName: string;
92762
93221
  platformId: string;
92763
93222
  connectedUserName?: string | null | undefined;
92764
93223
  connectedUserId?: string | null | undefined;
93224
+ lineRichMenuId?: string | null | undefined;
92765
93225
  actor?: {
92766
93226
  id: string;
92767
93227
  address: string | null;
@@ -92779,12 +93239,14 @@ export declare const platformContract: {
92779
93239
  accessToken?: string | undefined;
92780
93240
  channelSecret?: string | undefined;
92781
93241
  additionalCredentials?: any;
93242
+ lineRichMenuId?: string | null | undefined;
92782
93243
  };
92783
93244
  status: boolean;
92784
93245
  brandName: string;
92785
93246
  platformId: string;
92786
93247
  connectedUserName?: string | null | undefined;
92787
93248
  connectedUserId?: string | null | undefined;
93249
+ lineRichMenuId?: string | null | undefined;
92788
93250
  actor?: {
92789
93251
  id: string;
92790
93252
  address: string | null;
@@ -92804,12 +93266,14 @@ export declare const platformContract: {
92804
93266
  accessToken?: string | undefined;
92805
93267
  channelSecret?: string | undefined;
92806
93268
  additionalCredentials?: any;
93269
+ lineRichMenuId?: string | null | undefined;
92807
93270
  };
92808
93271
  status: boolean;
92809
93272
  brandName: string;
92810
93273
  platformId: string;
92811
93274
  connectedUserName?: string | null | undefined;
92812
93275
  connectedUserId?: string | null | undefined;
93276
+ lineRichMenuId?: string | null | undefined;
92813
93277
  actor?: {
92814
93278
  id: string;
92815
93279
  address: string | null;
@@ -92830,12 +93294,14 @@ export declare const platformContract: {
92830
93294
  accessToken?: string | undefined;
92831
93295
  channelSecret?: string | undefined;
92832
93296
  additionalCredentials?: any;
93297
+ lineRichMenuId?: string | null | undefined;
92833
93298
  };
92834
93299
  status: boolean;
92835
93300
  brandName: string;
92836
93301
  platformId: string;
92837
93302
  connectedUserName?: string | null | undefined;
92838
93303
  connectedUserId?: string | null | undefined;
93304
+ lineRichMenuId?: string | null | undefined;
92839
93305
  actor?: {
92840
93306
  id: string;
92841
93307
  address: string | null;
@@ -92879,18 +93345,21 @@ export declare const platformContract: {
92879
93345
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
92880
93346
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
92881
93347
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
93348
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92882
93349
  }, "strip", import("zod").ZodTypeAny, {
92883
93350
  id: string;
92884
93351
  name: string;
92885
93352
  accessToken?: string | undefined;
92886
93353
  channelSecret?: string | undefined;
92887
93354
  additionalCredentials?: any;
93355
+ lineRichMenuId?: string | null | undefined;
92888
93356
  }, {
92889
93357
  id: string;
92890
93358
  name: string;
92891
93359
  accessToken?: string | undefined;
92892
93360
  channelSecret?: string | undefined;
92893
93361
  additionalCredentials?: any;
93362
+ lineRichMenuId?: string | null | undefined;
92894
93363
  }>;
92895
93364
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
92896
93365
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -92912,6 +93381,7 @@ export declare const platformContract: {
92912
93381
  email: string;
92913
93382
  phone: string | null;
92914
93383
  }>>;
93384
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92915
93385
  brandName: import("zod").ZodString;
92916
93386
  platformId: import("zod").ZodString;
92917
93387
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
@@ -92931,6 +93401,7 @@ export declare const platformContract: {
92931
93401
  accessToken?: string | undefined;
92932
93402
  channelSecret?: string | undefined;
92933
93403
  additionalCredentials?: any;
93404
+ lineRichMenuId?: string | null | undefined;
92934
93405
  };
92935
93406
  status: boolean;
92936
93407
  createdAt: string;
@@ -92946,6 +93417,7 @@ export declare const platformContract: {
92946
93417
  email: string;
92947
93418
  phone: string | null;
92948
93419
  } | undefined;
93420
+ lineRichMenuId?: string | null | undefined;
92949
93421
  connectedUserName?: string | null | undefined;
92950
93422
  connectedUserId?: string | null | undefined;
92951
93423
  }, {
@@ -92958,6 +93430,7 @@ export declare const platformContract: {
92958
93430
  accessToken?: string | undefined;
92959
93431
  channelSecret?: string | undefined;
92960
93432
  additionalCredentials?: any;
93433
+ lineRichMenuId?: string | null | undefined;
92961
93434
  };
92962
93435
  status: boolean;
92963
93436
  createdAt: string;
@@ -92973,6 +93446,7 @@ export declare const platformContract: {
92973
93446
  email: string;
92974
93447
  phone: string | null;
92975
93448
  } | undefined;
93449
+ lineRichMenuId?: string | null | undefined;
92976
93450
  connectedUserName?: string | null | undefined;
92977
93451
  connectedUserId?: string | null | undefined;
92978
93452
  }>;
@@ -92990,24 +93464,28 @@ export declare const platformContract: {
92990
93464
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
92991
93465
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
92992
93466
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
93467
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
92993
93468
  }, "strip", import("zod").ZodTypeAny, {
92994
93469
  id: string;
92995
93470
  name: string;
92996
93471
  accessToken?: string | undefined;
92997
93472
  channelSecret?: string | undefined;
92998
93473
  additionalCredentials?: any;
93474
+ lineRichMenuId?: string | null | undefined;
92999
93475
  }, {
93000
93476
  id: string;
93001
93477
  name: string;
93002
93478
  accessToken?: string | undefined;
93003
93479
  channelSecret?: string | undefined;
93004
93480
  additionalCredentials?: any;
93481
+ lineRichMenuId?: string | null | undefined;
93005
93482
  }>;
93006
93483
  platformId: import("zod").ZodString;
93007
93484
  brandName: import("zod").ZodString;
93008
93485
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
93009
93486
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
93010
93487
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
93488
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
93011
93489
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
93012
93490
  id: import("zod").ZodString;
93013
93491
  name: import("zod").ZodString;
@@ -93037,12 +93515,14 @@ export declare const platformContract: {
93037
93515
  accessToken?: string | undefined;
93038
93516
  channelSecret?: string | undefined;
93039
93517
  additionalCredentials?: any;
93518
+ lineRichMenuId?: string | null | undefined;
93040
93519
  };
93041
93520
  status: boolean;
93042
93521
  brandName: string;
93043
93522
  platformId: string;
93044
93523
  connectedUserName?: string | null | undefined;
93045
93524
  connectedUserId?: string | null | undefined;
93525
+ lineRichMenuId?: string | null | undefined;
93046
93526
  actor?: {
93047
93527
  id: string;
93048
93528
  address: string | null;
@@ -93060,12 +93540,14 @@ export declare const platformContract: {
93060
93540
  accessToken?: string | undefined;
93061
93541
  channelSecret?: string | undefined;
93062
93542
  additionalCredentials?: any;
93543
+ lineRichMenuId?: string | null | undefined;
93063
93544
  };
93064
93545
  status: boolean;
93065
93546
  brandName: string;
93066
93547
  platformId: string;
93067
93548
  connectedUserName?: string | null | undefined;
93068
93549
  connectedUserId?: string | null | undefined;
93550
+ lineRichMenuId?: string | null | undefined;
93069
93551
  actor?: {
93070
93552
  id: string;
93071
93553
  address: string | null;
@@ -93085,12 +93567,14 @@ export declare const platformContract: {
93085
93567
  accessToken?: string | undefined;
93086
93568
  channelSecret?: string | undefined;
93087
93569
  additionalCredentials?: any;
93570
+ lineRichMenuId?: string | null | undefined;
93088
93571
  };
93089
93572
  status: boolean;
93090
93573
  brandName: string;
93091
93574
  platformId: string;
93092
93575
  connectedUserName?: string | null | undefined;
93093
93576
  connectedUserId?: string | null | undefined;
93577
+ lineRichMenuId?: string | null | undefined;
93094
93578
  actor?: {
93095
93579
  id: string;
93096
93580
  address: string | null;
@@ -93111,12 +93595,14 @@ export declare const platformContract: {
93111
93595
  accessToken?: string | undefined;
93112
93596
  channelSecret?: string | undefined;
93113
93597
  additionalCredentials?: any;
93598
+ lineRichMenuId?: string | null | undefined;
93114
93599
  };
93115
93600
  status: boolean;
93116
93601
  brandName: string;
93117
93602
  platformId: string;
93118
93603
  connectedUserName?: string | null | undefined;
93119
93604
  connectedUserId?: string | null | undefined;
93605
+ lineRichMenuId?: string | null | undefined;
93120
93606
  actor?: {
93121
93607
  id: string;
93122
93608
  address: string | null;
@@ -93447,24 +93933,28 @@ export declare const platformContract: {
93447
93933
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
93448
93934
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
93449
93935
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
93936
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
93450
93937
  }, "strip", import("zod").ZodTypeAny, {
93451
93938
  id: string;
93452
93939
  name: string;
93453
93940
  accessToken?: string | undefined;
93454
93941
  channelSecret?: string | undefined;
93455
93942
  additionalCredentials?: any;
93943
+ lineRichMenuId?: string | null | undefined;
93456
93944
  }, {
93457
93945
  id: string;
93458
93946
  name: string;
93459
93947
  accessToken?: string | undefined;
93460
93948
  channelSecret?: string | undefined;
93461
93949
  additionalCredentials?: any;
93950
+ lineRichMenuId?: string | null | undefined;
93462
93951
  }>;
93463
93952
  platformId: import("zod").ZodString;
93464
93953
  brandName: import("zod").ZodString;
93465
93954
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
93466
93955
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
93467
93956
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
93957
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
93468
93958
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
93469
93959
  id: import("zod").ZodString;
93470
93960
  name: import("zod").ZodString;
@@ -93494,12 +93984,14 @@ export declare const platformContract: {
93494
93984
  accessToken?: string | undefined;
93495
93985
  channelSecret?: string | undefined;
93496
93986
  additionalCredentials?: any;
93987
+ lineRichMenuId?: string | null | undefined;
93497
93988
  };
93498
93989
  status: boolean;
93499
93990
  brandName: string;
93500
93991
  platformId: string;
93501
93992
  connectedUserName?: string | null | undefined;
93502
93993
  connectedUserId?: string | null | undefined;
93994
+ lineRichMenuId?: string | null | undefined;
93503
93995
  actor?: {
93504
93996
  id: string;
93505
93997
  address: string | null;
@@ -93517,12 +94009,14 @@ export declare const platformContract: {
93517
94009
  accessToken?: string | undefined;
93518
94010
  channelSecret?: string | undefined;
93519
94011
  additionalCredentials?: any;
94012
+ lineRichMenuId?: string | null | undefined;
93520
94013
  };
93521
94014
  status: boolean;
93522
94015
  brandName: string;
93523
94016
  platformId: string;
93524
94017
  connectedUserName?: string | null | undefined;
93525
94018
  connectedUserId?: string | null | undefined;
94019
+ lineRichMenuId?: string | null | undefined;
93526
94020
  actor?: {
93527
94021
  id: string;
93528
94022
  address: string | null;
@@ -93544,12 +94038,14 @@ export declare const platformContract: {
93544
94038
  accessToken?: string | undefined;
93545
94039
  channelSecret?: string | undefined;
93546
94040
  additionalCredentials?: any;
94041
+ lineRichMenuId?: string | null | undefined;
93547
94042
  };
93548
94043
  status: boolean;
93549
94044
  brandName: string;
93550
94045
  platformId: string;
93551
94046
  connectedUserName?: string | null | undefined;
93552
94047
  connectedUserId?: string | null | undefined;
94048
+ lineRichMenuId?: string | null | undefined;
93553
94049
  actor?: {
93554
94050
  id: string;
93555
94051
  address: string | null;
@@ -93610,12 +94106,14 @@ export declare const platformContract: {
93610
94106
  accessToken?: string | undefined;
93611
94107
  channelSecret?: string | undefined;
93612
94108
  additionalCredentials?: any;
94109
+ lineRichMenuId?: string | null | undefined;
93613
94110
  };
93614
94111
  status: boolean;
93615
94112
  brandName: string;
93616
94113
  platformId: string;
93617
94114
  connectedUserName?: string | null | undefined;
93618
94115
  connectedUserId?: string | null | undefined;
94116
+ lineRichMenuId?: string | null | undefined;
93619
94117
  actor?: {
93620
94118
  id: string;
93621
94119
  address: string | null;
@@ -93816,12 +94314,14 @@ export declare const platformContract: {
93816
94314
  accessToken?: string | undefined;
93817
94315
  channelSecret?: string | undefined;
93818
94316
  additionalCredentials?: any;
94317
+ lineRichMenuId?: string | null | undefined;
93819
94318
  };
93820
94319
  status: boolean;
93821
94320
  brandName: string;
93822
94321
  platformId: string;
93823
94322
  connectedUserName?: string | null | undefined;
93824
94323
  connectedUserId?: string | null | undefined;
94324
+ lineRichMenuId?: string | null | undefined;
93825
94325
  actor?: {
93826
94326
  id: string;
93827
94327
  address: string | null;
@@ -93914,12 +94414,14 @@ export declare const platformContract: {
93914
94414
  accessToken?: string | undefined;
93915
94415
  channelSecret?: string | undefined;
93916
94416
  additionalCredentials?: any;
94417
+ lineRichMenuId?: string | null | undefined;
93917
94418
  };
93918
94419
  status: boolean;
93919
94420
  brandName: string;
93920
94421
  platformId: string;
93921
94422
  connectedUserName?: string | null | undefined;
93922
94423
  connectedUserId?: string | null | undefined;
94424
+ lineRichMenuId?: string | null | undefined;
93923
94425
  actor?: {
93924
94426
  id: string;
93925
94427
  address: string | null;
@@ -95364,18 +95866,21 @@ export declare const platformContract: {
95364
95866
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
95365
95867
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
95366
95868
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
95869
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
95367
95870
  }, "strip", import("zod").ZodTypeAny, {
95368
95871
  id: string;
95369
95872
  name: string;
95370
95873
  accessToken?: string | undefined;
95371
95874
  channelSecret?: string | undefined;
95372
95875
  additionalCredentials?: any;
95876
+ lineRichMenuId?: string | null | undefined;
95373
95877
  }, {
95374
95878
  id: string;
95375
95879
  name: string;
95376
95880
  accessToken?: string | undefined;
95377
95881
  channelSecret?: string | undefined;
95378
95882
  additionalCredentials?: any;
95883
+ lineRichMenuId?: string | null | undefined;
95379
95884
  }>;
95380
95885
  brandName: import("zod").ZodString;
95381
95886
  platformId: import("zod").ZodString;
@@ -95616,6 +96121,7 @@ export declare const platformContract: {
95616
96121
  accessToken?: string | undefined;
95617
96122
  channelSecret?: string | undefined;
95618
96123
  additionalCredentials?: any;
96124
+ lineRichMenuId?: string | null | undefined;
95619
96125
  };
95620
96126
  status: boolean;
95621
96127
  createdAt: Date;
@@ -95687,6 +96193,7 @@ export declare const platformContract: {
95687
96193
  accessToken?: string | undefined;
95688
96194
  channelSecret?: string | undefined;
95689
96195
  additionalCredentials?: any;
96196
+ lineRichMenuId?: string | null | undefined;
95690
96197
  };
95691
96198
  status: boolean;
95692
96199
  createdAt: Date;
@@ -96205,6 +96712,7 @@ export declare const platformContract: {
96205
96712
  accessToken?: string | undefined;
96206
96713
  channelSecret?: string | undefined;
96207
96714
  additionalCredentials?: any;
96715
+ lineRichMenuId?: string | null | undefined;
96208
96716
  };
96209
96717
  status: boolean;
96210
96718
  createdAt: Date;
@@ -96571,6 +97079,7 @@ export declare const platformContract: {
96571
97079
  accessToken?: string | undefined;
96572
97080
  channelSecret?: string | undefined;
96573
97081
  additionalCredentials?: any;
97082
+ lineRichMenuId?: string | null | undefined;
96574
97083
  };
96575
97084
  status: boolean;
96576
97085
  createdAt: Date;
@@ -98708,6 +99217,7 @@ export declare const platformContract: {
98708
99217
  accessToken?: string | undefined;
98709
99218
  channelSecret?: string | undefined;
98710
99219
  additionalCredentials?: any;
99220
+ lineRichMenuId?: string | null | undefined;
98711
99221
  };
98712
99222
  status: boolean;
98713
99223
  createdAt: Date;
@@ -99409,6 +99919,7 @@ export declare const platformContract: {
99409
99919
  accessToken?: string | undefined;
99410
99920
  channelSecret?: string | undefined;
99411
99921
  additionalCredentials?: any;
99922
+ lineRichMenuId?: string | null | undefined;
99412
99923
  };
99413
99924
  status: boolean;
99414
99925
  createdAt: Date;
@@ -100112,6 +100623,7 @@ export declare const platformContract: {
100112
100623
  accessToken?: string | undefined;
100113
100624
  channelSecret?: string | undefined;
100114
100625
  additionalCredentials?: any;
100626
+ lineRichMenuId?: string | null | undefined;
100115
100627
  };
100116
100628
  status: boolean;
100117
100629
  createdAt: Date;
@@ -100816,6 +101328,7 @@ export declare const platformContract: {
100816
101328
  accessToken?: string | undefined;
100817
101329
  channelSecret?: string | undefined;
100818
101330
  additionalCredentials?: any;
101331
+ lineRichMenuId?: string | null | undefined;
100819
101332
  };
100820
101333
  status: boolean;
100821
101334
  createdAt: Date;
@@ -101422,24 +101935,28 @@ export declare const platformContract: {
101422
101935
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
101423
101936
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
101424
101937
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
101938
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101425
101939
  }, "strip", import("zod").ZodTypeAny, {
101426
101940
  id: string;
101427
101941
  name: string;
101428
101942
  accessToken?: string | undefined;
101429
101943
  channelSecret?: string | undefined;
101430
101944
  additionalCredentials?: any;
101945
+ lineRichMenuId?: string | null | undefined;
101431
101946
  }, {
101432
101947
  id: string;
101433
101948
  name: string;
101434
101949
  accessToken?: string | undefined;
101435
101950
  channelSecret?: string | undefined;
101436
101951
  additionalCredentials?: any;
101952
+ lineRichMenuId?: string | null | undefined;
101437
101953
  }>>;
101438
101954
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
101439
101955
  brandName: import("zod").ZodOptional<import("zod").ZodString>;
101440
101956
  status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>>;
101441
101957
  connectedUserName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
101442
101958
  connectedUserId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
101959
+ lineRichMenuId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
101443
101960
  actor: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodObject<{
101444
101961
  id: import("zod").ZodString;
101445
101962
  name: import("zod").ZodString;
@@ -101469,12 +101986,14 @@ export declare const platformContract: {
101469
101986
  accessToken?: string | undefined;
101470
101987
  channelSecret?: string | undefined;
101471
101988
  additionalCredentials?: any;
101989
+ lineRichMenuId?: string | null | undefined;
101472
101990
  } | undefined;
101473
101991
  platformId?: string | undefined;
101474
101992
  brandName?: string | undefined;
101475
101993
  status?: boolean | undefined;
101476
101994
  connectedUserName?: string | null | undefined;
101477
101995
  connectedUserId?: string | null | undefined;
101996
+ lineRichMenuId?: string | null | undefined;
101478
101997
  actor?: {
101479
101998
  id: string;
101480
101999
  address: string | null;
@@ -101492,12 +102011,14 @@ export declare const platformContract: {
101492
102011
  accessToken?: string | undefined;
101493
102012
  channelSecret?: string | undefined;
101494
102013
  additionalCredentials?: any;
102014
+ lineRichMenuId?: string | null | undefined;
101495
102015
  } | undefined;
101496
102016
  platformId?: string | undefined;
101497
102017
  brandName?: string | undefined;
101498
102018
  status?: boolean | undefined;
101499
102019
  connectedUserName?: string | null | undefined;
101500
102020
  connectedUserId?: string | null | undefined;
102021
+ lineRichMenuId?: string | null | undefined;
101501
102022
  actor?: {
101502
102023
  id: string;
101503
102024
  address: string | null;
@@ -101520,24 +102041,28 @@ export declare const platformContract: {
101520
102041
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
101521
102042
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
101522
102043
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
102044
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101523
102045
  }, "strip", import("zod").ZodTypeAny, {
101524
102046
  id: string;
101525
102047
  name: string;
101526
102048
  accessToken?: string | undefined;
101527
102049
  channelSecret?: string | undefined;
101528
102050
  additionalCredentials?: any;
102051
+ lineRichMenuId?: string | null | undefined;
101529
102052
  }, {
101530
102053
  id: string;
101531
102054
  name: string;
101532
102055
  accessToken?: string | undefined;
101533
102056
  channelSecret?: string | undefined;
101534
102057
  additionalCredentials?: any;
102058
+ lineRichMenuId?: string | null | undefined;
101535
102059
  }>;
101536
102060
  platformId: import("zod").ZodString;
101537
102061
  brandName: import("zod").ZodString;
101538
102062
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
101539
102063
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101540
102064
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102065
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101541
102066
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
101542
102067
  id: import("zod").ZodString;
101543
102068
  name: import("zod").ZodString;
@@ -101567,12 +102092,14 @@ export declare const platformContract: {
101567
102092
  accessToken?: string | undefined;
101568
102093
  channelSecret?: string | undefined;
101569
102094
  additionalCredentials?: any;
102095
+ lineRichMenuId?: string | null | undefined;
101570
102096
  };
101571
102097
  status: boolean;
101572
102098
  brandName: string;
101573
102099
  platformId: string;
101574
102100
  connectedUserName?: string | null | undefined;
101575
102101
  connectedUserId?: string | null | undefined;
102102
+ lineRichMenuId?: string | null | undefined;
101576
102103
  actor?: {
101577
102104
  id: string;
101578
102105
  address: string | null;
@@ -101590,12 +102117,14 @@ export declare const platformContract: {
101590
102117
  accessToken?: string | undefined;
101591
102118
  channelSecret?: string | undefined;
101592
102119
  additionalCredentials?: any;
102120
+ lineRichMenuId?: string | null | undefined;
101593
102121
  };
101594
102122
  status: boolean;
101595
102123
  brandName: string;
101596
102124
  platformId: string;
101597
102125
  connectedUserName?: string | null | undefined;
101598
102126
  connectedUserId?: string | null | undefined;
102127
+ lineRichMenuId?: string | null | undefined;
101599
102128
  actor?: {
101600
102129
  id: string;
101601
102130
  address: string | null;
@@ -101615,12 +102144,14 @@ export declare const platformContract: {
101615
102144
  accessToken?: string | undefined;
101616
102145
  channelSecret?: string | undefined;
101617
102146
  additionalCredentials?: any;
102147
+ lineRichMenuId?: string | null | undefined;
101618
102148
  };
101619
102149
  status: boolean;
101620
102150
  brandName: string;
101621
102151
  platformId: string;
101622
102152
  connectedUserName?: string | null | undefined;
101623
102153
  connectedUserId?: string | null | undefined;
102154
+ lineRichMenuId?: string | null | undefined;
101624
102155
  actor?: {
101625
102156
  id: string;
101626
102157
  address: string | null;
@@ -101641,12 +102172,14 @@ export declare const platformContract: {
101641
102172
  accessToken?: string | undefined;
101642
102173
  channelSecret?: string | undefined;
101643
102174
  additionalCredentials?: any;
102175
+ lineRichMenuId?: string | null | undefined;
101644
102176
  };
101645
102177
  status: boolean;
101646
102178
  brandName: string;
101647
102179
  platformId: string;
101648
102180
  connectedUserName?: string | null | undefined;
101649
102181
  connectedUserId?: string | null | undefined;
102182
+ lineRichMenuId?: string | null | undefined;
101650
102183
  actor?: {
101651
102184
  id: string;
101652
102185
  address: string | null;
@@ -101691,24 +102224,28 @@ export declare const platformContract: {
101691
102224
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
101692
102225
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
101693
102226
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
102227
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101694
102228
  }, "strip", import("zod").ZodTypeAny, {
101695
102229
  id: string;
101696
102230
  name: string;
101697
102231
  accessToken?: string | undefined;
101698
102232
  channelSecret?: string | undefined;
101699
102233
  additionalCredentials?: any;
102234
+ lineRichMenuId?: string | null | undefined;
101700
102235
  }, {
101701
102236
  id: string;
101702
102237
  name: string;
101703
102238
  accessToken?: string | undefined;
101704
102239
  channelSecret?: string | undefined;
101705
102240
  additionalCredentials?: any;
102241
+ lineRichMenuId?: string | null | undefined;
101706
102242
  }>>;
101707
102243
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
101708
102244
  brandName: import("zod").ZodOptional<import("zod").ZodString>;
101709
102245
  status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>>;
101710
102246
  connectedUserName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
101711
102247
  connectedUserId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
102248
+ lineRichMenuId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
101712
102249
  actor: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodObject<{
101713
102250
  id: import("zod").ZodString;
101714
102251
  name: import("zod").ZodString;
@@ -101738,12 +102275,14 @@ export declare const platformContract: {
101738
102275
  accessToken?: string | undefined;
101739
102276
  channelSecret?: string | undefined;
101740
102277
  additionalCredentials?: any;
102278
+ lineRichMenuId?: string | null | undefined;
101741
102279
  } | undefined;
101742
102280
  platformId?: string | undefined;
101743
102281
  brandName?: string | undefined;
101744
102282
  status?: boolean | undefined;
101745
102283
  connectedUserName?: string | null | undefined;
101746
102284
  connectedUserId?: string | null | undefined;
102285
+ lineRichMenuId?: string | null | undefined;
101747
102286
  actor?: {
101748
102287
  id: string;
101749
102288
  address: string | null;
@@ -101761,12 +102300,14 @@ export declare const platformContract: {
101761
102300
  accessToken?: string | undefined;
101762
102301
  channelSecret?: string | undefined;
101763
102302
  additionalCredentials?: any;
102303
+ lineRichMenuId?: string | null | undefined;
101764
102304
  } | undefined;
101765
102305
  platformId?: string | undefined;
101766
102306
  brandName?: string | undefined;
101767
102307
  status?: boolean | undefined;
101768
102308
  connectedUserName?: string | null | undefined;
101769
102309
  connectedUserId?: string | null | undefined;
102310
+ lineRichMenuId?: string | null | undefined;
101770
102311
  actor?: {
101771
102312
  id: string;
101772
102313
  address: string | null;
@@ -101789,24 +102330,28 @@ export declare const platformContract: {
101789
102330
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
101790
102331
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
101791
102332
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
102333
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101792
102334
  }, "strip", import("zod").ZodTypeAny, {
101793
102335
  id: string;
101794
102336
  name: string;
101795
102337
  accessToken?: string | undefined;
101796
102338
  channelSecret?: string | undefined;
101797
102339
  additionalCredentials?: any;
102340
+ lineRichMenuId?: string | null | undefined;
101798
102341
  }, {
101799
102342
  id: string;
101800
102343
  name: string;
101801
102344
  accessToken?: string | undefined;
101802
102345
  channelSecret?: string | undefined;
101803
102346
  additionalCredentials?: any;
102347
+ lineRichMenuId?: string | null | undefined;
101804
102348
  }>;
101805
102349
  platformId: import("zod").ZodString;
101806
102350
  brandName: import("zod").ZodString;
101807
102351
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
101808
102352
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101809
102353
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102354
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101810
102355
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
101811
102356
  id: import("zod").ZodString;
101812
102357
  name: import("zod").ZodString;
@@ -101836,12 +102381,14 @@ export declare const platformContract: {
101836
102381
  accessToken?: string | undefined;
101837
102382
  channelSecret?: string | undefined;
101838
102383
  additionalCredentials?: any;
102384
+ lineRichMenuId?: string | null | undefined;
101839
102385
  };
101840
102386
  status: boolean;
101841
102387
  brandName: string;
101842
102388
  platformId: string;
101843
102389
  connectedUserName?: string | null | undefined;
101844
102390
  connectedUserId?: string | null | undefined;
102391
+ lineRichMenuId?: string | null | undefined;
101845
102392
  actor?: {
101846
102393
  id: string;
101847
102394
  address: string | null;
@@ -101859,12 +102406,14 @@ export declare const platformContract: {
101859
102406
  accessToken?: string | undefined;
101860
102407
  channelSecret?: string | undefined;
101861
102408
  additionalCredentials?: any;
102409
+ lineRichMenuId?: string | null | undefined;
101862
102410
  };
101863
102411
  status: boolean;
101864
102412
  brandName: string;
101865
102413
  platformId: string;
101866
102414
  connectedUserName?: string | null | undefined;
101867
102415
  connectedUserId?: string | null | undefined;
102416
+ lineRichMenuId?: string | null | undefined;
101868
102417
  actor?: {
101869
102418
  id: string;
101870
102419
  address: string | null;
@@ -101884,12 +102433,14 @@ export declare const platformContract: {
101884
102433
  accessToken?: string | undefined;
101885
102434
  channelSecret?: string | undefined;
101886
102435
  additionalCredentials?: any;
102436
+ lineRichMenuId?: string | null | undefined;
101887
102437
  };
101888
102438
  status: boolean;
101889
102439
  brandName: string;
101890
102440
  platformId: string;
101891
102441
  connectedUserName?: string | null | undefined;
101892
102442
  connectedUserId?: string | null | undefined;
102443
+ lineRichMenuId?: string | null | undefined;
101893
102444
  actor?: {
101894
102445
  id: string;
101895
102446
  address: string | null;
@@ -101910,12 +102461,14 @@ export declare const platformContract: {
101910
102461
  accessToken?: string | undefined;
101911
102462
  channelSecret?: string | undefined;
101912
102463
  additionalCredentials?: any;
102464
+ lineRichMenuId?: string | null | undefined;
101913
102465
  };
101914
102466
  status: boolean;
101915
102467
  brandName: string;
101916
102468
  platformId: string;
101917
102469
  connectedUserName?: string | null | undefined;
101918
102470
  connectedUserId?: string | null | undefined;
102471
+ lineRichMenuId?: string | null | undefined;
101919
102472
  actor?: {
101920
102473
  id: string;
101921
102474
  address: string | null;
@@ -101972,24 +102525,28 @@ export declare const platformContract: {
101972
102525
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
101973
102526
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
101974
102527
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
102528
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101975
102529
  }, "strip", import("zod").ZodTypeAny, {
101976
102530
  id: string;
101977
102531
  name: string;
101978
102532
  accessToken?: string | undefined;
101979
102533
  channelSecret?: string | undefined;
101980
102534
  additionalCredentials?: any;
102535
+ lineRichMenuId?: string | null | undefined;
101981
102536
  }, {
101982
102537
  id: string;
101983
102538
  name: string;
101984
102539
  accessToken?: string | undefined;
101985
102540
  channelSecret?: string | undefined;
101986
102541
  additionalCredentials?: any;
102542
+ lineRichMenuId?: string | null | undefined;
101987
102543
  }>;
101988
102544
  platformId: import("zod").ZodString;
101989
102545
  brandName: import("zod").ZodString;
101990
102546
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
101991
102547
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101992
102548
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102549
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
101993
102550
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
101994
102551
  id: import("zod").ZodString;
101995
102552
  name: import("zod").ZodString;
@@ -102019,12 +102576,14 @@ export declare const platformContract: {
102019
102576
  accessToken?: string | undefined;
102020
102577
  channelSecret?: string | undefined;
102021
102578
  additionalCredentials?: any;
102579
+ lineRichMenuId?: string | null | undefined;
102022
102580
  };
102023
102581
  status: boolean;
102024
102582
  brandName: string;
102025
102583
  platformId: string;
102026
102584
  connectedUserName?: string | null | undefined;
102027
102585
  connectedUserId?: string | null | undefined;
102586
+ lineRichMenuId?: string | null | undefined;
102028
102587
  actor?: {
102029
102588
  id: string;
102030
102589
  address: string | null;
@@ -102042,12 +102601,14 @@ export declare const platformContract: {
102042
102601
  accessToken?: string | undefined;
102043
102602
  channelSecret?: string | undefined;
102044
102603
  additionalCredentials?: any;
102604
+ lineRichMenuId?: string | null | undefined;
102045
102605
  };
102046
102606
  status: boolean;
102047
102607
  brandName: string;
102048
102608
  platformId: string;
102049
102609
  connectedUserName?: string | null | undefined;
102050
102610
  connectedUserId?: string | null | undefined;
102611
+ lineRichMenuId?: string | null | undefined;
102051
102612
  actor?: {
102052
102613
  id: string;
102053
102614
  address: string | null;
@@ -102067,12 +102628,14 @@ export declare const platformContract: {
102067
102628
  accessToken?: string | undefined;
102068
102629
  channelSecret?: string | undefined;
102069
102630
  additionalCredentials?: any;
102631
+ lineRichMenuId?: string | null | undefined;
102070
102632
  };
102071
102633
  status: boolean;
102072
102634
  brandName: string;
102073
102635
  platformId: string;
102074
102636
  connectedUserName?: string | null | undefined;
102075
102637
  connectedUserId?: string | null | undefined;
102638
+ lineRichMenuId?: string | null | undefined;
102076
102639
  actor?: {
102077
102640
  id: string;
102078
102641
  address: string | null;
@@ -102093,12 +102656,14 @@ export declare const platformContract: {
102093
102656
  accessToken?: string | undefined;
102094
102657
  channelSecret?: string | undefined;
102095
102658
  additionalCredentials?: any;
102659
+ lineRichMenuId?: string | null | undefined;
102096
102660
  };
102097
102661
  status: boolean;
102098
102662
  brandName: string;
102099
102663
  platformId: string;
102100
102664
  connectedUserName?: string | null | undefined;
102101
102665
  connectedUserId?: string | null | undefined;
102666
+ lineRichMenuId?: string | null | undefined;
102102
102667
  actor?: {
102103
102668
  id: string;
102104
102669
  address: string | null;
@@ -102155,24 +102720,28 @@ export declare const platformContract: {
102155
102720
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
102156
102721
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
102157
102722
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
102723
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102158
102724
  }, "strip", import("zod").ZodTypeAny, {
102159
102725
  id: string;
102160
102726
  name: string;
102161
102727
  accessToken?: string | undefined;
102162
102728
  channelSecret?: string | undefined;
102163
102729
  additionalCredentials?: any;
102730
+ lineRichMenuId?: string | null | undefined;
102164
102731
  }, {
102165
102732
  id: string;
102166
102733
  name: string;
102167
102734
  accessToken?: string | undefined;
102168
102735
  channelSecret?: string | undefined;
102169
102736
  additionalCredentials?: any;
102737
+ lineRichMenuId?: string | null | undefined;
102170
102738
  }>;
102171
102739
  platformId: import("zod").ZodString;
102172
102740
  brandName: import("zod").ZodString;
102173
102741
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
102174
102742
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102175
102743
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102744
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102176
102745
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
102177
102746
  id: import("zod").ZodString;
102178
102747
  name: import("zod").ZodString;
@@ -102202,12 +102771,14 @@ export declare const platformContract: {
102202
102771
  accessToken?: string | undefined;
102203
102772
  channelSecret?: string | undefined;
102204
102773
  additionalCredentials?: any;
102774
+ lineRichMenuId?: string | null | undefined;
102205
102775
  };
102206
102776
  status: boolean;
102207
102777
  brandName: string;
102208
102778
  platformId: string;
102209
102779
  connectedUserName?: string | null | undefined;
102210
102780
  connectedUserId?: string | null | undefined;
102781
+ lineRichMenuId?: string | null | undefined;
102211
102782
  actor?: {
102212
102783
  id: string;
102213
102784
  address: string | null;
@@ -102225,12 +102796,14 @@ export declare const platformContract: {
102225
102796
  accessToken?: string | undefined;
102226
102797
  channelSecret?: string | undefined;
102227
102798
  additionalCredentials?: any;
102799
+ lineRichMenuId?: string | null | undefined;
102228
102800
  };
102229
102801
  status: boolean;
102230
102802
  brandName: string;
102231
102803
  platformId: string;
102232
102804
  connectedUserName?: string | null | undefined;
102233
102805
  connectedUserId?: string | null | undefined;
102806
+ lineRichMenuId?: string | null | undefined;
102234
102807
  actor?: {
102235
102808
  id: string;
102236
102809
  address: string | null;
@@ -102250,12 +102823,14 @@ export declare const platformContract: {
102250
102823
  accessToken?: string | undefined;
102251
102824
  channelSecret?: string | undefined;
102252
102825
  additionalCredentials?: any;
102826
+ lineRichMenuId?: string | null | undefined;
102253
102827
  };
102254
102828
  status: boolean;
102255
102829
  brandName: string;
102256
102830
  platformId: string;
102257
102831
  connectedUserName?: string | null | undefined;
102258
102832
  connectedUserId?: string | null | undefined;
102833
+ lineRichMenuId?: string | null | undefined;
102259
102834
  actor?: {
102260
102835
  id: string;
102261
102836
  address: string | null;
@@ -102276,12 +102851,14 @@ export declare const platformContract: {
102276
102851
  accessToken?: string | undefined;
102277
102852
  channelSecret?: string | undefined;
102278
102853
  additionalCredentials?: any;
102854
+ lineRichMenuId?: string | null | undefined;
102279
102855
  };
102280
102856
  status: boolean;
102281
102857
  brandName: string;
102282
102858
  platformId: string;
102283
102859
  connectedUserName?: string | null | undefined;
102284
102860
  connectedUserId?: string | null | undefined;
102861
+ lineRichMenuId?: string | null | undefined;
102285
102862
  actor?: {
102286
102863
  id: string;
102287
102864
  address: string | null;
@@ -102326,24 +102903,28 @@ export declare const platformContract: {
102326
102903
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
102327
102904
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
102328
102905
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
102906
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102329
102907
  }, "strip", import("zod").ZodTypeAny, {
102330
102908
  id: string;
102331
102909
  name: string;
102332
102910
  accessToken?: string | undefined;
102333
102911
  channelSecret?: string | undefined;
102334
102912
  additionalCredentials?: any;
102913
+ lineRichMenuId?: string | null | undefined;
102335
102914
  }, {
102336
102915
  id: string;
102337
102916
  name: string;
102338
102917
  accessToken?: string | undefined;
102339
102918
  channelSecret?: string | undefined;
102340
102919
  additionalCredentials?: any;
102920
+ lineRichMenuId?: string | null | undefined;
102341
102921
  }>>;
102342
102922
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
102343
102923
  brandName: import("zod").ZodOptional<import("zod").ZodString>;
102344
102924
  status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>>;
102345
102925
  connectedUserName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
102346
102926
  connectedUserId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
102927
+ lineRichMenuId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
102347
102928
  actor: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodObject<{
102348
102929
  id: import("zod").ZodString;
102349
102930
  name: import("zod").ZodString;
@@ -102373,12 +102954,14 @@ export declare const platformContract: {
102373
102954
  accessToken?: string | undefined;
102374
102955
  channelSecret?: string | undefined;
102375
102956
  additionalCredentials?: any;
102957
+ lineRichMenuId?: string | null | undefined;
102376
102958
  } | undefined;
102377
102959
  platformId?: string | undefined;
102378
102960
  brandName?: string | undefined;
102379
102961
  status?: boolean | undefined;
102380
102962
  connectedUserName?: string | null | undefined;
102381
102963
  connectedUserId?: string | null | undefined;
102964
+ lineRichMenuId?: string | null | undefined;
102382
102965
  actor?: {
102383
102966
  id: string;
102384
102967
  address: string | null;
@@ -102396,12 +102979,14 @@ export declare const platformContract: {
102396
102979
  accessToken?: string | undefined;
102397
102980
  channelSecret?: string | undefined;
102398
102981
  additionalCredentials?: any;
102982
+ lineRichMenuId?: string | null | undefined;
102399
102983
  } | undefined;
102400
102984
  platformId?: string | undefined;
102401
102985
  brandName?: string | undefined;
102402
102986
  status?: boolean | undefined;
102403
102987
  connectedUserName?: string | null | undefined;
102404
102988
  connectedUserId?: string | null | undefined;
102989
+ lineRichMenuId?: string | null | undefined;
102405
102990
  actor?: {
102406
102991
  id: string;
102407
102992
  address: string | null;
@@ -102424,24 +103009,28 @@ export declare const platformContract: {
102424
103009
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
102425
103010
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
102426
103011
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
103012
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102427
103013
  }, "strip", import("zod").ZodTypeAny, {
102428
103014
  id: string;
102429
103015
  name: string;
102430
103016
  accessToken?: string | undefined;
102431
103017
  channelSecret?: string | undefined;
102432
103018
  additionalCredentials?: any;
103019
+ lineRichMenuId?: string | null | undefined;
102433
103020
  }, {
102434
103021
  id: string;
102435
103022
  name: string;
102436
103023
  accessToken?: string | undefined;
102437
103024
  channelSecret?: string | undefined;
102438
103025
  additionalCredentials?: any;
103026
+ lineRichMenuId?: string | null | undefined;
102439
103027
  }>;
102440
103028
  platformId: import("zod").ZodString;
102441
103029
  brandName: import("zod").ZodString;
102442
103030
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
102443
103031
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102444
103032
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
103033
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102445
103034
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
102446
103035
  id: import("zod").ZodString;
102447
103036
  name: import("zod").ZodString;
@@ -102471,12 +103060,14 @@ export declare const platformContract: {
102471
103060
  accessToken?: string | undefined;
102472
103061
  channelSecret?: string | undefined;
102473
103062
  additionalCredentials?: any;
103063
+ lineRichMenuId?: string | null | undefined;
102474
103064
  };
102475
103065
  status: boolean;
102476
103066
  brandName: string;
102477
103067
  platformId: string;
102478
103068
  connectedUserName?: string | null | undefined;
102479
103069
  connectedUserId?: string | null | undefined;
103070
+ lineRichMenuId?: string | null | undefined;
102480
103071
  actor?: {
102481
103072
  id: string;
102482
103073
  address: string | null;
@@ -102494,12 +103085,14 @@ export declare const platformContract: {
102494
103085
  accessToken?: string | undefined;
102495
103086
  channelSecret?: string | undefined;
102496
103087
  additionalCredentials?: any;
103088
+ lineRichMenuId?: string | null | undefined;
102497
103089
  };
102498
103090
  status: boolean;
102499
103091
  brandName: string;
102500
103092
  platformId: string;
102501
103093
  connectedUserName?: string | null | undefined;
102502
103094
  connectedUserId?: string | null | undefined;
103095
+ lineRichMenuId?: string | null | undefined;
102503
103096
  actor?: {
102504
103097
  id: string;
102505
103098
  address: string | null;
@@ -102519,12 +103112,14 @@ export declare const platformContract: {
102519
103112
  accessToken?: string | undefined;
102520
103113
  channelSecret?: string | undefined;
102521
103114
  additionalCredentials?: any;
103115
+ lineRichMenuId?: string | null | undefined;
102522
103116
  };
102523
103117
  status: boolean;
102524
103118
  brandName: string;
102525
103119
  platformId: string;
102526
103120
  connectedUserName?: string | null | undefined;
102527
103121
  connectedUserId?: string | null | undefined;
103122
+ lineRichMenuId?: string | null | undefined;
102528
103123
  actor?: {
102529
103124
  id: string;
102530
103125
  address: string | null;
@@ -102545,12 +103140,14 @@ export declare const platformContract: {
102545
103140
  accessToken?: string | undefined;
102546
103141
  channelSecret?: string | undefined;
102547
103142
  additionalCredentials?: any;
103143
+ lineRichMenuId?: string | null | undefined;
102548
103144
  };
102549
103145
  status: boolean;
102550
103146
  brandName: string;
102551
103147
  platformId: string;
102552
103148
  connectedUserName?: string | null | undefined;
102553
103149
  connectedUserId?: string | null | undefined;
103150
+ lineRichMenuId?: string | null | undefined;
102554
103151
  actor?: {
102555
103152
  id: string;
102556
103153
  address: string | null;
@@ -102714,6 +103311,36 @@ export declare const platformContract: {
102714
103311
  };
102715
103312
  path: "/pages";
102716
103313
  };
103314
+ setBotPersistentMenu: {
103315
+ body: import("zod").ZodObject<{
103316
+ pageAccessToken: import("zod").ZodString;
103317
+ }, "strip", import("zod").ZodTypeAny, {
103318
+ pageAccessToken: string;
103319
+ }, {
103320
+ pageAccessToken: string;
103321
+ }>;
103322
+ method: "POST";
103323
+ responses: {
103324
+ 200: import("zod").ZodObject<{
103325
+ requestId: import("zod").ZodString;
103326
+ }, "strip", import("zod").ZodTypeAny, {
103327
+ requestId: string;
103328
+ }, {
103329
+ requestId: string;
103330
+ }>;
103331
+ 500: import("zod").ZodObject<{
103332
+ message: import("zod").ZodString;
103333
+ error: import("zod").ZodAny;
103334
+ }, "strip", import("zod").ZodTypeAny, {
103335
+ message: string;
103336
+ error?: any;
103337
+ }, {
103338
+ message: string;
103339
+ error?: any;
103340
+ }>;
103341
+ };
103342
+ path: "/set-bot-persistent-menu";
103343
+ };
102717
103344
  };
102718
103345
  viber: {
102719
103346
  connect: {
@@ -102778,18 +103405,21 @@ export declare const platformContract: {
102778
103405
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
102779
103406
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
102780
103407
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
103408
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
102781
103409
  }, "strip", import("zod").ZodTypeAny, {
102782
103410
  id: string;
102783
103411
  name: string;
102784
103412
  accessToken?: string | undefined;
102785
103413
  channelSecret?: string | undefined;
102786
103414
  additionalCredentials?: any;
103415
+ lineRichMenuId?: string | null | undefined;
102787
103416
  }, {
102788
103417
  id: string;
102789
103418
  name: string;
102790
103419
  accessToken?: string | undefined;
102791
103420
  channelSecret?: string | undefined;
102792
103421
  additionalCredentials?: any;
103422
+ lineRichMenuId?: string | null | undefined;
102793
103423
  }>;
102794
103424
  brandName: import("zod").ZodString;
102795
103425
  platformId: import("zod").ZodString;
@@ -103030,6 +103660,7 @@ export declare const platformContract: {
103030
103660
  accessToken?: string | undefined;
103031
103661
  channelSecret?: string | undefined;
103032
103662
  additionalCredentials?: any;
103663
+ lineRichMenuId?: string | null | undefined;
103033
103664
  };
103034
103665
  status: boolean;
103035
103666
  createdAt: Date;
@@ -103101,6 +103732,7 @@ export declare const platformContract: {
103101
103732
  accessToken?: string | undefined;
103102
103733
  channelSecret?: string | undefined;
103103
103734
  additionalCredentials?: any;
103735
+ lineRichMenuId?: string | null | undefined;
103104
103736
  };
103105
103737
  status: boolean;
103106
103738
  createdAt: Date;
@@ -103174,6 +103806,7 @@ export declare const platformContract: {
103174
103806
  accessToken?: string | undefined;
103175
103807
  channelSecret?: string | undefined;
103176
103808
  additionalCredentials?: any;
103809
+ lineRichMenuId?: string | null | undefined;
103177
103810
  };
103178
103811
  status: boolean;
103179
103812
  createdAt: Date;
@@ -103248,6 +103881,7 @@ export declare const platformContract: {
103248
103881
  accessToken?: string | undefined;
103249
103882
  channelSecret?: string | undefined;
103250
103883
  additionalCredentials?: any;
103884
+ lineRichMenuId?: string | null | undefined;
103251
103885
  };
103252
103886
  status: boolean;
103253
103887
  createdAt: Date;
@@ -103361,18 +103995,21 @@ export declare const platformContract: {
103361
103995
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
103362
103996
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
103363
103997
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
103998
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
103364
103999
  }, "strip", import("zod").ZodTypeAny, {
103365
104000
  id: string;
103366
104001
  name: string;
103367
104002
  accessToken?: string | undefined;
103368
104003
  channelSecret?: string | undefined;
103369
104004
  additionalCredentials?: any;
104005
+ lineRichMenuId?: string | null | undefined;
103370
104006
  }, {
103371
104007
  id: string;
103372
104008
  name: string;
103373
104009
  accessToken?: string | undefined;
103374
104010
  channelSecret?: string | undefined;
103375
104011
  additionalCredentials?: any;
104012
+ lineRichMenuId?: string | null | undefined;
103376
104013
  }>;
103377
104014
  brandName: import("zod").ZodString;
103378
104015
  platformId: import("zod").ZodString;
@@ -103613,6 +104250,7 @@ export declare const platformContract: {
103613
104250
  accessToken?: string | undefined;
103614
104251
  channelSecret?: string | undefined;
103615
104252
  additionalCredentials?: any;
104253
+ lineRichMenuId?: string | null | undefined;
103616
104254
  };
103617
104255
  status: boolean;
103618
104256
  createdAt: Date;
@@ -103684,6 +104322,7 @@ export declare const platformContract: {
103684
104322
  accessToken?: string | undefined;
103685
104323
  channelSecret?: string | undefined;
103686
104324
  additionalCredentials?: any;
104325
+ lineRichMenuId?: string | null | undefined;
103687
104326
  };
103688
104327
  status: boolean;
103689
104328
  createdAt: Date;
@@ -103757,6 +104396,7 @@ export declare const platformContract: {
103757
104396
  accessToken?: string | undefined;
103758
104397
  channelSecret?: string | undefined;
103759
104398
  additionalCredentials?: any;
104399
+ lineRichMenuId?: string | null | undefined;
103760
104400
  };
103761
104401
  status: boolean;
103762
104402
  createdAt: Date;
@@ -103831,6 +104471,7 @@ export declare const platformContract: {
103831
104471
  accessToken?: string | undefined;
103832
104472
  channelSecret?: string | undefined;
103833
104473
  additionalCredentials?: any;
104474
+ lineRichMenuId?: string | null | undefined;
103834
104475
  };
103835
104476
  status: boolean;
103836
104477
  createdAt: Date;
@@ -104044,24 +104685,28 @@ export declare const platformContract: {
104044
104685
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
104045
104686
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
104046
104687
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
104688
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
104047
104689
  }, "strip", import("zod").ZodTypeAny, {
104048
104690
  id: string;
104049
104691
  name: string;
104050
104692
  accessToken?: string | undefined;
104051
104693
  channelSecret?: string | undefined;
104052
104694
  additionalCredentials?: any;
104695
+ lineRichMenuId?: string | null | undefined;
104053
104696
  }, {
104054
104697
  id: string;
104055
104698
  name: string;
104056
104699
  accessToken?: string | undefined;
104057
104700
  channelSecret?: string | undefined;
104058
104701
  additionalCredentials?: any;
104702
+ lineRichMenuId?: string | null | undefined;
104059
104703
  }>;
104060
104704
  platformId: import("zod").ZodString;
104061
104705
  brandName: import("zod").ZodString;
104062
104706
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
104063
104707
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
104064
104708
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
104709
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
104065
104710
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
104066
104711
  id: import("zod").ZodString;
104067
104712
  name: import("zod").ZodString;
@@ -104091,12 +104736,14 @@ export declare const platformContract: {
104091
104736
  accessToken?: string | undefined;
104092
104737
  channelSecret?: string | undefined;
104093
104738
  additionalCredentials?: any;
104739
+ lineRichMenuId?: string | null | undefined;
104094
104740
  };
104095
104741
  status: boolean;
104096
104742
  brandName: string;
104097
104743
  platformId: string;
104098
104744
  connectedUserName?: string | null | undefined;
104099
104745
  connectedUserId?: string | null | undefined;
104746
+ lineRichMenuId?: string | null | undefined;
104100
104747
  actor?: {
104101
104748
  id: string;
104102
104749
  address: string | null;
@@ -104114,12 +104761,14 @@ export declare const platformContract: {
104114
104761
  accessToken?: string | undefined;
104115
104762
  channelSecret?: string | undefined;
104116
104763
  additionalCredentials?: any;
104764
+ lineRichMenuId?: string | null | undefined;
104117
104765
  };
104118
104766
  status: boolean;
104119
104767
  brandName: string;
104120
104768
  platformId: string;
104121
104769
  connectedUserName?: string | null | undefined;
104122
104770
  connectedUserId?: string | null | undefined;
104771
+ lineRichMenuId?: string | null | undefined;
104123
104772
  actor?: {
104124
104773
  id: string;
104125
104774
  address: string | null;
@@ -104141,12 +104790,14 @@ export declare const platformContract: {
104141
104790
  accessToken?: string | undefined;
104142
104791
  channelSecret?: string | undefined;
104143
104792
  additionalCredentials?: any;
104793
+ lineRichMenuId?: string | null | undefined;
104144
104794
  };
104145
104795
  status: boolean;
104146
104796
  brandName: string;
104147
104797
  platformId: string;
104148
104798
  connectedUserName?: string | null | undefined;
104149
104799
  connectedUserId?: string | null | undefined;
104800
+ lineRichMenuId?: string | null | undefined;
104150
104801
  actor?: {
104151
104802
  id: string;
104152
104803
  address: string | null;
@@ -104207,12 +104858,14 @@ export declare const platformContract: {
104207
104858
  accessToken?: string | undefined;
104208
104859
  channelSecret?: string | undefined;
104209
104860
  additionalCredentials?: any;
104861
+ lineRichMenuId?: string | null | undefined;
104210
104862
  };
104211
104863
  status: boolean;
104212
104864
  brandName: string;
104213
104865
  platformId: string;
104214
104866
  connectedUserName?: string | null | undefined;
104215
104867
  connectedUserId?: string | null | undefined;
104868
+ lineRichMenuId?: string | null | undefined;
104216
104869
  actor?: {
104217
104870
  id: string;
104218
104871
  address: string | null;
@@ -104413,12 +105066,14 @@ export declare const platformContract: {
104413
105066
  accessToken?: string | undefined;
104414
105067
  channelSecret?: string | undefined;
104415
105068
  additionalCredentials?: any;
105069
+ lineRichMenuId?: string | null | undefined;
104416
105070
  };
104417
105071
  status: boolean;
104418
105072
  brandName: string;
104419
105073
  platformId: string;
104420
105074
  connectedUserName?: string | null | undefined;
104421
105075
  connectedUserId?: string | null | undefined;
105076
+ lineRichMenuId?: string | null | undefined;
104422
105077
  actor?: {
104423
105078
  id: string;
104424
105079
  address: string | null;
@@ -104511,12 +105166,14 @@ export declare const platformContract: {
104511
105166
  accessToken?: string | undefined;
104512
105167
  channelSecret?: string | undefined;
104513
105168
  additionalCredentials?: any;
105169
+ lineRichMenuId?: string | null | undefined;
104514
105170
  };
104515
105171
  status: boolean;
104516
105172
  brandName: string;
104517
105173
  platformId: string;
104518
105174
  connectedUserName?: string | null | undefined;
104519
105175
  connectedUserId?: string | null | undefined;
105176
+ lineRichMenuId?: string | null | undefined;
104520
105177
  actor?: {
104521
105178
  id: string;
104522
105179
  address: string | null;
@@ -105961,18 +106618,21 @@ export declare const platformContract: {
105961
106618
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
105962
106619
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
105963
106620
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
106621
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
105964
106622
  }, "strip", import("zod").ZodTypeAny, {
105965
106623
  id: string;
105966
106624
  name: string;
105967
106625
  accessToken?: string | undefined;
105968
106626
  channelSecret?: string | undefined;
105969
106627
  additionalCredentials?: any;
106628
+ lineRichMenuId?: string | null | undefined;
105970
106629
  }, {
105971
106630
  id: string;
105972
106631
  name: string;
105973
106632
  accessToken?: string | undefined;
105974
106633
  channelSecret?: string | undefined;
105975
106634
  additionalCredentials?: any;
106635
+ lineRichMenuId?: string | null | undefined;
105976
106636
  }>;
105977
106637
  brandName: import("zod").ZodString;
105978
106638
  platformId: import("zod").ZodString;
@@ -106213,6 +106873,7 @@ export declare const platformContract: {
106213
106873
  accessToken?: string | undefined;
106214
106874
  channelSecret?: string | undefined;
106215
106875
  additionalCredentials?: any;
106876
+ lineRichMenuId?: string | null | undefined;
106216
106877
  };
106217
106878
  status: boolean;
106218
106879
  createdAt: Date;
@@ -106284,6 +106945,7 @@ export declare const platformContract: {
106284
106945
  accessToken?: string | undefined;
106285
106946
  channelSecret?: string | undefined;
106286
106947
  additionalCredentials?: any;
106948
+ lineRichMenuId?: string | null | undefined;
106287
106949
  };
106288
106950
  status: boolean;
106289
106951
  createdAt: Date;
@@ -106802,6 +107464,7 @@ export declare const platformContract: {
106802
107464
  accessToken?: string | undefined;
106803
107465
  channelSecret?: string | undefined;
106804
107466
  additionalCredentials?: any;
107467
+ lineRichMenuId?: string | null | undefined;
106805
107468
  };
106806
107469
  status: boolean;
106807
107470
  createdAt: Date;
@@ -107168,6 +107831,7 @@ export declare const platformContract: {
107168
107831
  accessToken?: string | undefined;
107169
107832
  channelSecret?: string | undefined;
107170
107833
  additionalCredentials?: any;
107834
+ lineRichMenuId?: string | null | undefined;
107171
107835
  };
107172
107836
  status: boolean;
107173
107837
  createdAt: Date;
@@ -109305,6 +109969,7 @@ export declare const platformContract: {
109305
109969
  accessToken?: string | undefined;
109306
109970
  channelSecret?: string | undefined;
109307
109971
  additionalCredentials?: any;
109972
+ lineRichMenuId?: string | null | undefined;
109308
109973
  };
109309
109974
  status: boolean;
109310
109975
  createdAt: Date;
@@ -110006,6 +110671,7 @@ export declare const platformContract: {
110006
110671
  accessToken?: string | undefined;
110007
110672
  channelSecret?: string | undefined;
110008
110673
  additionalCredentials?: any;
110674
+ lineRichMenuId?: string | null | undefined;
110009
110675
  };
110010
110676
  status: boolean;
110011
110677
  createdAt: Date;
@@ -110709,6 +111375,7 @@ export declare const platformContract: {
110709
111375
  accessToken?: string | undefined;
110710
111376
  channelSecret?: string | undefined;
110711
111377
  additionalCredentials?: any;
111378
+ lineRichMenuId?: string | null | undefined;
110712
111379
  };
110713
111380
  status: boolean;
110714
111381
  createdAt: Date;
@@ -111413,6 +112080,7 @@ export declare const platformContract: {
111413
112080
  accessToken?: string | undefined;
111414
112081
  channelSecret?: string | undefined;
111415
112082
  additionalCredentials?: any;
112083
+ lineRichMenuId?: string | null | undefined;
111416
112084
  };
111417
112085
  status: boolean;
111418
112086
  createdAt: Date;
@@ -112035,18 +112703,21 @@ export declare const platformContract: {
112035
112703
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
112036
112704
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
112037
112705
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
112706
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
112038
112707
  }, "strip", import("zod").ZodTypeAny, {
112039
112708
  id: string;
112040
112709
  name: string;
112041
112710
  accessToken?: string | undefined;
112042
112711
  channelSecret?: string | undefined;
112043
112712
  additionalCredentials?: any;
112713
+ lineRichMenuId?: string | null | undefined;
112044
112714
  }, {
112045
112715
  id: string;
112046
112716
  name: string;
112047
112717
  accessToken?: string | undefined;
112048
112718
  channelSecret?: string | undefined;
112049
112719
  additionalCredentials?: any;
112720
+ lineRichMenuId?: string | null | undefined;
112050
112721
  }>;
112051
112722
  brandName: import("zod").ZodString;
112052
112723
  platformId: import("zod").ZodString;
@@ -112287,6 +112958,7 @@ export declare const platformContract: {
112287
112958
  accessToken?: string | undefined;
112288
112959
  channelSecret?: string | undefined;
112289
112960
  additionalCredentials?: any;
112961
+ lineRichMenuId?: string | null | undefined;
112290
112962
  };
112291
112963
  status: boolean;
112292
112964
  createdAt: Date;
@@ -112358,6 +113030,7 @@ export declare const platformContract: {
112358
113030
  accessToken?: string | undefined;
112359
113031
  channelSecret?: string | undefined;
112360
113032
  additionalCredentials?: any;
113033
+ lineRichMenuId?: string | null | undefined;
112361
113034
  };
112362
113035
  status: boolean;
112363
113036
  createdAt: Date;
@@ -112431,6 +113104,7 @@ export declare const platformContract: {
112431
113104
  accessToken?: string | undefined;
112432
113105
  channelSecret?: string | undefined;
112433
113106
  additionalCredentials?: any;
113107
+ lineRichMenuId?: string | null | undefined;
112434
113108
  };
112435
113109
  status: boolean;
112436
113110
  createdAt: Date;
@@ -112505,6 +113179,7 @@ export declare const platformContract: {
112505
113179
  accessToken?: string | undefined;
112506
113180
  channelSecret?: string | undefined;
112507
113181
  additionalCredentials?: any;
113182
+ lineRichMenuId?: string | null | undefined;
112508
113183
  };
112509
113184
  status: boolean;
112510
113185
  createdAt: Date;
@@ -112615,24 +113290,28 @@ export declare const platformContract: {
112615
113290
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
112616
113291
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
112617
113292
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
113293
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
112618
113294
  }, "strip", import("zod").ZodTypeAny, {
112619
113295
  id: string;
112620
113296
  name: string;
112621
113297
  accessToken?: string | undefined;
112622
113298
  channelSecret?: string | undefined;
112623
113299
  additionalCredentials?: any;
113300
+ lineRichMenuId?: string | null | undefined;
112624
113301
  }, {
112625
113302
  id: string;
112626
113303
  name: string;
112627
113304
  accessToken?: string | undefined;
112628
113305
  channelSecret?: string | undefined;
112629
113306
  additionalCredentials?: any;
113307
+ lineRichMenuId?: string | null | undefined;
112630
113308
  }>;
112631
113309
  platformId: import("zod").ZodString;
112632
113310
  brandName: import("zod").ZodString;
112633
113311
  status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
112634
113312
  connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
112635
113313
  connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
113314
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
112636
113315
  actor: import("zod").ZodOptional<import("zod").ZodObject<{
112637
113316
  id: import("zod").ZodString;
112638
113317
  name: import("zod").ZodString;
@@ -112662,12 +113341,14 @@ export declare const platformContract: {
112662
113341
  accessToken?: string | undefined;
112663
113342
  channelSecret?: string | undefined;
112664
113343
  additionalCredentials?: any;
113344
+ lineRichMenuId?: string | null | undefined;
112665
113345
  };
112666
113346
  status: boolean;
112667
113347
  brandName: string;
112668
113348
  platformId: string;
112669
113349
  connectedUserName?: string | null | undefined;
112670
113350
  connectedUserId?: string | null | undefined;
113351
+ lineRichMenuId?: string | null | undefined;
112671
113352
  actor?: {
112672
113353
  id: string;
112673
113354
  address: string | null;
@@ -112685,12 +113366,14 @@ export declare const platformContract: {
112685
113366
  accessToken?: string | undefined;
112686
113367
  channelSecret?: string | undefined;
112687
113368
  additionalCredentials?: any;
113369
+ lineRichMenuId?: string | null | undefined;
112688
113370
  };
112689
113371
  status: boolean;
112690
113372
  brandName: string;
112691
113373
  platformId: string;
112692
113374
  connectedUserName?: string | null | undefined;
112693
113375
  connectedUserId?: string | null | undefined;
113376
+ lineRichMenuId?: string | null | undefined;
112694
113377
  actor?: {
112695
113378
  id: string;
112696
113379
  address: string | null;
@@ -112710,12 +113393,14 @@ export declare const platformContract: {
112710
113393
  accessToken?: string | undefined;
112711
113394
  channelSecret?: string | undefined;
112712
113395
  additionalCredentials?: any;
113396
+ lineRichMenuId?: string | null | undefined;
112713
113397
  };
112714
113398
  status: boolean;
112715
113399
  brandName: string;
112716
113400
  platformId: string;
112717
113401
  connectedUserName?: string | null | undefined;
112718
113402
  connectedUserId?: string | null | undefined;
113403
+ lineRichMenuId?: string | null | undefined;
112719
113404
  actor?: {
112720
113405
  id: string;
112721
113406
  address: string | null;
@@ -112736,12 +113421,14 @@ export declare const platformContract: {
112736
113421
  accessToken?: string | undefined;
112737
113422
  channelSecret?: string | undefined;
112738
113423
  additionalCredentials?: any;
113424
+ lineRichMenuId?: string | null | undefined;
112739
113425
  };
112740
113426
  status: boolean;
112741
113427
  brandName: string;
112742
113428
  platformId: string;
112743
113429
  connectedUserName?: string | null | undefined;
112744
113430
  connectedUserId?: string | null | undefined;
113431
+ lineRichMenuId?: string | null | undefined;
112745
113432
  actor?: {
112746
113433
  id: string;
112747
113434
  address: string | null;
@@ -113010,36 +113697,41 @@ export declare const platformBotpressContract: {
113010
113697
  }, {
113011
113698
  name: string;
113012
113699
  }>;
113013
- botpressUserMetadata: import("zod").ZodNullable<import("zod").ZodObject<{
113700
+ botpressUserMetadata: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
113701
+ botpressBotId: import("zod").ZodString;
113014
113702
  id: import("zod").ZodString;
113015
113703
  name: import("zod").ZodString;
113016
113704
  }, "strip", import("zod").ZodTypeAny, {
113017
113705
  id: string;
113018
113706
  name: string;
113707
+ botpressBotId: string;
113019
113708
  }, {
113020
113709
  id: string;
113021
113710
  name: string;
113022
- }>>;
113711
+ botpressBotId: string;
113712
+ }>, "many">>>;
113023
113713
  }, "strip", import("zod").ZodTypeAny, {
113024
113714
  id: string;
113025
113715
  contact: {
113026
113716
  name: string;
113027
113717
  };
113028
113718
  socialPlatformId: string;
113029
- botpressUserMetadata: {
113719
+ botpressUserMetadata?: {
113030
113720
  id: string;
113031
113721
  name: string;
113032
- } | null;
113722
+ botpressBotId: string;
113723
+ }[] | null | undefined;
113033
113724
  }, {
113034
113725
  id: string;
113035
113726
  contact: {
113036
113727
  name: string;
113037
113728
  };
113038
113729
  socialPlatformId: string;
113039
- botpressUserMetadata: {
113730
+ botpressUserMetadata?: {
113040
113731
  id: string;
113041
113732
  name: string;
113042
- } | null;
113733
+ botpressBotId: string;
113734
+ }[] | null | undefined;
113043
113735
  }>;
113044
113736
  }, "strip", import("zod").ZodTypeAny, {
113045
113737
  id: string;
@@ -113057,10 +113749,11 @@ export declare const platformBotpressContract: {
113057
113749
  name: string;
113058
113750
  };
113059
113751
  socialPlatformId: string;
113060
- botpressUserMetadata: {
113752
+ botpressUserMetadata?: {
113061
113753
  id: string;
113062
113754
  name: string;
113063
- } | null;
113755
+ botpressBotId: string;
113756
+ }[] | null | undefined;
113064
113757
  };
113065
113758
  botpressConversationMetadata?: {
113066
113759
  id: string;
@@ -113081,10 +113774,11 @@ export declare const platformBotpressContract: {
113081
113774
  name: string;
113082
113775
  };
113083
113776
  socialPlatformId: string;
113084
- botpressUserMetadata: {
113777
+ botpressUserMetadata?: {
113085
113778
  id: string;
113086
113779
  name: string;
113087
- } | null;
113780
+ botpressBotId: string;
113781
+ }[] | null | undefined;
113088
113782
  };
113089
113783
  botpressConversationMetadata?: {
113090
113784
  id: string;
@@ -113108,10 +113802,11 @@ export declare const platformBotpressContract: {
113108
113802
  name: string;
113109
113803
  };
113110
113804
  socialPlatformId: string;
113111
- botpressUserMetadata: {
113805
+ botpressUserMetadata?: {
113112
113806
  id: string;
113113
113807
  name: string;
113114
- } | null;
113808
+ botpressBotId: string;
113809
+ }[] | null | undefined;
113115
113810
  };
113116
113811
  botpressConversationMetadata?: {
113117
113812
  id: string;
@@ -113136,10 +113831,11 @@ export declare const platformBotpressContract: {
113136
113831
  name: string;
113137
113832
  };
113138
113833
  socialPlatformId: string;
113139
- botpressUserMetadata: {
113834
+ botpressUserMetadata?: {
113140
113835
  id: string;
113141
113836
  name: string;
113142
- } | null;
113837
+ botpressBotId: string;
113838
+ }[] | null | undefined;
113143
113839
  };
113144
113840
  botpressConversationMetadata?: {
113145
113841
  id: string;
@@ -122286,6 +122982,131 @@ export declare const telephonyContract: {
122286
122982
  'x-client-timezone'?: string | undefined;
122287
122983
  }>>>;
122288
122984
  };
122985
+ getCallRedirectSetting: {
122986
+ method: "GET";
122987
+ responses: {
122988
+ 200: import("zod").ZodObject<{
122989
+ requestId: import("zod").ZodString;
122990
+ callRedirectTo: import("zod").ZodString;
122991
+ }, "strip", import("zod").ZodTypeAny, {
122992
+ requestId: string;
122993
+ callRedirectTo: string;
122994
+ }, {
122995
+ requestId: string;
122996
+ callRedirectTo: string;
122997
+ }>;
122998
+ 400: import("zod").ZodObject<{
122999
+ message: import("zod").ZodString;
123000
+ }, "strip", import("zod").ZodTypeAny, {
123001
+ message: string;
123002
+ }, {
123003
+ message: string;
123004
+ }>;
123005
+ 401: import("zod").ZodObject<{
123006
+ message: import("zod").ZodString;
123007
+ error: import("zod").ZodAny;
123008
+ }, "strip", import("zod").ZodTypeAny, {
123009
+ message: string;
123010
+ error?: any;
123011
+ }, {
123012
+ message: string;
123013
+ error?: any;
123014
+ }>;
123015
+ 500: import("zod").ZodObject<{
123016
+ message: import("zod").ZodString;
123017
+ error: import("zod").ZodAny;
123018
+ }, "strip", import("zod").ZodTypeAny, {
123019
+ message: string;
123020
+ error?: any;
123021
+ }, {
123022
+ message: string;
123023
+ error?: any;
123024
+ }>;
123025
+ };
123026
+ path: "telephony-cdr/call-redirect-setting";
123027
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
123028
+ 'x-tenant': import("zod").ZodString;
123029
+ authorization: import("zod").ZodString;
123030
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
123031
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
123032
+ }, "strip", import("zod").ZodTypeAny, {
123033
+ 'x-tenant': string;
123034
+ authorization: string;
123035
+ 'x-client-timezone': string;
123036
+ 'x-code'?: string | undefined;
123037
+ }, {
123038
+ 'x-tenant': string;
123039
+ authorization: string;
123040
+ 'x-code'?: string | undefined;
123041
+ 'x-client-timezone'?: string | undefined;
123042
+ }>>>;
123043
+ };
123044
+ updateCallRedirectSetting: {
123045
+ body: import("zod").ZodObject<{
123046
+ callRedirectTo: import("zod").ZodString;
123047
+ }, "strip", import("zod").ZodTypeAny, {
123048
+ callRedirectTo: string;
123049
+ }, {
123050
+ callRedirectTo: string;
123051
+ }>;
123052
+ method: "PATCH";
123053
+ responses: {
123054
+ 200: import("zod").ZodObject<{
123055
+ requestId: import("zod").ZodString;
123056
+ callRedirectTo: import("zod").ZodString;
123057
+ }, "strip", import("zod").ZodTypeAny, {
123058
+ requestId: string;
123059
+ callRedirectTo: string;
123060
+ }, {
123061
+ requestId: string;
123062
+ callRedirectTo: string;
123063
+ }>;
123064
+ 400: import("zod").ZodObject<{
123065
+ message: import("zod").ZodString;
123066
+ }, "strip", import("zod").ZodTypeAny, {
123067
+ message: string;
123068
+ }, {
123069
+ message: string;
123070
+ }>;
123071
+ 401: import("zod").ZodObject<{
123072
+ message: import("zod").ZodString;
123073
+ error: import("zod").ZodAny;
123074
+ }, "strip", import("zod").ZodTypeAny, {
123075
+ message: string;
123076
+ error?: any;
123077
+ }, {
123078
+ message: string;
123079
+ error?: any;
123080
+ }>;
123081
+ 500: import("zod").ZodObject<{
123082
+ message: import("zod").ZodString;
123083
+ error: import("zod").ZodAny;
123084
+ }, "strip", import("zod").ZodTypeAny, {
123085
+ message: string;
123086
+ error?: any;
123087
+ }, {
123088
+ message: string;
123089
+ error?: any;
123090
+ }>;
123091
+ };
123092
+ path: "telephony-cdr/call-redirect-setting";
123093
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
123094
+ 'x-tenant': import("zod").ZodString;
123095
+ authorization: import("zod").ZodString;
123096
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
123097
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
123098
+ }, "strip", import("zod").ZodTypeAny, {
123099
+ 'x-tenant': string;
123100
+ authorization: string;
123101
+ 'x-client-timezone': string;
123102
+ 'x-code'?: string | undefined;
123103
+ }, {
123104
+ 'x-tenant': string;
123105
+ authorization: string;
123106
+ 'x-code'?: string | undefined;
123107
+ 'x-client-timezone'?: string | undefined;
123108
+ }>>>;
123109
+ };
122289
123110
  };
122290
123111
  };
122291
123112
  export declare const notificationContract: {
@@ -171347,18 +172168,21 @@ export declare const workflowContract: {
171347
172168
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
171348
172169
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
171349
172170
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
172171
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
171350
172172
  }, "strip", import("zod").ZodTypeAny, {
171351
172173
  id: string;
171352
172174
  name: string;
171353
172175
  accessToken?: string | undefined;
171354
172176
  channelSecret?: string | undefined;
171355
172177
  additionalCredentials?: any;
172178
+ lineRichMenuId?: string | null | undefined;
171356
172179
  }, {
171357
172180
  id: string;
171358
172181
  name: string;
171359
172182
  accessToken?: string | undefined;
171360
172183
  channelSecret?: string | undefined;
171361
172184
  additionalCredentials?: any;
172185
+ lineRichMenuId?: string | null | undefined;
171362
172186
  }>;
171363
172187
  brandName: import("zod").ZodString;
171364
172188
  platformId: import("zod").ZodString;
@@ -171599,6 +172423,7 @@ export declare const workflowContract: {
171599
172423
  accessToken?: string | undefined;
171600
172424
  channelSecret?: string | undefined;
171601
172425
  additionalCredentials?: any;
172426
+ lineRichMenuId?: string | null | undefined;
171602
172427
  };
171603
172428
  status: boolean;
171604
172429
  createdAt: Date;
@@ -171670,6 +172495,7 @@ export declare const workflowContract: {
171670
172495
  accessToken?: string | undefined;
171671
172496
  channelSecret?: string | undefined;
171672
172497
  additionalCredentials?: any;
172498
+ lineRichMenuId?: string | null | undefined;
171673
172499
  };
171674
172500
  status: boolean;
171675
172501
  createdAt: Date;
@@ -172188,6 +173014,7 @@ export declare const workflowContract: {
172188
173014
  accessToken?: string | undefined;
172189
173015
  channelSecret?: string | undefined;
172190
173016
  additionalCredentials?: any;
173017
+ lineRichMenuId?: string | null | undefined;
172191
173018
  };
172192
173019
  status: boolean;
172193
173020
  createdAt: Date;
@@ -172554,6 +173381,7 @@ export declare const workflowContract: {
172554
173381
  accessToken?: string | undefined;
172555
173382
  channelSecret?: string | undefined;
172556
173383
  additionalCredentials?: any;
173384
+ lineRichMenuId?: string | null | undefined;
172557
173385
  };
172558
173386
  status: boolean;
172559
173387
  createdAt: Date;
@@ -172922,6 +173750,7 @@ export declare const workflowContract: {
172922
173750
  accessToken?: string | undefined;
172923
173751
  channelSecret?: string | undefined;
172924
173752
  additionalCredentials?: any;
173753
+ lineRichMenuId?: string | null | undefined;
172925
173754
  };
172926
173755
  status: boolean;
172927
173756
  createdAt: Date;
@@ -173291,6 +174120,7 @@ export declare const workflowContract: {
173291
174120
  accessToken?: string | undefined;
173292
174121
  channelSecret?: string | undefined;
173293
174122
  additionalCredentials?: any;
174123
+ lineRichMenuId?: string | null | undefined;
173294
174124
  };
173295
174125
  status: boolean;
173296
174126
  createdAt: Date;
@@ -173705,18 +174535,21 @@ export declare const workflowContract: {
173705
174535
  accessToken: import("zod").ZodOptional<import("zod").ZodString>;
173706
174536
  channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
173707
174537
  additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
174538
+ lineRichMenuId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
173708
174539
  }, "strip", import("zod").ZodTypeAny, {
173709
174540
  id: string;
173710
174541
  name: string;
173711
174542
  accessToken?: string | undefined;
173712
174543
  channelSecret?: string | undefined;
173713
174544
  additionalCredentials?: any;
174545
+ lineRichMenuId?: string | null | undefined;
173714
174546
  }, {
173715
174547
  id: string;
173716
174548
  name: string;
173717
174549
  accessToken?: string | undefined;
173718
174550
  channelSecret?: string | undefined;
173719
174551
  additionalCredentials?: any;
174552
+ lineRichMenuId?: string | null | undefined;
173720
174553
  }>;
173721
174554
  brandName: import("zod").ZodString;
173722
174555
  platformId: import("zod").ZodString;
@@ -173957,6 +174790,7 @@ export declare const workflowContract: {
173957
174790
  accessToken?: string | undefined;
173958
174791
  channelSecret?: string | undefined;
173959
174792
  additionalCredentials?: any;
174793
+ lineRichMenuId?: string | null | undefined;
173960
174794
  };
173961
174795
  status: boolean;
173962
174796
  createdAt: Date;
@@ -174028,6 +174862,7 @@ export declare const workflowContract: {
174028
174862
  accessToken?: string | undefined;
174029
174863
  channelSecret?: string | undefined;
174030
174864
  additionalCredentials?: any;
174865
+ lineRichMenuId?: string | null | undefined;
174031
174866
  };
174032
174867
  status: boolean;
174033
174868
  createdAt: Date;
@@ -175903,6 +176738,7 @@ export declare const workflowContract: {
175903
176738
  accessToken?: string | undefined;
175904
176739
  channelSecret?: string | undefined;
175905
176740
  additionalCredentials?: any;
176741
+ lineRichMenuId?: string | null | undefined;
175906
176742
  };
175907
176743
  status: boolean;
175908
176744
  createdAt: Date;
@@ -176270,6 +177106,7 @@ export declare const workflowContract: {
176270
177106
  accessToken?: string | undefined;
176271
177107
  channelSecret?: string | undefined;
176272
177108
  additionalCredentials?: any;
177109
+ lineRichMenuId?: string | null | undefined;
176273
177110
  };
176274
177111
  status: boolean;
176275
177112
  createdAt: Date;
@@ -176639,6 +177476,7 @@ export declare const workflowContract: {
176639
177476
  accessToken?: string | undefined;
176640
177477
  channelSecret?: string | undefined;
176641
177478
  additionalCredentials?: any;
177479
+ lineRichMenuId?: string | null | undefined;
176642
177480
  };
176643
177481
  status: boolean;
176644
177482
  createdAt: Date;
@@ -177009,6 +177847,7 @@ export declare const workflowContract: {
177009
177847
  accessToken?: string | undefined;
177010
177848
  channelSecret?: string | undefined;
177011
177849
  additionalCredentials?: any;
177850
+ lineRichMenuId?: string | null | undefined;
177012
177851
  };
177013
177852
  status: boolean;
177014
177853
  createdAt: Date;