@experts_hub/shared 1.0.538 → 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.
- package/dist/entities/ai-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
|
@@ -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;
|
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;
|
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);
|
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);
|