@experts_hub/shared 1.0.324 → 1.0.325
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 +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
|
@@ -19,6 +19,8 @@ export declare class Interview extends BaseEntity {
|
|
|
19
19
|
jobId: number;
|
|
20
20
|
job: Job;
|
|
21
21
|
interviewType: string;
|
|
22
|
+
interviewLanguage: string;
|
|
23
|
+
allowProctoring: boolean;
|
|
22
24
|
status: InterviewStatusEnum;
|
|
23
25
|
interviewSkills: InterviewSkill[];
|
|
24
26
|
interviewQuestions: InterviewQuestion[];
|
package/dist/index.d.mts
CHANGED
|
@@ -883,6 +883,8 @@ declare class Interview extends BaseEntity {
|
|
|
883
883
|
jobId: number;
|
|
884
884
|
job: Job;
|
|
885
885
|
interviewType: string;
|
|
886
|
+
interviewLanguage: string;
|
|
887
|
+
allowProctoring: boolean;
|
|
886
888
|
status: InterviewStatusEnum;
|
|
887
889
|
interviewSkills: InterviewSkill[];
|
|
888
890
|
interviewQuestions: InterviewQuestion[];
|
package/dist/index.d.ts
CHANGED
|
@@ -883,6 +883,8 @@ declare class Interview extends BaseEntity {
|
|
|
883
883
|
jobId: number;
|
|
884
884
|
job: Job;
|
|
885
885
|
interviewType: string;
|
|
886
|
+
interviewLanguage: string;
|
|
887
|
+
allowProctoring: boolean;
|
|
886
888
|
status: InterviewStatusEnum;
|
|
887
889
|
interviewSkills: InterviewSkill[];
|
|
888
890
|
interviewQuestions: InterviewQuestion[];
|
package/dist/index.js
CHANGED
|
@@ -2506,6 +2506,12 @@ __decorateClass([
|
|
|
2506
2506
|
__decorateClass([
|
|
2507
2507
|
(0, import_typeorm15.Column)({ name: "interview_type", type: "varchar", nullable: true })
|
|
2508
2508
|
], Interview.prototype, "interviewType", 2);
|
|
2509
|
+
__decorateClass([
|
|
2510
|
+
(0, import_typeorm15.Column)({ name: "interview_language", type: "varchar", nullable: true })
|
|
2511
|
+
], Interview.prototype, "interviewLanguage", 2);
|
|
2512
|
+
__decorateClass([
|
|
2513
|
+
(0, import_typeorm15.Column)({ name: "allow_proctoring", type: "boolean", default: false })
|
|
2514
|
+
], Interview.prototype, "allowProctoring", 2);
|
|
2509
2515
|
__decorateClass([
|
|
2510
2516
|
(0, import_typeorm15.Column)({
|
|
2511
2517
|
name: "status",
|
package/dist/index.mjs
CHANGED
|
@@ -2457,6 +2457,12 @@ __decorateClass([
|
|
|
2457
2457
|
__decorateClass([
|
|
2458
2458
|
Column15({ name: "interview_type", type: "varchar", nullable: true })
|
|
2459
2459
|
], Interview.prototype, "interviewType", 2);
|
|
2460
|
+
__decorateClass([
|
|
2461
|
+
Column15({ name: "interview_language", type: "varchar", nullable: true })
|
|
2462
|
+
], Interview.prototype, "interviewLanguage", 2);
|
|
2463
|
+
__decorateClass([
|
|
2464
|
+
Column15({ name: "allow_proctoring", type: "boolean", default: false })
|
|
2465
|
+
], Interview.prototype, "allowProctoring", 2);
|
|
2460
2466
|
__decorateClass([
|
|
2461
2467
|
Column15({
|
|
2462
2468
|
name: "status",
|