@experts_hub/shared 1.0.496 → 1.0.498
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.entity.d.ts +6 -0
- package/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +18 -0
- package/dist/index.mjs +18 -0
- package/package.json +1 -1
|
@@ -23,6 +23,12 @@ export declare class Interview extends BaseEntity {
|
|
|
23
23
|
interviewType: string;
|
|
24
24
|
interviewLanguage: string;
|
|
25
25
|
allowProctoring: boolean;
|
|
26
|
+
interviewDuration: string;
|
|
27
|
+
interviewValidityPeriod: string;
|
|
28
|
+
maximumAttemptsAllowed: string;
|
|
29
|
+
startInterviewPrompt: string;
|
|
30
|
+
endInterviewPrompt: string;
|
|
31
|
+
interviewTemplateId: string;
|
|
26
32
|
status: InterviewStatusEnum;
|
|
27
33
|
interviewSkills: InterviewSkill[];
|
|
28
34
|
interviewQuestions: InterviewQuestion[];
|
package/dist/index.d.mts
CHANGED
|
@@ -1089,6 +1089,12 @@ declare class Interview extends BaseEntity {
|
|
|
1089
1089
|
interviewType: string;
|
|
1090
1090
|
interviewLanguage: string;
|
|
1091
1091
|
allowProctoring: boolean;
|
|
1092
|
+
interviewDuration: string;
|
|
1093
|
+
interviewValidityPeriod: string;
|
|
1094
|
+
maximumAttemptsAllowed: string;
|
|
1095
|
+
startInterviewPrompt: string;
|
|
1096
|
+
endInterviewPrompt: string;
|
|
1097
|
+
interviewTemplateId: string;
|
|
1092
1098
|
status: InterviewStatusEnum;
|
|
1093
1099
|
interviewSkills: InterviewSkill[];
|
|
1094
1100
|
interviewQuestions: InterviewQuestion[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1089,6 +1089,12 @@ declare class Interview extends BaseEntity {
|
|
|
1089
1089
|
interviewType: string;
|
|
1090
1090
|
interviewLanguage: string;
|
|
1091
1091
|
allowProctoring: boolean;
|
|
1092
|
+
interviewDuration: string;
|
|
1093
|
+
interviewValidityPeriod: string;
|
|
1094
|
+
maximumAttemptsAllowed: string;
|
|
1095
|
+
startInterviewPrompt: string;
|
|
1096
|
+
endInterviewPrompt: string;
|
|
1097
|
+
interviewTemplateId: string;
|
|
1092
1098
|
status: InterviewStatusEnum;
|
|
1093
1099
|
interviewSkills: InterviewSkill[];
|
|
1094
1100
|
interviewQuestions: InterviewQuestion[];
|
package/dist/index.js
CHANGED
|
@@ -3172,6 +3172,24 @@ __decorateClass([
|
|
|
3172
3172
|
__decorateClass([
|
|
3173
3173
|
(0, import_typeorm19.Column)({ name: "allow_proctoring", type: "boolean", default: false })
|
|
3174
3174
|
], Interview.prototype, "allowProctoring", 2);
|
|
3175
|
+
__decorateClass([
|
|
3176
|
+
(0, import_typeorm19.Column)({ name: "interview_duration", type: "varchar", nullable: true })
|
|
3177
|
+
], Interview.prototype, "interviewDuration", 2);
|
|
3178
|
+
__decorateClass([
|
|
3179
|
+
(0, import_typeorm19.Column)({ name: "interview_validity_period", type: "varchar", nullable: true })
|
|
3180
|
+
], Interview.prototype, "interviewValidityPeriod", 2);
|
|
3181
|
+
__decorateClass([
|
|
3182
|
+
(0, import_typeorm19.Column)({ name: "maximum_attempts_allowed", type: "varchar", nullable: true })
|
|
3183
|
+
], Interview.prototype, "maximumAttemptsAllowed", 2);
|
|
3184
|
+
__decorateClass([
|
|
3185
|
+
(0, import_typeorm19.Column)({ name: "start_interview_prompt", type: "varchar", nullable: true })
|
|
3186
|
+
], Interview.prototype, "startInterviewPrompt", 2);
|
|
3187
|
+
__decorateClass([
|
|
3188
|
+
(0, import_typeorm19.Column)({ name: "end_interview_prompt", type: "varchar", nullable: true })
|
|
3189
|
+
], Interview.prototype, "endInterviewPrompt", 2);
|
|
3190
|
+
__decorateClass([
|
|
3191
|
+
(0, import_typeorm19.Column)({ name: "interview_template_id", type: "varchar", nullable: true })
|
|
3192
|
+
], Interview.prototype, "interviewTemplateId", 2);
|
|
3175
3193
|
__decorateClass([
|
|
3176
3194
|
(0, import_typeorm19.Column)({
|
|
3177
3195
|
name: "status",
|
package/dist/index.mjs
CHANGED
|
@@ -3075,6 +3075,24 @@ __decorateClass([
|
|
|
3075
3075
|
__decorateClass([
|
|
3076
3076
|
Column19({ name: "allow_proctoring", type: "boolean", default: false })
|
|
3077
3077
|
], Interview.prototype, "allowProctoring", 2);
|
|
3078
|
+
__decorateClass([
|
|
3079
|
+
Column19({ name: "interview_duration", type: "varchar", nullable: true })
|
|
3080
|
+
], Interview.prototype, "interviewDuration", 2);
|
|
3081
|
+
__decorateClass([
|
|
3082
|
+
Column19({ name: "interview_validity_period", type: "varchar", nullable: true })
|
|
3083
|
+
], Interview.prototype, "interviewValidityPeriod", 2);
|
|
3084
|
+
__decorateClass([
|
|
3085
|
+
Column19({ name: "maximum_attempts_allowed", type: "varchar", nullable: true })
|
|
3086
|
+
], Interview.prototype, "maximumAttemptsAllowed", 2);
|
|
3087
|
+
__decorateClass([
|
|
3088
|
+
Column19({ name: "start_interview_prompt", type: "varchar", nullable: true })
|
|
3089
|
+
], Interview.prototype, "startInterviewPrompt", 2);
|
|
3090
|
+
__decorateClass([
|
|
3091
|
+
Column19({ name: "end_interview_prompt", type: "varchar", nullable: true })
|
|
3092
|
+
], Interview.prototype, "endInterviewPrompt", 2);
|
|
3093
|
+
__decorateClass([
|
|
3094
|
+
Column19({ name: "interview_template_id", type: "varchar", nullable: true })
|
|
3095
|
+
], Interview.prototype, "interviewTemplateId", 2);
|
|
3078
3096
|
__decorateClass([
|
|
3079
3097
|
Column19({
|
|
3080
3098
|
name: "status",
|