@experts_hub/shared 1.0.570 → 1.0.571
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/index.d.mts +241 -1
- package/dist/index.d.ts +241 -1
- package/dist/index.js +1739 -1002
- package/dist/index.mjs +1577 -883
- package/dist/modules/authentication/dto/index.d.ts +3 -0
- package/dist/modules/authentication/dto/social-auth.dto.d.ts +7 -0
- package/dist/modules/authentication/dto/validate-email.dto.d.ts +3 -0
- package/dist/modules/authentication/dto/validate-mobile.dto.d.ts +3 -0
- package/dist/modules/contract/dto/escrow-fund-contract.dto.d.ts +6 -0
- package/dist/modules/contract/dto/esign-contract-client.dto.d.ts +3 -0
- package/dist/modules/contract/dto/esign-contract-freelancer.dto.d.ts +3 -0
- package/dist/modules/contract/dto/generate-contract.dto.d.ts +5 -0
- package/dist/modules/contract/dto/index.d.ts +4 -0
- package/dist/modules/freelancer-admin/dto/index.d.ts +2 -0
- package/dist/modules/freelancer-admin/dto/send-ai-assessment-link.dto.d.ts +3 -0
- package/dist/modules/freelancer-admin/dto/update-assessment-request-status.dto.d.ts +10 -0
- package/dist/modules/interview/dto/capture-ai-interview-result-public.dto.d.ts +5 -0
- package/dist/modules/interview/dto/create-interview-basic-information.dto.d.ts +10 -0
- package/dist/modules/interview/dto/index.d.ts +4 -0
- package/dist/modules/interview/dto/reject-f2f-interview-reschedule-request.dto.d.ts +1 -1
- package/dist/modules/interview/dto/update-interview-basic-information.dto.d.ts +8 -0
- package/dist/modules/notification/dto/index.d.ts +1 -0
- package/dist/modules/notification/dto/test-notification.dto.d.ts +7 -0
- package/dist/modules/notification/index.d.ts +1 -0
- package/dist/modules/onboarding/dto/index.d.ts +1 -0
- package/dist/modules/onboarding/dto/verify-onboarding-token.dto.d.ts +3 -0
- package/dist/modules/otp/dto/index.d.ts +2 -0
- package/dist/modules/otp/dto/send-otp.dto.d.ts +9 -0
- package/dist/modules/otp/dto/verify-otp.dto.d.ts +5 -0
- package/dist/modules/question/dto/index.d.ts +2 -0
- package/dist/modules/question/dto/record-assessment-answer.dto.d.ts +6 -0
- package/dist/modules/question/dto/record-assessment-answers.dto.d.ts +5 -0
- package/dist/modules/senseloaf/dto/ai-assessment-creation.dto.d.ts +6 -0
- package/dist/modules/senseloaf/dto/ai-interview-link-generation.dto.d.ts +6 -0
- package/dist/modules/senseloaf/dto/ai-interview-template-generation.dto.d.ts +6 -0
- package/dist/modules/senseloaf/dto/check-resume-eligibility.dto.d.ts +5 -0
- package/dist/modules/senseloaf/dto/index.d.ts +6 -0
- package/dist/modules/senseloaf/dto/resume-data-processing.dto.d.ts +5 -0
- package/dist/modules/senseloaf/dto/resume-parsing-by-url.dto.d.ts +4 -0
- package/dist/modules/stripe/dto/client-add-fund.dto.d.ts +5 -0
- package/dist/modules/stripe/dto/create-payout.dto.d.ts +6 -0
- package/dist/modules/stripe/dto/index.d.ts +4 -0
- package/dist/modules/stripe/dto/pre-checkout-calculation.dto.d.ts +5 -0
- package/dist/modules/stripe/dto/transfer-funds.dto.d.ts +5 -0
- package/dist/modules/timesheet/dto/create-default-timesheet-line.dto.d.ts +5 -0
- package/dist/modules/timesheet/dto/index.d.ts +1 -0
- package/dist/modules/user/client-candidate-preference/dto/index.d.ts +2 -0
- package/dist/modules/user/client-candidate-preference/dto/mark-candidate-status-bulk.dto.d.ts +3 -0
- package/dist/modules/user/client-candidate-preference/dto/mark-candidate-status.dto.d.ts +3 -0
- package/dist/modules/user/client-candidate-preference/index.d.ts +1 -0
- package/dist/modules/user/client-profile/dto/client-e-signature.dto.d.ts +3 -0
- package/dist/modules/user/client-profile/dto/client-service-agreement-upload.dto.d.ts +3 -0
- package/dist/modules/user/client-profile/dto/fetch-freelancer-info-for-chat.dto.d.ts +3 -0
- package/dist/modules/user/client-profile/dto/index.d.ts +3 -0
- package/dist/modules/user/freelancer-profile/dto/capture-ai-assessment-result.dto.d.ts +5 -0
- package/dist/modules/user/freelancer-profile/dto/fetch-client-info-for-chat.dto.d.ts +3 -0
- package/dist/modules/user/freelancer-profile/dto/freelancer-e-signature.dto.d.ts +3 -0
- package/dist/modules/user/freelancer-profile/dto/index.d.ts +3 -0
- package/dist/modules/user/signature/dto/index.d.ts +1 -0
- package/dist/modules/user/signature/dto/save-signature.dto.d.ts +4 -0
- package/dist/modules/user/signature/index.d.ts +1 -0
- package/dist/modules/wallet/dto/add-topup-escrow-amount.dto.d.ts +3 -0
- package/dist/modules/wallet/dto/debit-commission-fte-hiring.dto.d.ts +4 -0
- package/dist/modules/wallet/dto/index.d.ts +2 -0
- package/dist/modules/wallet/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -93,6 +93,22 @@ declare class ResetPasswordTokenValidationDto {
|
|
|
93
93
|
scope: ScopeEnum;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
declare class ValidateEmailDto {
|
|
97
|
+
email: string;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
declare class ValidateMobileDto {
|
|
101
|
+
mobile: string;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
declare class SocialAuthDto {
|
|
105
|
+
accessToken?: string;
|
|
106
|
+
refreshToken?: string;
|
|
107
|
+
profile?: any;
|
|
108
|
+
provider?: string;
|
|
109
|
+
providerId?: string;
|
|
110
|
+
}
|
|
111
|
+
|
|
96
112
|
declare const OTP_PATTERN: {
|
|
97
113
|
handleSendGuestOtp: string;
|
|
98
114
|
handleSendOtp: string;
|
|
@@ -138,6 +154,22 @@ declare class VerifyGuestOtpDto {
|
|
|
138
154
|
purpose: VerifyGuestOtpPurposeEnum;
|
|
139
155
|
}
|
|
140
156
|
|
|
157
|
+
declare enum OtpType {
|
|
158
|
+
SMS = "SMS",
|
|
159
|
+
EMAIL = "EMAIL"
|
|
160
|
+
}
|
|
161
|
+
declare class SendOtpDto {
|
|
162
|
+
recipient: string;
|
|
163
|
+
type?: OtpType;
|
|
164
|
+
purpose?: string;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
declare class VerifyOtpDto {
|
|
168
|
+
recipient: string;
|
|
169
|
+
otp: string;
|
|
170
|
+
purpose?: string;
|
|
171
|
+
}
|
|
172
|
+
|
|
141
173
|
declare const ONBOARDING_PATTERN: {
|
|
142
174
|
handleFreelancerAccountCreation: string;
|
|
143
175
|
handleFreelancerResumeUpload: string;
|
|
@@ -235,6 +267,10 @@ declare class ClientCreateAccountDto {
|
|
|
235
267
|
onBoardedBy: string;
|
|
236
268
|
}
|
|
237
269
|
|
|
270
|
+
declare class VerifyOnboardingTokenDto {
|
|
271
|
+
token: string;
|
|
272
|
+
}
|
|
273
|
+
|
|
238
274
|
declare const MAINTENANCE_PATTERN: {
|
|
239
275
|
truncateData: string;
|
|
240
276
|
};
|
|
@@ -403,6 +439,18 @@ declare class ClientChangePasswordDto {
|
|
|
403
439
|
confirmPassword: string;
|
|
404
440
|
}
|
|
405
441
|
|
|
442
|
+
declare class ClientServiceAgreementUploadDto {
|
|
443
|
+
agreementType?: string;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
declare class ClientESignatureDto {
|
|
447
|
+
agreementUuid: string;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
declare class FetchFreelancerInfoForChatDto {
|
|
451
|
+
freelancerId: number;
|
|
452
|
+
}
|
|
453
|
+
|
|
406
454
|
interface IFetchClientProfileQuery {
|
|
407
455
|
page_size?: number;
|
|
408
456
|
page: number;
|
|
@@ -475,6 +523,19 @@ declare class CreateQuestionDto {
|
|
|
475
523
|
isActive: boolean;
|
|
476
524
|
}
|
|
477
525
|
|
|
526
|
+
declare class RecordAssessmentAnswerDto {
|
|
527
|
+
questionId: string;
|
|
528
|
+
answer: any;
|
|
529
|
+
assessmentId?: string;
|
|
530
|
+
userId?: string;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
declare class RecordAssessmentAnswersDto {
|
|
534
|
+
answers: any[];
|
|
535
|
+
assessmentId?: string;
|
|
536
|
+
userId?: string;
|
|
537
|
+
}
|
|
538
|
+
|
|
478
539
|
interface IFetchQuestionQuery {
|
|
479
540
|
page_size?: number;
|
|
480
541
|
page: number;
|
|
@@ -783,6 +844,20 @@ declare class UpdateFreelancerProfileDto {
|
|
|
783
844
|
resumeUrl?: string;
|
|
784
845
|
}
|
|
785
846
|
|
|
847
|
+
declare class FreelancerESignatureDto {
|
|
848
|
+
agreementUuid: string;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
declare class FetchClientInfoForChatDto {
|
|
852
|
+
clientId: number;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
declare class CaptureAiAssessmentResultDto {
|
|
856
|
+
aiAssessmentUuid: string;
|
|
857
|
+
result?: any;
|
|
858
|
+
status?: string;
|
|
859
|
+
}
|
|
860
|
+
|
|
786
861
|
declare const BANK_PATTERN: {
|
|
787
862
|
addFreelancerBankDetails: string;
|
|
788
863
|
fetchFreelancerBankDetails: string;
|
|
@@ -869,6 +944,14 @@ declare const EMAIL_PATTERN: {
|
|
|
869
944
|
cleanQueue: string;
|
|
870
945
|
};
|
|
871
946
|
|
|
947
|
+
declare class TestNotificationDto {
|
|
948
|
+
email?: string;
|
|
949
|
+
phone?: string;
|
|
950
|
+
message?: string;
|
|
951
|
+
data?: any;
|
|
952
|
+
type?: string;
|
|
953
|
+
}
|
|
954
|
+
|
|
872
955
|
declare const RATING_PATTERN: {
|
|
873
956
|
addRating: string;
|
|
874
957
|
fetchRating: string;
|
|
@@ -2676,6 +2759,21 @@ declare class UpdateFreelancerDto {
|
|
|
2676
2759
|
portfolioLink?: string;
|
|
2677
2760
|
}
|
|
2678
2761
|
|
|
2762
|
+
declare class SendAiAssessmentLinkDto {
|
|
2763
|
+
userId: number;
|
|
2764
|
+
}
|
|
2765
|
+
|
|
2766
|
+
declare enum AssessmentRequestStatus {
|
|
2767
|
+
PENDING = "PENDING",
|
|
2768
|
+
APPROVED = "APPROVED",
|
|
2769
|
+
REJECTED = "REJECTED",
|
|
2770
|
+
EXPIRED = "EXPIRED"
|
|
2771
|
+
}
|
|
2772
|
+
declare class UpdateAssessmentRequestStatusDto {
|
|
2773
|
+
status: AssessmentRequestStatus;
|
|
2774
|
+
remarks?: string;
|
|
2775
|
+
}
|
|
2776
|
+
|
|
2679
2777
|
interface IFetchFreelancersResponse {
|
|
2680
2778
|
statusCode: number;
|
|
2681
2779
|
status: boolean;
|
|
@@ -2900,6 +2998,14 @@ declare const CLIENT_CANDIDATE_PREFERENCE_PATTERN: {
|
|
|
2900
2998
|
markCandidateAsShortlistedInBulk: string;
|
|
2901
2999
|
};
|
|
2902
3000
|
|
|
3001
|
+
declare class MarkCandidateStatusDto {
|
|
3002
|
+
freelancerId: number;
|
|
3003
|
+
}
|
|
3004
|
+
|
|
3005
|
+
declare class MarkCandidateStatusBulkDto {
|
|
3006
|
+
freelancerIds: number[];
|
|
3007
|
+
}
|
|
3008
|
+
|
|
2903
3009
|
declare const CMS_PATTERNS: {
|
|
2904
3010
|
fetchCms: string;
|
|
2905
3011
|
createCms: string;
|
|
@@ -3253,6 +3359,36 @@ declare class RejectAIInterviewRescheduleRequestDto {
|
|
|
3253
3359
|
clientRejectReason: string;
|
|
3254
3360
|
}
|
|
3255
3361
|
|
|
3362
|
+
declare class RejectF2FInterviewRescheduleRequestDto {
|
|
3363
|
+
reason?: string;
|
|
3364
|
+
}
|
|
3365
|
+
|
|
3366
|
+
declare class CaptureAiInterviewResultPublicDto {
|
|
3367
|
+
aiInterviewUuid: string;
|
|
3368
|
+
result?: any;
|
|
3369
|
+
status?: string;
|
|
3370
|
+
}
|
|
3371
|
+
|
|
3372
|
+
declare class CreateInterviewBasicInformationDto {
|
|
3373
|
+
jobId: number;
|
|
3374
|
+
interviewType: string;
|
|
3375
|
+
title?: string;
|
|
3376
|
+
description?: string;
|
|
3377
|
+
scheduledAt?: string;
|
|
3378
|
+
duration?: number;
|
|
3379
|
+
skillIds?: number[];
|
|
3380
|
+
location?: string;
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
declare class UpdateInterviewBasicInformationDto {
|
|
3384
|
+
title?: string;
|
|
3385
|
+
description?: string;
|
|
3386
|
+
scheduledAt?: string;
|
|
3387
|
+
duration?: number;
|
|
3388
|
+
skillIds?: number[];
|
|
3389
|
+
location?: string;
|
|
3390
|
+
}
|
|
3391
|
+
|
|
3256
3392
|
declare const CONTRACT_PATTERN: {
|
|
3257
3393
|
generateContract: string;
|
|
3258
3394
|
fetchHiredFreelancerForClient: string;
|
|
@@ -3298,6 +3434,27 @@ declare class SignContractForFreelancerDto {
|
|
|
3298
3434
|
contractType: ContractTypeEnum;
|
|
3299
3435
|
}
|
|
3300
3436
|
|
|
3437
|
+
declare class GenerateContractDto {
|
|
3438
|
+
hiringId: number;
|
|
3439
|
+
contractType?: string;
|
|
3440
|
+
templateId?: string;
|
|
3441
|
+
}
|
|
3442
|
+
|
|
3443
|
+
declare class EsignContractClientDto {
|
|
3444
|
+
contractUuid: string;
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3447
|
+
declare class EsignContractFreelancerDto {
|
|
3448
|
+
contractUuid: string;
|
|
3449
|
+
}
|
|
3450
|
+
|
|
3451
|
+
declare class EscrowFundContractDto {
|
|
3452
|
+
contractId: number;
|
|
3453
|
+
amount: number;
|
|
3454
|
+
currency?: string;
|
|
3455
|
+
description?: string;
|
|
3456
|
+
}
|
|
3457
|
+
|
|
3301
3458
|
declare const STRIPE_PATTERN: {
|
|
3302
3459
|
handleStripeWebhookEvent: string;
|
|
3303
3460
|
createConnectAccount: string;
|
|
@@ -3321,6 +3478,31 @@ declare class CreateCheckoutSessionDto {
|
|
|
3321
3478
|
amount: number;
|
|
3322
3479
|
}
|
|
3323
3480
|
|
|
3481
|
+
declare class PreCheckoutCalculationDto {
|
|
3482
|
+
amount: number;
|
|
3483
|
+
currency?: string;
|
|
3484
|
+
description?: string;
|
|
3485
|
+
}
|
|
3486
|
+
|
|
3487
|
+
declare class ClientAddFundDto {
|
|
3488
|
+
amount: number;
|
|
3489
|
+
currency?: string;
|
|
3490
|
+
description?: string;
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3493
|
+
declare class TransferFundsDto {
|
|
3494
|
+
amount: number;
|
|
3495
|
+
connectedAccountId: string;
|
|
3496
|
+
description?: string;
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3499
|
+
declare class CreatePayoutDto {
|
|
3500
|
+
amount: number;
|
|
3501
|
+
connectedAccountId: string;
|
|
3502
|
+
method?: string;
|
|
3503
|
+
description?: string;
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3324
3506
|
declare const TIMESHEET_FREELANCER_PATTERN: {
|
|
3325
3507
|
fetchTimesheetsByDateRangeForFreelancer: string;
|
|
3326
3508
|
createTimesheetForFreelancer: string;
|
|
@@ -3403,6 +3585,12 @@ declare class SendBackTimesheetsDto {
|
|
|
3403
3585
|
reason?: string;
|
|
3404
3586
|
}
|
|
3405
3587
|
|
|
3588
|
+
declare class CreateDefaultTimesheetLineDto {
|
|
3589
|
+
contractId: number;
|
|
3590
|
+
freelancerId: number;
|
|
3591
|
+
clientId: number;
|
|
3592
|
+
}
|
|
3593
|
+
|
|
3406
3594
|
declare const INVOICE_PATTERN: {
|
|
3407
3595
|
createInvoice: string;
|
|
3408
3596
|
generateWeeklyInvoice: string;
|
|
@@ -3455,6 +3643,44 @@ declare class AiInterviewQuestionGenerateDto {
|
|
|
3455
3643
|
numQuestions: number;
|
|
3456
3644
|
}
|
|
3457
3645
|
|
|
3646
|
+
declare class ResumeParsingByUrlDto {
|
|
3647
|
+
resumeUrl: string;
|
|
3648
|
+
fileName?: string;
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
declare class ResumeDataProcessingDto {
|
|
3652
|
+
resumeData: any;
|
|
3653
|
+
userId?: string;
|
|
3654
|
+
processingType?: string;
|
|
3655
|
+
}
|
|
3656
|
+
|
|
3657
|
+
declare class CheckResumeEligibilityDto {
|
|
3658
|
+
resumeData: any;
|
|
3659
|
+
jobId?: string;
|
|
3660
|
+
userId?: string;
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
declare class AiInterviewTemplateGenerationDto {
|
|
3664
|
+
jobId: string;
|
|
3665
|
+
skills?: string[];
|
|
3666
|
+
numberOfQuestions?: number;
|
|
3667
|
+
difficulty?: string;
|
|
3668
|
+
}
|
|
3669
|
+
|
|
3670
|
+
declare class AiInterviewLinkGenerationDto {
|
|
3671
|
+
templateId: string;
|
|
3672
|
+
freelancerId: string;
|
|
3673
|
+
jobId?: string;
|
|
3674
|
+
expiryHours?: number;
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
declare class AiAssessmentCreationDto {
|
|
3678
|
+
userId: string;
|
|
3679
|
+
assessmentType?: string;
|
|
3680
|
+
numberOfQuestions?: number;
|
|
3681
|
+
difficulty?: string;
|
|
3682
|
+
}
|
|
3683
|
+
|
|
3458
3684
|
declare const COMMISSION_PATTERN: {
|
|
3459
3685
|
fetchCommission: string;
|
|
3460
3686
|
};
|
|
@@ -3484,6 +3710,11 @@ declare const SIGNATURE_PATTERN: {
|
|
|
3484
3710
|
saveSignature: string;
|
|
3485
3711
|
};
|
|
3486
3712
|
|
|
3713
|
+
declare class SaveSignatureDto {
|
|
3714
|
+
signatureType?: string;
|
|
3715
|
+
description?: string;
|
|
3716
|
+
}
|
|
3717
|
+
|
|
3487
3718
|
declare const WALLET_PATTERN: {
|
|
3488
3719
|
fetchConnectAccountDetails: string;
|
|
3489
3720
|
fetchWalletTransactions: string;
|
|
@@ -3497,6 +3728,15 @@ declare const WALLET_ADMIN_PATTERN: {
|
|
|
3497
3728
|
fetchAdminWalletTransactions: string;
|
|
3498
3729
|
};
|
|
3499
3730
|
|
|
3731
|
+
declare class AddTopupEscrowAmountDto {
|
|
3732
|
+
amount: number;
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
declare class DebitCommissionFteHiringDto {
|
|
3736
|
+
hiringId: number;
|
|
3737
|
+
amount: number;
|
|
3738
|
+
}
|
|
3739
|
+
|
|
3500
3740
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
3501
3741
|
|
|
3502
3742
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -3713,4 +3953,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3713
3953
|
isActive: boolean;
|
|
3714
3954
|
}
|
|
3715
3955
|
|
|
3716
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, 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, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInvoiceDto, CreateJobApplicationDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DISPUTE_PATTERN, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EmploymentType, EmploymentTypeV2, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, 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, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, 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 IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, MAINTENANCE_PATTERN, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RecommendationWeightageConfig, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResubmitTimesheetDto, ResultStatusEnum, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendBackTimesheetsDto, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
|
|
3956
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AddTopupEscrowAmountDto, AdminCreateJobInformationDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, AssessmentAnswer, AssessmentRequestStatus, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, 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, CandidateType, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInterviewBasicInformationDto, CreateInvoiceDto, CreateJobApplicationDto, CreateLeadDto, CreatePayoutDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DISPUTE_PATTERN, DebitCommissionFteHiringDto, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EmploymentType, EmploymentTypeV2, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, 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, Feature, 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, GenerateContractDto, 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 IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, OtpType, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectF2FInterviewRescheduleRequestDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SendOtpDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SocialAuthDto, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, ValidateEmailDto, ValidateMobileDto, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, VerifyOnboardingTokenDto, VerifyOtpDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
|