@be-link/pos-cli-nodejs 0.0.164 → 0.0.166
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/package.json +1 -1
- package/types.d.ts +7 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ export interface IPositiveOrder {
|
|
|
42
42
|
categoryTwo: string;
|
|
43
43
|
/** 快照:商品归属门店ID */
|
|
44
44
|
storeId: string;
|
|
45
|
+
/** 快照:商品归属供应商ID */
|
|
46
|
+
supplierId: string;
|
|
45
47
|
/** 快照:交易主商品ID */
|
|
46
48
|
itemId: string;
|
|
47
49
|
/** 交易主SKUID(改期场景会更新该字段) */
|
|
@@ -169,6 +171,8 @@ export interface IPositiveItemInfo {
|
|
|
169
171
|
featuredTags: string[];
|
|
170
172
|
/** 门店id */
|
|
171
173
|
storeId?: string;
|
|
174
|
+
/** 供应商id */
|
|
175
|
+
supplierId?: string;
|
|
172
176
|
/** 头图 */
|
|
173
177
|
headPics: string[];
|
|
174
178
|
/** 视频 */
|
|
@@ -216,7 +220,9 @@ export interface IPositiveItemInfo {
|
|
|
216
220
|
/** 合作方 */
|
|
217
221
|
cooperator: string;
|
|
218
222
|
/** 酒店供应商 */
|
|
219
|
-
hotelSupplier
|
|
223
|
+
hotelSupplier?: string;
|
|
224
|
+
/** 农家乐供应商 */
|
|
225
|
+
farmHouseSupplier?: string;
|
|
220
226
|
/** 酒店班车供应商 */
|
|
221
227
|
shuttleBusSupplier: string;
|
|
222
228
|
/** 酒店班车供应商ID */
|