@experts_hub/shared 1.0.511 → 1.0.513
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 +1 -0
- package/dist/entities/job-location.entity.d.ts +16 -0
- package/dist/entities/job.entity.d.ts +2 -0
- package/dist/index.d.mts +15 -2
- package/dist/index.d.ts +15 -2
- package/dist/index.js +730 -689
- package/dist/index.mjs +673 -626
- package/dist/modules/job/dto/job-basic-information.dto.d.ts +3 -2
- package/package.json +1 -1
package/dist/entities/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export * from './skill.entity';
|
|
|
24
24
|
export * from './skill-catalog.entity';
|
|
25
25
|
export * from './job-role.entity';
|
|
26
26
|
export * from './job.entity';
|
|
27
|
+
export * from './job-location.entity';
|
|
27
28
|
export * from './job-skill.entity';
|
|
28
29
|
export * from './job-application.entity';
|
|
29
30
|
export * from './interview.entity';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BaseEntity } from "./base.entity";
|
|
2
|
+
import { Job } from "./job.entity";
|
|
3
|
+
import { City } from "./city.entity";
|
|
4
|
+
import { State } from "./state.entity";
|
|
5
|
+
import { Country } from "./country.entity";
|
|
6
|
+
export declare class JobLocation extends BaseEntity {
|
|
7
|
+
jobId: number;
|
|
8
|
+
job: Job;
|
|
9
|
+
countryId: number;
|
|
10
|
+
country: Country;
|
|
11
|
+
stateId: number;
|
|
12
|
+
state: State;
|
|
13
|
+
cityId: number;
|
|
14
|
+
city: City;
|
|
15
|
+
locationWiseOpenings: number;
|
|
16
|
+
}
|
|
@@ -15,6 +15,7 @@ import { Invoice } from "./invoice.entity";
|
|
|
15
15
|
import { F2FInterview } from "./f2f-interview.entity";
|
|
16
16
|
import { InterviewInvite } from "./interview-invite.entity";
|
|
17
17
|
import { EscrowWallet } from "./escrow-wallet.entity";
|
|
18
|
+
import { JobLocation } from "./job-location.entity";
|
|
18
19
|
export declare enum JobLocationEnum {
|
|
19
20
|
ONSITE = "ONSITE",
|
|
20
21
|
REMOTE = "REMOTE",
|
|
@@ -110,4 +111,5 @@ export declare class Job extends BaseEntity {
|
|
|
110
111
|
timesheetLine: TimesheetLine[];
|
|
111
112
|
invoice: Invoice[];
|
|
112
113
|
clientCandidatePreferences: ClientCandidatePreference[];
|
|
114
|
+
jobLocations: JobLocation[];
|
|
113
115
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -467,7 +467,7 @@ declare const JOB_PATTERN: {
|
|
|
467
467
|
searchJobsByRoleAndSkills: string;
|
|
468
468
|
};
|
|
469
469
|
|
|
470
|
-
declare enum
|
|
470
|
+
declare enum JobLocationEnum$1 {
|
|
471
471
|
ONSITE = "ONSITE",
|
|
472
472
|
REMOTE = "REMOTE",
|
|
473
473
|
HYBRID = "HYBRID"
|
|
@@ -489,7 +489,7 @@ declare class JobBasicInformationDto {
|
|
|
489
489
|
skills: string[];
|
|
490
490
|
goodToHaveSkills: string[];
|
|
491
491
|
openings: number;
|
|
492
|
-
location:
|
|
492
|
+
location: JobLocationEnum$1;
|
|
493
493
|
countryId: number;
|
|
494
494
|
stateId: number;
|
|
495
495
|
cityId: number;
|
|
@@ -1369,6 +1369,18 @@ declare class Timesheet extends BaseEntity {
|
|
|
1369
1369
|
clientSendBackReason: string;
|
|
1370
1370
|
}
|
|
1371
1371
|
|
|
1372
|
+
declare class JobLocation extends BaseEntity {
|
|
1373
|
+
jobId: number;
|
|
1374
|
+
job: Job;
|
|
1375
|
+
countryId: number;
|
|
1376
|
+
country: Country;
|
|
1377
|
+
stateId: number;
|
|
1378
|
+
state: State;
|
|
1379
|
+
cityId: number;
|
|
1380
|
+
city: City;
|
|
1381
|
+
locationWiseOpenings: number;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1372
1384
|
declare enum JobLocationEnum {
|
|
1373
1385
|
ONSITE = "ONSITE",
|
|
1374
1386
|
REMOTE = "REMOTE",
|
|
@@ -1464,6 +1476,7 @@ declare class Job extends BaseEntity {
|
|
|
1464
1476
|
timesheetLine: TimesheetLine[];
|
|
1465
1477
|
invoice: Invoice[];
|
|
1466
1478
|
clientCandidatePreferences: ClientCandidatePreference[];
|
|
1479
|
+
jobLocations: JobLocation[];
|
|
1467
1480
|
}
|
|
1468
1481
|
|
|
1469
1482
|
declare enum BankAccountTypeEnum {
|
package/dist/index.d.ts
CHANGED
|
@@ -467,7 +467,7 @@ declare const JOB_PATTERN: {
|
|
|
467
467
|
searchJobsByRoleAndSkills: string;
|
|
468
468
|
};
|
|
469
469
|
|
|
470
|
-
declare enum
|
|
470
|
+
declare enum JobLocationEnum$1 {
|
|
471
471
|
ONSITE = "ONSITE",
|
|
472
472
|
REMOTE = "REMOTE",
|
|
473
473
|
HYBRID = "HYBRID"
|
|
@@ -489,7 +489,7 @@ declare class JobBasicInformationDto {
|
|
|
489
489
|
skills: string[];
|
|
490
490
|
goodToHaveSkills: string[];
|
|
491
491
|
openings: number;
|
|
492
|
-
location:
|
|
492
|
+
location: JobLocationEnum$1;
|
|
493
493
|
countryId: number;
|
|
494
494
|
stateId: number;
|
|
495
495
|
cityId: number;
|
|
@@ -1369,6 +1369,18 @@ declare class Timesheet extends BaseEntity {
|
|
|
1369
1369
|
clientSendBackReason: string;
|
|
1370
1370
|
}
|
|
1371
1371
|
|
|
1372
|
+
declare class JobLocation extends BaseEntity {
|
|
1373
|
+
jobId: number;
|
|
1374
|
+
job: Job;
|
|
1375
|
+
countryId: number;
|
|
1376
|
+
country: Country;
|
|
1377
|
+
stateId: number;
|
|
1378
|
+
state: State;
|
|
1379
|
+
cityId: number;
|
|
1380
|
+
city: City;
|
|
1381
|
+
locationWiseOpenings: number;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1372
1384
|
declare enum JobLocationEnum {
|
|
1373
1385
|
ONSITE = "ONSITE",
|
|
1374
1386
|
REMOTE = "REMOTE",
|
|
@@ -1464,6 +1476,7 @@ declare class Job extends BaseEntity {
|
|
|
1464
1476
|
timesheetLine: TimesheetLine[];
|
|
1465
1477
|
invoice: Invoice[];
|
|
1466
1478
|
clientCandidatePreferences: ClientCandidatePreference[];
|
|
1479
|
+
jobLocations: JobLocation[];
|
|
1467
1480
|
}
|
|
1468
1481
|
|
|
1469
1482
|
declare enum BankAccountTypeEnum {
|