@be-link/cs-cli-nodejs 0.0.119 → 0.0.120

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.
@@ -14,6 +14,7 @@ export declare namespace ServiceVenue {
14
14
  /** 查询门店列表 */
15
15
  interface IQueryServiceVenueList {
16
16
  serviceVenueType?: string;
17
+ status?: string;
17
18
  ids?: string[];
18
19
  name?: string;
19
20
  pageSize?: number;
@@ -36,9 +37,6 @@ export declare namespace ServiceVenue {
36
37
  /** 更新门店 */
37
38
  interface IUpdateServiceVenue {
38
39
  id: string;
39
- status: string;
40
- pics: string[];
41
- type: string;
42
40
  name: string;
43
41
  poiInfo?: {
44
42
  poi: string;
@@ -47,12 +45,11 @@ export declare namespace ServiceVenue {
47
45
  province: string;
48
46
  address: string;
49
47
  gis: {
50
- x: number;
51
- y: number;
48
+ lat: number;
49
+ lng: number;
52
50
  };
53
51
  };
54
52
  basicInfo?: {
55
- address: string;
56
53
  starLevel: number;
57
54
  diamondLevel: number;
58
55
  qualification: string[];
@@ -77,9 +74,6 @@ export declare namespace ServiceVenue {
77
74
  }[];
78
75
  introduction: CommonDescriptionItem[];
79
76
  };
80
- reportInfo?: {
81
- chatId: string;
82
- };
83
77
  policy?: {
84
78
  enterLeavingPolicy: {
85
79
  checkInTime: string;
@@ -154,10 +148,6 @@ export declare namespace ServiceVenue {
154
148
  starLevel: number;
155
149
  /** 钻级 */
156
150
  diamondLevel: number;
157
- /** 电话 */
158
- phone: string;
159
- /** 联系人 */
160
- contactName: string;
161
151
  }[];
162
152
  }
163
153
  /** 创建门店 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.119",
3
+ "version": "0.0.120",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {