@experts_hub/shared 1.0.48 → 1.0.50

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.
@@ -0,0 +1,5 @@
1
+ import { BaseEntity } from "./base.entity";
2
+ export declare class CompanyProfile extends BaseEntity {
3
+ userId: number;
4
+ companyName: string;
5
+ }
package/dist/index.d.mts CHANGED
@@ -30,6 +30,9 @@ declare const OTP_PATTERN: {
30
30
 
31
31
  declare const ONBOARDING_PATTERN: {
32
32
  handleFreelancerAccountCreation: string;
33
+ handleFreelancerResumeUpload: string;
34
+ handleFreelancerDeveloperPreference: string;
35
+ handleFreelancerProfileQuestion: string;
33
36
  handleClientAccountCreation: string;
34
37
  };
35
38
 
package/dist/index.d.ts CHANGED
@@ -30,6 +30,9 @@ declare const OTP_PATTERN: {
30
30
 
31
31
  declare const ONBOARDING_PATTERN: {
32
32
  handleFreelancerAccountCreation: string;
33
+ handleFreelancerResumeUpload: string;
34
+ handleFreelancerDeveloperPreference: string;
35
+ handleFreelancerProfileQuestion: string;
33
36
  handleClientAccountCreation: string;
34
37
  };
35
38
 
package/dist/index.js CHANGED
@@ -104,6 +104,9 @@ var OTP_PATTERN = {
104
104
  // src/modules/onboarding/pattern/pattern.ts
105
105
  var ONBOARDING_PATTERN = {
106
106
  handleFreelancerAccountCreation: "handle.freelancer.account.creation",
107
+ handleFreelancerResumeUpload: "handle.freelancer.resume.upload",
108
+ handleFreelancerDeveloperPreference: "handle.freelancer.developer.preference",
109
+ handleFreelancerProfileQuestion: "handle.freelancer.profile.question",
107
110
  handleClientAccountCreation: "handle.client.account.creation"
108
111
  };
109
112
 
package/dist/index.mjs CHANGED
@@ -62,6 +62,9 @@ var OTP_PATTERN = {
62
62
  // src/modules/onboarding/pattern/pattern.ts
63
63
  var ONBOARDING_PATTERN = {
64
64
  handleFreelancerAccountCreation: "handle.freelancer.account.creation",
65
+ handleFreelancerResumeUpload: "handle.freelancer.resume.upload",
66
+ handleFreelancerDeveloperPreference: "handle.freelancer.developer.preference",
67
+ handleFreelancerProfileQuestion: "handle.freelancer.profile.question",
65
68
  handleClientAccountCreation: "handle.client.account.creation"
66
69
  };
67
70
 
@@ -1,4 +1,7 @@
1
1
  export declare const ONBOARDING_PATTERN: {
2
2
  handleFreelancerAccountCreation: string;
3
+ handleFreelancerResumeUpload: string;
4
+ handleFreelancerDeveloperPreference: string;
5
+ handleFreelancerProfileQuestion: string;
3
6
  handleClientAccountCreation: string;
4
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",