@candlerip/shared3 0.0.38 → 0.0.39

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.38",
3
+ "version": "0.0.39",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1,8 +1,7 @@
1
1
  import { CustomError } from '../../../error/index.js';
2
- export interface ErrorLog extends CustomError {
2
+ export interface ErrorLog {
3
3
  _id: string;
4
- errorId: string;
5
- serviceName: string;
4
+ customError: CustomError;
6
5
  createdAt: Date;
7
6
  updatedAt: Date;
8
7
  }