@be-link/pos-cli-nodejs 1.0.112 → 1.0.114
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 +11 -12
- package/types.d.ts +0 -4
package/package.json
CHANGED
|
@@ -1,18 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-link/pos-cli-nodejs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.114",
|
|
4
4
|
"description": "正向订单服务Nodejs客户端",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "rm -rf ./dist && tsc && cp package.json README.md ./dist/",
|
|
8
|
-
"test": "npx jest",
|
|
9
|
-
"gen-doc": "npx typedoc --options typedoc.json",
|
|
10
|
-
"update:major": "standard-version --release-as major",
|
|
11
|
-
"update:minor": "standard-version --release-as minor",
|
|
12
|
-
"update:patch": "standard-version --release-as patch",
|
|
13
|
-
"update:beta": "standard-version --prerelease beta",
|
|
14
|
-
"publish": "ts-node ./ci/index"
|
|
15
|
-
},
|
|
16
6
|
"repository": {
|
|
17
7
|
"type": "git",
|
|
18
8
|
"url": "git+https://github.com/snowmountain-top/pos-cli-nodejs.git"
|
|
@@ -52,5 +42,14 @@
|
|
|
52
42
|
"vitality-meta": "1.0.197",
|
|
53
43
|
"@be-link/cs-cli-nodejs": "0.1.97",
|
|
54
44
|
"lodash": "4.17.21"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "rm -rf ./dist && tsc && cp package.json README.md ./dist/",
|
|
48
|
+
"test": "npx jest",
|
|
49
|
+
"gen-doc": "npx typedoc --options typedoc.json",
|
|
50
|
+
"update:major": "standard-version --release-as major",
|
|
51
|
+
"update:minor": "standard-version --release-as minor",
|
|
52
|
+
"update:patch": "standard-version --release-as patch",
|
|
53
|
+
"update:beta": "standard-version --prerelease beta"
|
|
55
54
|
}
|
|
56
|
-
}
|
|
55
|
+
}
|
package/types.d.ts
CHANGED
|
@@ -1244,10 +1244,6 @@ export interface ITradeOrderTourMaterialInfo {
|
|
|
1244
1244
|
* 代办费用
|
|
1245
1245
|
*/
|
|
1246
1246
|
agentCharge: number;
|
|
1247
|
-
/**
|
|
1248
|
-
* 整单出行材料状态(0:未完成 1:已完成)
|
|
1249
|
-
*/
|
|
1250
|
-
tourMaterialStatus: number;
|
|
1251
1247
|
}
|
|
1252
1248
|
/** 订单查询结果 */
|
|
1253
1249
|
export type QueryDataRes<K extends (keyof QueryDataBlockTypeMap)[]> = {
|