drizzle-kit 0.21.1-674c9c2 → 0.21.1-c7223b2
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/bin.cjs +19336 -12355
- package/index.d.mts +2 -2
- package/index.d.ts +2 -2
- package/package.json +2 -1
- package/payload.js +347 -341
- package/payload.mjs +347 -341
package/index.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import { SslOptions } from 'mysql2';
|
|
|
2
2
|
import * as zod from 'zod';
|
|
3
3
|
import { TypeOf } from 'zod';
|
|
4
4
|
|
|
5
|
-
declare const driver: zod.ZodUnion<[zod.ZodUnion<[zod.ZodLiteral<"better-sqlite">, zod.ZodLiteral<"turso">, zod.ZodLiteral<"libsql">, zod.ZodLiteral<"d1">, zod.ZodLiteral<"expo">]>, zod.ZodLiteral<"aws-data-api">, zod.ZodLiteral<"mysql2">]>;
|
|
5
|
+
declare const driver: zod.ZodUnion<[zod.ZodUnion<[zod.ZodLiteral<"better-sqlite">, zod.ZodLiteral<"turso">, zod.ZodLiteral<"libsql">, zod.ZodLiteral<"d1-http">, zod.ZodLiteral<"expo">]>, zod.ZodLiteral<"aws-data-api">, zod.ZodLiteral<"mysql2">]>;
|
|
6
6
|
type Driver = TypeOf<typeof driver>;
|
|
7
7
|
|
|
8
8
|
declare const dialect: zod.ZodEnum<["postgresql", "mysql", "sqlite"]>;
|
|
@@ -164,7 +164,7 @@ type Config = {
|
|
|
164
164
|
};
|
|
165
165
|
} | {
|
|
166
166
|
dialect: Verify<Dialect, "sqlite">;
|
|
167
|
-
driver: Verify<Driver, "d1">;
|
|
167
|
+
driver: Verify<Driver, "d1-http">;
|
|
168
168
|
dbCredentials: {
|
|
169
169
|
wranglerConfigPath: string;
|
|
170
170
|
dbName: string;
|
package/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { SslOptions } from 'mysql2';
|
|
|
2
2
|
import * as zod from 'zod';
|
|
3
3
|
import { TypeOf } from 'zod';
|
|
4
4
|
|
|
5
|
-
declare const driver: zod.ZodUnion<[zod.ZodUnion<[zod.ZodLiteral<"better-sqlite">, zod.ZodLiteral<"turso">, zod.ZodLiteral<"libsql">, zod.ZodLiteral<"d1">, zod.ZodLiteral<"expo">]>, zod.ZodLiteral<"aws-data-api">, zod.ZodLiteral<"mysql2">]>;
|
|
5
|
+
declare const driver: zod.ZodUnion<[zod.ZodUnion<[zod.ZodLiteral<"better-sqlite">, zod.ZodLiteral<"turso">, zod.ZodLiteral<"libsql">, zod.ZodLiteral<"d1-http">, zod.ZodLiteral<"expo">]>, zod.ZodLiteral<"aws-data-api">, zod.ZodLiteral<"mysql2">]>;
|
|
6
6
|
type Driver = TypeOf<typeof driver>;
|
|
7
7
|
|
|
8
8
|
declare const dialect: zod.ZodEnum<["postgresql", "mysql", "sqlite"]>;
|
|
@@ -164,7 +164,7 @@ type Config = {
|
|
|
164
164
|
};
|
|
165
165
|
} | {
|
|
166
166
|
dialect: Verify<Dialect, "sqlite">;
|
|
167
|
-
driver: Verify<Driver, "d1">;
|
|
167
|
+
driver: Verify<Driver, "d1-http">;
|
|
168
168
|
dbCredentials: {
|
|
169
169
|
wranglerConfigPath: string;
|
|
170
170
|
dbName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzle-kit",
|
|
3
|
-
"version": "0.21.1-
|
|
3
|
+
"version": "0.21.1-c7223b2",
|
|
4
4
|
"repository": "https://github.com/drizzle-team/drizzle-kit-mirror",
|
|
5
5
|
"author": "Drizzle Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
"hono": "^4.1.5",
|
|
71
71
|
"minimatch": "^7.4.3",
|
|
72
72
|
"mysql2": "2.3.3",
|
|
73
|
+
"node-fetch": "^3.3.2",
|
|
73
74
|
"pg": "^8.11.3",
|
|
74
75
|
"pluralize": "^8.0.0",
|
|
75
76
|
"postgres": "^3.4.4",
|