@twin.org/engine-models 0.0.3-next.32 → 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,627 +1,634 @@
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.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)
4
11
 
5
12
 
6
13
  ### Miscellaneous Chores
7
14
 
8
15
  * **engine-models:** Synchronize repo versions
9
16
 
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)
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)
11
18
 
12
19
 
13
20
  ### Miscellaneous Chores
14
21
 
15
22
  * **engine-models:** Synchronize repo versions
16
23
 
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)
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)
18
25
 
19
26
 
20
27
  ### Miscellaneous Chores
21
28
 
22
29
  * **engine-models:** Synchronize repo versions
23
30
 
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)
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)
25
32
 
26
33
 
27
34
  ### Miscellaneous Chores
28
35
 
29
36
  * **engine-models:** Synchronize repo versions
30
37
 
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)
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)
32
39
 
33
40
 
34
41
  ### Miscellaneous Chores
35
42
 
36
43
  * **engine-models:** Synchronize repo versions
37
44
 
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)
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)
39
46
 
40
47
 
41
48
  ### Features
42
49
 
43
- * update dependencies ([e6ebe42](https://github.com/twinfoundation/engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
50
+ * update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
44
51
 
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)
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)
46
53
 
47
54
 
48
55
  ### Miscellaneous Chores
49
56
 
50
57
  * **engine-models:** Synchronize repo versions
51
58
 
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)
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)
53
60
 
54
61
 
55
62
  ### Miscellaneous Chores
56
63
 
57
64
  * **engine-models:** Synchronize repo versions
58
65
 
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)
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)
60
67
 
61
68
 
62
69
  ### Miscellaneous Chores
63
70
 
64
71
  * **engine-models:** Synchronize repo versions
65
72
 
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)
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)
67
74
 
68
75
 
69
76
  ### Features
70
77
 
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))
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))
96
103
 
97
104
 
98
105
  ### Bug Fixes
99
106
 
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))
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))
102
109
 
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)
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)
104
111
 
105
112
 
106
113
  ### Miscellaneous Chores
107
114
 
108
115
  * **engine-models:** Synchronize repo versions
109
116
 
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)
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)
111
118
 
112
119
 
113
120
  ### Features
114
121
 
115
- * 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))
116
123
 
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)
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)
118
125
 
119
126
 
120
127
  ### Miscellaneous Chores
121
128
 
122
129
  * **engine-models:** Synchronize repo versions
123
130
 
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)
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)
125
132
 
126
133
 
127
134
  ### Bug Fixes
128
135
 
129
- * 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))
130
137
 
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)
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)
132
139
 
133
140
 
134
141
  ### Miscellaneous Chores
135
142
 
136
143
  * **engine-models:** Synchronize repo versions
137
144
 
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)
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)
139
146
 
140
147
 
141
148
  ### Miscellaneous Chores
142
149
 
143
150
  * **engine-models:** Synchronize repo versions
144
151
 
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)
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)
146
153
 
147
154
 
148
155
  ### Miscellaneous Chores
149
156
 
150
157
  * **engine-models:** Synchronize repo versions
151
158
 
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)
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)
153
160
 
154
161
 
155
162
  ### Miscellaneous Chores
156
163
 
157
164
  * **engine-models:** Synchronize repo versions
158
165
 
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)
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)
160
167
 
161
168
 
162
169
  ### Features
163
170
 
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))
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))
188
195
 
189
196
 
190
197
  ### Bug Fixes
191
198
 
192
- * 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))
193
200
 
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)
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)
195
202
 
196
203
 
197
204
  ### Miscellaneous Chores
198
205
 
199
206
  * **engine-models:** Synchronize repo versions
200
207
 
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)
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)
202
209
 
203
210
 
204
211
  ### Features
205
212
 
206
- * 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))
207
214
 
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)
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)
209
216
 
210
217
 
211
218
  ### Miscellaneous Chores
212
219
 
213
220
  * **engine-models:** Synchronize repo versions
214
221
 
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)
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)
216
223
 
217
224
 
218
225
  ### Features
219
226
 
