@be-link/cs-cli-nodejs 0.0.119 → 0.0.121
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;
|
|
@@ -26,7 +27,7 @@ export declare namespace ServiceVenue {
|
|
|
26
27
|
}
|
|
27
28
|
/** 获取门店信息 */
|
|
28
29
|
interface IGetServiceVenueInfo {
|
|
29
|
-
serviceVenueType
|
|
30
|
+
serviceVenueType?: string;
|
|
30
31
|
id: string;
|
|
31
32
|
}
|
|
32
33
|
/** 获取门店信息ByIds */
|
|
@@ -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
|
-
|
|
51
|
-
|
|
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
|
/** 创建门店 */
|
|
@@ -208,8 +198,8 @@ export declare namespace ServiceVenue {
|
|
|
208
198
|
province: string;
|
|
209
199
|
address: string;
|
|
210
200
|
gis: {
|
|
211
|
-
|
|
212
|
-
|
|
201
|
+
lat: number;
|
|
202
|
+
lng: number;
|
|
213
203
|
};
|
|
214
204
|
};
|
|
215
205
|
pics: string[];
|