@be-link/cs-cli-nodejs 0.0.42 → 0.0.44

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.
@@ -138,10 +138,6 @@ export declare namespace ServiceVenue {
138
138
  starLevel: number;
139
139
  /** 钻级 */
140
140
  diamondLevel: number;
141
- /** 电话 */
142
- phone: string;
143
- /** 联系人 */
144
- contactName: string;
145
141
  }
146
142
  /** 创建门店 */
147
143
  interface ICreateServiceVenueRes {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.42",
3
+ "version": "0.0.44",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types.d.ts CHANGED
@@ -45,8 +45,8 @@ export interface IItemBasicInfo {
45
45
  headPics: string[];
46
46
  /** 微信视频号信息 */
47
47
  wxChannelInfo: {
48
- finderId: string;
49
- feedId: string;
48
+ finderId?: string;
49
+ feedId?: string;
50
50
  };
51
51
  /** 商品一级类目 */
52
52
  categoryOne: string;
@@ -99,7 +99,13 @@ export interface IItemAttributes {
99
99
  updatedAt: number;
100
100
  /** 商品属性 */
101
101
  attributes: {
102
- [key: string]: number;
102
+ isShareOnly?: number;
103
+ isOnlyStaffCanSee?: number;
104
+ canModifyMeal?: number;
105
+ canUseCakeCoupon?: number;
106
+ isSelfLead?: number;
107
+ needWxGroup?: number;
108
+ isCloseStayMore?: number;
103
109
  };
104
110
  /** 是否仅分享 */
105
111
  isShareOnly: number;