drizzle-kit 0.20.17-9d75ea5 → 0.20.17-a2979a1
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 +26299 -25536
- package/cli/commands/migrate.d.ts +41 -41
- package/cli/commands/mysqlIntrospect.d.ts +8 -8
- package/cli/commands/pgIntrospect.d.ts +8 -8
- package/cli/commands/sqliteIntrospect.d.ts +12 -12
- package/cli/commands/utils.d.ts +2 -2
- package/cli/validations/cli.d.ts +28 -28
- package/cli/validations/common.d.ts +35 -35
- package/cli/validations/mysql.d.ts +4 -4
- package/cli/validations/outputs.d.ts +2 -1
- package/cli/validations/pg.d.ts +4 -4
- package/index.d.mts +48 -2
- package/index.d.ts +48 -2
- package/package.json +1 -1
- package/payload.js +1079 -475
- package/payload.mjs +886 -282
- package/schemaValidator.d.ts +222 -222
- package/serializer/mysqlSchema.d.ts +892 -892
- package/serializer/pgSchema.d.ts +749 -749
- package/serializer/sqliteSchema.d.ts +457 -457
- package/serializer/studio.d.ts +1 -1
- package/snapshotsDiffer.d.ts +316 -315
- package/utils-studio.js +947 -841
- package/utils-studio.mjs +920 -814
- package/utils.js +844 -219
- package/utils.mjs +819 -194
@@ -12,7 +12,7 @@ export declare const postgresDriver: import("zod").ZodLiteral<"pg">;
|
|
12
12
|
export declare const mysqlDriver: import("zod").ZodLiteral<"mysql2">;
|
13
13
|
export declare const driver: import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodLiteral<"better-sqlite">, import("zod").ZodLiteral<"turso">, import("zod").ZodLiteral<"libsql">, import("zod").ZodLiteral<"d1">, import("zod").ZodLiteral<"expo">]>, import("zod").ZodLiteral<"pg">, import("zod").ZodLiteral<"mysql2">]>;
|
14
14
|
export declare const configCommonSchema: import("zod").ZodObject<{
|
15
|
-
dialect: import("zod").ZodEnum<["
|
15
|
+
dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
|
16
16
|
schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
|
17
17
|
out: import("zod").ZodOptional<import("zod").ZodString>;
|
18
18
|
breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
@@ -20,21 +20,21 @@ export declare const configCommonSchema: import("zod").ZodObject<{
|
|
20
20
|
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
21
21
|
schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
22
22
|
}, "strip", import("zod").ZodTypeAny, {
|
23
|
-
driver?: "pg" | "turso" | "expo" | "mysql2" | "libsql" | "better-sqlite" | "d1" | undefined;
|
24
|
-
out?: string | undefined;
|
25
|
-
tablesFilter?: string | string[] | undefined;
|
26
23
|
schema: string | string[];
|
27
|
-
dialect: "mysql" | "
|
24
|
+
dialect: "mysql" | "pg" | "sqlite";
|
28
25
|
breakpoints: boolean;
|
29
26
|
schemaFilter: string | string[];
|
27
|
+
driver?: "pg" | "turso" | "better-sqlite" | "libsql" | "d1" | "mysql2" | "expo" | undefined;
|
28
|
+
out?: string | undefined;
|
29
|
+
tablesFilter?: string | string[] | undefined;
|
30
30
|
}, {
|
31
|
-
|
31
|
+
schema: string | string[];
|
32
|
+
dialect: "mysql" | "pg" | "sqlite";
|
33
|
+
driver?: "pg" | "turso" | "better-sqlite" | "libsql" | "d1" | "mysql2" | "expo" | undefined;
|
32
34
|
out?: string | undefined;
|
33
35
|
breakpoints?: boolean | undefined;
|
34
36
|
tablesFilter?: string | string[] | undefined;
|
35
37
|
schemaFilter?: string | string[] | undefined;
|
36
|
-
schema: string | string[];
|
37
|
-
dialect: "mysql" | "postgresql" | "sqlite";
|
38
38
|
}>;
|
39
39
|
export declare const casing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
|
40
40
|
export declare const introspectParams: import("zod").ZodObject<{
|
@@ -51,14 +51,14 @@ export declare const introspectParams: import("zod").ZodObject<{
|
|
51
51
|
casing?: "camel" | "preserve" | undefined;
|
52
52
|
}>>;
|
53
53
|
}, "strip", import("zod").ZodTypeAny, {
|
54
|
-
schema?: string | string[] | undefined;
|
55
|
-
tablesFilter?: string | string[] | undefined;
|
56
54
|
introspect: {
|
57
55
|
casing: "camel" | "preserve";
|
58
56
|
};
|
59
57
|
out: string;
|
60
58
|
breakpoints: boolean;
|
61
59
|
schemaFilter: string | string[];
|
60
|
+
schema?: string | string[] | undefined;
|
61
|
+
tablesFilter?: string | string[] | undefined;
|
62
62
|
}, {
|
63
63
|
schema?: string | string[] | undefined;
|
64
64
|
introspect?: {
|
@@ -79,12 +79,12 @@ export declare const configIntrospectCliSchema: import("zod").ZodObject<{
|
|
79
79
|
schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
80
80
|
introspectCasing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
|
81
81
|
}, "strip", import("zod").ZodTypeAny, {
|
82
|
-
schema?: string | string[] | undefined;
|
83
|
-
tablesFilter?: string | string[] | undefined;
|
84
82
|
out: string;
|
85
83
|
breakpoints: boolean;
|
86
84
|
schemaFilter: string | string[];
|
87
85
|
introspectCasing: "camel" | "preserve";
|
86
|
+
schema?: string | string[] | undefined;
|
87
|
+
tablesFilter?: string | string[] | undefined;
|
88
88
|
}, {
|
89
89
|
schema?: string | string[] | undefined;
|
90
90
|
out?: string | undefined;
|
@@ -102,13 +102,13 @@ export declare const configGenerateSchema: import("zod").ZodObject<{
|
|
102
102
|
out: string;
|
103
103
|
breakpoints: boolean;
|
104
104
|
}, {
|
105
|
+
schema: string | string[];
|
105
106
|
out?: string | undefined;
|
106
107
|
breakpoints?: boolean | undefined;
|
107
|
-
schema: string | string[];
|
108
108
|
}>;
|
109
109
|
export type GenerateSchema = TypeOf<typeof configGenerateSchema>;
|
110
110
|
export declare const configPushSchema: import("zod").ZodObject<{
|
111
|
-
dialect: import("zod").ZodEnum<["
|
111
|
+
dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
|
112
112
|
schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
|
113
113
|
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
114
114
|
schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
@@ -116,21 +116,21 @@ export declare const configPushSchema: import("zod").ZodObject<{
|
|
116
116
|
strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
117
117
|
out: import("zod").ZodOptional<import("zod").ZodString>;
|
118
118
|
}, "strip", import("zod").ZodTypeAny, {
|
119
|
-
out?: string | undefined;
|
120
|
-
tablesFilter?: string | string[] | undefined;
|
121
119
|
strict: boolean;
|
122
120
|
schema: string | string[];
|
123
|
-
dialect: "mysql" | "
|
121
|
+
dialect: "mysql" | "pg" | "sqlite";
|
124
122
|
schemaFilter: string | string[];
|
125
123
|
verbose: boolean;
|
124
|
+
out?: string | undefined;
|
125
|
+
tablesFilter?: string | string[] | undefined;
|
126
126
|
}, {
|
127
|
+
schema: string | string[];
|
128
|
+
dialect: "mysql" | "pg" | "sqlite";
|
127
129
|
strict?: boolean | undefined;
|
128
130
|
out?: string | undefined;
|
129
131
|
tablesFilter?: string | string[] | undefined;
|
130
132
|
schemaFilter?: string | string[] | undefined;
|
131
133
|
verbose?: boolean | undefined;
|
132
|
-
schema: string | string[];
|
133
|
-
dialect: "mysql" | "postgresql" | "sqlite";
|
134
134
|
}>;
|
135
135
|
export declare const mysqlConnectionSchema: import("zod").ZodUnion<[import("zod").ZodObject<{
|
136
136
|
host: import("zod").ZodString;
|
@@ -139,17 +139,17 @@ export declare const mysqlConnectionSchema: import("zod").ZodUnion<[import("zod"
|
|
139
139
|
password: import("zod").ZodOptional<import("zod").ZodString>;
|
140
140
|
database: import("zod").ZodString;
|
141
141
|
}, "strip", import("zod").ZodTypeAny, {
|
142
|
-
port?: number | undefined;
|
143
|
-
password?: string | undefined;
|
144
142
|
host: string;
|
145
143
|
user: string;
|
146
144
|
database: string;
|
147
|
-
}, {
|
148
145
|
port?: number | undefined;
|
149
|
-
user?: string | undefined;
|
150
146
|
password?: string | undefined;
|
147
|
+
}, {
|
151
148
|
host: string;
|
152
149
|
database: string;
|
150
|
+
port?: number | undefined;
|
151
|
+
user?: string | undefined;
|
152
|
+
password?: string | undefined;
|
153
153
|
}>, import("zod").ZodObject<{
|
154
154
|
connectionString: import("zod").ZodString;
|
155
155
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -158,7 +158,7 @@ export declare const mysqlConnectionSchema: import("zod").ZodUnion<[import("zod"
|
|
158
158
|
connectionString: string;
|
159
159
|
}>, import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>]>;
|
160
160
|
export declare const mySqlCliConfigSchema: import("zod").ZodIntersection<import("zod").ZodObject<{
|
161
|
-
dialect: import("zod").ZodEnum<["
|
161
|
+
dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
|
162
162
|
schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
|
163
163
|
out: import("zod").ZodOptional<import("zod").ZodString>;
|
164
164
|
breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
@@ -166,21 +166,21 @@ export declare const mySqlCliConfigSchema: import("zod").ZodIntersection<import(
|
|
166
166
|
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
167
167
|
schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
168
168
|
}, "strip", import("zod").ZodTypeAny, {
|
169
|
-
driver?: "pg" | "turso" | "expo" | "mysql2" | "libsql" | "better-sqlite" | "d1" | undefined;
|
170
|
-
out?: string | undefined;
|
171
|
-
tablesFilter?: string | string[] | undefined;
|
172
169
|
schema: string | string[];
|
173
|
-
dialect: "mysql" | "
|
170
|
+
dialect: "mysql" | "pg" | "sqlite";
|
174
171
|
breakpoints: boolean;
|
175
172
|
schemaFilter: string | string[];
|
173
|
+
driver?: "pg" | "turso" | "better-sqlite" | "libsql" | "d1" | "mysql2" | "expo" | undefined;
|
174
|
+
out?: string | undefined;
|
175
|
+
tablesFilter?: string | string[] | undefined;
|
176
176
|
}, {
|
177
|
-
|
177
|
+
schema: string | string[];
|
178
|
+
dialect: "mysql" | "pg" | "sqlite";
|
179
|
+
driver?: "pg" | "turso" | "better-sqlite" | "libsql" | "d1" | "mysql2" | "expo" | undefined;
|
178
180
|
out?: string | undefined;
|
179
181
|
breakpoints?: boolean | undefined;
|
180
182
|
tablesFilter?: string | string[] | undefined;
|
181
183
|
schemaFilter?: string | string[] | undefined;
|
182
|
-
schema: string | string[];
|
183
|
-
dialect: "mysql" | "postgresql" | "sqlite";
|
184
184
|
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
185
185
|
host: import("zod").ZodString;
|
186
186
|
port: import("zod").ZodOptional<import("zod").ZodNumber>;
|
@@ -188,17 +188,17 @@ export declare const mySqlCliConfigSchema: import("zod").ZodIntersection<import(
|
|
188
188
|
password: import("zod").ZodOptional<import("zod").ZodString>;
|
189
189
|
database: import("zod").ZodString;
|
190
190
|
}, "strip", import("zod").ZodTypeAny, {
|
191
|
-
port?: number | undefined;
|
192
|
-
password?: string | undefined;
|
193
191
|
host: string;
|
194
192
|
user: string;
|
195
193
|
database: string;
|
196
|
-
}, {
|
197
194
|
port?: number | undefined;
|
198
|
-
user?: string | undefined;
|
199
195
|
password?: string | undefined;
|
196
|
+
}, {
|
200
197
|
host: string;
|
201
198
|
database: string;
|
199
|
+
port?: number | undefined;
|
200
|
+
user?: string | undefined;
|
201
|
+
password?: string | undefined;
|
202
202
|
}>, import("zod").ZodObject<{
|
203
203
|
connectionString: import("zod").ZodString;
|
204
204
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -6,17 +6,17 @@ export declare const mysqlCredentials: import("zod").ZodUnion<[import("zod").Zod
|
|
6
6
|
password: import("zod").ZodOptional<import("zod").ZodString>;
|
7
7
|
database: import("zod").ZodString;
|
8
8
|
}, "strip", import("zod").ZodTypeAny, {
|
9
|
-
port?: number | undefined;
|
10
|
-
password?: string | undefined;
|
11
9
|
host: string;
|
12
10
|
user: string;
|
13
11
|
database: string;
|
14
|
-
}, {
|
15
12
|
port?: number | undefined;
|
16
|
-
user?: string | undefined;
|
17
13
|
password?: string | undefined;
|
14
|
+
}, {
|
18
15
|
host: string;
|
19
16
|
database: string;
|
17
|
+
port?: number | undefined;
|
18
|
+
user?: string | undefined;
|
19
|
+
password?: string | undefined;
|
20
20
|
}>, import("zod").ZodObject<{
|
21
21
|
url: import("zod").ZodString;
|
22
22
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -4,7 +4,6 @@ export declare const withStyle: {
|
|
4
4
|
errorWarning: (str: string) => string;
|
5
5
|
fullWarning: (str: string) => string;
|
6
6
|
suggestion: (str: string) => string;
|
7
|
-
info: (str: string) => string;
|
8
7
|
};
|
9
8
|
export declare const outputs: {
|
10
9
|
studio: {
|
@@ -16,9 +15,11 @@ export declare const outputs: {
|
|
16
15
|
common: {
|
17
16
|
ambiguousParams: (command: string) => string;
|
18
17
|
schema: (command: string) => string;
|
18
|
+
schemaConfig: (command: string) => string;
|
19
19
|
};
|
20
20
|
postgres: {
|
21
21
|
connection: {
|
22
|
+
driver: () => string;
|
22
23
|
required: () => string;
|
23
24
|
awsDataApi: () => void;
|
24
25
|
};
|
package/cli/validations/pg.d.ts
CHANGED
@@ -7,19 +7,19 @@ export declare const postgresCredentials: import("zod").ZodUnion<[import("zod").
|
|
7
7
|
database: import("zod").ZodString;
|
8
8
|
ssl: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
9
9
|
}, "strip", import("zod").ZodTypeAny, {
|
10
|
+
host: string;
|
11
|
+
user: string;
|
12
|
+
database: string;
|
10
13
|
port?: number | undefined;
|
11
14
|
password?: string | undefined;
|
12
15
|
ssl?: boolean | undefined;
|
16
|
+
}, {
|
13
17
|
host: string;
|
14
|
-
user: string;
|
15
18
|
database: string;
|
16
|
-
}, {
|
17
19
|
port?: number | undefined;
|
18
20
|
user?: string | undefined;
|
19
21
|
password?: string | undefined;
|
20
22
|
ssl?: boolean | undefined;
|
21
|
-
host: string;
|
22
|
-
database: string;
|
23
23
|
}>, import("zod").ZodObject<{
|
24
24
|
url: import("zod").ZodString;
|
25
25
|
}, "strip", import("zod").ZodTypeAny, {
|
package/index.d.mts
CHANGED
@@ -1,4 +1,50 @@
|
|
1
1
|
import { Dialect } from "./schemaValidator";
|
2
|
+
export type DbConnection = {
|
3
|
+
driver: "turso";
|
4
|
+
dbCredentials: {
|
5
|
+
url: string;
|
6
|
+
authToken?: string;
|
7
|
+
};
|
8
|
+
} | {
|
9
|
+
driver: "better-sqlite";
|
10
|
+
dbCredentials: {
|
11
|
+
url: string;
|
12
|
+
};
|
13
|
+
} | {
|
14
|
+
driver: "libsql";
|
15
|
+
dbCredentials: {
|
16
|
+
url: string;
|
17
|
+
};
|
18
|
+
} | {
|
19
|
+
driver: "d1";
|
20
|
+
dbCredentials: {
|
21
|
+
wranglerConfigPath: string;
|
22
|
+
dbName: string;
|
23
|
+
};
|
24
|
+
} | {
|
25
|
+
driver: "pg";
|
26
|
+
dbCredentials: {
|
27
|
+
host: string;
|
28
|
+
port?: number;
|
29
|
+
user?: string;
|
30
|
+
password?: string;
|
31
|
+
database: string;
|
32
|
+
ssl?: boolean;
|
33
|
+
} | {
|
34
|
+
connectionString: string;
|
35
|
+
};
|
36
|
+
} | {
|
37
|
+
driver: "mysql2";
|
38
|
+
dbCredentials: {
|
39
|
+
host: string;
|
40
|
+
port?: number;
|
41
|
+
user?: string;
|
42
|
+
password?: string;
|
43
|
+
database: string;
|
44
|
+
} | {
|
45
|
+
uri: string;
|
46
|
+
};
|
47
|
+
};
|
2
48
|
export type Config = {
|
3
49
|
dialect: Dialect;
|
4
50
|
out?: string;
|
@@ -25,7 +71,7 @@ export type Config = {
|
|
25
71
|
url: string;
|
26
72
|
};
|
27
73
|
} | {
|
28
|
-
dialect: "
|
74
|
+
dialect: "pg";
|
29
75
|
dbCredentials: {
|
30
76
|
host: string;
|
31
77
|
port?: number;
|
@@ -37,7 +83,7 @@ export type Config = {
|
|
37
83
|
url: string;
|
38
84
|
};
|
39
85
|
} | {
|
40
|
-
dialect: "
|
86
|
+
dialect: "pg";
|
41
87
|
driver: "aws-data-api";
|
42
88
|
dbCredentials: {
|
43
89
|
database: string;
|
package/index.d.ts
CHANGED
@@ -1,4 +1,50 @@
|
|
1
1
|
import { Dialect } from "./schemaValidator";
|
2
|
+
export type DbConnection = {
|
3
|
+
driver: "turso";
|
4
|
+
dbCredentials: {
|
5
|
+
url: string;
|
6
|
+
authToken?: string;
|
7
|
+
};
|
8
|
+
} | {
|
9
|
+
driver: "better-sqlite";
|
10
|
+
dbCredentials: {
|
11
|
+
url: string;
|
12
|
+
};
|
13
|
+
} | {
|
14
|
+
driver: "libsql";
|
15
|
+
dbCredentials: {
|
16
|
+
url: string;
|
17
|
+
};
|
18
|
+
} | {
|
19
|
+
driver: "d1";
|
20
|
+
dbCredentials: {
|
21
|
+
wranglerConfigPath: string;
|
22
|
+
dbName: string;
|
23
|
+
};
|
24
|
+
} | {
|
25
|
+
driver: "pg";
|
26
|
+
dbCredentials: {
|
27
|
+
host: string;
|
28
|
+
port?: number;
|
29
|
+
user?: string;
|
30
|
+
password?: string;
|
31
|
+
database: string;
|
32
|
+
ssl?: boolean;
|
33
|
+
} | {
|
34
|
+
connectionString: string;
|
35
|
+
};
|
36
|
+
} | {
|
37
|
+
driver: "mysql2";
|
38
|
+
dbCredentials: {
|
39
|
+
host: string;
|
40
|
+
port?: number;
|
41
|
+
user?: string;
|
42
|
+
password?: string;
|
43
|
+
database: string;
|
44
|
+
} | {
|
45
|
+
uri: string;
|
46
|
+
};
|
47
|
+
};
|
2
48
|
export type Config = {
|
3
49
|
dialect: Dialect;
|
4
50
|
out?: string;
|
@@ -25,7 +71,7 @@ export type Config = {
|
|
25
71
|
url: string;
|
26
72
|
};
|
27
73
|
} | {
|
28
|
-
dialect: "
|
74
|
+
dialect: "pg";
|
29
75
|
dbCredentials: {
|
30
76
|
host: string;
|
31
77
|
port?: number;
|
@@ -37,7 +83,7 @@ export type Config = {
|
|
37
83
|
url: string;
|
38
84
|
};
|
39
85
|
} | {
|
40
|
-
dialect: "
|
86
|
+
dialect: "pg";
|
41
87
|
driver: "aws-data-api";
|
42
88
|
dbCredentials: {
|
43
89
|
database: string;
|