@be-link/pos-cli-nodejs 0.0.101 → 0.0.103-beta.0
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
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-link/pos-cli-nodejs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.103-beta.0",
|
|
4
4
|
"description": "正向订单服务Nodejs客户端",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "rm -rf ./dist && tsc && cp package.json README.md ./dist/",
|
|
8
8
|
"test": "npx jest",
|
|
9
|
-
"gen-doc": "npx typedoc --options typedoc.json"
|
|
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"
|
|
10
15
|
},
|
|
11
16
|
"repository": {
|
|
12
17
|
"type": "git",
|
|
@@ -23,10 +28,16 @@
|
|
|
23
28
|
"registry": "https://registry.npmjs.org/"
|
|
24
29
|
},
|
|
25
30
|
"devDependencies": {
|
|
31
|
+
"@commitlint/cli": "^18.4.3",
|
|
32
|
+
"@commitlint/config-conventional": "^18.4.3",
|
|
33
|
+
"@types/inquirer": "^9.0.7",
|
|
26
34
|
"@types/jest": "29.5.6",
|
|
27
|
-
"@types/node": "20.8.9",
|
|
35
|
+
"@types/node": "^20.8.9",
|
|
28
36
|
"@types/uuid": "^9.0.6",
|
|
37
|
+
"husky": "^8.0.3",
|
|
38
|
+
"inquirer": "8.2.6",
|
|
29
39
|
"jest": "29.7.0",
|
|
40
|
+
"standard-version": "^9.5.0",
|
|
30
41
|
"ts-jest": "29.1.1",
|
|
31
42
|
"typedoc": "0.25.2",
|
|
32
43
|
"typedoc-plugin-missing-exports": "2.1.0",
|
|
@@ -349,6 +349,10 @@ export declare namespace Service {
|
|
|
349
349
|
};
|
|
350
350
|
/** 查询块 */
|
|
351
351
|
needBlocks: K;
|
|
352
|
+
/** 查询条数 */
|
|
353
|
+
pageSize?: number;
|
|
354
|
+
/** 查询页码 */
|
|
355
|
+
pageIndex?: number;
|
|
352
356
|
}
|
|
353
357
|
interface queryStoreOrderList<K> {
|
|
354
358
|
/** 条件 */
|
|
@@ -393,6 +397,10 @@ export declare namespace Service {
|
|
|
393
397
|
startTime: number;
|
|
394
398
|
/** 结束时间 */
|
|
395
399
|
endTime: number;
|
|
400
|
+
/** 页码 */
|
|
401
|
+
pageIndex?: number;
|
|
402
|
+
/** 条目数 */
|
|
403
|
+
pageSize?: number;
|
|
396
404
|
}
|
|
397
405
|
interface queryPeriodTradeOrderOperatorList {
|
|
398
406
|
/** 二级类目 */
|
|
@@ -401,6 +409,10 @@ export declare namespace Service {
|
|
|
401
409
|
startTime: number;
|
|
402
410
|
/** 结束时间 */
|
|
403
411
|
endTime: number;
|
|
412
|
+
/** 页码 */
|
|
413
|
+
pageIndex?: number;
|
|
414
|
+
/** 条目数 */
|
|
415
|
+
pageSize?: number;
|
|
404
416
|
}
|
|
405
417
|
interface queryRollingSalesStatistics {
|
|
406
418
|
/** 页码 */
|