@experts_hub/shared 1.0.47 → 1.0.49

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,7 @@ declare const OTP_PATTERN: {
30
30
 
31
31
  declare const ONBOARDING_PATTERN: {
32
32
  handleFreelancerAccountCreation: string;
33
+ handleClientAccountCreation: string;
33
34
  };
34
35
 
35
36
  declare const RESUME_PARSER_PATTERN: {
package/dist/index.d.ts CHANGED
@@ -30,6 +30,7 @@ declare const OTP_PATTERN: {
30
30
 
31
31
  declare const ONBOARDING_PATTERN: {
32
32
  handleFreelancerAccountCreation: string;
33
+ handleClientAccountCreation: string;
33
34
  };
34
35
 
35
36
  declare const RESUME_PARSER_PATTERN: {
package/dist/index.js CHANGED
@@ -103,7 +103,8 @@ var OTP_PATTERN = {
103
103
 
104
104
  // src/modules/onboarding/pattern/pattern.ts
105
105
  var ONBOARDING_PATTERN = {
106
- handleFreelancerAccountCreation: "handle.freelancer.account.creation"
106
+ handleFreelancerAccountCreation: "handle.freelancer.account.creation",
107
+ handleClientAccountCreation: "handle.client.account.creation"
107
108
  };
108
109
 
109
110
  // src/modules/resume-parser/pattern/pattern.ts
package/dist/index.mjs CHANGED
@@ -61,7 +61,8 @@ var OTP_PATTERN = {
61
61
 
62
62
  // src/modules/onboarding/pattern/pattern.ts
63
63
  var ONBOARDING_PATTERN = {
64
- handleFreelancerAccountCreation: "handle.freelancer.account.creation"
64
+ handleFreelancerAccountCreation: "handle.freelancer.account.creation",
65
+ handleClientAccountCreation: "handle.client.account.creation"
65
66
  };
66
67
 
67
68
  // src/modules/resume-parser/pattern/pattern.ts
@@ -1,3 +1,4 @@
1
1
  export declare const ONBOARDING_PATTERN: {
2
2
  handleFreelancerAccountCreation: string;
3
+ handleClientAccountCreation: string;
3
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.47",
3
+ "version": "1.0.49",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",