@be-link/cs-cli-nodejs 0.1.115 → 0.1.117
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/scfMigrate/index.d.ts +238 -0
- package/cs/modules/scfMigrate/index.js +29 -0
- package/cs/modules/scfMigrate/index.js.map +1 -0
- package/cs/modules/scfMigrate/manage/restructure/service.d.ts +30 -0
- package/cs/modules/scfMigrate/manage/restructure/service.js +86 -0
- package/cs/modules/scfMigrate/manage/restructure/service.js.map +1 -0
- package/cs/modules/scfMigrate/manage/restructure/type.d.ts +219 -0
- package/cs/modules/scfMigrate/manage/restructure/type.js +3 -0
- package/cs/modules/scfMigrate/manage/restructure/type.js.map +1 -0
- package/cs/modules/scfMigrate/manage/search/service.d.ts +13 -0
- package/cs/modules/scfMigrate/manage/search/service.js +34 -0
- package/cs/modules/scfMigrate/manage/search/service.js.map +1 -0
- package/cs/modules/scfMigrate/manage/search/type.d.ts +35 -0
- package/cs/modules/scfMigrate/manage/search/type.js +3 -0
- package/cs/modules/scfMigrate/manage/search/type.js.map +1 -0
- package/cs/modules/scfMigrate/query/ecAppToB/service.d.ts +8 -0
- package/cs/modules/scfMigrate/query/ecAppToB/service.js +19 -0
- package/cs/modules/scfMigrate/query/ecAppToB/service.js.map +1 -0
- package/cs/modules/scfMigrate/query/ecAppToB/type.d.ts +41 -0
- package/cs/modules/scfMigrate/query/ecAppToB/type.js +3 -0
- package/cs/modules/scfMigrate/query/ecAppToB/type.js.map +1 -0
- package/cs/modules/scfMigrate/query/ecWeb/service.d.ts +9 -0
- package/cs/modules/scfMigrate/query/ecWeb/service.js +22 -0
- package/cs/modules/scfMigrate/query/ecWeb/service.js.map +1 -0
- package/cs/modules/scfMigrate/query/ecWeb/type.d.ts +54 -0
- package/cs/modules/scfMigrate/query/ecWeb/type.js +3 -0
- package/cs/modules/scfMigrate/query/ecWeb/type.js.map +1 -0
- package/cs/modules/scfMigrate/query/miniApp/service.d.ts +8 -0
- package/cs/modules/scfMigrate/query/miniApp/service.js +19 -0
- package/cs/modules/scfMigrate/query/miniApp/service.js.map +1 -0
- package/cs/modules/scfMigrate/query/miniApp/type.d.ts +36 -0
- package/cs/modules/scfMigrate/query/miniApp/type.js +3 -0
- package/cs/modules/scfMigrate/query/miniApp/type.js.map +1 -0
- package/cs/modules/scfMigrate/query/restructure/service.d.ts +121 -0
- package/cs/modules/scfMigrate/query/restructure/service.js +360 -0
- package/cs/modules/scfMigrate/query/restructure/service.js.map +1 -0
- package/cs/modules/scfMigrate/query/restructure/type.d.ts +1397 -0
- package/cs/modules/scfMigrate/query/restructure/type.js +3 -0
- package/cs/modules/scfMigrate/query/restructure/type.js.map +1 -0
- package/cs/modules/scfMigrate/query/search/service.d.ts +12 -0
- package/cs/modules/scfMigrate/query/search/service.js +31 -0
- package/cs/modules/scfMigrate/query/search/service.js.map +1 -0
- package/cs/modules/scfMigrate/query/search/type.d.ts +197 -0
- package/cs/modules/scfMigrate/query/search/type.js +3 -0
- package/cs/modules/scfMigrate/query/search/type.js.map +1 -0
- package/cs/modules/scfMigrate/query/web/service.d.ts +14 -0
- package/cs/modules/scfMigrate/query/web/service.js +37 -0
- package/cs/modules/scfMigrate/query/web/service.js.map +1 -0
- package/cs/modules/scfMigrate/query/web/type.d.ts +232 -0
- package/cs/modules/scfMigrate/query/web/type.js +3 -0
- package/cs/modules/scfMigrate/query/web/type.js.map +1 -0
- package/index.d.ts +11 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,1397 @@
|
|
|
1
|
+
export declare namespace Restructure {
|
|
2
|
+
namespace Request {
|
|
3
|
+
interface queryItemByItemIds {
|
|
4
|
+
itemIds: string[];
|
|
5
|
+
}
|
|
6
|
+
interface queryTourExtraInfoByItemIds {
|
|
7
|
+
itemIds: string[];
|
|
8
|
+
}
|
|
9
|
+
interface queryItemInfoByIdListFromItemSearch {
|
|
10
|
+
itemIds: string[];
|
|
11
|
+
pageIndex: number;
|
|
12
|
+
pageSize: number;
|
|
13
|
+
needBottom: boolean;
|
|
14
|
+
needFilterStaffCanSee?: boolean;
|
|
15
|
+
order?: 'SALE_SORT';
|
|
16
|
+
cityName?: string;
|
|
17
|
+
}
|
|
18
|
+
interface queryItemInfoByIds {
|
|
19
|
+
idList: string[];
|
|
20
|
+
skuSold?: boolean;
|
|
21
|
+
sortType?: string;
|
|
22
|
+
needBottom?: boolean;
|
|
23
|
+
}
|
|
24
|
+
interface checkSku {
|
|
25
|
+
itemId: string;
|
|
26
|
+
skuId: string;
|
|
27
|
+
count: number;
|
|
28
|
+
bizScene?: string;
|
|
29
|
+
}
|
|
30
|
+
interface getItemTourExtraInfoById {
|
|
31
|
+
itemId: string;
|
|
32
|
+
}
|
|
33
|
+
interface getItemIdsByStoreIdsInItemHotelExtraInfo {
|
|
34
|
+
storeId: string;
|
|
35
|
+
}
|
|
36
|
+
interface getItemInfo {
|
|
37
|
+
itemId: string;
|
|
38
|
+
}
|
|
39
|
+
interface getItemInfoByIdList {
|
|
40
|
+
idList: string[];
|
|
41
|
+
skuSold?: boolean;
|
|
42
|
+
sortType?: string;
|
|
43
|
+
needBottom?: boolean;
|
|
44
|
+
}
|
|
45
|
+
interface getItemInfoByIdListNotFilter {
|
|
46
|
+
idList: string[];
|
|
47
|
+
}
|
|
48
|
+
interface getItemInvoiceConfig {
|
|
49
|
+
itemId: string;
|
|
50
|
+
}
|
|
51
|
+
interface getItemDetailWithoutSku {
|
|
52
|
+
itemId: string;
|
|
53
|
+
}
|
|
54
|
+
interface getItemDetailForWeb {
|
|
55
|
+
itemId: string;
|
|
56
|
+
}
|
|
57
|
+
interface getItemDetailForDisplay {
|
|
58
|
+
codeScene: string;
|
|
59
|
+
source: string;
|
|
60
|
+
buyingSource: string;
|
|
61
|
+
unionId?: string;
|
|
62
|
+
}
|
|
63
|
+
interface getVirtualItemExtraInfo {
|
|
64
|
+
itemId: string;
|
|
65
|
+
}
|
|
66
|
+
interface getSkuEntity {
|
|
67
|
+
skuId: string;
|
|
68
|
+
}
|
|
69
|
+
interface getSkuFarmHouseExtraInfo {
|
|
70
|
+
skuId: string;
|
|
71
|
+
itemId: string;
|
|
72
|
+
}
|
|
73
|
+
interface getLatestCommodityInfo {
|
|
74
|
+
itemId: string;
|
|
75
|
+
skuId: string;
|
|
76
|
+
}
|
|
77
|
+
interface getRecommendItemByCategoryName {
|
|
78
|
+
categoryName: string;
|
|
79
|
+
}
|
|
80
|
+
interface getProductSkuInfo {
|
|
81
|
+
itemId: string;
|
|
82
|
+
}
|
|
83
|
+
interface getItemInfoListByIdOrCate {
|
|
84
|
+
id?: string;
|
|
85
|
+
cateNameList?: string[];
|
|
86
|
+
limit: number;
|
|
87
|
+
page: number;
|
|
88
|
+
unionId?: string;
|
|
89
|
+
userType?: string;
|
|
90
|
+
}
|
|
91
|
+
interface getOnlyHomeDialogInfo {
|
|
92
|
+
unionId?: string;
|
|
93
|
+
}
|
|
94
|
+
interface getProductBasicInfo {
|
|
95
|
+
codeScene: string;
|
|
96
|
+
source?: string;
|
|
97
|
+
buyingSource?: string;
|
|
98
|
+
unionId?: string;
|
|
99
|
+
}
|
|
100
|
+
interface getProductExtraInfo {
|
|
101
|
+
itemId: string;
|
|
102
|
+
unionId?: string;
|
|
103
|
+
}
|
|
104
|
+
interface isItemHasMemberPrice {
|
|
105
|
+
itemId: string;
|
|
106
|
+
start: number;
|
|
107
|
+
end: number;
|
|
108
|
+
status?: string;
|
|
109
|
+
}
|
|
110
|
+
interface isSkuStockLeft {
|
|
111
|
+
itemSkuMap: Record<string, Record<string, number>>;
|
|
112
|
+
}
|
|
113
|
+
interface multiQueryItemSkuAndComboForBoss {
|
|
114
|
+
itemIds: string[];
|
|
115
|
+
}
|
|
116
|
+
interface queryCancellationPolicy {
|
|
117
|
+
itemId: string;
|
|
118
|
+
}
|
|
119
|
+
interface queryControlledSkuSurplus {
|
|
120
|
+
itemId: string;
|
|
121
|
+
skuIds: string[];
|
|
122
|
+
}
|
|
123
|
+
interface queryFarmHouseExtraInfo {
|
|
124
|
+
itemIdList: string[];
|
|
125
|
+
}
|
|
126
|
+
interface queryHotItemsInLast30Days {
|
|
127
|
+
cateNameList: string[];
|
|
128
|
+
page?: number;
|
|
129
|
+
limit?: number;
|
|
130
|
+
}
|
|
131
|
+
interface queryItemIdsInTagIds {
|
|
132
|
+
tagIds: string[];
|
|
133
|
+
}
|
|
134
|
+
interface queryItemInfoByIdList {
|
|
135
|
+
idList: string[];
|
|
136
|
+
}
|
|
137
|
+
interface queryItemInfoForTrade {
|
|
138
|
+
itemId: string;
|
|
139
|
+
skuId: string;
|
|
140
|
+
quantity: number;
|
|
141
|
+
supplementInfo?: {
|
|
142
|
+
supplementSingleRoom?: {
|
|
143
|
+
quantity: number;
|
|
144
|
+
skuId: string;
|
|
145
|
+
};
|
|
146
|
+
children?: {
|
|
147
|
+
quantity: number;
|
|
148
|
+
skuId: string;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
interface queryItemInfoInTagIds {
|
|
153
|
+
tagIds: string[];
|
|
154
|
+
pageIndex: number;
|
|
155
|
+
pageSize: number;
|
|
156
|
+
unionId?: string;
|
|
157
|
+
/** @deprecated isRemoveDuplicate */
|
|
158
|
+
isRemoveDuplicate?: boolean;
|
|
159
|
+
/** 灰度 handler 预处理传入 */
|
|
160
|
+
cityName?: string;
|
|
161
|
+
/** 灰度 handler 预处理传入 */
|
|
162
|
+
isStaff?: boolean;
|
|
163
|
+
}
|
|
164
|
+
interface queryItemProductDetailsByItemIds {
|
|
165
|
+
itemIds: string[];
|
|
166
|
+
}
|
|
167
|
+
interface queryItemSkuByTime {
|
|
168
|
+
itemId: string;
|
|
169
|
+
startTime: number;
|
|
170
|
+
endTime: number;
|
|
171
|
+
}
|
|
172
|
+
interface queryItemTagList {
|
|
173
|
+
limit: number;
|
|
174
|
+
page: number;
|
|
175
|
+
name: string;
|
|
176
|
+
id: number;
|
|
177
|
+
}
|
|
178
|
+
interface queryMemberItemInfoInTagIds {
|
|
179
|
+
unionId?: string;
|
|
180
|
+
/** 灰度 handler 预处理传入 */
|
|
181
|
+
cityName?: string;
|
|
182
|
+
/** 灰度 handler 预处理传入 */
|
|
183
|
+
isStaff?: boolean;
|
|
184
|
+
}
|
|
185
|
+
interface querySkusByIds {
|
|
186
|
+
skuIds: string[];
|
|
187
|
+
}
|
|
188
|
+
interface querySkusByItemForWeb {
|
|
189
|
+
itemId: string;
|
|
190
|
+
}
|
|
191
|
+
interface webQueryAllItemsByCondition {
|
|
192
|
+
itemInfo: {
|
|
193
|
+
idList?: string[];
|
|
194
|
+
compareIdListSet?: string[][];
|
|
195
|
+
name?: string;
|
|
196
|
+
status?: string;
|
|
197
|
+
categoryOneList?: string[];
|
|
198
|
+
categoryTwoList?: string[];
|
|
199
|
+
featuredTags?: string[];
|
|
200
|
+
priceBand?: number[];
|
|
201
|
+
costDays?: number[];
|
|
202
|
+
};
|
|
203
|
+
itemExtraInfo?: {
|
|
204
|
+
storeIdList?: string[];
|
|
205
|
+
facilityList?: string[];
|
|
206
|
+
};
|
|
207
|
+
skuInfo?: {
|
|
208
|
+
timeRange?: number[];
|
|
209
|
+
hasNoValidSku?: boolean;
|
|
210
|
+
minOrderQuantity?: number[];
|
|
211
|
+
};
|
|
212
|
+
otherInfo?: {
|
|
213
|
+
hotelLevel?: {
|
|
214
|
+
diamond: number[];
|
|
215
|
+
star: number[];
|
|
216
|
+
};
|
|
217
|
+
storeLocation?: {
|
|
218
|
+
city?: string;
|
|
219
|
+
province?: string;
|
|
220
|
+
district?: string;
|
|
221
|
+
distanceAround?: number[];
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
sortType?: {
|
|
225
|
+
itemType?: {
|
|
226
|
+
price?: boolean;
|
|
227
|
+
saleCount?: boolean;
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
page: number;
|
|
231
|
+
limit: number;
|
|
232
|
+
requireResult: {
|
|
233
|
+
itemInfo: {
|
|
234
|
+
_id?: boolean;
|
|
235
|
+
name?: boolean;
|
|
236
|
+
headPic?: boolean;
|
|
237
|
+
minPriceYuan?: boolean;
|
|
238
|
+
status?: boolean;
|
|
239
|
+
saleCount?: boolean;
|
|
240
|
+
};
|
|
241
|
+
itemExtraInfo?: {
|
|
242
|
+
extraInfo?: boolean;
|
|
243
|
+
isSelfLead?: boolean;
|
|
244
|
+
hotelSupplier?: boolean;
|
|
245
|
+
farmHouseSupplier?: boolean;
|
|
246
|
+
shuttleBusSupplier?: boolean;
|
|
247
|
+
shuttleBusAdjustmentInfo?: boolean;
|
|
248
|
+
cooperator?: boolean;
|
|
249
|
+
domesticTourOperator?: boolean;
|
|
250
|
+
tourContactInfo?: boolean;
|
|
251
|
+
tourWholesaler?: boolean;
|
|
252
|
+
tourPrincipal?: boolean;
|
|
253
|
+
};
|
|
254
|
+
skuInfo?: {
|
|
255
|
+
hasValidSku?: boolean;
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
}
|
|
259
|
+
interface buildCommodityInfoSnapShot {
|
|
260
|
+
restructureCommodityInfo: any;
|
|
261
|
+
commodityInfo: any;
|
|
262
|
+
quantity: number;
|
|
263
|
+
}
|
|
264
|
+
interface buildOldItemInfoFromNew {
|
|
265
|
+
itemInfo: any;
|
|
266
|
+
}
|
|
267
|
+
interface buildOldSkuInfoFromNew {
|
|
268
|
+
skuInfo: any;
|
|
269
|
+
}
|
|
270
|
+
interface buildRestructureCommodityInfoSnapShot {
|
|
271
|
+
restructureCommodityInfo: any;
|
|
272
|
+
}
|
|
273
|
+
interface decodeScene {
|
|
274
|
+
codeScene: string;
|
|
275
|
+
source: string;
|
|
276
|
+
buyingSource: string;
|
|
277
|
+
unionId?: string;
|
|
278
|
+
}
|
|
279
|
+
interface filterAdultSkuIdBySkuIdList {
|
|
280
|
+
skuIdList: string[];
|
|
281
|
+
}
|
|
282
|
+
interface getAllCategoryAndItemInfoList {
|
|
283
|
+
catType: string;
|
|
284
|
+
}
|
|
285
|
+
interface getAllItemIdsByStoreIds {
|
|
286
|
+
storeIds: string[];
|
|
287
|
+
}
|
|
288
|
+
interface getCarNo {
|
|
289
|
+
skuId: string;
|
|
290
|
+
}
|
|
291
|
+
interface getCategoryById {
|
|
292
|
+
catgId: any;
|
|
293
|
+
}
|
|
294
|
+
interface getEcBasicInfo {
|
|
295
|
+
itemId: string;
|
|
296
|
+
bizId: string;
|
|
297
|
+
source: string;
|
|
298
|
+
buyingSource: string;
|
|
299
|
+
unionId: string;
|
|
300
|
+
}
|
|
301
|
+
interface getHomeDialogInfo {
|
|
302
|
+
userType?: string;
|
|
303
|
+
tagList?: string[];
|
|
304
|
+
}
|
|
305
|
+
interface getHotelItemByCondition {
|
|
306
|
+
place: string[];
|
|
307
|
+
minPurchaseQuantity: number;
|
|
308
|
+
condition: number;
|
|
309
|
+
price: number;
|
|
310
|
+
page: number;
|
|
311
|
+
limit: number;
|
|
312
|
+
}
|
|
313
|
+
interface getHotelItemListByPlace {
|
|
314
|
+
place: string;
|
|
315
|
+
limit: number;
|
|
316
|
+
page: number;
|
|
317
|
+
type: number;
|
|
318
|
+
}
|
|
319
|
+
interface getItemDetail {
|
|
320
|
+
itemId: string;
|
|
321
|
+
}
|
|
322
|
+
interface getItemIdByStoreId {
|
|
323
|
+
storeId: string;
|
|
324
|
+
types: ('HOTEL' | 'FARM_HOUSE')[];
|
|
325
|
+
}
|
|
326
|
+
interface getItemIdsByStoreIds {
|
|
327
|
+
storeIds: string[];
|
|
328
|
+
}
|
|
329
|
+
interface getItemInfoListByCategoryNames {
|
|
330
|
+
cateNameList: string[];
|
|
331
|
+
limit: number;
|
|
332
|
+
page: number;
|
|
333
|
+
isFilterVisibleItem: boolean;
|
|
334
|
+
}
|
|
335
|
+
interface getItemInvoiceConfigByIds {
|
|
336
|
+
itemIds: string[];
|
|
337
|
+
}
|
|
338
|
+
interface getItemListByCouponTemplateId {
|
|
339
|
+
couponTemplateId: string;
|
|
340
|
+
}
|
|
341
|
+
interface getItemListForActivity {
|
|
342
|
+
}
|
|
343
|
+
interface getItemListInTag {
|
|
344
|
+
tagId: number;
|
|
345
|
+
}
|
|
346
|
+
interface getOrderItemSnapShotByItemIdAndOrderId {
|
|
347
|
+
itemId: string;
|
|
348
|
+
orderId: string;
|
|
349
|
+
}
|
|
350
|
+
interface getPartyItemExtraInfo {
|
|
351
|
+
itemId: string;
|
|
352
|
+
}
|
|
353
|
+
interface getPlaceList {
|
|
354
|
+
category: string;
|
|
355
|
+
}
|
|
356
|
+
interface getProductDetailByItemId {
|
|
357
|
+
itemId: string;
|
|
358
|
+
}
|
|
359
|
+
interface getProductSkuInfoByDepartureDate {
|
|
360
|
+
itemId: string;
|
|
361
|
+
startTime: number;
|
|
362
|
+
}
|
|
363
|
+
interface getRecommendItemForStaff {
|
|
364
|
+
itemName: string;
|
|
365
|
+
pageIndex: number;
|
|
366
|
+
pageSize: number;
|
|
367
|
+
}
|
|
368
|
+
interface getSkuHotelExtraInfo {
|
|
369
|
+
skuId: string;
|
|
370
|
+
itemId: string;
|
|
371
|
+
}
|
|
372
|
+
interface isMatchRestructure {
|
|
373
|
+
categoryTwo: string;
|
|
374
|
+
}
|
|
375
|
+
interface isMatchRms {
|
|
376
|
+
categoryTwo: string;
|
|
377
|
+
}
|
|
378
|
+
interface listItemInfoByName {
|
|
379
|
+
itemName: string;
|
|
380
|
+
limit: number;
|
|
381
|
+
}
|
|
382
|
+
interface mgetItemIdByCategoryList {
|
|
383
|
+
categoryList: string[];
|
|
384
|
+
}
|
|
385
|
+
interface mgetItemInfoListInTagIds {
|
|
386
|
+
tagIds: string[];
|
|
387
|
+
cityName: string;
|
|
388
|
+
needFilterStaffCanSee?: boolean;
|
|
389
|
+
}
|
|
390
|
+
interface query51ItemInfoInTagIds {
|
|
391
|
+
tagIds: string[];
|
|
392
|
+
pageIndex: number;
|
|
393
|
+
pageSize: number;
|
|
394
|
+
}
|
|
395
|
+
interface queryAllItemsByConditionWidth {
|
|
396
|
+
itemInfo: {
|
|
397
|
+
idList?: string[];
|
|
398
|
+
compareIdListSet?: string[][];
|
|
399
|
+
name?: string;
|
|
400
|
+
status?: string;
|
|
401
|
+
categoryOneList?: string[];
|
|
402
|
+
categoryTwoList?: string[];
|
|
403
|
+
featuredTags?: string[];
|
|
404
|
+
priceBand?: number[];
|
|
405
|
+
costDays?: number[];
|
|
406
|
+
};
|
|
407
|
+
itemExtraInfo?: {
|
|
408
|
+
storeIdList?: string[];
|
|
409
|
+
facilityList?: string[];
|
|
410
|
+
};
|
|
411
|
+
skuInfo?: {
|
|
412
|
+
timeRange?: number[];
|
|
413
|
+
hasNoValidSku?: boolean;
|
|
414
|
+
minOrderQuantity?: number[];
|
|
415
|
+
};
|
|
416
|
+
otherInfo?: {
|
|
417
|
+
hotelLevel?: {
|
|
418
|
+
diamond: number[];
|
|
419
|
+
star: number[];
|
|
420
|
+
};
|
|
421
|
+
storeLocation?: {
|
|
422
|
+
city?: string;
|
|
423
|
+
province?: string;
|
|
424
|
+
district?: string;
|
|
425
|
+
distanceAround?: number[];
|
|
426
|
+
};
|
|
427
|
+
};
|
|
428
|
+
sortType?: {
|
|
429
|
+
itemType?: {
|
|
430
|
+
price?: boolean;
|
|
431
|
+
saleCount?: boolean;
|
|
432
|
+
};
|
|
433
|
+
};
|
|
434
|
+
page: number;
|
|
435
|
+
limit: number;
|
|
436
|
+
requireResult: any;
|
|
437
|
+
}
|
|
438
|
+
interface queryAllStatusItemInfoList {
|
|
439
|
+
idList: string[];
|
|
440
|
+
}
|
|
441
|
+
interface queryDepartureInFutureSku {
|
|
442
|
+
itemId: string;
|
|
443
|
+
}
|
|
444
|
+
interface queryExpiringItemsForWeb {
|
|
445
|
+
itemPageIndex: number;
|
|
446
|
+
itemPageSize: number;
|
|
447
|
+
skuPageIndex: number;
|
|
448
|
+
skuPageDateSize: number;
|
|
449
|
+
categories: string[] | null;
|
|
450
|
+
}
|
|
451
|
+
interface queryGroupInfoFromSkus {
|
|
452
|
+
itemId: string;
|
|
453
|
+
}
|
|
454
|
+
interface queryItemIdByItemName {
|
|
455
|
+
name: string;
|
|
456
|
+
}
|
|
457
|
+
interface queryItemIdByItemNameCategoryTwo {
|
|
458
|
+
name: string;
|
|
459
|
+
categoryTwo: string[];
|
|
460
|
+
}
|
|
461
|
+
interface queryItemIdByPartyStoreId {
|
|
462
|
+
storeId: string;
|
|
463
|
+
}
|
|
464
|
+
interface queryItemIdByStoreId {
|
|
465
|
+
storeId: string;
|
|
466
|
+
}
|
|
467
|
+
interface queryItemListByTagId {
|
|
468
|
+
tagId: number;
|
|
469
|
+
}
|
|
470
|
+
interface queryItemListByTagIdsInActivity {
|
|
471
|
+
tagIdList: (string | number)[];
|
|
472
|
+
}
|
|
473
|
+
interface queryItemListByTagList {
|
|
474
|
+
tagIdList: (string | number)[];
|
|
475
|
+
}
|
|
476
|
+
interface queryItemListByTagListForDoubleEleven {
|
|
477
|
+
tagIds: string[];
|
|
478
|
+
}
|
|
479
|
+
interface queryItemListForMemberPage {
|
|
480
|
+
}
|
|
481
|
+
interface queryItemMinPrice {
|
|
482
|
+
itemIdList: string[];
|
|
483
|
+
}
|
|
484
|
+
interface queryItemRelatedCity {
|
|
485
|
+
itemIds: string[];
|
|
486
|
+
}
|
|
487
|
+
interface queryItemTagByItemId {
|
|
488
|
+
itemId: string;
|
|
489
|
+
}
|
|
490
|
+
interface queryItemsByNameInNatureLangueMode {
|
|
491
|
+
itemNameDesc: string;
|
|
492
|
+
page: number;
|
|
493
|
+
limit: number;
|
|
494
|
+
}
|
|
495
|
+
interface queryLocationByItemIds {
|
|
496
|
+
itemIds: string[];
|
|
497
|
+
}
|
|
498
|
+
interface queryLocationByItemIdsForFarmHouse {
|
|
499
|
+
itemIds: string[];
|
|
500
|
+
}
|
|
501
|
+
interface queryRecommendedItems {
|
|
502
|
+
body: string;
|
|
503
|
+
}
|
|
504
|
+
interface queryRecommendedItemsByUserNeed {
|
|
505
|
+
body: string;
|
|
506
|
+
}
|
|
507
|
+
interface querySamePriceSkuList {
|
|
508
|
+
itemId: string;
|
|
509
|
+
salePrice: number;
|
|
510
|
+
quantity: number;
|
|
511
|
+
combo: string;
|
|
512
|
+
ignorePriceDiff: boolean;
|
|
513
|
+
}
|
|
514
|
+
interface querySkuApplicablePeopleInSkuIds {
|
|
515
|
+
skuIds: string[];
|
|
516
|
+
}
|
|
517
|
+
interface querySkuByItemAndDepartureDate {
|
|
518
|
+
itemId: string;
|
|
519
|
+
departureDate: number;
|
|
520
|
+
status?: string;
|
|
521
|
+
}
|
|
522
|
+
interface querySkuInfoInDepartureDate {
|
|
523
|
+
startDepartureDate: number;
|
|
524
|
+
endDepartureDate: number;
|
|
525
|
+
categoryTwoList?: string[];
|
|
526
|
+
}
|
|
527
|
+
interface querySkuInfoInDepartureDateForObj {
|
|
528
|
+
startDepartureDate: number;
|
|
529
|
+
endDepartureDate: number;
|
|
530
|
+
categoryTwoList?: string[];
|
|
531
|
+
}
|
|
532
|
+
interface querySkusByItemAndDepartureDateRange {
|
|
533
|
+
itemId: string;
|
|
534
|
+
start: number;
|
|
535
|
+
end: number;
|
|
536
|
+
status?: string;
|
|
537
|
+
}
|
|
538
|
+
interface querySupplementSkuByRelatedId {
|
|
539
|
+
relatedId: string[];
|
|
540
|
+
}
|
|
541
|
+
interface queryVideoByItemIdList {
|
|
542
|
+
}
|
|
543
|
+
interface qwQueryCommodityListNew {
|
|
544
|
+
itemInfo: {
|
|
545
|
+
idList?: string[];
|
|
546
|
+
compareIdListSet?: string[][];
|
|
547
|
+
name?: string;
|
|
548
|
+
status?: string;
|
|
549
|
+
categoryOneList?: string[];
|
|
550
|
+
categoryTwoList?: string[];
|
|
551
|
+
featuredTags?: string[];
|
|
552
|
+
priceBand?: number[];
|
|
553
|
+
costDays?: number[];
|
|
554
|
+
};
|
|
555
|
+
itemExtraInfo?: {
|
|
556
|
+
storeIdList?: string[];
|
|
557
|
+
facilityList?: string[];
|
|
558
|
+
};
|
|
559
|
+
skuInfo?: {
|
|
560
|
+
timeRange?: number[];
|
|
561
|
+
hasNoValidSku?: boolean;
|
|
562
|
+
minOrderQuantity?: number[];
|
|
563
|
+
};
|
|
564
|
+
otherInfo?: {
|
|
565
|
+
hotelLevel?: {
|
|
566
|
+
diamond: number[];
|
|
567
|
+
star: number[];
|
|
568
|
+
};
|
|
569
|
+
storeLocation?: {
|
|
570
|
+
city?: string;
|
|
571
|
+
province?: string;
|
|
572
|
+
district?: string;
|
|
573
|
+
distanceAround?: number[];
|
|
574
|
+
};
|
|
575
|
+
};
|
|
576
|
+
sortType?: {
|
|
577
|
+
itemType?: {
|
|
578
|
+
price?: boolean;
|
|
579
|
+
saleCount?: boolean;
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
page: number;
|
|
583
|
+
limit: number;
|
|
584
|
+
requireResult: any;
|
|
585
|
+
}
|
|
586
|
+
interface searchItemByName {
|
|
587
|
+
itemName: string;
|
|
588
|
+
pageIndex?: number;
|
|
589
|
+
pageSize?: number;
|
|
590
|
+
}
|
|
591
|
+
interface searchItemForHomePage {
|
|
592
|
+
itemName: string;
|
|
593
|
+
pageIndex: number;
|
|
594
|
+
pageSize: number;
|
|
595
|
+
isStaff?: boolean;
|
|
596
|
+
}
|
|
597
|
+
interface webQueryCommodityList {
|
|
598
|
+
itemInfo: {
|
|
599
|
+
idList?: string[];
|
|
600
|
+
compareIdListSet?: string[][];
|
|
601
|
+
name?: string;
|
|
602
|
+
status?: string;
|
|
603
|
+
categoryOneList?: string[];
|
|
604
|
+
categoryTwoList?: string[];
|
|
605
|
+
featuredTags?: string[];
|
|
606
|
+
priceBand?: number[];
|
|
607
|
+
costDays?: number[];
|
|
608
|
+
};
|
|
609
|
+
itemExtraInfo?: {
|
|
610
|
+
storeIdList?: string[];
|
|
611
|
+
facilityList?: string[];
|
|
612
|
+
};
|
|
613
|
+
skuInfo?: {
|
|
614
|
+
timeRange?: number[];
|
|
615
|
+
hasNoValidSku?: boolean;
|
|
616
|
+
minOrderQuantity?: number[];
|
|
617
|
+
};
|
|
618
|
+
otherInfo?: {
|
|
619
|
+
hotelLevel?: {
|
|
620
|
+
diamond: number[];
|
|
621
|
+
star: number[];
|
|
622
|
+
};
|
|
623
|
+
storeLocation?: {
|
|
624
|
+
city?: string;
|
|
625
|
+
province?: string;
|
|
626
|
+
district?: string;
|
|
627
|
+
distanceAround?: number[];
|
|
628
|
+
};
|
|
629
|
+
};
|
|
630
|
+
sortType?: {
|
|
631
|
+
itemType?: {
|
|
632
|
+
price?: boolean;
|
|
633
|
+
saleCount?: boolean;
|
|
634
|
+
};
|
|
635
|
+
};
|
|
636
|
+
page: number;
|
|
637
|
+
limit: number;
|
|
638
|
+
requireResult: any;
|
|
639
|
+
}
|
|
640
|
+
interface webQueryCommodityListNew {
|
|
641
|
+
itemInfo: {
|
|
642
|
+
idList?: string[];
|
|
643
|
+
compareIdListSet?: string[][];
|
|
644
|
+
name?: string;
|
|
645
|
+
status?: string;
|
|
646
|
+
categoryOneList?: string[];
|
|
647
|
+
categoryTwoList?: string[];
|
|
648
|
+
featuredTags?: string[];
|
|
649
|
+
priceBand?: number[];
|
|
650
|
+
costDays?: number[];
|
|
651
|
+
};
|
|
652
|
+
itemExtraInfo?: {
|
|
653
|
+
storeIdList?: string[];
|
|
654
|
+
facilityList?: string[];
|
|
655
|
+
};
|
|
656
|
+
skuInfo?: {
|
|
657
|
+
timeRange?: number[];
|
|
658
|
+
hasNoValidSku?: boolean;
|
|
659
|
+
minOrderQuantity?: number[];
|
|
660
|
+
};
|
|
661
|
+
otherInfo?: {
|
|
662
|
+
hotelLevel?: {
|
|
663
|
+
diamond: number[];
|
|
664
|
+
star: number[];
|
|
665
|
+
};
|
|
666
|
+
storeLocation?: {
|
|
667
|
+
city?: string;
|
|
668
|
+
province?: string;
|
|
669
|
+
district?: string;
|
|
670
|
+
distanceAround?: number[];
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
sortType?: {
|
|
674
|
+
itemType?: {
|
|
675
|
+
price?: boolean;
|
|
676
|
+
saleCount?: boolean;
|
|
677
|
+
};
|
|
678
|
+
};
|
|
679
|
+
page: number;
|
|
680
|
+
limit: number;
|
|
681
|
+
requireResult: any;
|
|
682
|
+
}
|
|
683
|
+
interface webQueryValidSkuForAItem {
|
|
684
|
+
itemId: string;
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
namespace Response {
|
|
688
|
+
interface queryItemByItemIds {
|
|
689
|
+
list: {
|
|
690
|
+
itemId: string;
|
|
691
|
+
itemName: string;
|
|
692
|
+
headPics: string[];
|
|
693
|
+
status: string;
|
|
694
|
+
categoryOne: string;
|
|
695
|
+
categoryTwo: string;
|
|
696
|
+
saleCount: number;
|
|
697
|
+
_createTime: number;
|
|
698
|
+
minPrice: number;
|
|
699
|
+
}[];
|
|
700
|
+
}
|
|
701
|
+
interface queryTourExtraInfoByItemIds {
|
|
702
|
+
list: {
|
|
703
|
+
_id: string;
|
|
704
|
+
_createTime: number;
|
|
705
|
+
_updateTime: number;
|
|
706
|
+
isSelfLead: boolean | null;
|
|
707
|
+
itinerarySchedule: any;
|
|
708
|
+
tourBeginPlace: string | null;
|
|
709
|
+
tourEndPlace: string | null;
|
|
710
|
+
tourDays: number | null;
|
|
711
|
+
tourWholesaler: string | null;
|
|
712
|
+
domesticTourOperator: string | null;
|
|
713
|
+
tourContactInfo: string | null;
|
|
714
|
+
tourContactName: string | null;
|
|
715
|
+
tourContactPhone: string | null;
|
|
716
|
+
tourContactAddress: string | null;
|
|
717
|
+
tourPrincipal: string | null;
|
|
718
|
+
contractType: string | null;
|
|
719
|
+
needWxGroup: boolean | null;
|
|
720
|
+
recommendation: any;
|
|
721
|
+
supplierId: string;
|
|
722
|
+
hasShopping: boolean | null;
|
|
723
|
+
hasActivity: boolean | null;
|
|
724
|
+
majorTransportationFinalFeeList: {
|
|
725
|
+
beginCity: string;
|
|
726
|
+
fee: number;
|
|
727
|
+
}[] | null;
|
|
728
|
+
}[];
|
|
729
|
+
}
|
|
730
|
+
interface IItemInfoDisplay {
|
|
731
|
+
saleInfo: {
|
|
732
|
+
sales: number;
|
|
733
|
+
viewCount: number;
|
|
734
|
+
};
|
|
735
|
+
_createTime: number;
|
|
736
|
+
_id: string;
|
|
737
|
+
isWxShop: boolean;
|
|
738
|
+
name: string;
|
|
739
|
+
minMarketPrice: number;
|
|
740
|
+
headPic: string;
|
|
741
|
+
featuredTags: string[];
|
|
742
|
+
category: {
|
|
743
|
+
level: number;
|
|
744
|
+
categoryName: string;
|
|
745
|
+
}[];
|
|
746
|
+
nearestDate?: string;
|
|
747
|
+
multiPrice?: boolean;
|
|
748
|
+
salePrice: number;
|
|
749
|
+
sellOut: boolean;
|
|
750
|
+
isOnlyStaffCanSee: boolean;
|
|
751
|
+
isPrivateInfo: boolean;
|
|
752
|
+
memberPrice?: number;
|
|
753
|
+
headVideo: string;
|
|
754
|
+
status: string;
|
|
755
|
+
skuList?: any;
|
|
756
|
+
floatPictureUrl?: string;
|
|
757
|
+
storeId?: string;
|
|
758
|
+
storeStar?: number;
|
|
759
|
+
storeDiamond?: number;
|
|
760
|
+
invoiceBase?: string;
|
|
761
|
+
invoiceTypes?: string[];
|
|
762
|
+
isMigration?: number;
|
|
763
|
+
}
|
|
764
|
+
type queryItemInfoByIdListFromItemSearch = IItemInfoDisplay[];
|
|
765
|
+
type queryItemInfoByIds = IItemInfoDisplay[];
|
|
766
|
+
interface checkSku {
|
|
767
|
+
isValidated: boolean;
|
|
768
|
+
errmsg?: string;
|
|
769
|
+
}
|
|
770
|
+
type getItemTourExtraInfoById = Record<string, unknown> | null;
|
|
771
|
+
type getItemIdsByStoreIdsInItemHotelExtraInfo = string[];
|
|
772
|
+
interface getItemInfo {
|
|
773
|
+
_id?: string;
|
|
774
|
+
_createTime?: number;
|
|
775
|
+
name?: string;
|
|
776
|
+
status?: string;
|
|
777
|
+
headVideo?: string | null;
|
|
778
|
+
headPics?: string[] | null;
|
|
779
|
+
wxFeedId?: string | null;
|
|
780
|
+
wxFinderUserName?: string | null;
|
|
781
|
+
categoryOne?: string;
|
|
782
|
+
categoryTwo?: string;
|
|
783
|
+
featuredTags?: string[] | null;
|
|
784
|
+
minMarketPrice?: number;
|
|
785
|
+
minMemberPrice?: number;
|
|
786
|
+
minPrice?: number;
|
|
787
|
+
isOnlyStaffCanSee?: boolean;
|
|
788
|
+
isPrivateInfo?: boolean;
|
|
789
|
+
isHighCommission?: boolean;
|
|
790
|
+
saleCount?: number;
|
|
791
|
+
viewCount?: number;
|
|
792
|
+
depositPrice?: number;
|
|
793
|
+
isFromOld?: boolean;
|
|
794
|
+
sellOut?: boolean;
|
|
795
|
+
multiPrice?: boolean;
|
|
796
|
+
floatPictureUrl?: string;
|
|
797
|
+
cancellationPolicy?: string;
|
|
798
|
+
version?: string;
|
|
799
|
+
searchInfo?: unknown;
|
|
800
|
+
invoiceBase?: string;
|
|
801
|
+
invoiceTypes?: string[] | null;
|
|
802
|
+
isMigration?: boolean;
|
|
803
|
+
commissionFee?: number;
|
|
804
|
+
shortName?: string;
|
|
805
|
+
unitDeposit?: number;
|
|
806
|
+
depositTimeoutDays?: number;
|
|
807
|
+
storeId?: string;
|
|
808
|
+
storeStar?: number;
|
|
809
|
+
storeDiamond?: number;
|
|
810
|
+
[key: string]: unknown;
|
|
811
|
+
}
|
|
812
|
+
type getItemInfoByIdList = IItemInfoDisplay[];
|
|
813
|
+
type getItemInfoByIdListNotFilter = IItemInfoDisplay[];
|
|
814
|
+
interface getItemInvoiceConfig {
|
|
815
|
+
invoiceBase?: string;
|
|
816
|
+
invoiceTypes?: string[] | null;
|
|
817
|
+
}
|
|
818
|
+
interface getItemDetailWithoutSku {
|
|
819
|
+
itemInfo: Record<string, unknown>;
|
|
820
|
+
itemExtraInfo: Record<string, unknown> | null;
|
|
821
|
+
skus?: Record<string, unknown>[];
|
|
822
|
+
}
|
|
823
|
+
interface getItemDetailForWeb {
|
|
824
|
+
itemInfo: Record<string, unknown>;
|
|
825
|
+
itemExtraInfo: Record<string, unknown> | null;
|
|
826
|
+
}
|
|
827
|
+
interface getItemDetailForDisplay {
|
|
828
|
+
success: boolean;
|
|
829
|
+
renderData?: Record<string, unknown>;
|
|
830
|
+
shareInfo?: Record<string, unknown>;
|
|
831
|
+
memberInfo?: {
|
|
832
|
+
isMember: boolean;
|
|
833
|
+
discountAmount: number;
|
|
834
|
+
};
|
|
835
|
+
extraInfo?: {
|
|
836
|
+
contactPhone: string;
|
|
837
|
+
telephone: string;
|
|
838
|
+
};
|
|
839
|
+
}
|
|
840
|
+
type getVirtualItemExtraInfo = Record<string, unknown> | null;
|
|
841
|
+
type getSkuEntity = Record<string, unknown> | null;
|
|
842
|
+
type getSkuFarmHouseExtraInfo = Record<string, unknown> | null;
|
|
843
|
+
interface getLatestCommodityInfo {
|
|
844
|
+
itemInfo: {
|
|
845
|
+
headPic: string;
|
|
846
|
+
name: string;
|
|
847
|
+
basicInfo: {
|
|
848
|
+
category: {
|
|
849
|
+
level: number;
|
|
850
|
+
categoryName: string;
|
|
851
|
+
}[];
|
|
852
|
+
minPrice: number;
|
|
853
|
+
minMemberPrice: number;
|
|
854
|
+
};
|
|
855
|
+
categoryOne: string;
|
|
856
|
+
categoryTwo: string;
|
|
857
|
+
_id: string;
|
|
858
|
+
storeId: string | null;
|
|
859
|
+
};
|
|
860
|
+
skuInfo: Record<string, unknown> & {
|
|
861
|
+
skuId?: string;
|
|
862
|
+
quantity?: number;
|
|
863
|
+
mealInfo?: string;
|
|
864
|
+
};
|
|
865
|
+
}
|
|
866
|
+
type getRecommendItemByCategoryName = {
|
|
867
|
+
_id: string;
|
|
868
|
+
name: string;
|
|
869
|
+
salePrice: number;
|
|
870
|
+
headPic: string;
|
|
871
|
+
sellOut: boolean;
|
|
872
|
+
category: {
|
|
873
|
+
level: number;
|
|
874
|
+
categoryName: string;
|
|
875
|
+
}[];
|
|
876
|
+
isWxShop: boolean;
|
|
877
|
+
}[];
|
|
878
|
+
type getProductSkuInfo = Record<string, unknown>;
|
|
879
|
+
interface getItemInfoListByIdOrCate {
|
|
880
|
+
list: IItemInfoDisplay[];
|
|
881
|
+
bizId?: string;
|
|
882
|
+
shareInfo?: Record<string, unknown>;
|
|
883
|
+
success?: boolean;
|
|
884
|
+
}
|
|
885
|
+
interface getOnlyHomeDialogInfo {
|
|
886
|
+
venueAd: Record<string, unknown>;
|
|
887
|
+
dialogConfig: Record<string, unknown>[];
|
|
888
|
+
}
|
|
889
|
+
interface getProductBasicInfo {
|
|
890
|
+
itemInfo: Record<string, unknown>;
|
|
891
|
+
floatPictureUrl: string | null;
|
|
892
|
+
memberInfo: {
|
|
893
|
+
isMember: boolean;
|
|
894
|
+
discountAmount: number;
|
|
895
|
+
};
|
|
896
|
+
extraInfo: {
|
|
897
|
+
contactPhone: string;
|
|
898
|
+
telephone: string;
|
|
899
|
+
tourContactName?: string;
|
|
900
|
+
tourContactPhone?: string;
|
|
901
|
+
tourContactAddress?: string;
|
|
902
|
+
hasShopping?: boolean | null;
|
|
903
|
+
hasActivity?: boolean | null;
|
|
904
|
+
supplierName: string;
|
|
905
|
+
supplierContactName: string;
|
|
906
|
+
supplierContactMobile: string;
|
|
907
|
+
supplierAddress: string;
|
|
908
|
+
isSelfLead?: boolean | null;
|
|
909
|
+
domesticTourOperator?: string | null;
|
|
910
|
+
majorTransportationFinalFeeList?: {
|
|
911
|
+
beginCity: string;
|
|
912
|
+
fee: number;
|
|
913
|
+
}[];
|
|
914
|
+
};
|
|
915
|
+
shareInfo: Record<string, unknown> | null;
|
|
916
|
+
}
|
|
917
|
+
type getProductExtraInfo = Record<string, unknown>;
|
|
918
|
+
type isItemHasMemberPrice = boolean;
|
|
919
|
+
type isSkuStockLeft = boolean;
|
|
920
|
+
type multiQueryItemSkuAndComboForBoss = {
|
|
921
|
+
itemId: string;
|
|
922
|
+
skus: {
|
|
923
|
+
itemId: string;
|
|
924
|
+
_id: string;
|
|
925
|
+
surplus: number;
|
|
926
|
+
planStock: number;
|
|
927
|
+
status: string;
|
|
928
|
+
departureDate: number;
|
|
929
|
+
combo: string;
|
|
930
|
+
}[];
|
|
931
|
+
combos: string[];
|
|
932
|
+
}[];
|
|
933
|
+
type queryCancellationPolicy = string;
|
|
934
|
+
type queryControlledSkuSurplus = Record<string, number>;
|
|
935
|
+
type queryFarmHouseExtraInfo = {
|
|
936
|
+
_id: string;
|
|
937
|
+
shuttleBusAdjustmentInfo?: {
|
|
938
|
+
master: {
|
|
939
|
+
_id?: string;
|
|
940
|
+
};
|
|
941
|
+
slave: {
|
|
942
|
+
_id?: string;
|
|
943
|
+
};
|
|
944
|
+
};
|
|
945
|
+
shuttleBusInfo: {
|
|
946
|
+
master: Record<string, unknown>;
|
|
947
|
+
slave: Record<string, unknown>;
|
|
948
|
+
};
|
|
949
|
+
[key: string]: unknown;
|
|
950
|
+
}[];
|
|
951
|
+
type queryHotItemsInLast30Days = IItemInfoDisplay[];
|
|
952
|
+
type queryItemIdsInTagIds = {
|
|
953
|
+
_id: number;
|
|
954
|
+
name: string;
|
|
955
|
+
itemIdList: string[];
|
|
956
|
+
sortType?: string;
|
|
957
|
+
[key: string]: unknown;
|
|
958
|
+
}[];
|
|
959
|
+
type queryItemInfoByIdList = {
|
|
960
|
+
_createTime: number;
|
|
961
|
+
_id: string;
|
|
962
|
+
categoryOne: string;
|
|
963
|
+
categoryTwo: string;
|
|
964
|
+
featuredTags: string[] | null;
|
|
965
|
+
headPics: string[] | null;
|
|
966
|
+
isOnlyStaffCanSee: boolean;
|
|
967
|
+
minPrice: number;
|
|
968
|
+
minMarketPrice: number;
|
|
969
|
+
minMemberPrice: number | null;
|
|
970
|
+
name: string;
|
|
971
|
+
status: string;
|
|
972
|
+
saleCount: number;
|
|
973
|
+
viewCount: number;
|
|
974
|
+
headVideo: string | null;
|
|
975
|
+
isMigration: boolean;
|
|
976
|
+
}[];
|
|
977
|
+
type queryItemInfoForTrade = Record<string, unknown>;
|
|
978
|
+
type queryItemInfoInTagIds = ((Response.IItemInfoDisplay & {
|
|
979
|
+
tagId: number;
|
|
980
|
+
minSalePrice: string | null;
|
|
981
|
+
star: number | string;
|
|
982
|
+
diamond: number | string;
|
|
983
|
+
storeName: string;
|
|
984
|
+
hasGroupBookingRule: boolean;
|
|
985
|
+
}) | null)[];
|
|
986
|
+
type queryItemProductDetailsByItemIds = {
|
|
987
|
+
itemId: string;
|
|
988
|
+
productDetails: string | null;
|
|
989
|
+
}[];
|
|
990
|
+
type queryItemSkuByTime = {
|
|
991
|
+
date: number;
|
|
992
|
+
combo: string;
|
|
993
|
+
price: string;
|
|
994
|
+
surplus: number;
|
|
995
|
+
}[];
|
|
996
|
+
interface queryItemTagList {
|
|
997
|
+
list: {
|
|
998
|
+
_id: number;
|
|
999
|
+
_createTime: number;
|
|
1000
|
+
_updateTime: number;
|
|
1001
|
+
name: string;
|
|
1002
|
+
sortType: string | null;
|
|
1003
|
+
status: string;
|
|
1004
|
+
itemIdList: string[];
|
|
1005
|
+
[key: string]: unknown;
|
|
1006
|
+
}[];
|
|
1007
|
+
total: number;
|
|
1008
|
+
}
|
|
1009
|
+
interface queryMemberItemInfoInTagIds {
|
|
1010
|
+
ONE_SECOND_PARTY: Response.queryItemInfoInTagIds;
|
|
1011
|
+
PARTY_TOUR: Response.queryItemInfoInTagIds;
|
|
1012
|
+
TOUR: Response.queryItemInfoInTagIds;
|
|
1013
|
+
}
|
|
1014
|
+
type querySkusByIds = Record<string, unknown>[];
|
|
1015
|
+
type querySkusByItemForWeb = Record<string, unknown>[];
|
|
1016
|
+
interface webQueryAllItemsByCondition {
|
|
1017
|
+
itemList: {
|
|
1018
|
+
itemInfo: Record<string, unknown>;
|
|
1019
|
+
itemExtraInfo?: Record<string, unknown>;
|
|
1020
|
+
skuInfo?: Record<string, unknown>;
|
|
1021
|
+
}[];
|
|
1022
|
+
count: number;
|
|
1023
|
+
}
|
|
1024
|
+
type buildCommodityInfoSnapShot = void;
|
|
1025
|
+
type buildOldItemInfoFromNew = any;
|
|
1026
|
+
type buildOldSkuInfoFromNew = any;
|
|
1027
|
+
type buildRestructureCommodityInfoSnapShot = void;
|
|
1028
|
+
interface decodeScene {
|
|
1029
|
+
itemId: string | null;
|
|
1030
|
+
fromId: string | undefined;
|
|
1031
|
+
bizId: string | undefined;
|
|
1032
|
+
shareInfo: any;
|
|
1033
|
+
source: string;
|
|
1034
|
+
buyingSource: string;
|
|
1035
|
+
}
|
|
1036
|
+
type filterAdultSkuIdBySkuIdList = string[];
|
|
1037
|
+
interface getAllCategoryAndItemInfoList {
|
|
1038
|
+
tabList: {
|
|
1039
|
+
name: string;
|
|
1040
|
+
desc: string;
|
|
1041
|
+
isMore: boolean;
|
|
1042
|
+
cateId: string;
|
|
1043
|
+
}[];
|
|
1044
|
+
cateItemList: Response.IItemInfoDisplay[][];
|
|
1045
|
+
}
|
|
1046
|
+
type getAllItemIdsByStoreIds = string[];
|
|
1047
|
+
type getCarNo = string;
|
|
1048
|
+
type getCategoryById = any;
|
|
1049
|
+
interface getDoubleElevenActivityItemList {
|
|
1050
|
+
type: string;
|
|
1051
|
+
itemList: any;
|
|
1052
|
+
path: string;
|
|
1053
|
+
}
|
|
1054
|
+
interface getEcBasicInfo {
|
|
1055
|
+
_id: string;
|
|
1056
|
+
name: string;
|
|
1057
|
+
categoryOne: string;
|
|
1058
|
+
categoryTwo: string;
|
|
1059
|
+
headPics: string[];
|
|
1060
|
+
isMultiPrice: boolean;
|
|
1061
|
+
minPrice: number;
|
|
1062
|
+
minMarketPrice: number;
|
|
1063
|
+
status: string;
|
|
1064
|
+
sellOut: boolean;
|
|
1065
|
+
displayCategory: string;
|
|
1066
|
+
minOrderQuantity: number;
|
|
1067
|
+
promotionActInfo: any;
|
|
1068
|
+
commodityType: string;
|
|
1069
|
+
skuAttrs: {
|
|
1070
|
+
key: string;
|
|
1071
|
+
value: string[];
|
|
1072
|
+
}[];
|
|
1073
|
+
wxSpuInfo: any;
|
|
1074
|
+
}
|
|
1075
|
+
interface getHomeDialogInfo {
|
|
1076
|
+
venueAd: Record<string, unknown>;
|
|
1077
|
+
dialogConfig: Record<string, unknown>[];
|
|
1078
|
+
cateItemAndTabList: {
|
|
1079
|
+
tabList: {
|
|
1080
|
+
name: string;
|
|
1081
|
+
desc: string;
|
|
1082
|
+
isMore: boolean;
|
|
1083
|
+
cateId: number;
|
|
1084
|
+
}[];
|
|
1085
|
+
cateItemList: Record<string, unknown>[][];
|
|
1086
|
+
};
|
|
1087
|
+
}
|
|
1088
|
+
type getHotelItemByCondition = Response.IItemInfoDisplay[];
|
|
1089
|
+
type getHotelItemListByPlace = Response.IItemInfoDisplay[];
|
|
1090
|
+
interface getItemDetail {
|
|
1091
|
+
itemInfo: Record<string, unknown>;
|
|
1092
|
+
itemExtraInfo: Record<string, unknown> | null;
|
|
1093
|
+
skus?: Record<string, unknown>[];
|
|
1094
|
+
saleAttribute?: any;
|
|
1095
|
+
}
|
|
1096
|
+
type getItemIdByStoreId = string[];
|
|
1097
|
+
type getItemIdsByStoreIds = string[];
|
|
1098
|
+
type getItemInfoListByCategoryNames = Response.IItemInfoDisplay[];
|
|
1099
|
+
type getItemInvoiceConfigByIds = Record<string, Response.IItemInfoDisplay>;
|
|
1100
|
+
type getItemListByCouponTemplateId = Response.IItemInfoDisplay[];
|
|
1101
|
+
interface getItemListForActivity {
|
|
1102
|
+
province: string;
|
|
1103
|
+
itemList: (Response.IItemInfoDisplay & {
|
|
1104
|
+
province: string;
|
|
1105
|
+
})[];
|
|
1106
|
+
}
|
|
1107
|
+
type getItemListInTag = string[];
|
|
1108
|
+
type getOrderItemSnapShotByItemIdAndOrderId = Record<string, unknown> | null;
|
|
1109
|
+
type getPartyItemExtraInfo = Record<string, unknown> | null;
|
|
1110
|
+
type getPlaceList = {
|
|
1111
|
+
value: string;
|
|
1112
|
+
label: string;
|
|
1113
|
+
children?: {
|
|
1114
|
+
value: string;
|
|
1115
|
+
label: string;
|
|
1116
|
+
children?: {
|
|
1117
|
+
value: string;
|
|
1118
|
+
label: string;
|
|
1119
|
+
}[];
|
|
1120
|
+
}[];
|
|
1121
|
+
}[];
|
|
1122
|
+
interface getProductDetailByItemId {
|
|
1123
|
+
itemInfo: Record<string, unknown>;
|
|
1124
|
+
itemExtraInfo: Record<string, unknown>;
|
|
1125
|
+
[key: string]: unknown;
|
|
1126
|
+
}
|
|
1127
|
+
type getProductSkuInfoByDepartureDate = Record<string, unknown>;
|
|
1128
|
+
interface getRecommendItemForStaff {
|
|
1129
|
+
itemName: string;
|
|
1130
|
+
itemId: string;
|
|
1131
|
+
headPic: string;
|
|
1132
|
+
}
|
|
1133
|
+
type getSkuHotelExtraInfo = Record<string, unknown> | null;
|
|
1134
|
+
type isMatchRestructure = boolean;
|
|
1135
|
+
type isMatchRms = boolean;
|
|
1136
|
+
interface listItemInfoByName {
|
|
1137
|
+
_id: string;
|
|
1138
|
+
name: string;
|
|
1139
|
+
[key: string]: unknown;
|
|
1140
|
+
}
|
|
1141
|
+
type mgetItemIdByCategoryList = Record<string, string[]>;
|
|
1142
|
+
type mgetItemInfoListInTagIds = Record<string, {
|
|
1143
|
+
list: Response.IItemInfoDisplay[];
|
|
1144
|
+
hasMore: boolean;
|
|
1145
|
+
}>;
|
|
1146
|
+
type query51ItemInfoInTagIds = (Response.IItemInfoDisplay & {
|
|
1147
|
+
tagId: number | undefined;
|
|
1148
|
+
minSalePrice: number | null;
|
|
1149
|
+
})[];
|
|
1150
|
+
interface queryAllItemsByConditionWidth {
|
|
1151
|
+
itemList: {
|
|
1152
|
+
itemInfo: Record<string, unknown>;
|
|
1153
|
+
itemExtraInfo?: Record<string, unknown>;
|
|
1154
|
+
skuInfo?: Record<string, unknown>;
|
|
1155
|
+
}[];
|
|
1156
|
+
count: number;
|
|
1157
|
+
}
|
|
1158
|
+
type queryAllStatusItemInfoList = Response.IItemInfoDisplay[];
|
|
1159
|
+
type queryDepartureInFutureSku = Record<string, unknown>[];
|
|
1160
|
+
interface queryExpiringItemsForWeb {
|
|
1161
|
+
itemId: string;
|
|
1162
|
+
itemName: string;
|
|
1163
|
+
categoryOne: string;
|
|
1164
|
+
categoryTwo: string;
|
|
1165
|
+
skuList: {
|
|
1166
|
+
month: number;
|
|
1167
|
+
date: number;
|
|
1168
|
+
data: {
|
|
1169
|
+
combo: string;
|
|
1170
|
+
surplus: number;
|
|
1171
|
+
salePrice: number;
|
|
1172
|
+
}[];
|
|
1173
|
+
}[];
|
|
1174
|
+
}
|
|
1175
|
+
type queryGroupInfoFromSkus = Record<string, unknown>[];
|
|
1176
|
+
type queryItemIdByItemName = string[];
|
|
1177
|
+
type queryItemIdByItemNameCategoryTwo = string[];
|
|
1178
|
+
type queryItemIdByPartyStoreId = string[];
|
|
1179
|
+
type queryItemIdByStoreId = string[];
|
|
1180
|
+
type queryItemListByTagId = Response.IItemInfoDisplay[];
|
|
1181
|
+
type queryItemListByTagIdsInActivity = {
|
|
1182
|
+
province: string;
|
|
1183
|
+
itemList: (Response.IItemInfoDisplay & {
|
|
1184
|
+
province: string;
|
|
1185
|
+
fromTagName?: string;
|
|
1186
|
+
floatPictureUrl?: string;
|
|
1187
|
+
})[];
|
|
1188
|
+
}[];
|
|
1189
|
+
type queryItemListByTagList = Response.IItemInfoDisplay[];
|
|
1190
|
+
type queryItemListByTagListForDoubleEleven = Record<string, {
|
|
1191
|
+
id: string;
|
|
1192
|
+
name: string;
|
|
1193
|
+
featureTags: string[];
|
|
1194
|
+
diamond: number;
|
|
1195
|
+
star: number;
|
|
1196
|
+
headImage: string;
|
|
1197
|
+
minSalePriceInNewYearEve: number;
|
|
1198
|
+
minSalePriceInNewYear: number;
|
|
1199
|
+
sellOut: boolean;
|
|
1200
|
+
reduceStr: string[];
|
|
1201
|
+
category: any;
|
|
1202
|
+
memberPrice: number;
|
|
1203
|
+
salePrice: number;
|
|
1204
|
+
}[]>;
|
|
1205
|
+
type queryItemListForMemberPage = Response.IItemInfoDisplay[];
|
|
1206
|
+
type queryItemMinPrice = Record<string, number>;
|
|
1207
|
+
type queryItemRelatedCity = Record<string, string[]>;
|
|
1208
|
+
type queryItemTagByItemId = {
|
|
1209
|
+
_id: number;
|
|
1210
|
+
}[];
|
|
1211
|
+
type queryItemsByNameInNatureLangueMode = string[];
|
|
1212
|
+
interface queryLocationByItemIds {
|
|
1213
|
+
_id: string;
|
|
1214
|
+
province: string;
|
|
1215
|
+
city: string;
|
|
1216
|
+
}
|
|
1217
|
+
interface queryLocationByItemIdsForFarmHouse {
|
|
1218
|
+
_id: string;
|
|
1219
|
+
province: string;
|
|
1220
|
+
city: string;
|
|
1221
|
+
}
|
|
1222
|
+
interface queryRecommendedItems {
|
|
1223
|
+
_id: string;
|
|
1224
|
+
name: string;
|
|
1225
|
+
pic: string;
|
|
1226
|
+
}
|
|
1227
|
+
type queryRecommendedItemsByUserNeed = {
|
|
1228
|
+
_id: string;
|
|
1229
|
+
name: string;
|
|
1230
|
+
pic: string;
|
|
1231
|
+
}[];
|
|
1232
|
+
type querySamePriceSkuList = Record<string, unknown>[];
|
|
1233
|
+
type querySkuApplicablePeopleInSkuIds = Record<string, unknown>[];
|
|
1234
|
+
type querySkuByItemAndDepartureDate = Record<string, unknown>[];
|
|
1235
|
+
type querySkuInfoInDepartureDate = Record<string, unknown>[];
|
|
1236
|
+
type querySkuInfoInDepartureDateForObj = Record<string, unknown>[];
|
|
1237
|
+
type querySkusByItemAndDepartureDateRange = Record<string, unknown>[];
|
|
1238
|
+
type querySupplementSkuByRelatedId = Record<string, unknown>[];
|
|
1239
|
+
interface queryVideoByItemIdList {
|
|
1240
|
+
wxFinderUserName: string;
|
|
1241
|
+
wxFeedId: string;
|
|
1242
|
+
}
|
|
1243
|
+
interface qwQueryCommodityListNew {
|
|
1244
|
+
itemList: {
|
|
1245
|
+
itemInfo: Record<string, unknown>;
|
|
1246
|
+
itemExtraInfo?: Record<string, unknown>;
|
|
1247
|
+
skuInfo?: Record<string, unknown>;
|
|
1248
|
+
}[];
|
|
1249
|
+
count: number;
|
|
1250
|
+
}
|
|
1251
|
+
interface searchItemByName {
|
|
1252
|
+
_id: string;
|
|
1253
|
+
name: string;
|
|
1254
|
+
headPics: string[];
|
|
1255
|
+
status: string;
|
|
1256
|
+
categoryOne: string;
|
|
1257
|
+
categoryTwo: string;
|
|
1258
|
+
minPrice: number;
|
|
1259
|
+
saleCount: number;
|
|
1260
|
+
[key: string]: unknown;
|
|
1261
|
+
}
|
|
1262
|
+
type searchItemForHomePage = Response.IItemInfoDisplay[];
|
|
1263
|
+
interface webQueryCommodityList {
|
|
1264
|
+
itemList: {
|
|
1265
|
+
itemInfo: Record<string, unknown>;
|
|
1266
|
+
itemExtraInfo?: Record<string, unknown>;
|
|
1267
|
+
skuInfo?: Record<string, unknown>;
|
|
1268
|
+
}[];
|
|
1269
|
+
count: number;
|
|
1270
|
+
}
|
|
1271
|
+
interface webQueryCommodityListNew {
|
|
1272
|
+
itemList: {
|
|
1273
|
+
itemInfo: Record<string, unknown>;
|
|
1274
|
+
itemExtraInfo?: Record<string, unknown>;
|
|
1275
|
+
skuInfo?: Record<string, unknown>;
|
|
1276
|
+
}[];
|
|
1277
|
+
count: number;
|
|
1278
|
+
}
|
|
1279
|
+
type webQueryValidSkuForAItem = never;
|
|
1280
|
+
}
|
|
1281
|
+
interface Controller {
|
|
1282
|
+
queryItemByItemIds(request: Request.queryItemByItemIds): Promise<Response.queryItemByItemIds>;
|
|
1283
|
+
queryTourExtraInfoByItemIds(request: Request.queryTourExtraInfoByItemIds): Promise<Response.queryTourExtraInfoByItemIds>;
|
|
1284
|
+
queryItemInfoByIdListFromItemSearch(request: Request.queryItemInfoByIdListFromItemSearch): Promise<Response.queryItemInfoByIdListFromItemSearch>;
|
|
1285
|
+
queryItemInfoByIds(request: Request.queryItemInfoByIds): Promise<Response.queryItemInfoByIds>;
|
|
1286
|
+
checkSku(request: Request.checkSku): Promise<Response.checkSku>;
|
|
1287
|
+
getItemTourExtraInfoById(request: Request.getItemTourExtraInfoById): Promise<Response.getItemTourExtraInfoById>;
|
|
1288
|
+
getItemIdsByStoreIdsInItemHotelExtraInfo(request: Request.getItemIdsByStoreIdsInItemHotelExtraInfo): Promise<Response.getItemIdsByStoreIdsInItemHotelExtraInfo>;
|
|
1289
|
+
getItemInfo(request: Request.getItemInfo): Promise<Response.getItemInfo>;
|
|
1290
|
+
getItemInfoByIdList(request: Request.getItemInfoByIdList): Promise<Response.getItemInfoByIdList>;
|
|
1291
|
+
getItemInfoByIdListNotFilter(request: Request.getItemInfoByIdListNotFilter): Promise<Response.getItemInfoByIdListNotFilter>;
|
|
1292
|
+
getItemInvoiceConfig(request: Request.getItemInvoiceConfig): Promise<Response.getItemInvoiceConfig>;
|
|
1293
|
+
getItemDetailWithoutSku(request: Request.getItemDetailWithoutSku): Promise<Response.getItemDetailWithoutSku>;
|
|
1294
|
+
getItemDetailForWeb(request: Request.getItemDetailForWeb): Promise<Response.getItemDetailForWeb>;
|
|
1295
|
+
getItemDetailForDisplay(request: Request.getItemDetailForDisplay): Promise<Response.getItemDetailForDisplay>;
|
|
1296
|
+
getVirtualItemExtraInfo(request: Request.getVirtualItemExtraInfo): Promise<Response.getVirtualItemExtraInfo>;
|
|
1297
|
+
getSkuEntity(request: Request.getSkuEntity): Promise<Response.getSkuEntity>;
|
|
1298
|
+
getSkuFarmHouseExtraInfo(request: Request.getSkuFarmHouseExtraInfo): Promise<Response.getSkuFarmHouseExtraInfo>;
|
|
1299
|
+
getLatestCommodityInfo(request: Request.getLatestCommodityInfo): Promise<Response.getLatestCommodityInfo>;
|
|
1300
|
+
getRecommendItemByCategoryName(request: Request.getRecommendItemByCategoryName): Promise<Response.getRecommendItemByCategoryName>;
|
|
1301
|
+
getProductSkuInfo(request: Request.getProductSkuInfo): Promise<Response.getProductSkuInfo>;
|
|
1302
|
+
getItemInfoListByIdOrCate(request: Request.getItemInfoListByIdOrCate): Promise<Response.getItemInfoListByIdOrCate>;
|
|
1303
|
+
getOnlyHomeDialogInfo(request: Request.getOnlyHomeDialogInfo): Promise<Response.getOnlyHomeDialogInfo>;
|
|
1304
|
+
getProductBasicInfo(request: Request.getProductBasicInfo): Promise<Response.getProductBasicInfo>;
|
|
1305
|
+
getProductExtraInfo(request: Request.getProductExtraInfo): Promise<Response.getProductExtraInfo>;
|
|
1306
|
+
isItemHasMemberPrice(request: Request.isItemHasMemberPrice): Promise<Response.isItemHasMemberPrice>;
|
|
1307
|
+
isSkuStockLeft(request: Request.isSkuStockLeft): Promise<Response.isSkuStockLeft>;
|
|
1308
|
+
multiQueryItemSkuAndComboForBoss(request: Request.multiQueryItemSkuAndComboForBoss): Promise<Response.multiQueryItemSkuAndComboForBoss>;
|
|
1309
|
+
queryCancellationPolicy(request: Request.queryCancellationPolicy): Promise<Response.queryCancellationPolicy>;
|
|
1310
|
+
queryControlledSkuSurplus(request: Request.queryControlledSkuSurplus): Promise<Response.queryControlledSkuSurplus>;
|
|
1311
|
+
queryFarmHouseExtraInfo(request: Request.queryFarmHouseExtraInfo): Promise<Response.queryFarmHouseExtraInfo>;
|
|
1312
|
+
queryHotItemsInLast30Days(request: Request.queryHotItemsInLast30Days): Promise<Response.queryHotItemsInLast30Days>;
|
|
1313
|
+
queryItemIdsInTagIds(request: Request.queryItemIdsInTagIds): Promise<Response.queryItemIdsInTagIds>;
|
|
1314
|
+
queryItemInfoByIdList(request: Request.queryItemInfoByIdList): Promise<Response.queryItemInfoByIdList>;
|
|
1315
|
+
queryItemInfoForTrade(request: Request.queryItemInfoForTrade): Promise<Response.queryItemInfoForTrade>;
|
|
1316
|
+
queryItemInfoInTagIds(request: Request.queryItemInfoInTagIds): Promise<Response.queryItemInfoInTagIds>;
|
|
1317
|
+
queryItemProductDetailsByItemIds(request: Request.queryItemProductDetailsByItemIds): Promise<Response.queryItemProductDetailsByItemIds>;
|
|
1318
|
+
queryItemSkuByTime(request: Request.queryItemSkuByTime): Promise<Response.queryItemSkuByTime>;
|
|
1319
|
+
queryItemTagList(request: Request.queryItemTagList): Promise<Response.queryItemTagList>;
|
|
1320
|
+
queryMemberItemInfoInTagIds(request: Request.queryMemberItemInfoInTagIds): Promise<Response.queryMemberItemInfoInTagIds>;
|
|
1321
|
+
querySkusByIds(request: Request.querySkusByIds): Promise<Response.querySkusByIds>;
|
|
1322
|
+
querySkusByItemForWeb(request: Request.querySkusByItemForWeb): Promise<Response.querySkusByItemForWeb>;
|
|
1323
|
+
webQueryAllItemsByCondition(request: Request.webQueryAllItemsByCondition): Promise<Response.webQueryAllItemsByCondition>;
|
|
1324
|
+
buildCommodityInfoSnapShot(request: Request.buildCommodityInfoSnapShot): Promise<Response.buildCommodityInfoSnapShot>;
|
|
1325
|
+
buildOldItemInfoFromNew(request: Request.buildOldItemInfoFromNew): Promise<Response.buildOldItemInfoFromNew>;
|
|
1326
|
+
buildOldSkuInfoFromNew(request: Request.buildOldSkuInfoFromNew): Promise<Response.buildOldSkuInfoFromNew>;
|
|
1327
|
+
buildRestructureCommodityInfoSnapShot(request: Request.buildRestructureCommodityInfoSnapShot): Promise<Response.buildRestructureCommodityInfoSnapShot>;
|
|
1328
|
+
decodeScene(request: Request.decodeScene): Promise<Response.decodeScene>;
|
|
1329
|
+
filterAdultSkuIdBySkuIdList(request: Request.filterAdultSkuIdBySkuIdList): Promise<Response.filterAdultSkuIdBySkuIdList>;
|
|
1330
|
+
getAllCategoryAndItemInfoList(request: Request.getAllCategoryAndItemInfoList): Promise<Response.getAllCategoryAndItemInfoList>;
|
|
1331
|
+
getAllItemIdsByStoreIds(request: Request.getAllItemIdsByStoreIds): Promise<Response.getAllItemIdsByStoreIds>;
|
|
1332
|
+
getCarNo(request: Request.getCarNo): Promise<Response.getCarNo>;
|
|
1333
|
+
getCategoryById(request: Request.getCategoryById): Promise<Response.getCategoryById>;
|
|
1334
|
+
getDoubleElevenActivityItemList(): Promise<Response.getDoubleElevenActivityItemList>;
|
|
1335
|
+
getEcBasicInfo(request: Request.getEcBasicInfo): Promise<Response.getEcBasicInfo>;
|
|
1336
|
+
getHomeDialogInfo(request: Request.getHomeDialogInfo): Promise<Response.getHomeDialogInfo>;
|
|
1337
|
+
getHotelItemByCondition(request: Request.getHotelItemByCondition): Promise<Response.getHotelItemByCondition>;
|
|
1338
|
+
getHotelItemListByPlace(request: Request.getHotelItemListByPlace): Promise<Response.getHotelItemListByPlace>;
|
|
1339
|
+
getItemDetail(request: Request.getItemDetail): Promise<Response.getItemDetail>;
|
|
1340
|
+
getItemIdByStoreId(request: Request.getItemIdByStoreId): Promise<Response.getItemIdByStoreId>;
|
|
1341
|
+
getItemIdsByStoreIds(request: Request.getItemIdsByStoreIds): Promise<Response.getItemIdsByStoreIds>;
|
|
1342
|
+
getItemInfoListByCategoryNames(request: Request.getItemInfoListByCategoryNames): Promise<Response.getItemInfoListByCategoryNames>;
|
|
1343
|
+
getItemInvoiceConfigByIds(request: Request.getItemInvoiceConfigByIds): Promise<Response.getItemInvoiceConfigByIds>;
|
|
1344
|
+
getItemListByCouponTemplateId(request: Request.getItemListByCouponTemplateId): Promise<Response.getItemListByCouponTemplateId>;
|
|
1345
|
+
getItemListForActivity(): Promise<Response.getItemListForActivity>;
|
|
1346
|
+
getItemListInTag(request: Request.getItemListInTag): Promise<Response.getItemListInTag>;
|
|
1347
|
+
getOrderItemSnapShotByItemIdAndOrderId(request: Request.getOrderItemSnapShotByItemIdAndOrderId): Promise<Response.getOrderItemSnapShotByItemIdAndOrderId>;
|
|
1348
|
+
getPartyItemExtraInfo(request: Request.getPartyItemExtraInfo): Promise<Response.getPartyItemExtraInfo>;
|
|
1349
|
+
getPlaceList(request: Request.getPlaceList): Promise<Response.getPlaceList>;
|
|
1350
|
+
getProductDetailByItemId(request: Request.getProductDetailByItemId): Promise<Response.getProductDetailByItemId>;
|
|
1351
|
+
getProductSkuInfoByDepartureDate(request: Request.getProductSkuInfoByDepartureDate): Promise<Response.getProductSkuInfoByDepartureDate>;
|
|
1352
|
+
getRecommendItemForStaff(request: Request.getRecommendItemForStaff): Promise<Response.getRecommendItemForStaff>;
|
|
1353
|
+
getSkuHotelExtraInfo(request: Request.getSkuHotelExtraInfo): Promise<Response.getSkuHotelExtraInfo>;
|
|
1354
|
+
isMatchRestructure(request: Request.isMatchRestructure): Promise<Response.isMatchRestructure>;
|
|
1355
|
+
isMatchRms(request: Request.isMatchRms): Promise<Response.isMatchRms>;
|
|
1356
|
+
listItemInfoByName(request: Request.listItemInfoByName): Promise<Response.listItemInfoByName>;
|
|
1357
|
+
mgetItemIdByCategoryList(request: Request.mgetItemIdByCategoryList): Promise<Response.mgetItemIdByCategoryList>;
|
|
1358
|
+
mgetItemInfoListInTagIds(request: Request.mgetItemInfoListInTagIds): Promise<Response.mgetItemInfoListInTagIds>;
|
|
1359
|
+
query51ItemInfoInTagIds(request: Request.query51ItemInfoInTagIds): Promise<Response.query51ItemInfoInTagIds>;
|
|
1360
|
+
queryAllItemsByConditionWidth(request: Request.queryAllItemsByConditionWidth): Promise<Response.queryAllItemsByConditionWidth>;
|
|
1361
|
+
queryAllStatusItemInfoList(request: Request.queryAllStatusItemInfoList): Promise<Response.queryAllStatusItemInfoList>;
|
|
1362
|
+
queryDepartureInFutureSku(request: Request.queryDepartureInFutureSku): Promise<Response.queryDepartureInFutureSku>;
|
|
1363
|
+
queryExpiringItemsForWeb(request: Request.queryExpiringItemsForWeb): Promise<Response.queryExpiringItemsForWeb>;
|
|
1364
|
+
queryGroupInfoFromSkus(request: Request.queryGroupInfoFromSkus): Promise<Response.queryGroupInfoFromSkus>;
|
|
1365
|
+
queryItemIdByItemName(request: Request.queryItemIdByItemName): Promise<Response.queryItemIdByItemName>;
|
|
1366
|
+
queryItemIdByItemNameCategoryTwo(request: Request.queryItemIdByItemNameCategoryTwo): Promise<Response.queryItemIdByItemNameCategoryTwo>;
|
|
1367
|
+
queryItemIdByPartyStoreId(request: Request.queryItemIdByPartyStoreId): Promise<Response.queryItemIdByPartyStoreId>;
|
|
1368
|
+
queryItemIdByStoreId(request: Request.queryItemIdByStoreId): Promise<Response.queryItemIdByStoreId>;
|
|
1369
|
+
queryItemListByTagId(request: Request.queryItemListByTagId): Promise<Response.queryItemListByTagId>;
|
|
1370
|
+
queryItemListByTagIdsInActivity(request: Request.queryItemListByTagIdsInActivity): Promise<Response.queryItemListByTagIdsInActivity>;
|
|
1371
|
+
queryItemListByTagList(request: Request.queryItemListByTagList): Promise<Response.queryItemListByTagList>;
|
|
1372
|
+
queryItemListByTagListForDoubleEleven(request: Request.queryItemListByTagListForDoubleEleven): Promise<Response.queryItemListByTagListForDoubleEleven>;
|
|
1373
|
+
queryItemListForMemberPage(): Promise<Response.queryItemListForMemberPage>;
|
|
1374
|
+
queryItemMinPrice(request: Request.queryItemMinPrice): Promise<Response.queryItemMinPrice>;
|
|
1375
|
+
queryItemRelatedCity(request: Request.queryItemRelatedCity): Promise<Response.queryItemRelatedCity>;
|
|
1376
|
+
queryItemTagByItemId(request: Request.queryItemTagByItemId): Promise<Response.queryItemTagByItemId>;
|
|
1377
|
+
queryItemsByNameInNatureLangueMode(request: Request.queryItemsByNameInNatureLangueMode): Promise<Response.queryItemsByNameInNatureLangueMode>;
|
|
1378
|
+
queryLocationByItemIds(request: Request.queryLocationByItemIds): Promise<Response.queryLocationByItemIds>;
|
|
1379
|
+
queryLocationByItemIdsForFarmHouse(request: Request.queryLocationByItemIdsForFarmHouse): Promise<Response.queryLocationByItemIdsForFarmHouse>;
|
|
1380
|
+
queryRecommendedItems(request: Request.queryRecommendedItems): Promise<Response.queryRecommendedItems>;
|
|
1381
|
+
queryRecommendedItemsByUserNeed(request: Request.queryRecommendedItemsByUserNeed): Promise<Response.queryRecommendedItemsByUserNeed>;
|
|
1382
|
+
querySamePriceSkuList(request: Request.querySamePriceSkuList): Promise<Response.querySamePriceSkuList>;
|
|
1383
|
+
querySkuApplicablePeopleInSkuIds(request: Request.querySkuApplicablePeopleInSkuIds): Promise<Response.querySkuApplicablePeopleInSkuIds>;
|
|
1384
|
+
querySkuByItemAndDepartureDate(request: Request.querySkuByItemAndDepartureDate): Promise<Response.querySkuByItemAndDepartureDate>;
|
|
1385
|
+
querySkuInfoInDepartureDate(request: Request.querySkuInfoInDepartureDate): Promise<Response.querySkuInfoInDepartureDate>;
|
|
1386
|
+
querySkuInfoInDepartureDateForObj(request: Request.querySkuInfoInDepartureDateForObj): Promise<Response.querySkuInfoInDepartureDateForObj>;
|
|
1387
|
+
querySkusByItemAndDepartureDateRange(request: Request.querySkusByItemAndDepartureDateRange): Promise<Response.querySkusByItemAndDepartureDateRange>;
|
|
1388
|
+
querySupplementSkuByRelatedId(request: Request.querySupplementSkuByRelatedId): Promise<Response.querySupplementSkuByRelatedId>;
|
|
1389
|
+
queryVideoByItemIdList(): Promise<Response.queryVideoByItemIdList>;
|
|
1390
|
+
qwQueryCommodityListNew(request: Request.qwQueryCommodityListNew): Promise<Response.qwQueryCommodityListNew>;
|
|
1391
|
+
searchItemByName(request: Request.searchItemByName): Promise<Response.searchItemByName>;
|
|
1392
|
+
searchItemForHomePage(request: Request.searchItemForHomePage): Promise<Response.searchItemForHomePage>;
|
|
1393
|
+
webQueryCommodityList(request: Request.webQueryCommodityList): Promise<Response.webQueryCommodityList>;
|
|
1394
|
+
webQueryCommodityListNew(request: Request.webQueryCommodityListNew): Promise<Response.webQueryCommodityListNew>;
|
|
1395
|
+
webQueryValidSkuForAItem(request: Request.webQueryValidSkuForAItem): Promise<Response.webQueryValidSkuForAItem>;
|
|
1396
|
+
}
|
|
1397
|
+
}
|