@famgia/omnify-types 0.0.5 → 0.0.6

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.cts CHANGED
@@ -61,6 +61,8 @@ interface BasePropertyDefinition {
61
61
  readonly unique?: boolean;
62
62
  /** Field description/comment */
63
63
  readonly description?: string;
64
+ /** Previous field name for rename migrations (remove after migration runs) */
65
+ readonly renamedFrom?: string;
64
66
  }
65
67
  /**
66
68
  * String property with length constraint.
package/dist/index.d.ts CHANGED
@@ -61,6 +61,8 @@ interface BasePropertyDefinition {
61
61
  readonly unique?: boolean;
62
62
  /** Field description/comment */
63
63
  readonly description?: string;
64
+ /** Previous field name for rename migrations (remove after migration runs) */
65
+ readonly renamedFrom?: string;
64
66
  }
65
67
  /**
66
68
  * String property with length constraint.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@famgia/omnify-types",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Shared TypeScript types for omnify-schema",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",