@be-link/pos-cli-nodejs 1.0.155 → 1.0.157
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/pos/modules/orderQuery/types.d.ts +1 -1
- package/types.d.ts +14 -0
package/package.json
CHANGED
|
@@ -737,7 +737,7 @@ export declare namespace Service {
|
|
|
737
737
|
/** 供应商id */
|
|
738
738
|
supplierIds?: string[];
|
|
739
739
|
/** 订单来源渠道 */
|
|
740
|
-
sourceType
|
|
740
|
+
sourceType?: PosConstants.OrderSourceTypeEnum;
|
|
741
741
|
}
|
|
742
742
|
interface queryRejectReasons {
|
|
743
743
|
/** 订单Id */
|
package/types.d.ts
CHANGED
|
@@ -292,6 +292,12 @@ export interface IPositiveItemInfo {
|
|
|
292
292
|
isHighCommission: number;
|
|
293
293
|
/** 共比邻负责人 */
|
|
294
294
|
belinkOwner?: string;
|
|
295
|
+
/** 是否旅行社售卖 0-否 1-是 */
|
|
296
|
+
isTravelAgent?: number;
|
|
297
|
+
/** 供应来源 SELF=自营,AGENT=代卖 */
|
|
298
|
+
supplySource?: string;
|
|
299
|
+
/** 商品说明(JSON) */
|
|
300
|
+
explainJson?: any;
|
|
295
301
|
/** 创建时间 */
|
|
296
302
|
createdAt: number;
|
|
297
303
|
/** 更新时间 */
|
|
@@ -430,6 +436,14 @@ export interface IPositiveSkuInfo {
|
|
|
430
436
|
categoryOne: string;
|
|
431
437
|
/** 二级类目 */
|
|
432
438
|
categoryTwo: string;
|
|
439
|
+
/** 门店结算价 */
|
|
440
|
+
storeSettlementPrice?: number;
|
|
441
|
+
/** 门店结算率 */
|
|
442
|
+
storeProfitRate?: number;
|
|
443
|
+
/** 联营店结算价 */
|
|
444
|
+
jointStoreSettlementPrice?: number;
|
|
445
|
+
/** 联营店结算率 */
|
|
446
|
+
jointStoreProfitRate?: number;
|
|
433
447
|
/** sku快照创建时间 */
|
|
434
448
|
createdAt: number;
|
|
435
449
|
/** sku快照更新时间 */
|