Comparing version 3.0.1 to 3.0.2
@@ -384,4 +384,4 @@ import { Dict, Intersect, MaybeArray, Awaitable, Extract } from 'cosmokit'; | ||
select<T extends Keys<S>>(table: T, query?: Query<S[T]>): Selection<S[T]>; | ||
join<U extends Join1.Input<S>>(tables: U, callback?: Join1.Predicate<S, U>, optional?: boolean[]): Selection<Join1.Output<S, U>>; | ||
join<U extends Join2.Input<S>>(tables: U, callback?: Join2.Predicate<S, U>, optional?: Dict<boolean, Keys<U>>): Selection<Join2.Output<S, U>>; | ||
join<const U extends Join1.Input<S>>(tables: U, callback?: Join1.Predicate<S, U>, optional?: boolean[]): Selection<Join1.Output<S, U>>; | ||
join<const U extends Join2.Input<S>>(tables: U, callback?: Join2.Predicate<S, U>, optional?: Dict<boolean, Keys<U>>): Selection<Join2.Output<S, U>>; | ||
get<T extends Keys<S>, K extends Keys<S[T]>>(table: T, query: Query<S[T]>, cursor?: Driver.Cursor<K>): Promise<Pick<S[T], K>[]>; | ||
@@ -388,0 +388,0 @@ eval<T extends Keys<S>, U>(table: T, expr: Selection.Callback<S[T], U, true>, query?: Query<S[T]>): Promise<U>; |
{ | ||
"name": "minato", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "Type Driven Database Framework", | ||
@@ -45,5 +45,5 @@ "type": "module", | ||
"dependencies": { | ||
"cordis": "^3.12.0", | ||
"cordis": "^3.13.4", | ||
"cosmokit": "^1.5.2" | ||
} | ||
} |
@@ -117,4 +117,4 @@ import { Dict, Intersect, makeArray, MaybeArray, valueMap } from 'cosmokit' | ||
join<U extends Join1.Input<S>>(tables: U, callback?: Join1.Predicate<S, U>, optional?: boolean[]): Selection<Join1.Output<S, U>> | ||
join<U extends Join2.Input<S>>(tables: U, callback?: Join2.Predicate<S, U>, optional?: Dict<boolean, Keys<U>>): Selection<Join2.Output<S, U>> | ||
join<const U extends Join1.Input<S>>(tables: U, callback?: Join1.Predicate<S, U>, optional?: boolean[]): Selection<Join1.Output<S, U>> | ||
join<const U extends Join2.Input<S>>(tables: U, callback?: Join2.Predicate<S, U>, optional?: Dict<boolean, Keys<U>>): Selection<Join2.Output<S, U>> | ||
join(tables: any, query?: any, optional?: any) { | ||
@@ -121,0 +121,0 @@ if (Array.isArray(tables)) { |
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
184648
Updatedcordis@^3.13.4