@kurdel/core 0.1.0-beta.2 → 0.1.0-beta.4

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/lib/db/model.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  import type { Newable } from '@kurdel/common';
2
2
  import type { Identifier } from '@kurdel/ioc';
3
- import type { IDatabase } from '@kurdel/db';
3
+ import type { Database } from '@kurdel/db';
4
4
  interface ModelDeps {
5
- db: IDatabase;
5
+ db: Database;
6
6
  }
7
7
  export declare abstract class Model {
8
8
  private db;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kurdel/core",
3
- "version": "0.1.0-beta.2",
3
+ "version": "0.1.0-beta.4",
4
4
  "description": "Core HTTP, routing, controller, and model abstractions for Kurdel",
5
5
  "type": "module",
6
6
  "exports": {
@@ -60,8 +60,8 @@
60
60
  "tsc-alias": "^1.8.16"
61
61
  },
62
62
  "dependencies": {
63
- "@kurdel/common": "0.1.0-beta.2",
64
- "@kurdel/db": "0.1.0-beta.2",
65
- "@kurdel/ioc": "0.1.0-beta.2"
63
+ "@kurdel/common": "0.1.0-beta.4",
64
+ "@kurdel/db": "0.1.0-beta.4",
65
+ "@kurdel/ioc": "0.1.0-beta.4"
66
66
  }
67
67
  }