@famgia/omnify-typescript 0.0.93 → 0.0.95
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@famgia/omnify-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.95",
|
|
4
4
|
"description": "TypeScript type definitions generator for Omnify schemas",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"directory": "packages/typescript-generator"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@famgia/omnify-types": "0.0.
|
|
51
|
+
"@famgia/omnify-types": "0.0.105"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"zod": "^3.0.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Omnify schema creation workflow - Use /omnify-schema command"
|
|
3
|
-
globs: ["schemas/**/*.yaml", "schemas/**/*.yml"]
|
|
3
|
+
globs: ["schemas/**/*.yaml", "schemas/**/*.yml", "{{LARAVEL_BASE}}/database/migrations/**"]
|
|
4
4
|
alwaysApply: false
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -28,7 +28,7 @@ alwaysApply: false
|
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
30
|
# Read the schema guide
|
|
31
|
-
cat .claude/guides/schema-guide.md
|
|
31
|
+
cat .claude/omnify/guides/omnify/schema-guide.md
|
|
32
32
|
# OR
|
|
33
33
|
cat packages/omnify/ai-guides/schema-guide.md
|
|
34
34
|
```
|
|
@@ -254,7 +254,7 @@ php artisan migrate:rollback
|
|
|
254
254
|
|
|
255
255
|
```bash
|
|
256
256
|
# 1. Read guide
|
|
257
|
-
cat .claude/guides/schema-guide.md
|
|
257
|
+
cat .claude/omnify/guides/omnify/schema-guide.md
|
|
258
258
|
|
|
259
259
|
# 2. Create schema file
|
|
260
260
|
# schemas/shop/Product.yaml
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Omnify schema creation workflow - Use /schema-create command"
|
|
3
|
-
globs: ["schemas/**/*.yaml", "schemas/**/*.yml"]
|
|
3
|
+
globs: ["schemas/**/*.yaml", "schemas/**/*.yml", "{{LARAVEL_BASE}}/database/migrations/**"]
|
|
4
4
|
alwaysApply: false
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -28,7 +28,7 @@ alwaysApply: false
|
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
30
|
# Read the schema guide
|
|
31
|
-
cat .claude/guides/schema-guide.md
|
|
31
|
+
cat .claude/omnify/guides/omnify/schema-guide.md
|
|
32
32
|
# OR
|
|
33
33
|
cat packages/omnify/ai-guides/schema-guide.md
|
|
34
34
|
```
|
|
@@ -254,7 +254,7 @@ php artisan migrate:rollback
|
|
|
254
254
|
|
|
255
255
|
```bash
|
|
256
256
|
# 1. Read guide
|
|
257
|
-
cat .claude/guides/schema-guide.md
|
|
257
|
+
cat .claude/omnify/guides/omnify/schema-guide.md
|
|
258
258
|
|
|
259
259
|
# 2. Create schema file
|
|
260
260
|
# schemas/shop/Product.yaml
|