@twin.org/engine 0.0.2-next.21 → 0.0.2-next.23

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
  # @twin.org/engine - Changelog
2
2
 
3
+ ## [0.0.2-next.23](https://github.com/twinfoundation/engine/compare/engine-v0.0.2-next.22...engine-v0.0.2-next.23) (2025-10-07)
4
+
5
+
6
+ ### Features
7
+
8
+ * override type initialisers with new registrations ([5b4ff56](https://github.com/twinfoundation/engine/commit/5b4ff561d06b6513c870a72bb20ba23c0653cfe8))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/engine-core bumped from 0.0.2-next.22 to 0.0.2-next.23
16
+ * @twin.org/engine-models bumped from 0.0.2-next.22 to 0.0.2-next.23
17
+ * @twin.org/engine-types bumped from 0.0.2-next.22 to 0.0.2-next.23
18
+
19
+ ## [0.0.2-next.22](https://github.com/twinfoundation/engine/compare/engine-v0.0.2-next.21...engine-v0.0.2-next.22) (2025-10-07)
20
+
21
+
22
+ ### Miscellaneous Chores
23
+
24
+ * **engine:** Synchronize repo versions
25
+
26
+
27
+ ### Dependencies
28
+
29
+ * The following workspace dependencies were updated
30
+ * dependencies
31
+ * @twin.org/engine-core bumped from 0.0.2-next.21 to 0.0.2-next.22
32
+ * @twin.org/engine-models bumped from 0.0.2-next.21 to 0.0.2-next.22
33
+ * @twin.org/engine-types bumped from 0.0.2-next.21 to 0.0.2-next.22
34
+
3
35
  ## [0.0.2-next.21](https://github.com/twinfoundation/engine/compare/engine-v0.0.2-next.20...engine-v0.0.2-next.21) (2025-10-07)
4
36
 
5
37
 
@@ -47,3 +47,7 @@ The options for the engine.
47
47
  > `readonly` `static` **CLASS\_NAME**: `string`
48
48
 
49
49
  Runtime name for the class.
50
+
51
+ #### Overrides
52
+
53
+ `EngineCore.CLASS_NAME`
package/locales/en.json CHANGED
@@ -1,10 +1,7 @@
1
1
  {
2
2
  "error": {
3
3
  "engineCore": {
4
- "connectorUnknownType": "Unknown connector type \"{type}\" specified for \"{connectorType}\"",
5
4
  "componentUnknownType": "Unknown component type \"{type}\" specified for \"{componentType}\"",
6
- "entityStorageCustomMissing": "Entity storage custom \"{typeCustom}\" missing for component \"{storageName}\"",
7
- "entityStorageMissing": "Entity storage configuration missing for component \"{storageName}\"",
8
5
  "bootstrapFailed": "Bootstrap failed for component \"{component}\", please check the logs for more information",
9
6
  "componentStopFailed": "Failed to stop component \"{component}\"",
10
7
  "moduleMethodFailed": "Failed to load method \"{method}\" from module \"{module}\""
@@ -21,7 +18,6 @@
21
18
  "stopping": "Engine is stopping",
22
19
  "stopped": "Engine has stopped",
23
20
  "configuring": "Configuring {element}",
24
- "configuringEntityStorage": "Configuring {element} with name \"{storageName}\" using \"{storageType}\" connector",
25
21
  "bootstrapStarted": "Bootstrap started",
26
22
  "bootstrapComplete": "Bootstrap complete",
27
23
  "bootstrapping": "Bootstrap {element}",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/engine",
3
- "version": "0.0.2-next.21",
3
+ "version": "0.0.2-next.23",
4
4
  "description": "Engine implementation.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,9 +15,9 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@twin.org/core": "next",
18
- "@twin.org/engine-core": "0.0.2-next.21",
19
- "@twin.org/engine-models": "0.0.2-next.21",
20
- "@twin.org/engine-types": "0.0.2-next.21",
18
+ "@twin.org/engine-core": "0.0.2-next.23",
19
+ "@twin.org/engine-models": "0.0.2-next.23",
20
+ "@twin.org/engine-types": "0.0.2-next.23",
21
21
  "@twin.org/entity": "next",
22
22
  "@twin.org/nameof": "next"
23
23
  },