@experts_hub/shared 1.0.734 → 1.0.737
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/ekyc-verification-log.entity.d.ts +6 -2
- package/dist/entities/ekyc-verification-session.entity.d.ts +9 -1
- package/dist/entities/freelancer-profile.entity.d.ts +1 -0
- package/dist/entities/user.entity.d.ts +4 -0
- package/dist/index.d.mts +73 -28
- package/dist/index.d.ts +73 -28
- package/dist/index.js +585 -443
- package/dist/index.mjs +430 -280
- package/dist/modules/didit/dto/create-ekyc-session.dto.d.ts +21 -1
- package/dist/modules/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { User } from './user.entity';
|
|
1
2
|
export declare enum EkycVerificationLogStatusEnum {
|
|
2
3
|
NOT_STARTED = "NOT_STARTED",
|
|
3
4
|
NOT_FINISHED = "NOT_FINISHED",
|
|
@@ -11,15 +12,18 @@ export declare enum EkycVerificationLogStatusEnum {
|
|
|
11
12
|
RESUBMITTED = "RESUBMITTED",
|
|
12
13
|
AWAITING_USER = "AWAITING_USER"
|
|
13
14
|
}
|
|
14
|
-
export declare class
|
|
15
|
+
export declare class EkycVerificationLog {
|
|
15
16
|
id: number;
|
|
17
|
+
userId: number;
|
|
18
|
+
user: User;
|
|
16
19
|
sessionId: string;
|
|
17
20
|
workflowId: string;
|
|
18
21
|
callBackUrl: string;
|
|
19
22
|
status: EkycVerificationLogStatusEnum;
|
|
20
23
|
signatureMethod?: string;
|
|
21
24
|
isSignatureValid: boolean;
|
|
22
|
-
rawPayload
|
|
25
|
+
rawPayload?: any;
|
|
23
26
|
headers?: Record<string, any>;
|
|
24
27
|
errorMessage?: string;
|
|
28
|
+
createdAt: Date;
|
|
25
29
|
}
|
|
@@ -17,7 +17,15 @@ export declare class EkycVerificationSession extends BaseEntity {
|
|
|
17
17
|
userId: number;
|
|
18
18
|
user: User;
|
|
19
19
|
sessionId: string;
|
|
20
|
-
|
|
20
|
+
sessionNumber: number;
|
|
21
21
|
token: string;
|
|
22
|
+
url: string;
|
|
23
|
+
vendorData: string;
|
|
24
|
+
metaData: any;
|
|
25
|
+
decisionData: any;
|
|
26
|
+
status: EkycVerificationSessionStatusEnum;
|
|
27
|
+
callBackUrl: string;
|
|
28
|
+
workflowId: string;
|
|
29
|
+
workflowVersion: string;
|
|
22
30
|
expiresAt: Date;
|
|
23
31
|
}
|
|
@@ -49,6 +49,7 @@ import { TaskQuery } from "./task-query.entity";
|
|
|
49
49
|
import { TaskQueryMessage } from "./task-query-message.entity";
|
|
50
50
|
import { UserSubscription } from "./user-subscription.entity";
|
|
51
51
|
import { EkycVerificationSession } from "./ekyc-verification-session.entity";
|
|
52
|
+
import { EkycVerificationLog } from "./ekyc-verification-log.entity";
|
|
52
53
|
import { WalletTransaction } from "./wallet-transaction.entity";
|
|
53
54
|
export declare enum AccountType {
|
|
54
55
|
SUPER_ADMIN = "SUPER_ADMIN",
|
|
@@ -92,6 +93,8 @@ export declare class User extends BaseEntity {
|
|
|
92
93
|
isMobileVerified: boolean;
|
|
93
94
|
isSocial: boolean;
|
|
94
95
|
isReferralUser: boolean;
|
|
96
|
+
isVerified: boolean;
|
|
97
|
+
verifiedAt: Date | null;
|
|
95
98
|
lastLoginAt: Date;
|
|
96
99
|
lastLoginIp: string;
|
|
97
100
|
resetToken: string | null;
|
|
@@ -172,5 +175,6 @@ export declare class User extends BaseEntity {
|
|
|
172
175
|
inAppNotifications: InAppNotification[];
|
|
173
176
|
userSubscriptions: UserSubscription[];
|
|
174
177
|
ekycVerificationSessions: EkycVerificationSession[];
|
|
178
|
+
ekycVerificationLogs: EkycVerificationLog[];
|
|
175
179
|
sentTransactions: WalletTransaction[];
|
|
176
180
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -596,6 +596,7 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
596
596
|
onboardingStepCompleted: OnboardingStepEnum;
|
|
597
597
|
designation: string;
|
|
598
598
|
experience: string;
|
|
599
|
+
migratedExperience: string;
|
|
599
600
|
address: string;
|
|
600
601
|
addressLine: string;
|
|
601
602
|
postalCode: string;
|
|
@@ -2060,11 +2061,48 @@ declare class EkycVerificationSession extends BaseEntity {
|
|
|
2060
2061
|
userId: number;
|
|
2061
2062
|
user: User;
|
|
2062
2063
|
sessionId: string;
|
|
2063
|
-
|
|
2064
|
+
sessionNumber: number;
|
|
2064
2065
|
token: string;
|
|
2066
|
+
url: string;
|
|
2067
|
+
vendorData: string;
|
|
2068
|
+
metaData: any;
|
|
2069
|
+
decisionData: any;
|
|
2070
|
+
status: EkycVerificationSessionStatusEnum;
|
|
2071
|
+
callBackUrl: string;
|
|
2072
|
+
workflowId: string;
|
|
2073
|
+
workflowVersion: string;
|
|
2065
2074
|
expiresAt: Date;
|
|
2066
2075
|
}
|
|
2067
2076
|
|
|
2077
|
+
declare enum EkycVerificationLogStatusEnum {
|
|
2078
|
+
NOT_STARTED = "NOT_STARTED",
|
|
2079
|
+
NOT_FINISHED = "NOT_FINISHED",
|
|
2080
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
2081
|
+
APPROVED = "APPROVED",
|
|
2082
|
+
DECLINED = "DECLINED",
|
|
2083
|
+
IN_REVIEW = "IN_REVIEW",
|
|
2084
|
+
EXPIRED = "EXPIRED",
|
|
2085
|
+
KYC_EXPIRED = "KYC_EXPIRED",
|
|
2086
|
+
ABANDONED = "ABANDONED",
|
|
2087
|
+
RESUBMITTED = "RESUBMITTED",
|
|
2088
|
+
AWAITING_USER = "AWAITING_USER"
|
|
2089
|
+
}
|
|
2090
|
+
declare class EkycVerificationLog {
|
|
2091
|
+
id: number;
|
|
2092
|
+
userId: number;
|
|
2093
|
+
user: User;
|
|
2094
|
+
sessionId: string;
|
|
2095
|
+
workflowId: string;
|
|
2096
|
+
callBackUrl: string;
|
|
2097
|
+
status: EkycVerificationLogStatusEnum;
|
|
2098
|
+
signatureMethod?: string;
|
|
2099
|
+
isSignatureValid: boolean;
|
|
2100
|
+
rawPayload?: any;
|
|
2101
|
+
headers?: Record<string, any>;
|
|
2102
|
+
errorMessage?: string;
|
|
2103
|
+
createdAt: Date;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2068
2106
|
declare enum AccountType$1 {
|
|
2069
2107
|
SUPER_ADMIN = "SUPER_ADMIN",
|
|
2070
2108
|
ADMIN = "ADMIN",
|
|
@@ -2107,6 +2145,8 @@ declare class User extends BaseEntity {
|
|
|
2107
2145
|
isMobileVerified: boolean;
|
|
2108
2146
|
isSocial: boolean;
|
|
2109
2147
|
isReferralUser: boolean;
|
|
2148
|
+
isVerified: boolean;
|
|
2149
|
+
verifiedAt: Date | null;
|
|
2110
2150
|
lastLoginAt: Date;
|
|
2111
2151
|
lastLoginIp: string;
|
|
2112
2152
|
resetToken: string | null;
|
|
@@ -2187,6 +2227,7 @@ declare class User extends BaseEntity {
|
|
|
2187
2227
|
inAppNotifications: InAppNotification[];
|
|
2188
2228
|
userSubscriptions: UserSubscription[];
|
|
2189
2229
|
ekycVerificationSessions: EkycVerificationSession[];
|
|
2230
|
+
ekycVerificationLogs: EkycVerificationLog[];
|
|
2190
2231
|
sentTransactions: WalletTransaction[];
|
|
2191
2232
|
}
|
|
2192
2233
|
|
|
@@ -4992,6 +5033,36 @@ declare class AddVendorApiConfigurationDto {
|
|
|
4992
5033
|
vendorDetails: VendorDetailDto[];
|
|
4993
5034
|
}
|
|
4994
5035
|
|
|
5036
|
+
declare const DIDIT_PATTERN: {
|
|
5037
|
+
handleEkycCreateSession: string;
|
|
5038
|
+
handleEkycWebhook: string;
|
|
5039
|
+
};
|
|
5040
|
+
|
|
5041
|
+
declare class ContactDetailsDto {
|
|
5042
|
+
email?: string;
|
|
5043
|
+
email_lang?: string;
|
|
5044
|
+
send_notification_emails?: boolean;
|
|
5045
|
+
phone?: string;
|
|
5046
|
+
}
|
|
5047
|
+
declare class ExpectedDetailsDto {
|
|
5048
|
+
first_name?: string;
|
|
5049
|
+
last_name?: string;
|
|
5050
|
+
date_of_birth?: string;
|
|
5051
|
+
expected_document_types?: string[];
|
|
5052
|
+
}
|
|
5053
|
+
declare class MetadataDto {
|
|
5054
|
+
plan?: string;
|
|
5055
|
+
signup_source?: string;
|
|
5056
|
+
}
|
|
5057
|
+
declare class CreateEkycSessionDto {
|
|
5058
|
+
workflowId: string;
|
|
5059
|
+
callback: string;
|
|
5060
|
+
vendor_data?: string;
|
|
5061
|
+
metadata?: MetadataDto;
|
|
5062
|
+
contact_details?: ContactDetailsDto;
|
|
5063
|
+
expected_details?: ExpectedDetailsDto;
|
|
5064
|
+
}
|
|
5065
|
+
|
|
4995
5066
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
4996
5067
|
|
|
4997
5068
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -5312,30 +5383,4 @@ declare class VendorApiConfiguration extends BaseEntity {
|
|
|
5312
5383
|
isActive: boolean;
|
|
5313
5384
|
}
|
|
5314
5385
|
|
|
5315
|
-
declare enum EkycVerificationLogStatusEnum {
|
|
5316
|
-
NOT_STARTED = "NOT_STARTED",
|
|
5317
|
-
NOT_FINISHED = "NOT_FINISHED",
|
|
5318
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
5319
|
-
APPROVED = "APPROVED",
|
|
5320
|
-
DECLINED = "DECLINED",
|
|
5321
|
-
IN_REVIEW = "IN_REVIEW",
|
|
5322
|
-
EXPIRED = "EXPIRED",
|
|
5323
|
-
KYC_EXPIRED = "KYC_EXPIRED",
|
|
5324
|
-
ABANDONED = "ABANDONED",
|
|
5325
|
-
RESUBMITTED = "RESUBMITTED",
|
|
5326
|
-
AWAITING_USER = "AWAITING_USER"
|
|
5327
|
-
}
|
|
5328
|
-
declare class EkycVerifcationLog {
|
|
5329
|
-
id: number;
|
|
5330
|
-
sessionId: string;
|
|
5331
|
-
workflowId: string;
|
|
5332
|
-
callBackUrl: string;
|
|
5333
|
-
status: EkycVerificationLogStatusEnum;
|
|
5334
|
-
signatureMethod?: string;
|
|
5335
|
-
isSignatureValid: boolean;
|
|
5336
|
-
rawPayload: string;
|
|
5337
|
-
headers?: Record<string, any>;
|
|
5338
|
-
errorMessage?: string;
|
|
5339
|
-
}
|
|
5340
|
-
|
|
5341
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType$1 as AccountType, AddClientRemarkDto, AddGlobalSettingDto, AddTaskLogTimeDto, AddTaskQueryReplyDto, AddTopupEscrowAmountDto, AddVendorApiConfigurationDto, AdminCreateJobInformationDto, AdminExportClientV2OptimisedDto, AdminExportFreelancerV2OptimisedDto, AdminFreelancerCreateAccountDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AlertBuilder, AlertCategory, type AlertKeyComponents, AlertSeverity, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, ArchiveSubmissionDto, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, BillingCycleEnum, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMember, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractSummary, ContractSummaryPreferredEngagementTypeEnum, ContractSummaryStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInAppNotificationDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateJobAsIsDto, CreateJobViaAIDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CreateTaskDto, CreateTaskQueryDto, CreateUserSigningDto, CustomQuestionItemDto, DISPUTE_PATTERN, DOCUSEAL_PATTERN, DebitCommissionFteHiringDto, type DiscordAlertOptions, DiscordAlertService, type DiscordEmbed, type DiscordEmbedField, type DiscordEmbedFooter, DiscordTransport, type DiscordTransportOptions, type DiscordWebhookConfig, type DiscordWebhookPayload, Dispute, DisputeStatusEnum, DocuSeal, DocuSealMessageDto, DocuSealSubmitterDto, DocuSealTypeEnum, DocumentType, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EkycVerifcationLog, EkycVerificationLogStatusEnum, EkycVerificationSession, EkycVerificationSessionStatusEnum, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GLOBAL_SETTING_PATTERN, GenerateContractDto, GetSubmissionDto, GetSubmitterDto, GetTemplateDto, GlobalSetting, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, 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 IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, IN_APP_NOTIFICATION_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, InAppNotification, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum$1 as JobLocationEnum, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginUsingUuidDTO, LoginViaOtpDto, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, MarkTaskAsCompletedDto, MarkTaskQueryMessagesReadDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PlanFeature, PlanPricing, PlanPricingBillingCycleEnum, PlanTypeEnum, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, REFERRAL_PATTERN, RESUME_PARSER_PATTERN, type RateLimitState, RateLimiter, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectContractDto, RejectF2FInterviewRescheduleRequestDto, RemoveGlobalSettingDto, RequestPasswordChangeOtpForClientDto, RequestPasswordChangeOtpForFreelancerDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResetUserPasswordByAdminDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendInterviewInviteDto, SendLoginOtpDto, SendNdaContractToFreelancerDto, SendOtpDto, SendReferralInviteDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SkipServiceAgreementFlowDto, SocialAuthDto, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SubscriptionFeature, SystemPreference, SystemPreferenceDto, TASK_PATTERN, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Task, TaskChecklistItem, TaskDeliverable, TaskDeliverableTypeEnum, TaskLogTime, TaskPriorityEnum, TaskQuery, TaskQueryCategoryEnum, TaskQueryMessage, TaskQueryMessageUserTypeEnum, TaskQueryStatusEnum, TaskQueryUserTypeEnum, TaskResource, TaskResourceTypeEnum, TaskStatusEnum, TaskSubtask, TaskSubtaskStatusEnum, TaskUuidParamDto, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, UpdateAdminClientAccountStatusDto, UpdateAdminClientJobPostingRestrictionDto, UpdateAdminFreelancerAccountStatusDto, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateCmsDto, UpdateCmsStatusDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateEstimateTimeDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInterviewTypeInformationDto, UpdateInvoiceStatusDto, UpdateIsReadDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, UpdateTaskDto, User, UserRMQAdapter, UserSubscription, UserSubscriptionPlan, UserSubscriptionPlanFeature, UserSubscriptionPlanPricing, UserSubscriptionPlanPricingBillingCycleEnum, UserSubscriptionPlanTypeEnum, UserSubscriptionStatusEnum, UserSubscriptionTransaction, UserSubscriptionTransactionStatusEnum, UserSubscriptionTransactionTypeEnum, UserTCPAdapter, VENDOR_API_CONFIGURATION_PATTERN, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VendorApiConfiguration, VendorDetailDto, VerifyGuestOtpDto, VerifyOnboardingTokenDto, VerifyOtpDto, VerifyPasswordChangeOtpForClientDto, VerifyPasswordChangeOtpForFreelancerDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, createDiscordTransport, typeOfExperienceEnum };
|
|
5386
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType$1 as AccountType, AddClientRemarkDto, AddGlobalSettingDto, AddTaskLogTimeDto, AddTaskQueryReplyDto, AddTopupEscrowAmountDto, AddVendorApiConfigurationDto, AdminCreateJobInformationDto, AdminExportClientV2OptimisedDto, AdminExportFreelancerV2OptimisedDto, AdminFreelancerCreateAccountDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AlertBuilder, AlertCategory, type AlertKeyComponents, AlertSeverity, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, ArchiveSubmissionDto, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, BillingCycleEnum, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMember, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, ContactDetailsDto, Contract, ContractRMQAdapter, ContractStatusEnum, ContractSummary, ContractSummaryPreferredEngagementTypeEnum, ContractSummaryStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateEkycSessionDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInAppNotificationDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateJobAsIsDto, CreateJobViaAIDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CreateTaskDto, CreateTaskQueryDto, CreateUserSigningDto, CustomQuestionItemDto, DIDIT_PATTERN, DISPUTE_PATTERN, DOCUSEAL_PATTERN, DebitCommissionFteHiringDto, type DiscordAlertOptions, DiscordAlertService, type DiscordEmbed, type DiscordEmbedField, type DiscordEmbedFooter, DiscordTransport, type DiscordTransportOptions, type DiscordWebhookConfig, type DiscordWebhookPayload, Dispute, DisputeStatusEnum, DocuSeal, DocuSealMessageDto, DocuSealSubmitterDto, DocuSealTypeEnum, DocumentType, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EkycVerificationLog, EkycVerificationLogStatusEnum, EkycVerificationSession, EkycVerificationSessionStatusEnum, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, ExpectedDetailsDto, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GLOBAL_SETTING_PATTERN, GenerateContractDto, GetSubmissionDto, GetSubmitterDto, GetTemplateDto, GlobalSetting, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, 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 IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, IN_APP_NOTIFICATION_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, InAppNotification, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum$1 as JobLocationEnum, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginUsingUuidDTO, LoginViaOtpDto, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, MarkTaskAsCompletedDto, MarkTaskQueryMessagesReadDto, McqStatusEnum, MetadataDto, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PlanFeature, PlanPricing, PlanPricingBillingCycleEnum, PlanTypeEnum, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, REFERRAL_PATTERN, RESUME_PARSER_PATTERN, type RateLimitState, RateLimiter, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectContractDto, RejectF2FInterviewRescheduleRequestDto, RemoveGlobalSettingDto, RequestPasswordChangeOtpForClientDto, RequestPasswordChangeOtpForFreelancerDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResetUserPasswordByAdminDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendInterviewInviteDto, SendLoginOtpDto, SendNdaContractToFreelancerDto, SendOtpDto, SendReferralInviteDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SkipServiceAgreementFlowDto, SocialAuthDto, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SubscriptionFeature, SystemPreference, SystemPreferenceDto, TASK_PATTERN, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Task, TaskChecklistItem, TaskDeliverable, TaskDeliverableTypeEnum, TaskLogTime, TaskPriorityEnum, TaskQuery, TaskQueryCategoryEnum, TaskQueryMessage, TaskQueryMessageUserTypeEnum, TaskQueryStatusEnum, TaskQueryUserTypeEnum, TaskResource, TaskResourceTypeEnum, TaskStatusEnum, TaskSubtask, TaskSubtaskStatusEnum, TaskUuidParamDto, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, UpdateAdminClientAccountStatusDto, UpdateAdminClientJobPostingRestrictionDto, UpdateAdminFreelancerAccountStatusDto, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateCmsDto, UpdateCmsStatusDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateEstimateTimeDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInterviewTypeInformationDto, UpdateInvoiceStatusDto, UpdateIsReadDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, UpdateTaskDto, User, UserRMQAdapter, UserSubscription, UserSubscriptionPlan, UserSubscriptionPlanFeature, UserSubscriptionPlanPricing, UserSubscriptionPlanPricingBillingCycleEnum, UserSubscriptionPlanTypeEnum, UserSubscriptionStatusEnum, UserSubscriptionTransaction, UserSubscriptionTransactionStatusEnum, UserSubscriptionTransactionTypeEnum, UserTCPAdapter, VENDOR_API_CONFIGURATION_PATTERN, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VendorApiConfiguration, VendorDetailDto, VerifyGuestOtpDto, VerifyOnboardingTokenDto, VerifyOtpDto, VerifyPasswordChangeOtpForClientDto, VerifyPasswordChangeOtpForFreelancerDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, createDiscordTransport, typeOfExperienceEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -596,6 +596,7 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
596
596
|
onboardingStepCompleted: OnboardingStepEnum;
|
|
597
597
|
designation: string;
|
|
598
598
|
experience: string;
|
|
599
|
+
migratedExperience: string;
|
|
599
600
|
address: string;
|
|
600
601
|
addressLine: string;
|
|
601
602
|
postalCode: string;
|
|
@@ -2060,11 +2061,48 @@ declare class EkycVerificationSession extends BaseEntity {
|
|
|
2060
2061
|
userId: number;
|
|
2061
2062
|
user: User;
|
|
2062
2063
|
sessionId: string;
|
|
2063
|
-
|
|
2064
|
+
sessionNumber: number;
|
|
2064
2065
|
token: string;
|
|
2066
|
+
url: string;
|
|
2067
|
+
vendorData: string;
|
|
2068
|
+
metaData: any;
|
|
2069
|
+
decisionData: any;
|
|
2070
|
+
status: EkycVerificationSessionStatusEnum;
|
|
2071
|
+
callBackUrl: string;
|
|
2072
|
+
workflowId: string;
|
|
2073
|
+
workflowVersion: string;
|
|
2065
2074
|
expiresAt: Date;
|
|
2066
2075
|
}
|
|
2067
2076
|
|
|
2077
|
+
declare enum EkycVerificationLogStatusEnum {
|
|
2078
|
+
NOT_STARTED = "NOT_STARTED",
|
|
2079
|
+
NOT_FINISHED = "NOT_FINISHED",
|
|
2080
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
2081
|
+
APPROVED = "APPROVED",
|
|
2082
|
+
DECLINED = "DECLINED",
|
|
2083
|
+
IN_REVIEW = "IN_REVIEW",
|
|
2084
|
+
EXPIRED = "EXPIRED",
|
|
2085
|
+
KYC_EXPIRED = "KYC_EXPIRED",
|
|
2086
|
+
ABANDONED = "ABANDONED",
|
|
2087
|
+
RESUBMITTED = "RESUBMITTED",
|
|
2088
|
+
AWAITING_USER = "AWAITING_USER"
|
|
2089
|
+
}
|
|
2090
|
+
declare class EkycVerificationLog {
|
|
2091
|
+
id: number;
|
|
2092
|
+
userId: number;
|
|
2093
|
+
user: User;
|
|
2094
|
+
sessionId: string;
|
|
2095
|
+
workflowId: string;
|
|
2096
|
+
callBackUrl: string;
|
|
2097
|
+
status: EkycVerificationLogStatusEnum;
|
|
2098
|
+
signatureMethod?: string;
|
|
2099
|
+
isSignatureValid: boolean;
|
|
2100
|
+
rawPayload?: any;
|
|
2101
|
+
headers?: Record<string, any>;
|
|
2102
|
+
errorMessage?: string;
|
|
2103
|
+
createdAt: Date;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2068
2106
|
declare enum AccountType$1 {
|
|
2069
2107
|
SUPER_ADMIN = "SUPER_ADMIN",
|
|
2070
2108
|
ADMIN = "ADMIN",
|
|
@@ -2107,6 +2145,8 @@ declare class User extends BaseEntity {
|
|
|
2107
2145
|
isMobileVerified: boolean;
|
|
2108
2146
|
isSocial: boolean;
|
|
2109
2147
|
isReferralUser: boolean;
|
|
2148
|
+
isVerified: boolean;
|
|
2149
|
+
verifiedAt: Date | null;
|
|
2110
2150
|
lastLoginAt: Date;
|
|
2111
2151
|
lastLoginIp: string;
|
|
2112
2152
|
resetToken: string | null;
|
|
@@ -2187,6 +2227,7 @@ declare class User extends BaseEntity {
|
|
|
2187
2227
|
inAppNotifications: InAppNotification[];
|
|
2188
2228
|
userSubscriptions: UserSubscription[];
|
|
2189
2229
|
ekycVerificationSessions: EkycVerificationSession[];
|
|
2230
|
+
ekycVerificationLogs: EkycVerificationLog[];
|
|
2190
2231
|
sentTransactions: WalletTransaction[];
|
|
2191
2232
|
}
|
|
2192
2233
|
|
|
@@ -4992,6 +5033,36 @@ declare class AddVendorApiConfigurationDto {
|
|
|
4992
5033
|
vendorDetails: VendorDetailDto[];
|
|
4993
5034
|
}
|
|
4994
5035
|
|
|
5036
|
+
declare const DIDIT_PATTERN: {
|
|
5037
|
+
handleEkycCreateSession: string;
|
|
5038
|
+
handleEkycWebhook: string;
|
|
5039
|
+
};
|
|
5040
|
+
|
|
5041
|
+
declare class ContactDetailsDto {
|
|
5042
|
+
email?: string;
|
|
5043
|
+
email_lang?: string;
|
|
5044
|
+
send_notification_emails?: boolean;
|
|
5045
|
+
phone?: string;
|
|
5046
|
+
}
|
|
5047
|
+
declare class ExpectedDetailsDto {
|
|
5048
|
+
first_name?: string;
|
|
5049
|
+
last_name?: string;
|
|
5050
|
+
date_of_birth?: string;
|
|
5051
|
+
expected_document_types?: string[];
|
|
5052
|
+
}
|
|
5053
|
+
declare class MetadataDto {
|
|
5054
|
+
plan?: string;
|
|
5055
|
+
signup_source?: string;
|
|
5056
|
+
}
|
|
5057
|
+
declare class CreateEkycSessionDto {
|
|
5058
|
+
workflowId: string;
|
|
5059
|
+
callback: string;
|
|
5060
|
+
vendor_data?: string;
|
|
5061
|
+
metadata?: MetadataDto;
|
|
5062
|
+
contact_details?: ContactDetailsDto;
|
|
5063
|
+
expected_details?: ExpectedDetailsDto;
|
|
5064
|
+
}
|
|
5065
|
+
|
|
4995
5066
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
4996
5067
|
|
|
4997
5068
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -5312,30 +5383,4 @@ declare class VendorApiConfiguration extends BaseEntity {
|
|
|
5312
5383
|
isActive: boolean;
|
|
5313
5384
|
}
|
|
5314
5385
|
|
|
5315
|
-
declare enum EkycVerificationLogStatusEnum {
|
|
5316
|
-
NOT_STARTED = "NOT_STARTED",
|
|
5317
|
-
NOT_FINISHED = "NOT_FINISHED",
|
|
5318
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
5319
|
-
APPROVED = "APPROVED",
|
|
5320
|
-
DECLINED = "DECLINED",
|
|
5321
|
-
IN_REVIEW = "IN_REVIEW",
|
|
5322
|
-
EXPIRED = "EXPIRED",
|
|
5323
|
-
KYC_EXPIRED = "KYC_EXPIRED",
|
|
5324
|
-
ABANDONED = "ABANDONED",
|
|
5325
|
-
RESUBMITTED = "RESUBMITTED",
|
|
5326
|
-
AWAITING_USER = "AWAITING_USER"
|
|
5327
|
-
}
|
|
5328
|
-
declare class EkycVerifcationLog {
|
|
5329
|
-
id: number;
|
|
5330
|
-
sessionId: string;
|
|
5331
|
-
workflowId: string;
|
|
5332
|
-
callBackUrl: string;
|
|
5333
|
-
status: EkycVerificationLogStatusEnum;
|
|
5334
|
-
signatureMethod?: string;
|
|
5335
|
-
isSignatureValid: boolean;
|
|
5336
|
-
rawPayload: string;
|
|
5337
|
-
headers?: Record<string, any>;
|
|
5338
|
-
errorMessage?: string;
|
|
5339
|
-
}
|
|
5340
|
-
|
|
5341
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType$1 as AccountType, AddClientRemarkDto, AddGlobalSettingDto, AddTaskLogTimeDto, AddTaskQueryReplyDto, AddTopupEscrowAmountDto, AddVendorApiConfigurationDto, AdminCreateJobInformationDto, AdminExportClientV2OptimisedDto, AdminExportFreelancerV2OptimisedDto, AdminFreelancerCreateAccountDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AlertBuilder, AlertCategory, type AlertKeyComponents, AlertSeverity, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, ArchiveSubmissionDto, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, BillingCycleEnum, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMember, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractSummary, ContractSummaryPreferredEngagementTypeEnum, ContractSummaryStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInAppNotificationDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateJobAsIsDto, CreateJobViaAIDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CreateTaskDto, CreateTaskQueryDto, CreateUserSigningDto, CustomQuestionItemDto, DISPUTE_PATTERN, DOCUSEAL_PATTERN, DebitCommissionFteHiringDto, type DiscordAlertOptions, DiscordAlertService, type DiscordEmbed, type DiscordEmbedField, type DiscordEmbedFooter, DiscordTransport, type DiscordTransportOptions, type DiscordWebhookConfig, type DiscordWebhookPayload, Dispute, DisputeStatusEnum, DocuSeal, DocuSealMessageDto, DocuSealSubmitterDto, DocuSealTypeEnum, DocumentType, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EkycVerifcationLog, EkycVerificationLogStatusEnum, EkycVerificationSession, EkycVerificationSessionStatusEnum, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GLOBAL_SETTING_PATTERN, GenerateContractDto, GetSubmissionDto, GetSubmitterDto, GetTemplateDto, GlobalSetting, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, 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 IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, IN_APP_NOTIFICATION_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, InAppNotification, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum$1 as JobLocationEnum, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginUsingUuidDTO, LoginViaOtpDto, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, MarkTaskAsCompletedDto, MarkTaskQueryMessagesReadDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PlanFeature, PlanPricing, PlanPricingBillingCycleEnum, PlanTypeEnum, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, REFERRAL_PATTERN, RESUME_PARSER_PATTERN, type RateLimitState, RateLimiter, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectContractDto, RejectF2FInterviewRescheduleRequestDto, RemoveGlobalSettingDto, RequestPasswordChangeOtpForClientDto, RequestPasswordChangeOtpForFreelancerDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResetUserPasswordByAdminDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendInterviewInviteDto, SendLoginOtpDto, SendNdaContractToFreelancerDto, SendOtpDto, SendReferralInviteDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SkipServiceAgreementFlowDto, SocialAuthDto, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SubscriptionFeature, SystemPreference, SystemPreferenceDto, TASK_PATTERN, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Task, TaskChecklistItem, TaskDeliverable, TaskDeliverableTypeEnum, TaskLogTime, TaskPriorityEnum, TaskQuery, TaskQueryCategoryEnum, TaskQueryMessage, TaskQueryMessageUserTypeEnum, TaskQueryStatusEnum, TaskQueryUserTypeEnum, TaskResource, TaskResourceTypeEnum, TaskStatusEnum, TaskSubtask, TaskSubtaskStatusEnum, TaskUuidParamDto, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, UpdateAdminClientAccountStatusDto, UpdateAdminClientJobPostingRestrictionDto, UpdateAdminFreelancerAccountStatusDto, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateCmsDto, UpdateCmsStatusDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateEstimateTimeDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInterviewTypeInformationDto, UpdateInvoiceStatusDto, UpdateIsReadDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, UpdateTaskDto, User, UserRMQAdapter, UserSubscription, UserSubscriptionPlan, UserSubscriptionPlanFeature, UserSubscriptionPlanPricing, UserSubscriptionPlanPricingBillingCycleEnum, UserSubscriptionPlanTypeEnum, UserSubscriptionStatusEnum, UserSubscriptionTransaction, UserSubscriptionTransactionStatusEnum, UserSubscriptionTransactionTypeEnum, UserTCPAdapter, VENDOR_API_CONFIGURATION_PATTERN, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VendorApiConfiguration, VendorDetailDto, VerifyGuestOtpDto, VerifyOnboardingTokenDto, VerifyOtpDto, VerifyPasswordChangeOtpForClientDto, VerifyPasswordChangeOtpForFreelancerDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, createDiscordTransport, typeOfExperienceEnum };
|
|
5386
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType$1 as AccountType, AddClientRemarkDto, AddGlobalSettingDto, AddTaskLogTimeDto, AddTaskQueryReplyDto, AddTopupEscrowAmountDto, AddVendorApiConfigurationDto, AdminCreateJobInformationDto, AdminExportClientV2OptimisedDto, AdminExportFreelancerV2OptimisedDto, AdminFreelancerCreateAccountDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AlertBuilder, AlertCategory, type AlertKeyComponents, AlertSeverity, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, ArchiveSubmissionDto, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, BillingCycleEnum, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMember, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, ContactDetailsDto, Contract, ContractRMQAdapter, ContractStatusEnum, ContractSummary, ContractSummaryPreferredEngagementTypeEnum, ContractSummaryStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateEkycSessionDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInAppNotificationDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateJobAsIsDto, CreateJobViaAIDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CreateTaskDto, CreateTaskQueryDto, CreateUserSigningDto, CustomQuestionItemDto, DIDIT_PATTERN, DISPUTE_PATTERN, DOCUSEAL_PATTERN, DebitCommissionFteHiringDto, type DiscordAlertOptions, DiscordAlertService, type DiscordEmbed, type DiscordEmbedField, type DiscordEmbedFooter, DiscordTransport, type DiscordTransportOptions, type DiscordWebhookConfig, type DiscordWebhookPayload, Dispute, DisputeStatusEnum, DocuSeal, DocuSealMessageDto, DocuSealSubmitterDto, DocuSealTypeEnum, DocumentType, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EkycVerificationLog, EkycVerificationLogStatusEnum, EkycVerificationSession, EkycVerificationSessionStatusEnum, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, ExpectedDetailsDto, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GLOBAL_SETTING_PATTERN, GenerateContractDto, GetSubmissionDto, GetSubmitterDto, GetTemplateDto, GlobalSetting, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, 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 IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, IN_APP_NOTIFICATION_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, InAppNotification, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum$1 as JobLocationEnum, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginUsingUuidDTO, LoginViaOtpDto, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, MarkTaskAsCompletedDto, MarkTaskQueryMessagesReadDto, McqStatusEnum, MetadataDto, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PlanFeature, PlanPricing, PlanPricingBillingCycleEnum, PlanTypeEnum, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, REFERRAL_PATTERN, RESUME_PARSER_PATTERN, type RateLimitState, RateLimiter, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectContractDto, RejectF2FInterviewRescheduleRequestDto, RemoveGlobalSettingDto, RequestPasswordChangeOtpForClientDto, RequestPasswordChangeOtpForFreelancerDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResetUserPasswordByAdminDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendInterviewInviteDto, SendLoginOtpDto, SendNdaContractToFreelancerDto, SendOtpDto, SendReferralInviteDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SkipServiceAgreementFlowDto, SocialAuthDto, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SubscriptionFeature, SystemPreference, SystemPreferenceDto, TASK_PATTERN, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Task, TaskChecklistItem, TaskDeliverable, TaskDeliverableTypeEnum, TaskLogTime, TaskPriorityEnum, TaskQuery, TaskQueryCategoryEnum, TaskQueryMessage, TaskQueryMessageUserTypeEnum, TaskQueryStatusEnum, TaskQueryUserTypeEnum, TaskResource, TaskResourceTypeEnum, TaskStatusEnum, TaskSubtask, TaskSubtaskStatusEnum, TaskUuidParamDto, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, UpdateAdminClientAccountStatusDto, UpdateAdminClientJobPostingRestrictionDto, UpdateAdminFreelancerAccountStatusDto, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateCmsDto, UpdateCmsStatusDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateEstimateTimeDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInterviewTypeInformationDto, UpdateInvoiceStatusDto, UpdateIsReadDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, UpdateTaskDto, User, UserRMQAdapter, UserSubscription, UserSubscriptionPlan, UserSubscriptionPlanFeature, UserSubscriptionPlanPricing, UserSubscriptionPlanPricingBillingCycleEnum, UserSubscriptionPlanTypeEnum, UserSubscriptionStatusEnum, UserSubscriptionTransaction, UserSubscriptionTransactionStatusEnum, UserSubscriptionTransactionTypeEnum, UserTCPAdapter, VENDOR_API_CONFIGURATION_PATTERN, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VendorApiConfiguration, VendorDetailDto, VerifyGuestOtpDto, VerifyOnboardingTokenDto, VerifyOtpDto, VerifyPasswordChangeOtpForClientDto, VerifyPasswordChangeOtpForFreelancerDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, createDiscordTransport, typeOfExperienceEnum };
|