@h3ravel/database 11.5.0-alpha.1 → 11.5.0-alpha.10
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.d.ts +1 -1
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -209,7 +209,7 @@ type TConfig = TBaseConfig & ({
|
|
|
209
209
|
declare const arquebusConfig: (config: any) => TBaseConfig;
|
|
210
210
|
//#endregion
|
|
211
211
|
//#region src/Model.d.ts
|
|
212
|
-
declare const Model_base: typeof UrlRoutable & typeof Model$1 & (new (...args: any[]) =>
|
|
212
|
+
declare const Model_base: typeof UrlRoutable & typeof Model$1 & (new (...args: any[]) => Model$1 & UrlRoutable);
|
|
213
213
|
declare class Model<M extends Model$1 = any> extends Model_base {
|
|
214
214
|
/**
|
|
215
215
|
* Retrieve the model for a bound value.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/database",
|
|
3
|
-
"version": "11.5.0-alpha.
|
|
3
|
+
"version": "11.5.0-alpha.10",
|
|
4
4
|
"description": "Modeling data and migration system for H3ravel.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -41,15 +41,15 @@
|
|
|
41
41
|
"laravel"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@h3ravel/arquebus": "^0.
|
|
45
|
-
"@h3ravel/musket": "^0.6
|
|
44
|
+
"@h3ravel/arquebus": "^0.8.0-alpha.6",
|
|
45
|
+
"@h3ravel/musket": "^0.8.0-alpha.6",
|
|
46
46
|
"sqlite3": "5.1.7"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@h3ravel/core": "^1.22.0-alpha.
|
|
50
|
-
"@h3ravel/shared": "^0.29.0-alpha.
|
|
51
|
-
"@h3ravel/
|
|
52
|
-
"@h3ravel/
|
|
49
|
+
"@h3ravel/core": "^1.22.0-alpha.10",
|
|
50
|
+
"@h3ravel/shared": "^0.29.0-alpha.10",
|
|
51
|
+
"@h3ravel/filesystem": "^0.4.15-alpha.10",
|
|
52
|
+
"@h3ravel/support": "^0.17.0-alpha.10"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"typescript": "^5.9.2"
|