@ronin/compiler
Advanced tools
Comparing version 0.13.5 to 0.13.6
@@ -187,6 +187,9 @@ /** | ||
/** The kind of value that should be stored inside the field. */ | ||
type?: 'boolean' | 'date' | 'json'; | ||
type?: never; | ||
}) | (ModelFieldBasics & { | ||
/** The kind of value that should be stored inside the field. */ | ||
type?: 'string'; | ||
type: 'boolean' | 'date' | 'json'; | ||
}) | (ModelFieldBasics & { | ||
/** The kind of value that should be stored inside the field. */ | ||
type: 'string'; | ||
/** The collation sequence to use for the field value. */ | ||
@@ -196,3 +199,3 @@ collation?: ModelFieldCollation; | ||
/** The kind of value that should be stored inside the field. */ | ||
type?: 'number'; | ||
type: 'number'; | ||
/** | ||
@@ -204,3 +207,3 @@ * Automatically increments the value of the field with every new inserted record. | ||
/** The kind of value that should be stored inside the field. */ | ||
type?: 'link'; | ||
type: 'link'; | ||
/** The target model of the relationship that is being established. */ | ||
@@ -207,0 +210,0 @@ target: string; |
{ | ||
"name": "@ronin/compiler", | ||
"version": "0.13.5", | ||
"version": "0.13.6", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "Compiles RONIN queries to SQL statements.", |
102417
2314