drizzle-kit 0.24.1-0ced1ab → 0.24.1-4045fbc
Sign up to get free protection for your applications and to get access to all the features.
- package/api.js +476 -450
- package/api.mjs +476 -450
- package/bin.cjs +2709 -8867
- package/index.d.mts +4 -10
- package/index.d.ts +4 -10
- package/package.json +1 -1
- package/utils.js +0 -8
- package/utils.mjs +0 -7
package/index.d.mts
CHANGED
@@ -2,7 +2,7 @@ import { ConnectionOptions } from 'tls';
|
|
2
2
|
|
3
3
|
declare const prefixes: readonly ["index", "timestamp", "supabase", "unix", "none"];
|
4
4
|
type Prefix = (typeof prefixes)[number];
|
5
|
-
declare const drivers: readonly ["turso", "d1-http", "expo", "aws-data-api"
|
5
|
+
declare const drivers: readonly ["turso", "d1-http", "expo", "aws-data-api"];
|
6
6
|
type Driver = (typeof drivers)[number];
|
7
7
|
|
8
8
|
declare const dialects: readonly ["postgresql", "mysql", "sqlite"];
|
@@ -43,7 +43,7 @@ type Verify<T, U extends T> = U;
|
|
43
43
|
*
|
44
44
|
* ---
|
45
45
|
* `driver` - optional param that is responsible for explicitly providing a driver to use when accessing a database
|
46
|
-
* *Possible values*: `aws-data-api`, `d1-http`, `expo`, `turso
|
46
|
+
* *Possible values*: `aws-data-api`, `d1-http`, `expo`, `turso`
|
47
47
|
* If you don't use AWS Data API, D1, Turso or Expo - ypu don't need this driver. You can check a driver strategy choice here: https://orm.drizzle.team/kit-docs/upgrade-21
|
48
48
|
*
|
49
49
|
* See https://orm.drizzle.team/kit-docs/config-reference#driver
|
@@ -135,7 +135,7 @@ type Config = {
|
|
135
135
|
authToken?: string;
|
136
136
|
};
|
137
137
|
} | {
|
138
|
-
dialect:
|
138
|
+
dialect: 'sqlite';
|
139
139
|
dbCredentials: {
|
140
140
|
url: string;
|
141
141
|
};
|
@@ -159,12 +159,6 @@ type Config = {
|
|
159
159
|
secretArn: string;
|
160
160
|
resourceArn: string;
|
161
161
|
};
|
162
|
-
} | {
|
163
|
-
dialect: Verify<Dialect, 'postgresql'>;
|
164
|
-
driver: Verify<Driver, 'pglite'>;
|
165
|
-
dbCredentials: {
|
166
|
-
url: string;
|
167
|
-
};
|
168
162
|
} | {
|
169
163
|
dialect: Verify<Dialect, 'mysql'>;
|
170
164
|
dbCredentials: {
|
@@ -213,7 +207,7 @@ type Config = {
|
|
213
207
|
*
|
214
208
|
* ---
|
215
209
|
* `driver` - optional param that is responsible for explicitly providing a driver to use when accessing a database
|
216
|
-
* *Possible values*: `aws-data-api`, `d1-http`, `expo`, `turso
|
210
|
+
* *Possible values*: `aws-data-api`, `d1-http`, `expo`, `turso`
|
217
211
|
* If you don't use AWS Data API, D1, Turso or Expo - ypu don't need this driver. You can check a driver strategy choice here: https://orm.drizzle.team/kit-docs/upgrade-21
|
218
212
|
*
|
219
213
|
* See https://orm.drizzle.team/kit-docs/config-reference#driver
|
package/index.d.ts
CHANGED
@@ -2,7 +2,7 @@ import { ConnectionOptions } from 'tls';
|
|
2
2
|
|
3
3
|
declare const prefixes: readonly ["index", "timestamp", "supabase", "unix", "none"];
|
4
4
|
type Prefix = (typeof prefixes)[number];
|
5
|
-
declare const drivers: readonly ["turso", "d1-http", "expo", "aws-data-api"
|
5
|
+
declare const drivers: readonly ["turso", "d1-http", "expo", "aws-data-api"];
|
6
6
|
type Driver = (typeof drivers)[number];
|
7
7
|
|
8
8
|
declare const dialects: readonly ["postgresql", "mysql", "sqlite"];
|
@@ -43,7 +43,7 @@ type Verify<T, U extends T> = U;
|
|
43
43
|
*
|
44
44
|
* ---
|
45
45
|
* `driver` - optional param that is responsible for explicitly providing a driver to use when accessing a database
|
46
|
-
* *Possible values*: `aws-data-api`, `d1-http`, `expo`, `turso
|
46
|
+
* *Possible values*: `aws-data-api`, `d1-http`, `expo`, `turso`
|
47
47
|
* If you don't use AWS Data API, D1, Turso or Expo - ypu don't need this driver. You can check a driver strategy choice here: https://orm.drizzle.team/kit-docs/upgrade-21
|
48
48
|
*
|
49
49
|
* See https://orm.drizzle.team/kit-docs/config-reference#driver
|
@@ -135,7 +135,7 @@ type Config = {
|
|
135
135
|
authToken?: string;
|
136
136
|
};
|
137
137
|
} | {
|
138
|
-
dialect:
|
138
|
+
dialect: 'sqlite';
|
139
139
|
dbCredentials: {
|
140
140
|
url: string;
|
141
141
|
};
|
@@ -159,12 +159,6 @@ type Config = {
|
|
159
159
|
secretArn: string;
|
160
160
|
resourceArn: string;
|
161
161
|
};
|
162
|
-
} | {
|
163
|
-
dialect: Verify<Dialect, 'postgresql'>;
|
164
|
-
driver: Verify<Driver, 'pglite'>;
|
165
|
-
dbCredentials: {
|
166
|
-
url: string;
|
167
|
-
};
|
168
162
|
} | {
|
169
163
|
dialect: Verify<Dialect, 'mysql'>;
|
170
164
|
dbCredentials: {
|
@@ -213,7 +207,7 @@ type Config = {
|
|
213
207
|
*
|
214
208
|
* ---
|
215
209
|
* `driver` - optional param that is responsible for explicitly providing a driver to use when accessing a database
|
216
|
-
* *Possible values*: `aws-data-api`, `d1-http`, `expo`, `turso
|
210
|
+
* *Possible values*: `aws-data-api`, `d1-http`, `expo`, `turso`
|
217
211
|
* If you don't use AWS Data API, D1, Turso or Expo - ypu don't need this driver. You can check a driver strategy choice here: https://orm.drizzle.team/kit-docs/upgrade-21
|
218
212
|
*
|
219
213
|
* See https://orm.drizzle.team/kit-docs/config-reference#driver
|
package/package.json
CHANGED
package/utils.js
CHANGED
@@ -570,7 +570,6 @@ __export(utils_exports, {
|
|
570
570
|
dryJournal: () => dryJournal,
|
571
571
|
isPgArrayType: () => isPgArrayType,
|
572
572
|
kloudMeta: () => kloudMeta,
|
573
|
-
normalisePGliteUrl: () => normalisePGliteUrl,
|
574
573
|
normaliseSQLiteUrl: () => normaliseSQLiteUrl,
|
575
574
|
objectValues: () => objectValues,
|
576
575
|
prepareMigrationFolder: () => prepareMigrationFolder,
|
@@ -5741,12 +5740,6 @@ var normaliseSQLiteUrl = (it, type) => {
|
|
5741
5740
|
}
|
5742
5741
|
assertUnreachable(type);
|
5743
5742
|
};
|
5744
|
-
var normalisePGliteUrl = (it) => {
|
5745
|
-
if (it.startsWith("file:")) {
|
5746
|
-
return it.substring(5);
|
5747
|
-
}
|
5748
|
-
return it;
|
5749
|
-
};
|
5750
5743
|
function isPgArrayType(sqlType) {
|
5751
5744
|
return sqlType.match(/.*\[\d*\].*|.*\[\].*/g) !== null;
|
5752
5745
|
}
|
@@ -5758,7 +5751,6 @@ function isPgArrayType(sqlType) {
|
|
5758
5751
|
dryJournal,
|
5759
5752
|
isPgArrayType,
|
5760
5753
|
kloudMeta,
|
5761
|
-
normalisePGliteUrl,
|
5762
5754
|
normaliseSQLiteUrl,
|
5763
5755
|
objectValues,
|
5764
5756
|
prepareMigrationFolder,
|
package/utils.mjs
CHANGED
@@ -5721,12 +5721,6 @@ var normaliseSQLiteUrl = (it, type) => {
|
|
5721
5721
|
}
|
5722
5722
|
assertUnreachable(type);
|
5723
5723
|
};
|
5724
|
-
var normalisePGliteUrl = (it) => {
|
5725
|
-
if (it.startsWith("file:")) {
|
5726
|
-
return it.substring(5);
|
5727
|
-
}
|
5728
|
-
return it;
|
5729
|
-
};
|
5730
5724
|
function isPgArrayType(sqlType) {
|
5731
5725
|
return sqlType.match(/.*\[\d*\].*|.*\[\].*/g) !== null;
|
5732
5726
|
}
|
@@ -5737,7 +5731,6 @@ export {
|
|
5737
5731
|
dryJournal,
|
5738
5732
|
isPgArrayType,
|
5739
5733
|
kloudMeta,
|
5740
|
-
normalisePGliteUrl,
|
5741
5734
|
normaliseSQLiteUrl,
|
5742
5735
|
objectValues,
|
5743
5736
|
prepareMigrationFolder,
|