drizzle-kit 1.0.0-beta.9-40889e5 → 1.0.0-beta.9-e89174b

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.
@@ -1,20 +1,20 @@
1
1
  import { t as CasingType } from "./common-Bc72_W-g.mjs";
2
- import * as zod3327 from "zod";
2
+ import * as zod333 from "zod";
3
3
  import { TypeOf } from "zod";
4
4
  import { PGlite } from "@electric-sql/pglite";
5
5
  import { PgAsyncDatabase } from "drizzle-orm/pg-core/async";
6
6
 
7
7
  //#region src/cli/validations/cli.d.ts
8
8
  declare const entitiesParams: {
9
- tablesFilter: zod3327.ZodOptional<zod3327.ZodUnion<[zod3327.ZodString, zod3327.ZodArray<zod3327.ZodString, "many">]>>;
10
- schemaFilter: zod3327.ZodOptional<zod3327.ZodUnion<[zod3327.ZodString, zod3327.ZodArray<zod3327.ZodString, "many">]>>;
11
- extensionsFilters: zod3327.ZodOptional<zod3327.ZodArray<zod3327.ZodLiteral<"postgis">, "many">>;
12
- entities: zod3327.ZodOptional<zod3327.ZodObject<{
13
- roles: zod3327.ZodDefault<zod3327.ZodOptional<zod3327.ZodUnion<[zod3327.ZodBoolean, zod3327.ZodObject<{
14
- provider: zod3327.ZodOptional<zod3327.ZodString>;
15
- include: zod3327.ZodOptional<zod3327.ZodArray<zod3327.ZodString, "many">>;
16
- exclude: zod3327.ZodOptional<zod3327.ZodArray<zod3327.ZodString, "many">>;
17
- }, "strip", zod3327.ZodTypeAny, {
9
+ tablesFilter: zod333.ZodOptional<zod333.ZodUnion<[zod333.ZodString, zod333.ZodArray<zod333.ZodString, "many">]>>;
10
+ schemaFilter: zod333.ZodOptional<zod333.ZodUnion<[zod333.ZodString, zod333.ZodArray<zod333.ZodString, "many">]>>;
11
+ extensionsFilters: zod333.ZodOptional<zod333.ZodArray<zod333.ZodLiteral<"postgis">, "many">>;
12
+ entities: zod333.ZodOptional<zod333.ZodObject<{
13
+ roles: zod333.ZodDefault<zod333.ZodOptional<zod333.ZodUnion<[zod333.ZodBoolean, zod333.ZodObject<{
14
+ provider: zod333.ZodOptional<zod333.ZodString>;
15
+ include: zod333.ZodOptional<zod333.ZodArray<zod333.ZodString, "many">>;
16
+ exclude: zod333.ZodOptional<zod333.ZodArray<zod333.ZodString, "many">>;
17
+ }, "strip", zod333.ZodTypeAny, {
18
18
  provider?: string | undefined;
19
19
  include?: string[] | undefined;
20
20
  exclude?: string[] | undefined;
@@ -23,7 +23,7 @@ declare const entitiesParams: {
23
23
  include?: string[] | undefined;
24
24
  exclude?: string[] | undefined;
25
25
  }>]>>>;
26
- }, "strip", zod3327.ZodTypeAny, {
26
+ }, "strip", zod333.ZodTypeAny, {
27
27
  roles: boolean | {
28
28
  provider?: string | undefined;
29
29
  include?: string[] | undefined;
@@ -49,21 +49,21 @@ type EntitiesFilterConfig = {
49
49
  };
50
50
  //#endregion
51
51
  //#region src/cli/validations/postgres.d.ts
52
- declare const postgresCredentials: zod3327.ZodUnion<[zod3327.ZodEffects<zod3327.ZodObject<{
53
- driver: zod3327.ZodUndefined;
54
- host: zod3327.ZodString;
55
- port: zod3327.ZodOptional<zod3327.ZodNumber>;
56
- user: zod3327.ZodOptional<zod3327.ZodString>;
57
- password: zod3327.ZodOptional<zod3327.ZodString>;
58
- database: zod3327.ZodString;
59
- ssl: zod3327.ZodOptional<zod3327.ZodUnion<[zod3327.ZodLiteral<"require">, zod3327.ZodLiteral<"allow">, zod3327.ZodLiteral<"prefer">, zod3327.ZodLiteral<"verify-full">, zod3327.ZodBoolean, zod3327.ZodObject<{}, "passthrough", zod3327.ZodTypeAny, zod3327.objectOutputType<{}, zod3327.ZodTypeAny, "passthrough">, zod3327.objectInputType<{}, zod3327.ZodTypeAny, "passthrough">>]>>;
60
- }, "strip", zod3327.ZodTypeAny, {
52
+ declare const postgresCredentials: zod333.ZodUnion<[zod333.ZodEffects<zod333.ZodObject<{
53
+ driver: zod333.ZodUndefined;
54
+ host: zod333.ZodString;
55
+ port: zod333.ZodOptional<zod333.ZodNumber>;
56
+ user: zod333.ZodOptional<zod333.ZodString>;
57
+ password: zod333.ZodOptional<zod333.ZodString>;
58
+ database: zod333.ZodString;
59
+ ssl: zod333.ZodOptional<zod333.ZodUnion<[zod333.ZodLiteral<"require">, zod333.ZodLiteral<"allow">, zod333.ZodLiteral<"prefer">, zod333.ZodLiteral<"verify-full">, zod333.ZodBoolean, zod333.ZodObject<{}, "passthrough", zod333.ZodTypeAny, zod333.objectOutputType<{}, zod333.ZodTypeAny, "passthrough">, zod333.objectInputType<{}, zod333.ZodTypeAny, "passthrough">>]>>;
60
+ }, "strip", zod333.ZodTypeAny, {
61
61
  host: string;
62
62
  database: string;
63
63
  port?: number | undefined;
64
64
  user?: string | undefined;
65
65
  password?: string | undefined;
66
- ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod3327.objectOutputType<{}, zod3327.ZodTypeAny, "passthrough"> | undefined;
66
+ ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod333.objectOutputType<{}, zod333.ZodTypeAny, "passthrough"> | undefined;
67
67
  driver?: undefined;
68
68
  }, {
69
69
  host: string;
@@ -71,7 +71,7 @@ declare const postgresCredentials: zod3327.ZodUnion<[zod3327.ZodEffects<zod3327.
71
71
  port?: number | undefined;
72
72
  user?: string | undefined;
73
73
  password?: string | undefined;
74
- ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod3327.objectInputType<{}, zod3327.ZodTypeAny, "passthrough"> | undefined;
74
+ ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod333.objectInputType<{}, zod333.ZodTypeAny, "passthrough"> | undefined;
75
75
  driver?: undefined;
76
76
  }>, Omit<{
77
77
  host: string;
@@ -79,7 +79,7 @@ declare const postgresCredentials: zod3327.ZodUnion<[zod3327.ZodEffects<zod3327.
79
79
  port?: number | undefined;
80
80
  user?: string | undefined;
81
81
  password?: string | undefined;
82
- ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod3327.objectOutputType<{}, zod3327.ZodTypeAny, "passthrough"> | undefined;
82
+ ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod333.objectOutputType<{}, zod333.ZodTypeAny, "passthrough"> | undefined;
83
83
  driver?: undefined;
84
84
  }, "driver">, {
85
85
  host: string;
@@ -87,12 +87,12 @@ declare const postgresCredentials: zod3327.ZodUnion<[zod3327.ZodEffects<zod3327.
87
87
  port?: number | undefined;
88
88
  user?: string | undefined;
89
89
  password?: string | undefined;
90
- ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod3327.objectInputType<{}, zod3327.ZodTypeAny, "passthrough"> | undefined;
90
+ ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod333.objectInputType<{}, zod333.ZodTypeAny, "passthrough"> | undefined;
91
91
  driver?: undefined;
92
- }>, zod3327.ZodEffects<zod3327.ZodObject<{
93
- driver: zod3327.ZodUndefined;
94
- url: zod3327.ZodString;
95
- }, "strip", zod3327.ZodTypeAny, {
92
+ }>, zod333.ZodEffects<zod333.ZodObject<{
93
+ driver: zod333.ZodUndefined;
94
+ url: zod333.ZodString;
95
+ }, "strip", zod333.ZodTypeAny, {
96
96
  url: string;
97
97
  driver?: undefined;
98
98
  }, {
@@ -103,12 +103,12 @@ declare const postgresCredentials: zod3327.ZodUnion<[zod3327.ZodEffects<zod3327.
103
103
  }, {
104
104
  url: string;
105
105
  driver?: undefined;
106
- }>, zod3327.ZodObject<{
107
- driver: zod3327.ZodLiteral<"aws-data-api">;
108
- database: zod3327.ZodString;
109
- secretArn: zod3327.ZodString;
110
- resourceArn: zod3327.ZodString;
111
- }, "strip", zod3327.ZodTypeAny, {
106
+ }>, zod333.ZodObject<{
107
+ driver: zod333.ZodLiteral<"aws-data-api">;
108
+ database: zod333.ZodString;
109
+ secretArn: zod333.ZodString;
110
+ resourceArn: zod333.ZodString;
111
+ }, "strip", zod333.ZodTypeAny, {
112
112
  database: string;
113
113
  driver: "aws-data-api";
114
114
  secretArn: string;
@@ -118,10 +118,10 @@ declare const postgresCredentials: zod3327.ZodUnion<[zod3327.ZodEffects<zod3327.
118
118
  driver: "aws-data-api";
119
119
  secretArn: string;
120
120
  resourceArn: string;
121
- }>, zod3327.ZodObject<{
122
- driver: zod3327.ZodLiteral<"pglite">;
123
- url: zod3327.ZodString;
124
- }, "strip", zod3327.ZodTypeAny, {
121
+ }>, zod333.ZodObject<{
122
+ driver: zod333.ZodLiteral<"pglite">;
123
+ url: zod333.ZodString;
124
+ }, "strip", zod333.ZodTypeAny, {
125
125
  url: string;
126
126
  driver: "pglite";
127
127
  }, {
package/api-postgres.mjs CHANGED
@@ -50399,7 +50399,6 @@ var init_cbor$1 = __esmMin((() => {
50399
50399
  //#region ../node_modules/.pnpm/@smithy+core@3.18.5/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js
50400
50400
  var dateToTag, loadSmithyRpcV2CborErrorCode;
50401
50401
  var init_parseCborBody = __esmMin((() => {
50402
- init_protocols$1();
50403
50402
  init_cbor_types();
50404
50403
  dateToTag = (date$1) => {
50405
50404
  return tag({
package/api-sqlite.mjs CHANGED
@@ -44644,6 +44644,7 @@ var init_cbor$1 = __esmMin((() => {
44644
44644
  //#region ../node_modules/.pnpm/@smithy+core@3.18.5/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js
44645
44645
  var dateToTag, loadSmithyRpcV2CborErrorCode;
44646
44646
  var init_parseCborBody = __esmMin((() => {
44647
+ init_protocols$1();
44647
44648
  init_cbor_types();
44648
44649
  dateToTag = (date$1) => {
44649
44650
  return tag({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzle-kit",
3
- "version": "1.0.0-beta.9-40889e5",
3
+ "version": "1.0.0-beta.9-e89174b",
4
4
  "homepage": "https://orm.drizzle.team",
5
5
  "keywords": [
6
6
  "drizzle",