drizzle-kit 1.0.0-beta.6-cd45bda → 1.0.0-beta.6-cefee57
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 +0 -1
- package/api-postgres.d.mts +130 -130
- package/api-postgres.d.ts +130 -130
- 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 zod0 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: zod0.ZodUnion<[zod0.ZodObject<{
|
|
7
|
+
host: zod0.ZodString;
|
|
8
|
+
port: zod0.ZodOptional<zod0.ZodNumber>;
|
|
9
|
+
user: zod0.ZodOptional<zod0.ZodString>;
|
|
10
|
+
password: zod0.ZodOptional<zod0.ZodString>;
|
|
11
|
+
database: zod0.ZodString;
|
|
12
|
+
ssl: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodString, zod0.ZodObject<{
|
|
13
|
+
pfx: zod0.ZodOptional<zod0.ZodString>;
|
|
14
|
+
key: zod0.ZodOptional<zod0.ZodString>;
|
|
15
|
+
passphrase: zod0.ZodOptional<zod0.ZodString>;
|
|
16
|
+
cert: zod0.ZodOptional<zod0.ZodString>;
|
|
17
|
+
ca: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodString, zod0.ZodArray<zod0.ZodString, "many">]>>;
|
|
18
|
+
crl: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodString, zod0.ZodArray<zod0.ZodString, "many">]>>;
|
|
19
|
+
ciphers: zod0.ZodOptional<zod0.ZodString>;
|
|
20
|
+
rejectUnauthorized: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
21
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
22
22
|
pfx?: string | undefined;
|
|
23
23
|
key?: string | undefined;
|
|
24
24
|
passphrase?: string | undefined;
|
|
@@ -37,12 +37,12 @@ declare const mysqlCredentials: zod3717.ZodUnion<[zod3717.ZodObject<{
|
|
|
37
37
|
ciphers?: string | undefined;
|
|
38
38
|
rejectUnauthorized?: boolean | undefined;
|
|
39
39
|
}>]>>;
|
|
40
|
-
}, "strip",
|
|
40
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
41
41
|
host: string;
|
|
42
42
|
database: string;
|
|
43
|
-
password?: string | undefined;
|
|
44
43
|
port?: number | undefined;
|
|
45
44
|
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: zod3717.ZodUnion<[zod3717.ZodObject<{
|
|
|
56
56
|
}, {
|
|
57
57
|
host: string;
|
|
58
58
|
database: string;
|
|
59
|
-
password?: string | undefined;
|
|
60
59
|
port?: number | undefined;
|
|
61
60
|
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: zod3717.ZodUnion<[zod3717.ZodObject<{
|
|
|
69
69
|
ciphers?: string | undefined;
|
|
70
70
|
rejectUnauthorized?: boolean | undefined;
|
|
71
71
|
} | undefined;
|
|
72
|
-
}>,
|
|
73
|
-
url:
|
|
74
|
-
}, "strip",
|
|
72
|
+
}>, zod0.ZodObject<{
|
|
73
|
+
url: zod0.ZodString;
|
|
74
|
+
}, "strip", zod0.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;
|
|
44
43
|
port?: number | undefined;
|
|
45
44
|
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;
|
|
60
59
|
port?: number | undefined;
|
|
61
60
|
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
|
@@ -44652,7 +44652,6 @@ var init_cbor$1 = __esmMin((() => {
|
|
|
44652
44652
|
//#region ../node_modules/.pnpm/@smithy+core@3.18.5/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js
|
|
44653
44653
|
var dateToTag, loadSmithyRpcV2CborErrorCode;
|
|
44654
44654
|
var init_parseCborBody = __esmMin((() => {
|
|
44655
|
-
init_protocols$1();
|
|
44656
44655
|
init_cbor_types();
|
|
44657
44656
|
dateToTag = (date$1) => {
|
|
44658
44657
|
return tag({
|