@experts_hub/shared 1.0.141 → 1.0.142
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/job.entity.d.ts +2 -0
- package/dist/entities/user.entity.d.ts +2 -0
- package/dist/index.d.mts +20 -18
- package/dist/index.d.ts +20 -18
- package/dist/index.js +220 -212
- package/dist/index.mjs +223 -215
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { BaseEntity } from "./base.entity";
|
|
|
2
2
|
import { User } from "./user.entity";
|
|
3
3
|
import { JobSkill } from "./job-skill.entity";
|
|
4
4
|
import { JobApplication } from "./job-application.entity";
|
|
5
|
+
import { Interview } from "./interview.entity";
|
|
5
6
|
export declare enum JobLocationEnum {
|
|
6
7
|
ONSITE = "ONSITE",
|
|
7
8
|
REMOTE = "REMOTE",
|
|
@@ -55,4 +56,5 @@ export declare class Job extends BaseEntity {
|
|
|
55
56
|
applicationCount: number;
|
|
56
57
|
jobSkills: JobSkill[];
|
|
57
58
|
jobApplications: JobApplication[];
|
|
59
|
+
interviews: Interview[];
|
|
58
60
|
}
|
|
@@ -5,6 +5,7 @@ import { Otp } from "./otp.entity";
|
|
|
5
5
|
import { FreelancerProfile } from "./freelancer-profile.entity";
|
|
6
6
|
import { CompanyProfile } from "./company-profile.entity";
|
|
7
7
|
import { Job } from "./job.entity";
|
|
8
|
+
import { Interview } from "./interview.entity";
|
|
8
9
|
import { BankDetail } from "./bank-details.entity";
|
|
9
10
|
import { SystemPreference } from "./system-preference.entity";
|
|
10
11
|
import { Rating } from "./rating.entity";
|
|
@@ -63,6 +64,7 @@ export declare class User extends BaseEntity {
|
|
|
63
64
|
freelancerProfile: FreelancerProfile;
|
|
64
65
|
companyProfile: CompanyProfile;
|
|
65
66
|
jobs: Job[];
|
|
67
|
+
interviews: Interview[];
|
|
66
68
|
bankDetail: BankDetail[];
|
|
67
69
|
systemPreference: SystemPreference[];
|
|
68
70
|
givenRatings: Rating[];
|
package/dist/index.d.mts
CHANGED
|
@@ -671,6 +671,24 @@ declare class JobApplication extends BaseEntity {
|
|
|
671
671
|
withdrawnReason: string;
|
|
672
672
|
}
|
|
673
673
|
|
|
674
|
+
declare enum InterviewStatusEnum {
|
|
675
|
+
DRAFTED = "DRAFTED",
|
|
676
|
+
PUBLISHED = "PUBLISHED",
|
|
677
|
+
INACTIVE = "INACTIVE",
|
|
678
|
+
DISCARDED = "DISCARDED",
|
|
679
|
+
ARCHIVED = "ARCHIVED"
|
|
680
|
+
}
|
|
681
|
+
declare class Interview extends BaseEntity {
|
|
682
|
+
interviewId: string;
|
|
683
|
+
userId: number;
|
|
684
|
+
user: User;
|
|
685
|
+
interviewName: string;
|
|
686
|
+
jobId: number;
|
|
687
|
+
job: Job;
|
|
688
|
+
interviewType: string;
|
|
689
|
+
status: InterviewStatusEnum;
|
|
690
|
+
}
|
|
691
|
+
|
|
674
692
|
declare enum JobLocationEnum {
|
|
675
693
|
ONSITE = "ONSITE",
|
|
676
694
|
REMOTE = "REMOTE",
|
|
@@ -724,6 +742,7 @@ declare class Job extends BaseEntity {
|
|
|
724
742
|
applicationCount: number;
|
|
725
743
|
jobSkills: JobSkill[];
|
|
726
744
|
jobApplications: JobApplication[];
|
|
745
|
+
interviews: Interview[];
|
|
727
746
|
}
|
|
728
747
|
|
|
729
748
|
declare enum BankAccountTypeEnum {
|
|
@@ -836,6 +855,7 @@ declare class User extends BaseEntity {
|
|
|
836
855
|
freelancerProfile: FreelancerProfile;
|
|
837
856
|
companyProfile: CompanyProfile;
|
|
838
857
|
jobs: Job[];
|
|
858
|
+
interviews: Interview[];
|
|
839
859
|
bankDetail: BankDetail[];
|
|
840
860
|
systemPreference: SystemPreference[];
|
|
841
861
|
givenRatings: Rating[];
|
|
@@ -1154,24 +1174,6 @@ declare class JobRoles extends BaseEntity {
|
|
|
1154
1174
|
isActive: boolean;
|
|
1155
1175
|
}
|
|
1156
1176
|
|
|
1157
|
-
declare enum InterviewStatusEnum {
|
|
1158
|
-
DRAFTED = "DRAFTED",
|
|
1159
|
-
PUBLISHED = "PUBLISHED",
|
|
1160
|
-
INACTIVE = "INACTIVE",
|
|
1161
|
-
DISCARDED = "DISCARDED",
|
|
1162
|
-
ARCHIVED = "ARCHIVED"
|
|
1163
|
-
}
|
|
1164
|
-
declare class Interview extends BaseEntity {
|
|
1165
|
-
interviewId: string;
|
|
1166
|
-
userId: number;
|
|
1167
|
-
user: User;
|
|
1168
|
-
interviewName: string;
|
|
1169
|
-
jobId: number;
|
|
1170
|
-
job: Job;
|
|
1171
|
-
interviewType: string;
|
|
1172
|
-
status: InterviewStatusEnum;
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
1177
|
declare class Feature extends BaseEntity {
|
|
1176
1178
|
name: string;
|
|
1177
1179
|
plans: Plan[];
|
package/dist/index.d.ts
CHANGED
|
@@ -671,6 +671,24 @@ declare class JobApplication extends BaseEntity {
|
|
|
671
671
|
withdrawnReason: string;
|
|
672
672
|
}
|
|
673
673
|
|
|
674
|
+
declare enum InterviewStatusEnum {
|
|
675
|
+
DRAFTED = "DRAFTED",
|
|
676
|
+
PUBLISHED = "PUBLISHED",
|
|
677
|
+
INACTIVE = "INACTIVE",
|
|
678
|
+
DISCARDED = "DISCARDED",
|
|
679
|
+
ARCHIVED = "ARCHIVED"
|
|
680
|
+
}
|
|
681
|
+
declare class Interview extends BaseEntity {
|
|
682
|
+
interviewId: string;
|
|
683
|
+
userId: number;
|
|
684
|
+
user: User;
|
|
685
|
+
interviewName: string;
|
|
686
|
+
jobId: number;
|
|
687
|
+
job: Job;
|
|
688
|
+
interviewType: string;
|
|
689
|
+
status: InterviewStatusEnum;
|
|
690
|
+
}
|
|
691
|
+
|
|
674
692
|
declare enum JobLocationEnum {
|
|
675
693
|
ONSITE = "ONSITE",
|
|
676
694
|
REMOTE = "REMOTE",
|
|
@@ -724,6 +742,7 @@ declare class Job extends BaseEntity {
|
|
|
724
742
|
applicationCount: number;
|
|
725
743
|
jobSkills: JobSkill[];
|
|
726
744
|
jobApplications: JobApplication[];
|
|
745
|
+
interviews: Interview[];
|
|
727
746
|
}
|
|
728
747
|
|
|
729
748
|
declare enum BankAccountTypeEnum {
|
|
@@ -836,6 +855,7 @@ declare class User extends BaseEntity {
|
|
|
836
855
|
freelancerProfile: FreelancerProfile;
|
|
837
856
|
companyProfile: CompanyProfile;
|
|
838
857
|
jobs: Job[];
|
|
858
|
+
interviews: Interview[];
|
|
839
859
|
bankDetail: BankDetail[];
|
|
840
860
|
systemPreference: SystemPreference[];
|
|
841
861
|
givenRatings: Rating[];
|
|
@@ -1154,24 +1174,6 @@ declare class JobRoles extends BaseEntity {
|
|
|
1154
1174
|
isActive: boolean;
|
|
1155
1175
|
}
|
|
1156
1176
|
|
|
1157
|
-
declare enum InterviewStatusEnum {
|
|
1158
|
-
DRAFTED = "DRAFTED",
|
|
1159
|
-
PUBLISHED = "PUBLISHED",
|
|
1160
|
-
INACTIVE = "INACTIVE",
|
|
1161
|
-
DISCARDED = "DISCARDED",
|
|
1162
|
-
ARCHIVED = "ARCHIVED"
|
|
1163
|
-
}
|
|
1164
|
-
declare class Interview extends BaseEntity {
|
|
1165
|
-
interviewId: string;
|
|
1166
|
-
userId: number;
|
|
1167
|
-
user: User;
|
|
1168
|
-
interviewName: string;
|
|
1169
|
-
jobId: number;
|
|
1170
|
-
job: Job;
|
|
1171
|
-
interviewType: string;
|
|
1172
|
-
status: InterviewStatusEnum;
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
1177
|
declare class Feature extends BaseEntity {
|
|
1176
1178
|
name: string;
|
|
1177
1179
|
plans: Plan[];
|