@kl1/contracts 1.1.51 → 1.1.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/channel/index.d.ts +811 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +8 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +5 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +230 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +60 -24
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +79 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +2230 -0
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +83 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +75 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +9 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +186 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/schema.d.ts +230 -1
- package/dist/api-contracts/src/messenger/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +42 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +16 -0
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +61 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +61 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +40 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +18 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +2224 -2154
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2224 -2154
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/api-contracts/src/hold-label/index.d.ts +0 -315
- package/dist/api-contracts/src/hold-label/index.d.ts.map +0 -1
- package/dist/api-contracts/src/hold-label/schema.d.ts +0 -24
- package/dist/api-contracts/src/hold-label/schema.d.ts.map +0 -1
- package/dist/api-contracts/src/hold-label/validation.d.ts +0 -24
- package/dist/api-contracts/src/hold-label/validation.d.ts.map +0 -1
- package/dist/api-contracts/src/presence-status/index.d.ts +0 -556
- package/dist/api-contracts/src/presence-status/index.d.ts.map +0 -1
- package/dist/api-contracts/src/presence-status/schema.d.ts +0 -31
- package/dist/api-contracts/src/presence-status/schema.d.ts.map +0 -1
- package/dist/api-contracts/src/presence-status/validation.d.ts +0 -28
- package/dist/api-contracts/src/presence-status/validation.d.ts.map +0 -1
- package/dist/api-contracts/src/subscription/index.d.ts +0 -1900
- package/dist/api-contracts/src/subscription/index.d.ts.map +0 -1
- package/dist/api-contracts/src/subscription/schema.d.ts +0 -2059
- package/dist/api-contracts/src/subscription/schema.d.ts.map +0 -1
- package/dist/api-contracts/src/subscription/validation.d.ts +0 -37
- package/dist/api-contracts/src/subscription/validation.d.ts.map +0 -1
@@ -785,6 +785,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
785
785
|
apiSecret: string;
|
786
786
|
}>>;
|
787
787
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
788
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
788
789
|
}, "strip", z.ZodTypeAny, {
|
789
790
|
id: string;
|
790
791
|
name: string;
|
@@ -798,6 +799,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
798
799
|
apiSecret: string;
|
799
800
|
} | undefined;
|
800
801
|
lineRichMenuId?: string | null | undefined;
|
802
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
801
803
|
}, {
|
802
804
|
id: string;
|
803
805
|
name: string;
|
@@ -811,6 +813,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
811
813
|
apiSecret: string;
|
812
814
|
} | undefined;
|
813
815
|
lineRichMenuId?: string | null | undefined;
|
816
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
814
817
|
}>;
|
815
818
|
platformId: z.ZodString;
|
816
819
|
brandName: z.ZodString;
|
@@ -854,6 +857,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
854
857
|
apiSecret: string;
|
855
858
|
} | undefined;
|
856
859
|
lineRichMenuId?: string | null | undefined;
|
860
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
857
861
|
};
|
858
862
|
status: boolean;
|
859
863
|
brandName: string;
|
@@ -885,6 +889,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
885
889
|
apiSecret: string;
|
886
890
|
} | undefined;
|
887
891
|
lineRichMenuId?: string | null | undefined;
|
892
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
888
893
|
};
|
889
894
|
status: boolean;
|
890
895
|
brandName: string;
|
@@ -924,6 +929,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
924
929
|
apiSecret: string;
|
925
930
|
}>>;
|
926
931
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
932
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
927
933
|
}, "strip", z.ZodTypeAny, {
|
928
934
|
id: string;
|
929
935
|
name: string;
|
@@ -937,6 +943,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
937
943
|
apiSecret: string;
|
938
944
|
} | undefined;
|
939
945
|
lineRichMenuId?: string | null | undefined;
|
946
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
940
947
|
}, {
|
941
948
|
id: string;
|
942
949
|
name: string;
|
@@ -950,6 +957,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
950
957
|
apiSecret: string;
|
951
958
|
} | undefined;
|
952
959
|
lineRichMenuId?: string | null | undefined;
|
960
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
953
961
|
}>;
|
954
962
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
955
963
|
actor: z.ZodOptional<z.ZodObject<{
|
@@ -998,6 +1006,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
998
1006
|
apiSecret: string;
|
999
1007
|
} | undefined;
|
1000
1008
|
lineRichMenuId?: string | null | undefined;
|
1009
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1001
1010
|
};
|
1002
1011
|
status: boolean;
|
1003
1012
|
createdAt: string;
|
@@ -1033,6 +1042,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1033
1042
|
apiSecret: string;
|
1034
1043
|
} | undefined;
|
1035
1044
|
lineRichMenuId?: string | null | undefined;
|
1045
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1036
1046
|
};
|
1037
1047
|
status: boolean;
|
1038
1048
|
createdAt: string;
|
@@ -1080,6 +1090,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1080
1090
|
apiSecret: string;
|
1081
1091
|
}>>;
|
1082
1092
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1093
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1083
1094
|
}, "strip", z.ZodTypeAny, {
|
1084
1095
|
id: string;
|
1085
1096
|
name: string;
|
@@ -1093,6 +1104,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1093
1104
|
apiSecret: string;
|
1094
1105
|
} | undefined;
|
1095
1106
|
lineRichMenuId?: string | null | undefined;
|
1107
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1096
1108
|
}, {
|
1097
1109
|
id: string;
|
1098
1110
|
name: string;
|
@@ -1106,6 +1118,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1106
1118
|
apiSecret: string;
|
1107
1119
|
} | undefined;
|
1108
1120
|
lineRichMenuId?: string | null | undefined;
|
1121
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1109
1122
|
}>;
|
1110
1123
|
platformId: z.ZodString;
|
1111
1124
|
brandName: z.ZodString;
|
@@ -1149,6 +1162,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1149
1162
|
apiSecret: string;
|
1150
1163
|
} | undefined;
|
1151
1164
|
lineRichMenuId?: string | null | undefined;
|
1165
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1152
1166
|
};
|
1153
1167
|
status: boolean;
|
1154
1168
|
brandName: string;
|
@@ -1180,6 +1194,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1180
1194
|
apiSecret: string;
|
1181
1195
|
} | undefined;
|
1182
1196
|
lineRichMenuId?: string | null | undefined;
|
1197
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1183
1198
|
};
|
1184
1199
|
status: boolean;
|
1185
1200
|
brandName: string;
|
@@ -1214,6 +1229,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1214
1229
|
apiSecret: string;
|
1215
1230
|
} | undefined;
|
1216
1231
|
lineRichMenuId?: string | null | undefined;
|
1232
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1217
1233
|
};
|
1218
1234
|
status: boolean;
|
1219
1235
|
brandName: string;
|
@@ -1248,6 +1264,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1248
1264
|
apiSecret: string;
|
1249
1265
|
} | undefined;
|
1250
1266
|
lineRichMenuId?: string | null | undefined;
|
1267
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1251
1268
|
};
|
1252
1269
|
status: boolean;
|
1253
1270
|
brandName: string;
|
@@ -1434,6 +1451,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1434
1451
|
apiSecret: string;
|
1435
1452
|
} | undefined;
|
1436
1453
|
lineRichMenuId?: string | null | undefined;
|
1454
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1437
1455
|
};
|
1438
1456
|
status: boolean;
|
1439
1457
|
brandName: string;
|
@@ -1502,6 +1520,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1502
1520
|
apiSecret: string;
|
1503
1521
|
} | undefined;
|
1504
1522
|
lineRichMenuId?: string | null | undefined;
|
1523
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1505
1524
|
};
|
1506
1525
|
status: boolean;
|
1507
1526
|
brandName: string;
|
@@ -1669,6 +1688,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1669
1688
|
apiSecret: string;
|
1670
1689
|
}>>;
|
1671
1690
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1691
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1672
1692
|
}, "strip", z.ZodTypeAny, {
|
1673
1693
|
id: string;
|
1674
1694
|
name: string;
|
@@ -1682,6 +1702,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1682
1702
|
apiSecret: string;
|
1683
1703
|
} | undefined;
|
1684
1704
|
lineRichMenuId?: string | null | undefined;
|
1705
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1685
1706
|
}, {
|
1686
1707
|
id: string;
|
1687
1708
|
name: string;
|
@@ -1695,6 +1716,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1695
1716
|
apiSecret: string;
|
1696
1717
|
} | undefined;
|
1697
1718
|
lineRichMenuId?: string | null | undefined;
|
1719
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1698
1720
|
}>;
|
1699
1721
|
platformId: z.ZodString;
|
1700
1722
|
brandName: z.ZodString;
|
@@ -1738,6 +1760,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1738
1760
|
apiSecret: string;
|
1739
1761
|
} | undefined;
|
1740
1762
|
lineRichMenuId?: string | null | undefined;
|
1763
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1741
1764
|
};
|
1742
1765
|
status: boolean;
|
1743
1766
|
brandName: string;
|
@@ -1769,6 +1792,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1769
1792
|
apiSecret: string;
|
1770
1793
|
} | undefined;
|
1771
1794
|
lineRichMenuId?: string | null | undefined;
|
1795
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1772
1796
|
};
|
1773
1797
|
status: boolean;
|
1774
1798
|
brandName: string;
|
@@ -1804,6 +1828,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1804
1828
|
apiSecret: string;
|
1805
1829
|
} | undefined;
|
1806
1830
|
lineRichMenuId?: string | null | undefined;
|
1831
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1807
1832
|
};
|
1808
1833
|
status: boolean;
|
1809
1834
|
brandName: string;
|
@@ -1878,6 +1903,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1878
1903
|
apiSecret: string;
|
1879
1904
|
} | undefined;
|
1880
1905
|
lineRichMenuId?: string | null | undefined;
|
1906
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1881
1907
|
};
|
1882
1908
|
status: boolean;
|
1883
1909
|
brandName: string;
|
@@ -2120,6 +2146,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2120
2146
|
apiSecret: string;
|
2121
2147
|
} | undefined;
|
2122
2148
|
lineRichMenuId?: string | null | undefined;
|
2149
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
2123
2150
|
};
|
2124
2151
|
status: boolean;
|
2125
2152
|
brandName: string;
|
@@ -2233,6 +2260,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2233
2260
|
apiSecret: string;
|
2234
2261
|
} | undefined;
|
2235
2262
|
lineRichMenuId?: string | null | undefined;
|
2263
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
2236
2264
|
};
|
2237
2265
|
status: boolean;
|
2238
2266
|
brandName: string;
|
@@ -2570,6 +2598,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2570
2598
|
apiSecret: string;
|
2571
2599
|
}>>;
|
2572
2600
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2601
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2573
2602
|
}, "strip", z.ZodTypeAny, {
|
2574
2603
|
id: string;
|
2575
2604
|
name: string;
|
@@ -2583,6 +2612,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2583
2612
|
apiSecret: string;
|
2584
2613
|
} | undefined;
|
2585
2614
|
lineRichMenuId?: string | null | undefined;
|
2615
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
2586
2616
|
}, {
|
2587
2617
|
id: string;
|
2588
2618
|
name: string;
|
@@ -2596,6 +2626,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2596
2626
|
apiSecret: string;
|
2597
2627
|
} | undefined;
|
2598
2628
|
lineRichMenuId?: string | null | undefined;
|
2629
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
2599
2630
|
}>;
|
2600
2631
|
platformId: z.ZodString;
|
2601
2632
|
brandName: z.ZodString;
|
@@ -2639,6 +2670,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2639
2670
|
apiSecret: string;
|
2640
2671
|
} | undefined;
|
2641
2672
|
lineRichMenuId?: string | null | undefined;
|
2673
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
2642
2674
|
};
|
2643
2675
|
status: boolean;
|
2644
2676
|
brandName: string;
|
@@ -2670,6 +2702,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2670
2702
|
apiSecret: string;
|
2671
2703
|
} | undefined;
|
2672
2704
|
lineRichMenuId?: string | null | undefined;
|
2705
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
2673
2706
|
};
|
2674
2707
|
status: boolean;
|
2675
2708
|
brandName: string;
|
@@ -2705,6 +2738,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2705
2738
|
apiSecret: string;
|
2706
2739
|
} | undefined;
|
2707
2740
|
lineRichMenuId?: string | null | undefined;
|
2741
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
2708
2742
|
};
|
2709
2743
|
status: boolean;
|
2710
2744
|
brandName: string;
|
@@ -2779,6 +2813,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2779
2813
|
apiSecret: string;
|
2780
2814
|
} | undefined;
|
2781
2815
|
lineRichMenuId?: string | null | undefined;
|
2816
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
2782
2817
|
};
|
2783
2818
|
status: boolean;
|
2784
2819
|
brandName: string;
|
@@ -2902,6 +2937,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2902
2937
|
apiSecret: string;
|
2903
2938
|
} | undefined;
|
2904
2939
|
lineRichMenuId?: string | null | undefined;
|
2940
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
2905
2941
|
};
|
2906
2942
|
status: boolean;
|
2907
2943
|
brandName: string;
|
@@ -3019,6 +3055,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3019
3055
|
apiSecret: string;
|
3020
3056
|
} | undefined;
|
3021
3057
|
lineRichMenuId?: string | null | undefined;
|
3058
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
3022
3059
|
};
|
3023
3060
|
status: boolean;
|
3024
3061
|
brandName: string;
|
@@ -5037,6 +5074,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5037
5074
|
apiSecret: string;
|
5038
5075
|
}>>;
|
5039
5076
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5077
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
5040
5078
|
}, "strip", z.ZodTypeAny, {
|
5041
5079
|
id: string;
|
5042
5080
|
name: string;
|
@@ -5050,6 +5088,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5050
5088
|
apiSecret: string;
|
5051
5089
|
} | undefined;
|
5052
5090
|
lineRichMenuId?: string | null | undefined;
|
5091
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
5053
5092
|
}, {
|
5054
5093
|
id: string;
|
5055
5094
|
name: string;
|
@@ -5063,6 +5102,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5063
5102
|
apiSecret: string;
|
5064
5103
|
} | undefined;
|
5065
5104
|
lineRichMenuId?: string | null | undefined;
|
5105
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
5066
5106
|
}>;
|
5067
5107
|
brandName: z.ZodString;
|
5068
5108
|
platformId: z.ZodString;
|
@@ -5310,6 +5350,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5310
5350
|
apiSecret: string;
|
5311
5351
|
} | undefined;
|
5312
5352
|
lineRichMenuId?: string | null | undefined;
|
5353
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
5313
5354
|
};
|
5314
5355
|
status: boolean;
|
5315
5356
|
createdAt: Date;
|
@@ -5388,6 +5429,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5388
5429
|
apiSecret: string;
|
5389
5430
|
} | undefined;
|
5390
5431
|
lineRichMenuId?: string | null | undefined;
|
5432
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
5391
5433
|
};
|
5392
5434
|
status: boolean;
|
5393
5435
|
createdAt: Date;
|
@@ -5914,6 +5956,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5914
5956
|
apiSecret: string;
|
5915
5957
|
} | undefined;
|
5916
5958
|
lineRichMenuId?: string | null | undefined;
|
5959
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
5917
5960
|
};
|
5918
5961
|
status: boolean;
|
5919
5962
|
createdAt: Date;
|
@@ -6303,6 +6346,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6303
6346
|
apiSecret: string;
|
6304
6347
|
} | undefined;
|
6305
6348
|
lineRichMenuId?: string | null | undefined;
|
6349
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
6306
6350
|
};
|
6307
6351
|
status: boolean;
|
6308
6352
|
createdAt: Date;
|
@@ -9416,6 +9460,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
9416
9460
|
apiSecret: string;
|
9417
9461
|
}>>;
|
9418
9462
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9463
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
9419
9464
|
}, "strip", z.ZodTypeAny, {
|
9420
9465
|
id: string;
|
9421
9466
|
name: string;
|
@@ -9429,6 +9474,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
9429
9474
|
apiSecret: string;
|
9430
9475
|
} | undefined;
|
9431
9476
|
lineRichMenuId?: string | null | undefined;
|
9477
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
9432
9478
|
}, {
|
9433
9479
|
id: string;
|
9434
9480
|
name: string;
|
@@ -9442,6 +9488,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
9442
9488
|
apiSecret: string;
|
9443
9489
|
} | undefined;
|
9444
9490
|
lineRichMenuId?: string | null | undefined;
|
9491
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
9445
9492
|
}>;
|
9446
9493
|
brandName: z.ZodString;
|
9447
9494
|
platformId: z.ZodString;
|
@@ -9689,6 +9736,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
9689
9736
|
apiSecret: string;
|
9690
9737
|
} | undefined;
|
9691
9738
|
lineRichMenuId?: string | null | undefined;
|
9739
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
9692
9740
|
};
|
9693
9741
|
status: boolean;
|
9694
9742
|
createdAt: Date;
|
@@ -9767,6 +9815,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
9767
9815
|
apiSecret: string;
|
9768
9816
|
} | undefined;
|
9769
9817
|
lineRichMenuId?: string | null | undefined;
|
9818
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
9770
9819
|
};
|
9771
9820
|
status: boolean;
|
9772
9821
|
createdAt: Date;
|
@@ -10293,6 +10342,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10293
10342
|
apiSecret: string;
|
10294
10343
|
} | undefined;
|
10295
10344
|
lineRichMenuId?: string | null | undefined;
|
10345
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
10296
10346
|
};
|
10297
10347
|
status: boolean;
|
10298
10348
|
createdAt: Date;
|
@@ -10682,6 +10732,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10682
10732
|
apiSecret: string;
|
10683
10733
|
} | undefined;
|
10684
10734
|
lineRichMenuId?: string | null | undefined;
|
10735
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
10685
10736
|
};
|
10686
10737
|
status: boolean;
|
10687
10738
|
createdAt: Date;
|
@@ -12844,6 +12895,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
12844
12895
|
apiSecret: string;
|
12845
12896
|
} | undefined;
|
12846
12897
|
lineRichMenuId?: string | null | undefined;
|
12898
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
12847
12899
|
};
|
12848
12900
|
status: boolean;
|
12849
12901
|
createdAt: Date;
|
@@ -13570,6 +13622,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
13570
13622
|
apiSecret: string;
|
13571
13623
|
} | undefined;
|
13572
13624
|
lineRichMenuId?: string | null | undefined;
|
13625
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
13573
13626
|
};
|
13574
13627
|
status: boolean;
|
13575
13628
|
createdAt: Date;
|
@@ -14297,6 +14350,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
14297
14350
|
apiSecret: string;
|
14298
14351
|
} | undefined;
|
14299
14352
|
lineRichMenuId?: string | null | undefined;
|
14353
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
14300
14354
|
};
|
14301
14355
|
status: boolean;
|
14302
14356
|
createdAt: Date;
|
@@ -15023,6 +15077,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
15023
15077
|
apiSecret: string;
|
15024
15078
|
} | undefined;
|
15025
15079
|
lineRichMenuId?: string | null | undefined;
|
15080
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
15026
15081
|
};
|
15027
15082
|
status: boolean;
|
15028
15083
|
createdAt: Date;
|
@@ -15750,6 +15805,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
15750
15805
|
apiSecret: string;
|
15751
15806
|
} | undefined;
|
15752
15807
|
lineRichMenuId?: string | null | undefined;
|
15808
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
15753
15809
|
};
|
15754
15810
|
status: boolean;
|
15755
15811
|
createdAt: Date;
|
@@ -16476,6 +16532,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
16476
16532
|
apiSecret: string;
|
16477
16533
|
} | undefined;
|
16478
16534
|
lineRichMenuId?: string | null | undefined;
|
16535
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
16479
16536
|
};
|
16480
16537
|
status: boolean;
|
16481
16538
|
createdAt: Date;
|
@@ -17205,6 +17262,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
17205
17262
|
apiSecret: string;
|
17206
17263
|
} | undefined;
|
17207
17264
|
lineRichMenuId?: string | null | undefined;
|
17265
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
17208
17266
|
};
|
17209
17267
|
status: boolean;
|
17210
17268
|
createdAt: Date;
|
@@ -17931,6 +17989,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
17931
17989
|
apiSecret: string;
|
17932
17990
|
} | undefined;
|
17933
17991
|
lineRichMenuId?: string | null | undefined;
|
17992
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
17934
17993
|
};
|
17935
17994
|
status: boolean;
|
17936
17995
|
createdAt: Date;
|
@@ -18661,6 +18720,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
18661
18720
|
apiSecret: string;
|
18662
18721
|
} | undefined;
|
18663
18722
|
lineRichMenuId?: string | null | undefined;
|
18723
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
18664
18724
|
};
|
18665
18725
|
status: boolean;
|
18666
18726
|
createdAt: Date;
|
@@ -19387,6 +19447,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
19387
19447
|
apiSecret: string;
|
19388
19448
|
} | undefined;
|
19389
19449
|
lineRichMenuId?: string | null | undefined;
|
19450
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
19390
19451
|
};
|
19391
19452
|
status: boolean;
|
19392
19453
|
createdAt: Date;
|
@@ -20015,6 +20076,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
20015
20076
|
apiSecret: string;
|
20016
20077
|
}>>;
|
20017
20078
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20079
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20018
20080
|
}, "strip", z.ZodTypeAny, {
|
20019
20081
|
id: string;
|
20020
20082
|
name: string;
|
@@ -20028,6 +20090,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
20028
20090
|
apiSecret: string;
|
20029
20091
|
} | undefined;
|
20030
20092
|
lineRichMenuId?: string | null | undefined;
|
20093
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
20031
20094
|
}, {
|
20032
20095
|
id: string;
|
20033
20096
|
name: string;
|
@@ -20041,6 +20104,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
20041
20104
|
apiSecret: string;
|
20042
20105
|
} | undefined;
|
20043
20106
|
lineRichMenuId?: string | null | undefined;
|
20107
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
20044
20108
|
}>;
|
20045
20109
|
platformId: z.ZodString;
|
20046
20110
|
brandName: z.ZodString;
|
@@ -20084,6 +20148,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
20084
20148
|
apiSecret: string;
|
20085
20149
|
} | undefined;
|
20086
20150
|
lineRichMenuId?: string | null | undefined;
|
20151
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
20087
20152
|
};
|
20088
20153
|
status: boolean;
|
20089
20154
|
brandName: string;
|
@@ -20115,6 +20180,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
20115
20180
|
apiSecret: string;
|
20116
20181
|
} | undefined;
|
20117
20182
|
lineRichMenuId?: string | null | undefined;
|
20183
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
20118
20184
|
};
|
20119
20185
|
status: boolean;
|
20120
20186
|
brandName: string;
|
@@ -20148,6 +20214,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
20148
20214
|
apiSecret: string;
|
20149
20215
|
} | undefined;
|
20150
20216
|
lineRichMenuId?: string | null | undefined;
|
20217
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
20151
20218
|
};
|
20152
20219
|
status: boolean;
|
20153
20220
|
brandName: string;
|
@@ -20182,6 +20249,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
20182
20249
|
apiSecret: string;
|
20183
20250
|
} | undefined;
|
20184
20251
|
lineRichMenuId?: string | null | undefined;
|
20252
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
20185
20253
|
};
|
20186
20254
|
status: boolean;
|
20187
20255
|
brandName: string;
|
@@ -21597,6 +21665,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
21597
21665
|
apiSecret: string;
|
21598
21666
|
}>>;
|
21599
21667
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21668
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21600
21669
|
}, "strip", z.ZodTypeAny, {
|
21601
21670
|
id: string;
|
21602
21671
|
name: string;
|
@@ -21610,6 +21679,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
21610
21679
|
apiSecret: string;
|
21611
21680
|
} | undefined;
|
21612
21681
|
lineRichMenuId?: string | null | undefined;
|
21682
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21613
21683
|
}, {
|
21614
21684
|
id: string;
|
21615
21685
|
name: string;
|
@@ -21623,6 +21693,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
21623
21693
|
apiSecret: string;
|
21624
21694
|
} | undefined;
|
21625
21695
|
lineRichMenuId?: string | null | undefined;
|
21696
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21626
21697
|
}>;
|
21627
21698
|
platformId: z.ZodString;
|
21628
21699
|
brandName: z.ZodString;
|
@@ -21666,6 +21737,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
21666
21737
|
apiSecret: string;
|
21667
21738
|
} | undefined;
|
21668
21739
|
lineRichMenuId?: string | null | undefined;
|
21740
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21669
21741
|
};
|
21670
21742
|
status: boolean;
|
21671
21743
|
brandName: string;
|
@@ -21697,6 +21769,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
21697
21769
|
apiSecret: string;
|
21698
21770
|
} | undefined;
|
21699
21771
|
lineRichMenuId?: string | null | undefined;
|
21772
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21700
21773
|
};
|
21701
21774
|
status: boolean;
|
21702
21775
|
brandName: string;
|
@@ -22361,6 +22434,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
22361
22434
|
apiSecret: string;
|
22362
22435
|
} | undefined;
|
22363
22436
|
lineRichMenuId?: string | null | undefined;
|
22437
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
22364
22438
|
};
|
22365
22439
|
status: boolean;
|
22366
22440
|
brandName: string;
|
@@ -22675,6 +22749,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
22675
22749
|
apiSecret: string;
|
22676
22750
|
} | undefined;
|
22677
22751
|
lineRichMenuId?: string | null | undefined;
|
22752
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
22678
22753
|
};
|
22679
22754
|
status: boolean;
|
22680
22755
|
brandName: string;
|
@@ -23645,6 +23720,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23645
23720
|
apiSecret: string;
|
23646
23721
|
} | undefined;
|
23647
23722
|
lineRichMenuId?: string | null | undefined;
|
23723
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
23648
23724
|
};
|
23649
23725
|
status: boolean;
|
23650
23726
|
brandName: string;
|
@@ -24122,6 +24198,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
24122
24198
|
apiSecret: string;
|
24123
24199
|
} | undefined;
|
24124
24200
|
lineRichMenuId?: string | null | undefined;
|
24201
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
24125
24202
|
};
|
24126
24203
|
status: boolean;
|
24127
24204
|
brandName: string;
|
@@ -24601,6 +24678,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
24601
24678
|
apiSecret: string;
|
24602
24679
|
} | undefined;
|
24603
24680
|
lineRichMenuId?: string | null | undefined;
|
24681
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
24604
24682
|
};
|
24605
24683
|
status: boolean;
|
24606
24684
|
brandName: string;
|
@@ -25080,6 +25158,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
25080
25158
|
apiSecret: string;
|
25081
25159
|
} | undefined;
|
25082
25160
|
lineRichMenuId?: string | null | undefined;
|
25161
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
25083
25162
|
};
|
25084
25163
|
status: boolean;
|
25085
25164
|
brandName: string;
|