trast-audit-core 1.0.2 → 1.0.3

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.
@@ -8,7 +8,7 @@ export interface ICreateUserInput {
8
8
  password: string;
9
9
  roleId: number;
10
10
  }
11
- export interface IUserResponse extends ICreateUserInput {
11
+ export interface IUserResponse extends Omit<ICreateUserInput, 'password'> {
12
12
  id: number;
13
13
  createdAt: Date | string;
14
14
  updatedAt: Date | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trast-audit-core",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -10,7 +10,7 @@ export interface ICreateUserInput {
10
10
  roleId: number;
11
11
  }
12
12
 
13
- export interface IUserResponse extends ICreateUserInput {
13
+ export interface IUserResponse extends Omit<ICreateUserInput, 'password'> {
14
14
  id: number;
15
15
  createdAt: Date | string;
16
16
  updatedAt: Date | string;