@be-link/pos-cli-nodejs 0.0.105 → 0.0.106
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 +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-link/pos-cli-nodejs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.106",
|
|
4
4
|
"description": "正向订单服务Nodejs客户端",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"axios": "0.27.2",
|
|
48
48
|
"uuid": "^9.0.1",
|
|
49
|
-
"vitality-meta": "
|
|
49
|
+
"vitality-meta": "1.0.49"
|
|
50
50
|
}
|
|
51
51
|
}
|
package/types.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as PosConstants from 'vitality-meta/enums/pos';
|
|
2
|
+
import * as commodityConstants from 'vitality-meta/enums/commodity';
|
|
2
3
|
/**
|
|
3
4
|
* 订单正向结构
|
|
4
5
|
*/
|
|
@@ -170,6 +171,8 @@ export interface IPositiveItemInfo {
|
|
|
170
171
|
isSelfLead: number;
|
|
171
172
|
/** 是否需要建群(旅游) */
|
|
172
173
|
needWxGroup: number;
|
|
174
|
+
/** 合同类型(旅游) */
|
|
175
|
+
contractType: commodityConstants.TourContractTypeEnum;
|
|
173
176
|
/** 行程安排 */
|
|
174
177
|
itinerarySchedule: ItinerarySchedule[];
|
|
175
178
|
/** 最低市场价 */
|