@twin.org/document-management-service 0.0.1-next.8 → 0.0.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.
@@ -1,5 +1,5 @@
1
- import { type ICreatedResponse, type IHttpRequestContext, type INoContentResponse, type IRestRoute, type ITag } from "@twin.org/api-models";
2
- import { type IDocumentManagementGetRequest, type IDocumentManagementGetResponse, type IDocumentManagementQueryRequest, type IDocumentManagementQueryResponse, type IDocumentManagementRemoveRequest, type IDocumentManagementSetRequest } from "@twin.org/document-management-models";
1
+ import type { ICreatedResponse, IHttpRequestContext, INoContentResponse, IRestRoute, ITag } from "@twin.org/api-models";
2
+ import { type IDocumentManagementGetRevisionRequest, type IDocumentManagementGetRevisionResponse, type IDocumentManagementCreateRequest, type IDocumentManagementGetRequest, type IDocumentManagementGetResponse, type IDocumentManagementQueryRequest, type IDocumentManagementQueryResponse, type IDocumentManagementRemoveRequest, type IDocumentManagementUpdateRequest } from "@twin.org/document-management-models";
3
3
  /**
4
4
  * The tag to associate with the routes.
5
5
  */
@@ -12,13 +12,13 @@ export declare const tagsDocumentManagement: ITag[];
12
12
  */
13
13
  export declare function generateRestRoutesDocumentManagement(baseRouteName: string, componentName: string): IRestRoute[];
14
14
  /**
15
- * Set a document in to an auditable item graph vertex.
15
+ * Create a document as an auditable item graph vertex.
16
16
  * @param httpRequestContext The request context for the API.
17
17
  * @param componentName The name of the component to use in the routes.
18
18
  * @param request The request.
19
19
  * @returns The response object with additional http response properties.
20
20
  */
21
- export declare function documentManagementSet(httpRequestContext: IHttpRequestContext, componentName: string, request: IDocumentManagementSetRequest): Promise<ICreatedResponse>;
21
+ export declare function documentManagementCreate(httpRequestContext: IHttpRequestContext, componentName: string, request: IDocumentManagementCreateRequest): Promise<ICreatedResponse>;
22
22
  /**
23
23
  * Get the document from the auditable item graph vertex.
24
24
  * @param httpRequestContext The request context for the API.
@@ -27,6 +27,22 @@ export declare function documentManagementSet(httpRequestContext: IHttpRequestCo
27
27
  * @returns The response object with additional http response properties.
28
28
  */
29
29
  export declare function documentManagementGet(httpRequestContext: IHttpRequestContext, componentName: string, request: IDocumentManagementGetRequest): Promise<IDocumentManagementGetResponse>;
30
+ /**
31
+ * Get the document revision from the auditable item graph vertex.
32
+ * @param httpRequestContext The request context for the API.
33
+ * @param componentName The name of the component to use in the routes.
34
+ * @param request The request.
35
+ * @returns The response object with additional http response properties.
36
+ */
37
+ export declare function documentManagementGetRevision(httpRequestContext: IHttpRequestContext, componentName: string, request: IDocumentManagementGetRevisionRequest): Promise<IDocumentManagementGetRevisionResponse>;
38
+ /**
39
+ * Update the document from the auditable item graph vertex.
40
+ * @param httpRequestContext The request context for the API.
41
+ * @param componentName The name of the component to use in the routes.
42
+ * @param request The request.
43
+ * @returns The response object with additional http response properties.
44
+ */
45
+ export declare function documentManagementUpdate(httpRequestContext: IHttpRequestContext, componentName: string, request: IDocumentManagementUpdateRequest): Promise<INoContentResponse>;
30
46
  /**
31
47
  * Remove the document from the auditable item graph vertex.
32
48
  * @param httpRequestContext The request context for the API.
@@ -1,3 +1,4 @@
1
+ import { type IAuditableItemGraphVertexList } from "@twin.org/auditable-item-graph-models";
1
2
  import { type IJsonLdNodeObject } from "@twin.org/data-json-ld";
2
3
  import { type IDocument, type IDocumentList, type IDocumentManagementComponent } from "@twin.org/document-management-models";
3
4
  import { UneceDocumentCodes } from "@twin.org/standards-unece";
@@ -20,80 +21,114 @@ export declare class DocumentManagementService implements IDocumentManagementCom
20
21
  */
