@ronin/compiler
Advanced tools
Comparing version 0.13.7 to 0.13.8
@@ -185,14 +185,23 @@ /** | ||
}; | ||
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' | 'date' | 'json' | 'blob'; | ||
}) | (ModelFieldBasics & { | ||
type: 'boolean'; | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
type: 'date'; | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
type: 'json'; | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
type: 'blob'; | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
type: 'string'; | ||
/** The collation sequence to use for the field value. */ | ||
collation?: ModelFieldCollation; | ||
}) | (ModelFieldBasics & { | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
@@ -204,3 +213,3 @@ type: 'number'; | ||
increment?: boolean; | ||
}) | (ModelFieldBasics & { | ||
} | { | ||
/** The kind of value that should be stored inside the field. */ | ||
@@ -207,0 +216,0 @@ type: 'link'; |
{ | ||
"name": "@ronin/compiler", | ||
"version": "0.13.7", | ||
"version": "0.13.8", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "Compiles RONIN queries to SQL statements.", |
102594
2323