@twin.org/engine-types 0.0.1-next.68 → 0.0.1-next.70
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 +28 -0
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -941,6 +941,7 @@ function initialiseDocumentManagementComponent(engineCore, context, instanceConf
|
|
|
941
941
|
auditableItemGraphComponentType: context.defaultTypes.auditableItemGraphComponent,
|
|
942
942
|
blobStorageComponentType: context.defaultTypes.blobStorageComponent,
|
|
943
943
|
attestationComponentType: context.defaultTypes.attestationComponent,
|
|
944
|
+
dataProcessingComponentType: context.defaultTypes.dataProcessingComponent,
|
|
944
945
|
...instanceConfig.options
|
|
945
946
|
});
|
|
946
947
|
instanceType = documentManagementService.DocumentManagementService.NAMESPACE;
|
package/dist/esm/index.mjs
CHANGED
|
@@ -939,6 +939,7 @@ function initialiseDocumentManagementComponent(engineCore, context, instanceConf
|
|
|
939
939
|
auditableItemGraphComponentType: context.defaultTypes.auditableItemGraphComponent,
|
|
940
940
|
blobStorageComponentType: context.defaultTypes.blobStorageComponent,
|
|
941
941
|
attestationComponentType: context.defaultTypes.attestationComponent,
|
|
942
|
+
dataProcessingComponentType: context.defaultTypes.dataProcessingComponent,
|
|
942
943
|
...instanceConfig.options
|
|
943
944
|
});
|
|
944
945
|
instanceType = DocumentManagementService.NAMESPACE;
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @twin.org/engine-types - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.70](https://github.com/twinfoundation/engine/compare/engine-types-v0.0.1-next.69...engine-types-v0.0.1-next.70) (2025-04-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add data processing component to doc management component ([2e4920f](https://github.com/twinfoundation/engine/commit/2e4920fb0626060dd6c570bc2bc7357fa8605ff0))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/engine-models bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
16
|
+
|
|
17
|
+
## [0.0.1-next.69](https://github.com/twinfoundation/engine/compare/engine-types-v0.0.1-next.68...engine-types-v0.0.1-next.69) (2025-04-25)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Miscellaneous Chores
|
|
21
|
+
|
|
22
|
+
* **engine-types:** Synchronize repo versions
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/engine-models bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
30
|
+
|
|
3
31
|
## [0.0.1-next.68](https://github.com/twinfoundation/engine/compare/engine-types-v0.0.1-next.67...engine-types-v0.0.1-next.68) (2025-04-17)
|
|
4
32
|
|
|
5
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/engine-types",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.70",
|
|
4
4
|
"description": "Types to use in an engine.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@twin.org/core": "next",
|
|
18
18
|
"@twin.org/crypto": "next",
|
|
19
19
|
"@twin.org/data-core": "next",
|
|
20
|
-
"@twin.org/engine-models": "0.0.1-next.
|
|
20
|
+
"@twin.org/engine-models": "0.0.1-next.70",
|
|
21
21
|
"@twin.org/entity": "next",
|
|
22
22
|
"@twin.org/modules": "next",
|
|
23
23
|
"@twin.org/nameof": "next"
|