@experts_hub/shared 1.0.570 → 1.0.572
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 +244 -1
- package/dist/index.d.ts +244 -1
- package/dist/index.js +1754 -1002
- package/dist/index.mjs +1589 -880
- 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/job/dto/job-basic-information-v2.dto.d.ts +3 -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.ts
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;
|
|
@@ -639,6 +700,9 @@ declare class JobLocationDto {
|
|
|
639
700
|
countryId: number | null;
|
|
640
701
|
stateId: number | null;
|
|
641
702
|
cityId: number | null;
|
|
703
|
+
countryName?: string | null;
|
|
704
|
+
stateName?: string | null;
|
|
705
|
+
cityName?: string | null;
|
|
642
706
|
}
|
|
643
707
|
declare class JobBasicInformationV2Dto {
|
|
644
708
|
isDraft?: boolean;
|
|
@@ -783,6 +847,20 @@ declare class UpdateFreelancerProfileDto {
|
|
|
783
847
|
resumeUrl?: string;
|
|
784
848
|
}
|
|
785
849
|
|
|
850
|
+
declare class FreelancerESignatureDto {
|
|
851
|
+
agreementUuid: string;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
declare class FetchClientInfoForChatDto {
|
|
855
|
+
clientId: number;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
declare class CaptureAiAssessmentResultDto {
|
|
859
|
+
aiAssessmentUuid: string;
|
|
860
|
+
result?: any;
|
|
861
|
+
status?: string;
|
|
862
|
+
}
|
|
863
|
+
|
|
786
864
|
declare const BANK_PATTERN: {
|
|
787
865
|
addFreelancerBankDetails: string;
|
|
788
866
|
fetchFreelancerBankDetails: string;
|
|
@@ -869,6 +947,14 @@ declare const EMAIL_PATTERN: {
|
|
|
869
947
|
cleanQueue: string;
|
|
870
948
|
};
|
|
871
949
|
|
|
950
|
+
declare class TestNotificationDto {
|
|
951
|
+
email?: string;
|
|
952
|
+
phone?: string;
|
|
953
|
+
message?: string;
|
|
954
|
+
data?: any;
|
|
955
|
+
type?: string;
|
|
956
|
+
}
|
|
957
|
+
|
|
872
958
|
declare const RATING_PATTERN: {
|
|
873
959
|
addRating: string;
|
|
874
960
|
fetchRating: string;
|
|
@@ -2676,6 +2762,21 @@ declare class UpdateFreelancerDto {
|
|
|
2676
2762
|
portfolioLink?: string;
|
|
2677
2763
|
}
|
|
2678
2764
|
|
|
2765
|
+
declare class SendAiAssessmentLinkDto {
|
|
2766
|
+
userId: number;
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2769
|
+
declare enum AssessmentRequestStatus {
|
|
2770
|
+
PENDING = "PENDING",
|
|
2771
|
+
APPROVED = "APPROVED",
|
|
2772
|
+
REJECTED = "REJECTED",
|
|
2773
|
+
EXPIRED = "EXPIRED"
|
|
2774
|
+
}
|
|
2775
|
+
declare class UpdateAssessmentRequestStatusDto {
|
|
2776
|
+
status: AssessmentRequestStatus;
|
|
2777
|
+
remarks?: string;
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2679
2780
|
interface IFetchFreelancersResponse {
|
|
2680
2781
|
statusCode: number;
|
|
2681
2782
|
status: boolean;
|
|
@@ -2900,6 +3001,14 @@ declare const CLIENT_CANDIDATE_PREFERENCE_PATTERN: {
|
|
|
2900
3001
|
markCandidateAsShortlistedInBulk: string;
|
|
2901
3002
|
};
|
|
2902
3003
|
|
|
3004
|
+
declare class MarkCandidateStatusDto {
|
|
3005
|
+
freelancerId: number;
|
|
3006
|
+
}
|
|
3007
|
+
|
|
3008
|
+
declare class MarkCandidateStatusBulkDto {
|
|
3009
|
+
freelancerIds: number[];
|
|
3010
|
+
}
|
|
3011
|
+
|
|
2903
3012
|
declare const CMS_PATTERNS: {
|
|
2904
3013
|
fetchCms: string;
|
|
2905
3014
|
createCms: string;
|
|
@@ -3253,6 +3362,36 @@ declare class RejectAIInterviewRescheduleRequestDto {
|
|
|
3253
3362
|
clientRejectReason: string;
|
|
3254
3363
|
}
|
|
3255
3364
|
|
|
3365
|
+
declare class RejectF2FInterviewRescheduleRequestDto {
|
|
3366
|
+
reason?: string;
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3369
|
+
declare class CaptureAiInterviewResultPublicDto {
|
|
3370
|
+
aiInterviewUuid: string;
|
|
3371
|
+
result?: any;
|
|
3372
|
+
status?: string;
|
|
3373
|
+
}
|
|
3374
|
+
|
|
3375
|
+
declare class CreateInterviewBasicInformationDto {
|
|
3376
|
+
jobId: number;
|
|
3377
|
+
interviewType: string;
|
|
3378
|
+
title?: string;
|
|
3379
|
+
description?: string;
|
|
3380
|
+
scheduledAt?: string;
|
|
3381
|
+
duration?: number;
|
|
3382
|
+
skillIds?: number[];
|
|
3383
|
+
location?: string;
|
|
3384
|
+
}
|
|
3385
|
+
|
|
3386
|
+
declare class UpdateInterviewBasicInformationDto {
|
|
3387
|
+
title?: string;
|
|
3388
|
+
description?: string;
|
|
3389
|
+
scheduledAt?: string;
|
|
3390
|
+
duration?: number;
|
|
3391
|
+
skillIds?: number[];
|
|
3392
|
+
location?: string;
|
|
3393
|
+
}
|
|
3394
|
+
|
|
3256
3395
|
declare const CONTRACT_PATTERN: {
|
|
3257
3396
|
generateContract: string;
|
|
3258
3397
|
fetchHiredFreelancerForClient: string;
|
|
@@ -3298,6 +3437,27 @@ declare class SignContractForFreelancerDto {
|
|
|
3298
3437
|
contractType: ContractTypeEnum;
|
|
3299
3438
|
}
|
|
3300
3439
|
|
|
3440
|
+
declare class GenerateContractDto {
|
|
3441
|
+
hiringId: number;
|
|
3442
|
+
contractType?: string;
|
|
3443
|
+
templateId?: string;
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
declare class EsignContractClientDto {
|
|
3447
|
+
contractUuid: string;
|
|
3448
|
+
}
|
|
3449
|
+
|
|
3450
|
+
declare class EsignContractFreelancerDto {
|
|
3451
|
+
contractUuid: string;
|
|
3452
|
+
}
|
|
3453
|
+
|
|
3454
|
+
declare class EscrowFundContractDto {
|
|
3455
|
+
contractId: number;
|
|
3456
|
+
amount: number;
|
|
3457
|
+
currency?: string;
|
|
3458
|
+
description?: string;
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3301
3461
|
declare const STRIPE_PATTERN: {
|
|
3302
3462
|
handleStripeWebhookEvent: string;
|
|
3303
3463
|
createConnectAccount: string;
|
|
@@ -3321,6 +3481,31 @@ declare class CreateCheckoutSessionDto {
|
|
|
3321
3481
|
amount: number;
|
|
3322
3482
|
}
|
|
3323
3483
|
|
|
3484
|
+
declare class PreCheckoutCalculationDto {
|
|
3485
|
+
amount: number;
|
|
3486
|
+
currency?: string;
|
|
3487
|
+
description?: string;
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3490
|
+
declare class ClientAddFundDto {
|
|
3491
|
+
amount: number;
|
|
3492
|
+
currency?: string;
|
|
3493
|
+
description?: string;
|
|
3494
|
+
}
|
|
3495
|
+
|
|
3496
|
+
declare class TransferFundsDto {
|
|
3497
|
+
amount: number;
|
|
3498
|
+
connectedAccountId: string;
|
|
3499
|
+
description?: string;
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3502
|
+
declare class CreatePayoutDto {
|
|
3503
|
+
amount: number;
|
|
3504
|
+
connectedAccountId: string;
|
|
3505
|
+
method?: string;
|
|
3506
|
+
description?: string;
|
|
3507
|
+
}
|
|
3508
|
+
|
|
3324
3509
|
declare const TIMESHEET_FREELANCER_PATTERN: {
|
|
3325
3510
|
fetchTimesheetsByDateRangeForFreelancer: string;
|
|
3326
3511
|
createTimesheetForFreelancer: string;
|
|
@@ -3403,6 +3588,12 @@ declare class SendBackTimesheetsDto {
|
|
|
3403
3588
|
reason?: string;
|
|
3404
3589
|
}
|
|
3405
3590
|
|
|
3591
|
+
declare class CreateDefaultTimesheetLineDto {
|
|
3592
|
+
contractId: number;
|
|
3593
|
+
freelancerId: number;
|
|
3594
|
+
clientId: number;
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3406
3597
|
declare const INVOICE_PATTERN: {
|
|
3407
3598
|
createInvoice: string;
|
|
3408
3599
|
generateWeeklyInvoice: string;
|
|
@@ -3455,6 +3646,44 @@ declare class AiInterviewQuestionGenerateDto {
|
|
|
3455
3646
|
numQuestions: number;
|
|
3456
3647
|
}
|
|
3457
3648
|
|
|
3649
|
+
declare class ResumeParsingByUrlDto {
|
|
3650
|
+
resumeUrl: string;
|
|
3651
|
+
fileName?: string;
|
|
3652
|
+
}
|
|
3653
|
+
|
|
3654
|
+
declare class ResumeDataProcessingDto {
|
|
3655
|
+
resumeData: any;
|
|
3656
|
+
userId?: string;
|
|
3657
|
+
processingType?: string;
|
|
3658
|
+
}
|
|
3659
|
+
|
|
3660
|
+
declare class CheckResumeEligibilityDto {
|
|
3661
|
+
resumeData: any;
|
|
3662
|
+
jobId?: string;
|
|
3663
|
+
userId?: string;
|
|
3664
|
+
}
|
|
3665
|
+
|
|
3666
|
+
declare class AiInterviewTemplateGenerationDto {
|
|
3667
|
+
jobId: string;
|
|
3668
|
+
skills?: string[];
|
|
3669
|
+
numberOfQuestions?: number;
|
|
3670
|
+
difficulty?: string;
|
|
3671
|
+
}
|
|
3672
|
+
|
|
3673
|
+
declare class AiInterviewLinkGenerationDto {
|
|
3674
|
+
templateId: string;
|
|
3675
|
+
freelancerId: string;
|
|
3676
|
+
jobId?: string;
|
|
3677
|
+
expiryHours?: number;
|
|
3678
|
+
}
|
|
3679
|
+
|
|
3680
|
+
declare class AiAssessmentCreationDto {
|
|
3681
|
+
userId: string;
|
|
3682
|
+
assessmentType?: string;
|
|
3683
|
+
numberOfQuestions?: number;
|
|
3684
|
+
difficulty?: string;
|
|
3685
|
+
}
|
|
3686
|
+
|
|
3458
3687
|
declare const COMMISSION_PATTERN: {
|
|
3459
3688
|
fetchCommission: string;
|
|
3460
3689
|
};
|
|
@@ -3484,6 +3713,11 @@ declare const SIGNATURE_PATTERN: {
|
|
|
3484
3713
|
saveSignature: string;
|
|
3485
3714
|
};
|
|
3486
3715
|
|
|
3716
|
+
declare class SaveSignatureDto {
|
|
3717
|
+
signatureType?: string;
|
|
3718
|
+
description?: string;
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3487
3721
|
declare const WALLET_PATTERN: {
|
|
3488
3722
|
fetchConnectAccountDetails: string;
|
|
3489
3723
|
fetchWalletTransactions: string;
|
|
@@ -3497,6 +3731,15 @@ declare const WALLET_ADMIN_PATTERN: {
|
|
|
3497
3731
|
fetchAdminWalletTransactions: string;
|
|
3498
3732
|
};
|
|
3499
3733
|
|
|
3734
|
+
declare class AddTopupEscrowAmountDto {
|
|
3735
|
+
amount: number;
|
|
3736
|
+
}
|
|
3737
|
+
|
|
3738
|
+
declare class DebitCommissionFteHiringDto {
|
|
3739
|
+
hiringId: number;
|
|
3740
|
+
amount: number;
|
|
3741
|
+
}
|
|
3742
|
+
|
|
3500
3743
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
3501
3744
|
|
|
3502
3745
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -3713,4 +3956,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3713
3956
|
isActive: boolean;
|
|
3714
3957
|
}
|
|
3715
3958
|
|
|
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 };
|
|
3959
|
+
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 };
|