@xuulu/xuulu-types 1.0.49 → 1.0.51
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.
|
@@ -14,14 +14,14 @@ type MeetingDetails = {
|
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
|
-
export type
|
|
17
|
+
export type VideoProvider = 'videosdk' | 'daily';
|
|
18
18
|
export type InterviewCallResponse = {
|
|
19
19
|
id: number;
|
|
20
20
|
meetingId: string;
|
|
21
21
|
similarity: number;
|
|
22
22
|
interviewDate: string;
|
|
23
23
|
position: Pick<PositionResponse, "positionName" | "description" | "qualification" | "niceToHaveDescription" | "comment" | 'seniorityLevel'>;
|
|
24
|
-
videoProvider:
|
|
24
|
+
videoProvider: VideoProvider;
|
|
25
25
|
interviewType: InterviewTypeResponse;
|
|
26
26
|
question: (QuestionResponse & {
|
|
27
27
|
answerRating: number;
|
|
@@ -14,14 +14,14 @@ type MeetingDetails = {
|
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
|
-
export type
|
|
17
|
+
export type VideoProvider = 'videosdk' | 'daily';
|
|
18
18
|
export type InterviewCallResponse = {
|
|
19
19
|
id: number;
|
|
20
20
|
meetingId: string;
|
|
21
21
|
similarity: number;
|
|
22
22
|
interviewDate: string;
|
|
23
23
|
position: Pick<PositionResponse, "positionName" | "description" | "qualification" | "niceToHaveDescription" | "comment" | 'seniorityLevel'>;
|
|
24
|
-
videoProvider:
|
|
24
|
+
videoProvider: VideoProvider;
|
|
25
25
|
interviewType: InterviewTypeResponse;
|
|
26
26
|
question: (QuestionResponse & {
|
|
27
27
|
answerRating: number;
|
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@ type MeetingDetails = {
|
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
|
|
21
|
-
export type
|
|
21
|
+
export type VideoProvider = 'videosdk' | 'daily';
|
|
22
22
|
|
|
23
23
|
export type InterviewCallResponse = {
|
|
24
24
|
id: number;
|
|
@@ -29,7 +29,7 @@ export type InterviewCallResponse = {
|
|
|
29
29
|
PositionResponse,
|
|
30
30
|
"positionName" | "description" | "qualification" | "niceToHaveDescription" | "comment" | 'seniorityLevel'
|
|
31
31
|
>;
|
|
32
|
-
videoProvider:
|
|
32
|
+
videoProvider: VideoProvider;
|
|
33
33
|
interviewType: InterviewTypeResponse;
|
|
34
34
|
question: (QuestionResponse & { answerRating: number; })[];
|
|
35
35
|
customQuestion: string;
|