law-common 1.1.5 → 1.1.7

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.
@@ -0,0 +1,4 @@
1
+ import { IDesignationApiEntity } from "../../entities";
2
+ import { IBaseResponse } from "./base.response.interface";
3
+ export type IDesignationApiEntityResponse = IBaseResponse<IDesignationApiEntity>;
4
+ export type IDesignationApiEntityResponseArray = IBaseResponse<IDesignationApiEntity[]>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,5 @@
1
1
  import { IAuditColumnEntity } from "./audit-column.entity.interface";
2
- import { IEntityApiResponse, IEntityCreateDto, IEntityFilterData, IEntityUpdateDto } from "./entity.utils.interface";
2
+ import { IApiEntity, IEntityCreateDto, IEntityFilterData, IEntityUpdateDto } from "./entity.utils.interface";
3
3
  export interface IDesignationEntity extends IAuditColumnEntity {
4
4
  id: number;
5
5
  name: string;
@@ -9,6 +9,6 @@ export interface IDesignationEntityCreateDto extends IEntityCreateDto<IDesignati
9
9
  }
10
10
  export interface IDesignationEntityUpdateDto extends IEntityUpdateDto<IDesignationEntity> {
11
11
  }
12
- export interface IDesignationApiResponse extends IEntityApiResponse<IDesignationEntity> {
13
- }
14
12
  export type IDesignationEntityFilterData = IEntityFilterData<IDesignationEntity>;
13
+ export type IDesignationApiEntity = IApiEntity<IDesignationEntity>;
14
+ export type IDesignationApiEntityArray = IDesignationApiEntity[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "law-common",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "files": [