@experts_hub/shared 1.0.566 → 1.0.569

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.
@@ -3,6 +3,11 @@ export declare const ADMIN_FREELANCER_PATTERN: {
3
3
  adminFreelancerCount: string;
4
4
  adminExportFreelancer: string;
5
5
  adminFetchFreelancerById: string;
6
+ adminFetchFreelancerSkillsById: string;
7
+ adminFetchFreelancerProjectsById: string;
8
+ adminFetchFreelancerExperiencesById: string;
9
+ adminFetchFreelancerEducationsById: string;
10
+ adminFetchFreelancerAgreementById: string;
6
11
  adminCreateFreelancer: string;
7
12
  adminUpdateFreelancer: string;
8
13
  adminDeleteFreelancer: string;
@@ -0,0 +1,4 @@
1
+ export declare class CreateHiringDto {
2
+ freelancerId: number;
3
+ jobId: number;
4
+ }
@@ -0,0 +1 @@
1
+ export * from './create-hiring.dto';
@@ -1 +1,2 @@
1
1
  export * from './pattern/pattern';
2
+ export * from './dto';
@@ -0,0 +1,3 @@
1
+ export declare class CreateInvoiceDto {
2
+ timeSheetLineId: number;
3
+ }
@@ -1 +1,2 @@
1
1
  export * from './update-invoice-status.dto';
2
+ export * from './create-invoice.dto';
@@ -0,0 +1,5 @@
1
+ import { JobApplicationStatus } from './change-job-application-status.dto';
2
+ export declare class ChangeJobApplicationStatusBulkDto {
3
+ jobApplicationIds: number[];
4
+ status: JobApplicationStatus;
5
+ }
@@ -0,0 +1,10 @@
1
+ export declare enum JobApplicationStatus {
2
+ PENDING = "PENDING",
3
+ SHORTLISTED = "SHORTLISTED",
4
+ REJECTED = "REJECTED",
5
+ HIRED = "HIRED",
6
+ WITHDRAWN = "WITHDRAWN"
7
+ }
8
+ export declare class ChangeJobApplicationStatusDto {
9
+ status: JobApplicationStatus;
10
+ }
@@ -0,0 +1,3 @@
1
+ export declare class CloseJobDto {
2
+ reason?: string;
3
+ }
@@ -0,0 +1,4 @@
1
+ export declare class CreateJobApplicationDto {
2
+ jobId: number;
3
+ isCta?: boolean;
4
+ }
@@ -4,3 +4,7 @@ export * from './job-description.dto';
4
4
  export * from './job-status.dto';
5
5
  export * from './job-id-param.dto';
6
6
  export * from './job-basic-information-v2.dto';
7
+ export * from './close-job.dto';
8
+ export * from './create-job-application.dto';
9
+ export * from './change-job-application-status.dto';
10
+ export * from './change-job-application-status-bulk.dto';
@@ -0,0 +1,3 @@
1
+ export declare class ApproveTimesheetsDto {
2
+ timesheetLineIds: number[];
3
+ }
@@ -1,2 +1,6 @@
1
1
  export * from './create-freelancer-timesheet.dto';
2
2
  export * from './update-freelancer-timesheet.dto';
3
+ export * from './submit-timesheet.dto';
4
+ export * from './resubmit-timesheet.dto';
5
+ export * from './approve-timesheets.dto';
6
+ export * from './send-back-timesheets.dto';
@@ -0,0 +1,3 @@
1
+ export declare class ResubmitTimesheetDto {
2
+ timesheetLineId: number;
3
+ }
@@ -0,0 +1,4 @@
1
+ export declare class SendBackTimesheetsDto {
2
+ timesheetLineIds: number[];
3
+ reason?: string;
4
+ }
@@ -0,0 +1,3 @@
1
+ export declare class SubmitTimesheetDto {
2
+ timesheetLineId: number;
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.566",
3
+ "version": "1.0.569",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",