21
22
  constructor(options?: IDocumentManagementServiceConstructorOptions);
22
23
  /**
23
- * Store a document in an auditable item graph vertex and add its content to blob storage.
24
+ * Store a document as an auditable item graph vertex and add its content to blob storage.
24
25
  * If the document id already exists and the blob data is different a new revision will be created.
25
26
  * For any other changes the current revision will be updated.
26
- * @param auditableItemGraphId The auditable item graph vertex id to create the document on.
27
27
  * @param documentId The document id to create.
28
28
  * @param documentIdFormat The format of the document identifier.
29
29
  * @param documentCode The code for the document type.
30
- * @param blob The data to create the document.
30
+ * @param blob The data to create the document with.
31
31
  * @param annotationObject Additional information to associate with the document.
32
+ * @param auditableItemGraphEdges The auditable item graph vertices to connect the document to.
32
33
  * @param options Additional options for the set operation.
33
34
  * @param options.createAttestation Flag to create an attestation for the document, defaults to false.
34
- * @param options.includeIdAsAlias Include the document id as an alias to the aig vertex, defaults to false.
35
- * @param options.aliasAnnotationObject Additional information to associate with the alias.
35
+ * @param options.addAlias Flag to add the document id as an alias to the aig vertex, defaults to true.
36
+ * @param options.aliasAnnotationObject Annotation object for the alias.
36
37
  * @param userIdentity The identity to perform the auditable item graph operation with.
37
38
  * @param nodeIdentity The node identity to use for vault operations.
38
- * @returns The identifier for the document which includes the auditable item graph identifier.
39
+ * @returns The auditable item graph vertex created for the document including its revision.
39
40
  */
