@be-link/cs-cli-nodejs 0.0.134 → 0.0.136

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.
@@ -41,9 +41,11 @@ export declare namespace BizTag {
41
41
  tagRelationStatus?: CommodityEnums.CommonStatus;
42
42
  }
43
43
  interface IUpsertBizTagRelation {
44
- type: 'byTag' | 'byItem';
44
+ type: 'byItem' | 'byTag';
45
+ itemType: CommodityEnums.CommodityItemType;
46
+ sortType: CommodityEnums.CommodityBizTagSortType;
45
47
  id: string;
46
- list: string[];
48
+ idList: string[];
47
49
  }
48
50
  interface IDelete {
49
51
  id: string;
@@ -45,14 +45,13 @@ export declare namespace QueryByItem {
45
45
  status?: CommodityEnums.ItemStatus;
46
46
  isOnlyStaffCanSee?: boolean;
47
47
  /** 每日可售卖的最大份数限制 */
48
- isSetMaxSaleCountLimitPerDay?: boolean;
49
48
  /** 是否会员商品 */
50
49
  isMemberPrice?: boolean;
51
50
  /** 适用城市列表 */
52
51
  cityList?: string[];
53
52
  };
54
53
  /** 门店维度条件 */
55
- storeInfo?: {
54
+ venueInfo?: {
56
55
  /** 门店位置 */
57
56
  location?: {
58
57
  /** 省份 */
@@ -70,13 +69,12 @@ export declare namespace QueryByItem {
70
69
  /** 门店设施 */
71
70
  /** 供应商ID列表 */
72
71
  idList?: string[];
73
- isStoreCollaborated: boolean;
74
72
  };
75
73
  };
76
74
  /** 排序条件 */
77
75
  sort?: {
78
- createdAt: 'DESC' | 'ASC';
79
- updatedAt: 'DESC' | 'ASC';
76
+ filed: 'createdAt' | 'updatedAt';
77
+ order: 'DESC' | 'ASC';
80
78
  };
81
79
  /** 页码. 从0起始, 默认0 */
82
80
  pageIndex?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.134",
3
+ "version": "0.0.136",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {