@experts_hub/shared 1.0.682 → 1.0.685
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/dist/entities/index.d.ts +5 -0
- package/dist/entities/job.entity.d.ts +2 -0
- package/dist/entities/task-checklist-item.entity.d.ts +9 -0
- package/dist/entities/task-deliverable.entity.d.ts +14 -0
- package/dist/entities/task-resource.entity.d.ts +16 -0
- package/dist/entities/task-subtask.entity.d.ts +16 -0
- package/dist/entities/task.entity.d.ts +43 -0
- package/dist/entities/timesheets.entity.d.ts +2 -0
- package/dist/entities/user.entity.d.ts +3 -0
- package/dist/index.d.mts +191 -1
- package/dist/index.d.ts +191 -1
- package/dist/index.js +1417 -849
- package/dist/index.mjs +1353 -790
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/task/dto/add-client-remark.dto.d.ts +3 -0
- package/dist/modules/task/dto/create-task.dto.d.ts +35 -0
- package/dist/modules/task/dto/index.d.ts +6 -0
- package/dist/modules/task/dto/mark-task-as-completed.dto.d.ts +3 -0
- package/dist/modules/task/dto/task-uuid-param.dto.d.ts +3 -0
- package/dist/modules/task/dto/update-estimate-time.dto.d.ts +4 -0
- package/dist/modules/task/dto/update-task.dto.d.ts +35 -0
- package/dist/modules/task/index.d.ts +2 -0
- package/dist/modules/task/pattern/pattern.d.ts +11 -0
- package/package.json +1 -1
package/dist/modules/index.d.ts
CHANGED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
declare class TaskDeliverableDto {
|
|
2
|
+
name: string;
|
|
3
|
+
description?: string;
|
|
4
|
+
type?: string;
|
|
5
|
+
}
|
|
6
|
+
declare class TaskResourceDto {
|
|
7
|
+
name: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
type?: string;
|
|
10
|
+
url?: string;
|
|
11
|
+
}
|
|
12
|
+
declare class TaskChecklistItemDto {
|
|
13
|
+
item: string;
|
|
14
|
+
notes?: string;
|
|
15
|
+
}
|
|
16
|
+
declare class TaskSubtaskDto {
|
|
17
|
+
name: string;
|
|
18
|
+
status?: string;
|
|
19
|
+
description?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare class CreateTaskDto {
|
|
22
|
+
title: string;
|
|
23
|
+
dueDate?: string;
|
|
24
|
+
jobId?: string;
|
|
25
|
+
freelancerId?: string;
|
|
26
|
+
status?: string;
|
|
27
|
+
description?: string;
|
|
28
|
+
priority?: string;
|
|
29
|
+
createdOn?: string;
|
|
30
|
+
deliverables?: TaskDeliverableDto[];
|
|
31
|
+
resources?: TaskResourceDto[];
|
|
32
|
+
checklist?: TaskChecklistItemDto[];
|
|
33
|
+
subtasks?: TaskSubtaskDto[];
|
|
34
|
+
}
|
|
35
|
+
export {};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
declare class TaskDeliverableDto {
|
|
2
|
+
name: string;
|
|
3
|
+
description?: string;
|
|
4
|
+
type?: string;
|
|
5
|
+
}
|
|
6
|
+
declare class TaskResourceDto {
|
|
7
|
+
name: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
type?: string;
|
|
10
|
+
url?: string;
|
|
11
|
+
}
|
|
12
|
+
declare class TaskChecklistItemDto {
|
|
13
|
+
item: string;
|
|
14
|
+
notes?: string;
|
|
15
|
+
}
|
|
16
|
+
declare class TaskSubtaskDto {
|
|
17
|
+
name: string;
|
|
18
|
+
status?: string;
|
|
19
|
+
description?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare class UpdateTaskDto {
|
|
22
|
+
title?: string;
|
|
23
|
+
dueDate?: string;
|
|
24
|
+
jobId?: string;
|
|
25
|
+
freelancerId?: string;
|
|
26
|
+
status?: string;
|
|
27
|
+
description?: string;
|
|
28
|
+
priority?: string;
|
|
29
|
+
createdOn?: string;
|
|
30
|
+
deliverables?: TaskDeliverableDto[];
|
|
31
|
+
resources?: TaskResourceDto[];
|
|
32
|
+
checklist?: TaskChecklistItemDto[];
|
|
33
|
+
subtasks?: TaskSubtaskDto[];
|
|
34
|
+
}
|
|
35
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const TASK_PATTERN: {
|
|
2
|
+
createTask: string;
|
|
3
|
+
fetchTaskForBusiness: string;
|
|
4
|
+
fetchTaskForFreelancer: string;
|
|
5
|
+
fetchTaskDetail: string;
|
|
6
|
+
updateTask: string;
|
|
7
|
+
deleteTask: string;
|
|
8
|
+
addClientRemark: string;
|
|
9
|
+
markTaskAsCompleted: string;
|
|
10
|
+
updateEstimateTime: string;
|
|
11
|
+
};
|