@omnifyjp/omnify 3.12.2 → 3.12.4
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/package.json +6 -6
- package/ts-dist/types.d.ts +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnifyjp/omnify",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.4",
|
|
4
4
|
"description": "Schema-driven code generation for Laravel, TypeScript, and SQL",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"zod": "^3.24.0"
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@omnifyjp/omnify-darwin-arm64": "3.12.
|
|
40
|
-
"@omnifyjp/omnify-darwin-x64": "3.12.
|
|
41
|
-
"@omnifyjp/omnify-linux-x64": "3.12.
|
|
42
|
-
"@omnifyjp/omnify-linux-arm64": "3.12.
|
|
43
|
-
"@omnifyjp/omnify-win32-x64": "3.12.
|
|
39
|
+
"@omnifyjp/omnify-darwin-arm64": "3.12.4",
|
|
40
|
+
"@omnifyjp/omnify-darwin-x64": "3.12.4",
|
|
41
|
+
"@omnifyjp/omnify-linux-x64": "3.12.4",
|
|
42
|
+
"@omnifyjp/omnify-linux-arm64": "3.12.4",
|
|
43
|
+
"@omnifyjp/omnify-win32-x64": "3.12.4"
|
|
44
44
|
}
|
|
45
45
|
}
|
package/ts-dist/types.d.ts
CHANGED
|
@@ -16,7 +16,13 @@ export interface FileConfigExport {
|
|
|
16
16
|
}
|
|
17
17
|
/** Top-level schemas.json structure. */
|
|
18
18
|
export interface SchemasJson {
|
|
19
|
-
|
|
19
|
+
/**
|
|
20
|
+
* Optional. Removed from omnify-go output in #52 to make schemas.json
|
|
21
|
+
* byte-deterministic so backends can commit it as a build artifact.
|
|
22
|
+
* Kept here as optional for backwards compat with previously committed
|
|
23
|
+
* schemas.json files that still contain the field.
|
|
24
|
+
*/
|
|
25
|
+
readonly generatedAt?: string;
|
|
20
26
|
readonly database: {
|
|
21
27
|
readonly driver: string;
|
|
22
28
|
};
|