@h3ravel/database 11.4.5 → 11.4.6
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/dist/index.cjs
CHANGED
|
@@ -25,21 +25,14 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
25
25
|
|
|
26
26
|
//#endregion
|
|
27
27
|
let __h3ravel_shared = require("@h3ravel/shared");
|
|
28
|
-
__h3ravel_shared = __toESM(__h3ravel_shared);
|
|
29
28
|
let node_fs_promises = require("node:fs/promises");
|
|
30
|
-
node_fs_promises = __toESM(node_fs_promises);
|
|
31
29
|
let __h3ravel_musket = require("@h3ravel/musket");
|
|
32
|
-
__h3ravel_musket = __toESM(__h3ravel_musket);
|
|
33
30
|
let __h3ravel_support = require("@h3ravel/support");
|
|
34
|
-
__h3ravel_support = __toESM(__h3ravel_support);
|
|
35
31
|
let node_path = require("node:path");
|
|
36
32
|
node_path = __toESM(node_path);
|
|
37
33
|
let __h3ravel_arquebus_migrations = require("@h3ravel/arquebus/migrations");
|
|
38
|
-
__h3ravel_arquebus_migrations = __toESM(__h3ravel_arquebus_migrations);
|
|
39
34
|
let __h3ravel_arquebus = require("@h3ravel/arquebus");
|
|
40
|
-
__h3ravel_arquebus = __toESM(__h3ravel_arquebus);
|
|
41
35
|
let __h3ravel_core = require("@h3ravel/core");
|
|
42
|
-
__h3ravel_core = __toESM(__h3ravel_core);
|
|
43
36
|
|
|
44
37
|
//#region src/Utils/TableGuesser.ts
|
|
45
38
|
var TableGuesser = class TableGuesser {
|
package/dist/index.d.cts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/// <reference path="./app.globals.d.ts" />
|
|
2
2
|
import { Command } from "@h3ravel/musket";
|
|
3
|
-
import * as _h3ravel_arquebus0 from "@h3ravel/arquebus";
|
|
4
3
|
import { Model as Model$1, QueryBuilder, Seeder as Seeder$1 } from "@h3ravel/arquebus";
|
|
5
|
-
import * as knex0 from "knex";
|
|
6
4
|
import { Knex } from "knex";
|
|
7
5
|
import { Application, ServiceProvider } from "@h3ravel/core";
|
|
8
6
|
import { IQueryBuilder } from "@h3ravel/arquebus/types";
|
|
@@ -243,11 +241,11 @@ declare class DB {
|
|
|
243
241
|
/**
|
|
244
242
|
* Builder table instance
|
|
245
243
|
*/
|
|
246
|
-
static instance(connection?: string):
|
|
244
|
+
static instance(connection?: string): any;
|
|
247
245
|
/**
|
|
248
246
|
* Builder transaction instance
|
|
249
247
|
*/
|
|
250
|
-
static transaction<C>(callback: (...args: C[]) => any):
|
|
248
|
+
static transaction<C>(callback: (...args: C[]) => any): any;
|
|
251
249
|
private builder;
|
|
252
250
|
}
|
|
253
251
|
//#endregion
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
/// <reference path="./app.globals.d.ts" />
|
|
2
2
|
import { Command } from "@h3ravel/musket";
|
|
3
|
-
import * as _h3ravel_arquebus0 from "@h3ravel/arquebus";
|
|
4
3
|
import { Model as Model$1, QueryBuilder, Seeder as Seeder$1 } from "@h3ravel/arquebus";
|
|
5
4
|
import { Application, ServiceProvider } from "@h3ravel/core";
|
|
6
|
-
import * as knex0 from "knex";
|
|
7
5
|
import { Knex } from "knex";
|
|
8
6
|
import { IQueryBuilder } from "@h3ravel/arquebus/types";
|
|
9
7
|
|
|
@@ -243,11 +241,11 @@ declare class DB {
|
|
|
243
241
|
/**
|
|
244
242
|
* Builder table instance
|
|
245
243
|
*/
|
|
246
|
-
static instance(connection?: string):
|
|
244
|
+
static instance(connection?: string): any;
|
|
247
245
|
/**
|
|
248
246
|
* Builder transaction instance
|
|
249
247
|
*/
|
|
250
|
-
static transaction<C>(callback: (...args: C[]) => any):
|
|
248
|
+
static transaction<C>(callback: (...args: C[]) => any): any;
|
|
251
249
|
private builder;
|
|
252
250
|
}
|
|
253
251
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/database",
|
|
3
|
-
"version": "11.4.
|
|
3
|
+
"version": "11.4.6",
|
|
4
4
|
"description": "Modeling data and migration system for H3ravel.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,15 +41,15 @@
|
|
|
41
41
|
"laravel"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@h3ravel/arquebus": "^0.6.
|
|
45
|
-
"@h3ravel/musket": "^0.3.
|
|
44
|
+
"@h3ravel/arquebus": "^0.6.8",
|
|
45
|
+
"@h3ravel/musket": "^0.3.2",
|
|
46
46
|
"sqlite3": "5.1.7"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@h3ravel/
|
|
50
|
-
"@h3ravel/core": "^1.21.
|
|
51
|
-
"@h3ravel/
|
|
52
|
-
"@h3ravel/
|
|
49
|
+
"@h3ravel/support": "^0.15.1",
|
|
50
|
+
"@h3ravel/core": "^1.21.1",
|
|
51
|
+
"@h3ravel/shared": "^0.27.1",
|
|
52
|
+
"@h3ravel/filesystem": "^0.4.8"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"typescript": "^5.9.2"
|
|
File without changes
|