@experts_hub/shared 1.0.537 → 1.0.539
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.
|
@@ -40,6 +40,8 @@ export declare class AiInterview extends BaseEntity {
|
|
|
40
40
|
expiredAt: Date;
|
|
41
41
|
status: AiInterviewStatusEnum;
|
|
42
42
|
resultStatus: ResultStatusEnum;
|
|
43
|
+
isRescheduled: boolean;
|
|
44
|
+
rescheduledAt: Date;
|
|
43
45
|
iframeResponse: string;
|
|
44
46
|
interviewInsight: string;
|
|
45
47
|
isF2fInterviewScheduled: boolean;
|
package/dist/index.d.mts
CHANGED
|
@@ -1082,6 +1082,8 @@ declare class AiInterview extends BaseEntity {
|
|
|
1082
1082
|
expiredAt: Date;
|
|
1083
1083
|
status: AiInterviewStatusEnum;
|
|
1084
1084
|
resultStatus: ResultStatusEnum;
|
|
1085
|
+
isRescheduled: boolean;
|
|
1086
|
+
rescheduledAt: Date;
|
|
1085
1087
|
iframeResponse: string;
|
|
1086
1088
|
interviewInsight: string;
|
|
1087
1089
|
isF2fInterviewScheduled: boolean;
|
|
@@ -1548,6 +1550,7 @@ declare class Job extends BaseEntity {
|
|
|
1548
1550
|
projectName: string;
|
|
1549
1551
|
note: string;
|
|
1550
1552
|
openings: number;
|
|
1553
|
+
remainingOpenings: number;
|
|
1551
1554
|
location: JobLocationEnum;
|
|
1552
1555
|
typeOfEmployment: TypeOfEmploymentEnum;
|
|
1553
1556
|
academicQualification: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1082,6 +1082,8 @@ declare class AiInterview extends BaseEntity {
|
|
|
1082
1082
|
expiredAt: Date;
|
|
1083
1083
|
status: AiInterviewStatusEnum;
|
|
1084
1084
|
resultStatus: ResultStatusEnum;
|
|
1085
|
+
isRescheduled: boolean;
|
|
1086
|
+
rescheduledAt: Date;
|
|
1085
1087
|
iframeResponse: string;
|
|
1086
1088
|
interviewInsight: string;
|
|
1087
1089
|
isF2fInterviewScheduled: boolean;
|
|
@@ -1548,6 +1550,7 @@ declare class Job extends BaseEntity {
|
|
|
1548
1550
|
projectName: string;
|
|
1549
1551
|
note: string;
|
|
1550
1552
|
openings: number;
|
|
1553
|
+
remainingOpenings: number;
|
|
1551
1554
|
location: JobLocationEnum;
|
|
1552
1555
|
typeOfEmployment: TypeOfEmploymentEnum;
|
|
1553
1556
|
academicQualification: string;
|
package/dist/index.js
CHANGED
|
@@ -3204,6 +3204,12 @@ __decorateClass([
|
|
|
3204
3204
|
default: "NOT_EVALUATED" /* NOT_EVALUATED */
|
|
3205
3205
|
})
|
|
3206
3206
|
], AiInterview.prototype, "resultStatus", 2);
|
|
3207
|
+
__decorateClass([
|
|
3208
|
+
(0, import_typeorm16.Column)({ name: "is_rescheduled", type: "boolean", nullable: true })
|
|
3209
|
+
], AiInterview.prototype, "isRescheduled", 2);
|
|
3210
|
+
__decorateClass([
|
|
3211
|
+
(0, import_typeorm16.Column)({ name: "rescheduled_at", type: "timestamp", nullable: true })
|
|
3212
|
+
], AiInterview.prototype, "rescheduledAt", 2);
|
|
3207
3213
|
__decorateClass([
|
|
3208
3214
|
(0, import_typeorm16.Column)({ name: "iframe_response", type: "jsonb", nullable: true })
|
|
3209
3215
|
], AiInterview.prototype, "iframeResponse", 2);
|
|
@@ -4579,6 +4585,9 @@ __decorateClass([
|
|
|
4579
4585
|
__decorateClass([
|
|
4580
4586
|
(0, import_typeorm33.Column)({ name: "openings", type: "integer", default: 0 })
|
|
4581
4587
|
], Job.prototype, "openings", 2);
|
|
4588
|
+
__decorateClass([
|
|
4589
|
+
(0, import_typeorm33.Column)({ name: "remaining_openings", type: "integer", default: 0 })
|
|
4590
|
+
], Job.prototype, "remainingOpenings", 2);
|
|
4582
4591
|
__decorateClass([
|
|
4583
4592
|
(0, import_typeorm33.Column)({
|
|
4584
4593
|
name: "location",
|
package/dist/index.mjs
CHANGED
|
@@ -3088,6 +3088,12 @@ __decorateClass([
|
|
|
3088
3088
|
default: "NOT_EVALUATED" /* NOT_EVALUATED */
|
|
3089
3089
|
})
|
|
3090
3090
|
], AiInterview.prototype, "resultStatus", 2);
|
|
3091
|
+
__decorateClass([
|
|
3092
|
+
Column16({ name: "is_rescheduled", type: "boolean", nullable: true })
|
|
3093
|
+
], AiInterview.prototype, "isRescheduled", 2);
|
|
3094
|
+
__decorateClass([
|
|
3095
|
+
Column16({ name: "rescheduled_at", type: "timestamp", nullable: true })
|
|
3096
|
+
], AiInterview.prototype, "rescheduledAt", 2);
|
|
3091
3097
|
__decorateClass([
|
|
3092
3098
|
Column16({ name: "iframe_response", type: "jsonb", nullable: true })
|
|
3093
3099
|
], AiInterview.prototype, "iframeResponse", 2);
|
|
@@ -4501,6 +4507,9 @@ __decorateClass([
|
|
|
4501
4507
|
__decorateClass([
|
|
4502
4508
|
Column33({ name: "openings", type: "integer", default: 0 })
|
|
4503
4509
|
], Job.prototype, "openings", 2);
|
|
4510
|
+
__decorateClass([
|
|
4511
|
+
Column33({ name: "remaining_openings", type: "integer", default: 0 })
|
|
4512
|
+
], Job.prototype, "remainingOpenings", 2);
|
|
4504
4513
|
__decorateClass([
|
|
4505
4514
|
Column33({
|
|
4506
4515
|
name: "location",
|