@experts_hub/shared 1.0.85 → 1.0.88

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.
@@ -0,0 +1,14 @@
1
+ export declare class FreelancerBankDetailsDto {
2
+ name: string;
3
+ mobile: string;
4
+ email: string;
5
+ address: string;
6
+ accountNumber: string;
7
+ bankName: string;
8
+ branchName: string;
9
+ ifscCode: string;
10
+ routingNo: string;
11
+ abaNumber: string;
12
+ iban: string;
13
+ accountType: string;
14
+ }
@@ -0,0 +1 @@
1
+ export * from './freelancer-bank-details.dto';
@@ -0,0 +1,2 @@
1
+ export * from './pattern/pattern';
2
+ export * from './dto';
@@ -0,0 +1,3 @@
1
+ export declare const BANK_PATTERN: {
2
+ addFreelancerBankDetails: string;
3
+ };
@@ -7,3 +7,4 @@ export * from './user/client-profile';
7
7
  export * from './question';
8
8
  export * from './job';
9
9
  export * from './user/freelancer-profile';
10
+ export * from './bank';
@@ -0,0 +1,5 @@
1
+ export * from './job-basic-information.dto';
2
+ export * from './job-additional-comment.dto';
3
+ export * from './job-description.dto';
4
+ export * from './job-status.dto';
5
+ export * from './job-id-param.dto';
@@ -0,0 +1,3 @@
1
+ export declare class JobAdditionalCommentDto {
2
+ additionalComment?: string;
3
+ }
@@ -0,0 +1,22 @@
1
+ export declare enum JobLocation {
2
+ ONSITE = "ONSITE",
3
+ REMOTE = "REMOTE",
4
+ BOTH = "BOTH"
5
+ }
6
+ export declare enum EmploymentType {
7
+ FULLTIME = "FULLTIME",
8
+ PARTTIME = "PARTTIME",
9
+ BOTH = "BOTH"
10
+ }
11
+ export declare class JobBasicInformationDto {
12
+ jobRole: string;
13
+ note?: string;
14
+ skills: number[];
15
+ openings: number;
16
+ location: JobLocation;
17
+ typeOfEmployment: EmploymentType;
18
+ expectedSalaryFrom: number;
19
+ expectedSalaryTo: number;
20
+ onboardingTat?: string;
21
+ candidateCommunicationSkills?: string;
22
+ }
@@ -0,0 +1,3 @@
1
+ export declare class JobDescriptionDto {
2
+ description: string;
3
+ }
@@ -0,0 +1,3 @@
1
+ export declare class JobIdParamDto {
2
+ id: string;
3
+ }
@@ -0,0 +1,10 @@
1
+ export declare enum JobStatus {
2
+ ACTIVE = "ACTIVE",
3
+ OPEN = "OPEN",
4
+ DRAFT = "DRAFT",
5
+ ONHOLD = "ONHOLD",
6
+ CLOSED = "CLOSED"
7
+ }
8
+ export declare class UpdateJobStatusDto {
9
+ status: JobStatus;
10
+ }
@@ -1 +1,2 @@
1
1
  export * from './pattern/pattern';
2
+ export * from './dto';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.85",
3
+ "version": "1.0.88",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",