@omnifyjp/ts 6.3.2 → 6.3.3

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/cli.js CHANGED
File without changes
package/dist/types.d.ts CHANGED
@@ -329,6 +329,12 @@ export interface PropertyDefinition {
329
329
  readonly min?: number;
330
330
  readonly max?: number;
331
331
  readonly unsigned?: boolean;
332
+ /**
333
+ * AUTO_INCREMENT on this column (#175). TinyInt/Int/BigInt only, and only on
334
+ * the table's single-column primary key. Read by the model generator: an
335
+ * integer primary key WITHOUT it gets `$incrementing = false`.
336
+ */
337
+ readonly autoIncrement?: boolean;
332
338
  readonly precision?: number;
333
339
  readonly scale?: number;
334
340
  readonly pattern?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omnifyjp/ts",
3
- "version": "6.3.2",
3
+ "version": "6.3.3",
4
4
  "description": "TypeScript model type generator from Omnify schemas.json",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",