@xuulu/xuulu-types 1.0.48 → 1.0.49
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/cjs/interviewCall/responses/index.d.ts +2 -0
- package/dist/cjs/interviewSetup/responses/index.d.ts +25 -19
- package/dist/esm/interviewCall/responses/index.d.ts +2 -0
- package/dist/esm/interviewSetup/responses/index.d.ts +25 -19
- package/package.json +1 -1
- package/src/interviewCall/responses/index.ts +3 -0
- package/src/interviewSetup/responses/index.ts +6 -0
|
@@ -14,12 +14,14 @@ type MeetingDetails = {
|
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
|
+
export type videoProvider = 'videosdk' | 'daily';
|
|
17
18
|
export type InterviewCallResponse = {
|
|
18
19
|
id: number;
|
|
19
20
|
meetingId: string;
|
|
20
21
|
similarity: number;
|
|
21
22
|
interviewDate: string;
|
|
22
23
|
position: Pick<PositionResponse, "positionName" | "description" | "qualification" | "niceToHaveDescription" | "comment" | 'seniorityLevel'>;
|
|
24
|
+
videoProvider: videoProvider;
|
|
23
25
|
interviewType: InterviewTypeResponse;
|
|
24
26
|
question: (QuestionResponse & {
|
|
25
27
|
answerRating: number;
|
|
@@ -1,19 +1,25 @@
|
|
|
1
|
-
import { SectionResponse } from "../../sections/responses";
|
|
2
|
-
import { QuestionResponse } from "../../questions/responses";
|
|
3
|
-
import { FrameworkResponse } from "../../frameworks/responses";
|
|
4
|
-
import { InterviewsQuestionsResponse } from "../../InterviewQuestions/responses";
|
|
5
|
-
import { InterviewsQuestionsCustomResponse } from "../../interviewQuestionsCustom/responses";
|
|
6
|
-
export type InterviewSetupResponse = {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
import { SectionResponse } from "../../sections/responses";
|
|
2
|
+
import { QuestionResponse } from "../../questions/responses";
|
|
3
|
+
import { FrameworkResponse } from "../../frameworks/responses";
|
|
4
|
+
import { InterviewsQuestionsResponse } from "../../InterviewQuestions/responses";
|
|
5
|
+
import { InterviewsQuestionsCustomResponse } from "../../interviewQuestionsCustom/responses";
|
|
6
|
+
export type InterviewSetupResponse = {
|
|
7
|
+
candidateFirstName: string;
|
|
8
|
+
candidateLastName: string;
|
|
9
|
+
candidateId: number;
|
|
10
|
+
positionId: number;
|
|
11
|
+
positionName: string;
|
|
12
|
+
positionTags: string[];
|
|
13
|
+
additionalSkills: {
|
|
14
|
+
sections: SectionResponse[];
|
|
15
|
+
frameworks: FrameworkResponse[];
|
|
16
|
+
};
|
|
17
|
+
absentSkills: {
|
|
18
|
+
sections: SectionResponse[];
|
|
19
|
+
frameworks: FrameworkResponse[];
|
|
20
|
+
};
|
|
21
|
+
similarityScore: number;
|
|
22
|
+
requiredQuestions: QuestionResponse[];
|
|
23
|
+
selectedQuestions: InterviewsQuestionsResponse[];
|
|
24
|
+
selectedQuestionsCustom: InterviewsQuestionsCustomResponse | {};
|
|
25
|
+
};
|
|
@@ -14,12 +14,14 @@ type MeetingDetails = {
|
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
|
+
export type videoProvider = 'videosdk' | 'daily';
|
|
17
18
|
export type InterviewCallResponse = {
|
|
18
19
|
id: number;
|
|
19
20
|
meetingId: string;
|
|
20
21
|
similarity: number;
|
|
21
22
|
interviewDate: string;
|
|
22
23
|
position: Pick<PositionResponse, "positionName" | "description" | "qualification" | "niceToHaveDescription" | "comment" | 'seniorityLevel'>;
|
|
24
|
+
videoProvider: videoProvider;
|
|
23
25
|
interviewType: InterviewTypeResponse;
|
|
24
26
|
question: (QuestionResponse & {
|
|
25
27
|
answerRating: number;
|
|
@@ -1,19 +1,25 @@
|
|
|
1
|
-
import { SectionResponse } from "../../sections/responses";
|
|
2
|
-
import { QuestionResponse } from "../../questions/responses";
|
|
3
|
-
import { FrameworkResponse } from "../../frameworks/responses";
|
|
4
|
-
import { InterviewsQuestionsResponse } from "../../InterviewQuestions/responses";
|
|
5
|
-
import { InterviewsQuestionsCustomResponse } from "../../interviewQuestionsCustom/responses";
|
|
6
|
-
export type InterviewSetupResponse = {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
import { SectionResponse } from "../../sections/responses";
|
|
2
|
+
import { QuestionResponse } from "../../questions/responses";
|
|
3
|
+
import { FrameworkResponse } from "../../frameworks/responses";
|
|
4
|
+
import { InterviewsQuestionsResponse } from "../../InterviewQuestions/responses";
|
|
5
|
+
import { InterviewsQuestionsCustomResponse } from "../../interviewQuestionsCustom/responses";
|
|
6
|
+
export type InterviewSetupResponse = {
|
|
7
|
+
candidateFirstName: string;
|
|
8
|
+
candidateLastName: string;
|
|
9
|
+
candidateId: number;
|
|
10
|
+
positionId: number;
|
|
11
|
+
positionName: string;
|
|
12
|
+
positionTags: string[];
|
|
13
|
+
additionalSkills: {
|
|
14
|
+
sections: SectionResponse[];
|
|
15
|
+
frameworks: FrameworkResponse[];
|
|
16
|
+
};
|
|
17
|
+
absentSkills: {
|
|
18
|
+
sections: SectionResponse[];
|
|
19
|
+
frameworks: FrameworkResponse[];
|
|
20
|
+
};
|
|
21
|
+
similarityScore: number;
|
|
22
|
+
requiredQuestions: QuestionResponse[];
|
|
23
|
+
selectedQuestions: InterviewsQuestionsResponse[];
|
|
24
|
+
selectedQuestionsCustom: InterviewsQuestionsCustomResponse | {};
|
|
25
|
+
};
|
package/package.json
CHANGED
|
@@ -18,6 +18,8 @@ type MeetingDetails = {
|
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
|
|
21
|
+
export type videoProvider = 'videosdk' | 'daily';
|
|
22
|
+
|
|
21
23
|
export type InterviewCallResponse = {
|
|
22
24
|
id: number;
|
|
23
25
|
meetingId: string;
|
|
@@ -27,6 +29,7 @@ export type InterviewCallResponse = {
|
|
|
27
29
|
PositionResponse,
|
|
28
30
|
"positionName" | "description" | "qualification" | "niceToHaveDescription" | "comment" | 'seniorityLevel'
|
|
29
31
|
>;
|
|
32
|
+
videoProvider: videoProvider;
|
|
30
33
|
interviewType: InterviewTypeResponse;
|
|
31
34
|
question: (QuestionResponse & { answerRating: number; })[];
|
|
32
35
|
customQuestion: string;
|
|
@@ -5,6 +5,12 @@ import { InterviewsQuestionsResponse } from "../../InterviewQuestions/responses"
|
|
|
5
5
|
import { InterviewsQuestionsCustomResponse } from "../../interviewQuestionsCustom/responses";
|
|
6
6
|
|
|
7
7
|
export type InterviewSetupResponse = {
|
|
8
|
+
candidateFirstName: string;
|
|
9
|
+
candidateLastName: string;
|
|
10
|
+
candidateId: number;
|
|
11
|
+
positionId: number;
|
|
12
|
+
positionName: string;
|
|
13
|
+
positionTags: string[];
|
|
8
14
|
additionalSkills: {
|
|
9
15
|
sections: SectionResponse[];
|
|
10
16
|
frameworks: FrameworkResponse[];
|