@experts_hub/shared 1.0.126 → 1.0.128
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.
- package/dist/entities/freelancer-experience.entity.d.ts +10 -0
- package/dist/entities/index.d.ts +1 -0
- package/dist/entities/user.entity.d.ts +5 -0
- package/dist/index.d.mts +41 -1
- package/dist/index.d.ts +41 -1
- package/dist/index.js +204 -83
- package/dist/index.mjs +193 -72
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/user/freelancer-experience/dto/create-freelancer-experience.dto.d.ts +9 -0
- package/dist/modules/user/freelancer-experience/dto/index.d.ts +2 -0
- package/dist/modules/user/freelancer-experience/dto/update-freelancer-experience.dto.d.ts +10 -0
- package/dist/modules/user/freelancer-experience/index.d.ts +2 -0
- package/dist/modules/user/freelancer-experience/pattern/pattern.d.ts +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseEntity } from "./base.entity";
|
|
2
|
+
import { User } from "./user.entity";
|
|
3
|
+
export declare class FreelancerExperience extends BaseEntity {
|
|
4
|
+
userId: number;
|
|
5
|
+
user: User;
|
|
6
|
+
companyName: string;
|
|
7
|
+
designation: string;
|
|
8
|
+
jobDuration: string;
|
|
9
|
+
description: string;
|
|
10
|
+
}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export * from './resume-parser-log.entity';
|
|
|
5
5
|
export * from './question.entity';
|
|
6
6
|
export * from './otp.entity';
|
|
7
7
|
export * from './freelancer-profile.entity';
|
|
8
|
+
export * from './freelancer-experience.entity';
|
|
8
9
|
export * from './company-profile.entity';
|
|
9
10
|
export * from './company-role.entity';
|
|
10
11
|
export * from './skill.entity';
|
|
@@ -10,6 +10,7 @@ import { SystemPreference } from "./system-preference.entity";
|
|
|
10
10
|
import { Rating } from "./rating.entity";
|
|
11
11
|
import { JobApplication } from "./job-application.entity";
|
|
12
12
|
import { CompanyRole } from "./company-role.entity";
|
|
13
|
+
import { FreelancerExperience } from "./freelancer-experience.entity";
|
|
13
14
|
export declare enum AccountType {
|
|
14
15
|
ADMIN = "ADMIN",
|
|
15
16
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -29,6 +30,9 @@ export declare enum Provider {
|
|
|
29
30
|
}
|
|
30
31
|
export declare class User extends BaseEntity {
|
|
31
32
|
uniqueId: string;
|
|
33
|
+
parentId: number;
|
|
34
|
+
parent: User;
|
|
35
|
+
children: User[];
|
|
32
36
|
username: string;
|
|
33
37
|
firstName: string;
|
|
34
38
|
lastName: string;
|
|
@@ -64,4 +68,5 @@ export declare class User extends BaseEntity {
|
|
|
64
68
|
receivedRatings: Rating[];
|
|
65
69
|
jobApplications: JobApplication[];
|
|
66
70
|
companyRole: CompanyRole[];
|
|
71
|
+
freelancerExperience: FreelancerExperience;
|
|
67
72
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -486,6 +486,15 @@ declare class CompanyRole extends BaseEntity {
|
|
|
486
486
|
isActive: boolean;
|
|
487
487
|
}
|
|
488
488
|
|
|
489
|
+
declare class FreelancerExperience extends BaseEntity {
|
|
490
|
+
userId: number;
|
|
491
|
+
user: User;
|
|
492
|
+
companyName: string;
|
|
493
|
+
designation: string;
|
|
494
|
+
jobDuration: string;
|
|
495
|
+
description: string;
|
|
496
|
+
}
|
|
497
|
+
|
|
489
498
|
declare enum AccountType {
|
|
490
499
|
ADMIN = "ADMIN",
|
|
491
500
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -505,6 +514,9 @@ declare enum Provider {
|
|
|
505
514
|
}
|
|
506
515
|
declare class User extends BaseEntity {
|
|
507
516
|
uniqueId: string;
|
|
517
|
+
parentId: number;
|
|
518
|
+
parent: User;
|
|
519
|
+
children: User[];
|
|
508
520
|
username: string;
|
|
509
521
|
firstName: string;
|
|
510
522
|
lastName: string;
|
|
@@ -540,6 +552,7 @@ declare class User extends BaseEntity {
|
|
|
540
552
|
receivedRatings: Rating[];
|
|
541
553
|
jobApplications: JobApplication[];
|
|
542
554
|
companyRole: CompanyRole[];
|
|
555
|
+
freelancerExperience: FreelancerExperience;
|
|
543
556
|
}
|
|
544
557
|
|
|
545
558
|
declare enum KindOfHire {
|
|
@@ -959,6 +972,33 @@ interface IAttachPermissionsToCompanyRoleResponse {
|
|
|
959
972
|
message: string;
|
|
960
973
|
}
|
|
961
974
|
|
|
975
|
+
declare const FREELANCER_EXPERIENCE_PATTERN: {
|
|
976
|
+
fetchFreelancerExperience: string;
|
|
977
|
+
createFreelancerExperience: string;
|
|
978
|
+
updateFreelancerExperience: string;
|
|
979
|
+
};
|
|
980
|
+
|
|
981
|
+
declare class CreateExperienceDto {
|
|
982
|
+
company: string;
|
|
983
|
+
designation: string;
|
|
984
|
+
duration: string;
|
|
985
|
+
description: string;
|
|
986
|
+
}
|
|
987
|
+
declare class CreateFreelancerExperienceDto {
|
|
988
|
+
experience: CreateExperienceDto[];
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
declare class UpdateExperienceDto {
|
|
992
|
+
id?: string;
|
|
993
|
+
company: string;
|
|
994
|
+
designation: string;
|
|
995
|
+
duration: string;
|
|
996
|
+
description: string;
|
|
997
|
+
}
|
|
998
|
+
declare class UpdateFreelancerExperienceDto {
|
|
999
|
+
experience: UpdateExperienceDto[];
|
|
1000
|
+
}
|
|
1001
|
+
|
|
962
1002
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
963
1003
|
|
|
964
1004
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -1009,4 +1049,4 @@ declare class Plan extends BaseEntity {
|
|
|
1009
1049
|
features: Feature[];
|
|
1010
1050
|
}
|
|
1011
1051
|
|
|
1012
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_PROFILE_PATTERN, COMPANY_ROLES_PATTERNS, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CompanyRole, CreateCompanyRoleDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DurationTypeEnum, EmploymentType, Feature, ForgotPasswordDto, FreelancerBankDetailsDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToSubAdminResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteCompanyRoleResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LoginDto, LogoutDto, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PLAN_PATTERN, PROFILE_PATTERN, Plan, Provider, QUESTION_PATTERN, Question, QuestionFor, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, ResumeParserLog, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
|
1052
|
+
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_PROFILE_PATTERN, COMPANY_ROLES_PATTERNS, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CompanyRole, CreateCompanyRoleDto, CreateExperienceDto, CreateFreelancerExperienceDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DurationTypeEnum, EmploymentType, FREELANCER_EXPERIENCE_PATTERN, Feature, ForgotPasswordDto, FreelancerBankDetailsDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerExperience, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToSubAdminResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteCompanyRoleResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LoginDto, LogoutDto, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PLAN_PATTERN, PROFILE_PATTERN, Plan, Provider, QUESTION_PATTERN, Question, QuestionFor, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, ResumeParserLog, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateExperienceDto, UpdateFreelancerExperienceDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
package/dist/index.d.ts
CHANGED
|
@@ -486,6 +486,15 @@ declare class CompanyRole extends BaseEntity {
|
|
|
486
486
|
isActive: boolean;
|
|
487
487
|
}
|
|
488
488
|
|
|
489
|
+
declare class FreelancerExperience extends BaseEntity {
|
|
490
|
+
userId: number;
|
|
491
|
+
user: User;
|
|
492
|
+
companyName: string;
|
|
493
|
+
designation: string;
|
|
494
|
+
jobDuration: string;
|
|
495
|
+
description: string;
|
|
496
|
+
}
|
|
497
|
+
|
|
489
498
|
declare enum AccountType {
|
|
490
499
|
ADMIN = "ADMIN",
|
|
491
500
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -505,6 +514,9 @@ declare enum Provider {
|
|
|
505
514
|
}
|
|
506
515
|
declare class User extends BaseEntity {
|
|
507
516
|
uniqueId: string;
|
|
517
|
+
parentId: number;
|
|
518
|
+
parent: User;
|
|
519
|
+
children: User[];
|
|
508
520
|
username: string;
|
|
509
521
|
firstName: string;
|
|
510
522
|
lastName: string;
|
|
@@ -540,6 +552,7 @@ declare class User extends BaseEntity {
|
|
|
540
552
|
receivedRatings: Rating[];
|
|
541
553
|
jobApplications: JobApplication[];
|
|
542
554
|
companyRole: CompanyRole[];
|
|
555
|
+
freelancerExperience: FreelancerExperience;
|
|
543
556
|
}
|
|
544
557
|
|
|
545
558
|
declare enum KindOfHire {
|
|
@@ -959,6 +972,33 @@ interface IAttachPermissionsToCompanyRoleResponse {
|
|
|
959
972
|
message: string;
|
|
960
973
|
}
|
|
961
974
|
|
|
975
|
+
declare const FREELANCER_EXPERIENCE_PATTERN: {
|
|
976
|
+
fetchFreelancerExperience: string;
|
|
977
|
+
createFreelancerExperience: string;
|
|
978
|
+
updateFreelancerExperience: string;
|
|
979
|
+
};
|
|
980
|
+
|
|
981
|
+
declare class CreateExperienceDto {
|
|
982
|
+
company: string;
|
|
983
|
+
designation: string;
|
|
984
|
+
duration: string;
|
|
985
|
+
description: string;
|
|
986
|
+
}
|
|
987
|
+
declare class CreateFreelancerExperienceDto {
|
|
988
|
+
experience: CreateExperienceDto[];
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
declare class UpdateExperienceDto {
|
|
992
|
+
id?: string;
|
|
993
|
+
company: string;
|
|
994
|
+
designation: string;
|
|
995
|
+
duration: string;
|
|
996
|
+
description: string;
|
|
997
|
+
}
|
|
998
|
+
declare class UpdateFreelancerExperienceDto {
|
|
999
|
+
experience: UpdateExperienceDto[];
|
|
1000
|
+
}
|
|
1001
|
+
|
|
962
1002
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
963
1003
|
|
|
964
1004
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -1009,4 +1049,4 @@ declare class Plan extends BaseEntity {
|
|
|
1009
1049
|
features: Feature[];
|
|
1010
1050
|
}
|
|
1011
1051
|
|
|
1012
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_PROFILE_PATTERN, COMPANY_ROLES_PATTERNS, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CompanyRole, CreateCompanyRoleDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DurationTypeEnum, EmploymentType, Feature, ForgotPasswordDto, FreelancerBankDetailsDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToSubAdminResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteCompanyRoleResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LoginDto, LogoutDto, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PLAN_PATTERN, PROFILE_PATTERN, Plan, Provider, QUESTION_PATTERN, Question, QuestionFor, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, ResumeParserLog, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
|
1052
|
+
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_PROFILE_PATTERN, COMPANY_ROLES_PATTERNS, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CompanyRole, CreateCompanyRoleDto, CreateExperienceDto, CreateFreelancerExperienceDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DurationTypeEnum, EmploymentType, FREELANCER_EXPERIENCE_PATTERN, Feature, ForgotPasswordDto, FreelancerBankDetailsDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerExperience, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToSubAdminResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteCompanyRoleResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LoginDto, LogoutDto, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PLAN_PATTERN, PROFILE_PATTERN, Plan, Provider, QUESTION_PATTERN, Question, QuestionFor, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, ResumeParserLog, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateExperienceDto, UpdateFreelancerExperienceDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|