@twin.org/engine-models 0.0.1-next.21 → 0.0.1-next.23

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.
@@ -60,6 +60,7 @@ export interface IEngineCore<C extends IEngineCoreConfig = IEngineCoreConfig, S
60
60
  /**
61
61
  * Populate the engine from the clone data.
62
62
  * @param cloneData The clone data to populate from.
63
+ * @param silent Should the clone be silent.
63
64
  */
64
- populateClone(cloneData: IEngineCoreClone<C, S>): void;
65
+ populateClone(cloneData: IEngineCoreClone<C, S>, silent?: boolean): void;
65
66
  }
@@ -29,4 +29,8 @@ export interface IEngineCoreClone<C extends IEngineCoreConfig = IEngineCoreConfi
29
29
  entitySchemas: {
30
30
  [schema: string]: IEntitySchema;
31
31
  };
32
+ /**
33
+ * The logger type name.
34
+ */
35
+ loggerTypeName: string;
32
36
  }
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/engine-models - Changelog
2
2
 
3
- ## v0.0.1-next.21
3
+ ## v0.0.1-next.23
4
4
 
5
5
  - Initial Release
@@ -162,7 +162,7 @@ The clone data.
162
162
 
163
163
  ### populateClone()
164
164
 
165
- > **populateClone**(`cloneData`): `void`
165
+ > **populateClone**(`cloneData`, `silent`?): `void`
166
166
 
167
167
  Populate the engine from the clone data.
168
168
 
@@ -172,6 +172,10 @@ Populate the engine from the clone data.
172
172
 
173
173
  The clone data to populate from.
174
174
 
175
+ • **silent?**: `boolean`
176
+
177
+ Should the clone be silent.
178
+
175
179
  #### Returns
176
180
 
177
181
  `void`
@@ -43,3 +43,11 @@ The entity schemas for the engine.
43
43
  #### Index Signature
44
44
 
45
45
  \[`schema`: `string`\]: `IEntitySchema`
46
+
47
+ ***
48
+
49
+ ### loggerTypeName
50
+
51
+ > **loggerTypeName**: `string`
52
+
53
+ The logger type name.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/engine-models",
3
- "version": "0.0.1-next.21",
3
+ "version": "0.0.1-next.23",
4
4
  "description": "Models which define the structure of the engine.",
5
5
  "repository": {
6
6
  "type": "git",