@experts_hub/shared 1.0.318 → 1.0.320
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/interview-invite.entity.d.ts +4 -3
- package/dist/entities/interview.entity.d.ts +2 -0
- package/dist/index.d.mts +21 -19
- package/dist/index.d.ts +21 -19
- package/dist/index.js +491 -486
- package/dist/index.mjs +532 -527
- package/package.json +1 -1
|
@@ -3,8 +3,9 @@ import { Interview } from "./interview.entity";
|
|
|
3
3
|
import { User } from "./user.entity";
|
|
4
4
|
export declare enum InterviewInviteStatusEnum {
|
|
5
5
|
PENDING = "PENDING",
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
ACCEPTED = "ACCEPTED",
|
|
7
|
+
REJECTED = "REJECTED",
|
|
8
|
+
EXPIRED = "EXPIRED"
|
|
8
9
|
}
|
|
9
10
|
export declare class InterviewInvite extends BaseEntity {
|
|
10
11
|
interviewId: number;
|
|
@@ -17,5 +18,5 @@ export declare class InterviewInvite extends BaseEntity {
|
|
|
17
18
|
sentAt: Date;
|
|
18
19
|
expiresAt: Date;
|
|
19
20
|
respondedAt?: Date;
|
|
20
|
-
|
|
21
|
+
token: string;
|
|
21
22
|
}
|
|
@@ -3,6 +3,7 @@ import { User } from "./user.entity";
|
|
|
3
3
|
import { Job } from "./job.entity";
|
|
4
4
|
import { InterviewSkill } from "./interview-skill.entity";
|
|
5
5
|
import { InterviewQuestion } from "./interview-question.entity";
|
|
6
|
+
import { InterviewInvite } from "./interview-invite.entity";
|
|
6
7
|
export declare enum InterviewStatusEnum {
|
|
7
8
|
DRAFTED = "DRAFTED",
|
|
8
9
|
PUBLISHED = "PUBLISHED",
|
|
@@ -21,4 +22,5 @@ export declare class Interview extends BaseEntity {
|
|
|
21
22
|
status: InterviewStatusEnum;
|
|
22
23
|
interviewSkills: InterviewSkill[];
|
|
23
24
|
interviewQuestions: InterviewQuestion[];
|
|
25
|
+
invites: InterviewInvite[];
|
|
24
26
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -848,6 +848,26 @@ declare class InterviewQuestion extends BaseEntity {
|
|
|
848
848
|
isActive: boolean;
|
|
849
849
|
}
|
|
850
850
|
|
|
851
|
+
declare enum InterviewInviteStatusEnum {
|
|
852
|
+
PENDING = "PENDING",
|
|
853
|
+
ACCEPTED = "ACCEPTED",
|
|
854
|
+
REJECTED = "REJECTED",
|
|
855
|
+
EXPIRED = "EXPIRED"
|
|
856
|
+
}
|
|
857
|
+
declare class InterviewInvite extends BaseEntity {
|
|
858
|
+
interviewId: number;
|
|
859
|
+
interview: Interview;
|
|
860
|
+
userId: number;
|
|
861
|
+
user: User;
|
|
862
|
+
fullName: string;
|
|
863
|
+
email: string;
|
|
864
|
+
status: InterviewInviteStatusEnum;
|
|
865
|
+
sentAt: Date;
|
|
866
|
+
expiresAt: Date;
|
|
867
|
+
respondedAt?: Date;
|
|
868
|
+
token: string;
|
|
869
|
+
}
|
|
870
|
+
|
|
851
871
|
declare enum InterviewStatusEnum {
|
|
852
872
|
DRAFTED = "DRAFTED",
|
|
853
873
|
PUBLISHED = "PUBLISHED",
|
|
@@ -866,6 +886,7 @@ declare class Interview extends BaseEntity {
|
|
|
866
886
|
status: InterviewStatusEnum;
|
|
867
887
|
interviewSkills: InterviewSkill[];
|
|
868
888
|
interviewQuestions: InterviewQuestion[];
|
|
889
|
+
invites: InterviewInvite[];
|
|
869
890
|
}
|
|
870
891
|
|
|
871
892
|
declare enum JobLocationEnum {
|
|
@@ -2045,25 +2066,6 @@ declare class JobRoles extends BaseEntity {
|
|
|
2045
2066
|
isActive: boolean;
|
|
2046
2067
|
}
|
|
2047
2068
|
|
|
2048
|
-
declare enum InterviewInviteStatusEnum {
|
|
2049
|
-
PENDING = "PENDING",
|
|
2050
|
-
EXPIRED = "EXPIRED",
|
|
2051
|
-
COMPLETED = "COMPLETED"
|
|
2052
|
-
}
|
|
2053
|
-
declare class InterviewInvite extends BaseEntity {
|
|
2054
|
-
interviewId: number;
|
|
2055
|
-
interview: Interview;
|
|
2056
|
-
userId: number;
|
|
2057
|
-
user: User;
|
|
2058
|
-
fullName: string;
|
|
2059
|
-
email: string;
|
|
2060
|
-
status: InterviewInviteStatusEnum;
|
|
2061
|
-
sentAt: Date;
|
|
2062
|
-
expiresAt: Date;
|
|
2063
|
-
respondedAt?: Date;
|
|
2064
|
-
inviteToken: string;
|
|
2065
|
-
}
|
|
2066
|
-
|
|
2067
2069
|
declare enum AIInterviewStatusEnum {
|
|
2068
2070
|
IN_PROGRESS = "IN_PROGRESS",
|
|
2069
2071
|
COMPLETED = "COMPLETED",
|
package/dist/index.d.ts
CHANGED
|
@@ -848,6 +848,26 @@ declare class InterviewQuestion extends BaseEntity {
|
|
|
848
848
|
isActive: boolean;
|
|
849
849
|
}
|
|
850
850
|
|
|
851
|
+
declare enum InterviewInviteStatusEnum {
|
|
852
|
+
PENDING = "PENDING",
|
|
853
|
+
ACCEPTED = "ACCEPTED",
|
|
854
|
+
REJECTED = "REJECTED",
|
|
855
|
+
EXPIRED = "EXPIRED"
|
|
856
|
+
}
|
|
857
|
+
declare class InterviewInvite extends BaseEntity {
|
|
858
|
+
interviewId: number;
|
|
859
|
+
interview: Interview;
|
|
860
|
+
userId: number;
|
|
861
|
+
user: User;
|
|
862
|
+
fullName: string;
|
|
863
|
+
email: string;
|
|
864
|
+
status: InterviewInviteStatusEnum;
|
|
865
|
+
sentAt: Date;
|
|
866
|
+
expiresAt: Date;
|
|
867
|
+
respondedAt?: Date;
|
|
868
|
+
token: string;
|
|
869
|
+
}
|
|
870
|
+
|
|
851
871
|
declare enum InterviewStatusEnum {
|
|
852
872
|
DRAFTED = "DRAFTED",
|
|
853
873
|
PUBLISHED = "PUBLISHED",
|
|
@@ -866,6 +886,7 @@ declare class Interview extends BaseEntity {
|
|
|
866
886
|
status: InterviewStatusEnum;
|
|
867
887
|
interviewSkills: InterviewSkill[];
|
|
868
888
|
interviewQuestions: InterviewQuestion[];
|
|
889
|
+
invites: InterviewInvite[];
|
|
869
890
|
}
|
|
870
891
|
|
|
871
892
|
declare enum JobLocationEnum {
|
|
@@ -2045,25 +2066,6 @@ declare class JobRoles extends BaseEntity {
|
|
|
2045
2066
|
isActive: boolean;
|
|
2046
2067
|
}
|
|
2047
2068
|
|
|
2048
|
-
declare enum InterviewInviteStatusEnum {
|
|
2049
|
-
PENDING = "PENDING",
|
|
2050
|
-
EXPIRED = "EXPIRED",
|
|
2051
|
-
COMPLETED = "COMPLETED"
|
|
2052
|
-
}
|
|
2053
|
-
declare class InterviewInvite extends BaseEntity {
|
|
2054
|
-
interviewId: number;
|
|
2055
|
-
interview: Interview;
|
|
2056
|
-
userId: number;
|
|
2057
|
-
user: User;
|
|
2058
|
-
fullName: string;
|
|
2059
|
-
email: string;
|
|
2060
|
-
status: InterviewInviteStatusEnum;
|
|
2061
|
-
sentAt: Date;
|
|
2062
|
-
expiresAt: Date;
|
|
2063
|
-
respondedAt?: Date;
|
|
2064
|
-
inviteToken: string;
|
|
2065
|
-
}
|
|
2066
|
-
|
|
2067
2069
|
declare enum AIInterviewStatusEnum {
|
|
2068
2070
|
IN_PROGRESS = "IN_PROGRESS",
|
|
2069
2071
|
COMPLETED = "COMPLETED",
|