drizzle-kit 0.22.0-72736ba → 0.22.0-a8a3158
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 +406 -220
- package/index.d.mts +2 -8
- package/index.d.ts +2 -8
- package/package.json +2 -2
- package/payload.js +1577 -1127
- package/payload.mjs +1604 -1145
- package/utils-studio.js +100 -7
- package/utils-studio.mjs +100 -7
package/index.d.mts
CHANGED
|
@@ -3,7 +3,7 @@ import * as zod from 'zod';
|
|
|
3
3
|
import { TypeOf } from 'zod';
|
|
4
4
|
import { ConnectionOptions } from 'tls';
|
|
5
5
|
|
|
6
|
-
declare const driver: zod.ZodUnion<[zod.ZodUnion<[zod.ZodLiteral<"
|
|
6
|
+
declare const driver: zod.ZodUnion<[zod.ZodUnion<readonly [zod.ZodLiteral<"turso">, zod.ZodLiteral<"d1-http">, zod.ZodLiteral<"expo">]>, zod.ZodLiteral<"aws-data-api">, zod.ZodLiteral<"mysql2">]>;
|
|
7
7
|
type Driver = TypeOf<typeof driver>;
|
|
8
8
|
|
|
9
9
|
declare const dialect: zod.ZodEnum<["postgresql", "mysql", "sqlite"]>;
|
|
@@ -108,6 +108,7 @@ type Config = {
|
|
|
108
108
|
out?: string;
|
|
109
109
|
breakpoints?: boolean;
|
|
110
110
|
tablesFilter?: string | string[];
|
|
111
|
+
extensionsFilters?: "postgis"[];
|
|
111
112
|
schemaFilter?: string | string[];
|
|
112
113
|
schema?: string | string[];
|
|
113
114
|
verbose?: boolean;
|
|
@@ -163,13 +164,6 @@ type Config = {
|
|
|
163
164
|
} | {
|
|
164
165
|
url: string;
|
|
165
166
|
};
|
|
166
|
-
} | {
|
|
167
|
-
dialect: Verify<Dialect, "sqlite">;
|
|
168
|
-
driver: Verify<Driver, "d1">;
|
|
169
|
-
dbCredentials: {
|
|
170
|
-
wranglerConfigPath: string;
|
|
171
|
-
dbName: string;
|
|
172
|
-
};
|
|
173
167
|
} | {
|
|
174
168
|
dialect: Verify<Dialect, "sqlite">;
|
|
175
169
|
driver: Verify<Driver, "d1-http">;
|
package/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as zod from 'zod';
|
|
|
3
3
|
import { TypeOf } from 'zod';
|
|
4
4
|
import { ConnectionOptions } from 'tls';
|
|
5
5
|
|
|
6
|
-
declare const driver: zod.ZodUnion<[zod.ZodUnion<[zod.ZodLiteral<"
|
|
6
|
+
declare const driver: zod.ZodUnion<[zod.ZodUnion<readonly [zod.ZodLiteral<"turso">, zod.ZodLiteral<"d1-http">, zod.ZodLiteral<"expo">]>, zod.ZodLiteral<"aws-data-api">, zod.ZodLiteral<"mysql2">]>;
|
|
7
7
|
type Driver = TypeOf<typeof driver>;
|
|
8
8
|
|
|
9
9
|
declare const dialect: zod.ZodEnum<["postgresql", "mysql", "sqlite"]>;
|
|
@@ -108,6 +108,7 @@ type Config = {
|
|
|
108
108
|
out?: string;
|
|
109
109
|
breakpoints?: boolean;
|
|
110
110
|
tablesFilter?: string | string[];
|
|
111
|
+
extensionsFilters?: "postgis"[];
|
|
111
112
|
schemaFilter?: string | string[];
|
|
112
113
|
schema?: string | string[];
|
|
113
114
|
verbose?: boolean;
|
|
@@ -163,13 +164,6 @@ type Config = {
|
|
|
163
164
|
} | {
|
|
164
165
|
url: string;
|
|
165
166
|
};
|
|
166
|
-
} | {
|
|
167
|
-
dialect: Verify<Dialect, "sqlite">;
|
|
168
|
-
driver: Verify<Driver, "d1">;
|
|
169
|
-
dbCredentials: {
|
|
170
|
-
wranglerConfigPath: string;
|
|
171
|
-
dbName: string;
|
|
172
|
-
};
|
|
173
167
|
} | {
|
|
174
168
|
dialect: Verify<Dialect, "sqlite">;
|
|
175
169
|
driver: Verify<Driver, "d1-http">;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzle-kit",
|
|
3
|
-
"version": "0.22.0-
|
|
3
|
+
"version": "0.22.0-a8a3158",
|
|
4
4
|
"repository": "https://github.com/drizzle-team/drizzle-kit-mirror",
|
|
5
5
|
"author": "Drizzle Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"dockerode": "^3.3.4",
|
|
62
62
|
"dotenv": "^16.0.3",
|
|
63
63
|
"drizzle-kit": "0.21.2",
|
|
64
|
-
"drizzle-orm": "0.31.0-
|
|
64
|
+
"drizzle-orm": "0.31.0-6df4b83",
|
|
65
65
|
"esbuild-node-externals": "^1.9.0",
|
|
66
66
|
"eslint": "^8.57.0",
|
|
67
67
|
"eslint-config-prettier": "^9.1.0",
|