drizzle-kit 1.0.0-beta.16-ea816b6 → 1.0.0-beta.16-e361198
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/api-mysql.d.mts +23 -23
- package/api-mysql.d.ts +2 -2
- package/api-mysql.mjs +1 -0
- package/api-postgres.d.mts +130 -130
- package/api-postgres.d.ts +130 -130
- package/bin.cjs +1 -0
- package/package.json +1 -1
package/api-mysql.d.mts
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import { t as CasingType } from "./common-Bc72_W-g.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as zod3015 from "zod";
|
|
3
3
|
import { TypeOf } from "zod";
|
|
4
4
|
|
|
5
5
|
//#region src/cli/validations/mysql.d.ts
|
|
6
|
-
declare const mysqlCredentials:
|
|
7
|
-
host:
|
|
8
|
-
port:
|
|
9
|
-
user:
|
|
10
|
-
password:
|
|
11
|
-
database:
|
|
12
|
-
ssl:
|
|
13
|
-
pfx:
|
|
14
|
-
key:
|
|
15
|
-
passphrase:
|
|
16
|
-
cert:
|
|
17
|
-
ca:
|
|
18
|
-
crl:
|
|
19
|
-
ciphers:
|
|
20
|
-
rejectUnauthorized:
|
|
21
|
-
}, "strip",
|
|
6
|
+
declare const mysqlCredentials: zod3015.ZodUnion<[zod3015.ZodObject<{
|
|
7
|
+
host: zod3015.ZodString;
|
|
8
|
+
port: zod3015.ZodOptional<zod3015.ZodNumber>;
|
|
9
|
+
user: zod3015.ZodOptional<zod3015.ZodString>;
|
|
10
|
+
password: zod3015.ZodOptional<zod3015.ZodString>;
|
|
11
|
+
database: zod3015.ZodString;
|
|
12
|
+
ssl: zod3015.ZodOptional<zod3015.ZodUnion<[zod3015.ZodString, zod3015.ZodObject<{
|
|
13
|
+
pfx: zod3015.ZodOptional<zod3015.ZodString>;
|
|
14
|
+
key: zod3015.ZodOptional<zod3015.ZodString>;
|
|
15
|
+
passphrase: zod3015.ZodOptional<zod3015.ZodString>;
|
|
16
|
+
cert: zod3015.ZodOptional<zod3015.ZodString>;
|
|
17
|
+
ca: zod3015.ZodOptional<zod3015.ZodUnion<[zod3015.ZodString, zod3015.ZodArray<zod3015.ZodString, "many">]>>;
|
|
18
|
+
crl: zod3015.ZodOptional<zod3015.ZodUnion<[zod3015.ZodString, zod3015.ZodArray<zod3015.ZodString, "many">]>>;
|
|
19
|
+
ciphers: zod3015.ZodOptional<zod3015.ZodString>;
|
|
20
|
+
rejectUnauthorized: zod3015.ZodOptional<zod3015.ZodBoolean>;
|
|
21
|
+
}, "strip", zod3015.ZodTypeAny, {
|
|
22
22
|
pfx?: string | undefined;
|
|
23
23
|
key?: string | undefined;
|
|
24
24
|
passphrase?: string | undefined;
|
|
@@ -37,12 +37,12 @@ declare const mysqlCredentials: zod3286.ZodUnion<[zod3286.ZodObject<{
|
|
|
37
37
|
ciphers?: string | undefined;
|
|
38
38
|
rejectUnauthorized?: boolean | undefined;
|
|
39
39
|
}>]>>;
|
|
40
|
-
}, "strip",
|
|
40
|
+
}, "strip", zod3015.ZodTypeAny, {
|
|
41
41
|
host: string;
|
|
42
42
|
database: string;
|
|
43
|
+
password?: string | undefined;
|
|
43
44
|
port?: number | undefined;
|
|
44
45
|
user?: string | undefined;
|
|
45
|
-
password?: string | undefined;
|
|
46
46
|
ssl?: string | {
|
|
47
47
|
pfx?: string | undefined;
|
|
48
48
|
key?: string | undefined;
|
|
@@ -56,9 +56,9 @@ declare const mysqlCredentials: zod3286.ZodUnion<[zod3286.ZodObject<{
|
|
|
56
56
|
}, {
|
|
57
57
|
host: string;
|
|
58
58
|
database: string;
|
|
59
|
+
password?: string | undefined;
|
|
59
60
|
port?: number | undefined;
|
|
60
61
|
user?: string | undefined;
|
|
61
|
-
password?: string | undefined;
|
|
62
62
|
ssl?: string | {
|
|
63
63
|
pfx?: string | undefined;
|
|
64
64
|
key?: string | undefined;
|
|
@@ -69,9 +69,9 @@ declare const mysqlCredentials: zod3286.ZodUnion<[zod3286.ZodObject<{
|
|
|
69
69
|
ciphers?: string | undefined;
|
|
70
70
|
rejectUnauthorized?: boolean | undefined;
|
|
71
71
|
} | undefined;
|
|
72
|
-
}>,
|
|
73
|
-
url:
|
|
74
|
-
}, "strip",
|
|
72
|
+
}>, zod3015.ZodObject<{
|
|
73
|
+
url: zod3015.ZodString;
|
|
74
|
+
}, "strip", zod3015.ZodTypeAny, {
|
|
75
75
|
url: string;
|
|
76
76
|
}, {
|
|
77
77
|
url: string;
|
package/api-mysql.d.ts
CHANGED
|
@@ -40,9 +40,9 @@ declare const mysqlCredentials: zod0.ZodUnion<[zod0.ZodObject<{
|
|
|
40
40
|
}, "strip", zod0.ZodTypeAny, {
|
|
41
41
|
host: string;
|
|
42
42
|
database: string;
|
|
43
|
+
password?: string | undefined;
|
|
43
44
|
port?: number | undefined;
|
|
44
45
|
user?: string | undefined;
|
|
45
|
-
password?: string | undefined;
|
|
46
46
|
ssl?: string | {
|
|
47
47
|
pfx?: string | undefined;
|
|
48
48
|
key?: string | undefined;
|
|
@@ -56,9 +56,9 @@ declare const mysqlCredentials: zod0.ZodUnion<[zod0.ZodObject<{
|
|
|
56
56
|
}, {
|
|
57
57
|
host: string;
|
|
58
58
|
database: string;
|
|
59
|
+
password?: string | undefined;
|
|
59
60
|
port?: number | undefined;
|
|
60
61
|
user?: string | undefined;
|
|
61
|
-
password?: string | undefined;
|
|
62
62
|
ssl?: string | {
|
|
63
63
|
pfx?: string | undefined;
|
|
64
64
|
key?: string | undefined;
|
package/api-mysql.mjs
CHANGED
|
@@ -90244,6 +90244,7 @@ var init_cbor$1 = __esmMin((() => {
|
|
|
90244
90244
|
//#region ../node_modules/.pnpm/@smithy+core@3.18.5/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js
|
|
90245
90245
|
var dateToTag, loadSmithyRpcV2CborErrorCode;
|
|
90246
90246
|
var init_parseCborBody = __esmMin((() => {
|
|
90247
|
+
init_protocols$1();
|
|
90247
90248
|
init_cbor_types();
|
|
90248
90249
|
dateToTag = (date$1) => {
|
|
90249
90250
|
return tag({
|