@experts_hub/shared 1.0.497 → 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 +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
|
@@ -28,6 +28,7 @@ export declare class Interview extends BaseEntity {
|
|
|
28
28
|
maximumAttemptsAllowed: string;
|
|
29
29
|
startInterviewPrompt: string;
|
|
30
30
|
endInterviewPrompt: string;
|
|
31
|
+
interviewTemplateId: string;
|
|
31
32
|
status: InterviewStatusEnum;
|
|
32
33
|
interviewSkills: InterviewSkill[];
|
|
33
34
|
interviewQuestions: InterviewQuestion[];
|
package/dist/index.d.mts
CHANGED
|
@@ -1094,6 +1094,7 @@ declare class Interview extends BaseEntity {
|
|
|
1094
1094
|
maximumAttemptsAllowed: string;
|
|
1095
1095
|
startInterviewPrompt: string;
|
|
1096
1096
|
endInterviewPrompt: string;
|
|
1097
|
+
interviewTemplateId: string;
|
|
1097
1098
|
status: InterviewStatusEnum;
|
|
1098
1099
|
interviewSkills: InterviewSkill[];
|
|
1099
1100
|
interviewQuestions: InterviewQuestion[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1094,6 +1094,7 @@ declare class Interview extends BaseEntity {
|
|
|
1094
1094
|
maximumAttemptsAllowed: string;
|
|
1095
1095
|
startInterviewPrompt: string;
|
|
1096
1096
|
endInterviewPrompt: string;
|
|
1097
|
+
interviewTemplateId: string;
|
|
1097
1098
|
status: InterviewStatusEnum;
|
|
1098
1099
|
interviewSkills: InterviewSkill[];
|
|
1099
1100
|
interviewQuestions: InterviewQuestion[];
|
package/dist/index.js
CHANGED
|
@@ -3187,6 +3187,9 @@ __decorateClass([
|
|
|
3187
3187
|
__decorateClass([
|
|
3188
3188
|
(0, import_typeorm19.Column)({ name: "end_interview_prompt", type: "varchar", nullable: true })
|
|
3189
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);
|
|
3190
3193
|
__decorateClass([
|
|
3191
3194
|
(0, import_typeorm19.Column)({
|
|
3192
3195
|
name: "status",
|
package/dist/index.mjs
CHANGED
|
@@ -3090,6 +3090,9 @@ __decorateClass([
|
|
|
3090
3090
|
__decorateClass([
|
|
3091
3091
|
Column19({ name: "end_interview_prompt", type: "varchar", nullable: true })
|
|
3092
3092
|
], Interview.prototype, "endInterviewPrompt", 2);
|
|
3093
|
+
__decorateClass([
|
|
3094
|
+
Column19({ name: "interview_template_id", type: "varchar", nullable: true })
|
|
3095
|
+
], Interview.prototype, "interviewTemplateId", 2);
|
|
3093
3096
|
__decorateClass([
|
|
3094
3097
|
Column19({
|
|
3095
3098
|
name: "status",
|