@experts_hub/shared 1.0.174 → 1.0.176
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/cms.entity.d.ts +7 -0
- 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 +49 -15
- package/dist/index.d.ts +49 -15
- package/dist/index.js +315 -225
- package/dist/index.mjs +334 -236
- package/dist/modules/cms/dto/create-cms.dto.d.ts +5 -0
- package/dist/modules/cms/dto/index.d.ts +2 -0
- package/dist/modules/cms/dto/update-cms.dto.d.ts +6 -0
- package/dist/modules/cms/index.d.ts +2 -0
- package/dist/modules/cms/pattern/pattern.d.ts +7 -0
- package/dist/modules/index.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
|
@@ -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;
|
|
@@ -1318,6 +1308,27 @@ declare class FreelancerDeclarationDto {
|
|
|
1318
1308
|
declarationAccepted: string;
|
|
1319
1309
|
}
|
|
1320
1310
|
|
|
1311
|
+
declare const CMS_PATTERNS: {
|
|
1312
|
+
fetchCms: string;
|
|
1313
|
+
createCms: string;
|
|
1314
|
+
updateCms: string;
|
|
1315
|
+
deleteCms: string;
|
|
1316
|
+
findCmsById: string;
|
|
1317
|
+
};
|
|
1318
|
+
|
|
1319
|
+
declare class CreateCmsDto {
|
|
1320
|
+
title: string;
|
|
1321
|
+
content: string;
|
|
1322
|
+
isActive: boolean;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
declare class UpdateCmsDto {
|
|
1326
|
+
uuid: string;
|
|
1327
|
+
title: string;
|
|
1328
|
+
content: string;
|
|
1329
|
+
isActive: boolean;
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1321
1332
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
1322
1333
|
|
|
1323
1334
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -1348,6 +1359,29 @@ declare class Question extends BaseEntity {
|
|
|
1348
1359
|
isActive: boolean;
|
|
1349
1360
|
}
|
|
1350
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
|
+
|
|
1351
1385
|
declare class JobRoles extends BaseEntity {
|
|
1352
1386
|
slug: string;
|
|
1353
1387
|
name: string;
|
|
@@ -1368,11 +1402,11 @@ declare class Plan extends BaseEntity {
|
|
|
1368
1402
|
features: Feature[];
|
|
1369
1403
|
}
|
|
1370
1404
|
|
|
1371
|
-
declare class
|
|
1372
|
-
|
|
1405
|
+
declare class Cms extends BaseEntity {
|
|
1406
|
+
title: string;
|
|
1373
1407
|
slug: string;
|
|
1374
|
-
|
|
1408
|
+
content: string;
|
|
1375
1409
|
isActive: boolean;
|
|
1376
1410
|
}
|
|
1377
1411
|
|
|
1378
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, AssessmentStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CaseStudyDto, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CompanyRole, 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, 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, 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;
|
|
@@ -1318,6 +1308,27 @@ declare class FreelancerDeclarationDto {
|
|
|
1318
1308
|
declarationAccepted: string;
|
|
1319
1309
|
}
|
|
1320
1310
|
|
|
1311
|
+
declare const CMS_PATTERNS: {
|
|
1312
|
+
fetchCms: string;
|
|
1313
|
+
createCms: string;
|
|
1314
|
+
updateCms: string;
|
|
1315
|
+
deleteCms: string;
|
|
1316
|
+
findCmsById: string;
|
|
1317
|
+
};
|
|
1318
|
+
|
|
1319
|
+
declare class CreateCmsDto {
|
|
1320
|
+
title: string;
|
|
1321
|
+
content: string;
|
|
1322
|
+
isActive: boolean;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
declare class UpdateCmsDto {
|
|
1326
|
+
uuid: string;
|
|
1327
|
+
title: string;
|
|
1328
|
+
content: string;
|
|
1329
|
+
isActive: boolean;
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1321
1332
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
1322
1333
|
|
|
1323
1334
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -1348,6 +1359,29 @@ declare class Question extends BaseEntity {
|
|
|
1348
1359
|
isActive: boolean;
|
|
1349
1360
|
}
|
|
1350
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
|
+
|
|
1351
1385
|
declare class JobRoles extends BaseEntity {
|
|
1352
1386
|
slug: string;
|
|
1353
1387
|
name: string;
|
|
@@ -1368,11 +1402,11 @@ declare class Plan extends BaseEntity {
|
|
|
1368
1402
|
features: Feature[];
|
|
1369
1403
|
}
|
|
1370
1404
|
|
|
1371
|
-
declare class
|
|
1372
|
-
|
|
1405
|
+
declare class Cms extends BaseEntity {
|
|
1406
|
+
title: string;
|
|
1373
1407
|
slug: string;
|
|
1374
|
-
|
|
1408
|
+
content: string;
|
|
1375
1409
|
isActive: boolean;
|
|
1376
1410
|
}
|
|
1377
1411
|
|
|
1378
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, ApplicationStatusEnum, AssessmentStatusEnum, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CaseStudyDto, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, CompanyProfile, CompanyRole, 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, 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, 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 };
|