220
- * 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))
221
228
 
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)
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)
223
230
 
224
231
 
225
232
  ### Miscellaneous Chores
226
233
 
227
234
  * **engine-models:** Synchronize repo versions
228
235
 
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)
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)
230
237
 
231
238
 
232
239
  ### Miscellaneous Chores
233
240
 
234
241
  * **engine-models:** Synchronize repo versions
235
242
 
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)
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)
237
244
 
238
245
 
239
246
  ### Miscellaneous Chores
240
247
 
241
248
  * **engine-models:** Synchronize repo versions
242
249
 
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)
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)
244
251
 
245
252
 
246
253
  ### Miscellaneous Chores
247
254
 
248
255
  * **engine-models:** Synchronize repo versions
249
256
 
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)
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)
251
258
 
252
259
 
253
260
  ### Miscellaneous Chores
254
261
 
255
262
  * **engine-models:** Synchronize repo versions
256
263
 
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)
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)
258
265
 
259
266
 
260
267
  ### Features
261
268
 
262
- * 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))
263
270
 
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)
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)
265
272
 
266
273
 
267
274
  ### Bug Fixes
268
275
 
269
- * 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))
270
277
 
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)
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)
272
279
 
273
280
 
274
281
  ### Features
275
282
 
276
- * 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))
277
284
 
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)
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)
279
286
 
280
287
 
281
288
  ### Features
282
289
 
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))
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))
303
310
 
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)
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)
305
312
 
306
313
 
307
314
  ### Miscellaneous Chores
308
315
 
309
316
  * **engine-models:** Synchronize repo versions
310
317
 
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)
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)
312
319
 
313
320
 
314
321
  ### Features
315
322
 
316
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
323
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
317
324
 
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)
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)
319
326
 
320
327
 
321
328
  ### Features
322
329
 
323
- * 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))
324
331
 
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)
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)
326
333
 
327
334
 
328
335
  ### Miscellaneous Chores
329
336
 
330
337
  * **engine-models:** Synchronize repo versions
331
338
 
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)
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)
333
340
 
334
341
 
335
342
  ### Miscellaneous Chores
336
343
 
337
344
  * **engine-models:** Synchronize repo versions
338
345
 
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)
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)
340
347
 
341
348
 
342
349
  ### Miscellaneous Chores
343
350
 
344
351
  * **engine-models:** Synchronize repo versions
345
352
 
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)
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)
347
354
 
348
355
 
349
356
  ### Features
350
357
 
351
- * 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))
352
359
 
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)
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)
354
361
 
355
362
 
356
363
  ### Features
357
364
 
358
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
365
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
359
366
 
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)
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)
361
368
 
362
369
 
363
370
  ### Features
364
371
 
365
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
372
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
366
373
 
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)
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)
368
375
 
369
376
 
370
377
  ### Features
371
378
 
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))
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))
374
381
 
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)
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)
376
383
 
377
384
 
378
385
  ### Features
379
386
 
380
- * 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))
381
388
 
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)
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)
383
390
 
384
391
 
385
392
  ### Miscellaneous Chores
386
393
 
387
394
  * **engine-models:** Synchronize repo versions
388
395
 
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)
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)
390
397
 
391
398
 
392
399
  ### Miscellaneous Chores
393
400
 
394
401
  * **engine-models:** Synchronize repo versions
395
402
 
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)
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)
397
404
 
398
405
 
399
406
  ### Miscellaneous Chores
400
407
 
401
408
  * **engine-models:** Synchronize repo versions
402
409
 
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)
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)
404
411
 
405
412
 
406
413
  ### Features
407
414
 
408
- * 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))
409
416
 
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)
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)
411
418
 
412
419
 
413
420
  ### Features
414
421
 
415
- * 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))
416
423
 
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)
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)
418
425
 
419
426
 
420
427
  ### Miscellaneous Chores
421
428
 
422
429
  * **engine-models:** Synchronize repo versions
423
430
 
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)
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)
425
432
 
426
433
 
427
434
  ### Features
428
435
 
429
- * 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))
430
437
 
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)
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)
432
439
 
