@be-link/cs-cli-nodejs 0.1.20 → 0.1.22
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/itemQuery/byItemCombo/service.d.ts +1 -1
- package/cs/modules/itemQuery/byItemCombo/type.d.ts +5 -1
- package/cs/modules/itemQuery/index.d.ts +1 -1
- package/cs/modules/serviceVenue/service.d.ts +1 -0
- package/cs/modules/serviceVenue/service.js +3 -0
- package/cs/modules/serviceVenue/service.js.map +1 -1
- package/cs/modules/serviceVenue/types.d.ts +6 -0
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ declare class QueryByItemComboService extends BaseService implements QueryByItem
|
|
|
9
9
|
mgetShortcut(request: QueryByItemCombo.Request.IMGetShortcut): Promise<QueryByItemCombo.Response.IMGetShortcut[]>;
|
|
10
10
|
getComboRoomSaleBindCondition(request: QueryByItemCombo.Request.IGetComboRoomSaleBindCondition): Promise<GDto.IItemRoomSaleBindCondition>;
|
|
11
11
|
getDetail(request: QueryByItemCombo.Request.IGet): Promise<GDto.IItemCombo>;
|
|
12
|
-
getShortcutDetail(request: QueryByItemCombo.Request.IGetShortcut): Promise<
|
|
12
|
+
getShortcutDetail(request: QueryByItemCombo.Request.IGetShortcut): Promise<QueryByItemCombo.Response.IGetShortcutDetail>;
|
|
13
13
|
}
|
|
14
14
|
declare const byItemCombo: QueryByItemComboService;
|
|
15
15
|
export default byItemCombo;
|
|
@@ -84,6 +84,10 @@ export declare namespace QueryByItemCombo {
|
|
|
84
84
|
name: string;
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
|
+
interface IGetShortcutDetail {
|
|
88
|
+
shortcut: GDto.IItemComboShortcut;
|
|
89
|
+
basic: GDto.IItemCombo;
|
|
90
|
+
}
|
|
87
91
|
}
|
|
88
92
|
interface Controller {
|
|
89
93
|
get(request: QueryByItemCombo.Request.IGet): Promise<QueryByItemCombo.Response.IGet>;
|
|
@@ -92,6 +96,6 @@ export declare namespace QueryByItemCombo {
|
|
|
92
96
|
mgetShortcut(request: QueryByItemCombo.Request.IMGetShortcut): Promise<QueryByItemCombo.Response.IMGetShortcut[]>;
|
|
93
97
|
getComboRoomSaleBindCondition(request: QueryByItemCombo.Request.IGetComboRoomSaleBindCondition): Promise<GDto.IItemRoomSaleBindCondition>;
|
|
94
98
|
getDetail(request: QueryByItemCombo.Request.IGet): Promise<GDto.IItemCombo>;
|
|
95
|
-
getShortcutDetail(request: QueryByItemCombo.Request.IGetShortcut): Promise<
|
|
99
|
+
getShortcutDetail(request: QueryByItemCombo.Request.IGetShortcut): Promise<QueryByItemCombo.Response.IGetShortcutDetail>;
|
|
96
100
|
}
|
|
97
101
|
}
|
|
@@ -44,7 +44,7 @@ declare const itemQueryService: {
|
|
|
44
44
|
mgetShortcut(request: import("./byItemCombo/type").QueryByItemCombo.Request.IMGetShortcut): Promise<import("./byItemCombo/type").QueryByItemCombo.Response.IMGetShortcut[]>;
|
|
45
45
|
getComboRoomSaleBindCondition(request: import("./byItemCombo/type").QueryByItemCombo.Request.IGetComboRoomSaleBindCondition): Promise<import("../../../types").IItemRoomSaleBindCondition>;
|
|
46
46
|
getDetail(request: import("./byItemCombo/type").QueryByItemCombo.Request.IGet): Promise<import("../../../types").IItemCombo>;
|
|
47
|
-
getShortcutDetail(request: import("./byItemCombo/type").QueryByItemCombo.Request.IGetShortcut): Promise<import("
|
|
47
|
+
getShortcutDetail(request: import("./byItemCombo/type").QueryByItemCombo.Request.IGetShortcut): Promise<import("./byItemCombo/type").QueryByItemCombo.Response.IGetShortcutDetail>;
|
|
48
48
|
isPublicEnv: boolean;
|
|
49
49
|
readonly natDevHost: "http://qgostaxv.cs.nmkh74o4.rlwzae9d.com:8090";
|
|
50
50
|
readonly natProdHost: "http://bxbvjnca.cs.cwl9ok0a.mk2u3r3l.com:8090";
|
|
@@ -5,6 +5,7 @@ declare class ServiceVenueService extends BaseService implements ServiceVenue.Co
|
|
|
5
5
|
createServiceVenue(request: ServiceVenue.Request.ICreateServiceVenue): Promise<ServiceVenue.Response.ICreateServiceVenueRes>;
|
|
6
6
|
getRoomTypeInfoByVenueId(request: ServiceVenue.Request.IGetRoomTypeInfoByVenueId): Promise<ServiceVenue.Response.IGetRoomTypeInfoRes[]>;
|
|
7
7
|
getRoomTypeInfoById(request: ServiceVenue.Request.IGetRoomTypeInfo): Promise<ServiceVenue.Response.IGetRoomTypeInfoRes>;
|
|
8
|
+
getRoomTypeInfoByIds(request: ServiceVenue.Request.IGetRoomTypeInfoByIds): Promise<ServiceVenue.Response.IGetRoomTypeInfoRes[]>;
|
|
8
9
|
queryRoomTypeInfo(request: ServiceVenue.Request.IQueryRoomTypeInfo): Promise<ServiceVenue.Response.IGetRoomTypeInfoRes[]>;
|
|
9
10
|
queryServiceVenueList(request: ServiceVenue.Request.IQueryServiceVenueList): Promise<ServiceVenue.Response.IQueryServiceVenueListRes>;
|
|
10
11
|
saveRoomTypeInfo(request: ServiceVenue.Request.ISaveRoomTypeInfo): Promise<boolean>;
|
|
@@ -19,6 +19,9 @@ class ServiceVenueService extends baseService_1.default {
|
|
|
19
19
|
getRoomTypeInfoById(request) {
|
|
20
20
|
return (0, http_1.callApi)(this.getApiUrl(this.getRoomTypeInfoById), request);
|
|
21
21
|
}
|
|
22
|
+
getRoomTypeInfoByIds(request) {
|
|
23
|
+
return (0, http_1.callApi)(this.getApiUrl(this.getRoomTypeInfoByIds), request);
|
|
24
|
+
}
|
|
22
25
|
queryRoomTypeInfo(request) {
|
|
23
26
|
return (0, http_1.callApi)(this.getApiUrl(this.queryRoomTypeInfo), request);
|
|
24
27
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/cs/modules/serviceVenue/service.ts"],"names":[],"mappings":";;;;;AAAA,qCAAoC;AACpC,iEAAwC;AAGxC,MAAM,mBAAoB,SAAQ,qBAAW;IAA7C;;QACE,cAAS,GAAG,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/cs/modules/serviceVenue/service.ts"],"names":[],"mappings":";;;;;AAAA,qCAAoC;AACpC,iEAAwC;AAGxC,MAAM,mBAAoB,SAAQ,qBAAW;IAA7C;;QACE,cAAS,GAAG,gBAAgB,CAAA;IAuH9B,CAAC;IAtHC,kBAAkB,CAChB,OAAiD;QAEjD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,EACvC,OAAO,CACR,CAAA;IACH,CAAC;IAED,wBAAwB,CACtB,OAAuD;QAEvD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,wBAAwB,CAAC,EAC7C,OAAO,CACR,CAAA;IACH,CAAC;IAED,mBAAmB,CACjB,OAA8C;QAE9C,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,mBAAmB,CAAC,EACxC,OAAO,CACR,CAAA;IACH,CAAC;IAED,oBAAoB,CAClB,OAAmD;QAEnD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,oBAAoB,CAAC,EACzC,OAAO,CACR,CAAA;IACH,CAAC;IAED,iBAAiB,CACf,OAAgD;QAEhD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,iBAAiB,CAAC,EACtC,OAAO,CACR,CAAA;IACH,CAAC;IAED,qBAAqB,CACnB,OAAoD;QAEpD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,qBAAqB,CAAC,EAC1C,OAAO,CACR,CAAA;IACH,CAAC;IAED,gBAAgB,CACd,OAA+C;QAE/C,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC,EACrC,OAAO,CACR,CAAA;IACH,CAAC;IAED,qBAAqB,CACnB,OAA+B;QAE/B,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,qBAAqB,CAAC,EAC1C,OAAO,CACR,CAAA;IACH,CAAC;IAED,kBAAkB,CAChB,OAAiD;QAEjD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,EACvC,OAAO,CACR,CAAA;IACH,CAAC;IAED,kBAAkB,CAChB,OAAiD;QAEjD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,EACvC,OAAO,CACR,CAAA;IACH,CAAC;IAED,mBAAmB,CACjB,OAAkD;QAElD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,mBAAmB,CAAC,EACxC,OAAO,CACR,CAAA;IACH,CAAC;IAED,0BAA0B,CACxB,OAAuD;QAEvD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,0BAA0B,CAAC,EAC/C,OAAO,CACR,CAAA;IACH,CAAC;IAED,UAAU,CACR,OAAyC;QAEzC,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,UAAU,CAAC,EAC/B,OAAO,CACR,CAAA;IACH,CAAC;CAGF;AAED,MAAM,mBAAmB,GAAG,IAAI,mBAAmB,EAAE,CAAA;AAErD,kBAAe,mBAAmB,CAAA"}
|
|
@@ -126,6 +126,10 @@ export declare namespace ServiceVenue {
|
|
|
126
126
|
/** 门店id */
|
|
127
127
|
id: string;
|
|
128
128
|
}
|
|
129
|
+
interface IGetRoomTypeInfoByIds {
|
|
130
|
+
/** 房型ids */
|
|
131
|
+
ids: string[];
|
|
132
|
+
}
|
|
129
133
|
/** 获取房型 */
|
|
130
134
|
interface IQueryRoomTypeInfo {
|
|
131
135
|
ids: string[];
|
|
@@ -302,6 +306,8 @@ export declare namespace ServiceVenue {
|
|
|
302
306
|
/** 获取房型信息 */
|
|
303
307
|
getRoomTypeInfoById(request: Request.IGetRoomTypeInfo): Promise<Response.IGetRoomTypeInfoRes>;
|
|
304
308
|
/** 获取房型信息 */
|
|
309
|
+
getRoomTypeInfoByIds(request: Request.IGetRoomTypeInfoByIds): Promise<Response.IGetRoomTypeInfoRes[]>;
|
|
310
|
+
/** 获取房型信息 */
|
|
305
311
|
queryRoomTypeInfo(request: Request.IQueryRoomTypeInfo): Promise<Response.IGetRoomTypeInfoRes[]>;
|
|
306
312
|
/** 编辑房型信息 */
|
|
307
313
|
saveRoomTypeInfo(request: Request.ISaveRoomTypeInfo): Promise<boolean>;
|