@experts_hub/shared 1.0.175 → 1.0.177
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/company-role-permission.entity.d.ts +10 -0
- package/dist/entities/company-role.entity.d.ts +2 -3
- package/dist/entities/index.d.ts +1 -0
- package/dist/entities/user.entity.d.ts +0 -3
- package/dist/index.d.mts +26 -19
- package/dist/index.d.ts +26 -19
- package/dist/index.js +261 -238
- package/dist/index.mjs +283 -249
- package/dist/modules/cms/pattern/pattern.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseEntity } from "typeorm";
|
|
2
|
+
import { CompanyRole } from "./company-role.entity";
|
|
3
|
+
import { Permission } from "./permission.entity";
|
|
4
|
+
export declare class CompanyRolePermission extends BaseEntity {
|
|
5
|
+
companyRoleId: number;
|
|
6
|
+
companyRole: CompanyRole;
|
|
7
|
+
permissionId: number;
|
|
8
|
+
permission: Permission;
|
|
9
|
+
assignedBy?: number;
|
|
10
|
+
}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
|
-
import {
|
|
2
|
+
import { CompanyRolePermission } from "./company-role-permission.entity";
|
|
3
3
|
export declare class CompanyRole extends BaseEntity {
|
|
4
|
-
userId: number;
|
|
5
|
-
user: User;
|
|
6
4
|
name: string;
|
|
7
5
|
slug: string;
|
|
8
6
|
description: string;
|
|
9
7
|
isActive: boolean;
|
|
8
|
+
rolePermissions: CompanyRolePermission[];
|
|
10
9
|
}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export * from './freelancer-framework.entity';
|
|
|
16
16
|
export * from './freelancer-declaration.entity';
|
|
17
17
|
export * from './company-profile.entity';
|
|
18
18
|
export * from './company-role.entity';
|
|
19
|
+
export * from './company-role-permission.entity';
|
|
19
20
|
export * from './skill.entity';
|
|
20
21
|
export * from './job-role.entity';
|
|
21
22
|
export * from './job.entity';
|
|
@@ -10,7 +10,6 @@ import { BankDetail } from "./bank-details.entity";
|
|
|
10
10
|
import { SystemPreference } from "./system-preference.entity";
|
|
11
11
|
import { Rating } from "./rating.entity";
|
|
12
12
|
import { JobApplication } from "./job-application.entity";
|
|
13
|
-
import { CompanyRole } from "./company-role.entity";
|
|
14
13
|
import { FreelancerExperience } from "./freelancer-experience.entity";
|
|
15
14
|
import { FreelancerEducation } from "./freelancer-education.entity";
|
|
16
15
|
import { FreelancerProject } from "./freelancer-project.entity";
|
|
@@ -41,7 +40,6 @@ export declare enum Provider {
|
|
|
41
40
|
export declare class User extends BaseEntity {
|
|
42
41
|
uniqueId: string;
|
|
43
42
|
parentId: number;
|
|
44
|
-
companyRoleId: number;
|
|
45
43
|
parent: User;
|
|
46
44
|
children: User[];
|
|
47
45
|
username: string;
|
|
@@ -80,7 +78,6 @@ export declare class User extends BaseEntity {
|
|
|
80
78
|
givenRatings: Rating[];
|
|
81
79
|
receivedRatings: Rating[];
|
|
82
80
|
jobApplications: JobApplication[];
|
|
83
|
-
companyRole: CompanyRole[];
|
|
84
81
|
freelancerExperience: FreelancerExperience;
|
|
85
82
|
freelancerEducation: FreelancerEducation;
|
|
86
83
|
freelancerProject: FreelancerProject;
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { MicroserviceOptions } from '@nestjs/microservices';
|
|
2
|
+
import { BaseEntity as BaseEntity$1 } from 'typeorm';
|
|
2
3
|
|
|
3
4
|
declare const AUTHENTICATION_PATTERN: {
|
|
4
5
|
handleValidateToken: string;
|
|
@@ -832,15 +833,6 @@ declare class SystemPreference extends BaseEntity {
|
|
|
832
833
|
value: boolean;
|
|
833
834
|
}
|
|
834
835
|
|
|
835
|
-
declare class CompanyRole extends BaseEntity {
|
|
836
|
-
userId: number;
|
|
837
|
-
user: User;
|
|
838
|
-
name: string;
|
|
839
|
-
slug: string;
|
|
840
|
-
description: string;
|
|
841
|
-
isActive: boolean;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
836
|
declare class FreelancerExperience extends BaseEntity {
|
|
845
837
|
userId: number;
|
|
846
838
|
user: User;
|
|
@@ -949,7 +941,6 @@ declare enum Provider {
|
|
|
949
941
|
declare class User extends BaseEntity {
|
|
950
942
|
uniqueId: string;
|
|
951
943
|
parentId: number;
|
|
952
|
-
companyRoleId: number;
|
|
953
944
|
parent: User;
|
|
954
945
|
children: User[];
|
|
955
946
|
username: string;
|
|
@@ -988,7 +979,6 @@ declare class User extends BaseEntity {
|
|
|
988
979
|
givenRatings: Rating[];
|
|
989
980
|
receivedRatings: Rating[];
|
|
990
981
|
jobApplications: JobApplication[];
|
|
991
|
-
companyRole: CompanyRole[];
|
|
992
982
|
freelancerExperience: FreelancerExperience;
|
|
993
983
|
freelancerEducation: FreelancerEducation;
|
|
994
984
|
freelancerProject: FreelancerProject;
|
|
@@ -1323,6 +1313,7 @@ declare const CMS_PATTERNS: {
|
|
|
1323
1313
|
createCms: string;
|
|
1324
1314
|
updateCms: string;
|
|
1325
1315
|
deleteCms: string;
|
|
1316
|
+
findCmsById: string;
|
|
1326
1317
|
};
|
|
1327
1318
|
|
|
1328
1319
|
declare class CreateCmsDto {
|
|
@@ -1368,6 +1359,29 @@ declare class Question extends BaseEntity {
|
|
|
1368
1359
|
isActive: boolean;
|
|
1369
1360
|
}
|
|
1370
1361
|
|
|
1362
|
+
declare class Permission extends BaseEntity {
|
|
1363
|
+
name: string;
|
|
1364
|
+
slug: string;
|
|
1365
|
+
description: string;
|
|
1366
|
+
isActive: boolean;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
declare class CompanyRolePermission extends BaseEntity$1 {
|
|
1370
|
+
companyRoleId: number;
|
|
1371
|
+
companyRole: CompanyRole;
|
|
1372
|
+
permissionId: number;
|
|
1373
|
+
permission: Permission;
|
|
1374
|
+
assignedBy?: number;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
declare class CompanyRole extends BaseEntity {
|
|
1378
|
+
name: string;
|
|
1379
|
+
slug: string;
|
|
1380
|
+
description: string;
|
|
1381
|
+
isActive: boolean;
|
|
1382
|
+
rolePermissions: CompanyRolePermission[];
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1371
1385
|
declare class JobRoles extends BaseEntity {
|
|
1372
1386
|
slug: string;
|
|
1373
1387
|
name: string;
|
|
@@ -1388,13 +1402,6 @@ declare class Plan extends BaseEntity {
|
|
|
1388
1402
|
features: Feature[];
|
|
1389
1403
|
}
|
|
1390
1404
|
|
|
1391
|
-
declare class Permission extends BaseEntity {
|
|
1392
|
-
name: string;
|
|
1393
|
-
slug: string;
|
|
1394
|
-
description: string;
|
|
1395
|
-
isActive: boolean;
|
|
1396
|
-
}
|
|
1397
|
-
|
|
1398
1405
|
declare class Cms extends BaseEntity {
|
|
1399
1406
|
title: string;
|
|
1400
1407
|
slug: string;
|
|
@@ -1402,4 +1409,4 @@ declare class Cms extends BaseEntity {
|
|
|
1402
1409
|
isActive: boolean;
|
|
1403
1410
|
}
|
|
1404
1411
|
|
|
1405
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, AssessmentStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CaseStudyDto, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyProfile, CompanyRole, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_ADMIN_PATTERNS, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCoreSkill, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkillDto, FreelancerTool, 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, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, QUESTION_PATTERN, Question, QuestionFor, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SenseloafLog, SetPasswordDto, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
|
1412
|
+
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, AssessmentStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CaseStudyDto, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyProfile, CompanyRole, CompanyRolePermission, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_ADMIN_PATTERNS, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCoreSkill, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkillDto, FreelancerTool, 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, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, QUESTION_PATTERN, Question, QuestionFor, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SenseloafLog, SetPasswordDto, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { MicroserviceOptions } from '@nestjs/microservices';
|
|
2
|
+
import { BaseEntity as BaseEntity$1 } from 'typeorm';
|
|
2
3
|
|
|
3
4
|
declare const AUTHENTICATION_PATTERN: {
|
|
4
5
|
handleValidateToken: string;
|
|
@@ -832,15 +833,6 @@ declare class SystemPreference extends BaseEntity {
|
|
|
832
833
|
value: boolean;
|
|
833
834
|
}
|
|
834
835
|
|
|
835
|
-
declare class CompanyRole extends BaseEntity {
|
|
836
|
-
userId: number;
|
|
837
|
-
user: User;
|
|
838
|
-
name: string;
|
|
839
|
-
slug: string;
|
|
840
|
-
description: string;
|
|
841
|
-
isActive: boolean;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
836
|
declare class FreelancerExperience extends BaseEntity {
|
|
845
837
|
userId: number;
|
|
846
838
|
user: User;
|
|
@@ -949,7 +941,6 @@ declare enum Provider {
|
|
|
949
941
|
declare class User extends BaseEntity {
|
|
950
942
|
uniqueId: string;
|
|
951
943
|
parentId: number;
|
|
952
|
-
companyRoleId: number;
|
|
953
944
|
parent: User;
|
|
954
945
|
children: User[];
|
|
955
946
|
username: string;
|
|
@@ -988,7 +979,6 @@ declare class User extends BaseEntity {
|
|
|
988
979
|
givenRatings: Rating[];
|
|
989
980
|
receivedRatings: Rating[];
|
|
990
981
|
jobApplications: JobApplication[];
|
|
991
|
-
companyRole: CompanyRole[];
|
|
992
982
|
freelancerExperience: FreelancerExperience;
|
|
993
983
|
freelancerEducation: FreelancerEducation;
|
|
994
984
|
freelancerProject: FreelancerProject;
|
|
@@ -1323,6 +1313,7 @@ declare const CMS_PATTERNS: {
|
|
|
1323
1313
|
createCms: string;
|
|
1324
1314
|
updateCms: string;
|
|
1325
1315
|
deleteCms: string;
|
|
1316
|
+
findCmsById: string;
|
|
1326
1317
|
};
|
|
1327
1318
|
|
|
1328
1319
|
declare class CreateCmsDto {
|
|
@@ -1368,6 +1359,29 @@ declare class Question extends BaseEntity {
|
|
|
1368
1359
|
isActive: boolean;
|
|
1369
1360
|
}
|
|
1370
1361
|
|
|
1362
|
+
declare class Permission extends BaseEntity {
|
|
1363
|
+
name: string;
|
|
1364
|
+
slug: string;
|
|
1365
|
+
description: string;
|
|
1366
|
+
isActive: boolean;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
declare class CompanyRolePermission extends BaseEntity$1 {
|
|
1370
|
+
companyRoleId: number;
|
|
1371
|
+
companyRole: CompanyRole;
|
|
1372
|
+
permissionId: number;
|
|
1373
|
+
permission: Permission;
|
|
1374
|
+
assignedBy?: number;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
declare class CompanyRole extends BaseEntity {
|
|
1378
|
+
name: string;
|
|
1379
|
+
slug: string;
|
|
1380
|
+
description: string;
|
|
1381
|
+
isActive: boolean;
|
|
1382
|
+
rolePermissions: CompanyRolePermission[];
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1371
1385
|
declare class JobRoles extends BaseEntity {
|
|
1372
1386
|
slug: string;
|
|
1373
1387
|
name: string;
|
|
@@ -1388,13 +1402,6 @@ declare class Plan extends BaseEntity {
|
|
|
1388
1402
|
features: Feature[];
|
|
1389
1403
|
}
|
|
1390
1404
|
|
|
1391
|
-
declare class Permission extends BaseEntity {
|
|
1392
|
-
name: string;
|
|
1393
|
-
slug: string;
|
|
1394
|
-
description: string;
|
|
1395
|
-
isActive: boolean;
|
|
1396
|
-
}
|
|
1397
|
-
|
|
1398
1405
|
declare class Cms extends BaseEntity {
|
|
1399
1406
|
title: string;
|
|
1400
1407
|
slug: string;
|
|
@@ -1402,4 +1409,4 @@ declare class Cms extends BaseEntity {
|
|
|
1402
1409
|
isActive: boolean;
|
|
1403
1410
|
}
|
|
1404
1411
|
|
|
1405
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, AssessmentStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CaseStudyDto, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyProfile, CompanyRole, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_ADMIN_PATTERNS, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCoreSkill, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkillDto, FreelancerTool, 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, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, QUESTION_PATTERN, Question, QuestionFor, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SenseloafLog, SetPasswordDto, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
|
1412
|
+
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, AssessmentStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CaseStudyDto, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyProfile, CompanyRole, CompanyRolePermission, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_ADMIN_PATTERNS, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCoreSkill, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkillDto, FreelancerTool, 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, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, QUESTION_PATTERN, Question, QuestionFor, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SenseloafLog, SetPasswordDto, Skill, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|