@twin.org/document-management-rest-client 0.0.1 → 0.0.2-next.1
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/docs/changelog.md +23 -0
- package/package.json +11 -41
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @twin.org/document-management-rest-client - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.1](https://github.com/twinfoundation/document-management/compare/document-management-rest-client-v0.0.2-next.0...document-management-rest-client-v0.0.2-next.1) (2025-08-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* document get can perform extraction ([#6](https://github.com/twinfoundation/document-management/issues/6)) ([5ce6d37](https://github.com/twinfoundation/document-management/commit/5ce6d37432ad271ca5783f422846f4be98ec2215))
|
|
9
|
+
* get document revision ([080eddc](https://github.com/twinfoundation/document-management/commit/080eddcc024c622dda6bb36f60f5fa80a86cf5bb))
|
|
10
|
+
* store document as a vertex ([#2](https://github.com/twinfoundation/document-management/issues/2)) ([7febedc](https://github.com/twinfoundation/document-management/commit/7febedc3fb31de9c19565d6326341046834f2c74))
|
|
11
|
+
* update dependencies ([f9d8641](https://github.com/twinfoundation/document-management/commit/f9d86417dba24027699225ec7473296e361dcb00))
|
|
12
|
+
* update framework core ([f991a59](https://github.com/twinfoundation/document-management/commit/f991a59d25ec228bcdd7a5b6bd55578985b55a84))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* adding missing route for the document management ([#4](https://github.com/twinfoundation/document-management/issues/4)) ([fd3292e](https://github.com/twinfoundation/document-management/commit/fd3292ede5014847ae2f2bcadb174b6552486154))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Dependencies
|
|
21
|
+
|
|
22
|
+
* The following workspace dependencies were updated
|
|
23
|
+
* dependencies
|
|
24
|
+
* @twin.org/document-management-models bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
25
|
+
|
|
3
26
|
## 0.0.1 (2025-07-09)
|
|
4
27
|
|
|
5
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/document-management-rest-client",
|
|
3
|
-
"version": "0.0.1",
|
|
3
|
+
"version": "0.0.2-next.1",
|
|
4
4
|
"description": "Document management contract implementation which can connect to REST endpoints",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -13,47 +13,17 @@
|
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"clean": "rimraf dist coverage docs/reference",
|
|
18
|
-
"build": "tsc",
|
|
19
|
-
"dev": "nodemon --watch src --ext ts --exec \"npm run build && npm run bundle:esm\"",
|
|
20
|
-
"test": "vitest --run --config ./vitest.config.ts --no-cache",
|
|
21
|
-
"coverage": "vitest --run --coverage --config ./vitest.config.ts --no-cache",
|
|
22
|
-
"bundle:esm": "rollup --config rollup.config.mjs --environment MODULE:esm",
|
|
23
|
-
"bundle:cjs": "rollup --config rollup.config.mjs --environment MODULE:cjs",
|
|
24
|
-
"bundle": "npm run bundle:esm && npm run bundle:cjs",
|
|
25
|
-
"docs:clean": "rimraf docs/reference",
|
|
26
|
-
"docs:generate": "typedoc",
|
|
27
|
-
"docs": "npm run docs:clean && npm run docs:generate",
|
|
28
|
-
"dist": "npm run clean && npm run build && npm run test && npm run bundle && npm run docs",
|
|
29
|
-
"dist:no-test": "npm run clean && npm run build && npm run bundle && npm run docs",
|
|
30
|
-
"prepare": "ts-patch install -s"
|
|
31
|
-
},
|
|
32
16
|
"dependencies": {
|
|
33
|
-
"@twin.org/api-core": "
|
|
34
|
-
"@twin.org/api-models": "
|
|
35
|
-
"@twin.org/auditable-item-graph-models": "
|
|
36
|
-
"@twin.org/core": "
|
|
37
|
-
"@twin.org/data-json-ld": "
|
|
38
|
-
"@twin.org/document-management-models": "
|
|
39
|
-
"@twin.org/entity": "
|
|
40
|
-
"@twin.org/nameof": "
|
|
41
|
-
"@twin.org/standards-unece": "
|
|
42
|
-
"@twin.org/web": "
|
|
43
|
-
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@twin.org/nameof-transformer": "^0.0.1",
|
|
46
|
-
"@twin.org/nameof-vitest-plugin": "^0.0.1",
|
|
47
|
-
"@vitest/coverage-v8": "3.2.3",
|
|
48
|
-
"copyfiles": "2.4.1",
|
|
49
|
-
"nodemon": "3.1.10",
|
|
50
|
-
"rimraf": "6.0.1",
|
|
51
|
-
"rollup": "4.43.0",
|
|
52
|
-
"ts-patch": "3.3.0",
|
|
53
|
-
"typedoc": "0.28.5",
|
|
54
|
-
"typedoc-plugin-markdown": "4.6.4",
|
|
55
|
-
"typescript": "5.8.3",
|
|
56
|
-
"vitest": "3.2.3"
|
|
17
|
+
"@twin.org/api-core": "next",
|
|
18
|
+
"@twin.org/api-models": "next",
|
|
19
|
+
"@twin.org/auditable-item-graph-models": "next",
|
|
20
|
+
"@twin.org/core": "next",
|
|
21
|
+
"@twin.org/data-json-ld": "next",
|
|
22
|
+
"@twin.org/document-management-models": "0.0.2-next.1",
|
|
23
|
+
"@twin.org/entity": "next",
|
|
24
|
+
"@twin.org/nameof": "next",
|
|
25
|
+
"@twin.org/standards-unece": "next",
|
|
26
|
+
"@twin.org/web": "next"
|
|
57
27
|
},
|
|
58
28
|
"main": "./dist/cjs/index.cjs",
|
|
59
29
|
"module": "./dist/esm/index.mjs",
|