@itwin/core-backend 5.0.0 → 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,19 @@
1
1
  # Change Log - @itwin/core-backend
2
2
 
3
- This log was last generated on Fri, 13 Jun 2025 20:25:38 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.
12
+
13
+ ## 5.0.1
14
+ Tue, 17 Jun 2025 18:33:51 GMT
15
+
16
+ _Version update only_
4
17
 
5
18
  ## 5.0.0
6
19
  Fri, 13 Jun 2025 20:25:38 GMT
@@ -63,6 +76,11 @@ Fri, 13 Jun 2025 20:25:38 GMT
63
76
  - Make IModelHostOptions.hubAccess public.
64
77
  - Remove V1 Checkpoints API.
65
78
 
79
+ ## 4.11.6
80
+ Mon, 16 Jun 2025 15:00:15 GMT
81
+
82
+ _Version update only_
83
+
66
84
  ## 4.11.5
67
85
  Fri, 06 Jun 2025 13:41:18 GMT
68
86
 
@@ -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);