Comparing version 1.0.104 to 1.0.105
{ | ||
"name": "orma", | ||
"version": "1.0.104", | ||
"version": "1.0.105", | ||
"description": "A declarative relational syncronous orm", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
@@ -16,3 +16,3 @@ import { OrmaSchema } from '../../introspector/introspector' | ||
// should be returned as a result if the key is not a keyword and the value is not a subquery | ||
[Key in keyof Query]?: Key extends Keyword | ||
[Key in keyof Query]: Key extends Keyword | ||
? never // keywords are not in the results | ||
@@ -19,0 +19,0 @@ : Query[Key] extends { $from: GetAllEntities<Schema> } // if the value has a $from prop, it is always a subquery |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1204162