@h3ravel/database 11.15.0-alpha.14 → 11.15.0-alpha.15
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 +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -207,7 +207,7 @@ type TConfig = TBaseConfig & ({
|
|
|
207
207
|
declare const arquebusConfig: (config: any) => TBaseConfig;
|
|
208
208
|
//#endregion
|
|
209
209
|
//#region src/Model.d.ts
|
|
210
|
-
declare const Model_base: typeof UrlRoutable & typeof Model$1 & (new (...args: any[]) => Model$1
|
|
210
|
+
declare const Model_base: typeof UrlRoutable & typeof Model$1 & (new (...args: any[]) => UrlRoutable & Model$1);
|
|
211
211
|
declare class Model<M extends Model$1 = any> extends Model_base {
|
|
212
212
|
/**
|
|
213
213
|
* 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.15.0-alpha.
|
|
3
|
+
"version": "11.15.0-alpha.15",
|
|
4
4
|
"description": "Modeling data and migration system for H3ravel.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"sqlite3": "^6.0.1"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@h3ravel/core": "^1.29.0-alpha.
|
|
50
|
-
"@h3ravel/shared": "^1.29.0-alpha.
|
|
51
|
-
"@h3ravel/filesystem": "^1.29.0-alpha.
|
|
52
|
-
"@h3ravel/support": "^1.29.0-alpha.
|
|
49
|
+
"@h3ravel/core": "^1.29.0-alpha.15",
|
|
50
|
+
"@h3ravel/shared": "^1.29.0-alpha.15",
|
|
51
|
+
"@h3ravel/filesystem": "^1.29.0-alpha.15",
|
|
52
|
+
"@h3ravel/support": "^1.29.0-alpha.15"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"typescript": "^6.0.0"
|