40
- set(auditableItemGraphId: string, documentId: string, documentIdFormat: string | undefined, documentCode: UneceDocumentCodes, blob: Uint8Array, annotationObject?: IJsonLdNodeObject, options?: {
41
+ create(documentId: string, documentIdFormat: string | undefined, documentCode: UneceDocumentCodes, blob: Uint8Array, annotationObject?: IJsonLdNodeObject, auditableItemGraphEdges?: {
42
+ id: string;
43
+ addAlias?: boolean;
44
+ aliasAnnotationObject?: IJsonLdNodeObject;
45
+ }[], options?: {
41
46
  createAttestation?: boolean;
42
- includeIdAsAlias?: boolean;
47
+ addAlias?: boolean;
43
48
  aliasAnnotationObject?: IJsonLdNodeObject;
44
49
  }, userIdentity?: string, nodeIdentity?: string): Promise<string>;
45
50
  /**
46
- * Get a specific document from an auditable item graph vertex.
47
- * @param auditableItemGraphId The auditable item graph vertex id to get the document from.
48
- * @param identifier The identifier of the document to get.
51
+ * Update a document as an auditable item graph vertex and add its content to blob storage.
52
+ * If the blob data is different a new revision will be created.
53
+ * For any other changes the current revision will be updated.
54
+ * @param auditableItemGraphDocumentId The auditable item graph vertex id which contains the document.
55
+ * @param blob The data to update the document with.
56
+ * @param annotationObject Additional information to associate with the document.
57
+ * @param auditableItemGraphEdges The auditable item graph vertices to connect the document to, if undefined retains current connections.
58
+ * @param userIdentity The identity to perform the auditable item graph operation with.
59
+ * @param nodeIdentity The node identity to use for vault operations.
60
+ * @returns Nothing.
61
+ */
62
+ update(auditableItemGraphDocumentId: string, blob?: Uint8Array, annotationObject?: IJsonLdNodeObject, auditableItemGraphEdges?: {
63
+ id: string;
64
+ addAlias?: boolean;
65
+ aliasAnnotationObject?: IJsonLdNodeObject;
66
+ }[], userIdentity?: string, nodeIdentity?: string): Promise<void>;
67
+ /**
68
+ * Get a document using it's auditable item graph vertex id and optional revision.
69
+ * @param auditableItemGraphDocumentId The auditable item graph vertex id which contains the document.
49
70
  * @param options Additional options for the get operation.
50
71
  * @param options.includeBlobStorageMetadata Flag to include the blob storage metadata for the document, defaults to false.
51
72
  * @param options.includeBlobStorageData Flag to include the blob storage data for the document, defaults to false.
52
73
  * @param options.includeAttestation Flag to include the attestation information for the document, defaults to false.
53
74
  * @param options.includeRemoved Flag to include deleted documents, defaults to false.
54
- * @param options.maxRevisionCount Max number of revisions to return, defaults to 0.
55
- * @param revisionCursor The cursor to get the next chunk of revisions.
75
+ * @param options.extractRuleGroupId If provided will extract data from the document using the specified rule group id.
76
+ * @param options.extractMimeType By default extraction will auto detect the mime type of the document, this can be used to override the detection.
77
+ * @param cursor The cursor to get the next chunk of revisions.
78
+ * @param pageSize Page size of items to return, defaults to 1 so only most recent is returned.
56
79
  * @param userIdentity The identity to perform the auditable item graph operation with.
57
80
  * @param nodeIdentity The node identity to use for vault operations.
58
81
  * @returns The documents and revisions if requested, ordered by revision descending, cursor is set if there are more document revisions.
59
82
  */
60
- get(auditableItemGraphId: string, identifier: string, options?: {
83
+ get(auditableItemGraphDocumentId: string, options?: {
61
84
  includeBlobStorageMetadata?: boolean;
62
85
  includeBlobStorageData?: boolean;
63
86
  includeAttestation?: boolean;
64
87
  includeRemoved?: boolean;
65
- maxRevisionCount?: number;
66
- }, revisionCursor?: string, userIdentity?: string, nodeIdentity?: string): Promise<IDocument>;
88
+ extractRuleGroupId?: string;
89
+ extractMimeType?: string;
90
+ }, cursor?: string, pageSize?: number, userIdentity?: string, nodeIdentity?: string): Promise<IDocumentList>;
67
91
  /**
68
- * Remove a specific document from an auditable item graph vertex.
69
- * The documents dateDeleted will be set, but can still be queried with the includeRemoved flag.
70
- * @param auditableItemGraphId The auditable item graph vertex id to remove the document from.
71
- * @param identifier The identifier of the document to remove.
72
- * @param options Additional options for the remove operation.
73
- * @param options.removeAllRevisions Flag to remove all revisions of the document, defaults to false.
92
+ * Get a document revision using it's auditable item graph vertex id.
93
+ * @param auditableItemGraphDocumentId The auditable item graph vertex id which contains the document.
94
+ * @param revision The revision id for the document.
95
+ * @param options Additional options for the get operation.
96
+ * @param options.includeBlobStorageMetadata Flag to include the blob storage metadata for the document, defaults to false.
97
+ * @param options.includeBlobStorageData Flag to include the blob storage data for the document, defaults to false.
98
+ * @param options.includeAttestation Flag to include the attestation information for the document, defaults to false.
99
+ * @param options.extractRuleGroupId If provided will extract data from the document using the specified rule group id.
100
+ * @param options.extractMimeType By default extraction will auto detect the mime type of the document, this can be used to override the detection.
101
+ * @param userIdentity The identity to perform the auditable item graph operation with.
102
+ * @param nodeIdentity The node identity to use for vault operations.
103
+ * @returns The documents and revisions if requested, ordered by revision descending, cursor is set if there are more document revisions.
104
+ */
105
+ getRevision(auditableItemGraphDocumentId: string, revision: number, options?: {
106
+ includeBlobStorageMetadata?: boolean;
107
+ includeBlobStorageData?: boolean;
108
+ includeAttestation?: boolean;
109
+ extractRuleGroupId?: string;
110
+ extractMimeType?: string;
111
+ }, userIdentity?: string, nodeIdentity?: string): Promise<IDocument>;
112
+ /**
113
+ * Remove an auditable item graph vertex using it's id.
114
+ * The document dateDeleted will be set, but can still be queried with the includeRemoved flag.
115
+ * @param auditableItemGraphDocumentId The auditable item graph vertex id which contains the document.
116
+ * @param revision The revision of the document to remove.
74
117
  * @param userIdentity The identity to perform the auditable item graph operation with.
75
118
  * @param nodeIdentity The node identity to use for vault operations.
76
119
  * @returns Nothing.
77
120
  */
78
- remove(auditableItemGraphId: string, identifier: string, options?: {
79
- removeAllRevisions?: boolean;
80
- }, userIdentity?: string, nodeIdentity?: string): Promise<void>;
121
+ removeRevision(auditableItemGraphDocumentId: string, revision: number, userIdentity?: string, nodeIdentity?: string): Promise<void>;
81
122
  /**
82
- * Query an auditable item graph vertex for documents.
83
- * @param auditableItemGraphId The auditable item graph vertex to get the documents from.
84
- * @param documentCodes The document codes to query for, if undefined gets all document codes.
85
- * @param options Additional options for the query operation.
86
- * @param options.includeMostRecentRevisions Include the most recent 5 revisions, use the individual get to retrieve more.
87
- * @param options.includeRemoved Flag to include deleted documents, defaults to false.
123
+ * Find all the document with a specific id.
124
+ * @param documentId The document id to find in the graph.
88
125
  * @param cursor The cursor to get the next chunk of documents.
126
+ * @param pageSize The page size to get the next chunk of documents.
89
127
  * @param userIdentity The identity to perform the auditable item graph operation with.
90
128
  * @param nodeIdentity The node identity to use for vault operations.
91
- * @returns The most recent revisions of each document, cursor is set if there are more documents.
129
+ * @returns The graph vertices that contain documents referencing the specified document id.
92
130
  */
93
- query(auditableItemGraphId: string, documentCodes?: UneceDocumentCodes[], options?: {
94
- includeMostRecentRevisions?: boolean;
95
- includeRemoved?: boolean;
96
- }, cursor?: string, userIdentity?: string, nodeIdentity?: string): Promise<IDocumentList>;
131
+ query(documentId: string, cursor?: string, pageSize?: number, userIdentity?: string, nodeIdentity?: string): Promise<IAuditableItemGraphVertexList>;
97
132
  /**
98
133
  * Create an attestation for the document.
99
134
  * @param document The document to create the attestation for.
@@ -18,6 +18,11 @@ export interface IDocumentManagementServiceConstructorOptions {
18
18
  * @default attestation
19
19
  */
20
20
  attestationComponentType?: string;
21
+ /**
22
+ * The type of the data processing component.
23
+ * @default data-processing
24
+ */
25
+ dataProcessingComponentType?: string;
21
26
  /**
22
27
  * The configuration for the service.
23
28
  */
package/docs/changelog.md CHANGED
@@ -1,5 +1,200 @@
1
1
  # @twin.org/document-management-service - Changelog
2
2
 
3
+ ## 0.0.1 (2025-07-09)
4
+
5
+
6
+ ### Features
7
+
8
+ * release to production ([a009526](https://github.com/twinfoundation/document-management/commit/a009526032a0ee6e6b74f476a01fbe5f4c7fd4da))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/document-management-models bumped from ^0.0.0 to ^0.0.1
16
+
17
+ ## [0.0.1-next.20](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.19...document-management-service-v0.0.1-next.20) (2025-06-20)
18
+
19
+
20
+ ### Features
21
+
22
+ * document get can perform extraction ([#6](https://github.com/twinfoundation/document-management/issues/6)) ([5ce6d37](https://github.com/twinfoundation/document-management/commit/5ce6d37432ad271ca5783f422846f4be98ec2215))
23
+ * get document revision ([080eddc](https://github.com/twinfoundation/document-management/commit/080eddcc024c622dda6bb36f60f5fa80a86cf5bb))
24
+ * populate dateDeleted from aig resource object ([ce91cf1](https://github.com/twinfoundation/document-management/commit/ce91cf1385c4370ec6924435349213abf776f3e5))
25
+ * store document as a vertex ([#2](https://github.com/twinfoundation/document-management/issues/2)) ([7febedc](https://github.com/twinfoundation/document-management/commit/7febedc3fb31de9c19565d6326341046834f2c74))
26
+ * update blob storage component ([63fe802](https://github.com/twinfoundation/document-management/commit/63fe8023bdae76631e324e6fee753c7e9243acfe))
27
+ * update dependencies ([b051009](https://github.com/twinfoundation/document-management/commit/b051009ae27a44c38a73ebdb0f05ebea1c8dae0e))
28
+ * update dependencies ([f9d8641](https://github.com/twinfoundation/document-management/commit/f9d86417dba24027699225ec7473296e361dcb00))
29
+ * use standard list json ld types ([20ea04b](https://github.com/twinfoundation/document-management/commit/20ea04b05fd4bc4fcedce8f66958942c3c2fa303))
30
+
31
+
32
+ ### Bug Fixes
33
+
34
+ * 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))
35
+ * query params force coercion ([d667d0f](https://github.com/twinfoundation/document-management/commit/d667d0f195accca2887a5ca732e9790063763996))
36
+
37
+
38
+ ### Dependencies
39
+
40
+ * The following workspace dependencies were updated
41
+ * dependencies
42
+ * @twin.org/document-management-models bumped from 0.0.1-next.19 to 0.0.1-next.20
43
+
44
+ ## [0.0.1-next.19](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.18...document-management-service-v0.0.1-next.19) (2025-06-20)
45
+
46
+
47
+ ### Bug Fixes
48
+
49
+ * query params force coercion ([d667d0f](https://github.com/twinfoundation/document-management/commit/d667d0f195accca2887a5ca732e9790063763996))
50
+
51
+
52
+ ### Dependencies
53
+
54
+ * The following workspace dependencies were updated
55
+ * dependencies
56
+ * @twin.org/document-management-models bumped from 0.0.1-next.18 to 0.0.1-next.19
57
+
58
+ ## [0.0.1-next.18](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.17...document-management-service-v0.0.1-next.18) (2025-06-18)
59
+
60
+
61
+ ### Features
62
+
63
+ * update blob storage component ([63fe802](https://github.com/twinfoundation/document-management/commit/63fe8023bdae76631e324e6fee753c7e9243acfe))
64
+
65
+
66
+ ### Dependencies
67
+
68
+ * The following workspace dependencies were updated
69
+ * dependencies
70
+ * @twin.org/document-management-models bumped from 0.0.1-next.17 to 0.0.1-next.18
71
+
72
+ ## [0.0.1-next.17](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.16...document-management-service-v0.0.1-next.17) (2025-06-12)
73
+
74
+
75
+ ### Features
76
+
77
+ * update dependencies ([f9d8641](https://github.com/twinfoundation/document-management/commit/f9d86417dba24027699225ec7473296e361dcb00))
78
+
79
+
80
+ ### Dependencies
81
+
82
+ * The following workspace dependencies were updated
83
+ * dependencies
84
+ * @twin.org/document-management-models bumped from 0.0.1-next.16 to 0.0.1-next.17
85
+
86
+ ## [0.0.1-next.16](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.15...document-management-service-v0.0.1-next.16) (2025-06-03)
87
+
88
+
89
+ ### Miscellaneous Chores
90
+
91
+ * **document-management-service:** Synchronize repo versions
92
+
93
+
94
+ ### Dependencies
95
+
96
+ * The following workspace dependencies were updated
97
+ * dependencies
98
+ * @twin.org/document-management-models bumped from 0.0.1-next.15 to 0.0.1-next.16
99
+
100
+ ## [0.0.1-next.15](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.14...document-management-service-v0.0.1-next.15) (2025-05-28)
101
+
102
+
103
+ ### Miscellaneous Chores
104
+
105
+ * **document-management-service:** Synchronize repo versions
106
+
107
+
108
+ ### Dependencies
109
+
110
+ * The following workspace dependencies were updated
111
+ * dependencies
112
+ * @twin.org/document-management-models bumped from 0.0.1-next.14 to 0.0.1-next.15
113
+
114
+ ## [0.0.1-next.14](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.13...document-management-service-v0.0.1-next.14) (2025-05-08)
115
+
116
+
117
+ ### Features
118
+
119
+ * use standard list json ld types ([20ea04b](https://github.com/twinfoundation/document-management/commit/20ea04b05fd4bc4fcedce8f66958942c3c2fa303))
120
+
121
+
122
+ ### Dependencies
123
+
124
+ * The following workspace dependencies were updated
125
+ * dependencies
126
+ * @twin.org/document-management-models bumped from 0.0.1-next.13 to 0.0.1-next.14
127
+
128
+ ## [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)
129
+
130
+
131
+ ### Features
132
+
133
+ * populate dateDeleted from aig resource object ([ce91cf1](https://github.com/twinfoundation/document-management/commit/ce91cf1385c4370ec6924435349213abf776f3e5))
134
+
135
+
136
+ ### Dependencies
137
+
138
+ * The following workspace dependencies were updated
139
+ * dependencies
140
+ * @twin.org/document-management-models bumped from 0.0.1-next.12 to 0.0.1-next.13
141
+
142
+ ## [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)
143
+
144
+
145
+ ### Features
146
+
147
+ * get document revision ([080eddc](https://github.com/twinfoundation/document-management/commit/080eddcc024c622dda6bb36f60f5fa80a86cf5bb))
148
+
149
+
150
+ ### Dependencies
151
+
152
+ * The following workspace dependencies were updated
153
+ * dependencies
154
+ * @twin.org/document-management-models bumped from 0.0.1-next.11 to 0.0.1-next.12
155
+
156
+ ## [0.0.1-next.11](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.10...document-management-service-v0.0.1-next.11) (2025-04-28)
157
+
158
+
159
+ ### Features
160
+
161
+ * document get can perform extraction ([#6](https://github.com/twinfoundation/document-management/issues/6)) ([5ce6d37](https://github.com/twinfoundation/document-management/commit/5ce6d37432ad271ca5783f422846f4be98ec2215))
162
+
163
+
164
+ ### Dependencies
165
+
166
+ * The following workspace dependencies were updated
167
+ * dependencies
168
+ * @twin.org/document-management-models bumped from 0.0.1-next.10 to 0.0.1-next.11
169
+
170
+ ## [0.0.1-next.10](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.9...document-management-service-v0.0.1-next.10) (2025-04-25)
171
+
172
+
173
+ ### Bug Fixes
174
+
175
+ * 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))
176
+
177
+
178
+ ### Dependencies
179
+
180
+ * The following workspace dependencies were updated
181
+ * dependencies
182
+ * @twin.org/document-management-models bumped from 0.0.1-next.9 to 0.0.1-next.10
183
+
184
+ ## [0.0.1-next.9](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.8...document-management-service-v0.0.1-next.9) (2025-04-17)
185
+
186
+
187
+ ### Features
188
+
189
+ * store document as a vertex ([#2](https://github.com/twinfoundation/document-management/issues/2)) ([7febedc](https://github.com/twinfoundation/document-management/commit/7febedc3fb31de9c19565d6326341046834f2c74))
190
+
191
+
192
+ ### Dependencies
193
+
194
+ * The following workspace dependencies were updated
195
+ * dependencies
196
+ * @twin.org/document-management-models bumped from 0.0.1-next.8 to 0.0.1-next.9
197
+
3
198
  ## [0.0.1-next.8](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.1-next.7...document-management-service-v0.0.1-next.8) (2025-03-28)
4
199
 
5
200