@experts_hub/shared 1.0.634 → 1.0.635

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.
@@ -20,6 +20,7 @@ export declare class FreelancerAssessment extends BaseEntity {
20
20
  recordingLink: string;
21
21
  iframeResponse: string;
22
22
  interviewSummary: string;
23
+ score: number;
23
24
  status: AssessmentStatusEnum;
24
25
  taskId: string;
25
26
  metaData: any;
package/dist/index.d.mts CHANGED
@@ -2066,6 +2066,7 @@ declare class FreelancerAssessment extends BaseEntity {
2066
2066
  recordingLink: string;
2067
2067
  iframeResponse: string;
2068
2068
  interviewSummary: string;
2069
+ score: number;
2069
2070
  status: AssessmentStatusEnum;
2070
2071
  taskId: string;
2071
2072
  metaData: any;
package/dist/index.d.ts CHANGED
@@ -2066,6 +2066,7 @@ declare class FreelancerAssessment extends BaseEntity {
2066
2066
  recordingLink: string;
2067
2067
  iframeResponse: string;
2068
2068
  interviewSummary: string;
2069
+ score: number;
2069
2070
  status: AssessmentStatusEnum;
2070
2071
  taskId: string;
2071
2072
  metaData: any;
package/dist/index.js CHANGED
@@ -5999,6 +5999,9 @@ __decorateClass([
5999
5999
  __decorateClass([
6000
6000
  (0, import_typeorm44.Column)({ name: "interview_summary", type: "jsonb", nullable: true })
6001
6001
  ], FreelancerAssessment.prototype, "interviewSummary", 2);
6002
+ __decorateClass([
6003
+ (0, import_typeorm44.Column)({ name: "score", type: "float", nullable: true })
6004
+ ], FreelancerAssessment.prototype, "score", 2);
6002
6005
  __decorateClass([
6003
6006
  (0, import_typeorm44.Column)({
6004
6007
  name: "status",
package/dist/index.mjs CHANGED
@@ -5898,6 +5898,9 @@ __decorateClass([
5898
5898
  __decorateClass([
5899
5899
  Column44({ name: "interview_summary", type: "jsonb", nullable: true })
5900
5900
  ], FreelancerAssessment.prototype, "interviewSummary", 2);
5901
+ __decorateClass([
5902
+ Column44({ name: "score", type: "float", nullable: true })
5903
+ ], FreelancerAssessment.prototype, "score", 2);
5901
5904
  __decorateClass([
5902
5905
  Column44({
5903
5906
  name: "status",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.634",
3
+ "version": "1.0.635",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",