@be-link/pos-cli-nodejs 0.0.165 → 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 +4 -0
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
|
/** 视频 */
|