@ronin/compiler 0.14.6-corny-ron-1099-experimental-332 → 0.14.6-corny-ron-1099-experimental-333

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -207,7 +207,7 @@ type ModelFieldBasics = {
207
207
  */
208
208
  computedAs?: {
209
209
  kind: 'VIRTUAL' | 'STORED';
210
- value: Expression | unknown | ((fields: Record<string, string>) => string);
210
+ value: ((fields: Record<string, string>) => string) | string | Expression;
211
211
  };
212
212
  /** An expression that gets evaluated every time a value is provided for the field. */
213
213
  check?: Expression | ((fields: Record<string, string>) => string);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ronin/compiler",
3
- "version": "0.14.6-corny-ron-1099-experimental-332",
3
+ "version": "0.14.6-corny-ron-1099-experimental-333",
4
4
  "type": "module",
5
5
  "description": "Compiles RONIN queries to SQL statements.",
6
6
  "publishConfig": {