@experts_hub/shared 1.0.247 → 1.0.248

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.
@@ -16,6 +16,7 @@ export declare class FreelancerAssessment extends BaseEntity {
16
16
  user: User;
17
17
  interviewId: string;
18
18
  interviewLink: string;
19
+ recordingLink: string;
19
20
  iframeResponse: string;
20
21
  interviewSummary: string;
21
22
  status: AssessmentStatusEnum;
package/dist/index.d.mts CHANGED
@@ -1006,6 +1006,7 @@ declare class FreelancerAssessment extends BaseEntity {
1006
1006
  user: User;
1007
1007
  interviewId: string;
1008
1008
  interviewLink: string;
1009
+ recordingLink: string;
1009
1010
  iframeResponse: string;
1010
1011
  interviewSummary: string;
1011
1012
  status: AssessmentStatusEnum;
package/dist/index.d.ts CHANGED
@@ -1006,6 +1006,7 @@ declare class FreelancerAssessment extends BaseEntity {
1006
1006
  user: User;
1007
1007
  interviewId: string;
1008
1008
  interviewLink: string;
1009
+ recordingLink: string;
1009
1010
  iframeResponse: string;
1010
1011
  interviewSummary: string;
1011
1012
  status: AssessmentStatusEnum;
package/dist/index.js CHANGED
@@ -2663,6 +2663,9 @@ __decorateClass([
2663
2663
  __decorateClass([
2664
2664
  (0, import_typeorm25.Column)({ name: "interview_link", type: "text", nullable: true })
2665
2665
  ], FreelancerAssessment.prototype, "interviewLink", 2);
2666
+ __decorateClass([
2667
+ (0, import_typeorm25.Column)({ name: "recording_link", type: "text", nullable: true })
2668
+ ], FreelancerAssessment.prototype, "recordingLink", 2);
2666
2669
  __decorateClass([
2667
2670
  (0, import_typeorm25.Column)({ name: "iframe_response", type: "jsonb", nullable: true })
2668
2671
  ], FreelancerAssessment.prototype, "iframeResponse", 2);
package/dist/index.mjs CHANGED
@@ -2696,6 +2696,9 @@ __decorateClass([
2696
2696
  __decorateClass([
2697
2697
  Column25({ name: "interview_link", type: "text", nullable: true })
2698
2698
  ], FreelancerAssessment.prototype, "interviewLink", 2);
2699
+ __decorateClass([
2700
+ Column25({ name: "recording_link", type: "text", nullable: true })
2701
+ ], FreelancerAssessment.prototype, "recordingLink", 2);
2699
2702
  __decorateClass([
2700
2703
  Column25({ name: "iframe_response", type: "jsonb", nullable: true })
2701
2704
  ], FreelancerAssessment.prototype, "iframeResponse", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.247",
3
+ "version": "1.0.248",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",