@twin.org/engine-models 0.0.3-next.31 → 0.0.3-next.33

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