@twin.org/auditable-item-stream-service 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 +28 -0
- package/docs/open-api/spec.json +2 -1
- package/package.json +14 -56
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @twin.org/auditable-item-stream-service - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.1](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.2-next.0...auditable-item-stream-service-v0.0.2-next.1) (2025-07-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* data types registered with fully qualified names ([3bcd927](https://github.com/twinfoundation/auditable-item-stream/commit/3bcd92788bfe4976bc88caf230501f5bbf8637f9))
|
|
9
|
+
* improve schemas ([a658264](https://github.com/twinfoundation/auditable-item-stream/commit/a65826423f57ca18d9de44e7e75cb06ab9dd12cb))
|
|
10
|
+
* improve schemas ([b253580](https://github.com/twinfoundation/auditable-item-stream/commit/b2535806321f39c7c02db0e04f65fb04c0595dd0))
|
|
11
|
+
* update dependencies ([9ff038b](https://github.com/twinfoundation/auditable-item-stream/commit/9ff038b7e76e9fb586be4f2321231f04258ef794))
|
|
12
|
+
* use shared store mechanism ([#7](https://github.com/twinfoundation/auditable-item-stream/issues/7)) ([2aca4b8](https://github.com/twinfoundation/auditable-item-stream/commit/2aca4b85b0102f91c90619f02b116541786cf539))
|
|
13
|
+
* use standard list json ld types ([54ee4d7](https://github.com/twinfoundation/auditable-item-stream/commit/54ee4d78c42cfd39745ee7d93903334c398ec8c8))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* immutable remove parameter order ([19f60d6](https://github.com/twinfoundation/auditable-item-stream/commit/19f60d6c7b9f926694e91f4fbf348a4a4eb34c5a))
|
|
19
|
+
* query params force coercion ([fcdd52c](https://github.com/twinfoundation/auditable-item-stream/commit/fcdd52cf8262a3bc19f6e7e9e6ef145890a9c8aa))
|
|
20
|
+
* remove misses removing entries ([a58bc09](https://github.com/twinfoundation/auditable-item-stream/commit/a58bc0943ea6e77ca7c854b2f41cfaba3fb9b10b))
|
|
21
|
+
* update entry use correct deconstructed object ([801e857](https://github.com/twinfoundation/auditable-item-stream/commit/801e857d71289672b9c6010f302b33c9d8ea9860))
|
|
22
|
+
* update tests for deterministic background tasks ([#5](https://github.com/twinfoundation/auditable-item-stream/issues/5)) ([75d844e](https://github.com/twinfoundation/auditable-item-stream/commit/75d844eb98d0af63a089105379f9859def47e92a))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
30
|
+
|
|
3
31
|
## 0.0.1 (2025-07-09)
|
|
4
32
|
|
|
5
33
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"openapi": "3.1.
|
|
2
|
+
"openapi": "3.1.1",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "TWIN - Test Endpoints",
|
|
5
5
|
"description": "REST API for TWIN - Test Endpoints.",
|
|
@@ -2125,6 +2125,7 @@
|
|
|
2125
2125
|
},
|
|
2126
2126
|
"entries": {
|
|
2127
2127
|
"type": "array",
|
|
2128
|
+
"items": false,
|
|
2128
2129
|
"description": "The entries for the stream.",
|
|
2129
2130
|
"prefixItems": [
|
|
2130
2131
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/auditable-item-stream-service",
|
|
3
|
-
"version": "0.0.1",
|
|
3
|
+
"version": "0.0.2-next.1",
|
|
4
4
|
"description": "Auditable Item Stream contract implementation and REST endpoint definitions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -13,62 +13,20 @@
|
|
|
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:api": "ts-to-openapi ./ts-to-openapi.json ./docs/open-api/spec.json",
|
|
28
|
-
"docs": "npm run docs:clean && npm run docs:generate && npm run docs:api",
|
|
29
|
-
"dist": "npm run clean && npm run build && npm run test && npm run bundle && npm run docs",
|
|
30
|
-
"dist:no-test": "npm run clean && npm run build && npm run bundle && npm run docs",
|
|
31
|
-
"prepare": "ts-patch install -s"
|
|
32
|
-
},
|
|
33
16
|
"dependencies": {
|
|
34
|
-
"@twin.org/api-models": "
|
|
35
|
-
"@twin.org/auditable-item-stream-models": "
|
|
36
|
-
"@twin.org/core": "
|
|
37
|
-
"@twin.org/crypto": "
|
|
38
|
-
"@twin.org/data-json-ld": "
|
|
39
|
-
"@twin.org/entity": "
|
|
40
|
-
"@twin.org/entity-storage-models": "
|
|
41
|
-
"@twin.org/event-bus-models": "
|
|
42
|
-
"@twin.org/immutable-proof-models": "
|
|
43
|
-
"@twin.org/nameof": "
|
|
44
|
-
"@twin.org/standards-schema-org": "
|
|
45
|
-
"@twin.org/standards-w3c-did": "
|
|
46
|
-
"@twin.org/web": "
|
|
47
|
-
},
|
|
48
|
-
"devDependencies": {
|
|
49
|
-
"@twin.org/background-task-models": "^0.0.2-next.2",
|
|
50
|
-
"@twin.org/background-task-connector-entity-storage": "^0.0.2-next.2",
|
|
51
|
-
"@twin.org/entity-storage-connector-memory": "^0.0.1",
|
|
52
|
-
"@twin.org/identity-connector-entity-storage": "^0.0.1",
|
|
53
|
-
"@twin.org/immutable-proof-service": "^0.0.1",
|
|
54
|
-
"@twin.org/modules": "^0.0.1",
|
|
55
|
-
"@twin.org/nameof-transformer": "^0.0.1",
|
|
56
|
-
"@twin.org/nameof-vitest-plugin": "^0.0.1",
|
|
57
|
-
"@twin.org/standards-schema-org": "^0.0.1",
|
|
58
|
-
"@twin.org/ts-to-openapi": "^0.0.1",
|
|
59
|
-
"@twin.org/vault-connector-entity-storage": "^0.0.1",
|
|
60
|
-
"@twin.org/verifiable-storage-connector-entity-storage": "^0.0.1",
|
|
61
|
-
"@types/node": "24.0.1",
|
|
62
|
-
"@vitest/coverage-v8": "3.2.3",
|
|
63
|
-
"copyfiles": "2.4.1",
|
|
64
|
-
"nodemon": "3.1.10",
|
|
65
|
-
"rimraf": "6.0.1",
|
|
66
|
-
"rollup": "4.43.0",
|
|
67
|
-
"ts-patch": "3.3.0",
|
|
68
|
-
"typedoc": "0.28.5",
|
|
69
|
-
"typedoc-plugin-markdown": "4.6.4",
|
|
70
|
-
"typescript": "5.8.3",
|
|
71
|
-
"vitest": "3.2.3"
|
|
17
|
+
"@twin.org/api-models": "next",
|
|
18
|
+
"@twin.org/auditable-item-stream-models": "0.0.2-next.1",
|
|
19
|
+
"@twin.org/core": "next",
|
|
20
|
+
"@twin.org/crypto": "next",
|
|
21
|
+
"@twin.org/data-json-ld": "next",
|
|
22
|
+
"@twin.org/entity": "next",
|
|
23
|
+
"@twin.org/entity-storage-models": "next",
|
|
24
|
+
"@twin.org/event-bus-models": "next",
|
|
25
|
+
"@twin.org/immutable-proof-models": "next",
|
|
26
|
+
"@twin.org/nameof": "next",
|
|
27
|
+
"@twin.org/standards-schema-org": "next",
|
|
28
|
+
"@twin.org/standards-w3c-did": "next",
|
|
29
|
+
"@twin.org/web": "next"
|
|
72
30
|
},
|
|
73
31
|
"main": "./dist/cjs/index.cjs",
|
|
74
32
|
"module": "./dist/esm/index.mjs",
|