@ronin/compiler
Advanced tools
Comparing version 0.14.8 to 0.14.9-leo-ron-1099-1-experimental-341
@@ -364,3 +364,3 @@ /** | ||
type ObjectRow = Record<string, unknown>; | ||
type NativeRecord = Record<string, unknown> & { | ||
type ResultRecord = Record<string, unknown> & { | ||
id: string; | ||
@@ -375,7 +375,7 @@ ronin: { | ||
}; | ||
type SingleRecordResult<T = NativeRecord> = { | ||
type SingleRecordResult<T = ResultRecord> = { | ||
record: T | null; | ||
modelFields: Record<ModelField['slug'], ModelField['type']>; | ||
}; | ||
type MultipleRecordResult<T = NativeRecord> = { | ||
type MultipleRecordResult<T = ResultRecord> = { | ||
records: Array<T>; | ||
@@ -389,3 +389,3 @@ moreAfter?: string; | ||
}; | ||
type Result<T = NativeRecord> = SingleRecordResult<T> | MultipleRecordResult<T> | AmountResult; | ||
type Result<T = ResultRecord> = SingleRecordResult<T> | MultipleRecordResult<T> | AmountResult; | ||
@@ -414,2 +414,2 @@ interface TransactionOptions { | ||
export { type AddInstructions, type AddQuery, type AddInstructions as AddQueryInstructions, type AlterQuery, type CombinedInstructions, type CountInstructions, type CountQuery, type CountInstructions as CountQueryInstructions, type CreateQuery, type DropQuery, type GetInstructions, type GetQuery, type GetInstructions as GetQueryInstructions, type PublicModel as Model, type ModelField, type ModelIndex, type ModelPreset, type ModelTrigger, QUERY_SYMBOLS, type Query, type QueryInstructionType as QueryInstruction, type QuerySchemaType, type QueryType, CLEAN_ROOT_MODEL as ROOT_MODEL, type RemoveInstructions, type RemoveQuery, type RemoveInstructions as RemoveQueryInstructions, type Result, RoninError, type SetInstructions, type SetQuery, type SetInstructions as SetQueryInstructions, type Statement, type StoredObject, Transaction, type WithInstruction, getQuerySymbol }; | ||
export { type AddInstructions, type AddQuery, type AddInstructions as AddQueryInstructions, type AlterQuery, type CombinedInstructions, type CountInstructions, type CountQuery, type CountInstructions as CountQueryInstructions, type CreateQuery, type DropQuery, type GetInstructions, type GetQuery, type GetInstructions as GetQueryInstructions, type PublicModel as Model, type ModelField, type ModelIndex, type ModelPreset, type ModelTrigger, QUERY_SYMBOLS, type Query, type QueryInstructionType as QueryInstruction, type QuerySchemaType, type QueryType, CLEAN_ROOT_MODEL as ROOT_MODEL, type RemoveInstructions, type RemoveQuery, type RemoveInstructions as RemoveQueryInstructions, type Result, type ResultRecord, RoninError, type SetInstructions, type SetQuery, type SetInstructions as SetQueryInstructions, type Statement, type StoredObject, Transaction, type WithInstruction, getQuerySymbol }; |
{ | ||
"name": "@ronin/compiler", | ||
"version": "0.14.8", | ||
"version": "0.14.9-leo-ron-1099-1-experimental-341", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "Compiles RONIN queries to SQL statements.", |
Sorry, the diff of this file is too big to display
112207
2568