@experts_hub/shared 1.0.576 → 1.0.579
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.
|
@@ -19,6 +19,7 @@ export declare enum AiInterviewStatusEnum {
|
|
|
19
19
|
}
|
|
20
20
|
export declare enum ResultStatusEnum {
|
|
21
21
|
NOT_EVALUATED = "NOT_EVALUATED",
|
|
22
|
+
EVALUATING = "EVALUATING",
|
|
22
23
|
PASSED = "PASSED",
|
|
23
24
|
FAILED = "FAILED"
|
|
24
25
|
}
|
|
@@ -42,6 +43,7 @@ export declare class AiInterview extends BaseEntity {
|
|
|
42
43
|
resultStatus: ResultStatusEnum;
|
|
43
44
|
isRescheduled: boolean;
|
|
44
45
|
rescheduledAt: Date;
|
|
46
|
+
recordingLink: string;
|
|
45
47
|
iframeResponse: string;
|
|
46
48
|
interviewInsight: string;
|
|
47
49
|
isF2fInterviewScheduled: boolean;
|
package/dist/index.d.mts
CHANGED
|
@@ -1323,6 +1323,7 @@ declare enum AiInterviewStatusEnum {
|
|
|
1323
1323
|
}
|
|
1324
1324
|
declare enum ResultStatusEnum {
|
|
1325
1325
|
NOT_EVALUATED = "NOT_EVALUATED",
|
|
1326
|
+
EVALUATING = "EVALUATING",
|
|
1326
1327
|
PASSED = "PASSED",
|
|
1327
1328
|
FAILED = "FAILED"
|
|
1328
1329
|
}
|
|
@@ -1346,6 +1347,7 @@ declare class AiInterview extends BaseEntity {
|
|
|
1346
1347
|
resultStatus: ResultStatusEnum;
|
|
1347
1348
|
isRescheduled: boolean;
|
|
1348
1349
|
rescheduledAt: Date;
|
|
1350
|
+
recordingLink: string;
|
|
1349
1351
|
iframeResponse: string;
|
|
1350
1352
|
interviewInsight: string;
|
|
1351
1353
|
isF2fInterviewScheduled: boolean;
|
|
@@ -2690,6 +2692,7 @@ declare const ADMIN_FREELANCER_PATTERN: {
|
|
|
2690
2692
|
adminDeleteFreelancer: string;
|
|
2691
2693
|
fetchFreelancerGraphCount: string;
|
|
2692
2694
|
adminExportFreelancerV2: string;
|
|
2695
|
+
adminExportFreelancerV2Optimised: string;
|
|
2693
2696
|
sendAiAssessmentLink: string;
|
|
2694
2697
|
fetchAIassessmentsForAdmin: string;
|
|
2695
2698
|
fetchAiAssessmentRequestsForAdmin: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1323,6 +1323,7 @@ declare enum AiInterviewStatusEnum {
|
|
|
1323
1323
|
}
|
|
1324
1324
|
declare enum ResultStatusEnum {
|
|
1325
1325
|
NOT_EVALUATED = "NOT_EVALUATED",
|
|
1326
|
+
EVALUATING = "EVALUATING",
|
|
1326
1327
|
PASSED = "PASSED",
|
|
1327
1328
|
FAILED = "FAILED"
|
|
1328
1329
|
}
|
|
@@ -1346,6 +1347,7 @@ declare class AiInterview extends BaseEntity {
|
|
|
1346
1347
|
resultStatus: ResultStatusEnum;
|
|
1347
1348
|
isRescheduled: boolean;
|
|
1348
1349
|
rescheduledAt: Date;
|
|
1350
|
+
recordingLink: string;
|
|
1349
1351
|
iframeResponse: string;
|
|
1350
1352
|
interviewInsight: string;
|
|
1351
1353
|
isF2fInterviewScheduled: boolean;
|
|
@@ -2690,6 +2692,7 @@ declare const ADMIN_FREELANCER_PATTERN: {
|
|
|
2690
2692
|
adminDeleteFreelancer: string;
|
|
2691
2693
|
fetchFreelancerGraphCount: string;
|
|
2692
2694
|
adminExportFreelancerV2: string;
|
|
2695
|
+
adminExportFreelancerV2Optimised: string;
|
|
2693
2696
|
sendAiAssessmentLink: string;
|
|
2694
2697
|
fetchAIassessmentsForAdmin: string;
|
|
2695
2698
|
fetchAiAssessmentRequestsForAdmin: string;
|
package/dist/index.js
CHANGED
|
@@ -3666,6 +3666,7 @@ var AiInterviewStatusEnum = /* @__PURE__ */ ((AiInterviewStatusEnum2) => {
|
|
|
3666
3666
|
})(AiInterviewStatusEnum || {});
|
|
3667
3667
|
var ResultStatusEnum = /* @__PURE__ */ ((ResultStatusEnum2) => {
|
|
3668
3668
|
ResultStatusEnum2["NOT_EVALUATED"] = "NOT_EVALUATED";
|
|
3669
|
+
ResultStatusEnum2["EVALUATING"] = "EVALUATING";
|
|
3669
3670
|
ResultStatusEnum2["PASSED"] = "PASSED";
|
|
3670
3671
|
ResultStatusEnum2["FAILED"] = "FAILED";
|
|
3671
3672
|
return ResultStatusEnum2;
|
|
@@ -3753,6 +3754,9 @@ __decorateClass([
|
|
|
3753
3754
|
__decorateClass([
|
|
3754
3755
|
(0, import_typeorm16.Column)({ name: "rescheduled_at", type: "timestamp", nullable: true })
|
|
3755
3756
|
], AiInterview.prototype, "rescheduledAt", 2);
|
|
3757
|
+
__decorateClass([
|
|
3758
|
+
(0, import_typeorm16.Column)({ name: "recording_link", type: "text", nullable: true })
|
|
3759
|
+
], AiInterview.prototype, "recordingLink", 2);
|
|
3756
3760
|
__decorateClass([
|
|
3757
3761
|
(0, import_typeorm16.Column)({ name: "iframe_response", type: "jsonb", nullable: true })
|
|
3758
3762
|
], AiInterview.prototype, "iframeResponse", 2);
|
|
@@ -7348,6 +7352,7 @@ var ADMIN_FREELANCER_PATTERN = {
|
|
|
7348
7352
|
adminDeleteFreelancer: "admin.delete.freelancer",
|
|
7349
7353
|
fetchFreelancerGraphCount: "fetch.freelancer.graph.count",
|
|
7350
7354
|
adminExportFreelancerV2: "admin.export.freelancer.v2",
|
|
7355
|
+
adminExportFreelancerV2Optimised: "admin.export.freelancer.v2.optimised",
|
|
7351
7356
|
sendAiAssessmentLink: "send.ai.assessment.link",
|
|
7352
7357
|
fetchAIassessmentsForAdmin: "fetch.ai.assessments.for.admin",
|
|
7353
7358
|
fetchAiAssessmentRequestsForAdmin: "fetch.ai.assessment.requests.for.admin",
|
package/dist/index.mjs
CHANGED
|
@@ -3475,6 +3475,7 @@ var AiInterviewStatusEnum = /* @__PURE__ */ ((AiInterviewStatusEnum2) => {
|
|
|
3475
3475
|
})(AiInterviewStatusEnum || {});
|
|
3476
3476
|
var ResultStatusEnum = /* @__PURE__ */ ((ResultStatusEnum2) => {
|
|
3477
3477
|
ResultStatusEnum2["NOT_EVALUATED"] = "NOT_EVALUATED";
|
|
3478
|
+
ResultStatusEnum2["EVALUATING"] = "EVALUATING";
|
|
3478
3479
|
ResultStatusEnum2["PASSED"] = "PASSED";
|
|
3479
3480
|
ResultStatusEnum2["FAILED"] = "FAILED";
|
|
3480
3481
|
return ResultStatusEnum2;
|
|
@@ -3562,6 +3563,9 @@ __decorateClass([
|
|
|
3562
3563
|
__decorateClass([
|
|
3563
3564
|
Column16({ name: "rescheduled_at", type: "timestamp", nullable: true })
|
|
3564
3565
|
], AiInterview.prototype, "rescheduledAt", 2);
|
|
3566
|
+
__decorateClass([
|
|
3567
|
+
Column16({ name: "recording_link", type: "text", nullable: true })
|
|
3568
|
+
], AiInterview.prototype, "recordingLink", 2);
|
|
3565
3569
|
__decorateClass([
|
|
3566
3570
|
Column16({ name: "iframe_response", type: "jsonb", nullable: true })
|
|
3567
3571
|
], AiInterview.prototype, "iframeResponse", 2);
|
|
@@ -7312,6 +7316,7 @@ var ADMIN_FREELANCER_PATTERN = {
|
|
|
7312
7316
|
adminDeleteFreelancer: "admin.delete.freelancer",
|
|
7313
7317
|
fetchFreelancerGraphCount: "fetch.freelancer.graph.count",
|
|
7314
7318
|
adminExportFreelancerV2: "admin.export.freelancer.v2",
|
|
7319
|
+
adminExportFreelancerV2Optimised: "admin.export.freelancer.v2.optimised",
|
|
7315
7320
|
sendAiAssessmentLink: "send.ai.assessment.link",
|
|
7316
7321
|
fetchAIassessmentsForAdmin: "fetch.ai.assessments.for.admin",
|
|
7317
7322
|
fetchAiAssessmentRequestsForAdmin: "fetch.ai.assessment.requests.for.admin",
|
|
@@ -13,6 +13,7 @@ export declare const ADMIN_FREELANCER_PATTERN: {
|
|
|
13
13
|
adminDeleteFreelancer: string;
|
|
14
14
|
fetchFreelancerGraphCount: string;
|
|
15
15
|
adminExportFreelancerV2: string;
|
|
16
|
+
adminExportFreelancerV2Optimised: string;
|
|
16
17
|
sendAiAssessmentLink: string;
|
|
17
18
|
fetchAIassessmentsForAdmin: string;
|
|
18
19
|
fetchAiAssessmentRequestsForAdmin: string;
|