drizzle-kit 0.17.0 → 0.17.1-2d0a8cb
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.
Potentially problematic release.
This version of drizzle-kit might be problematic. Click here for more details.
- package/index.d.ts +14 -0
- package/index.js +20159 -18839
- package/package.json +10 -5
- package/readme.md +2 -2
- package/utils.js +165 -85
package/index.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type Config = {
|
|
2
|
+
out?: string | undefined;
|
|
3
|
+
breakpoints?: boolean | undefined;
|
|
4
|
+
tablesFilter?: string | string[] | undefined;
|
|
5
|
+
schema: string | string[];
|
|
6
|
+
} & ({
|
|
7
|
+
port?: number | undefined;
|
|
8
|
+
password?: string | undefined;
|
|
9
|
+
host: string;
|
|
10
|
+
user: string;
|
|
11
|
+
database: string;
|
|
12
|
+
} | {
|
|
13
|
+
connectionString: string;
|
|
14
|
+
} | {});
|