@ronin/compiler
Advanced tools
Comparing version 0.17.6 to 0.17.7-leo-ron-1099-experimental-393
@@ -120,2 +120,10 @@ /** | ||
type CountQuery = Record<string, Omit<CombinedInstructions, 'to'> | null>; | ||
type AllQueryInstructions = { | ||
for?: string; | ||
}; | ||
type AllQuery = { | ||
all: AllQueryInstructions | null; | ||
}; | ||
type GetAllQuery = AllQuery; | ||
type CountAllQuery = AllQuery; | ||
type GetInstructions = Omit<CombinedInstructions, 'to'>; | ||
@@ -162,4 +170,4 @@ type SetInstructions = Omit<CombinedInstructions, 'to'> & { | ||
type Query = { | ||
get?: GetQuery; | ||
set?: SetQuery; | ||
get?: GetQuery | GetAllQuery; | ||
set?: SetQuery | CountAllQuery; | ||
add?: AddQuery; | ||
@@ -166,0 +174,0 @@ remove?: RemoveQuery; |
{ | ||
"name": "@ronin/compiler", | ||
"version": "0.17.6", | ||
"version": "0.17.7-leo-ron-1099-experimental-393", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "Compiles RONIN queries to SQL statements.", |
Sorry, the diff of this file is too big to display
117767
2723