law-common 1.0.5 → 1.0.6
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.
- package/build/api/interface/base.response.interface.d.ts +6 -0
- package/build/api/interface/task.create.dto.interface.d.ts +4 -0
- package/build/api/interface/task.update.dto.interface.d.ts +6 -0
- package/build/entities/enums/task.entity.enum.d.ts +5 -0
- package/build/entities/func/convert-to-common-entity.func.d.ts +8 -0
- package/build/entities/interface/audit-column.entity.interface.d.ts +6 -0
- package/build/entities/interface/entity.utils.interface.d.ts +5 -0
- package/build/entities/interface/task.entity.interface.d.ts +8 -0
- package/build/exceptions/interface/error.response.d.ts +9 -0
- package/build/exceptions/type/app-bad-request.exception.d.ts +4 -0
- package/build/index.d.ts +2 -0
- package/build/misc/interface/modify.interface.d.ts +1 -0
- package/build/utils/date.util.d.ts +0 -0
- package/build/utils/number.util.d.ts +0 -0
- package/build/utils/string.util.d.ts +0 -0
- package/package.json +1 -1
- package/tsconfig.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TaskStatusEnum } from "../enums/task.entity.enum";
|
|
2
|
+
import { IAuditColumnEntity } from "./audit-column.entity.interface";
|
|
3
|
+
export interface ITaskEntity extends IAuditColumnEntity {
|
|
4
|
+
id: number;
|
|
5
|
+
name: string;
|
|
6
|
+
description: string;
|
|
7
|
+
status: TaskStatusEnum;
|
|
8
|
+
}
|
package/build/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Modify<T, R> = Omit<T, keyof R> & R;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
|
51
51
|
|
|
52
52
|
/* Emit */
|
|
53
|
-
|
|
53
|
+
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
|
54
54
|
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
|
55
55
|
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
|
56
56
|
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|