@be-link/cs-cli-nodejs 0.0.133 → 0.0.135

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;
@@ -47,6 +47,7 @@ export declare namespace ManageByItem {
47
47
  isSelfLead?: number;
48
48
  needWxGroup?: number;
49
49
  isCloseStayMore?: number;
50
+ isMigration?: number;
50
51
  };
51
52
  innerInfo?: {
52
53
  bizOperators?: 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,7 +69,6 @@ export declare namespace QueryByItem {
70
69
  /** 门店设施 */
71
70
  /** 供应商ID列表 */
72
71
  idList?: string[];
73
- isStoreCollaborated: boolean;
74
72
  };
75
73
  };
76
74
  /** 排序条件 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.133",
3
+ "version": "0.0.135",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types.d.ts CHANGED
@@ -109,6 +109,7 @@ export interface IItemAttributes {
109
109
  isSelfLead?: number;
110
110
  needWxGroup?: number;
111
111
  isCloseStayMore?: number;
112
+ isMigration?: number;
112
113
  };
113
114
  /** 是否仅分享 */
114
115
  isShareOnly: number;