@ronin/compiler
Advanced tools
Comparing version 0.14.12 to 0.14.13-leo-ron-1099-1-experimental-354
@@ -98,3 +98,3 @@ /** | ||
}; | ||
type ForInstruction = Array<string> | Record<string, string>; | ||
type UsingInstruction = Array<string> | Record<string, string>; | ||
type CombinedInstructions = { | ||
@@ -109,5 +109,5 @@ with?: WithInstruction | Array<WithInstruction>; | ||
limitedTo?: number; | ||
for?: ForInstruction; | ||
using?: UsingInstruction; | ||
}; | ||
type InstructionSchema = 'with' | 'to' | 'including' | 'selecting' | 'orderedBy' | 'orderedBy.ascending' | 'orderedBy.descending' | 'before' | 'after' | 'limitedTo' | 'for'; | ||
type InstructionSchema = 'with' | 'to' | 'including' | 'selecting' | 'orderedBy' | 'orderedBy.ascending' | 'orderedBy.descending' | 'before' | 'after' | 'limitedTo' | 'using'; | ||
type GetQuery = Record<string, Omit<CombinedInstructions, 'to'> | null>; | ||
@@ -117,3 +117,3 @@ type SetQuery = Record<string, Omit<CombinedInstructions, 'to'> & { | ||
}>; | ||
type AddQuery = Record<string, Omit<CombinedInstructions, 'with' | 'for'> & { | ||
type AddQuery = Record<string, Omit<CombinedInstructions, 'with' | 'using'> & { | ||
to: FieldSelector; | ||
@@ -127,3 +127,3 @@ }>; | ||
}; | ||
type AddInstructions = Omit<CombinedInstructions, 'with' | 'for'> & { | ||
type AddInstructions = Omit<CombinedInstructions, 'with' | 'using'> & { | ||
to: FieldSelector; | ||
@@ -130,0 +130,0 @@ }; |
{ | ||
"name": "@ronin/compiler", | ||
"version": "0.14.12", | ||
"version": "0.14.13-leo-ron-1099-1-experimental-354", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "Compiles RONIN queries to SQL statements.", |
Sorry, the diff of this file is too big to display
110746
2555