@experts_hub/shared 1.0.684 → 1.0.686

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.
@@ -47,3 +47,4 @@ export * from './wallet';
47
47
  export * from './discord';
48
48
  export * from './in-app-notification';
49
49
  export * from './docuseal';
50
+ export * from './task';
@@ -0,0 +1,3 @@
1
+ export declare class AddClientRemarkDto {
2
+ remark: string;
3
+ }
@@ -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,6 @@
1
+ export * from './create-task.dto';
2
+ export * from './update-task.dto';
3
+ export * from './task-uuid-param.dto';
4
+ export * from './add-client-remark.dto';
5
+ export * from './mark-task-as-completed.dto';
6
+ export * from './update-estimate-time.dto';
@@ -0,0 +1,3 @@
1
+ export declare class MarkTaskAsCompletedDto {
2
+ status: string;
3
+ }
@@ -0,0 +1,3 @@
1
+ export declare class TaskUuidParamDto {
2
+ uuid: string;
3
+ }
@@ -0,0 +1,4 @@
1
+ export declare class UpdateEstimateTimeDto {
2
+ estimateHours: number;
3
+ additionalWorkNote: string;
4
+ }
@@ -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,2 @@
1
+ export * from './pattern/pattern';
2
+ export * from './dto';
@@ -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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.684",
3
+ "version": "1.0.686",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",