drizzle-kit 0.30.4-a0db3f7 → 0.30.4-a5d12b4
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/api.d.mts +13 -13
- package/api.d.ts +13 -13
- package/api.js +5209 -4444
- package/api.mjs +5209 -4444
- package/bin.cjs +5515 -21416
- package/{index-pW3Ob_Ec.d.mts → index-Z-1TKnbX.d.mts} +2 -15
- package/{index-pW3Ob_Ec.d.ts → index-Z-1TKnbX.d.ts} +2 -15
- package/index.d.mts +1 -1
- package/index.d.ts +1 -1
- package/package.json +2 -3
- package/utils.js +209 -469
- package/utils.mjs +209 -469
@@ -7,7 +7,7 @@ type CasingType = (typeof casingTypes)[number];
|
|
7
7
|
declare const drivers: readonly ["d1-http", "expo", "aws-data-api", "pglite", "durable-sqlite"];
|
8
8
|
type Driver = (typeof drivers)[number];
|
9
9
|
|
10
|
-
declare const dialects: readonly ["postgresql", "mysql", "sqlite", "turso", "singlestore"
|
10
|
+
declare const dialects: readonly ["postgresql", "mysql", "sqlite", "turso", "singlestore"];
|
11
11
|
type Dialect = (typeof dialects)[number];
|
12
12
|
|
13
13
|
type SslOptions = {
|
@@ -212,19 +212,6 @@ type Config = {
|
|
212
212
|
} | {
|
213
213
|
url: string;
|
214
214
|
};
|
215
|
-
} | {
|
216
|
-
dialect: Verify<Dialect, 'gel'>;
|
217
|
-
dbCredentials: {
|
218
|
-
tlsSecurity?: 'insecure' | 'no_host_verification' | 'strict' | 'default';
|
219
|
-
} & ({
|
220
|
-
url: string;
|
221
|
-
} | ({
|
222
|
-
host: string;
|
223
|
-
port?: number;
|
224
|
-
user?: string;
|
225
|
-
password?: string;
|
226
|
-
database: string;
|
227
|
-
}));
|
228
215
|
});
|
229
216
|
/**
|
230
217
|
* **You are currently using version 0.21.0+ of drizzle-kit. If you have just upgraded to this version, please make sure to read the changelog to understand what changes have been made and what
|
@@ -233,7 +220,7 @@ type Config = {
|
|
233
220
|
* **Config** usage:
|
234
221
|
*
|
235
222
|
* `dialect` - mandatory and is responsible for explicitly providing a databse dialect you are using for all the commands
|
236
|
-
* *Possible values*: `postgresql`, `mysql`, `sqlite`, `singlestore
|
223
|
+
* *Possible values*: `postgresql`, `mysql`, `sqlite`, `singlestore`
|
237
224
|
*
|
238
225
|
* See https://orm.drizzle.team/kit-docs/config-reference#dialect
|
239
226
|
*
|
@@ -7,7 +7,7 @@ type CasingType = (typeof casingTypes)[number];
|
|
7
7
|
declare const drivers: readonly ["d1-http", "expo", "aws-data-api", "pglite", "durable-sqlite"];
|
8
8
|
type Driver = (typeof drivers)[number];
|
9
9
|
|
10
|
-
declare const dialects: readonly ["postgresql", "mysql", "sqlite", "turso", "singlestore"
|
10
|
+
declare const dialects: readonly ["postgresql", "mysql", "sqlite", "turso", "singlestore"];
|
11
11
|
type Dialect = (typeof dialects)[number];
|
12
12
|
|
13
13
|
type SslOptions = {
|
@@ -212,19 +212,6 @@ type Config = {
|
|
212
212
|
} | {
|
213
213
|
url: string;
|
214
214
|
};
|
215
|
-
} | {
|
216
|
-
dialect: Verify<Dialect, 'gel'>;
|
217
|
-
dbCredentials: {
|
218
|
-
tlsSecurity?: 'insecure' | 'no_host_verification' | 'strict' | 'default';
|
219
|
-
} & ({
|
220
|
-
url: string;
|
221
|
-
} | ({
|
222
|
-
host: string;
|
223
|
-
port?: number;
|
224
|
-
user?: string;
|
225
|
-
password?: string;
|
226
|
-
database: string;
|
227
|
-
}));
|
228
215
|
});
|
229
216
|
/**
|
230
217
|
* **You are currently using version 0.21.0+ of drizzle-kit. If you have just upgraded to this version, please make sure to read the changelog to understand what changes have been made and what
|
@@ -233,7 +220,7 @@ type Config = {
|
|
233
220
|
* **Config** usage:
|
234
221
|
*
|
235
222
|
* `dialect` - mandatory and is responsible for explicitly providing a databse dialect you are using for all the commands
|
236
|
-
* *Possible values*: `postgresql`, `mysql`, `sqlite`, `singlestore
|
223
|
+
* *Possible values*: `postgresql`, `mysql`, `sqlite`, `singlestore`
|
237
224
|
*
|
238
225
|
* See https://orm.drizzle.team/kit-docs/config-reference#dialect
|
239
226
|
*
|
package/index.d.mts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
import 'tls';
|
2
|
-
export { a as Config, d as defineConfig } from './index-
|
2
|
+
export { a as Config, d as defineConfig } from './index-Z-1TKnbX.mjs';
|
package/index.d.ts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
import 'tls';
|
2
|
-
export { a as Config, d as defineConfig } from './index-
|
2
|
+
export { a as Config, d as defineConfig } from './index-Z-1TKnbX.js';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "drizzle-kit",
|
3
|
-
"version": "0.30.4-
|
3
|
+
"version": "0.30.4-a5d12b4",
|
4
4
|
"homepage": "https://orm.drizzle.team",
|
5
5
|
"keywords": [
|
6
6
|
"drizzle",
|
@@ -114,8 +114,7 @@
|
|
114
114
|
"wrangler": "^3.22.1",
|
115
115
|
"ws": "^8.16.0",
|
116
116
|
"zod": "^3.20.2",
|
117
|
-
"zx": "^7.2.2"
|
118
|
-
"edgedb": "1.6.0-canary.20250213T024824"
|
117
|
+
"zx": "^7.2.2"
|
119
118
|
},
|
120
119
|
"exports": {
|
121
120
|
".": {
|