@experts_hub/shared 1.0.559 → 1.0.561
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/job.entity.d.ts +4 -0
- package/dist/index.d.mts +259 -1
- package/dist/index.d.ts +259 -1
- package/dist/index.js +363 -24
- package/dist/index.mjs +348 -24
- package/dist/modules/authentication/pattern/pattern.d.ts +10 -0
- package/dist/modules/bank/pattern/pattern.d.ts +3 -0
- package/dist/modules/commission/index.d.ts +1 -0
- package/dist/modules/commission/pattern/pattern.d.ts +3 -0
- package/dist/modules/contract/pattern/pattern.d.ts +14 -0
- package/dist/modules/dispute/index.d.ts +1 -0
- package/dist/modules/dispute/pattern/pattern.d.ts +5 -0
- package/dist/modules/freelancer-admin/pattern/pattern.d.ts +5 -0
- package/dist/modules/hiring/index.d.ts +1 -0
- package/dist/modules/hiring/pattern/pattern.d.ts +5 -0
- package/dist/modules/index.d.ts +7 -0
- package/dist/modules/interview/pattern/pattern.d.ts +47 -0
- package/dist/modules/invoice/pattern/pattern.d.ts +5 -0
- package/dist/modules/job/dto/job-basic-information-v2.dto.d.ts +4 -0
- package/dist/modules/job/pattern/pattern.d.ts +34 -0
- package/dist/modules/llm/index.d.ts +1 -0
- package/dist/modules/llm/pattern/pattern.d.ts +3 -0
- package/dist/modules/notification/pattern/pattern.d.ts +4 -0
- package/dist/modules/onboarding/pattern/pattern.d.ts +11 -0
- package/dist/modules/question/pattern/pattern.d.ts +4 -0
- package/dist/modules/resume-parser/pattern/pattern.d.ts +3 -0
- package/dist/modules/senseloaf/index.d.ts +1 -0
- package/dist/modules/senseloaf/pattern/pattern.d.ts +5 -0
- package/dist/modules/skill/index.d.ts +1 -0
- package/dist/modules/skill/pattern/pattern.d.ts +4 -0
- package/dist/modules/stripe/pattern/pattern.d.ts +6 -0
- package/dist/modules/timesheet/pattern/pattern.d.ts +15 -0
- package/dist/modules/user/client-candidate-preference/index.d.ts +1 -0
- package/dist/modules/user/client-candidate-preference/pattern/pattern.d.ts +7 -0
- package/dist/modules/user/client-profile/pattern/pattern.d.ts +6 -0
- package/dist/modules/user/freelancer-profile/pattern/pattern.d.ts +26 -0
- package/dist/modules/user/freelancer-skill/pattern/pattern.d.ts +1 -0
- package/dist/modules/user/signature/index.d.ts +1 -0
- package/dist/modules/user/signature/pattern/pattern.d.ts +4 -0
- package/dist/modules/user/subadmin/pattern/pattern.d.ts +1 -0
- package/dist/modules/wallet/index.d.ts +1 -0
- package/dist/modules/wallet/pattern/pattern.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,17 @@ declare const AUTHENTICATION_PATTERN: {
|
|
|
12
12
|
handleForgotPassword: string;
|
|
13
13
|
handleResetPassword: string;
|
|
14
14
|
handleValidateResetPasswordToken: string;
|
|
15
|
+
handleVerifyPermission: string;
|
|
16
|
+
handleValidateEmail: string;
|
|
17
|
+
handleValidateEmailForLogin: string;
|
|
18
|
+
handleValidateMobile: string;
|
|
19
|
+
handleAdminLogin: string;
|
|
15
20
|
handleSetPassword: string;
|
|
21
|
+
signUpWithLinkedIn: string;
|
|
22
|
+
loginWithLinkedIn: string;
|
|
23
|
+
signUpWithGoogle: string;
|
|
24
|
+
loginWithGoogle: string;
|
|
25
|
+
validateOnboardingToken: string;
|
|
16
26
|
};
|
|
17
27
|
|
|
18
28
|
declare enum ScopeEnum$3 {
|
|
@@ -137,6 +147,17 @@ declare const ONBOARDING_PATTERN: {
|
|
|
137
147
|
handleClientAccountCreation: string;
|
|
138
148
|
handleClientProfileQuestion: string;
|
|
139
149
|
changeFreelancerPassword: string;
|
|
150
|
+
handleFetchClientProfileQuestion: string;
|
|
151
|
+
verifyClientOnboardingToken: string;
|
|
152
|
+
handleFetchFreelancerResume: string;
|
|
153
|
+
handleFreelancerResumeParsing: string;
|
|
154
|
+
initiateFreelancerMcqAssessment: string;
|
|
155
|
+
handleFetchAiAssessmentLink: string;
|
|
156
|
+
skipFreelancerAiAssessment: string;
|
|
157
|
+
initiateFreelancerAiAssessment: string;
|
|
158
|
+
captureAiAssessmentStatus: string;
|
|
159
|
+
handleFetchFreelancerProfileQuestion: string;
|
|
160
|
+
handleFetchFreelancerDetails: string;
|
|
140
161
|
};
|
|
141
162
|
|
|
142
163
|
declare class FreelancerCreateAccountDto {
|
|
@@ -215,6 +236,9 @@ declare class ClientCreateAccountDto {
|
|
|
215
236
|
|
|
216
237
|
declare const RESUME_PARSER_PATTERN: {
|
|
217
238
|
handleResumeParsing: string;
|
|
239
|
+
handleResumeParsingByUrl: string;
|
|
240
|
+
handleResumeDataProcessing: string;
|
|
241
|
+
handleCheckResumeEligibility: string;
|
|
218
242
|
};
|
|
219
243
|
|
|
220
244
|
declare const SUBADMIN_PATTERN: {
|
|
@@ -226,6 +250,7 @@ declare const SUBADMIN_PATTERN: {
|
|
|
226
250
|
updateSubAdminAccountStatus: string;
|
|
227
251
|
updateSubAdmin: string;
|
|
228
252
|
deleteSubAdmin: string;
|
|
253
|
+
fetchSubAdminCount: string;
|
|
229
254
|
};
|
|
230
255
|
|
|
231
256
|
declare class CreateSubAdminDto {
|
|
@@ -337,6 +362,12 @@ declare const CLIENT_PROFILE_PATTERN: {
|
|
|
337
362
|
updateClientLogo: string;
|
|
338
363
|
changeClientPassword: string;
|
|
339
364
|
uploadClientServiceAgreement: string;
|
|
365
|
+
fetchClientServiceAgreement: string;
|
|
366
|
+
generateClientServiceAgreement: string;
|
|
367
|
+
esignClientServiceAgreementForClient: string;
|
|
368
|
+
fetchClientServiceAgreementStatus: string;
|
|
369
|
+
fetchRecommendedFreelancers: string;
|
|
370
|
+
fetchRecommendedFreelancersV2: string;
|
|
340
371
|
};
|
|
341
372
|
|
|
342
373
|
declare class UpdateCompanyProfileDto {
|
|
@@ -417,6 +448,10 @@ declare const ONBOARDING_QUESTION_PATTERN: {
|
|
|
417
448
|
};
|
|
418
449
|
declare const ASSESSMENT_QUESTION_PATTERN: {
|
|
419
450
|
fetchAssessmentQuestions: string;
|
|
451
|
+
handleAssessmentQuestionImport: string;
|
|
452
|
+
handelAssessmentRecordAnswer: string;
|
|
453
|
+
handelAssessmentRecordAnswers: string;
|
|
454
|
+
fetchAssessmentSummary: string;
|
|
420
455
|
};
|
|
421
456
|
|
|
422
457
|
declare class CreateQuestionDto {
|
|
@@ -466,6 +501,40 @@ declare const JOB_PATTERN: {
|
|
|
466
501
|
updateJobDescription: string;
|
|
467
502
|
updateJobStatus: string;
|
|
468
503
|
searchJobsByRoleAndSkills: string;
|
|
504
|
+
handleBulkRecommendationAdjustment: string;
|
|
505
|
+
refreshJobFreelancerRecommendationView: string;
|
|
506
|
+
fetchJobConfig: string;
|
|
507
|
+
fetchJobRoleSuggestions: string;
|
|
508
|
+
fetchJobCount: string;
|
|
509
|
+
fetchJobsDropdownForFilters: string;
|
|
510
|
+
fetchJobsDropdownForInterview: string;
|
|
511
|
+
fetchJobsDropdownForFreelancer: string;
|
|
512
|
+
fetchJobDetailForFreelancer: string;
|
|
513
|
+
fetchJobBasicInformationV2: string;
|
|
514
|
+
createJobBasicInformationV2: string;
|
|
515
|
+
updateJobBasicInformationV2: string;
|
|
516
|
+
deleteJob: string;
|
|
517
|
+
fetchRecommendedFreelancersForJobs: string;
|
|
518
|
+
fetchRecommendedFreelancersForJob: string;
|
|
519
|
+
fetchRecommendedFreelancersForJobV2: string;
|
|
520
|
+
handleJobViwedCountIncrement: string;
|
|
521
|
+
jobDataSetup: string;
|
|
522
|
+
fetchJobsForComparison: string;
|
|
523
|
+
fetchJobSkillDropdownForClient: string;
|
|
524
|
+
};
|
|
525
|
+
declare const JOB_ADMIN_PATTERN: {
|
|
526
|
+
adminFetchJobByIdV2: string;
|
|
527
|
+
adminExportJobsToCSV: string;
|
|
528
|
+
adminFetchJobDescription: string;
|
|
529
|
+
adminUpdateJobDescription: string;
|
|
530
|
+
};
|
|
531
|
+
declare const JOB_APPLICATION_PATTERN: {
|
|
532
|
+
fetchJobApplicationCountAsPerStatusByJobId: string;
|
|
533
|
+
fetchJobApplicationsByJobId: string;
|
|
534
|
+
fetchJobApplicants: string;
|
|
535
|
+
createJobApplication: string;
|
|
536
|
+
changeJobApplicationStatus: string;
|
|
537
|
+
changeJobApplicationStatusInBulk: string;
|
|
469
538
|
};
|
|
470
539
|
|
|
471
540
|
declare enum JobLocationEnum$1 {
|
|
@@ -579,6 +648,10 @@ declare class JobBasicInformationV2Dto {
|
|
|
579
648
|
hideExpectedSalaryFrom: boolean;
|
|
580
649
|
expectedSalaryTo: number;
|
|
581
650
|
hideExpectedSalaryTo: boolean;
|
|
651
|
+
expectedAnnualBudgetFrom: number;
|
|
652
|
+
hideExpectedAnnualBudgetFrom: boolean;
|
|
653
|
+
expectedAnnualBudgetTo: number;
|
|
654
|
+
hideExpectedAnnualBudgetTo: boolean;
|
|
582
655
|
years: string;
|
|
583
656
|
months: string;
|
|
584
657
|
weeks: string;
|
|
@@ -602,6 +675,32 @@ declare const PROFILE_PATTERN: {
|
|
|
602
675
|
uploadFreelancerProfilePic: string;
|
|
603
676
|
updateFreelancerProfile: string;
|
|
604
677
|
uploadFreelancerServiceAgreement: string;
|
|
678
|
+
fetchFreelancerServiceAgreement: string;
|
|
679
|
+
generateFreelancerServiceAgreement: string;
|
|
680
|
+
esignFreelancerServiceAgreementForClient: string;
|
|
681
|
+
freelancerResumeDataMappingDev: string;
|
|
682
|
+
freelancerMcqScoreMappingDev: string;
|
|
683
|
+
fetchFreelancerDropdown: string;
|
|
684
|
+
fetchFreelancerDesignationDropdown: string;
|
|
685
|
+
deleteFreelancerProfilePic: string;
|
|
686
|
+
fetchRecommendedJobsForFreelancer: string;
|
|
687
|
+
fetchRecommendedClientsDropdownForFreelancerV2: string;
|
|
688
|
+
fetchRecommendedJobsDropdownForFreelancerV2: string;
|
|
689
|
+
fetchRecommendedJobsForFreelancerV2: string;
|
|
690
|
+
fetchAppliedJobsOfFreelancer: string;
|
|
691
|
+
fetchAppliedJobsDropdownForFreelancer: string;
|
|
692
|
+
countOfActiveFreelancers: string;
|
|
693
|
+
markFollowedOnLinkedIn: string;
|
|
694
|
+
fetchFreelancerResumeByUuId: string;
|
|
695
|
+
freelancerDataSetup: string;
|
|
696
|
+
freelancerEmailAndMobileMasking: string;
|
|
697
|
+
fetchClientInfoForChat: string;
|
|
698
|
+
fetchAiAssessmentDetails: string;
|
|
699
|
+
captureAiAssessmentResult: string;
|
|
700
|
+
};
|
|
701
|
+
declare const FREELANCER_ASSESSMENT_REQUEST_PATTERN: {
|
|
702
|
+
fetchAssessmentRequestsForFreelancer: string;
|
|
703
|
+
createFreelancerAssessmentRequest: string;
|
|
605
704
|
};
|
|
606
705
|
|
|
607
706
|
declare class FreelancerChangePasswordDto {
|
|
@@ -651,6 +750,9 @@ declare const BANK_PATTERN: {
|
|
|
651
750
|
addFreelancerBankDetails: string;
|
|
652
751
|
fetchFreelancerBankDetails: string;
|
|
653
752
|
updateFreelancerBankDetails: string;
|
|
753
|
+
deleteBankAccount: string;
|
|
754
|
+
fetchBankAccounts: string;
|
|
755
|
+
setBankAccountPrimary: string;
|
|
654
756
|
};
|
|
655
757
|
|
|
656
758
|
declare enum BankAccountScope {
|
|
@@ -703,6 +805,10 @@ declare class SystemPreferenceDto {
|
|
|
703
805
|
declare const NOTIFICATION_PATTERN: {
|
|
704
806
|
handleAccountVerificationNotification: string;
|
|
705
807
|
handleResetLinkNotification: string;
|
|
808
|
+
handleBusinessAccountCreatedNotification: string;
|
|
809
|
+
handleBusinessAccountSetPasswordNotification: string;
|
|
810
|
+
handleFreelancerAccountSetPasswordNotification: string;
|
|
811
|
+
handleSendBulkInterviewInvites: string;
|
|
706
812
|
};
|
|
707
813
|
|
|
708
814
|
declare const RATING_PATTERN: {
|
|
@@ -1575,6 +1681,10 @@ declare class Job extends BaseEntity {
|
|
|
1575
1681
|
hideExpectedSalaryFrom: boolean;
|
|
1576
1682
|
expectedSalaryTo: number;
|
|
1577
1683
|
hideExpectedSalaryTo: boolean;
|
|
1684
|
+
expectedAnnualBudgetFrom: number;
|
|
1685
|
+
hideExpectedAnnualBudgetFrom: boolean;
|
|
1686
|
+
expectedAnnualBudgetTo: number;
|
|
1687
|
+
hideExpectedAnnualBudgetTo: boolean;
|
|
1578
1688
|
years: string;
|
|
1579
1689
|
months: string;
|
|
1580
1690
|
weeks: string;
|
|
@@ -2409,6 +2519,7 @@ declare const PERMISSION_PATTERN: {
|
|
|
2409
2519
|
declare const FREELANCER_SKILL_PATTERN: {
|
|
2410
2520
|
fetchFreelancerSkill: string;
|
|
2411
2521
|
saveFreelancerSkill: string;
|
|
2522
|
+
fetchFreelancersSkillDropdown: string;
|
|
2412
2523
|
};
|
|
2413
2524
|
|
|
2414
2525
|
declare class FreelancerSkillDto {
|
|
@@ -2427,6 +2538,11 @@ declare const ADMIN_FREELANCER_PATTERN: {
|
|
|
2427
2538
|
adminUpdateFreelancer: string;
|
|
2428
2539
|
adminDeleteFreelancer: string;
|
|
2429
2540
|
fetchFreelancerGraphCount: string;
|
|
2541
|
+
adminExportFreelancerV2: string;
|
|
2542
|
+
sendAiAssessmentLink: string;
|
|
2543
|
+
fetchAIassessmentsForAdmin: string;
|
|
2544
|
+
fetchAiAssessmentRequestsForAdmin: string;
|
|
2545
|
+
updateAssessmentRequestStatus: string;
|
|
2430
2546
|
};
|
|
2431
2547
|
|
|
2432
2548
|
declare enum NatureOfWorkDto {
|
|
@@ -2713,6 +2829,14 @@ declare class FreelancerDeclarationDto {
|
|
|
2713
2829
|
declarationAccepted: string;
|
|
2714
2830
|
}
|
|
2715
2831
|
|
|
2832
|
+
declare const CLIENT_CANDIDATE_PREFERENCE_PATTERN: {
|
|
2833
|
+
fetchClientPreferredCandidate: string;
|
|
2834
|
+
markCandidateAsNotSuitable: string;
|
|
2835
|
+
markCandidateAsNotSuitableInBulk: string;
|
|
2836
|
+
markCandidateAsShortlisted: string;
|
|
2837
|
+
markCandidateAsShortlistedInBulk: string;
|
|
2838
|
+
};
|
|
2839
|
+
|
|
2716
2840
|
declare const CMS_PATTERNS: {
|
|
2717
2841
|
fetchCms: string;
|
|
2718
2842
|
createCms: string;
|
|
@@ -2935,6 +3059,8 @@ declare const ADMIN_PERMISSION_PATTERN: {
|
|
|
2935
3059
|
|
|
2936
3060
|
declare const INTERVIEW_INVITE_PATTERN: {
|
|
2937
3061
|
sendInterviewInvite: string;
|
|
3062
|
+
fetchInvitedFreelancerForClient: string;
|
|
3063
|
+
fetchInterviewInvite: string;
|
|
2938
3064
|
};
|
|
2939
3065
|
declare const F2F_INTERVIEW_PATTERN: {
|
|
2940
3066
|
fetchBookings: string;
|
|
@@ -2944,16 +3070,61 @@ declare const F2F_INTERVIEW_PATTERN: {
|
|
|
2944
3070
|
createF2FInterview: string;
|
|
2945
3071
|
createF2FInterviewRescheduleRequest: string;
|
|
2946
3072
|
rejectF2FInterviewRescheduleRequest: string;
|
|
3073
|
+
fetchF2FInterviewsForClient: string;
|
|
3074
|
+
fetchInterviewedFreelancerForClient: string;
|
|
3075
|
+
createF2FInterviewDirect: string;
|
|
3076
|
+
approveF2FInterviewRescheduleRequest: string;
|
|
3077
|
+
fetchF2FInterviewByUuidWithJobDetailsForClient: string;
|
|
3078
|
+
fetchF2FInterviewByUuidWithJobDetailsForFreelancer: string;
|
|
3079
|
+
fetchF2FInterviewByUuidWithJobDetails: string;
|
|
2947
3080
|
};
|
|
2948
3081
|
declare const AI_INTERVIEW_PATTERN: {
|
|
3082
|
+
fetchAiInterviewDetailPublic: string;
|
|
3083
|
+
markAiInterviewAsInProgressPublic: string;
|
|
3084
|
+
markAiInterviewAsExpiredPublic: string;
|
|
3085
|
+
captureAiInterviewResultPublic: string;
|
|
3086
|
+
fetchAiInterviewforClient: string;
|
|
3087
|
+
fetchAiInterviewforFreelancer: string;
|
|
3088
|
+
fetchAiInterviewByUuidWithJobDetailsForFreelancer: string;
|
|
3089
|
+
fetchRescheduleRequestsForFreelancerAiInterview: string;
|
|
3090
|
+
fetchRescheduleRequestsForClientAiInterview: string;
|
|
3091
|
+
fetchAiInterviewAnalysisForClient: string;
|
|
2949
3092
|
fetchAiInterviewRescheduleRequestsForClient: string;
|
|
2950
3093
|
createAiInterviewRescheduleRequest: string;
|
|
2951
3094
|
approveAiInterviewRescheduleRequest: string;
|
|
2952
3095
|
rejectAiInterviewRescheduleRequest: string;
|
|
3096
|
+
handleAiInterviewAuthentication: string;
|
|
3097
|
+
handleAiInterviewQuestionGeneration: string;
|
|
3098
|
+
handleAiInterviewTemplateGeneration: string;
|
|
3099
|
+
handleAiInterviewLinkGeneration: string;
|
|
3100
|
+
handleAiInterviewInsights: string;
|
|
2953
3101
|
};
|
|
2954
3102
|
declare const CALENDLY_PATTERN: {
|
|
2955
3103
|
handleCalendlyWebhook: string;
|
|
2956
3104
|
};
|
|
3105
|
+
declare const ZOOM_PATTERN: {
|
|
3106
|
+
handleZoomWebhook: string;
|
|
3107
|
+
handleTestZoomWebhook: string;
|
|
3108
|
+
handleZoomRecordingSettlement: string;
|
|
3109
|
+
};
|
|
3110
|
+
declare const INTERVIEW_PATTERN: {
|
|
3111
|
+
fetchInterviews: string;
|
|
3112
|
+
fetchInterviewDetail: string;
|
|
3113
|
+
fetchInterviewType: string;
|
|
3114
|
+
fetchInterviewBasicInformation: string;
|
|
3115
|
+
createInterviewBasicInformation: string;
|
|
3116
|
+
updateInterviewBasicInformation: string;
|
|
3117
|
+
fetchInterviewTypeInformation: string;
|
|
3118
|
+
updateInterviewTypeInformation: string;
|
|
3119
|
+
fetchInterviewSkills: string;
|
|
3120
|
+
createInterviewSkills: string;
|
|
3121
|
+
fetchInterviewQuestions: string;
|
|
3122
|
+
createInterviewQuestions: string;
|
|
3123
|
+
fetchInterviewSetting: string;
|
|
3124
|
+
updateInterviewSetting: string;
|
|
3125
|
+
markInterviewAsPublished: string;
|
|
3126
|
+
deleteInterview: string;
|
|
3127
|
+
};
|
|
2957
3128
|
|
|
2958
3129
|
declare enum CandidateType {
|
|
2959
3130
|
SHORTLISTED = "SHORTLISTED",
|
|
@@ -3010,6 +3181,20 @@ declare class RejectAIInterviewRescheduleRequestDto {
|
|
|
3010
3181
|
}
|
|
3011
3182
|
|
|
3012
3183
|
declare const CONTRACT_PATTERN: {
|
|
3184
|
+
generateContract: string;
|
|
3185
|
+
fetchHiredFreelancerForClient: string;
|
|
3186
|
+
esignContractForClient: string;
|
|
3187
|
+
markContractViewedByFreelancer: string;
|
|
3188
|
+
esignContractForFreelancer: string;
|
|
3189
|
+
fetchFreelancerDropdownForClient: string;
|
|
3190
|
+
fetchClientDropdownForFreelancer: string;
|
|
3191
|
+
escrowFundForContract: string;
|
|
3192
|
+
markContractAsActive: string;
|
|
3193
|
+
fetchActiveContractsForFreelancer: string;
|
|
3194
|
+
fetchHiredFreelancerForGroupCreation: string;
|
|
3195
|
+
fetchActiveContractFreelancerCount: string;
|
|
3196
|
+
fetchJobsDropDownForContractFilters: string;
|
|
3197
|
+
fetchOfferedJobsForFreelancer: string;
|
|
3013
3198
|
fetchContractsForClient: string;
|
|
3014
3199
|
fetchContractCountForClientAsPerStatus: string;
|
|
3015
3200
|
fetchContractsForFreelancer: string;
|
|
@@ -3051,6 +3236,12 @@ declare const STRIPE_PATTERN: {
|
|
|
3051
3236
|
getConnectedAccounts: string;
|
|
3052
3237
|
getTransferHistory: string;
|
|
3053
3238
|
fetchTransactions: string;
|
|
3239
|
+
handleStripeWebhookTestEvent: string;
|
|
3240
|
+
createClientCustomerAccount: string;
|
|
3241
|
+
preCheckoutCalculation: string;
|
|
3242
|
+
clientAddFund: string;
|
|
3243
|
+
getFreelancerAccountBalance: string;
|
|
3244
|
+
getBalanceTransactionsForFreelancer: string;
|
|
3054
3245
|
};
|
|
3055
3246
|
|
|
3056
3247
|
declare class CreateCheckoutSessionDto {
|
|
@@ -3067,10 +3258,25 @@ declare const TIMESHEET_FREELANCER_PATTERN: {
|
|
|
3067
3258
|
fetchMissingTimesheetsForFreelancer: string;
|
|
3068
3259
|
fetchSubmitedTimesheetsForFreelancer: string;
|
|
3069
3260
|
fetchTimesheetsForResubmitForFreelancer: string;
|
|
3261
|
+
fetchTimesheetsByDateRangeAndJobIdForFreelancer: string;
|
|
3262
|
+
fetchWeeklyCardSummeryByJobIdForFreelancer: string;
|
|
3263
|
+
fetchCardSummeryByTimesheetLineIdForFreelancer: string;
|
|
3264
|
+
fetchApprovedTimesheetsForFreelancer: string;
|
|
3265
|
+
fetchPendingApprovalTimesheetsForFreelancer: string;
|
|
3266
|
+
fetchAllSubmittedTimesheetsForFreelancer: string;
|
|
3267
|
+
checkTimesheetSubmissionStatusForFreelancer: string;
|
|
3268
|
+
fetchSubmissionHistoryForFreelancer: string;
|
|
3269
|
+
resubmitTimesheetForFreelancer: string;
|
|
3270
|
+
createMissingTimesheetLine: string;
|
|
3271
|
+
fetchClientDropDownForFreelancer: string;
|
|
3272
|
+
fetchJobsDropDownForFreelancer: string;
|
|
3070
3273
|
};
|
|
3071
3274
|
declare const TIMESHEET_CLIENT_PATTERN: {
|
|
3072
3275
|
approveFreelancerTimesheetForClient: string;
|
|
3073
3276
|
rejectFreelancerTimesheetForClient: string;
|
|
3277
|
+
fetchAllSubmittedTimesheetsForClient: string;
|
|
3278
|
+
fetchAllSendBackTimesheetsForClient: string;
|
|
3279
|
+
fetchAllPendingApprovalTimesheetsForClient: string;
|
|
3074
3280
|
};
|
|
3075
3281
|
|
|
3076
3282
|
declare class CreateFreelancerTimesheetDto {
|
|
@@ -3107,12 +3313,23 @@ declare const INVOICE_PATTERN: {
|
|
|
3107
3313
|
updateInvoiceStatus: string;
|
|
3108
3314
|
fetchAnalyticsForClient: string;
|
|
3109
3315
|
fetchAnalyticsForFreelancer: string;
|
|
3316
|
+
fetchFreelancerDropdownForClient: string;
|
|
3317
|
+
fetchInvoicesSummeryForClient: string;
|
|
3318
|
+
fetchDashboardAnalyticsForClient: string;
|
|
3319
|
+
fetchPaymentDetailsByInvoiceId: string;
|
|
3320
|
+
fetchInvoiceReportsForClient: string;
|
|
3110
3321
|
};
|
|
3111
3322
|
|
|
3112
3323
|
declare class UpdateInvoiceStatusDto {
|
|
3113
3324
|
status: InvoiceStatusEnum;
|
|
3114
3325
|
}
|
|
3115
3326
|
|
|
3327
|
+
declare const DISPUTE_PATTERN: {
|
|
3328
|
+
fetchDisputes: string;
|
|
3329
|
+
fetchDisputeById: string;
|
|
3330
|
+
createDispute: string;
|
|
3331
|
+
};
|
|
3332
|
+
|
|
3116
3333
|
declare class CreateDisputeDto {
|
|
3117
3334
|
clientId: number;
|
|
3118
3335
|
freelancerId: number;
|
|
@@ -3123,11 +3340,52 @@ declare class CreateDisputeDto {
|
|
|
3123
3340
|
dynamicFields?: Record<string, any>;
|
|
3124
3341
|
}
|
|
3125
3342
|
|
|
3343
|
+
declare const SENSELOAF_PATTERN: {
|
|
3344
|
+
handleAiAssessmentDetails: string;
|
|
3345
|
+
handelAiAssessmentCreation: string;
|
|
3346
|
+
handleJdParsing: string;
|
|
3347
|
+
};
|
|
3348
|
+
|
|
3126
3349
|
declare class AiInterviewQuestionGenerateDto {
|
|
3127
3350
|
jobDescription: string;
|
|
3128
3351
|
numQuestions: number;
|
|
3129
3352
|
}
|
|
3130
3353
|
|
|
3354
|
+
declare const COMMISSION_PATTERN: {
|
|
3355
|
+
fetchCommission: string;
|
|
3356
|
+
};
|
|
3357
|
+
|
|
3358
|
+
declare const HIRING_PATTERN: {
|
|
3359
|
+
fetchAllHiredFreelancerForClient: string;
|
|
3360
|
+
fetchAllHiredClientForFreelancer: string;
|
|
3361
|
+
createHiring: string;
|
|
3362
|
+
};
|
|
3363
|
+
|
|
3364
|
+
declare const LLM_PATTERN: {
|
|
3365
|
+
handleMcqGeneration: string;
|
|
3366
|
+
};
|
|
3367
|
+
|
|
3368
|
+
declare const SKILL_PATTERN: {
|
|
3369
|
+
fetchSkillsDropdown: string;
|
|
3370
|
+
fetchSkillsDropdownV2: string;
|
|
3371
|
+
};
|
|
3372
|
+
|
|
3373
|
+
declare const SIGNATURE_PATTERN: {
|
|
3374
|
+
fetchSignatures: string;
|
|
3375
|
+
saveSignature: string;
|
|
3376
|
+
};
|
|
3377
|
+
|
|
3378
|
+
declare const WALLET_PATTERN: {
|
|
3379
|
+
fetchConnectAccountDetails: string;
|
|
3380
|
+
fetchWalletTransactions: string;
|
|
3381
|
+
addTopupEscrowAmount: string;
|
|
3382
|
+
debitCommissionFromClientForFTEHiring: string;
|
|
3383
|
+
};
|
|
3384
|
+
declare const WALLET_ADMIN_PATTERN: {
|
|
3385
|
+
fetchAdminWalletBalance: string;
|
|
3386
|
+
fetchAdminWalletTransactions: string;
|
|
3387
|
+
};
|
|
3388
|
+
|
|
3131
3389
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
3132
3390
|
|
|
3133
3391
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -3344,4 +3602,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3344
3602
|
isActive: boolean;
|
|
3345
3603
|
}
|
|
3346
3604
|
|
|
3347
|
-
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, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, EmploymentTypeV2, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, 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, 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, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, 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, ResultStatusEnum, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
|
|
3605
|
+
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, 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, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, 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, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DISPUTE_PATTERN, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, 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_ADMIN_PATTERN, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, 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, 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, ResultStatusEnum, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
|