@experts_hub/shared 1.0.494 → 1.0.496
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/city.entity.d.ts +2 -0
- package/dist/entities/company-profile.entity.d.ts +11 -0
- package/dist/entities/country.entity.d.ts +2 -0
- package/dist/entities/freelancer-profile.entity.d.ts +2 -0
- package/dist/entities/interview-question.entity.d.ts +6 -0
- package/dist/entities/state.entity.d.ts +2 -0
- package/dist/index.d.mts +76 -50
- package/dist/index.d.ts +76 -50
- package/dist/index.js +311 -216
- package/dist/index.mjs +357 -262
- package/dist/modules/user/client-profile/dto/update-client-profile.dto.d.ts +5 -0
- package/dist/modules/user/freelancer-profile/dto/update-freelancer-profile.dto.d.ts +3 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { BaseEntity } from "./base.entity";
|
|
|
2
2
|
import { Country } from "./country.entity";
|
|
3
3
|
import { State } from "./state.entity";
|
|
4
4
|
import { FreelancerProfile } from "./freelancer-profile.entity";
|
|
5
|
+
import { CompanyProfile } from "./company-profile.entity";
|
|
5
6
|
export declare class City extends BaseEntity {
|
|
6
7
|
countryId: number;
|
|
7
8
|
country: Country;
|
|
@@ -11,4 +12,5 @@ export declare class City extends BaseEntity {
|
|
|
11
12
|
cityName: string;
|
|
12
13
|
isActive: boolean;
|
|
13
14
|
freelancerProfile: FreelancerProfile[];
|
|
15
|
+
companyProfile: CompanyProfile[];
|
|
14
16
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { User } from "./user.entity";
|
|
3
|
+
import { Country } from "./country.entity";
|
|
4
|
+
import { State } from "./state.entity";
|
|
5
|
+
import { City } from "./city.entity";
|
|
3
6
|
export declare enum KindOfHire {
|
|
4
7
|
FULLTIME = "FULLTIME",
|
|
5
8
|
PARTTIME = "PARTTIME",
|
|
@@ -35,7 +38,15 @@ export declare class CompanyProfile extends BaseEntity {
|
|
|
35
38
|
originalDocumentUrl: string;
|
|
36
39
|
serviceAgreementUrl: string;
|
|
37
40
|
serviceAggrementSignedOn: Date;
|
|
41
|
+
countryId: number;
|
|
42
|
+
country: Country;
|
|
43
|
+
stateId: number;
|
|
44
|
+
state: State;
|
|
45
|
+
cityId: number;
|
|
46
|
+
city: City;
|
|
38
47
|
companyAddress: string;
|
|
48
|
+
addressLine: string;
|
|
49
|
+
postalCode: string;
|
|
39
50
|
phoneNumber: string;
|
|
40
51
|
skills: string[];
|
|
41
52
|
requiredFreelancer: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { State } from "./state.entity";
|
|
3
3
|
import { FreelancerProfile } from "./freelancer-profile.entity";
|
|
4
|
+
import { CompanyProfile } from "./company-profile.entity";
|
|
4
5
|
export declare class Country extends BaseEntity {
|
|
5
6
|
countryName: string;
|
|
6
7
|
countryIsoCode: string;
|
|
@@ -9,4 +10,5 @@ export declare class Country extends BaseEntity {
|
|
|
9
10
|
isActive: boolean;
|
|
10
11
|
states: State[];
|
|
11
12
|
freelancerProfile: FreelancerProfile[];
|
|
13
|
+
companyProfile: CompanyProfile[];
|
|
12
14
|
}
|
|
@@ -76,6 +76,8 @@ export declare class FreelancerProfile extends BaseEntity {
|
|
|
76
76
|
designation: string;
|
|
77
77
|
experience: string;
|
|
78
78
|
address: string;
|
|
79
|
+
addressLine: string;
|
|
80
|
+
postalCode: string;
|
|
79
81
|
about: string;
|
|
80
82
|
profileCompletedPercentage: Record<string, number>;
|
|
81
83
|
originalDocumentUrl: string;
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { Interview } from "./interview.entity";
|
|
3
|
+
export declare enum InterviewQuestionType {
|
|
4
|
+
AI = "AI",
|
|
5
|
+
CUSTOM = "CUSTOM"
|
|
6
|
+
}
|
|
3
7
|
export declare class InterviewQuestion extends BaseEntity {
|
|
4
8
|
interviewId: number;
|
|
5
9
|
interview: Interview;
|
|
6
10
|
question: string;
|
|
11
|
+
concepts: string[];
|
|
12
|
+
questionType: InterviewQuestionType;
|
|
7
13
|
isActive: boolean;
|
|
8
14
|
}
|
|
@@ -2,6 +2,7 @@ import { BaseEntity } from "./base.entity";
|
|
|
2
2
|
import { Country } from "./country.entity";
|
|
3
3
|
import { City } from "./city.entity";
|
|
4
4
|
import { FreelancerProfile } from "./freelancer-profile.entity";
|
|
5
|
+
import { CompanyProfile } from "./company-profile.entity";
|
|
5
6
|
export declare class State extends BaseEntity {
|
|
6
7
|
countryId: number;
|
|
7
8
|
country: Country;
|
|
@@ -10,4 +11,5 @@ export declare class State extends BaseEntity {
|
|
|
10
11
|
stateCode: string;
|
|
11
12
|
isActive: boolean;
|
|
12
13
|
freelancerProfile: FreelancerProfile[];
|
|
14
|
+
companyProfile: CompanyProfile[];
|
|
13
15
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -340,7 +340,12 @@ declare const CLIENT_PROFILE_PATTERN: {
|
|
|
340
340
|
declare class UpdateCompanyProfileDto {
|
|
341
341
|
companyName?: string;
|
|
342
342
|
webSite?: string;
|
|
343
|
+
countryId: number;
|
|
344
|
+
stateId: number;
|
|
345
|
+
cityId: number;
|
|
343
346
|
companyAddress: string;
|
|
347
|
+
addressLine: string;
|
|
348
|
+
postalCode: string;
|
|
344
349
|
mobileCode: string;
|
|
345
350
|
phoneNumber?: string;
|
|
346
351
|
email?: string;
|
|
@@ -571,7 +576,9 @@ declare class UpdateFreelancerProfileDto {
|
|
|
571
576
|
natureOfWork: NatureOfWorkDto;
|
|
572
577
|
modeOfWork: ModeOfWorkDto;
|
|
573
578
|
portfolioLink?: string;
|
|
574
|
-
address
|
|
579
|
+
address: string;
|
|
580
|
+
addressLine?: string;
|
|
581
|
+
postalCode: string;
|
|
575
582
|
about?: string;
|
|
576
583
|
linkedinProfileLink?: string;
|
|
577
584
|
kaggleProfileLink?: string;
|
|
@@ -696,6 +703,62 @@ declare class Otp {
|
|
|
696
703
|
user: User;
|
|
697
704
|
}
|
|
698
705
|
|
|
706
|
+
declare enum KindOfHire {
|
|
707
|
+
FULLTIME = "FULLTIME",
|
|
708
|
+
PARTTIME = "PARTTIME",
|
|
709
|
+
BOTH = "BOTH",
|
|
710
|
+
HOURLY = "HOURLY",
|
|
711
|
+
FREELANCE = "FREELANCE",
|
|
712
|
+
FTE = "FTE"
|
|
713
|
+
}
|
|
714
|
+
declare enum ModeOfHire {
|
|
715
|
+
ONSITE = "ONSITE",
|
|
716
|
+
REMOTE = "REMOTE",
|
|
717
|
+
HYBRID = "HYBRID",
|
|
718
|
+
BOTH = "BOTH"
|
|
719
|
+
}
|
|
720
|
+
declare enum FromUsOn {
|
|
721
|
+
LINKEDIN = "LINKEDIN",
|
|
722
|
+
GOOGLE = "GOOGLE",
|
|
723
|
+
REFERRAL = "REFERRAL",
|
|
724
|
+
OTHER = "OTHER"
|
|
725
|
+
}
|
|
726
|
+
declare enum CompanyOnboardingStepEnum {
|
|
727
|
+
SIGN_UP = "SIGN_UP",
|
|
728
|
+
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
729
|
+
}
|
|
730
|
+
declare class CompanyProfile extends BaseEntity {
|
|
731
|
+
userId: number;
|
|
732
|
+
user: User;
|
|
733
|
+
companyName: string;
|
|
734
|
+
bio: string;
|
|
735
|
+
webSite: string;
|
|
736
|
+
aboutCompany: string;
|
|
737
|
+
isServiceAgreementSigned: boolean;
|
|
738
|
+
originalDocumentUrl: string;
|
|
739
|
+
serviceAgreementUrl: string;
|
|
740
|
+
serviceAggrementSignedOn: Date;
|
|
741
|
+
countryId: number;
|
|
742
|
+
country: Country;
|
|
743
|
+
stateId: number;
|
|
744
|
+
state: State;
|
|
745
|
+
cityId: number;
|
|
746
|
+
city: City;
|
|
747
|
+
companyAddress: string;
|
|
748
|
+
addressLine: string;
|
|
749
|
+
postalCode: string;
|
|
750
|
+
phoneNumber: string;
|
|
751
|
+
skills: string[];
|
|
752
|
+
requiredFreelancer: string;
|
|
753
|
+
kindOfHiring: KindOfHire;
|
|
754
|
+
numberOfHours: number;
|
|
755
|
+
modeOfHire: ModeOfHire;
|
|
756
|
+
foundUsOn: FromUsOn;
|
|
757
|
+
foundUsOnDetail: string;
|
|
758
|
+
onboardingStepCompleted: CompanyOnboardingStepEnum;
|
|
759
|
+
signaturePositions: any;
|
|
760
|
+
}
|
|
761
|
+
|
|
699
762
|
declare class City extends BaseEntity {
|
|
700
763
|
countryId: number;
|
|
701
764
|
country: Country;
|
|
@@ -705,6 +768,7 @@ declare class City extends BaseEntity {
|
|
|
705
768
|
cityName: string;
|
|
706
769
|
isActive: boolean;
|
|
707
770
|
freelancerProfile: FreelancerProfile[];
|
|
771
|
+
companyProfile: CompanyProfile[];
|
|
708
772
|
}
|
|
709
773
|
|
|
710
774
|
declare class State extends BaseEntity {
|
|
@@ -715,6 +779,7 @@ declare class State extends BaseEntity {
|
|
|
715
779
|
stateCode: string;
|
|
716
780
|
isActive: boolean;
|
|
717
781
|
freelancerProfile: FreelancerProfile[];
|
|
782
|
+
companyProfile: CompanyProfile[];
|
|
718
783
|
}
|
|
719
784
|
|
|
720
785
|
declare class Country extends BaseEntity {
|
|
@@ -725,6 +790,7 @@ declare class Country extends BaseEntity {
|
|
|
725
790
|
isActive: boolean;
|
|
726
791
|
states: State[];
|
|
727
792
|
freelancerProfile: FreelancerProfile[];
|
|
793
|
+
companyProfile: CompanyProfile[];
|
|
728
794
|
}
|
|
729
795
|
|
|
730
796
|
declare enum NatureOfWork {
|
|
@@ -800,6 +866,8 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
800
866
|
designation: string;
|
|
801
867
|
experience: string;
|
|
802
868
|
address: string;
|
|
869
|
+
addressLine: string;
|
|
870
|
+
postalCode: string;
|
|
803
871
|
about: string;
|
|
804
872
|
profileCompletedPercentage: Record<string, number>;
|
|
805
873
|
originalDocumentUrl: string;
|
|
@@ -811,54 +879,6 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
811
879
|
signaturePositions: any;
|
|
812
880
|
}
|
|
813
881
|
|
|
814
|
-
declare enum KindOfHire {
|
|
815
|
-
FULLTIME = "FULLTIME",
|
|
816
|
-
PARTTIME = "PARTTIME",
|
|
817
|
-
BOTH = "BOTH",
|
|
818
|
-
HOURLY = "HOURLY",
|
|
819
|
-
FREELANCE = "FREELANCE",
|
|
820
|
-
FTE = "FTE"
|
|
821
|
-
}
|
|
822
|
-
declare enum ModeOfHire {
|
|
823
|
-
ONSITE = "ONSITE",
|
|
824
|
-
REMOTE = "REMOTE",
|
|
825
|
-
HYBRID = "HYBRID",
|
|
826
|
-
BOTH = "BOTH"
|
|
827
|
-
}
|
|
828
|
-
declare enum FromUsOn {
|
|
829
|
-
LINKEDIN = "LINKEDIN",
|
|
830
|
-
GOOGLE = "GOOGLE",
|
|
831
|
-
REFERRAL = "REFERRAL",
|
|
832
|
-
OTHER = "OTHER"
|
|
833
|
-
}
|
|
834
|
-
declare enum CompanyOnboardingStepEnum {
|
|
835
|
-
SIGN_UP = "SIGN_UP",
|
|
836
|
-
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
837
|
-
}
|
|
838
|
-
declare class CompanyProfile extends BaseEntity {
|
|
839
|
-
userId: number;
|
|
840
|
-
user: User;
|
|
841
|
-
companyName: string;
|
|
842
|
-
bio: string;
|
|
843
|
-
webSite: string;
|
|
844
|
-
aboutCompany: string;
|
|
845
|
-
isServiceAgreementSigned: boolean;
|
|
846
|
-
originalDocumentUrl: string;
|
|
847
|
-
serviceAgreementUrl: string;
|
|
848
|
-
serviceAggrementSignedOn: Date;
|
|
849
|
-
companyAddress: string;
|
|
850
|
-
phoneNumber: string;
|
|
851
|
-
skills: string[];
|
|
852
|
-
requiredFreelancer: string;
|
|
853
|
-
kindOfHiring: KindOfHire;
|
|
854
|
-
numberOfHours: number;
|
|
855
|
-
modeOfHire: ModeOfHire;
|
|
856
|
-
foundUsOn: FromUsOn;
|
|
857
|
-
foundUsOnDetail: string;
|
|
858
|
-
onboardingStepCompleted: CompanyOnboardingStepEnum;
|
|
859
|
-
signaturePositions: any;
|
|
860
|
-
}
|
|
861
|
-
|
|
862
882
|
declare enum JobSkillCategoryEnum {
|
|
863
883
|
GOOD_TO_HAVE = 0,
|
|
864
884
|
MUST_HAVE = 1
|
|
@@ -910,10 +930,16 @@ declare class InterviewSkill extends BaseEntity {
|
|
|
910
930
|
isActive: boolean;
|
|
911
931
|
}
|
|
912
932
|
|
|
933
|
+
declare enum InterviewQuestionType {
|
|
934
|
+
AI = "AI",
|
|
935
|
+
CUSTOM = "CUSTOM"
|
|
936
|
+
}
|
|
913
937
|
declare class InterviewQuestion extends BaseEntity {
|
|
914
938
|
interviewId: number;
|
|
915
939
|
interview: Interview;
|
|
916
940
|
question: string;
|
|
941
|
+
concepts: string[];
|
|
942
|
+
questionType: InterviewQuestionType;
|
|
917
943
|
isActive: boolean;
|
|
918
944
|
}
|
|
919
945
|
|
|
@@ -3003,4 +3029,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3003
3029
|
isActive: boolean;
|
|
3004
3030
|
}
|
|
3005
3031
|
|
|
3006
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, 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, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, 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, INTERVIEW_INVITE_PATTERN, INVOICE_PATTERN, 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, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, 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, RecommendationWeightageConfig, RefreshDto, RefreshToken, ResetPasswordDto, ResetPasswordTokenValidationDto, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZoomMeetingLog };
|
|
3032
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, 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, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, 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, INTERVIEW_INVITE_PATTERN, INVOICE_PATTERN, 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, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, 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, RecommendationWeightageConfig, RefreshDto, RefreshToken, ResetPasswordDto, ResetPasswordTokenValidationDto, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZoomMeetingLog };
|
package/dist/index.d.ts
CHANGED
|
@@ -340,7 +340,12 @@ declare const CLIENT_PROFILE_PATTERN: {
|
|
|
340
340
|
declare class UpdateCompanyProfileDto {
|
|
341
341
|
companyName?: string;
|
|
342
342
|
webSite?: string;
|
|
343
|
+
countryId: number;
|
|
344
|
+
stateId: number;
|
|
345
|
+
cityId: number;
|
|
343
346
|
companyAddress: string;
|
|
347
|
+
addressLine: string;
|
|
348
|
+
postalCode: string;
|
|
344
349
|
mobileCode: string;
|
|
345
350
|
phoneNumber?: string;
|
|
346
351
|
email?: string;
|
|
@@ -571,7 +576,9 @@ declare class UpdateFreelancerProfileDto {
|
|
|
571
576
|
natureOfWork: NatureOfWorkDto;
|
|
572
577
|
modeOfWork: ModeOfWorkDto;
|
|
573
578
|
portfolioLink?: string;
|
|
574
|
-
address
|
|
579
|
+
address: string;
|
|
580
|
+
addressLine?: string;
|
|
581
|
+
postalCode: string;
|
|
575
582
|
about?: string;
|
|
576
583
|
linkedinProfileLink?: string;
|
|
577
584
|
kaggleProfileLink?: string;
|
|
@@ -696,6 +703,62 @@ declare class Otp {
|
|
|
696
703
|
user: User;
|
|
697
704
|
}
|
|
698
705
|
|
|
706
|
+
declare enum KindOfHire {
|
|
707
|
+
FULLTIME = "FULLTIME",
|
|
708
|
+
PARTTIME = "PARTTIME",
|
|
709
|
+
BOTH = "BOTH",
|
|
710
|
+
HOURLY = "HOURLY",
|
|
711
|
+
FREELANCE = "FREELANCE",
|
|
712
|
+
FTE = "FTE"
|
|
713
|
+
}
|
|
714
|
+
declare enum ModeOfHire {
|
|
715
|
+
ONSITE = "ONSITE",
|
|
716
|
+
REMOTE = "REMOTE",
|
|
717
|
+
HYBRID = "HYBRID",
|
|
718
|
+
BOTH = "BOTH"
|
|
719
|
+
}
|
|
720
|
+
declare enum FromUsOn {
|
|
721
|
+
LINKEDIN = "LINKEDIN",
|
|
722
|
+
GOOGLE = "GOOGLE",
|
|
723
|
+
REFERRAL = "REFERRAL",
|
|
724
|
+
OTHER = "OTHER"
|
|
725
|
+
}
|
|
726
|
+
declare enum CompanyOnboardingStepEnum {
|
|
727
|
+
SIGN_UP = "SIGN_UP",
|
|
728
|
+
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
729
|
+
}
|
|
730
|
+
declare class CompanyProfile extends BaseEntity {
|
|
731
|
+
userId: number;
|
|
732
|
+
user: User;
|
|
733
|
+
companyName: string;
|
|
734
|
+
bio: string;
|
|
735
|
+
webSite: string;
|
|
736
|
+
aboutCompany: string;
|
|
737
|
+
isServiceAgreementSigned: boolean;
|
|
738
|
+
originalDocumentUrl: string;
|
|
739
|
+
serviceAgreementUrl: string;
|
|
740
|
+
serviceAggrementSignedOn: Date;
|
|
741
|
+
countryId: number;
|
|
742
|
+
country: Country;
|
|
743
|
+
stateId: number;
|
|
744
|
+
state: State;
|
|
745
|
+
cityId: number;
|
|
746
|
+
city: City;
|
|
747
|
+
companyAddress: string;
|
|
748
|
+
addressLine: string;
|
|
749
|
+
postalCode: string;
|
|
750
|
+
phoneNumber: string;
|
|
751
|
+
skills: string[];
|
|
752
|
+
requiredFreelancer: string;
|
|
753
|
+
kindOfHiring: KindOfHire;
|
|
754
|
+
numberOfHours: number;
|
|
755
|
+
modeOfHire: ModeOfHire;
|
|
756
|
+
foundUsOn: FromUsOn;
|
|
757
|
+
foundUsOnDetail: string;
|
|
758
|
+
onboardingStepCompleted: CompanyOnboardingStepEnum;
|
|
759
|
+
signaturePositions: any;
|
|
760
|
+
}
|
|
761
|
+
|
|
699
762
|
declare class City extends BaseEntity {
|
|
700
763
|
countryId: number;
|
|
701
764
|
country: Country;
|
|
@@ -705,6 +768,7 @@ declare class City extends BaseEntity {
|
|
|
705
768
|
cityName: string;
|
|
706
769
|
isActive: boolean;
|
|
707
770
|
freelancerProfile: FreelancerProfile[];
|
|
771
|
+
companyProfile: CompanyProfile[];
|
|
708
772
|
}
|
|
709
773
|
|
|
710
774
|
declare class State extends BaseEntity {
|
|
@@ -715,6 +779,7 @@ declare class State extends BaseEntity {
|
|
|
715
779
|
stateCode: string;
|
|
716
780
|
isActive: boolean;
|
|
717
781
|
freelancerProfile: FreelancerProfile[];
|
|
782
|
+
companyProfile: CompanyProfile[];
|
|
718
783
|
}
|
|
719
784
|
|
|
720
785
|
declare class Country extends BaseEntity {
|
|
@@ -725,6 +790,7 @@ declare class Country extends BaseEntity {
|
|
|
725
790
|
isActive: boolean;
|
|
726
791
|
states: State[];
|
|
727
792
|
freelancerProfile: FreelancerProfile[];
|
|
793
|
+
companyProfile: CompanyProfile[];
|
|
728
794
|
}
|
|
729
795
|
|
|
730
796
|
declare enum NatureOfWork {
|
|
@@ -800,6 +866,8 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
800
866
|
designation: string;
|
|
801
867
|
experience: string;
|
|
802
868
|
address: string;
|
|
869
|
+
addressLine: string;
|
|
870
|
+
postalCode: string;
|
|
803
871
|
about: string;
|
|
804
872
|
profileCompletedPercentage: Record<string, number>;
|
|
805
873
|
originalDocumentUrl: string;
|
|
@@ -811,54 +879,6 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
811
879
|
signaturePositions: any;
|
|
812
880
|
}
|
|
813
881
|
|
|
814
|
-
declare enum KindOfHire {
|
|
815
|
-
FULLTIME = "FULLTIME",
|
|
816
|
-
PARTTIME = "PARTTIME",
|
|
817
|
-
BOTH = "BOTH",
|
|
818
|
-
HOURLY = "HOURLY",
|
|
819
|
-
FREELANCE = "FREELANCE",
|
|
820
|
-
FTE = "FTE"
|
|
821
|
-
}
|
|
822
|
-
declare enum ModeOfHire {
|
|
823
|
-
ONSITE = "ONSITE",
|
|
824
|
-
REMOTE = "REMOTE",
|
|
825
|
-
HYBRID = "HYBRID",
|
|
826
|
-
BOTH = "BOTH"
|
|
827
|
-
}
|
|
828
|
-
declare enum FromUsOn {
|
|
829
|
-
LINKEDIN = "LINKEDIN",
|
|
830
|
-
GOOGLE = "GOOGLE",
|
|
831
|
-
REFERRAL = "REFERRAL",
|
|
832
|
-
OTHER = "OTHER"
|
|
833
|
-
}
|
|
834
|
-
declare enum CompanyOnboardingStepEnum {
|
|
835
|
-
SIGN_UP = "SIGN_UP",
|
|
836
|
-
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
837
|
-
}
|
|
838
|
-
declare class CompanyProfile extends BaseEntity {
|
|
839
|
-
userId: number;
|
|
840
|
-
user: User;
|
|
841
|
-
companyName: string;
|
|
842
|
-
bio: string;
|
|
843
|
-
webSite: string;
|
|
844
|
-
aboutCompany: string;
|
|
845
|
-
isServiceAgreementSigned: boolean;
|
|
846
|
-
originalDocumentUrl: string;
|
|
847
|
-
serviceAgreementUrl: string;
|
|
848
|
-
serviceAggrementSignedOn: Date;
|
|
849
|
-
companyAddress: string;
|
|
850
|
-
phoneNumber: string;
|
|
851
|
-
skills: string[];
|
|
852
|
-
requiredFreelancer: string;
|
|
853
|
-
kindOfHiring: KindOfHire;
|
|
854
|
-
numberOfHours: number;
|
|
855
|
-
modeOfHire: ModeOfHire;
|
|
856
|
-
foundUsOn: FromUsOn;
|
|
857
|
-
foundUsOnDetail: string;
|
|
858
|
-
onboardingStepCompleted: CompanyOnboardingStepEnum;
|
|
859
|
-
signaturePositions: any;
|
|
860
|
-
}
|
|
861
|
-
|
|
862
882
|
declare enum JobSkillCategoryEnum {
|
|
863
883
|
GOOD_TO_HAVE = 0,
|
|
864
884
|
MUST_HAVE = 1
|
|
@@ -910,10 +930,16 @@ declare class InterviewSkill extends BaseEntity {
|
|
|
910
930
|
isActive: boolean;
|
|
911
931
|
}
|
|
912
932
|
|
|
933
|
+
declare enum InterviewQuestionType {
|
|
934
|
+
AI = "AI",
|
|
935
|
+
CUSTOM = "CUSTOM"
|
|
936
|
+
}
|
|
913
937
|
declare class InterviewQuestion extends BaseEntity {
|
|
914
938
|
interviewId: number;
|
|
915
939
|
interview: Interview;
|
|
916
940
|
question: string;
|
|
941
|
+
concepts: string[];
|
|
942
|
+
questionType: InterviewQuestionType;
|
|
917
943
|
isActive: boolean;
|
|
918
944
|
}
|
|
919
945
|
|
|
@@ -3003,4 +3029,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3003
3029
|
isActive: boolean;
|
|
3004
3030
|
}
|
|
3005
3031
|
|
|
3006
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, 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, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, 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, INTERVIEW_INVITE_PATTERN, INVOICE_PATTERN, 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, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, 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, RecommendationWeightageConfig, RefreshDto, RefreshToken, ResetPasswordDto, ResetPasswordTokenValidationDto, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZoomMeetingLog };
|
|
3032
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, 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, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, 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, INTERVIEW_INVITE_PATTERN, INVOICE_PATTERN, 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, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, 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, RecommendationWeightageConfig, RefreshDto, RefreshToken, ResetPasswordDto, ResetPasswordTokenValidationDto, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZoomMeetingLog };
|