@be-link/cs-cli-nodejs 0.0.48 → 0.0.50

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.
@@ -1,8 +1,11 @@
1
1
  export declare namespace ServiceVenue {
2
2
  namespace DTO {
3
3
  interface CommonDescriptionItem {
4
- type: 'TEXT' | 'IMAGE';
5
- value: string;
4
+ type: 'TEXT' | 'IMAGE' | 'FILE';
5
+ value: string | {
6
+ url: string;
7
+ name?: string;
8
+ };
6
9
  }
7
10
  }
8
11
  namespace Request {
@@ -44,7 +47,10 @@ export declare namespace ServiceVenue {
44
47
  city: string;
45
48
  province: string;
46
49
  address: string;
47
- gis: string;
50
+ gis: {
51
+ x: number;
52
+ y: number;
53
+ };
48
54
  };
49
55
  basicInfo?: {
50
56
  address: string;
@@ -193,7 +199,10 @@ export declare namespace ServiceVenue {
193
199
  city: string;
194
200
  province: string;
195
201
  address: string;
196
- gis: string;
202
+ gis: {
203
+ x: number;
204
+ y: number;
205
+ };
197
206
  };
198
207
  pics: string[];
199
208
  type: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.48",
3
+ "version": "0.0.50",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {