@be-link/pos-cli-nodejs 1.0.136 → 1.0.138
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 +2 -2
- package/types.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-link/pos-cli-nodejs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.138",
|
|
4
4
|
"description": "正向订单服务Nodejs客户端",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"axios": "0.27.2",
|
|
40
40
|
"axios-retry": "^4.0.0",
|
|
41
41
|
"uuid": "^9.0.1",
|
|
42
|
-
"vitality-meta": "1.0.
|
|
42
|
+
"vitality-meta": "1.0.228",
|
|
43
43
|
"@be-link/cs-cli-nodejs": "0.1.100",
|
|
44
44
|
"lodash": "4.17.21"
|
|
45
45
|
},
|
package/types.d.ts
CHANGED
|
@@ -74,6 +74,12 @@ export interface IPositiveOrder {
|
|
|
74
74
|
/** 电话 */
|
|
75
75
|
mobile: string;
|
|
76
76
|
};
|
|
77
|
+
/** 下单人门店 */
|
|
78
|
+
ecsStoreId: string;
|
|
79
|
+
/** 来源人门店 */
|
|
80
|
+
fromEcsStoreId: string;
|
|
81
|
+
/** 订单来源渠道 */
|
|
82
|
+
sourceType: PosConstants.OrderSourceTypeEnum;
|
|
77
83
|
}
|
|
78
84
|
export interface IPositiveAttributes {
|
|
79
85
|
/** 订单ID */
|