@twin.org/engine-models 0.0.3-next.32 → 0.0.3-next.34

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.
@@ -1 +1 @@
1
- {"version":3,"file":"IEngineCore.js","sourceRoot":"","sources":["../../../src/models/IEngineCore.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IContextIds } from \"@twin.org/context\";\nimport type { IError } from \"@twin.org/core\";\nimport type { IEngineCoreConfig } from \"./config/IEngineCoreConfig.js\";\nimport type { IEngineCoreTypeConfig } from \"./config/IEngineCoreTypeConfig.js\";\nimport type { IEngineCoreClone } from \"./IEngineCoreClone.js\";\nimport type { IEngineState } from \"./IEngineState.js\";\n\n/**\n * Interface describing the engine core methods.\n */\nexport interface IEngineCore<\n\tC extends IEngineCoreConfig = IEngineCoreConfig,\n\tS extends IEngineState = IEngineState\n> {\n\t/**\n\t * Add a type initialiser.\n\t * @param type The type to add the initialiser for.\n\t * @param module The name of the module which contains the initialiser method.\n\t * @param method The name of the method to call.\n\t */\n\taddTypeInitialiser(type: string, module: string, method: string): void;\n\n\t/**\n\t * Get the type config for a specific type.\n\t * @param type The type to get the config for.\n\t * @returns The type config or undefined if not found.\n\t */\n\tgetTypeConfig(type: string): IEngineCoreTypeConfig[] | undefined;\n\n\t/**\n\t * Add a context ID key to the engine.\n\t * @param key The context ID key.\n\t * @param componentFeatures The component features for the context ID handler.\n\t */\n\taddContextIdKey(key: string, componentFeatures: string[]): void;\n\n\t/**\n\t * Get the context ID keys for the engine.\n\t * @returns The context IDs keys.\n\t */\n\tgetContextIdKeys(): string[];\n\n\t/**\n\t * Add a context ID to the engine.\n\t * @param key The context ID key.\n\t * @param value The context ID value.\n\t */\n\taddContextId(key: string, value: string): void;\n\n\t/**\n\t * Get the context IDs for the engine.\n\t * @returns The context IDs or undefined if none are set.\n\t */\n\tgetContextIds(): IContextIds | undefined;\n\n\t/**\n\t * Start the engine core.\n\t * @param skipComponentStart Should the component start be skipped.\n\t * @returns Nothing.\n\t */\n\tstart(skipComponentStart?: boolean): Promise<void>;\n\n\t/**\n\t * Stop the engine core.\n\t * @returns Nothing.\n\t */\n\tstop(): Promise<void>;\n\n\t/**\n\t * Is the engine started.\n\t * @returns True if the engine is started.\n\t */\n\tisStarted(): boolean;\n\n\t/**\n\t * Is this the primary engine instance.\n\t * @returns True if the engine is the primary instance.\n\t */\n\tisPrimary(): boolean;\n\n\t/**\n\t * Is this engine instance a clone.\n\t * @returns True if the engine instance is a clone.\n\t */\n\tisClone(): boolean;\n\n\t/**\n\t * Log info.\n\t * @param message The message to log.\n\t */\n\tlogInfo(message: string): void;\n\n\t/**\n\t * Log error.\n\t * @param error The error to log.\n\t */\n\tlogError(error: IError): void;\n\n\t/**\n\t * Get the config for the engine.\n\t * @returns The config for the engine.\n\t */\n\tgetConfig(): C;\n\n\t/**\n\t * Get the state of the engine.\n\t * @returns The state of the engine.\n\t */\n\tgetState(): S;\n\n\t/**\n\t * Set the state to dirty so it gets saved.\n\t */\n\tsetStateDirty(): void;\n\n\t/**\n\t * Get all the registered instances.\n\t * @returns The registered instances.\n\t */\n\tgetRegisteredInstances(): {\n\t\t[name: string]: {\n\t\t\ttype: string;\n\t\t\tfeatures?: string[];\n\t\t}[];\n\t};\n\n\t/**\n\t * Get the registered instance type for the component/connector.\n\t * @param componentConnectorType The type of the component/connector.\n\t * @param features The requested features of the component, if not specified the default entry will be retrieved.\n\t * @returns The instance type matching the criteria if one is registered.\n\t * @throws If a matching instance was not found.\n\t */\n\tgetRegisteredInstanceType(componentConnectorType: string, features?: string[]): string;\n\n\t/**\n\t * Get the registered instance type for the component/connector.\n\t * @param componentConnectorType The type of the component/connector.\n\t * @param features The requested features of the component, if not specified the default entry will be retrieved.\n\t * @returns The instance type matching the criteria if one is registered.\n\t */\n\tgetRegisteredInstanceTypeOptional(\n\t\tcomponentConnectorType: string,\n\t\tfeatures?: string[]\n\t): string | undefined;\n\n\t/**\n\t * Get the data required to create a clone of the engine.\n\t * @returns The clone data.\n\t */\n\tgetCloneData(): IEngineCoreClone<C, S>;\n\n\t/**\n\t * Populate the engine from the clone data.\n\t * @param cloneData The clone data to populate from.\n\t * @param contextIds The context IDs to use for the clone.\n\t * @param silent Should the clone be silent.\n\t */\n\tpopulateClone(\n\t\tcloneData: IEngineCoreClone<C, S>,\n\t\tcontextIds?: IContextIds,\n\t\tsilent?: boolean\n\t): void;\n}\n"]}
1
+ {"version":3,"file":"IEngineCore.js","sourceRoot":"","sources":["../../../src/models/IEngineCore.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IContextIds } from \"@twin.org/context\";\nimport type { IComponent, IError } from \"@twin.org/core\";\nimport type { IEngineCoreConfig } from \"./config/IEngineCoreConfig.js\";\nimport type { IEngineCoreTypeConfig } from \"./config/IEngineCoreTypeConfig.js\";\nimport type { IEngineCoreClone } from \"./IEngineCoreClone.js\";\nimport type { IEngineState } from \"./IEngineState.js\";\n\n/**\n * Interface describing the engine core methods.\n */\nexport interface IEngineCore<\n\tC extends IEngineCoreConfig = IEngineCoreConfig,\n\tS extends IEngineState = IEngineState\n> {\n\t/**\n\t * Add a type initialiser.\n\t * @param type The type to add the initialiser for.\n\t * @param module The name of the module which contains the initialiser method.\n\t * @param method The name of the method to call.\n\t */\n\taddTypeInitialiser(type: string, module: string, method: string): void;\n\n\t/**\n\t * Get the type config for a specific type.\n\t * @param type The type to get the config for.\n\t * @returns The type config or undefined if not found.\n\t */\n\tgetTypeConfig(type: string): IEngineCoreTypeConfig[] | undefined;\n\n\t/**\n\t * Add a context ID key to the engine.\n\t * @param key The context ID key.\n\t * @param componentFeatures The component features for the context ID handler.\n\t */\n\taddContextIdKey(key: string, componentFeatures: string[]): void;\n\n\t/**\n\t * Get the context ID keys for the engine.\n\t * @returns The context IDs keys.\n\t */\n\tgetContextIdKeys(): string[];\n\n\t/**\n\t * Add a context ID to the engine.\n\t * @param key The context ID key.\n\t * @param value The context ID value.\n\t */\n\taddContextId(key: string, value: string): void;\n\n\t/**\n\t * Get the context IDs for the engine.\n\t * @returns The context IDs or undefined if none are set.\n\t */\n\tgetContextIds(): IContextIds | undefined;\n\n\t/**\n\t * Start the engine core.\n\t * @param skipComponentStart Should the component start be skipped.\n\t * @returns Nothing.\n\t */\n\tstart(skipComponentStart?: boolean): Promise<void>;\n\n\t/**\n\t * Stop the engine core.\n\t * @returns Nothing.\n\t */\n\tstop(): Promise<void>;\n\n\t/**\n\t * Is the engine started.\n\t * @returns True if the engine is started.\n\t */\n\tisStarted(): boolean;\n\n\t/**\n\t * Is this the primary engine instance.\n\t * @returns True if the engine is the primary instance.\n\t */\n\tisPrimary(): boolean;\n\n\t/**\n\t * Is this engine instance a clone.\n\t * @returns True if the engine instance is a clone.\n\t */\n\tisClone(): boolean;\n\n\t/**\n\t * Log info.\n\t * @param message The message to log.\n\t */\n\tlogInfo(message: string): void;\n\n\t/**\n\t * Log error.\n\t * @param error The error to log.\n\t */\n\tlogError(error: IError): void;\n\n\t/**\n\t * Get the config for the engine.\n\t * @returns The config for the engine.\n\t */\n\tgetConfig(): C;\n\n\t/**\n\t * Get the state of the engine.\n\t * @returns The state of the engine.\n\t */\n\tgetState(): S;\n\n\t/**\n\t * Set the state to dirty so it gets saved.\n\t */\n\tsetStateDirty(): void;\n\n\t/**\n\t * Get all the registered instances.\n\t * @returns The registered instances.\n\t */\n\tgetRegisteredInstances(): {\n\t\t[name: string]: {\n\t\t\ttype: string;\n\t\t\tfeatures?: string[];\n\t\t}[];\n\t};\n\n\t/**\n\t * Get the registered instance type for the component/connector.\n\t * @param componentConnectorType The type of the component/connector.\n\t * @param features The requested features of the component, if not specified the default entry will be retrieved.\n\t * @returns The instance type matching the criteria if one is registered.\n\t * @throws If a matching instance was not found.\n\t */\n\tgetRegisteredInstanceType(componentConnectorType: string, features?: string[]): string;\n\n\t/**\n\t * Get the registered instance type for the component/connector.\n\t * @param componentConnectorType The type of the component/connector.\n\t * @param features The requested features of the component, if not specified the default entry will be retrieved.\n\t * @returns The instance type matching the criteria if one is registered.\n\t */\n\tgetRegisteredInstanceTypeOptional(\n\t\tcomponentConnectorType: string,\n\t\tfeatures?: string[]\n\t): string | undefined;\n\n\t/**\n\t * Get the registered components.\n\t * @returns The registered components.\n\t */\n\tgetRegisteredComponents(): Promise<\n\t\t{\n\t\t\tinstanceType: string;\n\t\t\tcomponent: IComponent;\n\t\t\tinitialised: boolean;\n\t\t}[]\n\t>;\n\n\t/**\n\t * Add a registered component to the engine.\n\t * @param instanceType The instance type to register the component under.\n\t * @param component The component to register.\n\t * @returns Nothing.\n\t */\n\taddRegisteredComponent(instanceType: string, component: IComponent): Promise<void>;\n\n\t/**\n\t * Get the data required to create a clone of the engine.\n\t * @returns The clone data.\n\t */\n\tgetCloneData(): IEngineCoreClone<C, S>;\n\n\t/**\n\t * Populate the engine from the clone data.\n\t * @param cloneData The clone data to populate from.\n\t * @param contextIds The context IDs to use for the clone.\n\t * @param silent Should the clone be silent.\n\t */\n\tpopulateClone(\n\t\tcloneData: IEngineCoreClone<C, S>,\n\t\tcontextIds?: IContextIds,\n\t\tsilent?: boolean\n\t): void;\n}\n"]}
@@ -1,5 +1,5 @@
1
1
  import type { IContextIds } from "@twin.org/context";
