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

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.
@@ -277,7 +277,7 @@ class Engine extends engineCore.EngineCore {
277
277
  /**
278
278
  * Runtime name for the class.
279
279
  */
280
- CLASS_NAME = "Engine";
280
+ static CLASS_NAME = "Engine";
281
281
  /**
282
282
  * Create a new instance of Engine.
283
283
  * @param options The options for the engine.
@@ -275,7 +275,7 @@ class Engine extends EngineCore {
275
275
  /**
276
276
  * Runtime name for the class.
277
277
  */
278
- CLASS_NAME = "Engine";
278
+ static CLASS_NAME = "Engine";
279
279
  /**
280
280
  * Create a new instance of Engine.
281
281
  * @param options The options for the engine.
@@ -8,7 +8,7 @@ export declare class Engine<C extends IEngineConfig = IEngineConfig, S extends I
8
8
  /**
9
9
  * Runtime name for the class.
10
10
  */
11
- readonly CLASS_NAME: string;
11
+ static readonly CLASS_NAME: string;
12
12
  /**
13
13
  * Create a new instance of Engine.
14
14
  * @param options The options for the engine.
package/docs/changelog.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @twin.org/engine - Changelog
2
2
 
3
+ ## [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
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **engine:** Synchronize repo versions
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.21 to 0.0.2-next.22
16
+ * @twin.org/engine-models bumped from 0.0.2-next.21 to 0.0.2-next.22
17
+ * @twin.org/engine-types bumped from 0.0.2-next.21 to 0.0.2-next.22
18
+
19
+ ## [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)
20
+
21
+
22
+ ### Features
23
+
24
+ * use peer dependencies ([69dd744](https://github.com/twinfoundation/engine/commit/69dd7449010b8e6f5f35e7fad201ad4c1cab400c))
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.20 to 0.0.2-next.21
32
+ * @twin.org/engine-models bumped from 0.0.2-next.20 to 0.0.2-next.21
33
+ * @twin.org/engine-types bumped from 0.0.2-next.20 to 0.0.2-next.21
34
+
3
35
  ## [0.0.2-next.20](https://github.com/twinfoundation/engine/compare/engine-v0.0.2-next.19...engine-v0.0.2-next.20) (2025-10-06)
4
36
 
5
37
 
@@ -44,6 +44,6 @@ The options for the engine.
44
44
 
45
45
  ### CLASS\_NAME
46
46
 
47
- > `readonly` **CLASS\_NAME**: `string`
47
+ > `readonly` `static` **CLASS\_NAME**: `string`
48
48
 
49
49
  Runtime name for the class.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/engine",
3
- "version": "0.0.2-next.20",
3
+ "version": "0.0.2-next.22",
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.20",
19
- "@twin.org/engine-models": "0.0.2-next.20",
20
- "@twin.org/engine-types": "0.0.2-next.20",
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",
21
21
  "@twin.org/entity": "next",
22
22
  "@twin.org/nameof": "next"
23
23
  },