@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
- interface QueryCenterForItemItem {
99
- id: string;
100
- isNewItem: boolean;
101
- }
102
- type QueryCenterForItem = QueryCenterForItemItem[];
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>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.136",
3
+ "version": "0.0.138",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {