@experts_hub/shared 1.0.141 → 1.0.143
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/index.d.ts +1 -0
- package/dist/entities/interview-skill.entity.d.ts +9 -0
- package/dist/entities/interview.entity.d.ts +2 -0
- package/dist/entities/job.entity.d.ts +2 -0
- package/dist/entities/user.entity.d.ts +2 -0
- package/dist/index.d.mts +30 -19
- package/dist/index.d.ts +30 -19
- package/dist/index.js +271 -225
- package/dist/index.mjs +291 -239
- package/package.json +1 -1
package/dist/entities/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export * from './job.entity';
|
|
|
15
15
|
export * from './job-skill.entity';
|
|
16
16
|
export * from './job-application.entity';
|
|
17
17
|
export * from './interview.entity';
|
|
18
|
+
export * from './interview-skill.entity';
|
|
18
19
|
export * from './bank-details.entity';
|
|
19
20
|
export * from './plan.entity';
|
|
20
21
|
export * from './feature.entity';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseEntity } from "./base.entity";
|
|
2
|
+
import { Interview } from "./interview.entity";
|
|
3
|
+
export declare class InterviewSkill extends BaseEntity {
|
|
4
|
+
interviewId: number;
|
|
5
|
+
interview: Interview;
|
|
6
|
+
skill: string;
|
|
7
|
+
description: string;
|
|
8
|
+
isActive: boolean;
|
|
9
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { User } from "./user.entity";
|
|
3
3
|
import { Job } from "./job.entity";
|
|
4
|
+
import { InterviewSkill } from "./interview-skill.entity";
|
|
4
5
|
export declare enum InterviewStatusEnum {
|
|
5
6
|
DRAFTED = "DRAFTED",
|
|
6
7
|
PUBLISHED = "PUBLISHED",
|
|
@@ -17,4 +18,5 @@ export declare class Interview extends BaseEntity {
|
|
|
17
18
|
job: Job;
|
|
18
19
|
interviewType: string;
|
|
19
20
|
status: InterviewStatusEnum;
|
|
21
|
+
interviewSkills: InterviewSkill[];
|
|
20
22
|
}
|
|
@@ -2,6 +2,7 @@ import { BaseEntity } from "./base.entity";
|
|
|
2
2
|
import { User } from "./user.entity";
|
|
3
3
|
import { JobSkill } from "./job-skill.entity";
|
|
4
4
|
import { JobApplication } from "./job-application.entity";
|
|
5
|
+
import { Interview } from "./interview.entity";
|
|
5
6
|
export declare enum JobLocationEnum {
|
|
6
7
|
ONSITE = "ONSITE",
|
|
7
8
|
REMOTE = "REMOTE",
|
|
@@ -55,4 +56,5 @@ export declare class Job extends BaseEntity {
|
|
|
55
56
|
applicationCount: number;
|
|
56
57
|
jobSkills: JobSkill[];
|
|
57
58
|
jobApplications: JobApplication[];
|
|
59
|
+
interviews: Interview[];
|
|
58
60
|
}
|
|
@@ -5,6 +5,7 @@ import { Otp } from "./otp.entity";
|
|
|
5
5
|
import { FreelancerProfile } from "./freelancer-profile.entity";
|
|
6
6
|
import { CompanyProfile } from "./company-profile.entity";
|
|
7
7
|
import { Job } from "./job.entity";
|
|
8
|
+
import { Interview } from "./interview.entity";
|
|
8
9
|
import { BankDetail } from "./bank-details.entity";
|
|
9
10
|
import { SystemPreference } from "./system-preference.entity";
|
|
10
11
|
import { Rating } from "./rating.entity";
|
|
@@ -63,6 +64,7 @@ export declare class User extends BaseEntity {
|
|
|
63
64
|
freelancerProfile: FreelancerProfile;
|
|
64
65
|
companyProfile: CompanyProfile;
|
|
65
66
|
jobs: Job[];
|
|
67
|
+
interviews: Interview[];
|
|
66
68
|
bankDetail: BankDetail[];
|
|
67
69
|
systemPreference: SystemPreference[];
|
|
68
70
|
givenRatings: Rating[];
|
package/dist/index.d.mts
CHANGED
|
@@ -671,6 +671,33 @@ declare class JobApplication extends BaseEntity {
|
|
|
671
671
|
withdrawnReason: string;
|
|
672
672
|
}
|
|
673
673
|
|
|
674
|
+
declare class InterviewSkill extends BaseEntity {
|
|
675
|
+
interviewId: number;
|
|
676
|
+
interview: Interview;
|
|
677
|
+
skill: string;
|
|
678
|
+
description: string;
|
|
679
|
+
isActive: boolean;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
declare enum InterviewStatusEnum {
|
|
683
|
+
DRAFTED = "DRAFTED",
|
|
684
|
+
PUBLISHED = "PUBLISHED",
|
|
685
|
+
INACTIVE = "INACTIVE",
|
|
686
|
+
DISCARDED = "DISCARDED",
|
|
687
|
+
ARCHIVED = "ARCHIVED"
|
|
688
|
+
}
|
|
689
|
+
declare class Interview extends BaseEntity {
|
|
690
|
+
interviewId: string;
|
|
691
|
+
userId: number;
|
|
692
|
+
user: User;
|
|
693
|
+
interviewName: string;
|
|
694
|
+
jobId: number;
|
|
695
|
+
job: Job;
|
|
696
|
+
interviewType: string;
|
|
697
|
+
status: InterviewStatusEnum;
|
|
698
|
+
interviewSkills: InterviewSkill[];
|
|
699
|
+
}
|
|
700
|
+
|
|
674
701
|
declare enum JobLocationEnum {
|
|
675
702
|
ONSITE = "ONSITE",
|
|
676
703
|
REMOTE = "REMOTE",
|
|
@@ -724,6 +751,7 @@ declare class Job extends BaseEntity {
|
|
|
724
751
|
applicationCount: number;
|
|
725
752
|
jobSkills: JobSkill[];
|
|
726
753
|
jobApplications: JobApplication[];
|
|
754
|
+
interviews: Interview[];
|
|
727
755
|
}
|
|
728
756
|
|
|
729
757
|
declare enum BankAccountTypeEnum {
|
|
@@ -836,6 +864,7 @@ declare class User extends BaseEntity {
|
|
|
836
864
|
freelancerProfile: FreelancerProfile;
|
|
837
865
|
companyProfile: CompanyProfile;
|
|
838
866
|
jobs: Job[];
|
|
867
|
+
interviews: Interview[];
|
|
839
868
|
bankDetail: BankDetail[];
|
|
840
869
|
systemPreference: SystemPreference[];
|
|
841
870
|
givenRatings: Rating[];
|
|
@@ -1154,24 +1183,6 @@ declare class JobRoles extends BaseEntity {
|
|
|
1154
1183
|
isActive: boolean;
|
|
1155
1184
|
}
|
|
1156
1185
|
|
|
1157
|
-
declare enum InterviewStatusEnum {
|
|
1158
|
-
DRAFTED = "DRAFTED",
|
|
1159
|
-
PUBLISHED = "PUBLISHED",
|
|
1160
|
-
INACTIVE = "INACTIVE",
|
|
1161
|
-
DISCARDED = "DISCARDED",
|
|
1162
|
-
ARCHIVED = "ARCHIVED"
|
|
1163
|
-
}
|
|
1164
|
-
declare class Interview extends BaseEntity {
|
|
1165
|
-
interviewId: string;
|
|
1166
|
-
userId: number;
|
|
1167
|
-
user: User;
|
|
1168
|
-
interviewName: string;
|
|
1169
|
-
jobId: number;
|
|
1170
|
-
job: Job;
|
|
1171
|
-
interviewType: string;
|
|
1172
|
-
status: InterviewStatusEnum;
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
1186
|
declare class Feature extends BaseEntity {
|
|
1176
1187
|
name: string;
|
|
1177
1188
|
plans: Plan[];
|
|
@@ -1186,4 +1197,4 @@ declare class Plan extends BaseEntity {
|
|
|
1186
1197
|
features: Feature[];
|
|
1187
1198
|
}
|
|
1188
1199
|
|
|
1189
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_PROFILE_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CompanyRole, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateEducationDto, CreateExperienceDto, CreateFreelancerEducationDto, CreateFreelancerExperienceDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DurationTypeEnum, EmploymentType, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, Feature, ForgotPasswordDto, FreelancerBankDetailsDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerExperience, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToSubAdminResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, 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 IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, Interview, InterviewStatusEnum, 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, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SenseloafLog, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateEducationDto, UpdateExperienceDto, UpdateFreelancerEducationDto, UpdateFreelancerExperienceDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
|
1200
|
+
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_PROFILE_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CompanyRole, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateEducationDto, CreateExperienceDto, CreateFreelancerEducationDto, CreateFreelancerExperienceDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DurationTypeEnum, EmploymentType, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, Feature, ForgotPasswordDto, FreelancerBankDetailsDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerExperience, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToSubAdminResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, 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 IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, Interview, InterviewSkill, InterviewStatusEnum, 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, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SenseloafLog, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateEducationDto, UpdateExperienceDto, UpdateFreelancerEducationDto, UpdateFreelancerExperienceDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
package/dist/index.d.ts
CHANGED
|
@@ -671,6 +671,33 @@ declare class JobApplication extends BaseEntity {
|
|
|
671
671
|
withdrawnReason: string;
|
|
672
672
|
}
|
|
673
673
|
|
|
674
|
+
declare class InterviewSkill extends BaseEntity {
|
|
675
|
+
interviewId: number;
|
|
676
|
+
interview: Interview;
|
|
677
|
+
skill: string;
|
|
678
|
+
description: string;
|
|
679
|
+
isActive: boolean;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
declare enum InterviewStatusEnum {
|
|
683
|
+
DRAFTED = "DRAFTED",
|
|
684
|
+
PUBLISHED = "PUBLISHED",
|
|
685
|
+
INACTIVE = "INACTIVE",
|
|
686
|
+
DISCARDED = "DISCARDED",
|
|
687
|
+
ARCHIVED = "ARCHIVED"
|
|
688
|
+
}
|
|
689
|
+
declare class Interview extends BaseEntity {
|
|
690
|
+
interviewId: string;
|
|
691
|
+
userId: number;
|
|
692
|
+
user: User;
|
|
693
|
+
interviewName: string;
|
|
694
|
+
jobId: number;
|
|
695
|
+
job: Job;
|
|
696
|
+
interviewType: string;
|
|
697
|
+
status: InterviewStatusEnum;
|
|
698
|
+
interviewSkills: InterviewSkill[];
|
|
699
|
+
}
|
|
700
|
+
|
|
674
701
|
declare enum JobLocationEnum {
|
|
675
702
|
ONSITE = "ONSITE",
|
|
676
703
|
REMOTE = "REMOTE",
|
|
@@ -724,6 +751,7 @@ declare class Job extends BaseEntity {
|
|
|
724
751
|
applicationCount: number;
|
|
725
752
|
jobSkills: JobSkill[];
|
|
726
753
|
jobApplications: JobApplication[];
|
|
754
|
+
interviews: Interview[];
|
|
727
755
|
}
|
|
728
756
|
|
|
729
757
|
declare enum BankAccountTypeEnum {
|
|
@@ -836,6 +864,7 @@ declare class User extends BaseEntity {
|
|
|
836
864
|
freelancerProfile: FreelancerProfile;
|
|
837
865
|
companyProfile: CompanyProfile;
|
|
838
866
|
jobs: Job[];
|
|
867
|
+
interviews: Interview[];
|
|
839
868
|
bankDetail: BankDetail[];
|
|
840
869
|
systemPreference: SystemPreference[];
|
|
841
870
|
givenRatings: Rating[];
|
|
@@ -1154,24 +1183,6 @@ declare class JobRoles extends BaseEntity {
|
|
|
1154
1183
|
isActive: boolean;
|
|
1155
1184
|
}
|
|
1156
1185
|
|
|
1157
|
-
declare enum InterviewStatusEnum {
|
|
1158
|
-
DRAFTED = "DRAFTED",
|
|
1159
|
-
PUBLISHED = "PUBLISHED",
|
|
1160
|
-
INACTIVE = "INACTIVE",
|
|
1161
|
-
DISCARDED = "DISCARDED",
|
|
1162
|
-
ARCHIVED = "ARCHIVED"
|
|
1163
|
-
}
|
|
1164
|
-
declare class Interview extends BaseEntity {
|
|
1165
|
-
interviewId: string;
|
|
1166
|
-
userId: number;
|
|
1167
|
-
user: User;
|
|
1168
|
-
interviewName: string;
|
|
1169
|
-
jobId: number;
|
|
1170
|
-
job: Job;
|
|
1171
|
-
interviewType: string;
|
|
1172
|
-
status: InterviewStatusEnum;
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
1186
|
declare class Feature extends BaseEntity {
|
|
1176
1187
|
name: string;
|
|
1177
1188
|
plans: Plan[];
|
|
@@ -1186,4 +1197,4 @@ declare class Plan extends BaseEntity {
|
|
|
1186
1197
|
features: Feature[];
|
|
1187
1198
|
}
|
|
1188
1199
|
|
|
1189
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_PROFILE_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CompanyRole, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateEducationDto, CreateExperienceDto, CreateFreelancerEducationDto, CreateFreelancerExperienceDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DurationTypeEnum, EmploymentType, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, Feature, ForgotPasswordDto, FreelancerBankDetailsDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerExperience, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToSubAdminResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, 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 IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, Interview, InterviewStatusEnum, 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, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SenseloafLog, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateEducationDto, UpdateExperienceDto, UpdateFreelancerEducationDto, UpdateFreelancerExperienceDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
|
1200
|
+
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_PROFILE_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CompanyRole, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateEducationDto, CreateExperienceDto, CreateFreelancerEducationDto, CreateFreelancerExperienceDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DurationTypeEnum, EmploymentType, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, Feature, ForgotPasswordDto, FreelancerBankDetailsDto, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerExperience, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToSubAdminResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, 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 IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, Interview, InterviewSkill, InterviewStatusEnum, 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, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SenseloafLog, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateEducationDto, UpdateExperienceDto, UpdateFreelancerEducationDto, UpdateFreelancerExperienceDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|