@be-link/pos-cli-nodejs 0.0.104 → 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 +5 -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
|
*/
|
|
@@ -168,6 +169,10 @@ export interface IPositiveItemInfo {
|
|
|
168
169
|
isOnlyStaffCanSee: number;
|
|
169
170
|
/** 是否自组团 */
|
|
170
171
|
isSelfLead: number;
|
|
172
|
+
/** 是否需要建群(旅游) */
|
|
173
|
+
needWxGroup: number;
|
|
174
|
+
/** 合同类型(旅游) */
|
|
175
|
+
contractType: commodityConstants.TourContractTypeEnum;
|
|
171
176
|
/** 行程安排 */
|
|
172
177
|
itinerarySchedule: ItinerarySchedule[];
|
|
173
178
|
/** 最低市场价 */
|