@experts_hub/shared 1.0.688 → 1.0.690

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.
@@ -13,6 +13,7 @@ export declare const CONTRACT_PATTERN: {
13
13
  fetchHiredFreelancerForGroupCreation: string;
14
14
  fetchActiveContractFreelancerCount: string;
15
15
  fetchJobsDropDownForContractFilters: string;
16
+ fetchJobsDropDownFortaskFilters: string;
16
17
  fetchOfferedJobsForFreelancer: string;
17
18
  fetchContractsForClient: string;
18
19
  fetchContractCountForClientAsPerStatus: string;
@@ -0,0 +1,6 @@
1
+ export declare class AddTaskLogTimeDto {
2
+ startDate: string;
3
+ endDate: string;
4
+ startTime: string;
5
+ endTime: string;
6
+ }
@@ -0,0 +1,4 @@
1
+ export declare class AddTaskQueryReplyDto {
2
+ message?: string;
3
+ file?: any;
4
+ }
@@ -0,0 +1,8 @@
1
+ import { TaskQueryCategoryEnum } from '../../../entities/task-query.entity';
2
+ export declare class CreateTaskQueryDto {
3
+ queryCategory: TaskQueryCategoryEnum;
4
+ subject?: string;
5
+ description?: string;
6
+ message?: string;
7
+ file?: any;
8
+ }
@@ -19,7 +19,7 @@ declare class TaskSubtaskDto {
19
19
  description?: string;
20
20
  }
21
21
  export declare class CreateTaskDto {
22
- title: string;
22
+ title?: string;
23
23
  dueDate?: string;
24
24
  jobId?: string;
25
25
  freelancerId?: string;
@@ -4,3 +4,7 @@ export * from './task-uuid-param.dto';
4
4
  export * from './add-client-remark.dto';
5
5
  export * from './mark-task-as-completed.dto';
6
6
  export * from './update-estimate-time.dto';
7
+ export * from './create-task-query.dto';
8
+ export * from './add-task-query-reply.dto';
9
+ export * from './mark-task-query-messages-read.dto';
10
+ export * from './add-task-log-time.dto';
@@ -0,0 +1,4 @@
1
+ export declare class MarkTaskQueryMessagesReadDto {
2
+ messageUuid?: string;
3
+ messageUuids?: string[];
4
+ }
@@ -7,5 +7,12 @@ export declare const TASK_PATTERN: {
7
7
  deleteTask: string;
8
8
  addClientRemark: string;
9
9
  markTaskAsCompleted: string;
10
+ markTaskAsSubmitted: string;
10
11
  updateEstimateTime: string;
12
+ addTaskQuery: string;
13
+ fetchTaskQueriesWithDetails: string;
14
+ addTaskQueryReply: string;
15
+ markTaskQueryMessagesRead: string;
16
+ addTaskLogTime: string;
17
+ syncTaskLogTimeFromTimesheet: string;
11
18
  };
@@ -9,4 +9,5 @@ export declare class CreateFreelancerTimesheetDto {
9
9
  deliverable?: string;
10
10
  taskName?: string;
11
11
  description?: string;
12
+ skipTaskLogSync?: boolean;
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.688",
3
+ "version": "1.0.690",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",