@experts_hub/shared 1.0.734 → 1.0.736
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/user.entity.d.ts +4 -0
- package/dist/index.d.mts +72 -28
- package/dist/index.d.ts +72 -28
- package/dist/index.js +582 -443
- package/dist/index.mjs +427 -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
|
@@ -2060,11 +2060,48 @@ declare class EkycVerificationSession extends BaseEntity {
|
|
|
2060
2060
|
userId: number;
|
|
2061
2061
|
user: User;
|
|
2062
2062
|
sessionId: string;
|
|
2063
|
-
|
|
2063
|
+
sessionNumber: number;
|
|
2064
2064
|
token: string;
|
|
2065
|
+
url: string;
|
|
2066
|
+
vendorData: string;
|
|
2067
|
+
metaData: any;
|
|
2068
|
+
decisionData: any;
|
|
2069
|
+
status: EkycVerificationSessionStatusEnum;
|
|
2070
|
+
callBackUrl: string;
|
|
2071
|
+
workflowId: string;
|
|
2072
|
+
workflowVersion: string;
|
|
2065
2073
|
expiresAt: Date;
|
|
2066
2074
|
}
|
|
2067
2075
|
|
|
2076
|
+
declare enum EkycVerificationLogStatusEnum {
|
|
2077
|
+
NOT_STARTED = "NOT_STARTED",
|
|
2078
|
+
NOT_FINISHED = "NOT_FINISHED",
|
|
2079
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
2080
|
+
APPROVED = "APPROVED",
|
|
2081
|
+
DECLINED = "DECLINED",
|
|
2082
|
+
IN_REVIEW = "IN_REVIEW",
|
|
2083
|
+
EXPIRED = "EXPIRED",
|
|
2084
|
+
KYC_EXPIRED = "KYC_EXPIRED",
|
|
2085
|
+
ABANDONED = "ABANDONED",
|
|
2086
|
+
RESUBMITTED = "RESUBMITTED",
|
|
2087
|
+
AWAITING_USER = "AWAITING_USER"
|
|
2088
|
+
}
|
|
2089
|
+
declare class EkycVerificationLog {
|
|
2090
|
+
id: number;
|
|
2091
|
+
userId: number;
|
|
2092
|
+
user: User;
|
|
2093
|
+
sessionId: string;
|
|
2094
|
+
workflowId: string;
|
|
2095
|
+
callBackUrl: string;
|
|
2096
|
+
status: EkycVerificationLogStatusEnum;
|
|
2097
|
+
signatureMethod?: string;
|
|
2098
|
+
isSignatureValid: boolean;
|
|
2099
|
+
rawPayload?: any;
|
|
2100
|
+
headers?: Record<string, any>;
|
|
2101
|
+
errorMessage?: string;
|
|
2102
|
+
createdAt: Date;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2068
2105
|
declare enum AccountType$1 {
|
|
2069
2106
|
SUPER_ADMIN = "SUPER_ADMIN",
|
|
2070
2107
|
ADMIN = "ADMIN",
|
|
@@ -2107,6 +2144,8 @@ declare class User extends BaseEntity {
|
|
|
2107
2144
|
isMobileVerified: boolean;
|
|
2108
2145
|
isSocial: boolean;
|
|
2109
2146
|
isReferralUser: boolean;
|
|
2147
|
+
isVerified: boolean;
|
|
2148
|
+
verifiedAt: Date | null;
|
|
2110
2149
|
lastLoginAt: Date;
|
|
2111
2150
|
lastLoginIp: string;
|
|
2112
2151
|
resetToken: string | null;
|
|
@@ -2187,6 +2226,7 @@ declare class User extends BaseEntity {
|
|
|
2187
2226
|
inAppNotifications: InAppNotification[];
|
|
2188
2227
|
userSubscriptions: UserSubscription[];
|
|
2189
2228
|
ekycVerificationSessions: EkycVerificationSession[];
|
|
2229
|
+
ekycVerificationLogs: EkycVerificationLog[];
|
|
2190
2230
|
sentTransactions: WalletTransaction[];
|
|
2191
2231
|
}
|
|
2192
2232
|
|
|
@@ -4992,6 +5032,36 @@ declare class AddVendorApiConfigurationDto {
|
|
|
4992
5032
|
vendorDetails: VendorDetailDto[];
|
|
4993
5033
|
}
|
|
4994
5034
|
|
|
5035
|
+
declare const DIDIT_PATTERN: {
|
|
5036
|
+
handleEkycCreateSession: string;
|
|
5037
|
+
handleEkycWebhook: string;
|
|
5038
|
+
};
|
|
5039
|
+
|
|
5040
|
+
declare class ContactDetailsDto {
|
|
5041
|
+
email?: string;
|
|
5042
|
+
email_lang?: string;
|
|
5043
|
+
send_notification_emails?: boolean;
|
|
5044
|
+
phone?: string;
|
|
5045
|
+
}
|
|
5046
|
+
declare class ExpectedDetailsDto {
|
|
5047
|
+
first_name?: string;
|
|
5048
|
+
last_name?: string;
|
|
5049
|
+
date_of_birth?: string;
|
|
5050
|
+
expected_document_types?: string[];
|
|
5051
|
+
}
|
|
5052
|
+
declare class MetadataDto {
|
|
5053
|
+
plan?: string;
|
|
5054
|
+
signup_source?: string;
|
|
5055
|
+
}
|
|
5056
|
+
declare class CreateEkycSessionDto {
|
|
5057
|
+
workflowId: string;
|
|
5058
|
+
callback: string;
|
|
5059
|
+
vendor_data?: string;
|
|
5060
|
+
metadata?: MetadataDto;
|
|
5061
|
+
contact_details?: ContactDetailsDto;
|
|
5062
|
+
expected_details?: ExpectedDetailsDto;
|
|
5063
|
+
}
|
|
5064
|
+
|
|
4995
5065
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
4996
5066
|
|
|
4997
5067
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -5312,30 +5382,4 @@ declare class VendorApiConfiguration extends BaseEntity {
|
|
|
5312
5382
|
isActive: boolean;
|
|
5313
5383
|
}
|
|
5314
5384
|
|
|
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 };
|
|
5385
|
+
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
|
@@ -2060,11 +2060,48 @@ declare class EkycVerificationSession extends BaseEntity {
|
|
|
2060
2060
|
userId: number;
|
|
2061
2061
|
user: User;
|
|
2062
2062
|
sessionId: string;
|
|
2063
|
-
|
|
2063
|
+
sessionNumber: number;
|
|
2064
2064
|
token: string;
|
|
2065
|
+
url: string;
|
|
2066
|
+
vendorData: string;
|
|
2067
|
+
metaData: any;
|
|
2068
|
+
decisionData: any;
|
|
2069
|
+
status: EkycVerificationSessionStatusEnum;
|
|
2070
|
+
callBackUrl: string;
|
|
2071
|
+
workflowId: string;
|
|
2072
|
+
workflowVersion: string;
|
|
2065
2073
|
expiresAt: Date;
|
|
2066
2074
|
}
|
|
2067
2075
|
|
|
2076
|
+
declare enum EkycVerificationLogStatusEnum {
|
|
2077
|
+
NOT_STARTED = "NOT_STARTED",
|
|
2078
|
+
NOT_FINISHED = "NOT_FINISHED",
|
|
2079
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
2080
|
+
APPROVED = "APPROVED",
|
|
2081
|
+
DECLINED = "DECLINED",
|
|
2082
|
+
IN_REVIEW = "IN_REVIEW",
|
|
2083
|
+
EXPIRED = "EXPIRED",
|
|
2084
|
+
KYC_EXPIRED = "KYC_EXPIRED",
|
|
2085
|
+
ABANDONED = "ABANDONED",
|
|
2086
|
+
RESUBMITTED = "RESUBMITTED",
|
|
2087
|
+
AWAITING_USER = "AWAITING_USER"
|
|
2088
|
+
}
|
|
2089
|
+
declare class EkycVerificationLog {
|
|
2090
|
+
id: number;
|
|
2091
|
+
userId: number;
|
|
2092
|
+
user: User;
|
|
2093
|
+
sessionId: string;
|
|
2094
|
+
workflowId: string;
|
|
2095
|
+
callBackUrl: string;
|
|
2096
|
+
status: EkycVerificationLogStatusEnum;
|
|
2097
|
+
signatureMethod?: string;
|
|
2098
|
+
isSignatureValid: boolean;
|
|
2099
|
+
rawPayload?: any;
|
|
2100
|
+
headers?: Record<string, any>;
|
|
2101
|
+
errorMessage?: string;
|
|
2102
|
+
createdAt: Date;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2068
2105
|
declare enum AccountType$1 {
|
|
2069
2106
|
SUPER_ADMIN = "SUPER_ADMIN",
|
|
2070
2107
|
ADMIN = "ADMIN",
|
|
@@ -2107,6 +2144,8 @@ declare class User extends BaseEntity {
|
|
|
2107
2144
|
isMobileVerified: boolean;
|
|
2108
2145
|
isSocial: boolean;
|
|
2109
2146
|
isReferralUser: boolean;
|
|
2147
|
+
isVerified: boolean;
|
|
2148
|
+
verifiedAt: Date | null;
|
|
2110
2149
|
lastLoginAt: Date;
|
|
2111
2150
|
lastLoginIp: string;
|
|
2112
2151
|
resetToken: string | null;
|
|
@@ -2187,6 +2226,7 @@ declare class User extends BaseEntity {
|
|
|
2187
2226
|
inAppNotifications: InAppNotification[];
|
|
2188
2227
|
userSubscriptions: UserSubscription[];
|
|
2189
2228
|
ekycVerificationSessions: EkycVerificationSession[];
|
|
2229
|
+
ekycVerificationLogs: EkycVerificationLog[];
|
|
2190
2230
|
sentTransactions: WalletTransaction[];
|
|
2191
2231
|
}
|
|
2192
2232
|
|
|
@@ -4992,6 +5032,36 @@ declare class AddVendorApiConfigurationDto {
|
|
|
4992
5032
|
vendorDetails: VendorDetailDto[];
|
|
4993
5033
|
}
|
|
4994
5034
|
|
|
5035
|
+
declare const DIDIT_PATTERN: {
|
|
5036
|
+
handleEkycCreateSession: string;
|
|
5037
|
+
handleEkycWebhook: string;
|
|
5038
|
+
};
|
|
5039
|
+
|
|
5040
|
+
declare class ContactDetailsDto {
|
|
5041
|
+
email?: string;
|
|
5042
|
+
email_lang?: string;
|
|
5043
|
+
send_notification_emails?: boolean;
|
|
5044
|
+
phone?: string;
|
|
5045
|
+
}
|
|
5046
|
+
declare class ExpectedDetailsDto {
|
|
5047
|
+
first_name?: string;
|
|
5048
|
+
last_name?: string;
|
|
5049
|
+
date_of_birth?: string;
|
|
5050
|
+
expected_document_types?: string[];
|
|
5051
|
+
}
|
|
5052
|
+
declare class MetadataDto {
|
|
5053
|
+
plan?: string;
|
|
5054
|
+
signup_source?: string;
|
|
5055
|
+
}
|
|
5056
|
+
declare class CreateEkycSessionDto {
|
|
5057
|
+
workflowId: string;
|
|
5058
|
+
callback: string;
|
|
5059
|
+
vendor_data?: string;
|
|
5060
|
+
metadata?: MetadataDto;
|
|
5061
|
+
contact_details?: ContactDetailsDto;
|
|
5062
|
+
expected_details?: ExpectedDetailsDto;
|
|
5063
|
+
}
|
|
5064
|
+
|
|
4995
5065
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
4996
5066
|
|
|
4997
5067
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -5312,30 +5382,4 @@ declare class VendorApiConfiguration extends BaseEntity {
|
|
|
5312
5382
|
isActive: boolean;
|
|
5313
5383
|
}
|
|
5314
5384
|
|
|
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 };
|
|
5385
|
+
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 };
|