uranio 0.1.4 → 0.1.5

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.
@@ -7,19 +7,19 @@
7
7
  */
8
8
 
9
9
  import {Client, ClientParams} from './client';
10
- import {Atom} from './types';
11
- import {AtomClient} from './atom';
10
+ // import {Atom} from './types';
11
+ // import {AtomClient} from './atom';
12
12
 
13
- interface Product extends Atom {
14
- title: string;
15
- price: number;
16
- }
13
+ // interface Product extends Atom {
14
+ // title: string;
15
+ // price: number;
16
+ // }
17
17
 
18
18
  export class UranioClient extends Client{
19
- public product: AtomClient<Product>;
19
+ // public product: AtomClient<Product>;
20
20
  constructor(params: ClientParams) {
21
21
  super(params);
22
- this.product = new AtomClient<Product>(this.db, 'product');
22
+ // this.product = new AtomClient<Product>(this.db, 'product');
23
23
  }
24
24
  }
25
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uranio",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Uranio is a type-safe ODM for MongoDB",
5
5
  "main": "dist/index.js",
6
6
  "repository": {
@@ -38,7 +38,6 @@
38
38
  "typescript": "^5.2.2"
39
39
  },
40
40
  "dependencies": {
41
- "husky": "^8.0.3",
42
41
  "i0n": "^0.7.3",
43
42
  "plutonio": "^0.2.2"
44
43
  }