drizzle-kit 0.20.17-7776aba → 0.20.17-8b4d89e
Sign up to get free protection for your applications and to get access to all the features.
- package/bin.cjs +28055 -26868
- package/cli/commands/migrate.d.ts +152 -135
- package/cli/commands/mysqlIntrospect.d.ts +15 -79
- package/cli/commands/mysqlPushUtils.d.ts +4 -8
- package/cli/commands/pgIntrospect.d.ts +12 -76
- package/cli/commands/pgPushUtils.d.ts +3 -6
- package/cli/commands/sqliteIntrospect.d.ts +26 -29
- package/cli/commands/sqlitePushUtils.d.ts +4 -10
- package/cli/commands/utils.d.ts +39 -255
- package/cli/utils.d.ts +12 -0
- package/cli/validations/cli.d.ts +169 -0
- package/cli/validations/common.d.ts +208 -7
- package/cli/validations/mysql.d.ts +7 -337
- package/cli/validations/outputs.d.ts +1 -0
- package/cli/validations/pg.d.ts +4 -405
- package/cli/validations/sqlite.d.ts +34 -0
- package/cli/views.d.ts +7 -5
- package/global.d.ts +3 -1
- package/index.d.mts +8 -6
- package/index.d.ts +8 -6
- package/index.js +1 -0
- package/introspect-sqlite.d.ts +2 -2
- package/jsonDiffer.d.ts +14 -29
- package/jsonStatements.d.ts +38 -11
- package/package.json +24 -52
- package/payload.d.mts +5 -5
- package/payload.d.ts +5 -5
- package/payload.js +34054 -32232
- package/payload.mjs +26477 -24666
- package/schemaValidator.d.ts +289 -286
- package/serializer/mysqlImports.d.ts +3 -7
- package/serializer/mysqlSchema.d.ts +2501 -1370
- package/serializer/mysqlSerializer.d.ts +6 -6
- package/serializer/pgImports.d.ts +2 -2
- package/serializer/pgSchema.d.ts +1741 -1282
- package/serializer/pgSerializer.d.ts +2 -2
- package/serializer/sqliteImports.d.ts +2 -4
- package/serializer/sqliteSchema.d.ts +553 -979
- package/serializer/sqliteSerializer.d.ts +4 -4
- package/snapshotsDiffer.d.ts +2486 -1209
- package/utils/words.d.ts +1 -1
- package/utils-studio.d.mts +0 -1
- package/utils-studio.d.ts +0 -1
- package/utils-studio.js +7056 -847
- package/utils-studio.mjs +7034 -828
- package/utils.d.ts +14 -141
- package/utils.js +4380 -6916
- package/utils.mjs +4593 -7129
- package/cli/commands/mysqlUp.d.ts +0 -4
- package/cli/commands/pgConnect.d.ts +0 -5
- package/cli/commands/pgUp.d.ts +0 -4
- package/cli/commands/sqliteUtils.d.ts +0 -162
- package/cli/commands/upFolders.d.ts +0 -27
- package/drivers/index.d.ts +0 -39
- package/introspect-mysql.d.ts +0 -9
- package/introspect-pg.d.ts +0 -12
@@ -0,0 +1,169 @@
|
|
1
|
+
import { TypeOf } from "zod";
|
2
|
+
export declare const cliConfigGenerate: import("zod").ZodObject<{
|
3
|
+
dialect: import("zod").ZodOptional<import("zod").ZodEnum<["pg", "mysql", "sqlite"]>>;
|
4
|
+
schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
5
|
+
out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
6
|
+
config: import("zod").ZodOptional<import("zod").ZodString>;
|
7
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
8
|
+
breakpoints: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
9
|
+
custom: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
10
|
+
}, "strict", import("zod").ZodTypeAny, {
|
11
|
+
custom: boolean;
|
12
|
+
out: string;
|
13
|
+
breakpoints: boolean;
|
14
|
+
name?: string | undefined;
|
15
|
+
schema?: string | string[] | undefined;
|
16
|
+
dialect?: "mysql" | "pg" | "sqlite" | undefined;
|
17
|
+
config?: string | undefined;
|
18
|
+
}, {
|
19
|
+
name?: string | undefined;
|
20
|
+
custom?: boolean | undefined;
|
21
|
+
schema?: string | string[] | undefined;
|
22
|
+
dialect?: "mysql" | "pg" | "sqlite" | undefined;
|
23
|
+
config?: string | undefined;
|
24
|
+
out?: string | undefined;
|
25
|
+
breakpoints?: boolean | undefined;
|
26
|
+
}>;
|
27
|
+
export type CliConfigGenerate = TypeOf<typeof cliConfigGenerate>;
|
28
|
+
export declare const pushParams: import("zod").ZodObject<{
|
29
|
+
dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
|
30
|
+
schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
31
|
+
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
32
|
+
schemaFilters: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>>;
|
33
|
+
driver: import("zod").ZodString;
|
34
|
+
connectionString: import("zod").ZodOptional<import("zod").ZodString>;
|
35
|
+
uri: import("zod").ZodOptional<import("zod").ZodString>;
|
36
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
37
|
+
host: import("zod").ZodOptional<import("zod").ZodString>;
|
38
|
+
port: import("zod").ZodOptional<import("zod").ZodString>;
|
39
|
+
user: import("zod").ZodOptional<import("zod").ZodString>;
|
40
|
+
password: import("zod").ZodOptional<import("zod").ZodString>;
|
41
|
+
database: import("zod").ZodOptional<import("zod").ZodString>;
|
42
|
+
ssl: import("zod").ZodOptional<import("zod").ZodString>;
|
43
|
+
authToken: import("zod").ZodOptional<import("zod").ZodString>;
|
44
|
+
verbose: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
45
|
+
strict: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
46
|
+
}, "strip", import("zod").ZodTypeAny, {
|
47
|
+
dialect: "mysql" | "pg" | "sqlite";
|
48
|
+
driver: string;
|
49
|
+
schemaFilters: string | string[];
|
50
|
+
strict?: boolean | undefined;
|
51
|
+
schema?: string | string[] | undefined;
|
52
|
+
url?: string | undefined;
|
53
|
+
tablesFilter?: string | string[] | undefined;
|
54
|
+
verbose?: boolean | undefined;
|
55
|
+
host?: string | undefined;
|
56
|
+
port?: string | undefined;
|
57
|
+
user?: string | undefined;
|
58
|
+
password?: string | undefined;
|
59
|
+
database?: string | undefined;
|
60
|
+
connectionString?: string | undefined;
|
61
|
+
uri?: string | undefined;
|
62
|
+
ssl?: string | undefined;
|
63
|
+
authToken?: string | undefined;
|
64
|
+
}, {
|
65
|
+
dialect: "mysql" | "pg" | "sqlite";
|
66
|
+
driver: string;
|
67
|
+
strict?: boolean | undefined;
|
68
|
+
schema?: string | string[] | undefined;
|
69
|
+
url?: string | undefined;
|
70
|
+
tablesFilter?: string | string[] | undefined;
|
71
|
+
verbose?: boolean | undefined;
|
72
|
+
host?: string | undefined;
|
73
|
+
port?: string | undefined;
|
74
|
+
user?: string | undefined;
|
75
|
+
password?: string | undefined;
|
76
|
+
database?: string | undefined;
|
77
|
+
connectionString?: string | undefined;
|
78
|
+
schemaFilters?: string | string[] | undefined;
|
79
|
+
uri?: string | undefined;
|
80
|
+
ssl?: string | undefined;
|
81
|
+
authToken?: string | undefined;
|
82
|
+
}>;
|
83
|
+
export type PushParams = TypeOf<typeof pushParams>;
|
84
|
+
export declare const pullParams: import("zod").ZodObject<{
|
85
|
+
config: import("zod").ZodOptional<import("zod").ZodString>;
|
86
|
+
dialect: import("zod").ZodOptional<import("zod").ZodEnum<["pg", "mysql", "sqlite"]>>;
|
87
|
+
out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
88
|
+
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
89
|
+
schemaFilter: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>>;
|
90
|
+
driver: import("zod").ZodOptional<import("zod").ZodString>;
|
91
|
+
connectionString: import("zod").ZodOptional<import("zod").ZodString>;
|
92
|
+
uri: import("zod").ZodOptional<import("zod").ZodString>;
|
93
|
+
host: import("zod").ZodOptional<import("zod").ZodString>;
|
94
|
+
port: import("zod").ZodOptional<import("zod").ZodString>;
|
95
|
+
user: import("zod").ZodOptional<import("zod").ZodString>;
|
96
|
+
password: import("zod").ZodOptional<import("zod").ZodString>;
|
97
|
+
database: import("zod").ZodOptional<import("zod").ZodString>;
|
98
|
+
ssl: import("zod").ZodOptional<import("zod").ZodString>;
|
99
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
100
|
+
authToken: import("zod").ZodOptional<import("zod").ZodString>;
|
101
|
+
"introspect-casing": import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
|
102
|
+
breakpoints: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
103
|
+
}, "strip", import("zod").ZodTypeAny, {
|
104
|
+
out: string;
|
105
|
+
breakpoints: boolean;
|
106
|
+
schemaFilter: string | string[];
|
107
|
+
"introspect-casing": "camel" | "preserve";
|
108
|
+
dialect?: "mysql" | "pg" | "sqlite" | undefined;
|
109
|
+
url?: string | undefined;
|
110
|
+
config?: string | undefined;
|
111
|
+
driver?: string | undefined;
|
112
|
+
tablesFilter?: string | string[] | undefined;
|
113
|
+
host?: string | undefined;
|
114
|
+
port?: string | undefined;
|
115
|
+
user?: string | undefined;
|
116
|
+
password?: string | undefined;
|
117
|
+
database?: string | undefined;
|
118
|
+
connectionString?: string | undefined;
|
119
|
+
uri?: string | undefined;
|
120
|
+
ssl?: string | undefined;
|
121
|
+
authToken?: string | undefined;
|
122
|
+
}, {
|
123
|
+
dialect?: "mysql" | "pg" | "sqlite" | undefined;
|
124
|
+
url?: string | undefined;
|
125
|
+
config?: string | undefined;
|
126
|
+
out?: string | undefined;
|
127
|
+
breakpoints?: boolean | undefined;
|
128
|
+
driver?: string | undefined;
|
129
|
+
tablesFilter?: string | string[] | undefined;
|
130
|
+
schemaFilter?: string | string[] | undefined;
|
131
|
+
host?: string | undefined;
|
132
|
+
port?: string | undefined;
|
133
|
+
user?: string | undefined;
|
134
|
+
password?: string | undefined;
|
135
|
+
database?: string | undefined;
|
136
|
+
connectionString?: string | undefined;
|
137
|
+
uri?: string | undefined;
|
138
|
+
ssl?: string | undefined;
|
139
|
+
authToken?: string | undefined;
|
140
|
+
"introspect-casing"?: "camel" | "preserve" | undefined;
|
141
|
+
}>;
|
142
|
+
export type PullParams = TypeOf<typeof pullParams>;
|
143
|
+
export declare const configCheck: import("zod").ZodObject<{
|
144
|
+
dialect: import("zod").ZodOptional<import("zod").ZodEnum<["pg", "mysql", "sqlite"]>>;
|
145
|
+
out: import("zod").ZodOptional<import("zod").ZodString>;
|
146
|
+
}, "strip", import("zod").ZodTypeAny, {
|
147
|
+
dialect?: "mysql" | "pg" | "sqlite" | undefined;
|
148
|
+
out?: string | undefined;
|
149
|
+
}, {
|
150
|
+
dialect?: "mysql" | "pg" | "sqlite" | undefined;
|
151
|
+
out?: string | undefined;
|
152
|
+
}>;
|
153
|
+
export declare const cliConfigCheck: import("zod").ZodIntersection<import("zod").ZodObject<{
|
154
|
+
config: import("zod").ZodOptional<import("zod").ZodString>;
|
155
|
+
}, "strip", import("zod").ZodTypeAny, {
|
156
|
+
config?: string | undefined;
|
157
|
+
}, {
|
158
|
+
config?: string | undefined;
|
159
|
+
}>, import("zod").ZodObject<{
|
160
|
+
dialect: import("zod").ZodOptional<import("zod").ZodEnum<["pg", "mysql", "sqlite"]>>;
|
161
|
+
out: import("zod").ZodOptional<import("zod").ZodString>;
|
162
|
+
}, "strip", import("zod").ZodTypeAny, {
|
163
|
+
dialect?: "mysql" | "pg" | "sqlite" | undefined;
|
164
|
+
out?: string | undefined;
|
165
|
+
}, {
|
166
|
+
dialect?: "mysql" | "pg" | "sqlite" | undefined;
|
167
|
+
out?: string | undefined;
|
168
|
+
}>>;
|
169
|
+
export type CliCheckConfig = TypeOf<typeof cliConfigCheck>;
|
@@ -1,13 +1,214 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
message?: string;
|
4
|
-
action: "config" | "cli" | "error";
|
5
|
-
};
|
6
|
-
export type Commands = "push:sqlite" | "introspect:sqlite" | "introspect:pg" | "generate:pg" | "generate:sqlite" | "generate:mysql" | "check:pg" | "check:mysql" | "check:sqlite" | "up:pg" | "up:mysql" | "up:sqlite" | "drop" | "introspect:mysql" | "push:mysql" | "push:pg";
|
1
|
+
import { TypeOf } from "zod";
|
2
|
+
export type Commands = "introspect" | "generate" | "check" | "up" | "drop" | "push";
|
7
3
|
/**
|
8
4
|
* This function checks an input from a user and if there are any params together with config path - return true
|
9
5
|
* @param options - user input
|
10
6
|
* @param inputWhitelist - whitelist some cli options that can be used together with config option
|
11
7
|
* @returns true if there was a collision, false if everything is valid
|
12
8
|
*/
|
13
|
-
export declare const
|
9
|
+
export declare const assertCollisions: (options: Record<string, unknown>, command: Commands, inputWhitelist?: string[]) => "config" | "cli";
|
10
|
+
export declare const sqliteDriver: import("zod").ZodUnion<[import("zod").ZodLiteral<"better-sqlite">, import("zod").ZodLiteral<"turso">, import("zod").ZodLiteral<"libsql">, import("zod").ZodLiteral<"d1">, import("zod").ZodLiteral<"expo">]>;
|
11
|
+
export declare const postgresDriver: import("zod").ZodLiteral<"pg">;
|
12
|
+
export declare const mysqlDriver: import("zod").ZodLiteral<"mysql2">;
|
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
|
+
export declare const configCommonSchema: import("zod").ZodObject<{
|
15
|
+
dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
|
16
|
+
schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
|
17
|
+
out: import("zod").ZodOptional<import("zod").ZodString>;
|
18
|
+
breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
19
|
+
driver: import("zod").ZodOptional<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">]>>;
|
20
|
+
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
21
|
+
schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
22
|
+
}, "strip", import("zod").ZodTypeAny, {
|
23
|
+
schema: string | string[];
|
24
|
+
dialect: "mysql" | "pg" | "sqlite";
|
25
|
+
breakpoints: boolean;
|
26
|
+
schemaFilter: string | string[];
|
27
|
+
out?: string | undefined;
|
28
|
+
driver?: "pg" | "turso" | "better-sqlite" | "libsql" | "d1" | "mysql2" | "expo" | undefined;
|
29
|
+
tablesFilter?: string | string[] | undefined;
|
30
|
+
}, {
|
31
|
+
schema: string | string[];
|
32
|
+
dialect: "mysql" | "pg" | "sqlite";
|
33
|
+
out?: string | undefined;
|
34
|
+
breakpoints?: boolean | undefined;
|
35
|
+
driver?: "pg" | "turso" | "better-sqlite" | "libsql" | "d1" | "mysql2" | "expo" | undefined;
|
36
|
+
tablesFilter?: string | string[] | undefined;
|
37
|
+
schemaFilter?: string | string[] | undefined;
|
38
|
+
}>;
|
39
|
+
export declare const casing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
|
40
|
+
export declare const introspectParams: import("zod").ZodObject<{
|
41
|
+
schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
42
|
+
out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
43
|
+
breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
44
|
+
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
45
|
+
schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
46
|
+
introspect: import("zod").ZodDefault<import("zod").ZodObject<{
|
47
|
+
casing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
|
48
|
+
}, "strip", import("zod").ZodTypeAny, {
|
49
|
+
casing: "camel" | "preserve";
|
50
|
+
}, {
|
51
|
+
casing?: "camel" | "preserve" | undefined;
|
52
|
+
}>>;
|
53
|
+
}, "strip", import("zod").ZodTypeAny, {
|
54
|
+
introspect: {
|
55
|
+
casing: "camel" | "preserve";
|
56
|
+
};
|
57
|
+
out: string;
|
58
|
+
breakpoints: boolean;
|
59
|
+
schemaFilter: string | string[];
|
60
|
+
schema?: string | string[] | undefined;
|
61
|
+
tablesFilter?: string | string[] | undefined;
|
62
|
+
}, {
|
63
|
+
schema?: string | string[] | undefined;
|
64
|
+
introspect?: {
|
65
|
+
casing?: "camel" | "preserve" | undefined;
|
66
|
+
} | undefined;
|
67
|
+
out?: string | undefined;
|
68
|
+
breakpoints?: boolean | undefined;
|
69
|
+
tablesFilter?: string | string[] | undefined;
|
70
|
+
schemaFilter?: string | string[] | undefined;
|
71
|
+
}>;
|
72
|
+
export type IntrospectParams = TypeOf<typeof introspectParams>;
|
73
|
+
export type Casing = TypeOf<typeof casing>;
|
74
|
+
export declare const configIntrospectCliSchema: import("zod").ZodObject<{
|
75
|
+
schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
76
|
+
out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
77
|
+
breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
78
|
+
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
79
|
+
schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
80
|
+
introspectCasing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
|
81
|
+
}, "strip", import("zod").ZodTypeAny, {
|
82
|
+
out: string;
|
83
|
+
breakpoints: boolean;
|
84
|
+
schemaFilter: string | string[];
|
85
|
+
introspectCasing: "camel" | "preserve";
|
86
|
+
schema?: string | string[] | undefined;
|
87
|
+
tablesFilter?: string | string[] | undefined;
|
88
|
+
}, {
|
89
|
+
schema?: string | string[] | undefined;
|
90
|
+
out?: string | undefined;
|
91
|
+
breakpoints?: boolean | undefined;
|
92
|
+
tablesFilter?: string | string[] | undefined;
|
93
|
+
schemaFilter?: string | string[] | undefined;
|
94
|
+
introspectCasing?: "camel" | "preserve" | undefined;
|
95
|
+
}>;
|
96
|
+
export declare const configGenerateSchema: import("zod").ZodObject<{
|
97
|
+
schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
|
98
|
+
out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
99
|
+
breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
100
|
+
}, "strip", import("zod").ZodTypeAny, {
|
101
|
+
schema: string | string[];
|
102
|
+
out: string;
|
103
|
+
breakpoints: boolean;
|
104
|
+
}, {
|
105
|
+
schema: string | string[];
|
106
|
+
out?: string | undefined;
|
107
|
+
breakpoints?: boolean | undefined;
|
108
|
+
}>;
|
109
|
+
export type GenerateSchema = TypeOf<typeof configGenerateSchema>;
|
110
|
+
export declare const configPushSchema: import("zod").ZodObject<{
|
111
|
+
dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
|
112
|
+
schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
|
113
|
+
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
114
|
+
schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
115
|
+
verbose: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
116
|
+
strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
117
|
+
out: import("zod").ZodOptional<import("zod").ZodString>;
|
118
|
+
}, "strip", import("zod").ZodTypeAny, {
|
119
|
+
strict: boolean;
|
120
|
+
schema: string | string[];
|
121
|
+
dialect: "mysql" | "pg" | "sqlite";
|
122
|
+
schemaFilter: string | string[];
|
123
|
+
verbose: boolean;
|
124
|
+
out?: string | undefined;
|
125
|
+
tablesFilter?: string | string[] | undefined;
|
126
|
+
}, {
|
127
|
+
schema: string | string[];
|
128
|
+
dialect: "mysql" | "pg" | "sqlite";
|
129
|
+
strict?: boolean | undefined;
|
130
|
+
out?: string | undefined;
|
131
|
+
tablesFilter?: string | string[] | undefined;
|
132
|
+
schemaFilter?: string | string[] | undefined;
|
133
|
+
verbose?: boolean | undefined;
|
134
|
+
}>;
|
135
|
+
export declare const mysqlConnectionSchema: import("zod").ZodUnion<[import("zod").ZodObject<{
|
136
|
+
host: import("zod").ZodString;
|
137
|
+
port: import("zod").ZodOptional<import("zod").ZodNumber>;
|
138
|
+
user: import("zod").ZodDefault<import("zod").ZodString>;
|
139
|
+
password: import("zod").ZodOptional<import("zod").ZodString>;
|
140
|
+
database: import("zod").ZodString;
|
141
|
+
}, "strip", import("zod").ZodTypeAny, {
|
142
|
+
host: string;
|
143
|
+
user: string;
|
144
|
+
database: string;
|
145
|
+
port?: number | undefined;
|
146
|
+
password?: string | undefined;
|
147
|
+
}, {
|
148
|
+
host: string;
|
149
|
+
database: string;
|
150
|
+
port?: number | undefined;
|
151
|
+
user?: string | undefined;
|
152
|
+
password?: string | undefined;
|
153
|
+
}>, import("zod").ZodObject<{
|
154
|
+
connectionString: import("zod").ZodString;
|
155
|
+
}, "strip", import("zod").ZodTypeAny, {
|
156
|
+
connectionString: string;
|
157
|
+
}, {
|
158
|
+
connectionString: string;
|
159
|
+
}>, import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>]>;
|
160
|
+
export declare const mySqlCliConfigSchema: import("zod").ZodIntersection<import("zod").ZodObject<{
|
161
|
+
dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
|
162
|
+
schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
|
163
|
+
out: import("zod").ZodOptional<import("zod").ZodString>;
|
164
|
+
breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
165
|
+
driver: import("zod").ZodOptional<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">]>>;
|
166
|
+
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
167
|
+
schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
168
|
+
}, "strip", import("zod").ZodTypeAny, {
|
169
|
+
schema: string | string[];
|
170
|
+
dialect: "mysql" | "pg" | "sqlite";
|
171
|
+
breakpoints: boolean;
|
172
|
+
schemaFilter: string | string[];
|
173
|
+
out?: string | undefined;
|
174
|
+
driver?: "pg" | "turso" | "better-sqlite" | "libsql" | "d1" | "mysql2" | "expo" | undefined;
|
175
|
+
tablesFilter?: string | string[] | undefined;
|
176
|
+
}, {
|
177
|
+
schema: string | string[];
|
178
|
+
dialect: "mysql" | "pg" | "sqlite";
|
179
|
+
out?: string | undefined;
|
180
|
+
breakpoints?: boolean | undefined;
|
181
|
+
driver?: "pg" | "turso" | "better-sqlite" | "libsql" | "d1" | "mysql2" | "expo" | undefined;
|
182
|
+
tablesFilter?: string | string[] | undefined;
|
183
|
+
schemaFilter?: string | string[] | undefined;
|
184
|
+
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
185
|
+
host: import("zod").ZodString;
|
186
|
+
port: import("zod").ZodOptional<import("zod").ZodNumber>;
|
187
|
+
user: import("zod").ZodDefault<import("zod").ZodString>;
|
188
|
+
password: import("zod").ZodOptional<import("zod").ZodString>;
|
189
|
+
database: import("zod").ZodString;
|
190
|
+
}, "strip", import("zod").ZodTypeAny, {
|
191
|
+
host: string;
|
192
|
+
user: string;
|
193
|
+
database: string;
|
194
|
+
port?: number | undefined;
|
195
|
+
password?: string | undefined;
|
196
|
+
}, {
|
197
|
+
host: string;
|
198
|
+
database: string;
|
199
|
+
port?: number | undefined;
|
200
|
+
user?: string | undefined;
|
201
|
+
password?: string | undefined;
|
202
|
+
}>, import("zod").ZodObject<{
|
203
|
+
connectionString: import("zod").ZodString;
|
204
|
+
}, "strip", import("zod").ZodTypeAny, {
|
205
|
+
connectionString: string;
|
206
|
+
}, {
|
207
|
+
connectionString: string;
|
208
|
+
}>, import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>]>>;
|
209
|
+
export type MySqlCliConfig = TypeOf<typeof mySqlCliConfigSchema>;
|
210
|
+
export type CliConfig = MySqlCliConfig;
|
211
|
+
export type SqliteDriver = TypeOf<typeof sqliteDriver>;
|
212
|
+
export type MysqlDriver = TypeOf<typeof mysqlDriver>;
|
213
|
+
export type PostgresDriver = TypeOf<typeof postgresDriver>;
|
214
|
+
export type Driver = TypeOf<typeof driver>;
|