orange-orm 4.5.2 → 4.5.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/docs/changelog.md +2 -0
- package/package.json +1 -1
- package/src/map.d.ts +1 -1
package/docs/changelog.md
CHANGED
package/package.json
CHANGED
package/src/map.d.ts
CHANGED
|
@@ -1085,7 +1085,7 @@ type ExtractColumnBools<T, TStrategy> = RemoveNever<{
|
|
|
1085
1085
|
type NegotiateNotNull<T> = T extends NotNull ? NotNull : {};
|
|
1086
1086
|
|
|
1087
1087
|
type FetchedProperties<T, TStrategy> = FetchedColumnProperties<T, TStrategy> & FetchedRelationProperties<T, TStrategy> & ExtractAggregates<TStrategy>
|
|
1088
|
-
type FetchedAggregateProperties<T, TStrategy> =
|
|
1088
|
+
type FetchedAggregateProperties<T, TStrategy> = ExtractAggregates<TStrategy>;
|
|
1089
1089
|
|
|
1090
1090
|
|
|
1091
1091
|
type FetchedRelationProperties<T, TStrategy> = RemoveNeverFlat<{
|