drizzle-orm 1.0.0-beta.9-c26fd2f → 1.0.0-beta.9-635dfc2
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/aws-data-api/pg/migrator.d.cts +2 -2
- package/aws-data-api/pg/migrator.d.ts +2 -2
- package/better-sqlite3/migrator.d.cts +2 -2
- package/better-sqlite3/migrator.d.ts +2 -2
- package/bun-sql/migrator.d.cts +5 -5
- package/bun-sql/migrator.d.ts +5 -5
- package/bun-sql/mysql/migrator.d.cts +2 -2
- package/bun-sql/mysql/migrator.d.ts +2 -2
- package/bun-sql/postgres/migrator.d.cts +2 -2
- package/bun-sql/postgres/migrator.d.ts +2 -2
- package/bun-sql/sqlite/migrator.d.cts +2 -2
- package/bun-sql/sqlite/migrator.d.ts +2 -2
- package/bun-sqlite/migrator.d.cts +2 -2
- package/bun-sqlite/migrator.d.ts +2 -2
- package/cockroach/migrator.d.cts +2 -2
- package/cockroach/migrator.d.ts +2 -2
- package/effect-postgres/migrator.d.cts +2 -2
- package/effect-postgres/migrator.d.ts +2 -2
- package/expo-sqlite/migrator.d.cts +2 -2
- package/expo-sqlite/migrator.d.ts +2 -2
- package/gel-core/utils.d.cts +3 -3
- package/gel-core/utils.d.ts +3 -3
- package/mysql-core/utils.d.cts +2 -2
- package/mysql-core/utils.d.ts +2 -2
- package/mysql2/migrator.d.cts +2 -2
- package/mysql2/migrator.d.ts +2 -2
- package/neon/neon-auth.d.cts +9 -9
- package/neon/rls.d.cts +2 -2
- package/neon-serverless/migrator.d.cts +2 -2
- package/neon-serverless/migrator.d.ts +2 -2
- package/node-mssql/migrator.d.cts +2 -2
- package/node-mssql/migrator.d.ts +2 -2
- package/node-postgres/migrator.d.cts +2 -2
- package/node-postgres/migrator.d.ts +2 -2
- package/op-sqlite/migrator.d.ts +2 -2
- package/package.json +1 -1
- package/pg-core/utils.d.cts +3 -3
- package/pg-core/utils.d.ts +3 -3
- package/pglite/migrator.d.ts +2 -2
- package/planetscale-serverless/migrator.d.cts +2 -2
- package/planetscale-serverless/migrator.d.ts +2 -2
- package/postgres-js/migrator.d.cts +2 -2
- package/postgres-js/migrator.d.ts +2 -2
- package/singlestore/migrator.d.cts +2 -2
- package/singlestore/migrator.d.ts +2 -2
- package/sql-js/migrator.d.cts +2 -2
- package/sql-js/migrator.d.ts +2 -2
- package/sqlite-core/query-builders/raw.d.ts +2 -2
- package/sqlite-core/utils.d.ts +2 -2
- package/supabase/rls.d.cts +17 -17
- package/tidb-serverless/migrator.d.ts +2 -2
- package/tursodatabase/migrator.d.cts +2 -2
- package/tursodatabase/migrator.d.ts +2 -2
- package/vercel-postgres/migrator.d.cts +2 -2
- package/vercel-postgres/migrator.d.ts +2 -2
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { AwsDataApiPgDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts0 from "../../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/aws-data-api/pg/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: AwsDataApiPgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: AwsDataApiPgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts0.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { AwsDataApiPgDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts15 from "../../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/aws-data-api/pg/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: AwsDataApiPgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: AwsDataApiPgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts15.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BetterSQLite3Database } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts14 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/better-sqlite3/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BetterSQLite3Database<TSchema, TRelations>, config: MigrationConfig): void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BetterSQLite3Database<TSchema, TRelations>, config: MigrationConfig): void | __migrator_ts14.MigratorInitFailResponse;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BetterSQLite3Database } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts7 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/better-sqlite3/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BetterSQLite3Database<TSchema, TRelations>, config: MigrationConfig): void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BetterSQLite3Database<TSchema, TRelations>, config: MigrationConfig): void | __migrator_ts7.MigratorInitFailResponse;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
package/bun-sql/migrator.d.cts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { BunMySqlDatabase } from "./mysql/driver.cjs";
|
|
2
2
|
import { BunSQLDatabase } from "./postgres/driver.cjs";
|
|
3
3
|
import { BunSQLiteDatabase } from "./sqlite/driver.cjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as __migrator_ts18 from "../migrator.cjs";
|
|
5
5
|
import { MigrationConfig } from "../migrator.cjs";
|
|
6
6
|
import { AnyRelations } from "../relations.cjs";
|
|
7
7
|
|
|
8
8
|
//#region src/bun-sql/migrator.d.ts
|
|
9
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
9
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts18.MigratorInitFailResponse>;
|
|
10
10
|
declare namespace migrate {
|
|
11
|
-
function postgres<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
12
|
-
function sqlite<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
13
|
-
function mysql<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunMySqlDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
11
|
+
function postgres<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts18.MigratorInitFailResponse>;
|
|
12
|
+
function sqlite<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts18.MigratorInitFailResponse>;
|
|
13
|
+
function mysql<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunMySqlDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts18.MigratorInitFailResponse>;
|
|
14
14
|
}
|
|
15
15
|
//#endregion
|
|
16
16
|
export { migrate };
|
package/bun-sql/migrator.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { BunMySqlDatabase } from "./mysql/driver.js";
|
|
2
2
|
import { BunSQLDatabase } from "./postgres/driver.js";
|
|
3
3
|
import { BunSQLiteDatabase } from "./sqlite/driver.js";
|
|
4
|
-
import * as
|
|
4
|
+
import * as __migrator_ts8 from "../migrator.js";
|
|
5
5
|
import { MigrationConfig } from "../migrator.js";
|
|
6
6
|
import { AnyRelations } from "../relations.js";
|
|
7
7
|
|
|
8
8
|
//#region src/bun-sql/migrator.d.ts
|
|
9
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
9
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts8.MigratorInitFailResponse>;
|
|
10
10
|
declare namespace migrate {
|
|
11
|
-
function postgres<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
12
|
-
function sqlite<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
13
|
-
function mysql<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunMySqlDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
11
|
+
function postgres<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts8.MigratorInitFailResponse>;
|
|
12
|
+
function sqlite<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts8.MigratorInitFailResponse>;
|
|
13
|
+
function mysql<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunMySqlDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts8.MigratorInitFailResponse>;
|
|
14
14
|
}
|
|
15
15
|
//#endregion
|
|
16
16
|
export { migrate };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BunMySqlDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts24 from "../../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/bun-sql/mysql/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunMySqlDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunMySqlDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts24.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BunMySqlDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts14 from "../../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/bun-sql/mysql/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunMySqlDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunMySqlDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts14.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BunSQLDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts22 from "../../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/bun-sql/postgres/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts22.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BunSQLDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts12 from "../../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/bun-sql/postgres/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts12.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BunSQLiteDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts23 from "../../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/bun-sql/sqlite/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts23.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BunSQLiteDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts13 from "../../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/bun-sql/sqlite/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: BunSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts13.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { SQLiteBunDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts1 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations, EmptyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/bun-sqlite/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: SQLiteBunDatabase<TSchema, TRelations>, config: MigrationConfig): void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: SQLiteBunDatabase<TSchema, TRelations>, config: MigrationConfig): void | __migrator_ts1.MigratorInitFailResponse;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
package/bun-sqlite/migrator.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { SQLiteBunDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts16 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations, EmptyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/bun-sqlite/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: SQLiteBunDatabase<TSchema, TRelations>, config: MigrationConfig): void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: SQLiteBunDatabase<TSchema, TRelations>, config: MigrationConfig): void | __migrator_ts16.MigratorInitFailResponse;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
package/cockroach/migrator.d.cts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { NodeCockroachDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts10 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
|
|
5
5
|
//#region src/cockroach/migrator.d.ts
|
|
6
|
-
declare function migrate<TSchema extends Record<string, unknown>>(db: NodeCockroachDatabase<TSchema>, config: MigrationConfig): Promise<void |
|
|
6
|
+
declare function migrate<TSchema extends Record<string, unknown>>(db: NodeCockroachDatabase<TSchema>, config: MigrationConfig): Promise<void | __migrator_ts10.MigratorInitFailResponse>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { migrate };
|
|
9
9
|
//# sourceMappingURL=migrator.d.cts.map
|
package/cockroach/migrator.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { NodeCockroachDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts21 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
|
|
5
5
|
//#region src/cockroach/migrator.d.ts
|
|
6
|
-
declare function migrate<TSchema extends Record<string, unknown>>(db: NodeCockroachDatabase<TSchema>, config: MigrationConfig): Promise<void |
|
|
6
|
+
declare function migrate<TSchema extends Record<string, unknown>>(db: NodeCockroachDatabase<TSchema>, config: MigrationConfig): Promise<void | __migrator_ts21.MigratorInitFailResponse>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { migrate };
|
|
9
9
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { DrizzleQueryError } from "../errors.cjs";
|
|
2
2
|
import { EffectPgDatabase } from "./driver.cjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as __migrator_ts13 from "../migrator.cjs";
|
|
4
4
|
import { MigrationConfig } from "../migrator.cjs";
|
|
5
5
|
import { AnyRelations } from "../relations.cjs";
|
|
6
6
|
import * as effect_Effect0 from "effect/Effect";
|
|
7
7
|
|
|
8
8
|
//#region src/effect-postgres/migrator.d.ts
|
|
9
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: EffectPgDatabase<TSchema, TRelations>, config: MigrationConfig): effect_Effect0.Effect<void |
|
|
9
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: EffectPgDatabase<TSchema, TRelations>, config: MigrationConfig): effect_Effect0.Effect<void | __migrator_ts13.MigratorInitFailResponse, DrizzleQueryError, never>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { migrate };
|
|
12
12
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { DrizzleQueryError } from "../errors.js";
|
|
2
2
|
import { EffectPgDatabase } from "./driver.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as __migrator_ts5 from "../migrator.js";
|
|
4
4
|
import { MigrationConfig } from "../migrator.js";
|
|
5
5
|
import { AnyRelations } from "../relations.js";
|
|
6
6
|
import * as effect_Effect0 from "effect/Effect";
|
|
7
7
|
|
|
8
8
|
//#region src/effect-postgres/migrator.d.ts
|
|
9
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: EffectPgDatabase<TSchema, TRelations>, config: MigrationConfig): effect_Effect0.Effect<void |
|
|
9
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: EffectPgDatabase<TSchema, TRelations>, config: MigrationConfig): effect_Effect0.Effect<void | __migrator_ts5.MigratorInitFailResponse, DrizzleQueryError, never>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { migrate };
|
|
12
12
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ExpoSQLiteDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts2 from "../migrator.cjs";
|
|
3
3
|
import { AnyRelations, EmptyRelations } from "../relations.cjs";
|
|
4
4
|
|
|
5
5
|
//#region src/expo-sqlite/migrator.d.ts
|
|
6
6
|
interface MigrationConfig$1 {
|
|
7
7
|
migrations: Record<string, string>;
|
|
8
8
|
}
|
|
9
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: ExpoSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig$1): Promise<void |
|
|
9
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: ExpoSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig$1): Promise<void | __migrator_ts2.MigratorInitFailResponse>;
|
|
10
10
|
interface State {
|
|
11
11
|
success: boolean;
|
|
12
12
|
error?: Error;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ExpoSQLiteDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts18 from "../migrator.js";
|
|
3
3
|
import { AnyRelations, EmptyRelations } from "../relations.js";
|
|
4
4
|
|
|
5
5
|
//#region src/expo-sqlite/migrator.d.ts
|
|
6
6
|
interface MigrationConfig$1 {
|
|
7
7
|
migrations: Record<string, string>;
|
|
8
8
|
}
|
|
9
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: ExpoSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig$1): Promise<void |
|
|
9
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: ExpoSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig$1): Promise<void | __migrator_ts18.MigratorInitFailResponse>;
|
|
10
10
|
interface State {
|
|
11
11
|
success: boolean;
|
|
12
12
|
error?: Error;
|
package/gel-core/utils.d.cts
CHANGED
|
@@ -10,7 +10,7 @@ import "./columns/index.cjs";
|
|
|
10
10
|
import { GelViewBase } from "./view-base.cjs";
|
|
11
11
|
import { GelMaterializedView, GelMaterializedViewWithConfig, GelView, ViewWithConfig } from "./view.cjs";
|
|
12
12
|
import "./index.cjs";
|
|
13
|
-
import * as
|
|
13
|
+
import * as __sql_sql_ts4 from "../sql/sql.cjs";
|
|
14
14
|
import { SQL } from "../sql/sql.cjs";
|
|
15
15
|
import { Subquery } from "../subquery.cjs";
|
|
16
16
|
|
|
@@ -33,7 +33,7 @@ declare function getViewConfig<TName extends string = string, TExisting extends
|
|
|
33
33
|
name: TName;
|
|
34
34
|
originalName: TName;
|
|
35
35
|
schema: string | undefined;
|
|
36
|
-
selectedFields:
|
|
36
|
+
selectedFields: __sql_sql_ts4.ColumnsSelection;
|
|
37
37
|
isExisting: TExisting;
|
|
38
38
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
39
39
|
isAlias: boolean;
|
|
@@ -46,7 +46,7 @@ declare function getMaterializedViewConfig<TName extends string = string, TExist
|
|
|
46
46
|
name: TName;
|
|
47
47
|
originalName: TName;
|
|
48
48
|
schema: string | undefined;
|
|
49
|
-
selectedFields:
|
|
49
|
+
selectedFields: __sql_sql_ts4.ColumnsSelection;
|
|
50
50
|
isExisting: TExisting;
|
|
51
51
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
52
52
|
isAlias: boolean;
|
package/gel-core/utils.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { GelViewBase } from "./view-base.js";
|
|
|
11
11
|
import { GelMaterializedView, GelMaterializedViewWithConfig, GelView, ViewWithConfig } from "./view.js";
|
|
12
12
|
import "./index.js";
|
|
13
13
|
import { Subquery } from "../subquery.js";
|
|
14
|
-
import * as
|
|
14
|
+
import * as __sql_sql_ts5 from "../sql/sql.js";
|
|
15
15
|
import { SQL } from "../sql/sql.js";
|
|
16
16
|
|
|
17
17
|
//#region src/gel-core/utils.d.ts
|
|
@@ -33,7 +33,7 @@ declare function getViewConfig<TName extends string = string, TExisting extends
|
|
|
33
33
|
name: TName;
|
|
34
34
|
originalName: TName;
|
|
35
35
|
schema: string | undefined;
|
|
36
|
-
selectedFields:
|
|
36
|
+
selectedFields: __sql_sql_ts5.ColumnsSelection;
|
|
37
37
|
isExisting: TExisting;
|
|
38
38
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
39
39
|
isAlias: boolean;
|
|
@@ -46,7 +46,7 @@ declare function getMaterializedViewConfig<TName extends string = string, TExist
|
|
|
46
46
|
name: TName;
|
|
47
47
|
originalName: TName;
|
|
48
48
|
schema: string | undefined;
|
|
49
|
-
selectedFields:
|
|
49
|
+
selectedFields: __sql_sql_ts5.ColumnsSelection;
|
|
50
50
|
isExisting: TExisting;
|
|
51
51
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
52
52
|
isAlias: boolean;
|
package/mysql-core/utils.d.cts
CHANGED
|
@@ -9,7 +9,7 @@ import { MySqlViewBase } from "./view-base.cjs";
|
|
|
9
9
|
import { IndexForHint } from "./query-builders/select.cjs";
|
|
10
10
|
import { MySqlView } from "./view.cjs";
|
|
11
11
|
import "./index.cjs";
|
|
12
|
-
import * as
|
|
12
|
+
import * as __sql_sql_ts0 from "../sql/sql.cjs";
|
|
13
13
|
import { SQL } from "../sql/sql.cjs";
|
|
14
14
|
import { Subquery } from "../subquery.cjs";
|
|
15
15
|
|
|
@@ -33,7 +33,7 @@ declare function getViewConfig<TName extends string = string, TExisting extends
|
|
|
33
33
|
name: TName;
|
|
34
34
|
originalName: TName;
|
|
35
35
|
schema: string | undefined;
|
|
36
|
-
selectedFields:
|
|
36
|
+
selectedFields: __sql_sql_ts0.ColumnsSelection;
|
|
37
37
|
isExisting: TExisting;
|
|
38
38
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
39
39
|
isAlias: boolean;
|
package/mysql-core/utils.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { IndexForHint } from "./query-builders/select.js";
|
|
|
10
10
|
import { MySqlView } from "./view.js";
|
|
11
11
|
import "./index.js";
|
|
12
12
|
import { Subquery } from "../subquery.js";
|
|
13
|
-
import * as
|
|
13
|
+
import * as __sql_sql_ts2 from "../sql/sql.js";
|
|
14
14
|
import { SQL } from "../sql/sql.js";
|
|
15
15
|
|
|
16
16
|
//#region src/mysql-core/utils.d.ts
|
|
@@ -33,7 +33,7 @@ declare function getViewConfig<TName extends string = string, TExisting extends
|
|
|
33
33
|
name: TName;
|
|
34
34
|
originalName: TName;
|
|
35
35
|
schema: string | undefined;
|
|
36
|
-
selectedFields:
|
|
36
|
+
selectedFields: __sql_sql_ts2.ColumnsSelection;
|
|
37
37
|
isExisting: TExisting;
|
|
38
38
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
39
39
|
isAlias: boolean;
|
package/mysql2/migrator.d.cts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { MySql2Database } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts3 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/mysql2/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: MySql2Database<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: MySql2Database<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts3.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
package/mysql2/migrator.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { MySql2Database } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts6 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/mysql2/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: MySql2Database<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: MySql2Database<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts6.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
package/neon/neon-auth.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as __pg_core_index_ts29 from "../pg-core/index.cjs";
|
|
2
2
|
|
|
3
3
|
//#region src/neon/neon-auth.d.ts
|
|
4
4
|
|
|
@@ -9,11 +9,11 @@ import * as __pg_core_index_ts0 from "../pg-core/index.cjs";
|
|
|
9
9
|
* @schema neon_auth
|
|
10
10
|
* @table users_sync
|
|
11
11
|
*/
|
|
12
|
-
declare const usersSync:
|
|
12
|
+
declare const usersSync: __pg_core_index_ts29.PgTableWithColumns<{
|
|
13
13
|
name: "users_sync";
|
|
14
14
|
schema: "neon_auth";
|
|
15
15
|
columns: {
|
|
16
|
-
rawJson:
|
|
16
|
+
rawJson: __pg_core_index_ts29.PgBuildColumn<"users_sync", __pg_core_index_ts29.SetNotNull<__pg_core_index_ts29.PgJsonbBuilder>, {
|
|
17
17
|
name: string;
|
|
18
18
|
tableName: "users_sync";
|
|
19
19
|
dataType: "object json";
|
|
@@ -29,7 +29,7 @@ declare const usersSync: __pg_core_index_ts0.PgTableWithColumns<{
|
|
|
29
29
|
generated: undefined;
|
|
30
30
|
insertType: unknown;
|
|
31
31
|
}>;
|
|
32
|
-
id:
|
|
32
|
+
id: __pg_core_index_ts29.PgBuildColumn<"users_sync", __pg_core_index_ts29.SetNotNull<__pg_core_index_ts29.SetIsPrimaryKey<__pg_core_index_ts29.PgTextBuilder<undefined>>>, {
|
|
33
33
|
name: string;
|
|
34
34
|
tableName: "users_sync";
|
|
35
35
|
dataType: "string";
|
|
@@ -45,7 +45,7 @@ declare const usersSync: __pg_core_index_ts0.PgTableWithColumns<{
|
|
|
45
45
|
generated: undefined;
|
|
46
46
|
insertType: string;
|
|
47
47
|
}>;
|
|
48
|
-
name:
|
|
48
|
+
name: __pg_core_index_ts29.PgBuildColumn<"users_sync", __pg_core_index_ts29.PgTextBuilder<undefined>, {
|
|
49
49
|
name: string;
|
|
50
50
|
tableName: "users_sync";
|
|
51
51
|
dataType: "string";
|
|
@@ -61,7 +61,7 @@ declare const usersSync: __pg_core_index_ts0.PgTableWithColumns<{
|
|
|
61
61
|
generated: undefined;
|
|
62
62
|
insertType: string | null | undefined;
|
|
63
63
|
}>;
|
|
64
|
-
email:
|
|
64
|
+
email: __pg_core_index_ts29.PgBuildColumn<"users_sync", __pg_core_index_ts29.PgTextBuilder<undefined>, {
|
|
65
65
|
name: string;
|
|
66
66
|
tableName: "users_sync";
|
|
67
67
|
dataType: "string";
|
|
@@ -77,7 +77,7 @@ declare const usersSync: __pg_core_index_ts0.PgTableWithColumns<{
|
|
|
77
77
|
generated: undefined;
|
|
78
78
|
insertType: string | null | undefined;
|
|
79
79
|
}>;
|
|
80
|
-
createdAt:
|
|
80
|
+
createdAt: __pg_core_index_ts29.PgBuildColumn<"users_sync", __pg_core_index_ts29.PgTimestampStringBuilder, {
|
|
81
81
|
name: string;
|
|
82
82
|
tableName: "users_sync";
|
|
83
83
|
dataType: "string timestamp";
|
|
@@ -93,7 +93,7 @@ declare const usersSync: __pg_core_index_ts0.PgTableWithColumns<{
|
|
|
93
93
|
generated: undefined;
|
|
94
94
|
insertType: string | null | undefined;
|
|
95
95
|
}>;
|
|
96
|
-
deletedAt:
|
|
96
|
+
deletedAt: __pg_core_index_ts29.PgBuildColumn<"users_sync", __pg_core_index_ts29.PgTimestampStringBuilder, {
|
|
97
97
|
name: string;
|
|
98
98
|
tableName: "users_sync";
|
|
99
99
|
dataType: "string timestamp";
|
|
@@ -109,7 +109,7 @@ declare const usersSync: __pg_core_index_ts0.PgTableWithColumns<{
|
|
|
109
109
|
generated: undefined;
|
|
110
110
|
insertType: string | null | undefined;
|
|
111
111
|
}>;
|
|
112
|
-
updatedAt:
|
|
112
|
+
updatedAt: __pg_core_index_ts29.PgBuildColumn<"users_sync", __pg_core_index_ts29.PgTimestampStringBuilder, {
|
|
113
113
|
name: string;
|
|
114
114
|
tableName: "users_sync";
|
|
115
115
|
dataType: "string timestamp";
|
package/neon/rls.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SQL } from "../sql/sql.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __pg_core_index_ts28 from "../pg-core/index.cjs";
|
|
3
3
|
import { AnyPgColumn, PgPolicyToOption } from "../pg-core/index.cjs";
|
|
4
4
|
import { PgRole } from "../pg-core/roles.cjs";
|
|
5
5
|
|
|
@@ -18,7 +18,7 @@ declare const crudPolicy: (options: {
|
|
|
18
18
|
role: PgPolicyToOption;
|
|
19
19
|
read: SQL | boolean | null;
|
|
20
20
|
modify: SQL | boolean | null;
|
|
21
|
-
}) => (
|
|
21
|
+
}) => (__pg_core_index_ts28.PgPolicy | undefined)[];
|
|
22
22
|
declare const authenticatedRole: PgRole;
|
|
23
23
|
declare const anonymousRole: PgRole;
|
|
24
24
|
declare const authUid: (userIdColumn: AnyPgColumn) => SQL<unknown>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { NeonDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts0 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/neon-serverless/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: NeonDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: NeonDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts0.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { NeonDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts22 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/neon-serverless/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: NeonDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: NeonDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts22.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { NodeMsSqlDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts6 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
|
|
5
5
|
//#region src/node-mssql/migrator.d.ts
|
|
6
|
-
declare function migrate<TSchema extends Record<string, unknown>>(db: NodeMsSqlDatabase<TSchema>, config: MigrationConfig): Promise<void |
|
|
6
|
+
declare function migrate<TSchema extends Record<string, unknown>>(db: NodeMsSqlDatabase<TSchema>, config: MigrationConfig): Promise<void | __migrator_ts6.MigratorInitFailResponse>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { migrate };
|
|
9
9
|
//# sourceMappingURL=migrator.d.cts.map
|
package/node-mssql/migrator.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { NodeMsSqlDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts17 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
|
|
5
5
|
//#region src/node-mssql/migrator.d.ts
|
|
6
|
-
declare function migrate<TSchema extends Record<string, unknown>>(db: NodeMsSqlDatabase<TSchema>, config: MigrationConfig): Promise<void |
|
|
6
|
+
declare function migrate<TSchema extends Record<string, unknown>>(db: NodeMsSqlDatabase<TSchema>, config: MigrationConfig): Promise<void | __migrator_ts17.MigratorInitFailResponse>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { migrate };
|
|
9
9
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { NodePgDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts5 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/node-postgres/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: NodePgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: NodePgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts5.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { NodePgDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts20 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/node-postgres/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: NodePgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: NodePgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts20.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
package/op-sqlite/migrator.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { OPSQLiteDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts4 from "../migrator.js";
|
|
3
3
|
import { AnyRelations } from "../relations.js";
|
|
4
4
|
|
|
5
5
|
//#region src/op-sqlite/migrator.d.ts
|
|
6
6
|
interface MigrationConfig$1 {
|
|
7
7
|
migrations: Record<string, string>;
|
|
8
8
|
}
|
|
9
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: OPSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig$1): Promise<void |
|
|
9
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: OPSQLiteDatabase<TSchema, TRelations>, config: MigrationConfig$1): Promise<void | __migrator_ts4.MigratorInitFailResponse>;
|
|
10
10
|
interface State {
|
|
11
11
|
success: boolean;
|
|
12
12
|
error?: Error;
|
package/package.json
CHANGED
package/pg-core/utils.d.cts
CHANGED
|
@@ -8,7 +8,7 @@ import { UniqueConstraint } from "./unique-constraint.cjs";
|
|
|
8
8
|
import { PgViewBase } from "./view-base.cjs";
|
|
9
9
|
import { PgMaterializedView, PgMaterializedViewWithConfig, PgView, ViewWithConfig } from "./view.cjs";
|
|
10
10
|
import "./index.cjs";
|
|
11
|
-
import * as
|
|
11
|
+
import * as __sql_sql_ts6 from "../sql/sql.cjs";
|
|
12
12
|
import { SQL } from "../sql/sql.cjs";
|
|
13
13
|
import { Subquery } from "../subquery.cjs";
|
|
14
14
|
import { PgTable } from "./table.cjs";
|
|
@@ -32,7 +32,7 @@ declare function getViewConfig<TName extends string = string, TExisting extends
|
|
|
32
32
|
name: TName;
|
|
33
33
|
originalName: TName;
|
|
34
34
|
schema: string | undefined;
|
|
35
|
-
selectedFields:
|
|
35
|
+
selectedFields: __sql_sql_ts6.ColumnsSelection;
|
|
36
36
|
isExisting: TExisting;
|
|
37
37
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
38
38
|
isAlias: boolean;
|
|
@@ -45,7 +45,7 @@ declare function getMaterializedViewConfig<TName extends string = string, TExist
|
|
|
45
45
|
name: TName;
|
|
46
46
|
originalName: TName;
|
|
47
47
|
schema: string | undefined;
|
|
48
|
-
selectedFields:
|
|
48
|
+
selectedFields: __sql_sql_ts6.ColumnsSelection;
|
|
49
49
|
isExisting: TExisting;
|
|
50
50
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
51
51
|
isAlias: boolean;
|
package/pg-core/utils.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { PgViewBase } from "./view-base.js";
|
|
|
9
9
|
import { PgMaterializedView, PgMaterializedViewWithConfig, PgView, ViewWithConfig } from "./view.js";
|
|
10
10
|
import "./index.js";
|
|
11
11
|
import { Subquery } from "../subquery.js";
|
|
12
|
-
import * as
|
|
12
|
+
import * as __sql_sql_ts3 from "../sql/sql.js";
|
|
13
13
|
import { SQL } from "../sql/sql.js";
|
|
14
14
|
import { PgTable } from "./table.js";
|
|
15
15
|
|
|
@@ -32,7 +32,7 @@ declare function getViewConfig<TName extends string = string, TExisting extends
|
|
|
32
32
|
name: TName;
|
|
33
33
|
originalName: TName;
|
|
34
34
|
schema: string | undefined;
|
|
35
|
-
selectedFields:
|
|
35
|
+
selectedFields: __sql_sql_ts3.ColumnsSelection;
|
|
36
36
|
isExisting: TExisting;
|
|
37
37
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
38
38
|
isAlias: boolean;
|
|
@@ -45,7 +45,7 @@ declare function getMaterializedViewConfig<TName extends string = string, TExist
|
|
|
45
45
|
name: TName;
|
|
46
46
|
originalName: TName;
|
|
47
47
|
schema: string | undefined;
|
|
48
|
-
selectedFields:
|
|
48
|
+
selectedFields: __sql_sql_ts3.ColumnsSelection;
|
|
49
49
|
isExisting: TExisting;
|
|
50
50
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
51
51
|
isAlias: boolean;
|
package/pglite/migrator.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { PgliteDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts3 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/pglite/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: PgliteDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: PgliteDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts3.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { PlanetScaleDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts12 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/planetscale-serverless/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: PlanetScaleDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: PlanetScaleDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts12.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { PlanetScaleDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts0 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/planetscale-serverless/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: PlanetScaleDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: PlanetScaleDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts0.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { PostgresJsDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts4 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/postgres-js/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: PostgresJsDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: PostgresJsDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts4.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { PostgresJsDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts19 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/postgres-js/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: PostgresJsDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: PostgresJsDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts19.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { SingleStoreDriverDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts11 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/singlestore/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: SingleStoreDriverDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: SingleStoreDriverDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts11.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { SingleStoreDriverDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts24 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/singlestore/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: SingleStoreDriverDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: SingleStoreDriverDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts24.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
package/sql-js/migrator.d.cts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { SQLJsDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts17 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations, EmptyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/sql-js/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: SQLJsDatabase<TSchema, TRelations>, config: MigrationConfig): void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: SQLJsDatabase<TSchema, TRelations>, config: MigrationConfig): void | __migrator_ts17.MigratorInitFailResponse;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
package/sql-js/migrator.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { SQLJsDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts23 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations, EmptyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/sql-js/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: SQLJsDatabase<TSchema, TRelations>, config: MigrationConfig): void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations = EmptyRelations>(db: SQLJsDatabase<TSchema, TRelations>, config: MigrationConfig): void | __migrator_ts23.MigratorInitFailResponse;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SQLiteAsyncDialect } from "../dialect.js";
|
|
2
2
|
import { entityKind } from "../../entity.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as __sql_sql_ts7 from "../../sql/sql.js";
|
|
4
4
|
import { SQL, SQLWrapper } from "../../sql/sql.js";
|
|
5
5
|
import { QueryPromise } from "../../query-promise.js";
|
|
6
6
|
import { PreparedQuery } from "../../session.js";
|
|
@@ -25,7 +25,7 @@ declare class SQLiteRaw<TResult> extends QueryPromise<TResult> implements Runnab
|
|
|
25
25
|
getSQL: () => SQL, action: SQLiteRawAction, dialect: SQLiteAsyncDialect, mapBatchResult: (result: unknown) => unknown);
|
|
26
26
|
getQuery(): {
|
|
27
27
|
method: SQLiteRawAction;
|
|
28
|
-
typings?:
|
|
28
|
+
typings?: __sql_sql_ts7.QueryTypingsValue[];
|
|
29
29
|
sql: string;
|
|
30
30
|
params: unknown[];
|
|
31
31
|
};
|
package/sqlite-core/utils.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { UniqueConstraint } from "./unique-constraint.js";
|
|
|
9
9
|
import { SQLiteTable } from "./table.js";
|
|
10
10
|
import "./index.js";
|
|
11
11
|
import { Subquery } from "../subquery.js";
|
|
12
|
-
import * as
|
|
12
|
+
import * as __sql_sql_ts0 from "../sql/sql.js";
|
|
13
13
|
import { SQL } from "../sql/sql.js";
|
|
14
14
|
|
|
15
15
|
//#region src/sqlite-core/utils.d.ts
|
|
@@ -28,7 +28,7 @@ declare function getViewConfig<TName extends string = string, TExisting extends
|
|
|
28
28
|
name: TName;
|
|
29
29
|
originalName: TName;
|
|
30
30
|
schema: string | undefined;
|
|
31
|
-
selectedFields:
|
|
31
|
+
selectedFields: __sql_sql_ts0.ColumnsSelection;
|
|
32
32
|
isExisting: TExisting;
|
|
33
33
|
query: TExisting extends true ? undefined : SQL<unknown>;
|
|
34
34
|
isAlias: boolean;
|
package/supabase/rls.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as __sql_sql_ts1 from "../sql/sql.cjs";
|
|
2
|
+
import * as __pg_core_index_ts0 from "../pg-core/index.cjs";
|
|
3
3
|
import * as __pg_core_roles_ts0 from "../pg-core/roles.cjs";
|
|
4
4
|
|
|
5
5
|
//#region src/supabase/rls.d.ts
|
|
@@ -8,11 +8,11 @@ declare const authenticatedRole: __pg_core_roles_ts0.PgRole;
|
|
|
8
8
|
declare const serviceRole: __pg_core_roles_ts0.PgRole;
|
|
9
9
|
declare const postgresRole: __pg_core_roles_ts0.PgRole;
|
|
10
10
|
declare const supabaseAuthAdminRole: __pg_core_roles_ts0.PgRole;
|
|
11
|
-
declare const authUsers:
|
|
11
|
+
declare const authUsers: __pg_core_index_ts0.PgTableWithColumns<{
|
|
12
12
|
name: "users";
|
|
13
13
|
schema: "auth";
|
|
14
14
|
columns: {
|
|
15
|
-
id:
|
|
15
|
+
id: __pg_core_index_ts0.PgBuildColumn<"users", __pg_core_index_ts0.SetNotNull<__pg_core_index_ts0.SetIsPrimaryKey<__pg_core_index_ts0.PgUUIDBuilder>>, {
|
|
16
16
|
name: string;
|
|
17
17
|
tableName: "users";
|
|
18
18
|
dataType: "string uuid";
|
|
@@ -28,7 +28,7 @@ declare const authUsers: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
28
28
|
generated: undefined;
|
|
29
29
|
insertType: string;
|
|
30
30
|
}>;
|
|
31
|
-
email:
|
|
31
|
+
email: __pg_core_index_ts0.PgBuildColumn<"users", __pg_core_index_ts0.PgVarcharBuilder<undefined>, {
|
|
32
32
|
name: string;
|
|
33
33
|
tableName: "users";
|
|
34
34
|
dataType: "string";
|
|
@@ -44,7 +44,7 @@ declare const authUsers: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
44
44
|
generated: undefined;
|
|
45
45
|
insertType: string | null | undefined;
|
|
46
46
|
}>;
|
|
47
|
-
phone:
|
|
47
|
+
phone: __pg_core_index_ts0.PgBuildColumn<"users", __pg_core_index_ts0.PgTextBuilder<undefined>, {
|
|
48
48
|
name: string;
|
|
49
49
|
tableName: "users";
|
|
50
50
|
dataType: "string";
|
|
@@ -60,7 +60,7 @@ declare const authUsers: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
60
60
|
generated: undefined;
|
|
61
61
|
insertType: string | null | undefined;
|
|
62
62
|
}>;
|
|
63
|
-
emailConfirmedAt:
|
|
63
|
+
emailConfirmedAt: __pg_core_index_ts0.PgBuildColumn<"users", __pg_core_index_ts0.PgTimestampBuilder, {
|
|
64
64
|
name: string;
|
|
65
65
|
tableName: "users";
|
|
66
66
|
dataType: "object date";
|
|
@@ -76,7 +76,7 @@ declare const authUsers: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
76
76
|
generated: undefined;
|
|
77
77
|
insertType: Date | null | undefined;
|
|
78
78
|
}>;
|
|
79
|
-
phoneConfirmedAt:
|
|
79
|
+
phoneConfirmedAt: __pg_core_index_ts0.PgBuildColumn<"users", __pg_core_index_ts0.PgTimestampBuilder, {
|
|
80
80
|
name: string;
|
|
81
81
|
tableName: "users";
|
|
82
82
|
dataType: "object date";
|
|
@@ -92,7 +92,7 @@ declare const authUsers: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
92
92
|
generated: undefined;
|
|
93
93
|
insertType: Date | null | undefined;
|
|
94
94
|
}>;
|
|
95
|
-
lastSignInAt:
|
|
95
|
+
lastSignInAt: __pg_core_index_ts0.PgBuildColumn<"users", __pg_core_index_ts0.PgTimestampBuilder, {
|
|
96
96
|
name: string;
|
|
97
97
|
tableName: "users";
|
|
98
98
|
dataType: "object date";
|
|
@@ -108,7 +108,7 @@ declare const authUsers: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
108
108
|
generated: undefined;
|
|
109
109
|
insertType: Date | null | undefined;
|
|
110
110
|
}>;
|
|
111
|
-
createdAt:
|
|
111
|
+
createdAt: __pg_core_index_ts0.PgBuildColumn<"users", __pg_core_index_ts0.PgTimestampBuilder, {
|
|
112
112
|
name: string;
|
|
113
113
|
tableName: "users";
|
|
114
114
|
dataType: "object date";
|
|
@@ -124,7 +124,7 @@ declare const authUsers: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
124
124
|
generated: undefined;
|
|
125
125
|
insertType: Date | null | undefined;
|
|
126
126
|
}>;
|
|
127
|
-
updatedAt:
|
|
127
|
+
updatedAt: __pg_core_index_ts0.PgBuildColumn<"users", __pg_core_index_ts0.PgTimestampBuilder, {
|
|
128
128
|
name: string;
|
|
129
129
|
tableName: "users";
|
|
130
130
|
dataType: "object date";
|
|
@@ -143,11 +143,11 @@ declare const authUsers: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
143
143
|
};
|
|
144
144
|
dialect: "pg";
|
|
145
145
|
}>;
|
|
146
|
-
declare const realtimeMessages:
|
|
146
|
+
declare const realtimeMessages: __pg_core_index_ts0.PgTableWithColumns<{
|
|
147
147
|
name: "messages";
|
|
148
148
|
schema: "realtime";
|
|
149
149
|
columns: {
|
|
150
|
-
id:
|
|
150
|
+
id: __pg_core_index_ts0.PgBuildColumn<"messages", __pg_core_index_ts0.SetIsPrimaryKey<__pg_core_index_ts0.PgBigSerial64Builder>, {
|
|
151
151
|
name: string;
|
|
152
152
|
tableName: "messages";
|
|
153
153
|
dataType: "bigint int64";
|
|
@@ -163,7 +163,7 @@ declare const realtimeMessages: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
163
163
|
generated: undefined;
|
|
164
164
|
insertType: bigint | undefined;
|
|
165
165
|
}>;
|
|
166
|
-
topic:
|
|
166
|
+
topic: __pg_core_index_ts0.PgBuildColumn<"messages", __pg_core_index_ts0.SetNotNull<__pg_core_index_ts0.PgTextBuilder<undefined>>, {
|
|
167
167
|
name: string;
|
|
168
168
|
tableName: "messages";
|
|
169
169
|
dataType: "string";
|
|
@@ -179,7 +179,7 @@ declare const realtimeMessages: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
179
179
|
generated: undefined;
|
|
180
180
|
insertType: string;
|
|
181
181
|
}>;
|
|
182
|
-
extension:
|
|
182
|
+
extension: __pg_core_index_ts0.PgBuildColumn<"messages", __pg_core_index_ts0.SetNotNull<__pg_core_index_ts0.PgTextBuilder<["presence", "broadcast", "postgres_changes"]>>, {
|
|
183
183
|
name: string;
|
|
184
184
|
tableName: "messages";
|
|
185
185
|
dataType: "string enum";
|
|
@@ -198,8 +198,8 @@ declare const realtimeMessages: __pg_core_index_ts18.PgTableWithColumns<{
|
|
|
198
198
|
};
|
|
199
199
|
dialect: "pg";
|
|
200
200
|
}>;
|
|
201
|
-
declare const authUid:
|
|
202
|
-
declare const realtimeTopic:
|
|
201
|
+
declare const authUid: __sql_sql_ts1.SQL<unknown>;
|
|
202
|
+
declare const realtimeTopic: __sql_sql_ts1.SQL<unknown>;
|
|
203
203
|
//#endregion
|
|
204
204
|
export { anonRole, authUid, authUsers, authenticatedRole, postgresRole, realtimeMessages, realtimeTopic, serviceRole, supabaseAuthAdminRole };
|
|
205
205
|
//# sourceMappingURL=rls.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { TiDBServerlessDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts2 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/tidb-serverless/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: TiDBServerlessDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: TiDBServerlessDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts2.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { TursoDatabaseDatabase } from "./driver-core.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts16 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/tursodatabase/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: TursoDatabaseDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: TursoDatabaseDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts16.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { TursoDatabaseDatabase } from "./driver-core.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts1 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/tursodatabase/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: TursoDatabaseDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: TursoDatabaseDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts1.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { VercelPgDatabase } from "./driver.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts15 from "../migrator.cjs";
|
|
3
3
|
import { MigrationConfig } from "../migrator.cjs";
|
|
4
4
|
import { AnyRelations } from "../relations.cjs";
|
|
5
5
|
|
|
6
6
|
//#region src/vercel-postgres/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: VercelPgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: VercelPgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts15.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { VercelPgDatabase } from "./driver.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as __migrator_ts0 from "../migrator.js";
|
|
3
3
|
import { MigrationConfig } from "../migrator.js";
|
|
4
4
|
import { AnyRelations } from "../relations.js";
|
|
5
5
|
|
|
6
6
|
//#region src/vercel-postgres/migrator.d.ts
|
|
7
|
-
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: VercelPgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void |
|
|
7
|
+
declare function migrate<TSchema extends Record<string, unknown>, TRelations extends AnyRelations>(db: VercelPgDatabase<TSchema, TRelations>, config: MigrationConfig): Promise<void | __migrator_ts0.MigratorInitFailResponse>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { migrate };
|
|
10
10
|
//# sourceMappingURL=migrator.d.ts.map
|