drizzle-kit 0.20.14-6ce9d1f → 0.20.14-a183d8b
Sign up to get free protection for your applications and to get access to all the features.
- package/bin.cjs +202 -271
- package/cli/commands/sqliteIntrospect.d.ts +1 -1
- package/cli/commands/utils.d.ts +5 -258
- package/cli/index.d.ts +41 -18
- package/cli/validations/common.d.ts +205 -7
- package/cli/validations/mysql.d.ts +6 -1
- package/cli/validations/pg.d.ts +6 -1
- package/cli/validations/sqlite.d.ts +165 -3
- package/introspect-mysql.d.ts +1 -1
- package/introspect-pg.d.ts +1 -1
- package/introspect-sqlite.d.ts +1 -1
- package/package.json +1 -1
- package/payload.js +6648 -6632
- package/payload.mjs +6638 -6622
- package/utils.js +737 -698
- package/utils.mjs +738 -699
- package/cli/commands/sqliteUtils.d.ts +0 -162
@@ -1,162 +0,0 @@
|
|
1
|
-
import { TypeOf } from "zod";
|
2
|
-
import { configIntrospectSchema } from "./utils";
|
3
|
-
export declare const sqliteConnectionSchema: import("zod").ZodUnion<[import("zod").ZodObject<{
|
4
|
-
driver: import("zod").ZodLiteral<"turso">;
|
5
|
-
dbCredentials: import("zod").ZodObject<{
|
6
|
-
url: import("zod").ZodString;
|
7
|
-
authToken: import("zod").ZodOptional<import("zod").ZodString>;
|
8
|
-
}, "strip", import("zod").ZodTypeAny, {
|
9
|
-
authToken?: string | undefined;
|
10
|
-
url: string;
|
11
|
-
}, {
|
12
|
-
authToken?: string | undefined;
|
13
|
-
url: string;
|
14
|
-
}>;
|
15
|
-
}, "strip", import("zod").ZodTypeAny, {
|
16
|
-
driver: "turso";
|
17
|
-
dbCredentials: {
|
18
|
-
authToken?: string | undefined;
|
19
|
-
url: string;
|
20
|
-
};
|
21
|
-
}, {
|
22
|
-
driver: "turso";
|
23
|
-
dbCredentials: {
|
24
|
-
authToken?: string | undefined;
|
25
|
-
url: string;
|
26
|
-
};
|
27
|
-
}>, import("zod").ZodObject<{
|
28
|
-
driver: import("zod").ZodLiteral<"libsql">;
|
29
|
-
dbCredentials: import("zod").ZodObject<{
|
30
|
-
url: import("zod").ZodString;
|
31
|
-
}, "strip", import("zod").ZodTypeAny, {
|
32
|
-
url: string;
|
33
|
-
}, {
|
34
|
-
url: string;
|
35
|
-
}>;
|
36
|
-
}, "strip", import("zod").ZodTypeAny, {
|
37
|
-
driver: "libsql";
|
38
|
-
dbCredentials: {
|
39
|
-
url: string;
|
40
|
-
};
|
41
|
-
}, {
|
42
|
-
driver: "libsql";
|
43
|
-
dbCredentials: {
|
44
|
-
url: string;
|
45
|
-
};
|
46
|
-
}>, import("zod").ZodObject<{
|
47
|
-
driver: import("zod").ZodLiteral<"better-sqlite">;
|
48
|
-
dbCredentials: import("zod").ZodObject<{
|
49
|
-
url: import("zod").ZodString;
|
50
|
-
}, "strip", import("zod").ZodTypeAny, {
|
51
|
-
url: string;
|
52
|
-
}, {
|
53
|
-
url: string;
|
54
|
-
}>;
|
55
|
-
}, "strip", import("zod").ZodTypeAny, {
|
56
|
-
driver: "better-sqlite";
|
57
|
-
dbCredentials: {
|
58
|
-
url: string;
|
59
|
-
};
|
60
|
-
}, {
|
61
|
-
driver: "better-sqlite";
|
62
|
-
dbCredentials: {
|
63
|
-
url: string;
|
64
|
-
};
|
65
|
-
}>]>;
|
66
|
-
export declare const sqliteCliConfigSchema: import("zod").ZodIntersection<import("zod").ZodObject<{
|
67
|
-
schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
68
|
-
out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
69
|
-
breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
70
|
-
tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
71
|
-
schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
|
72
|
-
introspect: import("zod").ZodDefault<import("zod").ZodObject<{
|
73
|
-
casing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
|
74
|
-
}, "strip", import("zod").ZodTypeAny, {
|
75
|
-
casing: "camel" | "preserve";
|
76
|
-
}, {
|
77
|
-
casing?: "camel" | "preserve" | undefined;
|
78
|
-
}>>;
|
79
|
-
}, "strip", import("zod").ZodTypeAny, {
|
80
|
-
schema?: string | string[] | undefined;
|
81
|
-
tablesFilter?: string | string[] | undefined;
|
82
|
-
out: string;
|
83
|
-
breakpoints: boolean;
|
84
|
-
schemaFilter: string | string[];
|
85
|
-
introspect: {
|
86
|
-
casing: "camel" | "preserve";
|
87
|
-
};
|
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
|
-
introspect?: {
|
95
|
-
casing?: "camel" | "preserve" | undefined;
|
96
|
-
} | undefined;
|
97
|
-
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
98
|
-
driver: import("zod").ZodLiteral<"turso">;
|
99
|
-
dbCredentials: import("zod").ZodObject<{
|
100
|
-
url: import("zod").ZodString;
|
101
|
-
authToken: import("zod").ZodOptional<import("zod").ZodString>;
|
102
|
-
}, "strip", import("zod").ZodTypeAny, {
|
103
|
-
authToken?: string | undefined;
|
104
|
-
url: string;
|
105
|
-
}, {
|
106
|
-
authToken?: string | undefined;
|
107
|
-
url: string;
|
108
|
-
}>;
|
109
|
-
}, "strip", import("zod").ZodTypeAny, {
|
110
|
-
driver: "turso";
|
111
|
-
dbCredentials: {
|
112
|
-
authToken?: string | undefined;
|
113
|
-
url: string;
|
114
|
-
};
|
115
|
-
}, {
|
116
|
-
driver: "turso";
|
117
|
-
dbCredentials: {
|
118
|
-
authToken?: string | undefined;
|
119
|
-
url: string;
|
120
|
-
};
|
121
|
-
}>, import("zod").ZodObject<{
|
122
|
-
driver: import("zod").ZodLiteral<"libsql">;
|
123
|
-
dbCredentials: import("zod").ZodObject<{
|
124
|
-
url: import("zod").ZodString;
|
125
|
-
}, "strip", import("zod").ZodTypeAny, {
|
126
|
-
url: string;
|
127
|
-
}, {
|
128
|
-
url: string;
|
129
|
-
}>;
|
130
|
-
}, "strip", import("zod").ZodTypeAny, {
|
131
|
-
driver: "libsql";
|
132
|
-
dbCredentials: {
|
133
|
-
url: string;
|
134
|
-
};
|
135
|
-
}, {
|
136
|
-
driver: "libsql";
|
137
|
-
dbCredentials: {
|
138
|
-
url: string;
|
139
|
-
};
|
140
|
-
}>, import("zod").ZodObject<{
|
141
|
-
driver: import("zod").ZodLiteral<"better-sqlite">;
|
142
|
-
dbCredentials: import("zod").ZodObject<{
|
143
|
-
url: import("zod").ZodString;
|
144
|
-
}, "strip", import("zod").ZodTypeAny, {
|
145
|
-
url: string;
|
146
|
-
}, {
|
147
|
-
url: string;
|
148
|
-
}>;
|
149
|
-
}, "strip", import("zod").ZodTypeAny, {
|
150
|
-
driver: "better-sqlite";
|
151
|
-
dbCredentials: {
|
152
|
-
url: string;
|
153
|
-
};
|
154
|
-
}, {
|
155
|
-
driver: "better-sqlite";
|
156
|
-
dbCredentials: {
|
157
|
-
url: string;
|
158
|
-
};
|
159
|
-
}>]>>;
|
160
|
-
export type SQLiteCliConfig = TypeOf<typeof sqliteCliConfigSchema>;
|
161
|
-
export type SQLiteConnectionConfig = TypeOf<typeof sqliteConnectionSchema>;
|
162
|
-
export { configIntrospectSchema };
|