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 CHANGED
@@ -1,4 +1,6 @@
1
1
  ## Changelog
2
+ __4.5.3__
3
+ Minor improvements of types in aggregate functions.
2
4
  __4.5.2__
3
5
  Bugfix: Aggregate functions are not allowed on root tables . See [#120](https://github.com/alfateam/orange-orm/issues/121)
4
6
  __4.5.1__
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orange-orm",
3
- "version": "4.5.2",
3
+ "version": "4.5.3",
4
4
  "main": "./src/index.js",
5
5
  "browser": "./src/client/index.mjs",
6
6
  "bin": {
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> = FetchedColumnProperties<T, TStrategy> & ExtractAggregates<TStrategy>
1088
+ type FetchedAggregateProperties<T, TStrategy> = ExtractAggregates<TStrategy>;
1089
1089
 
1090
1090
 
1091
1091
  type FetchedRelationProperties<T, TStrategy> = RemoveNeverFlat<{