@zenstackhq/orm 3.3.0-beta.1 → 3.3.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenstackhq/orm",
3
- "version": "3.3.0-beta.1",
3
+ "version": "3.3.0-beta.3",
4
4
  "description": "ZenStack ORM",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -50,6 +50,16 @@
50
50
  "default": "./dist/dialects/postgres.cjs"
51
51
  }
52
52
  },
53
+ "./dialects/mysql": {
54
+ "import": {
55
+ "types": "./dist/dialects/mysql.d.ts",
56
+ "default": "./dist/dialects/mysql.js"
57
+ },
58
+ "require": {
59
+ "types": "./dist/dialects/mysql.d.cts",
60
+ "default": "./dist/dialects/mysql.cjs"
61
+ }
62
+ },
53
63
  "./dialects/sql.js": {
54
64
  "import": {
55
65
  "types": "./dist/dialects/sql.js.d.ts",
@@ -88,12 +98,13 @@
88
98
  "ulid": "^3.0.0",
89
99
  "uuid": "^11.0.5",
90
100
  "zod-validation-error": "^4.0.1",
91
- "@zenstackhq/common-helpers": "3.3.0-beta.1",
92
- "@zenstackhq/schema": "3.3.0-beta.1"
101
+ "@zenstackhq/schema": "3.3.0-beta.3",
102
+ "@zenstackhq/common-helpers": "3.3.0-beta.3"
93
103
  },
94
104
  "peerDependencies": {
95
105
  "better-sqlite3": "^12.5.0",
96
106
  "pg": "^8.13.1",
107
+ "mysql2": "^3.16.1",
97
108
  "sql.js": "^1.13.0",
98
109
  "zod": "^4.0.0"
99
110
  },
@@ -104,6 +115,9 @@
104
115
  "pg": {
105
116
  "optional": true
106
117
  },
118
+ "mysql2": {
119
+ "optional": true
120
+ },
107
121
  "sql.js": {
108
122
  "optional": true
109
123
  }
@@ -115,9 +129,9 @@
115
129
  "@types/toposort": "^2.0.7",
116
130
  "tsx": "^4.19.2",
117
131
  "zod": "^4.1.0",
118
- "@zenstackhq/eslint-config": "3.3.0-beta.1",
119
- "@zenstackhq/typescript-config": "3.3.0-beta.1",
120
- "@zenstackhq/vitest-config": "3.3.0-beta.1"
132
+ "@zenstackhq/eslint-config": "3.3.0-beta.3",
133
+ "@zenstackhq/vitest-config": "3.3.0-beta.3",
134
+ "@zenstackhq/typescript-config": "3.3.0-beta.3"
121
135
  },
122
136
  "scripts": {
123
137
  "build": "tsc --noEmit && tsup-node",