@experts_hub/shared 1.0.529 → 1.0.530

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.
@@ -38,6 +38,8 @@ export declare class AiInterview extends BaseEntity {
38
38
  expiredAt: Date;
39
39
  status: AiInterviewStatusEnum;
40
40
  resultStatus: ResultStatusEnum;
41
+ iframeResponse: string;
42
+ interviewInsight: string;
41
43
  isF2fInterviewScheduled: boolean;
42
44
  isContractSent: boolean;
43
45
  }
package/dist/index.d.mts CHANGED
@@ -1063,6 +1063,8 @@ declare class AiInterview extends BaseEntity {
1063
1063
  expiredAt: Date;
1064
1064
  status: AiInterviewStatusEnum;
1065
1065
  resultStatus: ResultStatusEnum;
1066
+ iframeResponse: string;
1067
+ interviewInsight: string;
1066
1068
  isF2fInterviewScheduled: boolean;
1067
1069
  isContractSent: boolean;
1068
1070
  }
package/dist/index.d.ts CHANGED
@@ -1063,6 +1063,8 @@ declare class AiInterview extends BaseEntity {
1063
1063
  expiredAt: Date;
1064
1064
  status: AiInterviewStatusEnum;
1065
1065
  resultStatus: ResultStatusEnum;
1066
+ iframeResponse: string;
1067
+ interviewInsight: string;
1066
1068
  isF2fInterviewScheduled: boolean;
1067
1069
  isContractSent: boolean;
1068
1070
  }
package/dist/index.js CHANGED
@@ -3141,6 +3141,12 @@ __decorateClass([
3141
3141
  default: "NOT_EVALUATED" /* NOT_EVALUATED */
3142
3142
  })
3143
3143
  ], AiInterview.prototype, "resultStatus", 2);
3144
+ __decorateClass([
3145
+ (0, import_typeorm15.Column)({ name: "iframe_response", type: "jsonb", nullable: true })
3146
+ ], AiInterview.prototype, "iframeResponse", 2);
3147
+ __decorateClass([
3148
+ (0, import_typeorm15.Column)({ name: "interview_insight", type: "jsonb", nullable: true })
3149
+ ], AiInterview.prototype, "interviewInsight", 2);
3144
3150
  __decorateClass([
3145
3151
  (0, import_typeorm15.Column)({ name: "is_f2f_interview_scheduled", type: "boolean", default: false })
3146
3152
  ], AiInterview.prototype, "isF2fInterviewScheduled", 2);
package/dist/index.mjs CHANGED
@@ -3022,6 +3022,12 @@ __decorateClass([
3022
3022
  default: "NOT_EVALUATED" /* NOT_EVALUATED */
3023
3023
  })
3024
3024
  ], AiInterview.prototype, "resultStatus", 2);
3025
+ __decorateClass([
3026
+ Column15({ name: "iframe_response", type: "jsonb", nullable: true })
3027
+ ], AiInterview.prototype, "iframeResponse", 2);
3028
+ __decorateClass([
3029
+ Column15({ name: "interview_insight", type: "jsonb", nullable: true })
3030
+ ], AiInterview.prototype, "interviewInsight", 2);
3025
3031
  __decorateClass([
3026
3032
  Column15({ name: "is_f2f_interview_scheduled", type: "boolean", default: false })
3027
3033
  ], AiInterview.prototype, "isF2fInterviewScheduled", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.529",
3
+ "version": "1.0.530",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",