@twin.org/document-management-service 0.0.1 → 0.0.2-next.2

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.
@@ -593,10 +593,6 @@ async function documentManagementQuery(httpRequestContext, componentName, reques
593
593
  * Service for performing document management operations.
594
594
  */
595
595
  class DocumentManagementService {
596
- /**
597
- * The namespace supported by the document management service.
598
- */
599
- static NAMESPACE = "documents";
600
596
  /**
601
597
  * Runtime name for the class.
602
598
  */
@@ -591,10 +591,6 @@ async function documentManagementQuery(httpRequestContext, componentName, reques
591
591
  * Service for performing document management operations.
592
592
  */
593
593
  class DocumentManagementService {
594
- /**
595
- * The namespace supported by the document management service.
596
- */
597
- static NAMESPACE = "documents";
598
594
  /**
599
595
  * Runtime name for the class.
600
596
  */
@@ -7,10 +7,6 @@ import type { IDocumentManagementServiceConstructorOptions } from "./models/IDoc
7
7
  * Service for performing document management operations.
8
8
  */
9
9
  export declare class DocumentManagementService implements IDocumentManagementComponent {
10
- /**
11
- * The namespace supported by the document management service.
12
- */
13
- static readonly NAMESPACE: string;
14
10
  /**
15
11
  * Runtime name for the class.
16
12
  */
package/docs/changelog.md CHANGED
@@ -1,5 +1,49 @@
1
1
  # @twin.org/document-management-service - Changelog
2
2
 
3
+ ## [0.0.2-next.2](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.2-next.1...document-management-service-v0.0.2-next.2) (2025-08-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * eslint migration to flat config ([98635aa](https://github.com/twinfoundation/document-management/commit/98635aa24ebafba265e989e461fe98104f683191))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/document-management-models bumped from 0.0.2-next.1 to 0.0.2-next.2
16
+
17
+ ## [0.0.2-next.1](https://github.com/twinfoundation/document-management/compare/document-management-service-v0.0.2-next.0...document-management-service-v0.0.2-next.1) (2025-08-21)
18
+
19
+
20
+ ### Features
21
+
22
+ * add external unece type reference ([e8311ae](https://github.com/twinfoundation/document-management/commit/e8311ae35f36d83783ce24dfdd3f38142d7f4abf))
23
+ * document get can perform extraction ([#6](https://github.com/twinfoundation/document-management/issues/6)) ([5ce6d37](https://github.com/twinfoundation/document-management/commit/5ce6d37432ad271ca5783f422846f4be98ec2215))
24
+ * get document revision ([080eddc](https://github.com/twinfoundation/document-management/commit/080eddcc024c622dda6bb36f60f5fa80a86cf5bb))
25
+ * populate dateDeleted from aig resource object ([ce91cf1](https://github.com/twinfoundation/document-management/commit/ce91cf1385c4370ec6924435349213abf776f3e5))
26
+ * remove unused namespace ([602259d](https://github.com/twinfoundation/document-management/commit/602259d6e9aeb8006dff45bebd94157e3f0a204b))
27
+ * store document as a vertex ([#2](https://github.com/twinfoundation/document-management/issues/2)) ([7febedc](https://github.com/twinfoundation/document-management/commit/7febedc3fb31de9c19565d6326341046834f2c74))
28
+ * update blob storage component ([63fe802](https://github.com/twinfoundation/document-management/commit/63fe8023bdae76631e324e6fee753c7e9243acfe))
29
+ * update dependencies ([b051009](https://github.com/twinfoundation/document-management/commit/b051009ae27a44c38a73ebdb0f05ebea1c8dae0e))
30
+ * update dependencies ([f9d8641](https://github.com/twinfoundation/document-management/commit/f9d86417dba24027699225ec7473296e361dcb00))
31
+ * update framework core ([f991a59](https://github.com/twinfoundation/document-management/commit/f991a59d25ec228bcdd7a5b6bd55578985b55a84))
32
+ * use standard list json ld types ([20ea04b](https://github.com/twinfoundation/document-management/commit/20ea04b05fd4bc4fcedce8f66958942c3c2fa303))
33
+
34
+
35
+ ### Bug Fixes
36
+
37
+ * 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))
38
+ * query params force coercion ([d667d0f](https://github.com/twinfoundation/document-management/commit/d667d0f195accca2887a5ca732e9790063763996))
39
+
40
+
41
+ ### Dependencies
42
+
43
+ * The following workspace dependencies were updated
44
+ * dependencies
45
+ * @twin.org/document-management-models bumped from 0.0.2-next.0 to 0.0.2-next.1
46
+
3
47
  ## 0.0.1 (2025-07-09)
4
48
 
5
49