@be-link/cs-cli-nodejs 0.1.69 → 0.1.71
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.
|
@@ -46,6 +46,19 @@ export declare namespace QueryByItemCombo {
|
|
|
46
46
|
orderIndex: number;
|
|
47
47
|
/** 最小购买数量 */
|
|
48
48
|
minOrderCount: number;
|
|
49
|
+
extraInfo?: {
|
|
50
|
+
mealBitmap?: string;
|
|
51
|
+
isCanModifyMeal?: boolean;
|
|
52
|
+
mealDiffPrice?: number;
|
|
53
|
+
ktvSupplierList?: string[];
|
|
54
|
+
cardSupplierList?: string[];
|
|
55
|
+
minNightNum?: number;
|
|
56
|
+
maxNightNum?: number;
|
|
57
|
+
isOnlyDoubleQuantity?: boolean;
|
|
58
|
+
mealMenuPics?: string[];
|
|
59
|
+
mealMenuDesc?: string;
|
|
60
|
+
isCanShowEntertainmentInfo?: boolean;
|
|
61
|
+
};
|
|
49
62
|
}
|
|
50
63
|
type IMGet = IItemCombo;
|
|
51
64
|
interface IMGetShortcut {
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ export interface IItemAttributes {
|
|
|
102
102
|
createdAt: number;
|
|
103
103
|
/** 更新时间 */
|
|
104
104
|
updatedAt: number;
|
|
105
|
+
deletedAt: number;
|
|
105
106
|
/** 商品属性 */
|
|
106
107
|
attributes: {
|
|
107
108
|
isShareOnly?: number;
|
|
@@ -150,6 +151,7 @@ export interface EntertainmentInfo {
|
|
|
150
151
|
export interface IHotelItemInfo {
|
|
151
152
|
/** 商品ID */
|
|
152
153
|
id: string;
|
|
154
|
+
deletedAt: number;
|
|
153
155
|
/** 娱乐信息 */
|
|
154
156
|
entertainmentInfo: {
|
|
155
157
|
ktv?: EntertainmentInfo;
|
|
@@ -165,6 +167,7 @@ export interface IItemCombo {
|
|
|
165
167
|
id: string;
|
|
166
168
|
createdAt: number;
|
|
167
169
|
updatedAt: number;
|
|
170
|
+
deletedAt: number;
|
|
168
171
|
/** 商品ID */
|
|
169
172
|
itemId: string;
|
|
170
173
|
/** 一级类目 */
|
|
@@ -214,6 +217,7 @@ export interface IItemComboShortcut {
|
|
|
214
217
|
id: string;
|
|
215
218
|
createdAt: number;
|
|
216
219
|
updatedAt: number;
|
|
220
|
+
deletedAt: number;
|
|
217
221
|
/** 商品ID */
|
|
218
222
|
itemId: string;
|
|
219
223
|
/** 套餐ID */
|
|
@@ -255,6 +259,7 @@ export interface IItemComboStock {
|
|
|
255
259
|
}
|
|
256
260
|
export interface IItemSalesDescription {
|
|
257
261
|
id: string;
|
|
262
|
+
deletedAt: number;
|
|
258
263
|
/**
|
|
259
264
|
* 业务运营
|
|
260
265
|
*/
|