ksef-client-ts 0.1.0 → 0.2.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/README.md +26 -3
- package/dist/cli.js +155 -86
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +4340 -3588
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +176 -43
- package/dist/index.d.ts +176 -43
- package/dist/index.js +4328 -3589
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ksef-client-ts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "TypeScript client for the Polish National e-Invoice System (KSeF) API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"build": "tsup",
|
|
29
29
|
"dev": "tsup --watch",
|
|
30
30
|
"test": "vitest run tests/unit",
|
|
31
|
-
"test:
|
|
32
|
-
"test:e2e": "vitest
|
|
31
|
+
"test:e2e": "vitest run tests/e2e --reporter=verbose",
|
|
32
|
+
"test:e2e:watch": "vitest tests/e2e --reporter=verbose",
|
|
33
33
|
"test:watch": "vitest",
|
|
34
34
|
"lint": "tsc --noEmit",
|
|
35
35
|
"link": "npm link",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"docs:dev": "vitepress dev docs",
|
|
38
38
|
"docs:build": "vitepress build docs",
|
|
39
39
|
"docs:preview": "vitepress preview docs",
|
|
40
|
+
"check-api": "node scripts/check-openapi-coverage.mjs",
|
|
40
41
|
"split-openapi": "node scripts/split-openapi.mjs"
|
|
41
42
|
},
|
|
42
43
|
"keywords": [
|
|
@@ -71,6 +72,7 @@
|
|
|
71
72
|
"@types/node-forge": "^1.3.11",
|
|
72
73
|
"@types/qrcode": "^1.5.5",
|
|
73
74
|
"@vitest/coverage-v8": "^3.0.0",
|
|
75
|
+
"jszip": "^3.10.1",
|
|
74
76
|
"tsup": "^8.4.0",
|
|
75
77
|
"typescript": "^5.8.2",
|
|
76
78
|
"vitepress": "^1.6.4",
|