433
440
 
434
441
  ### Miscellaneous Chores
435
442
 
436
443
  * **engine-models:** Synchronize repo versions
437
444
 
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)
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)
439
446
 
440
447
 
441
448
  ### Features
442
449
 
443
- * 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))
444
451
 
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)
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)
446
453
 
447
454
 
448
455
  ### Features
449
456
 
450
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
457
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
451
458
 
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)
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)
453
460
 
454
461
 
455
462
  ### Features
456
463
 
457
- * 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))
458
465
 
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)
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)
460
467
 
461
468
 
462
469
  ### Miscellaneous Chores
463
470
 
464
471
  * **engine-models:** Synchronize repo versions
465
472
 
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)
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)
467
474
 
468
475
 
469
476
  ### Miscellaneous Chores
470
477
 
471
478
  * **engine-models:** Synchronize repo versions
472
479
 
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)
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)
474
481
 
475
482
 
476
483
  ### Miscellaneous Chores
477
484
 
478
485
  * **engine-models:** Synchronize repo versions
479
486
 
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)
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)
481
488
 
482
489
 
483
490
  ### Features
484
491
 
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))
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))
490
497
 
491
498
  ## 0.0.1 (2025-07-11)
492
499
 
493
500
 
494
501
  ### Features
495
502
 
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))
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))
502
509
 
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)
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)
504
511
 
505
512
 
506
513
  ### Miscellaneous Chores
507
514
 
508
515
  * **engine-models:** Synchronize repo versions
509
516
 
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)
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)
511
518
 
512
519
 
513
520
  ### Features
514
521
 
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))
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))
519
526
 
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)
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)
521
528
 
522
529
 
523
530
  ### Miscellaneous Chores
524
531
 
525
532
  * **engine-models:** Synchronize repo versions
526
533
 
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)
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)
528
535
 
529
536
 
530
537
  ### Miscellaneous Chores
531
538
 
532
539
  * **engine-models:** Synchronize repo versions
533
540
 
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)
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)
535
542
 
536
543
 
537
544
  ### Miscellaneous Chores
538
545
 
539
546
  * **engine-models:** Synchronize repo versions
540
547
 
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)
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)
542
549
 
543
550
 
544
551
  ### Miscellaneous Chores
545
552
 
546
553
  * **engine-models:** Synchronize repo versions
547
554
 
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)
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)
549
556
 
550
557
 
551
558
  ### Miscellaneous Chores
552
559
 
553
560
  * **engine-models:** Synchronize repo versions
554
561
 
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)
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)
556
563
 
557
564
 
558
565
  ### Features
559
566
 
560
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
567
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
561
568
 
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)
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)
563
570
 
564
571
 
565
572
  ### Miscellaneous Chores
566
573
 
567
574
  * **engine-models:** Synchronize repo versions
568
575
 
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)
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)
570
577
 
571
578
 
572
579
  ### Miscellaneous Chores
573
580
 
574
581
  * **engine-models:** Synchronize repo versions
575
582
 
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)
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)
577
584
 
578
585
 
579
586
  ### Features
580
587
 
581
- * 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))
582
589
 
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)
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)
584
591
 
585
592
 
586
593
  ### Features
587
594
 
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))
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))
590
597
 
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)
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)
592
599
 
593
600
 
594
601
  ### Miscellaneous Chores
595
602
 
596
603
  * **engine-models:** Synchronize repo versions
597
604
 
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)
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)
599
606
 
600
607
 
601
608
  ### Miscellaneous Chores
602
609
 
603
610
  * **engine-models:** Synchronize repo versions
604
611
 
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)
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)
606
613
 
607
614
 
608
615
  ### Miscellaneous Chores
609
616
 
610
617
  * **engine-models:** Synchronize repo versions
611
618
 
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)
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)
613
620
 
614
621
 
615
622
  ### Features
616
623
 
617
- * 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))
618
625
 
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)
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)
620
627
 
621
628
 
622
629
  ### Features
623
630
 
624
- * 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))
625
632
 
626
633
  ## v0.0.1-next.66
627
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.32",
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",