@better-auth/cli 1.3.5 → 1.3.6-beta.2

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/dist/index.mjs +1 -1
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -2179,7 +2179,7 @@ const generateDrizzleSchema = async ({
2179
2179
  if (databaseType === "pg") {
2180
2180
  id = `serial("id").primaryKey()`;
2181
2181
  } else {
2182
- id = `int("id").autoincrement.primaryKey()`;
2182
+ id = `int("id").autoincrement().primaryKey()`;
2183
2183
  }
2184
2184
  } else {
2185
2185
  if (databaseType === "mysql") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@better-auth/cli",
3
- "version": "1.3.5",
3
+ "version": "1.3.6-beta.2",
4
4
  "description": "The CLI for Better Auth",
5
5
  "module": "dist/index.mjs",
6
6
  "repository": {
@@ -55,7 +55,7 @@
55
55
  "semver": "^7.7.1",
56
56
  "tinyexec": "^0.3.1",
57
57
  "yocto-spinner": "^0.1.1",
58
- "better-auth": "1.3.5"
58
+ "better-auth": "1.3.6-beta.2"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "zod": "3.25.0 || ^4.0.0"