@twin.org/document-management-service 0.0.1-next.12 → 0.0.1-next.13
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/dist/cjs/index.cjs +1 -0
- package/dist/esm/index.mjs +1 -0
- package/docs/changelog.md +14 -0
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -1125,6 +1125,7 @@ class DocumentManagementService {
|
|
|
1125
1125
|
for (let i = 0; i < slicedResources.length; i++) {
|
|
1126
1126
|
const document = slicedResources[i].resourceObject;
|
|
1127
1127
|
if (core.Is.object(document)) {
|
|
1128
|
+
document.dateDeleted = slicedResources[i].dateDeleted;
|
|
1128
1129
|
docList.documents.push(document);
|
|
1129
1130
|
const blobRequired = includeBlobStorageMetadata || includeBlobStorageData;
|
|
1130
1131
|
if (blobRequired || extractData) {
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1123,6 +1123,7 @@ class DocumentManagementService {
|
|
|
1123
1123
|
for (let i = 0; i < slicedResources.length; i++) {
|
|
1124
1124
|
const document = slicedResources[i].resourceObject;
|
|
1125
1125
|
if (Is.object(document)) {
|
|
1126
|
+
document.dateDeleted = slicedResources[i].dateDeleted;
|
|
1126
1127
|
docList.documents.push(document);
|
|
1127
1128
|
const blobRequired = includeBlobStorageMetadata || includeBlobStorageData;
|
|
1128
1129
|
if (blobRequired || extractData) {
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/document-management-service - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.13](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.12...document-management-service-v0.0.1-next.13) (2025-04-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* populate dateDeleted from aig resource object ([ce91cf1](https://github.com/twinfoundation/document-management/commit/ce91cf1385c4370ec6924435349213abf776f3e5))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/document-management-models bumped from 0.0.1-next.12 to 0.0.1-next.13
|
|
16
|
+
|
|
3
17
|
## [0.0.1-next.12](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.11...document-management-service-v0.0.1-next.12) (2025-04-30)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/document-management-service",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.13",
|
|
4
4
|
"description": "Document management contract implementation and REST endpoint definitions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@twin.org/crypto": "next",
|
|
23
23
|
"@twin.org/data-json-ld": "next",
|
|
24
24
|
"@twin.org/data-processing-models": "next",
|
|
25
|
-
"@twin.org/document-management-models": "0.0.1-next.
|
|
25
|
+
"@twin.org/document-management-models": "0.0.1-next.13",
|
|
26
26
|
"@twin.org/entity": "next",
|
|
27
27
|
"@twin.org/entity-storage-models": "next",
|
|
28
28
|
"@twin.org/nameof": "next",
|