visualvault-api 2.0.0-beta.0 → 2.0.0-beta.2
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/LICENSE +12 -18
- package/README.md +148 -148
- package/dist/VVRestApi.cjs +62 -84
- package/dist/VVRestApi.cjs.map +1 -1
- package/dist/VVRestApi.d.cts +22 -11
- package/dist/VVRestApi.d.ts +22 -11
- package/dist/VVRestApi.js +62 -84
- package/dist/VVRestApi.js.map +1 -1
- package/dist/config.yml +3 -0
- package/dist/index.cjs +62 -84
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +62 -84
- package/dist/index.js.map +1 -1
- package/package.json +74 -74
package/package.json
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "visualvault-api",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
4
|
-
"description": "A Node.js client library for the VisualVault APIs",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.cjs",
|
|
7
|
-
"module": "./dist/index.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": "./dist/index.js",
|
|
12
|
-
"require": "./dist/index.cjs"
|
|
13
|
-
},
|
|
14
|
-
"./constants": {
|
|
15
|
-
"import": "./dist/constants.js",
|
|
16
|
-
"require": "./dist/constants.cjs"
|
|
17
|
-
},
|
|
18
|
-
"./VVRestApi": {
|
|
19
|
-
"import": "./dist/VVRestApi.js",
|
|
20
|
-
"require": "./dist/VVRestApi.cjs"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"keywords": [
|
|
24
|
-
"visualvault",
|
|
25
|
-
"api",
|
|
26
|
-
"rest",
|
|
27
|
-
"client",
|
|
28
|
-
"document",
|
|
29
|
-
"management",
|
|
30
|
-
"forms",
|
|
31
|
-
"nodejs"
|
|
32
|
-
],
|
|
33
|
-
"engines": {
|
|
34
|
-
"node": ">=20.0.0"
|
|
35
|
-
},
|
|
36
|
-
"files": [
|
|
37
|
-
"dist/**/*",
|
|
38
|
-
"README.md",
|
|
39
|
-
"LICENSE"
|
|
40
|
-
],
|
|
41
|
-
"scripts": {
|
|
42
|
-
"build": "tsup",
|
|
43
|
-
"test": "vitest run",
|
|
44
|
-
"test:watch": "vitest",
|
|
45
|
-
"test:ui": "vitest --ui",
|
|
46
|
-
"test:coverage": "vitest run --coverage",
|
|
47
|
-
"prepublishOnly": "npm run build"
|
|
48
|
-
},
|
|
49
|
-
"dependencies": {
|
|
50
|
-
"debug": "^4.3.7",
|
|
51
|
-
"js-yaml": "^4.1.0"
|
|
52
|
-
},
|
|
53
|
-
"repository": {
|
|
54
|
-
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/VisualVault/vv-rest-api-node.git"
|
|
56
|
-
},
|
|
57
|
-
"author": "VisualVault",
|
|
58
|
-
"license": "
|
|
59
|
-
"bugs": {
|
|
60
|
-
"url": "https://github.com/VisualVault/vv-rest-api-node/issues"
|
|
61
|
-
},
|
|
62
|
-
"homepage": "https://github.com/VisualVault/vv-rest-api-node#readme",
|
|
63
|
-
"publishConfig": {
|
|
64
|
-
"access": "public"
|
|
65
|
-
},
|
|
66
|
-
"devDependencies": {
|
|
67
|
-
"@vitest/coverage-v8": "^1.6.1",
|
|
68
|
-
"@vitest/ui": "^1.6.1",
|
|
69
|
-
"dotenv": "^17.2.3",
|
|
70
|
-
"tsup": "^8.5.1",
|
|
71
|
-
"typescript": "^5.9.3",
|
|
72
|
-
"vitest": "^1.6.1"
|
|
73
|
-
}
|
|
74
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "visualvault-api",
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
|
+
"description": "A Node.js client library for the VisualVault APIs",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.cjs"
|
|
13
|
+
},
|
|
14
|
+
"./constants": {
|
|
15
|
+
"import": "./dist/constants.js",
|
|
16
|
+
"require": "./dist/constants.cjs"
|
|
17
|
+
},
|
|
18
|
+
"./VVRestApi": {
|
|
19
|
+
"import": "./dist/VVRestApi.js",
|
|
20
|
+
"require": "./dist/VVRestApi.cjs"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"visualvault",
|
|
25
|
+
"api",
|
|
26
|
+
"rest",
|
|
27
|
+
"client",
|
|
28
|
+
"document",
|
|
29
|
+
"management",
|
|
30
|
+
"forms",
|
|
31
|
+
"nodejs"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=20.0.0"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist/**/*",
|
|
38
|
+
"README.md",
|
|
39
|
+
"LICENSE"
|
|
40
|
+
],
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "tsup",
|
|
43
|
+
"test": "vitest run",
|
|
44
|
+
"test:watch": "vitest",
|
|
45
|
+
"test:ui": "vitest --ui",
|
|
46
|
+
"test:coverage": "vitest run --coverage",
|
|
47
|
+
"prepublishOnly": "npm run build"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"debug": "^4.3.7",
|
|
51
|
+
"js-yaml": "^4.1.0"
|
|
52
|
+
},
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git+https://github.com/VisualVault/vv-rest-api-node.git"
|
|
56
|
+
},
|
|
57
|
+
"author": "VisualVault",
|
|
58
|
+
"license": "ISC",
|
|
59
|
+
"bugs": {
|
|
60
|
+
"url": "https://github.com/VisualVault/vv-rest-api-node/issues"
|
|
61
|
+
},
|
|
62
|
+
"homepage": "https://github.com/VisualVault/vv-rest-api-node#readme",
|
|
63
|
+
"publishConfig": {
|
|
64
|
+
"access": "public"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@vitest/coverage-v8": "^1.6.1",
|
|
68
|
+
"@vitest/ui": "^1.6.1",
|
|
69
|
+
"dotenv": "^17.2.3",
|
|
70
|
+
"tsup": "^8.5.1",
|
|
71
|
+
"typescript": "^5.9.3",
|
|
72
|
+
"vitest": "^1.6.1"
|
|
73
|
+
}
|
|
74
|
+
}
|