@ronin/compiler 0.13.6-leo-ron-1071-experimental-298 → 0.13.7-leo-ron-1071-experimental-299
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -187,7 +187,16 @@ type ModelField = (ModelFieldBasics & {
|
|
187
187
|
type?: never;
|
188
188
|
}) | (ModelFieldBasics & {
|
189
189
|
/** The kind of value that should be stored inside the field. */
|
190
|
-
type: 'boolean'
|
190
|
+
type: 'boolean';
|
191
|
+
}) | (ModelFieldBasics & {
|
192
|
+
/** The kind of value that should be stored inside the field. */
|
193
|
+
type: 'date';
|
194
|
+
}) | (ModelFieldBasics & {
|
195
|
+
/** The kind of value that should be stored inside the field. */
|
196
|
+
type: 'json';
|
197
|
+
}) | (ModelFieldBasics & {
|
198
|
+
/** The kind of value that should be stored inside the field. */
|
199
|
+
type: 'blob';
|
191
200
|
}) | (ModelFieldBasics & {
|
192
201
|
/** The kind of value that should be stored inside the field. */
|
193
202
|
type: 'string';
|
package/package.json
CHANGED