@zenstackhq/schema 3.5.0-beta.4 → 3.5.0

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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +4 -4
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # @zenstackhq/schema
2
+
3
+ Runtime schema representation for ZenStack. Defines the TypeScript types and accessor utilities for the compiled schema that `zenstack generate` produces from ZModel files. This schema object describes models, fields, relations, expressions, and other metadata used by packages like `@zenstackhq/orm` and `@zenstackhq/server` at runtime.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @zenstackhq/schema
9
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenstackhq/schema",
3
- "version": "3.5.0-beta.4",
3
+ "version": "3.5.0",
4
4
  "description": "ZenStack Runtime Schema",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -29,9 +29,9 @@
29
29
  "decimal.js": "^10.4.3"
30
30
  },
31
31
  "devDependencies": {
32
- "@zenstackhq/typescript-config": "3.5.0-beta.4",
33
- "@zenstackhq/vitest-config": "3.5.0-beta.4",
34
- "@zenstackhq/eslint-config": "3.5.0-beta.4"
32
+ "@zenstackhq/eslint-config": "3.5.0",
33
+ "@zenstackhq/typescript-config": "3.5.0",
34
+ "@zenstackhq/vitest-config": "3.5.0"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "tsc --noEmit && tsup-node",