@experts_hub/shared 1.0.46 → 1.0.48

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.
@@ -4,3 +4,4 @@ export * from './refresh-token.entity';
4
4
  export * from './resume-parser-log.entity';
5
5
  export * from './question.entity';
6
6
  export * from './otp.entity';
7
+ export * from './freelancer-profile.entity';
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: {
@@ -292,4 +293,4 @@ declare class Question extends BaseEntity {
292
293
  isActive: boolean;
293
294
  }
294
295
 
295
- export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, CreateQuestionDto, CreateSubAdminDto, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JobRMQAdapter, JobTCPAdapter, LoginDto, LogoutDto, ONBOARDING_PATTERN, OTP_PATTERN, Otp, QUESTION_PATTERN, Question, QuestionFor, RESUME_PARSER_PATTERN, RefreshDto, RefreshToken, ResumeParserLog, SUBADMIN_PATTERN, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
296
+ export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, CreateQuestionDto, CreateSubAdminDto, FreelancerProfile, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JobRMQAdapter, JobTCPAdapter, LoginDto, LogoutDto, ONBOARDING_PATTERN, OTP_PATTERN, Otp, QUESTION_PATTERN, Question, QuestionFor, RESUME_PARSER_PATTERN, RefreshDto, RefreshToken, ResumeParserLog, SUBADMIN_PATTERN, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
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: {
@@ -292,4 +293,4 @@ declare class Question extends BaseEntity {
292
293
  isActive: boolean;
293
294
  }
294
295
 
295
- export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, CreateQuestionDto, CreateSubAdminDto, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JobRMQAdapter, JobTCPAdapter, LoginDto, LogoutDto, ONBOARDING_PATTERN, OTP_PATTERN, Otp, QUESTION_PATTERN, Question, QuestionFor, RESUME_PARSER_PATTERN, RefreshDto, RefreshToken, ResumeParserLog, SUBADMIN_PATTERN, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
296
+ export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, CreateQuestionDto, CreateSubAdminDto, FreelancerProfile, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JobRMQAdapter, JobTCPAdapter, LoginDto, LogoutDto, ONBOARDING_PATTERN, OTP_PATTERN, Otp, QUESTION_PATTERN, Question, QuestionFor, RESUME_PARSER_PATTERN, RefreshDto, RefreshToken, ResumeParserLog, SUBADMIN_PATTERN, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
package/dist/index.js CHANGED
@@ -33,6 +33,7 @@ __export(index_exports, {
33
33
  BaseEntity: () => BaseEntity,
34
34
  CreateQuestionDto: () => CreateQuestionDto,
35
35
  CreateSubAdminDto: () => CreateSubAdminDto,
36
+ FreelancerProfile: () => FreelancerProfile,
36
37
  JobRMQAdapter: () => JobRMQAdapter,
37
38
  JobTCPAdapter: () => JobTCPAdapter,
38
39
  LoginDto: () => LoginDto,
@@ -102,7 +103,8 @@ var OTP_PATTERN = {
102
103
 
103
104
  // src/modules/onboarding/pattern/pattern.ts
104
105
  var ONBOARDING_PATTERN = {
105
- handleFreelancerAccountCreation: "handle.freelancer.account.creation"
106
+ handleFreelancerAccountCreation: "handle.freelancer.account.creation",
107
+ handleClientAccountCreation: "handle.client.account.creation"
106
108
  };
107
109
 
108
110
  // src/modules/resume-parser/pattern/pattern.ts
@@ -690,6 +692,7 @@ Question = __decorateClass([
690
692
  BaseEntity,
691
693
  CreateQuestionDto,
692
694
  CreateSubAdminDto,
695
+ FreelancerProfile,
693
696
  JobRMQAdapter,
694
697
  JobTCPAdapter,
695
698
  LoginDto,
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
@@ -690,6 +691,7 @@ export {
690
691
  BaseEntity,
691
692
  CreateQuestionDto,
692
693
  CreateSubAdminDto,
694
+ FreelancerProfile,
693
695
  JobRMQAdapter,
694
696
  JobTCPAdapter,
695
697
  LoginDto,
@@ -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.46",
3
+ "version": "1.0.48",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",