@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.
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);
|