@samet-it/be-base-common 1.1.1 → 1.1.2

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.
@@ -34,6 +34,7 @@ class ErrorHandler {
34
34
  }
35
35
  }
36
36
  catch (e) {
37
+ // nothing
37
38
  }
38
39
  return num;
39
40
  }
@@ -13,11 +13,7 @@ export type TimeShort = number;
13
13
  export type IsoDatetime = string;
14
14
  export type IsoDate = string;
15
15
  export type IsoTime = string;
16
- export interface Entity<I extends IdLike = IdLike, N extends CanBeI18N<L> = NameLike, L extends LangLike = LangLike> {
17
- /**
18
- * Id
19
- * */
20
- id: I;
16
+ export interface Entity<I extends IdLike = IdLike, N extends CanBeI18N<L> = NameLike, L extends LangLike = LangLike> extends IdDocLike<I> {
21
17
  /**
22
18
  * Name
23
19
  * */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@samet-it/be-base-common",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Backend Base Common",
5
5
  "repository": {
6
6
  "type": "git",
@@ -63,8 +63,8 @@
63
63
  }
64
64
  },
65
65
  "dependencies": {
66
- "@leyyo/common": "1.2.1",
67
- "@leyyo/env": "1.2.1",
68
- "@leyyo/asl": "1.2.1"
66
+ "@leyyo/common": "^1.2.2",
67
+ "@leyyo/env": "^1.2.1",
68
+ "@leyyo/asl": "^1.2.1"
69
69
  }
70
70
  }