@twin.org/engine 0.0.2-next.22 → 0.0.2-next.24

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.24](https://github.com/twinfoundation/engine/compare/engine-v0.0.2-next.23...engine-v0.0.2-next.24) (2025-10-08)
4
+
5
+
6
+ ### Features
7
+
8
+ * maintain isDefault flag for registered instances ([2ac5bee](https://github.com/twinfoundation/engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
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.23 to 0.0.2-next.24
16
+ * @twin.org/engine-models bumped from 0.0.2-next.23 to 0.0.2-next.24
17
+ * @twin.org/engine-types bumped from 0.0.2-next.23 to 0.0.2-next.24
18
+
19
+ ## [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)
20
+
21
+
22
+ ### Features
23
+
24
+ * override type initialisers with new registrations ([5b4ff56](https://github.com/twinfoundation/engine/commit/5b4ff561d06b6513c870a72bb20ba23c0653cfe8))
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.22 to 0.0.2-next.23
32
+ * @twin.org/engine-models bumped from 0.0.2-next.22 to 0.0.2-next.23
33
+ * @twin.org/engine-types bumped from 0.0.2-next.22 to 0.0.2-next.23
34
+
3
35
  ## [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)
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,43 +1 @@
1
- {
2
- "error": {
3
- "engineCore": {
4
- "connectorUnknownType": "Unknown connector type \"{type}\" specified for \"{connectorType}\"",
5
- "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
- "bootstrapFailed": "Bootstrap failed for component \"{component}\", please check the logs for more information",
9
- "componentStopFailed": "Failed to stop component \"{component}\"",
10
- "moduleMethodFailed": "Failed to load method \"{method}\" from module \"{module}\""
11
- },
12
- "fileStateStorage": {
13
- "failedLoading": "Failed to load file state storage from \"{filename}\"",
14
- "failedSaving": "Failed to save file state storage to \"{filename}\""
15
- }
16
- },
17
- "engineCore": {
18
- "debuggingEnabled": "Debugging is enabled",
19
- "starting": "Engine is starting",
20
- "started": "Engine has started",
21
- "stopping": "Engine is stopping",
22
- "stopped": "Engine has stopped",
23
- "configuring": "Configuring {element}",
24
- "configuringEntityStorage": "Configuring {element} with name \"{storageName}\" using \"{storageType}\" connector",
25
- "bootstrapStarted": "Bootstrap started",
26
- "bootstrapComplete": "Bootstrap complete",
27
- "bootstrapping": "Bootstrap {element}",
28
- "componentsStarting": "Components are starting",
29
- "componentsComplete": "Components have started",
30
- "componentsStopping": "Components are stopping",
31
- "componentsStopped": "Components have stopped",
32
- "componentStarting": "Starting {element}",
33
- "componentStopping": "Stopping {element}"
34
- },
35
- "fileStateStorage": {
36
- "loading": "Loading state from file storage with filename \"{filename}\"",
37
- "saving": "Saving state to file storage with filename \"{filename}\""
38
- },
39
- "memoryStateStorage": {
40
- "loading": "Loading state from memory",
41
- "saving": "Saving state to memory"
42
- }
43
- }
1
+ {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/engine",
3
- "version": "0.0.2-next.22",
3
+ "version": "0.0.2-next.24",
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.22",
19
- "@twin.org/engine-models": "0.0.2-next.22",
20
- "@twin.org/engine-types": "0.0.2-next.22",
18
+ "@twin.org/engine-core": "0.0.2-next.24",
19
+ "@twin.org/engine-models": "0.0.2-next.24",
20
+ "@twin.org/engine-types": "0.0.2-next.24",
21
21
  "@twin.org/entity": "next",
22
22
  "@twin.org/nameof": "next"
23
23
  },