@experts_hub/shared 1.0.577 → 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;
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;
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);
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.577",
3
+ "version": "1.0.579",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",