@itwin/core-backend 5.0.1 → 5.0.2

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,14 @@
1
1
  # Change Log - @itwin/core-backend
2
2
 
3
- This log was last generated on Tue, 17 Jun 2025 18:33:51 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 26 Jun 2025 22:16:01 GMT and should not be manually modified.
4
+
5
+ ## 5.0.2
6
+ Thu, 26 Jun 2025 22:16:01 GMT
7
+
8
+ ### Updates
9
+
10
+ - Fix recipe initialization in TypeDefinitionElement
11
+ - Make IModelHostConfiguration.hubAccess public.
4
12
 
5
13
  ## 5.0.1
6
14
  Tue, 17 Jun 2025 18:33:51 GMT
@@ -1289,7 +1289,7 @@ class TypeDefinitionElement extends DefinitionElement {
1289
1289
  recipe;
1290
1290
  constructor(props, iModel) {
1291
1291
  super(props, iModel);
1292
- this.recipe = this.recipe;
1292
+ this.recipe = core_common_1.RelatedElement.fromJSON(props.recipe);
1293
1293
  }
1294
1294
  collectReferenceIds(referenceIds) {
1295
1295
  super.collectReferenceIds(referenceIds);