@experts_hub/shared 1.0.246 → 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
@@ -286,6 +286,7 @@ interface IAttachPermissionsToSubAdminResponse {
286
286
 
287
287
  declare const CLIENT_PROFILE_PATTERN: {
288
288
  fetchClientProfile: string;
289
+ fetchClientPublicProfile: string;
289
290
  updateClientProfile: string;
290
291
  updateClientLogo: string;
291
292
  changeClientPassword: string;
@@ -1005,6 +1006,7 @@ declare class FreelancerAssessment extends BaseEntity {
1005
1006
  user: User;
1006
1007
  interviewId: string;
1007
1008
  interviewLink: string;
1009
+ recordingLink: string;
1008
1010
  iframeResponse: string;
1009
1011
  interviewSummary: string;
1010
1012
  status: AssessmentStatusEnum;
package/dist/index.d.ts CHANGED
@@ -286,6 +286,7 @@ interface IAttachPermissionsToSubAdminResponse {
286
286
 
287
287
  declare const CLIENT_PROFILE_PATTERN: {
288
288
  fetchClientProfile: string;
289
+ fetchClientPublicProfile: string;
289
290
  updateClientProfile: string;
290
291
  updateClientLogo: string;
291
292
  changeClientPassword: string;
@@ -1005,6 +1006,7 @@ declare class FreelancerAssessment extends BaseEntity {
1005
1006
  user: User;
1006
1007
  interviewId: string;
1007
1008
  interviewLink: string;
1009
+ recordingLink: string;
1008
1010
  iframeResponse: string;
1009
1011
  interviewSummary: string;
1010
1012
  status: AssessmentStatusEnum;
package/dist/index.js CHANGED
@@ -762,6 +762,7 @@ __decorateClass([
762
762
  // src/modules/user/client-profile/pattern/pattern.ts
763
763
  var CLIENT_PROFILE_PATTERN = {
764
764
  fetchClientProfile: "fetch.client.profile",
765
+ fetchClientPublicProfile: "fetch.client.public.profile",
765
766
  updateClientProfile: "update.client.profile",
766
767
  updateClientLogo: "update.client.logo",
767
768
  changeClientPassword: "change.client.password",
@@ -2662,6 +2663,9 @@ __decorateClass([
2662
2663
  __decorateClass([
2663
2664
  (0, import_typeorm25.Column)({ name: "interview_link", type: "text", nullable: true })
2664
2665
  ], FreelancerAssessment.prototype, "interviewLink", 2);
2666
+ __decorateClass([
2667
+ (0, import_typeorm25.Column)({ name: "recording_link", type: "text", nullable: true })
2668
+ ], FreelancerAssessment.prototype, "recordingLink", 2);
2665
2669
  __decorateClass([
2666
2670
  (0, import_typeorm25.Column)({ name: "iframe_response", type: "jsonb", nullable: true })
2667
2671
  ], FreelancerAssessment.prototype, "iframeResponse", 2);
package/dist/index.mjs CHANGED
@@ -602,6 +602,7 @@ __decorateClass([
602
602
  // src/modules/user/client-profile/pattern/pattern.ts
603
603
  var CLIENT_PROFILE_PATTERN = {
604
604
  fetchClientProfile: "fetch.client.profile",
605
+ fetchClientPublicProfile: "fetch.client.public.profile",
605
606
  updateClientProfile: "update.client.profile",
606
607
  updateClientLogo: "update.client.logo",
607
608
  changeClientPassword: "change.client.password",
@@ -2695,6 +2696,9 @@ __decorateClass([
2695
2696
  __decorateClass([
2696
2697
  Column25({ name: "interview_link", type: "text", nullable: true })
2697
2698
  ], FreelancerAssessment.prototype, "interviewLink", 2);
2699
+ __decorateClass([
2700
+ Column25({ name: "recording_link", type: "text", nullable: true })
2701
+ ], FreelancerAssessment.prototype, "recordingLink", 2);
2698
2702
  __decorateClass([
2699
2703
  Column25({ name: "iframe_response", type: "jsonb", nullable: true })
2700
2704
  ], FreelancerAssessment.prototype, "iframeResponse", 2);
@@ -1,5 +1,6 @@
1
1
  export declare const CLIENT_PROFILE_PATTERN: {
2
2
  fetchClientProfile: string;
3
+ fetchClientPublicProfile: string;
3
4
  updateClientProfile: string;
4
5
  updateClientLogo: string;
5
6
  changeClientPassword: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.246",
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/",