@experts_hub/shared 1.0.432 → 1.0.433
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/client-candidate-preference.entity.d.ts +3 -0
- package/dist/entities/job-recommendation.entity.d.ts +2 -0
- package/dist/index.d.mts +17 -14
- package/dist/index.d.ts +17 -14
- package/dist/index.js +187 -174
- package/dist/index.mjs +202 -187
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { User } from "./user.entity";
|
|
3
3
|
import { Job } from "./job.entity";
|
|
4
|
+
import { JobRecommendation } from "./job-recommendation.entity";
|
|
4
5
|
export declare enum ClientCandidatePreferenceEnum {
|
|
5
6
|
NOT_SUITABLE = "NOT_SUITABLE",
|
|
6
7
|
SHORTLISTED = "SHORTLISTED"
|
|
@@ -12,5 +13,7 @@ export declare class ClientCandidatePreference extends BaseEntity {
|
|
|
12
13
|
candidate: User;
|
|
13
14
|
jobId?: number;
|
|
14
15
|
job?: Job;
|
|
16
|
+
recommendationId?: number;
|
|
17
|
+
recommendation?: JobRecommendation;
|
|
15
18
|
preference: ClientCandidatePreferenceEnum;
|
|
16
19
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Job } from "./job.entity";
|
|
2
|
+
import { ClientCandidatePreference } from "./client-candidate-preference.entity";
|
|
2
3
|
export declare class JobRecommendation {
|
|
3
4
|
id: number;
|
|
4
5
|
jobId: number;
|
|
@@ -12,4 +13,5 @@ export declare class JobRecommendation {
|
|
|
12
13
|
requiredSkills: string[];
|
|
13
14
|
requiredSkillsCount: number;
|
|
14
15
|
lastCalculatedAt: Date;
|
|
16
|
+
preference: ClientCandidatePreference[];
|
|
15
17
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1037,6 +1037,22 @@ declare class Interview extends BaseEntity {
|
|
|
1037
1037
|
f2fInterviews: F2FInterview[];
|
|
1038
1038
|
}
|
|
1039
1039
|
|
|
1040
|
+
declare enum ClientCandidatePreferenceEnum {
|
|
1041
|
+
NOT_SUITABLE = "NOT_SUITABLE",
|
|
1042
|
+
SHORTLISTED = "SHORTLISTED"
|
|
1043
|
+
}
|
|
1044
|
+
declare class ClientCandidatePreference extends BaseEntity {
|
|
1045
|
+
clientId: number;
|
|
1046
|
+
client: User;
|
|
1047
|
+
candidateId: number;
|
|
1048
|
+
candidate: User;
|
|
1049
|
+
jobId?: number;
|
|
1050
|
+
job?: Job;
|
|
1051
|
+
recommendationId?: number;
|
|
1052
|
+
recommendation?: JobRecommendation;
|
|
1053
|
+
preference: ClientCandidatePreferenceEnum;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1040
1056
|
declare class JobRecommendation {
|
|
1041
1057
|
id: number;
|
|
1042
1058
|
jobId: number;
|
|
@@ -1050,6 +1066,7 @@ declare class JobRecommendation {
|
|
|
1050
1066
|
requiredSkills: string[];
|
|
1051
1067
|
requiredSkillsCount: number;
|
|
1052
1068
|
lastCalculatedAt: Date;
|
|
1069
|
+
preference: ClientCandidatePreference[];
|
|
1053
1070
|
}
|
|
1054
1071
|
|
|
1055
1072
|
declare enum ContractStatusEnum {
|
|
@@ -1198,20 +1215,6 @@ declare class TimesheetLine extends BaseEntity {
|
|
|
1198
1215
|
isInvoiceApproved: boolean;
|
|
1199
1216
|
}
|
|
1200
1217
|
|
|
1201
|
-
declare enum ClientCandidatePreferenceEnum {
|
|
1202
|
-
NOT_SUITABLE = "NOT_SUITABLE",
|
|
1203
|
-
SHORTLISTED = "SHORTLISTED"
|
|
1204
|
-
}
|
|
1205
|
-
declare class ClientCandidatePreference extends BaseEntity {
|
|
1206
|
-
clientId: number;
|
|
1207
|
-
client: User;
|
|
1208
|
-
candidateId: number;
|
|
1209
|
-
candidate: User;
|
|
1210
|
-
jobId?: number;
|
|
1211
|
-
job?: Job;
|
|
1212
|
-
preference: ClientCandidatePreferenceEnum;
|
|
1213
|
-
}
|
|
1214
|
-
|
|
1215
1218
|
declare enum InvoiceStatusEnum {
|
|
1216
1219
|
SUBMITTED = "SUBMITTED",
|
|
1217
1220
|
PENDING = "PENDING",
|
package/dist/index.d.ts
CHANGED
|
@@ -1037,6 +1037,22 @@ declare class Interview extends BaseEntity {
|
|
|
1037
1037
|
f2fInterviews: F2FInterview[];
|
|
1038
1038
|
}
|
|
1039
1039
|
|
|
1040
|
+
declare enum ClientCandidatePreferenceEnum {
|
|
1041
|
+
NOT_SUITABLE = "NOT_SUITABLE",
|
|
1042
|
+
SHORTLISTED = "SHORTLISTED"
|
|
1043
|
+
}
|
|
1044
|
+
declare class ClientCandidatePreference extends BaseEntity {
|
|
1045
|
+
clientId: number;
|
|
1046
|
+
client: User;
|
|
1047
|
+
candidateId: number;
|
|
1048
|
+
candidate: User;
|
|
1049
|
+
jobId?: number;
|
|
1050
|
+
job?: Job;
|
|
1051
|
+
recommendationId?: number;
|
|
1052
|
+
recommendation?: JobRecommendation;
|
|
1053
|
+
preference: ClientCandidatePreferenceEnum;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1040
1056
|
declare class JobRecommendation {
|
|
1041
1057
|
id: number;
|
|
1042
1058
|
jobId: number;
|
|
@@ -1050,6 +1066,7 @@ declare class JobRecommendation {
|
|
|
1050
1066
|
requiredSkills: string[];
|
|
1051
1067
|
requiredSkillsCount: number;
|
|
1052
1068
|
lastCalculatedAt: Date;
|
|
1069
|
+
preference: ClientCandidatePreference[];
|
|
1053
1070
|
}
|
|
1054
1071
|
|
|
1055
1072
|
declare enum ContractStatusEnum {
|
|
@@ -1198,20 +1215,6 @@ declare class TimesheetLine extends BaseEntity {
|
|
|
1198
1215
|
isInvoiceApproved: boolean;
|
|
1199
1216
|
}
|
|
1200
1217
|
|
|
1201
|
-
declare enum ClientCandidatePreferenceEnum {
|
|
1202
|
-
NOT_SUITABLE = "NOT_SUITABLE",
|
|
1203
|
-
SHORTLISTED = "SHORTLISTED"
|
|
1204
|
-
}
|
|
1205
|
-
declare class ClientCandidatePreference extends BaseEntity {
|
|
1206
|
-
clientId: number;
|
|
1207
|
-
client: User;
|
|
1208
|
-
candidateId: number;
|
|
1209
|
-
candidate: User;
|
|
1210
|
-
jobId?: number;
|
|
1211
|
-
job?: Job;
|
|
1212
|
-
preference: ClientCandidatePreferenceEnum;
|
|
1213
|
-
}
|
|
1214
|
-
|
|
1215
1218
|
declare enum InvoiceStatusEnum {
|
|
1216
1219
|
SUBMITTED = "SUBMITTED",
|
|
1217
1220
|
PENDING = "PENDING",
|