@be-link/cs-cli-nodejs 0.0.118 → 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.
- package/cs/modules/serviceVenue/types.d.ts +3 -13
- package/package.json +1 -1
- package/types.d.ts +1 -1
|
@@ -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
|
-
|
|
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
|
/** 创建门店 */
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -140,7 +140,7 @@ export interface EntertainmentIntroItem {
|
|
|
140
140
|
}
|
|
141
141
|
export interface EntertainmentInfo {
|
|
142
142
|
introduction: EntertainmentIntroItem[];
|
|
143
|
-
description:
|
|
143
|
+
description: CommonDescriptionItem[];
|
|
144
144
|
}
|
|
145
145
|
export interface IHotelItemInfo {
|
|
146
146
|
/** 商品ID */
|