@be-link/cs-cli-nodejs 0.0.136 → 0.0.138
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.
|
@@ -95,11 +95,18 @@ export declare namespace QueryByItem {
|
|
|
95
95
|
saleCount: number;
|
|
96
96
|
sortType: CommodityEnums.CommodityBizTagSortType;
|
|
97
97
|
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
98
|
+
type QueryCenterForItem = {
|
|
99
|
+
data: {
|
|
100
|
+
id: string;
|
|
101
|
+
isMigration: boolean;
|
|
102
|
+
comboStock: Record<string, {
|
|
103
|
+
hasStock: boolean;
|
|
104
|
+
minSalePrice: number;
|
|
105
|
+
minMemberPrice: number;
|
|
106
|
+
}>;
|
|
107
|
+
}[];
|
|
108
|
+
total: number;
|
|
109
|
+
};
|
|
103
110
|
}
|
|
104
111
|
interface Controller {
|
|
105
112
|
get<K extends (keyof GDto.QueryBlockDataMap)[]>(request: Request.IGet<K>): Promise<GDto.QueryDataRes<K>>;
|