@experts_hub/shared 1.0.274 → 1.0.276
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/admin-role.entity.d.ts +2 -2
- package/dist/entities/{user-role.entity.d.ts → admin-user-role.entity.d.ts} +1 -1
- package/dist/entities/index.d.ts +1 -1
- package/dist/entities/user.entity.d.ts +2 -2
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +15 -15
- package/dist/index.mjs +14 -14
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { AdminRolePermission } from "./admin-role-permission.entity";
|
|
3
|
-
import {
|
|
3
|
+
import { AdminUserRole } from "./admin-user-role.entity";
|
|
4
4
|
export declare class AdminRole extends BaseEntity {
|
|
5
5
|
roleName: string;
|
|
6
6
|
roleSlug: string;
|
|
7
7
|
roleDescription: string;
|
|
8
8
|
isActive: boolean;
|
|
9
9
|
adminRolePermission: AdminRolePermission[];
|
|
10
|
-
userRoles:
|
|
10
|
+
userRoles: AdminUserRole[];
|
|
11
11
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { AdminRole } from "./admin-role.entity";
|
|
3
3
|
import { User } from "./user.entity";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class AdminUserRole extends BaseEntity {
|
|
5
5
|
userId: number;
|
|
6
6
|
user: User;
|
|
7
7
|
roleId: number;
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -46,4 +46,4 @@ export * from './job-freelancer-recommendation.entity';
|
|
|
46
46
|
export * from './admin-role.entity';
|
|
47
47
|
export * from './admin-permission.entity';
|
|
48
48
|
export * from './admin-role-permission.entity';
|
|
49
|
-
export * from './user-role.entity';
|
|
49
|
+
export * from './admin-user-role.entity';
|
|
@@ -22,7 +22,7 @@ import { FreelancerDeclaration } from "./freelancer-declaration.entity";
|
|
|
22
22
|
import { CompanyMemberRole } from "./company-members-roles.entity";
|
|
23
23
|
import { AssessmentAnswer } from "./assessment-answer.entity";
|
|
24
24
|
import { CompanySkill } from "./company-skill.entity";
|
|
25
|
-
import {
|
|
25
|
+
import { AdminUserRole } from "./admin-user-role.entity";
|
|
26
26
|
export declare enum AccountType {
|
|
27
27
|
ADMIN = "ADMIN",
|
|
28
28
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -93,5 +93,5 @@ export declare class User extends BaseEntity {
|
|
|
93
93
|
systemPreference: SystemPreference[];
|
|
94
94
|
givenRatings: Rating[];
|
|
95
95
|
receivedRatings: Rating[];
|
|
96
|
-
|
|
96
|
+
adminUserRoles: AdminUserRole[];
|
|
97
97
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1147,10 +1147,10 @@ declare class AdminRole extends BaseEntity {
|
|
|
1147
1147
|
roleDescription: string;
|
|
1148
1148
|
isActive: boolean;
|
|
1149
1149
|
adminRolePermission: AdminRolePermission[];
|
|
1150
|
-
userRoles:
|
|
1150
|
+
userRoles: AdminUserRole[];
|
|
1151
1151
|
}
|
|
1152
1152
|
|
|
1153
|
-
declare class
|
|
1153
|
+
declare class AdminUserRole extends BaseEntity {
|
|
1154
1154
|
userId: number;
|
|
1155
1155
|
user: User;
|
|
1156
1156
|
roleId: number;
|
|
@@ -1227,7 +1227,7 @@ declare class User extends BaseEntity {
|
|
|
1227
1227
|
systemPreference: SystemPreference[];
|
|
1228
1228
|
givenRatings: Rating[];
|
|
1229
1229
|
receivedRatings: Rating[];
|
|
1230
|
-
|
|
1230
|
+
adminUserRoles: AdminUserRole[];
|
|
1231
1231
|
}
|
|
1232
1232
|
|
|
1233
1233
|
declare enum RatingTypeEnum {
|
|
@@ -2077,4 +2077,4 @@ declare class JobFreelancerRecommendation {
|
|
|
2077
2077
|
requiredSkillsCount: number;
|
|
2078
2078
|
}
|
|
2079
2079
|
|
|
2080
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AiAssessmentStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, COUNTRY_PATTERN, CaseStudyDto, CategoryEmum, CategoryEmumDto, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Country, CreateAdminRoleDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkill, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, 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 IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, Interview, InterviewQuestion, InterviewSkill, InterviewStatusEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, STATE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter,
|
|
2080
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, COUNTRY_PATTERN, CaseStudyDto, CategoryEmum, CategoryEmumDto, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Country, CreateAdminRoleDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkill, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, 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 IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, Interview, InterviewQuestion, InterviewSkill, InterviewStatusEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, STATE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -1147,10 +1147,10 @@ declare class AdminRole extends BaseEntity {
|
|
|
1147
1147
|
roleDescription: string;
|
|
1148
1148
|
isActive: boolean;
|
|
1149
1149
|
adminRolePermission: AdminRolePermission[];
|
|
1150
|
-
userRoles:
|
|
1150
|
+
userRoles: AdminUserRole[];
|
|
1151
1151
|
}
|
|
1152
1152
|
|
|
1153
|
-
declare class
|
|
1153
|
+
declare class AdminUserRole extends BaseEntity {
|
|
1154
1154
|
userId: number;
|
|
1155
1155
|
user: User;
|
|
1156
1156
|
roleId: number;
|
|
@@ -1227,7 +1227,7 @@ declare class User extends BaseEntity {
|
|
|
1227
1227
|
systemPreference: SystemPreference[];
|
|
1228
1228
|
givenRatings: Rating[];
|
|
1229
1229
|
receivedRatings: Rating[];
|
|
1230
|
-
|
|
1230
|
+
adminUserRoles: AdminUserRole[];
|
|
1231
1231
|
}
|
|
1232
1232
|
|
|
1233
1233
|
declare enum RatingTypeEnum {
|
|
@@ -2077,4 +2077,4 @@ declare class JobFreelancerRecommendation {
|
|
|
2077
2077
|
requiredSkillsCount: number;
|
|
2078
2078
|
}
|
|
2079
2079
|
|
|
2080
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AiAssessmentStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, COUNTRY_PATTERN, CaseStudyDto, CategoryEmum, CategoryEmumDto, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Country, CreateAdminRoleDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkill, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, 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 IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, Interview, InterviewQuestion, InterviewSkill, InterviewStatusEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, STATE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter,
|
|
2080
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, COUNTRY_PATTERN, CaseStudyDto, CategoryEmum, CategoryEmumDto, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Country, CreateAdminRoleDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkill, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, 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 IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, Interview, InterviewQuestion, InterviewSkill, InterviewStatusEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, STATE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
package/dist/index.js
CHANGED
|
@@ -39,6 +39,7 @@ __export(index_exports, {
|
|
|
39
39
|
AdminRole: () => AdminRole,
|
|
40
40
|
AdminRolePermission: () => AdminRolePermission,
|
|
41
41
|
AdminUpdateJobInformationDto: () => AdminUpdateJobInformationDto,
|
|
42
|
+
AdminUserRole: () => AdminUserRole,
|
|
42
43
|
AiAssessmentStatusEnum: () => AiAssessmentStatusEnum,
|
|
43
44
|
AnswerTypeEnum: () => AnswerTypeEnum,
|
|
44
45
|
ApplicationStatusEnum: () => ApplicationStatusEnum,
|
|
@@ -225,7 +226,6 @@ __export(index_exports, {
|
|
|
225
226
|
UpdateSubAdminDto: () => UpdateSubAdminDto,
|
|
226
227
|
User: () => User,
|
|
227
228
|
UserRMQAdapter: () => UserRMQAdapter,
|
|
228
|
-
UserRole: () => UserRole,
|
|
229
229
|
UserTCPAdapter: () => UserTCPAdapter,
|
|
230
230
|
VerifyGuestOtpDto: () => VerifyGuestOtpDto,
|
|
231
231
|
VerifyGuestOtpPurposeEnum: () => VerifyGuestOtpPurposeEnum
|
|
@@ -3083,7 +3083,7 @@ CompanySkill = __decorateClass([
|
|
|
3083
3083
|
(0, import_typeorm35.Entity)("company_skills")
|
|
3084
3084
|
], CompanySkill);
|
|
3085
3085
|
|
|
3086
|
-
// src/entities/user-role.entity.ts
|
|
3086
|
+
// src/entities/admin-user-role.entity.ts
|
|
3087
3087
|
var import_typeorm39 = require("typeorm");
|
|
3088
3088
|
|
|
3089
3089
|
// src/entities/admin-role.entity.ts
|
|
@@ -3181,14 +3181,14 @@ __decorateClass([
|
|
|
3181
3181
|
)
|
|
3182
3182
|
], AdminRole.prototype, "adminRolePermission", 2);
|
|
3183
3183
|
__decorateClass([
|
|
3184
|
-
(0, import_typeorm38.OneToMany)(() =>
|
|
3184
|
+
(0, import_typeorm38.OneToMany)(() => AdminUserRole, (adminUserRole) => adminUserRole.adminRole)
|
|
3185
3185
|
], AdminRole.prototype, "userRoles", 2);
|
|
3186
3186
|
AdminRole = __decorateClass([
|
|
3187
3187
|
(0, import_typeorm38.Entity)("admin_roles")
|
|
3188
3188
|
], AdminRole);
|
|
3189
3189
|
|
|
3190
|
-
// src/entities/user-role.entity.ts
|
|
3191
|
-
var
|
|
3190
|
+
// src/entities/admin-user-role.entity.ts
|
|
3191
|
+
var AdminUserRole = class extends BaseEntity {
|
|
3192
3192
|
};
|
|
3193
3193
|
__decorateClass([
|
|
3194
3194
|
(0, import_typeorm39.Column)({
|
|
@@ -3197,11 +3197,11 @@ __decorateClass([
|
|
|
3197
3197
|
nullable: true,
|
|
3198
3198
|
comment: "Id of particular user"
|
|
3199
3199
|
})
|
|
3200
|
-
],
|
|
3200
|
+
], AdminUserRole.prototype, "userId", 2);
|
|
3201
3201
|
__decorateClass([
|
|
3202
3202
|
(0, import_typeorm39.ManyToOne)(() => User),
|
|
3203
3203
|
(0, import_typeorm39.JoinColumn)({ name: "user_id" })
|
|
3204
|
-
],
|
|
3204
|
+
], AdminUserRole.prototype, "user", 2);
|
|
3205
3205
|
__decorateClass([
|
|
3206
3206
|
(0, import_typeorm39.Column)({
|
|
3207
3207
|
name: "role_id",
|
|
@@ -3209,14 +3209,14 @@ __decorateClass([
|
|
|
3209
3209
|
nullable: true,
|
|
3210
3210
|
comment: "Id of particular role"
|
|
3211
3211
|
})
|
|
3212
|
-
],
|
|
3212
|
+
], AdminUserRole.prototype, "roleId", 2);
|
|
3213
3213
|
__decorateClass([
|
|
3214
3214
|
(0, import_typeorm39.ManyToOne)(() => AdminRole),
|
|
3215
3215
|
(0, import_typeorm39.JoinColumn)({ name: "role_id" })
|
|
3216
|
-
],
|
|
3217
|
-
|
|
3218
|
-
(0, import_typeorm39.Entity)("
|
|
3219
|
-
],
|
|
3216
|
+
], AdminUserRole.prototype, "adminRole", 2);
|
|
3217
|
+
AdminUserRole = __decorateClass([
|
|
3218
|
+
(0, import_typeorm39.Entity)("admin_user_roles")
|
|
3219
|
+
], AdminUserRole);
|
|
3220
3220
|
|
|
3221
3221
|
// src/entities/user.entity.ts
|
|
3222
3222
|
var AccountType = /* @__PURE__ */ ((AccountType2) => {
|
|
@@ -3422,8 +3422,8 @@ __decorateClass([
|
|
|
3422
3422
|
(0, import_typeorm40.OneToMany)(() => Rating, (rating) => rating.reviewee)
|
|
3423
3423
|
], User.prototype, "receivedRatings", 2);
|
|
3424
3424
|
__decorateClass([
|
|
3425
|
-
(0, import_typeorm40.OneToMany)(() =>
|
|
3426
|
-
], User.prototype, "
|
|
3425
|
+
(0, import_typeorm40.OneToMany)(() => AdminUserRole, (adminUserRole) => adminUserRole.user)
|
|
3426
|
+
], User.prototype, "adminUserRoles", 2);
|
|
3427
3427
|
User = __decorateClass([
|
|
3428
3428
|
(0, import_typeorm40.Entity)("users")
|
|
3429
3429
|
], User);
|
|
@@ -5046,6 +5046,7 @@ JobFreelancerRecommendation = __decorateClass([
|
|
|
5046
5046
|
AdminRole,
|
|
5047
5047
|
AdminRolePermission,
|
|
5048
5048
|
AdminUpdateJobInformationDto,
|
|
5049
|
+
AdminUserRole,
|
|
5049
5050
|
AiAssessmentStatusEnum,
|
|
5050
5051
|
AnswerTypeEnum,
|
|
5051
5052
|
ApplicationStatusEnum,
|
|
@@ -5232,7 +5233,6 @@ JobFreelancerRecommendation = __decorateClass([
|
|
|
5232
5233
|
UpdateSubAdminDto,
|
|
5233
5234
|
User,
|
|
5234
5235
|
UserRMQAdapter,
|
|
5235
|
-
UserRole,
|
|
5236
5236
|
UserTCPAdapter,
|
|
5237
5237
|
VerifyGuestOtpDto,
|
|
5238
5238
|
VerifyGuestOtpPurposeEnum
|
package/dist/index.mjs
CHANGED
|
@@ -3145,7 +3145,7 @@ CompanySkill = __decorateClass([
|
|
|
3145
3145
|
Entity34("company_skills")
|
|
3146
3146
|
], CompanySkill);
|
|
3147
3147
|
|
|
3148
|
-
// src/entities/user-role.entity.ts
|
|
3148
|
+
// src/entities/admin-user-role.entity.ts
|
|
3149
3149
|
import { Entity as Entity38, Column as Column39, ManyToOne as ManyToOne32, JoinColumn as JoinColumn32 } from "typeorm";
|
|
3150
3150
|
|
|
3151
3151
|
// src/entities/admin-role.entity.ts
|
|
@@ -3243,14 +3243,14 @@ __decorateClass([
|
|
|
3243
3243
|
)
|
|
3244
3244
|
], AdminRole.prototype, "adminRolePermission", 2);
|
|
3245
3245
|
__decorateClass([
|
|
3246
|
-
OneToMany14(() =>
|
|
3246
|
+
OneToMany14(() => AdminUserRole, (adminUserRole) => adminUserRole.adminRole)
|
|
3247
3247
|
], AdminRole.prototype, "userRoles", 2);
|
|
3248
3248
|
AdminRole = __decorateClass([
|
|
3249
3249
|
Entity37("admin_roles")
|
|
3250
3250
|
], AdminRole);
|
|
3251
3251
|
|
|
3252
|
-
// src/entities/user-role.entity.ts
|
|
3253
|
-
var
|
|
3252
|
+
// src/entities/admin-user-role.entity.ts
|
|
3253
|
+
var AdminUserRole = class extends BaseEntity {
|
|
3254
3254
|
};
|
|
3255
3255
|
__decorateClass([
|
|
3256
3256
|
Column39({
|
|
@@ -3259,11 +3259,11 @@ __decorateClass([
|
|
|
3259
3259
|
nullable: true,
|
|
3260
3260
|
comment: "Id of particular user"
|
|
3261
3261
|
})
|
|
3262
|
-
],
|
|
3262
|
+
], AdminUserRole.prototype, "userId", 2);
|
|
3263
3263
|
__decorateClass([
|
|
3264
3264
|
ManyToOne32(() => User),
|
|
3265
3265
|
JoinColumn32({ name: "user_id" })
|
|
3266
|
-
],
|
|
3266
|
+
], AdminUserRole.prototype, "user", 2);
|
|
3267
3267
|
__decorateClass([
|
|
3268
3268
|
Column39({
|
|
3269
3269
|
name: "role_id",
|
|
@@ -3271,14 +3271,14 @@ __decorateClass([
|
|
|
3271
3271
|
nullable: true,
|
|
3272
3272
|
comment: "Id of particular role"
|
|
3273
3273
|
})
|
|
3274
|
-
],
|
|
3274
|
+
], AdminUserRole.prototype, "roleId", 2);
|
|
3275
3275
|
__decorateClass([
|
|
3276
3276
|
ManyToOne32(() => AdminRole),
|
|
3277
3277
|
JoinColumn32({ name: "role_id" })
|
|
3278
|
-
],
|
|
3279
|
-
|
|
3280
|
-
Entity38("
|
|
3281
|
-
],
|
|
3278
|
+
], AdminUserRole.prototype, "adminRole", 2);
|
|
3279
|
+
AdminUserRole = __decorateClass([
|
|
3280
|
+
Entity38("admin_user_roles")
|
|
3281
|
+
], AdminUserRole);
|
|
3282
3282
|
|
|
3283
3283
|
// src/entities/user.entity.ts
|
|
3284
3284
|
var AccountType = /* @__PURE__ */ ((AccountType2) => {
|
|
@@ -3484,8 +3484,8 @@ __decorateClass([
|
|
|
3484
3484
|
OneToMany15(() => Rating, (rating) => rating.reviewee)
|
|
3485
3485
|
], User.prototype, "receivedRatings", 2);
|
|
3486
3486
|
__decorateClass([
|
|
3487
|
-
OneToMany15(() =>
|
|
3488
|
-
], User.prototype, "
|
|
3487
|
+
OneToMany15(() => AdminUserRole, (adminUserRole) => adminUserRole.user)
|
|
3488
|
+
], User.prototype, "adminUserRoles", 2);
|
|
3489
3489
|
User = __decorateClass([
|
|
3490
3490
|
Entity39("users")
|
|
3491
3491
|
], User);
|
|
@@ -5187,6 +5187,7 @@ export {
|
|
|
5187
5187
|
AdminRole,
|
|
5188
5188
|
AdminRolePermission,
|
|
5189
5189
|
AdminUpdateJobInformationDto,
|
|
5190
|
+
AdminUserRole,
|
|
5190
5191
|
AiAssessmentStatusEnum,
|
|
5191
5192
|
AnswerTypeEnum,
|
|
5192
5193
|
ApplicationStatusEnum,
|
|
@@ -5373,7 +5374,6 @@ export {
|
|
|
5373
5374
|
UpdateSubAdminDto,
|
|
5374
5375
|
User,
|
|
5375
5376
|
UserRMQAdapter,
|
|
5376
|
-
UserRole,
|
|
5377
5377
|
UserTCPAdapter,
|
|
5378
5378
|
VerifyGuestOtpDto,
|
|
5379
5379
|
VerifyGuestOtpPurposeEnum
|