@ronin/compiler
Advanced tools
Comparing version 0.14.4 to 0.14.5-leo-ron-1099-1-experimental-328
@@ -60,3 +60,17 @@ /** | ||
type FieldValue = string | number | boolean | null | unknown; | ||
type FieldSelector = Record<string, FieldValue>; | ||
type FieldSelector = Record<string, FieldValue | StoredObject>; | ||
type StoredObject = { | ||
key: string; | ||
src: string; | ||
name: string | null; | ||
placeholder: { | ||
base64: string | null; | ||
} | null; | ||
meta: { | ||
size: number; | ||
type: string; | ||
width?: number; | ||
height?: number; | ||
}; | ||
}; | ||
type Expression = { | ||
@@ -398,2 +412,2 @@ [QUERY_SYMBOLS.EXPRESSION]: string; | ||
export { type AddInstructions, type AddQuery, type AddInstructions as AddQueryInstructions, type CombinedInstructions, type CountInstructions, type CountQuery, type CountInstructions as CountQueryInstructions, 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, 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, RoninError, type SetInstructions, type SetQuery, type SetInstructions as SetQueryInstructions, type Statement, type StoredObject, Transaction, type WithInstruction, getQuerySymbol }; |
{ | ||
"name": "@ronin/compiler", | ||
"version": "0.14.4", | ||
"version": "0.14.5-leo-ron-1099-1-experimental-328", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "Compiles RONIN queries to SQL statements.", |
Sorry, the diff of this file is too big to display
111681
2557