@ronin/compiler
Advanced tools
Comparing version 0.13.7-leo-ron-1071-experimental-299 to 0.13.7-leo-ron-1071-experimental-300
@@ -185,18 +185,18 @@ /** | ||
}; | ||
type ModelField = (ModelFieldBasics & { | ||
type ModelField = ModelFieldBasics & ({ | ||
/** The kind of value that should be stored inside the field. */ | ||
type?: never; | ||
}) | (ModelFieldBasics & { | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
type: 'boolean'; | ||
}) | (ModelFieldBasics & { | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
type: 'date'; | ||
}) | (ModelFieldBasics & { | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
type: 'json'; | ||
}) | (ModelFieldBasics & { | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
type: 'blob'; | ||
}) | (ModelFieldBasics & { | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
@@ -206,3 +206,3 @@ type: 'string'; | ||
collation?: ModelFieldCollation; | ||
}) | (ModelFieldBasics & { | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
@@ -214,3 +214,3 @@ type: 'number'; | ||
increment?: boolean; | ||
}) | (ModelFieldBasics & { | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
@@ -217,0 +217,0 @@ type: 'link'; |
{ | ||
"name": "@ronin/compiler", | ||
"version": "0.13.7-leo-ron-1071-experimental-299", | ||
"version": "0.13.7-leo-ron-1071-experimental-300", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "Compiles RONIN queries to SQL statements.", |
102624