2
- import type { IError } from "@twin.org/core";
2
+ import type { IComponent, IError } from "@twin.org/core";
3
3
  import type { IEngineCoreConfig } from "./config/IEngineCoreConfig.js";
4
4
  import type { IEngineCoreTypeConfig } from "./config/IEngineCoreTypeConfig.js";
5
5
  import type { IEngineCoreClone } from "./IEngineCoreClone.js";
@@ -118,6 +118,22 @@ export interface IEngineCore<C extends IEngineCoreConfig = IEngineCoreConfig, S
118
118
  * @returns The instance type matching the criteria if one is registered.
119
119
  */
120
120
  getRegisteredInstanceTypeOptional(componentConnectorType: string, features?: string[]): string | undefined;
121
+ /**
122
+ * Get the registered components.
123
+ * @returns The registered components.
124
+ */
125
+ getRegisteredComponents(): Promise<{
126
+ instanceType: string;
127
+ component: IComponent;
128
+ initialised: boolean;
129
+ }[]>;
130
+ /**
131
+ * Add a registered component to the engine.
132
+ * @param instanceType The instance type to register the component under.
133
+ * @param component The component to register.
134
+ * @returns Nothing.
135
+ */
136
+ addRegisteredComponent(instanceType: string, component: IComponent): Promise<void>;
121
137
  /**
122
138
  * Get the data required to create a clone of the engine.
123
139
  * @returns The clone data.
package/docs/changelog.md CHANGED
@@ -1,627 +1,641 @@
1
1
  # Changelog
2
2
 
3
- ## [0.0.3-next.32](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.31...engine-models-v0.0.3-next.32) (2026-04-24)
3
+ ## [0.0.3-next.34](https://github.com/twinfoundation/twin-engine/compare/engine-models-v0.0.3-next.33...engine-models-v0.0.3-next.34) (2026-05-05)
4
4
 
5
5
 
6
6
  ### Miscellaneous Chores
7
7
 
8
8
  * **engine-models:** Synchronize repo versions
9
9
 
10
- ## [0.0.3-next.31](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.30...engine-models-v0.0.3-next.31) (2026-04-22)
10
+ ## [0.0.3-next.33](https://github.com/twinfoundation/twin-engine/compare/engine-models-v0.0.3-next.32...engine-models-v0.0.3-next.33) (2026-05-05)
11
+
12
+
13
+ ### Features
14
+
15
+ * add registered component methods ([a9a2899](https://github.com/twinfoundation/twin-engine/commit/a9a2899f266baa48e63bfbda958877a4f941602d))
16
+
17
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.31...engine-models-v0.0.3-next.32) (2026-04-24)
18
+
19
+
20
+ ### Miscellaneous Chores
21
+
22
+ * **engine-models:** Synchronize repo versions
23
+
24
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.30...engine-models-v0.0.3-next.31) (2026-04-22)
11
25
 
12
26
 
13
27
  ### Miscellaneous Chores
14
28
 
15
29
  * **engine-models:** Synchronize repo versions
16
30
 
17
- ## [0.0.3-next.30](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.29...engine-models-v0.0.3-next.30) (2026-04-16)
31
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.29...engine-models-v0.0.3-next.30) (2026-04-16)
18
32
 
19
33
 
20
34
  ### Miscellaneous Chores
21
35
 
22
36
  * **engine-models:** Synchronize repo versions
23
37
 
24
- ## [0.0.3-next.29](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.28...engine-models-v0.0.3-next.29) (2026-04-14)
38
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.28...engine-models-v0.0.3-next.29) (2026-04-14)
25
39
 
26
40
 
27
41
  ### Miscellaneous Chores
28
42
 
29
43
  * **engine-models:** Synchronize repo versions
30
44
 
31
- ## [0.0.3-next.28](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.27...engine-models-v0.0.3-next.28) (2026-04-10)
45
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.27...engine-models-v0.0.3-next.28) (2026-04-10)
32
46
 
33
47
 
34
48
  ### Miscellaneous Chores
35
49
 
36
50
  * **engine-models:** Synchronize repo versions
37
51
 
38
- ## [0.0.3-next.27](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.26...engine-models-v0.0.3-next.27) (2026-03-20)
52
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.26...engine-models-v0.0.3-next.27) (2026-03-20)
39
53
 
40
54
 
41
55
  ### Features
42
56
 
43
- * update dependencies ([e6ebe42](https://github.com/twinfoundation/engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
57
+ * update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
44
58
 
45
- ## [0.0.3-next.26](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.25...engine-models-v0.0.3-next.26) (2026-03-05)
59
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.25...engine-models-v0.0.3-next.26) (2026-03-05)
46
60
 
47
61
 
48
62
  ### Miscellaneous Chores
49
63
 
50
64
  * **engine-models:** Synchronize repo versions
51
65
 
52
- ## [0.0.3-next.25](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.24...engine-models-v0.0.3-next.25) (2026-03-02)
66
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.24...engine-models-v0.0.3-next.25) (2026-03-02)
53
67
 
54
68
 
55
69
  ### Miscellaneous Chores
56
70
 
57
71
  * **engine-models:** Synchronize repo versions
58
72
 
59
- ## [0.0.3-next.24](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.23...engine-models-v0.0.3-next.24) (2026-02-26)
73
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.23...engine-models-v0.0.3-next.24) (2026-02-26)
60
74
 
61
75
 
62
76
  ### Miscellaneous Chores
63
77
 
64
78
  * **engine-models:** Synchronize repo versions
65
79
 
66
- ## [0.0.3-next.23](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.22...engine-models-v0.0.3-next.23) (2026-02-23)
80
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.22...engine-models-v0.0.3-next.23) (2026-02-23)
67
81
 
68
82
 
69
83
  ### Features
70
84
 
71
- * add auth admin component ([201cd06](https://github.com/twinfoundation/engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
72
- * add context id features ([#51](https://github.com/twinfoundation/engine/issues/51)) ([eaef180](https://github.com/twinfoundation/engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
73
- * add engine type helper for config lookups ([a20a398](https://github.com/twinfoundation/engine/commit/a20a3987016c48351178ab8410bc05b0fba0f2c1))
74
- * add engine type helper for config lookups ([7d5eeef](https://github.com/twinfoundation/engine/commit/7d5eeefd3e7b9daab1ba20e2fb6b1ebfec178aec))
75
- * add isPrimary and isClone methods ([a7c63e9](https://github.com/twinfoundation/engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
76
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
77
- * add REST options for route construction ([4adf0af](https://github.com/twinfoundation/engine/commit/4adf0af8a03689a4dbdf67e8527d6db0d2c5d59d))
78
- * add rights management negotiation ([84ef46b](https://github.com/twinfoundation/engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
79
- * add skipComponentStart flag ([#62](https://github.com/twinfoundation/engine/issues/62)) ([07e90af](https://github.com/twinfoundation/engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
80
- * add synchronised storage support ([5142e34](https://github.com/twinfoundation/engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
81
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
82
- * close already started components on startup error ([a55a117](https://github.com/twinfoundation/engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
83
- * context id handlers repopulated after engine clone ([9712e32](https://github.com/twinfoundation/engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
84
- * eslint migration to flat config ([6b978da](https://github.com/twinfoundation/engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
85
- * improve startup error handling ([#65](https://github.com/twinfoundation/engine/issues/65)) ([5b2d1c5](https://github.com/twinfoundation/engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
86
- * maintain isDefault flag for registered instances ([2ac5bee](https://github.com/twinfoundation/engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
87
- * multi instance component support ([#83](https://github.com/twinfoundation/engine/issues/83)) ([6012b50](https://github.com/twinfoundation/engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
88
- * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/twinfoundation/engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
89
- * remove unused component states ([d56d648](https://github.com/twinfoundation/engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
90
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
91
- * standardised engine logging naming ([0dbf857](https://github.com/twinfoundation/engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
92
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
93
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
94
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
95
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
85
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
86
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
87
+ * add engine type helper for config lookups ([a20a398](https://github.com/iotaledger/twin-engine/commit/a20a3987016c48351178ab8410bc05b0fba0f2c1))
88
+ * add engine type helper for config lookups ([7d5eeef](https://github.com/iotaledger/twin-engine/commit/7d5eeefd3e7b9daab1ba20e2fb6b1ebfec178aec))
89
+ * add isPrimary and isClone methods ([a7c63e9](https://github.com/iotaledger/twin-engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
90
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
91
+ * add REST options for route construction ([4adf0af](https://github.com/iotaledger/twin-engine/commit/4adf0af8a03689a4dbdf67e8527d6db0d2c5d59d))
92
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
93
+ * add skipComponentStart flag ([#62](https://github.com/iotaledger/twin-engine/issues/62)) ([07e90af](https://github.com/iotaledger/twin-engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
94
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
95
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
96
+ * close already started components on startup error ([a55a117](https://github.com/iotaledger/twin-engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
97
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
98
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
99
+ * improve startup error handling ([#65](https://github.com/iotaledger/twin-engine/issues/65)) ([5b2d1c5](https://github.com/iotaledger/twin-engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
100
+ * maintain isDefault flag for registered instances ([2ac5bee](https://github.com/iotaledger/twin-engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
101
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
102
+ * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
103
+ * remove unused component states ([d56d648](https://github.com/iotaledger/twin-engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
104
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
105
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
106
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
107
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
108
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
109
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
96
110
 
97
111
 
98
112
  ### Bug Fixes
99
113
 
100
- * make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/twinfoundation/engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
101
- * pass contextIds to populateClone ([#79](https://github.com/twinfoundation/engine/issues/79)) ([b22f1bb](https://github.com/twinfoundation/engine/commit/b22f1bbf0319069914e316d27de4c2a8623421cf))
114
+ * make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/iotaledger/twin-engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
115
+ * pass contextIds to populateClone ([#79](https://github.com/iotaledger/twin-engine/issues/79)) ([b22f1bb](https://github.com/iotaledger/twin-engine/commit/b22f1bbf0319069914e316d27de4c2a8623421cf))
102
116
 
103
- ## [0.0.3-next.22](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.21...engine-models-v0.0.3-next.22) (2026-02-23)
117
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.21...engine-models-v0.0.3-next.22) (2026-02-23)
104
118
 
105
119
 
106
120
  ### Miscellaneous Chores
107
121
 
108
122
  * **engine-models:** Synchronize repo versions
109
123
 
110
- ## [0.0.3-next.21](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.20...engine-models-v0.0.3-next.21) (2026-02-13)
124
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.20...engine-models-v0.0.3-next.21) (2026-02-13)
111
125
 
112
126
 
113
127
  ### Features
114
128
 
115
- * multi instance component support ([#83](https://github.com/twinfoundation/engine/issues/83)) ([6012b50](https://github.com/twinfoundation/engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
129
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
116
130
 
117
- ## [0.0.3-next.20](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.19...engine-models-v0.0.3-next.20) (2026-02-06)
131
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.19...engine-models-v0.0.3-next.20) (2026-02-06)
118
132
 
119
133
 
120
134
  ### Miscellaneous Chores
121
135
 
122
136
  * **engine-models:** Synchronize repo versions
123
137
 
124
- ## [0.0.3-next.19](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.18...engine-models-v0.0.3-next.19) (2026-02-05)
138
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.18...engine-models-v0.0.3-next.19) (2026-02-05)
125
139
 
126
140
 
127
141
  ### Bug Fixes
128
142
 
129
- * pass contextIds to populateClone ([#79](https://github.com/twinfoundation/engine/issues/79)) ([b22f1bb](https://github.com/twinfoundation/engine/commit/b22f1bbf0319069914e316d27de4c2a8623421cf))
143
+ * pass contextIds to populateClone ([#79](https://github.com/iotaledger/twin-engine/issues/79)) ([b22f1bb](https://github.com/iotaledger/twin-engine/commit/b22f1bbf0319069914e316d27de4c2a8623421cf))
130
144
 
131
- ## [0.0.3-next.18](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.17...engine-models-v0.0.3-next.18) (2026-02-04)
145
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.17...engine-models-v0.0.3-next.18) (2026-02-04)
132
146
 
133
147
 
134
148
  ### Miscellaneous Chores
135
149
 
136
150
  * **engine-models:** Synchronize repo versions
137
151
 
138
- ## [0.0.3-next.17](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.16...engine-models-v0.0.3-next.17) (2026-02-02)
152
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.16...engine-models-v0.0.3-next.17) (2026-02-02)
139
153
 
140
154
 
141
155
  ### Miscellaneous Chores
142
156
 
143
157
  * **engine-models:** Synchronize repo versions
144
158
 
145
- ## [0.0.3-next.16](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.15...engine-models-v0.0.3-next.16) (2026-01-28)
159
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.15...engine-models-v0.0.3-next.16) (2026-01-28)
146
160
 
147
161
 
148
162
  ### Miscellaneous Chores
149
163
 
150
164
  * **engine-models:** Synchronize repo versions
151
165
 
152
- ## [0.0.3-next.15](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.14...engine-models-v0.0.3-next.15) (2026-01-26)
166
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.14...engine-models-v0.0.3-next.15) (2026-01-26)
153
167
 
154
168
 
155
169
  ### Miscellaneous Chores
156
170
 
157
171
  * **engine-models:** Synchronize repo versions
158
172
 
159
- ## [0.0.3-next.14](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.13...engine-models-v0.0.3-next.14) (2026-01-19)
173
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.13...engine-models-v0.0.3-next.14) (2026-01-19)
160
174
 
161
175
 
162
176
  ### Features
163
177
 
164
- * add auth admin component ([201cd06](https://github.com/twinfoundation/engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
165
- * add context id features ([#51](https://github.com/twinfoundation/engine/issues/51)) ([eaef180](https://github.com/twinfoundation/engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
166
- * add engine type helper for config lookups ([a20a398](https://github.com/twinfoundation/engine/commit/a20a3987016c48351178ab8410bc05b0fba0f2c1))
167
- * add engine type helper for config lookups ([7d5eeef](https://github.com/twinfoundation/engine/commit/7d5eeefd3e7b9daab1ba20e2fb6b1ebfec178aec))
168
- * add isPrimary and isClone methods ([a7c63e9](https://github.com/twinfoundation/engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
169
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
170
- * add REST options for route construction ([4adf0af](https://github.com/twinfoundation/engine/commit/4adf0af8a03689a4dbdf67e8527d6db0d2c5d59d))
171
- * add rights management negotiation ([84ef46b](https://github.com/twinfoundation/engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
172
- * add skipComponentStart flag ([#62](https://github.com/twinfoundation/engine/issues/62)) ([07e90af](https://github.com/twinfoundation/engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
173
- * add synchronised storage support ([5142e34](https://github.com/twinfoundation/engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
174
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
175
- * close already started components on startup error ([a55a117](https://github.com/twinfoundation/engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
176
- * context id handlers repopulated after engine clone ([9712e32](https://github.com/twinfoundation/engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
177
- * eslint migration to flat config ([6b978da](https://github.com/twinfoundation/engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
178
- * improve startup error handling ([#65](https://github.com/twinfoundation/engine/issues/65)) ([5b2d1c5](https://github.com/twinfoundation/engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
179
- * maintain isDefault flag for registered instances ([2ac5bee](https://github.com/twinfoundation/engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
180
- * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/twinfoundation/engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
181
- * remove unused component states ([d56d648](https://github.com/twinfoundation/engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
182
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
183
- * standardised engine logging naming ([0dbf857](https://github.com/twinfoundation/engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
184
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
185
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
186
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
187
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
178
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
179
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
180
+ * add engine type helper for config lookups ([a20a398](https://github.com/iotaledger/twin-engine/commit/a20a3987016c48351178ab8410bc05b0fba0f2c1))
181
+ * add engine type helper for config lookups ([7d5eeef](https://github.com/iotaledger/twin-engine/commit/7d5eeefd3e7b9daab1ba20e2fb6b1ebfec178aec))
182
+ * add isPrimary and isClone methods ([a7c63e9](https://github.com/iotaledger/twin-engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
183
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
184
+ * add REST options for route construction ([4adf0af](https://github.com/iotaledger/twin-engine/commit/4adf0af8a03689a4dbdf67e8527d6db0d2c5d59d))
185
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
186
+ * add skipComponentStart flag ([#62](https://github.com/iotaledger/twin-engine/issues/62)) ([07e90af](https://github.com/iotaledger/twin-engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
187
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
188
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
189
+ * close already started components on startup error ([a55a117](https://github.com/iotaledger/twin-engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
190
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
191
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
192
+ * improve startup error handling ([#65](https://github.com/iotaledger/twin-engine/issues/65)) ([5b2d1c5](https://github.com/iotaledger/twin-engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
193
+ * maintain isDefault flag for registered instances ([2ac5bee](https://github.com/iotaledger/twin-engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
194
+ * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
195
+ * remove unused component states ([d56d648](https://github.com/iotaledger/twin-engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
196
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
197
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
198
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
199
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
200
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
201
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
188
202
 
189
203
 
190
204
  ### Bug Fixes
191
205
 
192
- * make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/twinfoundation/engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
206
+ * make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/iotaledger/twin-engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
193
207
 
194
- ## [0.0.3-next.13](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.12...engine-models-v0.0.3-next.13) (2026-01-19)
208
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.12...engine-models-v0.0.3-next.13) (2026-01-19)
195
209
 
196
210
 
197
211
  ### Miscellaneous Chores
198
212
 
199
213
  * **engine-models:** Synchronize repo versions
200
214
 
201
- ## [0.0.3-next.12](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.11...engine-models-v0.0.3-next.12) (2026-01-19)
215
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.11...engine-models-v0.0.3-next.12) (2026-01-19)
202
216
 
203
217
 
204
218
  ### Features
205
219
 
206
- * improve startup error handling ([#65](https://github.com/twinfoundation/engine/issues/65)) ([5b2d1c5](https://github.com/twinfoundation/engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
220
+ * improve startup error handling ([#65](https://github.com/iotaledger/twin-engine/issues/65)) ([5b2d1c5](https://github.com/iotaledger/twin-engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
207
221
 
208
- ## [0.0.3-next.11](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.10...engine-models-v0.0.3-next.11) (2026-01-16)
222
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.10...engine-models-v0.0.3-next.11) (2026-01-16)
209
223
 
210
224
 
211
225
  ### Miscellaneous Chores
212
226
 
213
227
  * **engine-models:** Synchronize repo versions
214
228
 
215
- ## [0.0.3-next.10](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.9...engine-models-v0.0.3-next.10) (2026-01-13)
229
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.9...engine-models-v0.0.3-next.10) (2026-01-13)
216
230
 
217
231
 
218
232
  ### Features
219
233
 
220
- * add skipComponentStart flag ([#62](https://github.com/twinfoundation/engine/issues/62)) ([07e90af](https://github.com/twinfoundation/engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
234
+ * add skipComponentStart flag ([#62](https://github.com/iotaledger/twin-engine/issues/62)) ([07e90af](https://github.com/iotaledger/twin-engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
221
235
 
222
- ## [0.0.3-next.9](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.8...engine-models-v0.0.3-next.9) (2026-01-07)
236
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.8...engine-models-v0.0.3-next.9) (2026-01-07)
223
237
 
224
238
 
225
239
  ### Miscellaneous Chores
226
240
 
227
241
  * **engine-models:** Synchronize repo versions
228
242
 
229
- ## [0.0.3-next.8](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.7...engine-models-v0.0.3-next.8) (2026-01-06)
243
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.7...engine-models-v0.0.3-next.8) (2026-01-06)
230
244
 
231
245
 
232
246
  ### Miscellaneous Chores
233
247
 
234
248
  * **engine-models:** Synchronize repo versions
235
249
 
236
- ## [0.0.3-next.7](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.6...engine-models-v0.0.3-next.7) (2025-12-04)
250
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.6...engine-models-v0.0.3-next.7) (2025-12-04)
237
251
 
238
252
 
239
253
  ### Miscellaneous Chores
240
254
 
241
255
  * **engine-models:** Synchronize repo versions
242
256
 
243
- ## [0.0.3-next.6](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.5...engine-models-v0.0.3-next.6) (2025-11-28)
257
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.5...engine-models-v0.0.3-next.6) (2025-11-28)
244
258
 
245
259
 
246
260
  ### Miscellaneous Chores
247
261
 
248
262
  * **engine-models:** Synchronize repo versions
249
263
 
250
- ## [0.0.3-next.5](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.4...engine-models-v0.0.3-next.5) (2025-11-20)
264
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.4...engine-models-v0.0.3-next.5) (2025-11-20)
251
265
 
252
266
 
253
267
  ### Miscellaneous Chores
254
268
 
255
269
  * **engine-models:** Synchronize repo versions
256
270
 
257
- ## [0.0.3-next.4](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.3...engine-models-v0.0.3-next.4) (2025-11-20)
271
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.3...engine-models-v0.0.3-next.4) (2025-11-20)
258
272
 
259
273
 
260
274
  ### Features
261
275
 
262
- * context id handlers repopulated after engine clone ([9712e32](https://github.com/twinfoundation/engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
276
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
263
277
 
264
- ## [0.0.3-next.3](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.2...engine-models-v0.0.3-next.3) (2025-11-14)
278
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.2...engine-models-v0.0.3-next.3) (2025-11-14)
265
279
 
266
280
 
267
281
  ### Bug Fixes
268
282
 
269
- * make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/twinfoundation/engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
283
+ * make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/iotaledger/twin-engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
270
284
 
271
- ## [0.0.3-next.2](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.1...engine-models-v0.0.3-next.2) (2025-11-13)
285
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.1...engine-models-v0.0.3-next.2) (2025-11-13)
272
286
 
273
287
 
274
288
  ### Features
275
289
 
276
- * close already started components on startup error ([a55a117](https://github.com/twinfoundation/engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
290
+ * close already started components on startup error ([a55a117](https://github.com/iotaledger/twin-engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
277
291
 
278
- ## [0.0.3-next.1](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.3-next.0...engine-models-v0.0.3-next.1) (2025-11-13)
292
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.3-next.0...engine-models-v0.0.3-next.1) (2025-11-13)
279
293
 
280
294
 
281
295
  ### Features
282
296
 
283
- * add auth admin component ([201cd06](https://github.com/twinfoundation/engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
284
- * add context id features ([#51](https://github.com/twinfoundation/engine/issues/51)) ([eaef180](https://github.com/twinfoundation/engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
285
- * add engine type helper for config lookups ([a20a398](https://github.com/twinfoundation/engine/commit/a20a3987016c48351178ab8410bc05b0fba0f2c1))
286
- * add engine type helper for config lookups ([7d5eeef](https://github.com/twinfoundation/engine/commit/7d5eeefd3e7b9daab1ba20e2fb6b1ebfec178aec))
287
- * add isPrimary and isClone methods ([a7c63e9](https://github.com/twinfoundation/engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
288
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
289
- * add REST options for route construction ([4adf0af](https://github.com/twinfoundation/engine/commit/4adf0af8a03689a4dbdf67e8527d6db0d2c5d59d))
290
- * add rights management negotiation ([84ef46b](https://github.com/twinfoundation/engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
291
- * add synchronised storage support ([5142e34](https://github.com/twinfoundation/engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
292
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
293
- * eslint migration to flat config ([6b978da](https://github.com/twinfoundation/engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
294
- * maintain isDefault flag for registered instances ([2ac5bee](https://github.com/twinfoundation/engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
295
- * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/twinfoundation/engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
296
- * remove unused component states ([d56d648](https://github.com/twinfoundation/engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
297
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
298
- * standardised engine logging naming ([0dbf857](https://github.com/twinfoundation/engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
299
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
300
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
301
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
302
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
297
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
298
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
299
+ * add engine type helper for config lookups ([a20a398](https://github.com/iotaledger/twin-engine/commit/a20a3987016c48351178ab8410bc05b0fba0f2c1))
300
+ * add engine type helper for config lookups ([7d5eeef](https://github.com/iotaledger/twin-engine/commit/7d5eeefd3e7b9daab1ba20e2fb6b1ebfec178aec))
301
+ * add isPrimary and isClone methods ([a7c63e9](https://github.com/iotaledger/twin-engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
302
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
303
+ * add REST options for route construction ([4adf0af](https://github.com/iotaledger/twin-engine/commit/4adf0af8a03689a4dbdf67e8527d6db0d2c5d59d))
304
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
305
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
306
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
307
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
308
+ * maintain isDefault flag for registered instances ([2ac5bee](https://github.com/iotaledger/twin-engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
309
+ * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
310
+ * remove unused component states ([d56d648](https://github.com/iotaledger/twin-engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
311
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
312
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
313
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
314
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
315
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
316
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
303
317
 
304
- ## [0.0.2-next.26](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.25...engine-models-v0.0.2-next.26) (2025-10-09)
318
+ ## [0.0.2-next.26](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.25...engine-models-v0.0.2-next.26) (2025-10-09)
305
319
 
306
320
 
307
321
  ### Miscellaneous Chores
308
322
 
309
323
  * **engine-models:** Synchronize repo versions
310
324
 
311
- ## [0.0.2-next.25](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.24...engine-models-v0.0.2-next.25) (2025-10-09)
325
+ ## [0.0.2-next.25](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.24...engine-models-v0.0.2-next.25) (2025-10-09)
312
326
 
313
327
 
314
328
  ### Features
315
329
 
316
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
330
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
317
331
 
318
- ## [0.0.2-next.24](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.23...engine-models-v0.0.2-next.24) (2025-10-08)
332
+ ## [0.0.2-next.24](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.23...engine-models-v0.0.2-next.24) (2025-10-08)
319
333
 
320
334
 
321
335
  ### Features
322
336
 
323
- * maintain isDefault flag for registered instances ([2ac5bee](https://github.com/twinfoundation/engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
337
+ * maintain isDefault flag for registered instances ([2ac5bee](https://github.com/iotaledger/twin-engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
324
338
 
325
- ## [0.0.2-next.23](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.22...engine-models-v0.0.2-next.23) (2025-10-07)
339
+ ## [0.0.2-next.23](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.22...engine-models-v0.0.2-next.23) (2025-10-07)
326
340
 
327
341
 
328
342
  ### Miscellaneous Chores
329
343
 
330
344
  * **engine-models:** Synchronize repo versions
331
345
 
332
- ## [0.0.2-next.22](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.21...engine-models-v0.0.2-next.22) (2025-10-07)
346
+ ## [0.0.2-next.22](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.21...engine-models-v0.0.2-next.22) (2025-10-07)
333
347
 
334
348
 
335
349
  ### Miscellaneous Chores
336
350
 
337
351
  * **engine-models:** Synchronize repo versions
338
352
 
339
- ## [0.0.2-next.21](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.20...engine-models-v0.0.2-next.21) (2025-10-07)
353
+ ## [0.0.2-next.21](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.20...engine-models-v0.0.2-next.21) (2025-10-07)
340
354
 
341
355
 
342
356
  ### Miscellaneous Chores
343
357
 
344
358
  * **engine-models:** Synchronize repo versions
345
359
 
346
- ## [0.0.2-next.20](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.19...engine-models-v0.0.2-next.20) (2025-10-06)
360
+ ## [0.0.2-next.20](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.19...engine-models-v0.0.2-next.20) (2025-10-06)
347
361
 
348
362
 
349
363
  ### Features
350
364
 
351
- * standardised engine logging naming ([0dbf857](https://github.com/twinfoundation/engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
365
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
352
366
 
353
- ## [0.0.2-next.19](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.18...engine-models-v0.0.2-next.19) (2025-10-02)
367
+ ## [0.0.2-next.19](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.18...engine-models-v0.0.2-next.19) (2025-10-02)
354
368
 
355
369
 
356
370
  ### Features
357
371
 
358
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
372
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
359
373
 
360
- ## [0.0.2-next.18](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.17...engine-models-v0.0.2-next.18) (2025-09-29)
374
+ ## [0.0.2-next.18](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.17...engine-models-v0.0.2-next.18) (2025-09-29)
361
375
 
362
376
 
363
377
  ### Features
364
378
 
365
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
379
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
366
380
 
367
- ## [0.0.2-next.17](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.16...engine-models-v0.0.2-next.17) (2025-09-26)
381
+ ## [0.0.2-next.17](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.16...engine-models-v0.0.2-next.17) (2025-09-26)
368
382
 
369
383
 
370
384
  ### Features
371
385
 
372
- * add engine type helper for config lookups ([a20a398](https://github.com/twinfoundation/engine/commit/a20a3987016c48351178ab8410bc05b0fba0f2c1))
373
- * add REST options for route construction ([4adf0af](https://github.com/twinfoundation/engine/commit/4adf0af8a03689a4dbdf67e8527d6db0d2c5d59d))
386
+ * add engine type helper for config lookups ([a20a398](https://github.com/iotaledger/twin-engine/commit/a20a3987016c48351178ab8410bc05b0fba0f2c1))
387
+ * add REST options for route construction ([4adf0af](https://github.com/iotaledger/twin-engine/commit/4adf0af8a03689a4dbdf67e8527d6db0d2c5d59d))
374
388
 
375
- ## [0.0.2-next.16](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.15...engine-models-v0.0.2-next.16) (2025-09-25)
389
+ ## [0.0.2-next.16](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.15...engine-models-v0.0.2-next.16) (2025-09-25)
376
390
 
377
391
 
378
392
  ### Features
379
393
 
380
- * add engine type helper for config lookups ([7d5eeef](https://github.com/twinfoundation/engine/commit/7d5eeefd3e7b9daab1ba20e2fb6b1ebfec178aec))
394
+ * add engine type helper for config lookups ([7d5eeef](https://github.com/iotaledger/twin-engine/commit/7d5eeefd3e7b9daab1ba20e2fb6b1ebfec178aec))
381
395
 
382
- ## [0.0.2-next.15](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.14...engine-models-v0.0.2-next.15) (2025-09-24)
396
+ ## [0.0.2-next.15](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.14...engine-models-v0.0.2-next.15) (2025-09-24)
383
397
 
384
398
 
385
399
  ### Miscellaneous Chores
386
400
 
387
401
  * **engine-models:** Synchronize repo versions
388
402
 
389
- ## [0.0.2-next.14](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.13...engine-models-v0.0.2-next.14) (2025-09-19)
403
+ ## [0.0.2-next.14](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.13...engine-models-v0.0.2-next.14) (2025-09-19)
390
404
 
391
405
 
392
406
  ### Miscellaneous Chores
393
407
 
394
408
  * **engine-models:** Synchronize repo versions
395
409
 
396
- ## [0.0.2-next.13](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.12...engine-models-v0.0.2-next.13) (2025-09-08)
410
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.12...engine-models-v0.0.2-next.13) (2025-09-08)
397
411
 
398
412
 
399
413
  ### Miscellaneous Chores
400
414
 
401
415
  * **engine-models:** Synchronize repo versions
402
416
 
403
- ## [0.0.2-next.12](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.11...engine-models-v0.0.2-next.12) (2025-09-05)
417
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.11...engine-models-v0.0.2-next.12) (2025-09-05)
404
418
 
405
419
 
406
420
  ### Features
407
421
 
408
- * add rights management negotiation ([84ef46b](https://github.com/twinfoundation/engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
422
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
409
423
 
410
- ## [0.0.2-next.11](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.10...engine-models-v0.0.2-next.11) (2025-08-29)
424
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.10...engine-models-v0.0.2-next.11) (2025-08-29)
411
425
 
412
426
 
413
427
  ### Features
414
428
 
415
- * eslint migration to flat config ([6b978da](https://github.com/twinfoundation/engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
429
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
416
430
 
417
- ## [0.0.2-next.10](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.9...engine-models-v0.0.2-next.10) (2025-08-26)
431
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.9...engine-models-v0.0.2-next.10) (2025-08-26)
418
432
 
419
433
 
420
434
  ### Miscellaneous Chores
421
435
 
422
436
  * **engine-models:** Synchronize repo versions
423
437
 
424
- ## [0.0.2-next.9](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.8...engine-models-v0.0.2-next.9) (2025-08-25)
438
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.8...engine-models-v0.0.2-next.9) (2025-08-25)
425
439
 
426
440
 
427
441
  ### Features
428
442
 
429
- * add isPrimary and isClone methods ([a7c63e9](https://github.com/twinfoundation/engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
443
+ * add isPrimary and isClone methods ([a7c63e9](https://github.com/iotaledger/twin-engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
430
444
 
431
- ## [0.0.2-next.8](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.7...engine-models-v0.0.2-next.8) (2025-08-22)
445
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.7...engine-models-v0.0.2-next.8) (2025-08-22)
432
446
 
433
447
 
434
448
  ### Miscellaneous Chores
435
449
 
436
450
  * **engine-models:** Synchronize repo versions
437
451
 
438
- ## [0.0.2-next.7](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.6...engine-models-v0.0.2-next.7) (2025-08-22)
452
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.6...engine-models-v0.0.2-next.7) (2025-08-22)
439
453
 
440
454
 
441
455
  ### Features
442
456
 
443
- * remove unused component states ([d56d648](https://github.com/twinfoundation/engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
457
+ * remove unused component states ([d56d648](https://github.com/iotaledger/twin-engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
444
458
 
445
- ## [0.0.2-next.6](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.5...engine-models-v0.0.2-next.6) (2025-08-21)
459
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.5...engine-models-v0.0.2-next.6) (2025-08-21)
446
460
 
447
461
 
448
462
  ### Features
449
463
 
450
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
464
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
451
465
 
452
- ## [0.0.2-next.5](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.4...engine-models-v0.0.2-next.5) (2025-08-14)
466
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.4...engine-models-v0.0.2-next.5) (2025-08-14)
453
467
 
454
468
 
455
469
  ### Features
456
470
 
457
- * add synchronised storage support ([5142e34](https://github.com/twinfoundation/engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
471
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
458
472
 
459
- ## [0.0.2-next.4](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.3...engine-models-v0.0.2-next.4) (2025-07-25)
473
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.3...engine-models-v0.0.2-next.4) (2025-07-25)
460
474
 
461
475
 
462
476
  ### Miscellaneous Chores
463
477
 
464
478
  * **engine-models:** Synchronize repo versions
465
479
 
466
- ## [0.0.2-next.3](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.2...engine-models-v0.0.2-next.3) (2025-07-24)
480
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.2...engine-models-v0.0.2-next.3) (2025-07-24)
467
481
 
468
482
 
469
483
  ### Miscellaneous Chores
470
484
 
471
485
  * **engine-models:** Synchronize repo versions
472
486
 
473
- ## [0.0.2-next.2](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.1...engine-models-v0.0.2-next.2) (2025-07-21)
487
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.1...engine-models-v0.0.2-next.2) (2025-07-21)
474
488
 
475
489
 
476
490
  ### Miscellaneous Chores
477
491
 
478
492
  * **engine-models:** Synchronize repo versions
479
493
 
480
- ## [0.0.2-next.1](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.2-next.0...engine-models-v0.0.2-next.1) (2025-07-11)
494
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.2-next.0...engine-models-v0.0.2-next.1) (2025-07-11)
481
495
 
482
496
 
483
497
  ### Features
484
498
 
485
- * add auth admin component ([201cd06](https://github.com/twinfoundation/engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
486
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
487
- * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/twinfoundation/engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
488
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
489
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
499
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
500
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
501
+ * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
502
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
503
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
490
504
 
491
505
  ## 0.0.1 (2025-07-11)
492
506
 
493
507
 
494
508
  ### Features
495
509
 
496
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
497
- * release to production ([3a4acd1](https://github.com/twinfoundation/engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
498
- * release to production ([5559958](https://github.com/twinfoundation/engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
499
- * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/twinfoundation/engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
500
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
501
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
510
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
511
+ * release to production ([3a4acd1](https://github.com/iotaledger/twin-engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
512
+ * release to production ([5559958](https://github.com/iotaledger/twin-engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
513
+ * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
514
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
515
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
502
516
 
503
- ## [0.0.1-next.84](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.83...engine-models-v0.0.1-next.84) (2025-07-11)
517
+ ## [0.0.1-next.84](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.83...engine-models-v0.0.1-next.84) (2025-07-11)
504
518
 
505
519
 
506
520
  ### Miscellaneous Chores
507
521
 
508
522
  * **engine-models:** Synchronize repo versions
509
523
 
510
- ## [0.0.1-next.83](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.82...engine-models-v0.0.1-next.83) (2025-07-10)
524
+ ## [0.0.1-next.83](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.82...engine-models-v0.0.1-next.83) (2025-07-10)
511
525
 
512
526
 
513
527
  ### Features
514
528
 
515
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
516
- * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/twinfoundation/engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
517
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
518
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
529
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
530
+ * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
531
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
532
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
519
533
 
520
- ## [0.0.1-next.81](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.80...engine-models-v0.0.1-next.81) (2025-07-07)
534
+ ## [0.0.1-next.81](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.80...engine-models-v0.0.1-next.81) (2025-07-07)
521
535
 
522
536
 
523
537
  ### Miscellaneous Chores
524
538
 
525
539
  * **engine-models:** Synchronize repo versions
526
540
 
527
- ## [0.0.1-next.80](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.79...engine-models-v0.0.1-next.80) (2025-06-23)
541
+ ## [0.0.1-next.80](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.79...engine-models-v0.0.1-next.80) (2025-06-23)
528
542
 
529
543
 
530
544
  ### Miscellaneous Chores
531
545
 
532
546
  * **engine-models:** Synchronize repo versions
533
547
 
534
- ## [0.0.1-next.79](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.78...engine-models-v0.0.1-next.79) (2025-06-18)
548
+ ## [0.0.1-next.79](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.78...engine-models-v0.0.1-next.79) (2025-06-18)
535
549
 
536
550
 
537
551
  ### Miscellaneous Chores
538
552
 
539
553
  * **engine-models:** Synchronize repo versions
540
554
 
541
- ## [0.0.1-next.78](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.77...engine-models-v0.0.1-next.78) (2025-06-18)
555
+ ## [0.0.1-next.78](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.77...engine-models-v0.0.1-next.78) (2025-06-18)
542
556
 
543
557
 
544
558
  ### Miscellaneous Chores
545
559
 
546
560
  * **engine-models:** Synchronize repo versions
547
561
 
548
- ## [0.0.1-next.77](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.76...engine-models-v0.0.1-next.77) (2025-06-18)
562
+ ## [0.0.1-next.77](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.76...engine-models-v0.0.1-next.77) (2025-06-18)
549
563
 
550
564
 
551
565
  ### Miscellaneous Chores
552
566
 
553
567
  * **engine-models:** Synchronize repo versions
554
568
 
555
- ## [0.0.1-next.76](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.75...engine-models-v0.0.1-next.76) (2025-06-12)
569
+ ## [0.0.1-next.76](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.75...engine-models-v0.0.1-next.76) (2025-06-12)
556
570
 
557
571
 
558
572
  ### Features
559
573
 
560
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
574
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
561
575
 
562
- ## [0.0.1-next.75](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.74...engine-models-v0.0.1-next.75) (2025-05-29)
576
+ ## [0.0.1-next.75](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.74...engine-models-v0.0.1-next.75) (2025-05-29)
563
577
 
564
578
 
565
579
  ### Miscellaneous Chores
566
580
 
567
581
  * **engine-models:** Synchronize repo versions
568
582
 
569
- ## [0.0.1-next.74](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.73...engine-models-v0.0.1-next.74) (2025-05-23)
583
+ ## [0.0.1-next.74](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.73...engine-models-v0.0.1-next.74) (2025-05-23)
570
584
 
571
585
 
572
586
  ### Miscellaneous Chores
573
587
 
574
588
  * **engine-models:** Synchronize repo versions
575
589
 
576
- ## [0.0.1-next.73](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.72...engine-models-v0.0.1-next.73) (2025-05-22)
590
+ ## [0.0.1-next.73](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.72...engine-models-v0.0.1-next.73) (2025-05-22)
577
591
 
578
592
 
579
593
  ### Features
580
594
 
581
- * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/twinfoundation/engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
595
+ * remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
582
596
 
583
- ## [0.0.1-next.72](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.71...engine-models-v0.0.1-next.72) (2025-05-06)
597
+ ## [0.0.1-next.72](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.71...engine-models-v0.0.1-next.72) (2025-05-06)
584
598
 
585
599
 
586
600
  ### Features
587
601
 
588
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
589
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
602
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
603
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
590
604
 
591
- ## [0.0.1-next.71](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.70...engine-models-v0.0.1-next.71) (2025-05-06)
605
+ ## [0.0.1-next.71](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.70...engine-models-v0.0.1-next.71) (2025-05-06)
592
606
 
593
607
 
594
608
  ### Miscellaneous Chores
595
609
 
596
610
  * **engine-models:** Synchronize repo versions
597
611
 
598
- ## [0.0.1-next.70](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.69...engine-models-v0.0.1-next.70) (2025-04-28)
612
+ ## [0.0.1-next.70](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.69...engine-models-v0.0.1-next.70) (2025-04-28)
599
613
 
600
614
 
601
615
  ### Miscellaneous Chores
602
616
 
603
617
  * **engine-models:** Synchronize repo versions
604
618
 
605
- ## [0.0.1-next.69](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.68...engine-models-v0.0.1-next.69) (2025-04-25)
619
+ ## [0.0.1-next.69](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.68...engine-models-v0.0.1-next.69) (2025-04-25)
606
620
 
607
621
 
608
622
  ### Miscellaneous Chores
609
623
 
610
624
  * **engine-models:** Synchronize repo versions
611
625
 
612
- ## [0.0.1-next.68](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.67...engine-models-v0.0.1-next.68) (2025-04-17)
626
+ ## [0.0.1-next.68](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.67...engine-models-v0.0.1-next.68) (2025-04-17)
613
627
 
614
628
 
615
629
  ### Features
616
630
 
617
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
631
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
618
632
 
619
- ## [0.0.1-next.67](https://github.com/twinfoundation/engine/compare/engine-models-v0.0.1-next.66...engine-models-v0.0.1-next.67) (2025-03-28)
633
+ ## [0.0.1-next.67](https://github.com/iotaledger/twin-engine/compare/engine-models-v0.0.1-next.66...engine-models-v0.0.1-next.67) (2025-03-28)
620
634
 
621
635
 
622
636
  ### Features
623
637
 
624
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
638
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
625
639
 
626
640
  ## v0.0.1-next.66
627
641
 
@@ -380,6 +380,48 @@ The instance type matching the criteria if one is registered.
380
380
 
381
381
  ***
382
382
 
383
+ ### getRegisteredComponents() {#getregisteredcomponents}
384
+
385
+ > **getRegisteredComponents**(): `Promise`\<`object`[]\>
386
+
387
+ Get the registered components.
388
+
389
+ #### Returns
390
+
391
+ `Promise`\<`object`[]\>
392
+
393
+ The registered components.
394
+
395
+ ***
396
+
397
+ ### addRegisteredComponent() {#addregisteredcomponent}
398
+
399
+ > **addRegisteredComponent**(`instanceType`, `component`): `Promise`\<`void`\>
400
+
401
+ Add a registered component to the engine.
402
+
403
+ #### Parameters
404
+
405
+ ##### instanceType
406
+
407
+ `string`
408
+
409
+ The instance type to register the component under.
410
+
411
+ ##### component
412
+
413
+ `IComponent`
414
+
415
+ The component to register.
416
+
417
+ #### Returns
418
+
419
+ `Promise`\<`void`\>
420
+
421
+ Nothing.
422
+
423
+ ***
424
+
383
425
  ### getCloneData() {#getclonedata}
384
426
 
385
427
  > **getCloneData**(): [`IEngineCoreClone`](IEngineCoreClone.md)\<`C`, `S`\>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/engine-models",
3
- "version": "0.0.3-next.32",
3
+ "version": "0.0.3-next.34",
4
4
  "description": "Shared contracts and factory interfaces for composing engine core and server implementations.",
5
5
  "repository": {
6
6
  "type": "git",