Comparing version 1.0.16 to 1.0.17
@@ -192,11 +192,11 @@ type RecursivePartial<T> = { | ||
/** Perform specific matching actions (such as "is", "contains", or "startsWith") on the fields of a record. */ | ||
where: Partial<Where<RecursiveNullish<TSchema>>> | Array<Partial<Where<RecursiveNullish<TSchema>>>>; | ||
where: RecursiveNullish<Where<TSchema>> | Array<RecursiveNullish<Where<TSchema>>>; | ||
/** Perform "is" matching actions on the fields of a record. */ | ||
with: Partial<With<RecursiveNullish<TSchema>>> | Array<Partial<With<RecursiveNullish<TSchema>>>>; | ||
with: RecursiveNullish<With<TSchema>> | Array<RecursiveNullish<With<TSchema>>>; | ||
/** Order the resulting records using a specific field. */ | ||
orderedBy: Partial<OrderedBy<TSchema>>; | ||
orderedBy: RecursivePartial<OrderedBy<TSchema>>; | ||
/** Resolve records in a specific variant. */ | ||
in: Partial<Variants>; | ||
in: Array<Variants>; | ||
/** Resolve the records associated with certain fields of type "Record". */ | ||
including: Array<Partial<RONIN.Includes[TSlug]>>; | ||
including: Array<RecursivePartial<RONIN.Includes[TSlug]>>; | ||
/** | ||
@@ -219,3 +219,3 @@ * Set the maximum number of records to be retrieved before a subsequent page must be requested. | ||
/** Perform mutations on the fields of a record or add new fields to it. */ | ||
to: Partial<To<RecursiveNullish<TSchema>>>; | ||
to: RecursiveNullish<To<TSchema>>; | ||
} | ||
@@ -222,0 +222,0 @@ export interface Includes extends Record<SchemaSlugKey, Array<string>> { |
{ | ||
"version": "1.0.16", | ||
"version": "1.0.17", | ||
"name": "ronin", | ||
@@ -4,0 +4,0 @@ "scripts": { |
30840