@experts_hub/shared 1.0.511 → 1.0.514
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 +19 -0
- package/dist/entities/job.entity.d.ts +2 -0
- package/dist/index.d.mts +18 -2
- package/dist/index.d.ts +18 -2
- package/dist/index.js +739 -689
- package/dist/index.mjs +682 -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,19 @@
|
|
|
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
|
+
countryName: string;
|
|
11
|
+
country: Country;
|
|
12
|
+
stateId: number;
|
|
13
|
+
stateName: string;
|
|
14
|
+
state: State;
|
|
15
|
+
cityId: number;
|
|
16
|
+
cityName: string;
|
|
17
|
+
city: City;
|
|
18
|
+
locationWiseOpenings: number;
|
|
19
|
+
}
|
|
@@ -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,21 @@ 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
|
+
countryName: string;
|
|
1377
|
+
country: Country;
|
|
1378
|
+
stateId: number;
|
|
1379
|
+
stateName: string;
|
|
1380
|
+
state: State;
|
|
1381
|
+
cityId: number;
|
|
1382
|
+
cityName: string;
|
|
1383
|
+
city: City;
|
|
1384
|
+
locationWiseOpenings: number;
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1372
1387
|
declare enum JobLocationEnum {
|
|
1373
1388
|
ONSITE = "ONSITE",
|
|
1374
1389
|
REMOTE = "REMOTE",
|
|
@@ -1464,6 +1479,7 @@ declare class Job extends BaseEntity {
|
|
|
1464
1479
|
timesheetLine: TimesheetLine[];
|
|
1465
1480
|
invoice: Invoice[];
|
|
1466
1481
|
clientCandidatePreferences: ClientCandidatePreference[];
|
|
1482
|
+
jobLocations: JobLocation[];
|
|
1467
1483
|
}
|
|
1468
1484
|
|
|
1469
1485
|
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,21 @@ 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
|
+
countryName: string;
|
|
1377
|
+
country: Country;
|
|
1378
|
+
stateId: number;
|
|
1379
|
+
stateName: string;
|
|
1380
|
+
state: State;
|
|
1381
|
+
cityId: number;
|
|
1382
|
+
cityName: string;
|
|
1383
|
+
city: City;
|
|
1384
|
+
locationWiseOpenings: number;
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1372
1387
|
declare enum JobLocationEnum {
|
|
1373
1388
|
ONSITE = "ONSITE",
|
|
1374
1389
|
REMOTE = "REMOTE",
|
|
@@ -1464,6 +1479,7 @@ declare class Job extends BaseEntity {
|
|
|
1464
1479
|
timesheetLine: TimesheetLine[];
|
|
1465
1480
|
invoice: Invoice[];
|
|
1466
1481
|
clientCandidatePreferences: ClientCandidatePreference[];
|
|
1482
|
+
jobLocations: JobLocation[];
|
|
1467
1483
|
}
|
|
1468
1484
|
|
|
1469
1485
|
declare enum BankAccountTypeEnum {
|