@experts_hub/shared 1.0.247 → 1.0.249

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
@@ -398,8 +398,10 @@ declare const JOB_ROLE_PATTERN: {
398
398
  };
399
399
  declare const JOB_PATTERN: {
400
400
  fetchJobs: string;
401
+ fetchJobsPublic: string;
401
402
  fetchRecentJobs: string;
402
403
  fetchJobCountAsPerStatus: string;
404
+ fetchJobCountPublic: string;
403
405
  fetchJobsDropdown: string;
404
406
  fetchJobDetail: string;
405
407
  handleJdUpload: string;
@@ -1006,6 +1008,7 @@ declare class FreelancerAssessment extends BaseEntity {
1006
1008
  user: User;
1007
1009
  interviewId: string;
1008
1010
  interviewLink: string;
1011
+ recordingLink: string;
1009
1012
  iframeResponse: string;
1010
1013
  interviewSummary: string;
1011
1014
  status: AssessmentStatusEnum;
package/dist/index.d.ts CHANGED
@@ -398,8 +398,10 @@ declare const JOB_ROLE_PATTERN: {
398
398
  };
399
399
  declare const JOB_PATTERN: {
400
400
  fetchJobs: string;
401
+ fetchJobsPublic: string;
401
402
  fetchRecentJobs: string;
402
403
  fetchJobCountAsPerStatus: string;
404
+ fetchJobCountPublic: string;
403
405
  fetchJobsDropdown: string;
404
406
  fetchJobDetail: string;
405
407
  handleJdUpload: string;
@@ -1006,6 +1008,7 @@ declare class FreelancerAssessment extends BaseEntity {
1006
1008
  user: User;
1007
1009
  interviewId: string;
1008
1010
  interviewLink: string;
1011
+ recordingLink: string;
1009
1012
  iframeResponse: string;
1010
1013
  interviewSummary: string;
1011
1014
  status: AssessmentStatusEnum;
package/dist/index.js CHANGED
@@ -859,8 +859,10 @@ var JOB_ROLE_PATTERN = {
859
859
  };
860
860
  var JOB_PATTERN = {
861
861
  fetchJobs: "fetch.jobs",
862
+ fetchJobsPublic: "fetch.jobs.public",
862
863
  fetchRecentJobs: "fetch.recent.jobs",
863
864
  fetchJobCountAsPerStatus: "fetch.job.count.as.per.status",
865
+ fetchJobCountPublic: "fetch.job.count.public",
864
866
  fetchJobsDropdown: "fetch.jobs.dropdown",
865
867
  fetchJobDetail: "fetch.job.details",
866
868
  handleJdUpload: "handle.jd.upload",
@@ -2663,6 +2665,9 @@ __decorateClass([
2663
2665
  __decorateClass([
2664
2666
  (0, import_typeorm25.Column)({ name: "interview_link", type: "text", nullable: true })
2665
2667
  ], FreelancerAssessment.prototype, "interviewLink", 2);
2668
+ __decorateClass([
2669
+ (0, import_typeorm25.Column)({ name: "recording_link", type: "text", nullable: true })
2670
+ ], FreelancerAssessment.prototype, "recordingLink", 2);
2666
2671
  __decorateClass([
2667
2672
  (0, import_typeorm25.Column)({ name: "iframe_response", type: "jsonb", nullable: true })
2668
2673
  ], FreelancerAssessment.prototype, "iframeResponse", 2);
package/dist/index.mjs CHANGED
@@ -715,8 +715,10 @@ var JOB_ROLE_PATTERN = {
715
715
  };
716
716
  var JOB_PATTERN = {
717
717
  fetchJobs: "fetch.jobs",
718
+ fetchJobsPublic: "fetch.jobs.public",
718
719
  fetchRecentJobs: "fetch.recent.jobs",
719
720
  fetchJobCountAsPerStatus: "fetch.job.count.as.per.status",
721
+ fetchJobCountPublic: "fetch.job.count.public",
720
722
  fetchJobsDropdown: "fetch.jobs.dropdown",
721
723
  fetchJobDetail: "fetch.job.details",
722
724
  handleJdUpload: "handle.jd.upload",
@@ -2696,6 +2698,9 @@ __decorateClass([
2696
2698
  __decorateClass([
2697
2699
  Column25({ name: "interview_link", type: "text", nullable: true })
2698
2700
  ], FreelancerAssessment.prototype, "interviewLink", 2);
2701
+ __decorateClass([
2702
+ Column25({ name: "recording_link", type: "text", nullable: true })
2703
+ ], FreelancerAssessment.prototype, "recordingLink", 2);
2699
2704
  __decorateClass([
2700
2705
  Column25({ name: "iframe_response", type: "jsonb", nullable: true })
2701
2706
  ], FreelancerAssessment.prototype, "iframeResponse", 2);
@@ -3,8 +3,10 @@ export declare const JOB_ROLE_PATTERN: {
3
3
  };
4
4
  export declare const JOB_PATTERN: {
5
5
  fetchJobs: string;
6
+ fetchJobsPublic: string;
6
7
  fetchRecentJobs: string;
7
8
  fetchJobCountAsPerStatus: string;
9
+ fetchJobCountPublic: string;
8
10
  fetchJobsDropdown: string;
9
11
  fetchJobDetail: string;
10
12
  handleJdUpload: string;
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.249",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",