@famgia/omnify-types 0.0.47 → 0.0.49
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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
- package/schemas/omnify-schema.json +5 -0
package/dist/index.d.cts
CHANGED
|
@@ -434,6 +434,13 @@ interface SchemaOptions {
|
|
|
434
434
|
readonly authenticatablePasswordField?: string;
|
|
435
435
|
/** Guard name for authenticatable */
|
|
436
436
|
readonly authenticatableGuardName?: string;
|
|
437
|
+
/**
|
|
438
|
+
* Hide this schema from model generation.
|
|
439
|
+
* When true, migrations are still generated but models (Laravel/TypeScript) are not.
|
|
440
|
+
* Useful for system tables like cache, jobs, sessions.
|
|
441
|
+
* @default false
|
|
442
|
+
*/
|
|
443
|
+
readonly hidden?: boolean;
|
|
437
444
|
}
|
|
438
445
|
/**
|
|
439
446
|
* Schema kind - determines how the schema is processed.
|
package/dist/index.d.ts
CHANGED
|
@@ -434,6 +434,13 @@ interface SchemaOptions {
|
|
|
434
434
|
readonly authenticatablePasswordField?: string;
|
|
435
435
|
/** Guard name for authenticatable */
|
|
436
436
|
readonly authenticatableGuardName?: string;
|
|
437
|
+
/**
|
|
438
|
+
* Hide this schema from model generation.
|
|
439
|
+
* When true, migrations are still generated but models (Laravel/TypeScript) are not.
|
|
440
|
+
* Useful for system tables like cache, jobs, sessions.
|
|
441
|
+
* @default false
|
|
442
|
+
*/
|
|
443
|
+
readonly hidden?: boolean;
|
|
437
444
|
}
|
|
438
445
|
/**
|
|
439
446
|
* Schema kind - determines how the schema is processed.
|
package/package.json
CHANGED
|
@@ -97,6 +97,11 @@
|
|
|
97
97
|
"type": "array",
|
|
98
98
|
"items": { "$ref": "#/definitions/IndexDefinition" },
|
|
99
99
|
"description": "Database indexes for query optimization"
|
|
100
|
+
},
|
|
101
|
+
"hidden": {
|
|
102
|
+
"type": "boolean",
|
|
103
|
+
"default": false,
|
|
104
|
+
"description": "Hide from model generation (migrations still generated, but no Laravel/TypeScript models)"
|
|
100
105
|
}
|
|
101
106
|
}
|
|
102
107
|
},
|