@itwin/core-backend 5.0.1 → 5.0.3

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,19 @@
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 Fri, 11 Jul 2025 00:56:56 GMT and should not be manually modified.
4
+
5
+ ## 5.0.3
6
+ Fri, 11 Jul 2025 00:56:56 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 5.0.2
11
+ Thu, 26 Jun 2025 22:16:01 GMT
12
+
13
+ ### Updates
14
+
15
+ - Fix recipe initialization in TypeDefinitionElement
16
+ - Make IModelHostConfiguration.hubAccess public.
4
17
 
5
18
  ## 5.0.1
6
19
  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);