@twin.org/entity-storage-service 0.0.3-next.7 → 0.0.3-next.9
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
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.9](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.8...entity-storage-service-v0.0.3-next.9) (2026-04-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
18
|
+
|
|
19
|
+
## [0.0.3-next.8](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.7...entity-storage-service-v0.0.3-next.8) (2026-03-20)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Miscellaneous Chores
|
|
23
|
+
|
|
24
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Dependencies
|
|
28
|
+
|
|
29
|
+
* The following workspace dependencies were updated
|
|
30
|
+
* dependencies
|
|
31
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
32
|
+
* devDependencies
|
|
33
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
34
|
+
|
|
3
35
|
## [0.0.3-next.7](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.6...entity-storage-service-v0.0.3-next.7) (2026-03-13)
|
|
4
36
|
|
|
5
37
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -535,6 +535,7 @@
|
|
|
535
535
|
"description": "The data to be used in the entity."
|
|
536
536
|
},
|
|
537
537
|
"Error": {
|
|
538
|
+
"description": "Model to describe serialized error.",
|
|
538
539
|
"type": "object",
|
|
539
540
|
"properties": {
|
|
540
541
|
"name": {
|
|
@@ -565,8 +566,7 @@
|
|
|
565
566
|
"required": [
|
|
566
567
|
"name",
|
|
567
568
|
"message"
|
|
568
|
-
]
|
|
569
|
-
"description": "Model to describe serialized error."
|
|
569
|
+
]
|
|
570
570
|
},
|
|
571
571
|
"NotFoundResponse": {
|
|
572
572
|
"type": "object",
|
|
@@ -574,52 +574,27 @@
|
|
|
574
574
|
"notFoundId": {
|
|
575
575
|
"type": "string",
|
|
576
576
|
"description": "The id if the item that was not found."
|
|
577
|
-
},
|
|
578
|
-
"name": {
|
|
579
|
-
"type": "string",
|
|
580
|
-
"description": "The name for the error."
|
|
581
|
-
},
|
|
582
|
-
"message": {
|
|
583
|
-
"type": "string",
|
|
584
|
-
"description": "The message for the error."
|
|
585
|
-
},
|
|
586
|
-
"source": {
|
|
587
|
-
"type": "string",
|
|
588
|
-
"description": "The source of the error."
|
|
589
|
-
},
|
|
590
|
-
"properties": {
|
|
591
|
-
"type": "object",
|
|
592
|
-
"additionalProperties": {},
|
|
593
|
-
"description": "Any additional information for the error."
|
|
594
|
-
},
|
|
595
|
-
"stack": {
|
|
596
|
-
"type": "string",
|
|
597
|
-
"description": "The stack trace for the error."
|
|
598
|
-
},
|
|
599
|
-
"cause": {
|
|
600
|
-
"$ref": "#/components/schemas/Error"
|
|
601
577
|
}
|
|
602
578
|
},
|
|
603
|
-
"
|
|
604
|
-
|
|
605
|
-
|
|
579
|
+
"allOf": [
|
|
580
|
+
{
|
|
581
|
+
"$ref": "#/components/schemas/Error"
|
|
582
|
+
}
|
|
606
583
|
],
|
|
607
584
|
"description": "The body which contains the error."
|
|
608
585
|
},
|
|
609
586
|
"SortDirection": {
|
|
587
|
+
"description": "The sort directions.",
|
|
610
588
|
"anyOf": [
|
|
611
589
|
{
|
|
612
|
-
"type": "string",
|
|
613
590
|
"const": "asc",
|
|
614
591
|
"description": "Ascending."
|
|
615
592
|
},
|
|
616
593
|
{
|
|
617
|
-
"type": "string",
|
|
618
594
|
"const": "desc",
|
|
619
595
|
"description": "Descending."
|
|
620
596
|
}
|
|
621
|
-
]
|
|
622
|
-
"description": "The sort directions."
|
|
597
|
+
]
|
|
623
598
|
}
|
|
624
599
|
},
|
|
625
600
|
"securitySchemes": {
|
|
@@ -6,7 +6,7 @@ Examples for the entity storage routes.
|
|
|
6
6
|
|
|
7
7
|
### set? {#set}
|
|
8
8
|
|
|
9
|
-
> `optional` **set
|
|
9
|
+
> `optional` **set?**: `object`
|
|
10
10
|
|
|
11
11
|
Examples for the set route.
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ Examples for the set route.
|
|
|
18
18
|
|
|
19
19
|
### get? {#get}
|
|
20
20
|
|
|
21
|
-
> `optional` **get
|
|
21
|
+
> `optional` **get?**: `object`
|
|
22
22
|
|
|
23
23
|
Examples for the get route.
|
|
24
24
|
|
|
@@ -34,7 +34,7 @@ Examples for the get route.
|
|
|
34
34
|
|
|
35
35
|
### remove? {#remove}
|
|
36
36
|
|
|
37
|
-
> `optional` **remove
|
|
37
|
+
> `optional` **remove?**: `object`
|
|
38
38
|
|
|
39
39
|
Examples for the remove route.
|
|
40
40
|
|
|
@@ -46,7 +46,7 @@ Examples for the remove route.
|
|
|
46
46
|
|
|
47
47
|
### list? {#list}
|
|
48
48
|
|
|
49
|
-
> `optional` **list
|
|
49
|
+
> `optional` **list?**: `object`
|
|
50
50
|
|
|
51
51
|
Examples for the list route.
|
|
52
52
|
|
|
@@ -14,6 +14,6 @@ The type of the entity storage.
|
|
|
14
14
|
|
|
15
15
|
### config? {#config}
|
|
16
16
|
|
|
17
|
-
> `optional` **config
|
|
17
|
+
> `optional` **config?**: [`IEntityStorageServiceConfig`](IEntityStorageServiceConfig.md)
|
|
18
18
|
|
|
19
19
|
The configuration for the service.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/entity-storage-service",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.9",
|
|
4
4
|
"description": "Service layer exposing storage contracts and REST endpoint definitions.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@twin.org/api-models": "next",
|
|
18
18
|
"@twin.org/core": "next",
|
|
19
19
|
"@twin.org/entity": "next",
|
|
20
|
-
"@twin.org/entity-storage-models": "0.0.3-next.
|
|
20
|
+
"@twin.org/entity-storage-models": "0.0.3-next.9",
|
|
21
21
|
"@twin.org/nameof": "next",
|
|
22
22
|
"@twin.org/web": "next"
|
|
23
23
|
},
|