@experts_hub/shared 1.0.558 → 1.0.560

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.
Files changed (43) hide show
  1. package/dist/index.d.mts +261 -1
  2. package/dist/index.d.ts +261 -1
  3. package/dist/index.js +341 -24
  4. package/dist/index.mjs +325 -24
  5. package/dist/modules/authentication/pattern/pattern.d.ts +10 -0
  6. package/dist/modules/bank/pattern/pattern.d.ts +3 -0
  7. package/dist/modules/commission/index.d.ts +1 -0
  8. package/dist/modules/commission/pattern/pattern.d.ts +3 -0
  9. package/dist/modules/contract/pattern/pattern.d.ts +14 -0
  10. package/dist/modules/dispute/index.d.ts +1 -0
  11. package/dist/modules/dispute/pattern/pattern.d.ts +5 -0
  12. package/dist/modules/freelancer-admin/pattern/pattern.d.ts +5 -0
  13. package/dist/modules/hiring/index.d.ts +1 -0
  14. package/dist/modules/hiring/pattern/pattern.d.ts +5 -0
  15. package/dist/modules/index.d.ts +7 -0
  16. package/dist/modules/interview/pattern/pattern.d.ts +47 -0
  17. package/dist/modules/invoice/pattern/pattern.d.ts +5 -0
  18. package/dist/modules/job/dto/job-basic-information-v2.dto.d.ts +5 -0
  19. package/dist/modules/job/pattern/pattern.d.ts +34 -0
  20. package/dist/modules/job-admin/dto/admin-job-basic-information-v2.dto.d.ts +5 -0
  21. package/dist/modules/llm/index.d.ts +1 -0
  22. package/dist/modules/llm/pattern/pattern.d.ts +3 -0
  23. package/dist/modules/notification/pattern/pattern.d.ts +4 -0
  24. package/dist/modules/onboarding/pattern/pattern.d.ts +11 -0
  25. package/dist/modules/question/pattern/pattern.d.ts +4 -0
  26. package/dist/modules/resume-parser/pattern/pattern.d.ts +3 -0
  27. package/dist/modules/senseloaf/index.d.ts +1 -0
  28. package/dist/modules/senseloaf/pattern/pattern.d.ts +5 -0
  29. package/dist/modules/skill/index.d.ts +1 -0
  30. package/dist/modules/skill/pattern/pattern.d.ts +4 -0
  31. package/dist/modules/stripe/pattern/pattern.d.ts +6 -0
  32. package/dist/modules/timesheet/pattern/pattern.d.ts +15 -0
  33. package/dist/modules/user/client-candidate-preference/index.d.ts +1 -0
  34. package/dist/modules/user/client-candidate-preference/pattern/pattern.d.ts +7 -0
  35. package/dist/modules/user/client-profile/pattern/pattern.d.ts +6 -0
  36. package/dist/modules/user/freelancer-profile/pattern/pattern.d.ts +26 -0
  37. package/dist/modules/user/freelancer-skill/pattern/pattern.d.ts +1 -0
  38. package/dist/modules/user/signature/index.d.ts +1 -0
  39. package/dist/modules/user/signature/pattern/pattern.d.ts +4 -0
  40. package/dist/modules/user/subadmin/pattern/pattern.d.ts +1 -0
  41. package/dist/modules/wallet/index.d.ts +1 -0
  42. package/dist/modules/wallet/pattern/pattern.d.ts +10 -0
  43. 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 {
@@ -553,6 +622,10 @@ declare enum typeOfExperienceDtoEnumV2 {
553
622
  SINGLE = "SINGLE",
554
623
  RANGE = "RANGE"
555
624
  }
625
+ declare enum StepCompletedEnumV2 {
626
+ BASIC_INFORMATION = "BASIC_INFORMATION",
627
+ JOB_DESCRIPTION = "JOB_DESCRIPTION"
628
+ }
556
629
  declare class JobLocationDto {
557
630
  countryId: number | null;
558
631
  stateId: number | null;
@@ -585,6 +658,7 @@ declare class JobBasicInformationV2Dto {
585
658
  yearsOfExperienceFrom?: string;
586
659
  yearsOfExperienceTo?: string;
587
660
  businessIndustry?: string;
661
+ stepCompleted?: StepCompletedEnumV2;
588
662
  additionalComment?: string;
589
663
  }
590
664
 
@@ -597,6 +671,32 @@ declare const PROFILE_PATTERN: {
597
671
  uploadFreelancerProfilePic: string;
598
672
  updateFreelancerProfile: string;
599
673
  uploadFreelancerServiceAgreement: string;
674
+ fetchFreelancerServiceAgreement: string;
675
+ generateFreelancerServiceAgreement: string;
676
+ esignFreelancerServiceAgreementForClient: string;
677
+ freelancerResumeDataMappingDev: string;
678
+ freelancerMcqScoreMappingDev: string;
679
+ fetchFreelancerDropdown: string;
680
+ fetchFreelancerDesignationDropdown: string;
681
+ deleteFreelancerProfilePic: string;
682
+ fetchRecommendedJobsForFreelancer: string;
683
+ fetchRecommendedClientsDropdownForFreelancerV2: string;
684
+ fetchRecommendedJobsDropdownForFreelancerV2: string;
685
+ fetchRecommendedJobsForFreelancerV2: string;
686
+ fetchAppliedJobsOfFreelancer: string;
687
+ fetchAppliedJobsDropdownForFreelancer: string;
688
+ countOfActiveFreelancers: string;
689
+ markFollowedOnLinkedIn: string;
690
+ fetchFreelancerResumeByUuId: string;
691
+ freelancerDataSetup: string;
692
+ freelancerEmailAndMobileMasking: string;
693
+ fetchClientInfoForChat: string;
694
+ fetchAiAssessmentDetails: string;
695
+ captureAiAssessmentResult: string;
696
+ };
697
+ declare const FREELANCER_ASSESSMENT_REQUEST_PATTERN: {
698
+ fetchAssessmentRequestsForFreelancer: string;
699
+ createFreelancerAssessmentRequest: string;
600
700
  };
601
701
 
602
702
  declare class FreelancerChangePasswordDto {
@@ -646,6 +746,9 @@ declare const BANK_PATTERN: {
646
746
  addFreelancerBankDetails: string;
647
747
  fetchFreelancerBankDetails: string;
648
748
  updateFreelancerBankDetails: string;
749
+ deleteBankAccount: string;
750
+ fetchBankAccounts: string;
751
+ setBankAccountPrimary: string;
649
752
  };
650
753
 
651
754
  declare enum BankAccountScope {
@@ -698,6 +801,10 @@ declare class SystemPreferenceDto {
698
801
  declare const NOTIFICATION_PATTERN: {
699
802
  handleAccountVerificationNotification: string;
700
803
  handleResetLinkNotification: string;
804
+ handleBusinessAccountCreatedNotification: string;
805
+ handleBusinessAccountSetPasswordNotification: string;
806
+ handleFreelancerAccountSetPasswordNotification: string;
807
+ handleSendBulkInterviewInvites: string;
701
808
  };
702
809
 
703
810
  declare const RATING_PATTERN: {
@@ -2404,6 +2511,7 @@ declare const PERMISSION_PATTERN: {
2404
2511
  declare const FREELANCER_SKILL_PATTERN: {
2405
2512
  fetchFreelancerSkill: string;
2406
2513
  saveFreelancerSkill: string;
2514
+ fetchFreelancersSkillDropdown: string;
2407
2515
  };
2408
2516
 
2409
2517
  declare class FreelancerSkillDto {
@@ -2422,6 +2530,11 @@ declare const ADMIN_FREELANCER_PATTERN: {
2422
2530
  adminUpdateFreelancer: string;
2423
2531
  adminDeleteFreelancer: string;
2424
2532
  fetchFreelancerGraphCount: string;
2533
+ adminExportFreelancerV2: string;
2534
+ sendAiAssessmentLink: string;
2535
+ fetchAIassessmentsForAdmin: string;
2536
+ fetchAiAssessmentRequestsForAdmin: string;
2537
+ updateAssessmentRequestStatus: string;
2425
2538
  };
2426
2539
 
2427
2540
  declare enum NatureOfWorkDto {
@@ -2708,6 +2821,14 @@ declare class FreelancerDeclarationDto {
2708
2821
  declarationAccepted: string;
2709
2822
  }
2710
2823
 
2824
+ declare const CLIENT_CANDIDATE_PREFERENCE_PATTERN: {
2825
+ fetchClientPreferredCandidate: string;
2826
+ markCandidateAsNotSuitable: string;
2827
+ markCandidateAsNotSuitableInBulk: string;
2828
+ markCandidateAsShortlisted: string;
2829
+ markCandidateAsShortlistedInBulk: string;
2830
+ };
2831
+
2711
2832
  declare const CMS_PATTERNS: {
2712
2833
  fetchCms: string;
2713
2834
  createCms: string;
@@ -2839,6 +2960,10 @@ declare enum typeOfExperienceAdminEnumDto {
2839
2960
  SINGLE = "SINGLE",
2840
2961
  RANGE = "RANGE"
2841
2962
  }
2963
+ declare enum AdminStepCompletedEnumV2 {
2964
+ BASIC_INFORMATION = "BASIC_INFORMATION",
2965
+ JOB_DESCRIPTION = "JOB_DESCRIPTION"
2966
+ }
2842
2967
  declare class JobLocationAdminDto {
2843
2968
  countryId: number;
2844
2969
  stateId: number;
@@ -2872,6 +2997,7 @@ declare class AdminJobBasicInformationV2Dto {
2872
2997
  additionalComment?: string;
2873
2998
  goodToHaveSkills: string[];
2874
2999
  jobRoleCanonicalName?: string;
3000
+ stepCompleted?: AdminStepCompletedEnumV2;
2875
3001
  }
2876
3002
 
2877
3003
  declare const LEAD_PATTERN: {
@@ -2925,6 +3051,8 @@ declare const ADMIN_PERMISSION_PATTERN: {
2925
3051
 
2926
3052
  declare const INTERVIEW_INVITE_PATTERN: {
2927
3053
  sendInterviewInvite: string;
3054
+ fetchInvitedFreelancerForClient: string;
3055
+ fetchInterviewInvite: string;
2928
3056
  };
2929
3057
  declare const F2F_INTERVIEW_PATTERN: {
2930
3058
  fetchBookings: string;
@@ -2934,16 +3062,61 @@ declare const F2F_INTERVIEW_PATTERN: {
2934
3062
  createF2FInterview: string;
2935
3063
  createF2FInterviewRescheduleRequest: string;
2936
3064
  rejectF2FInterviewRescheduleRequest: string;
3065
+ fetchF2FInterviewsForClient: string;
3066
+ fetchInterviewedFreelancerForClient: string;
3067
+ createF2FInterviewDirect: string;
3068
+ approveF2FInterviewRescheduleRequest: string;
3069
+ fetchF2FInterviewByUuidWithJobDetailsForClient: string;
3070
+ fetchF2FInterviewByUuidWithJobDetailsForFreelancer: string;
3071
+ fetchF2FInterviewByUuidWithJobDetails: string;
2937
3072
  };
2938
3073
  declare const AI_INTERVIEW_PATTERN: {
3074
+ fetchAiInterviewDetailPublic: string;
3075
+ markAiInterviewAsInProgressPublic: string;
3076
+ markAiInterviewAsExpiredPublic: string;
3077
+ captureAiInterviewResultPublic: string;
3078
+ fetchAiInterviewforClient: string;
3079
+ fetchAiInterviewforFreelancer: string;
3080
+ fetchAiInterviewByUuidWithJobDetailsForFreelancer: string;
3081
+ fetchRescheduleRequestsForFreelancerAiInterview: string;
3082
+ fetchRescheduleRequestsForClientAiInterview: string;
3083
+ fetchAiInterviewAnalysisForClient: string;
2939
3084
  fetchAiInterviewRescheduleRequestsForClient: string;
2940
3085
  createAiInterviewRescheduleRequest: string;
2941
3086
  approveAiInterviewRescheduleRequest: string;
2942
3087
  rejectAiInterviewRescheduleRequest: string;
3088
+ handleAiInterviewAuthentication: string;
3089
+ handleAiInterviewQuestionGeneration: string;
3090
+ handleAiInterviewTemplateGeneration: string;
3091
+ handleAiInterviewLinkGeneration: string;
3092
+ handleAiInterviewInsights: string;
2943
3093
  };
2944
3094
  declare const CALENDLY_PATTERN: {
2945
3095
  handleCalendlyWebhook: string;
2946
3096
  };
3097
+ declare const ZOOM_PATTERN: {
3098
+ handleZoomWebhook: string;
3099
+ handleTestZoomWebhook: string;
3100
+ handleZoomRecordingSettlement: string;
3101
+ };
3102
+ declare const INTERVIEW_PATTERN: {
3103
+ fetchInterviews: string;
3104
+ fetchInterviewDetail: string;
3105
+ fetchInterviewType: string;
3106
+ fetchInterviewBasicInformation: string;
3107
+ createInterviewBasicInformation: string;
3108
+ updateInterviewBasicInformation: string;
3109
+ fetchInterviewTypeInformation: string;
3110
+ updateInterviewTypeInformation: string;
3111
+ fetchInterviewSkills: string;
3112
+ createInterviewSkills: string;
3113
+ fetchInterviewQuestions: string;
3114
+ createInterviewQuestions: string;
3115
+ fetchInterviewSetting: string;
3116
+ updateInterviewSetting: string;
3117
+ markInterviewAsPublished: string;
3118
+ deleteInterview: string;
3119
+ };
2947
3120
 
2948
3121
  declare enum CandidateType {
2949
3122
  SHORTLISTED = "SHORTLISTED",
@@ -3000,6 +3173,20 @@ declare class RejectAIInterviewRescheduleRequestDto {
3000
3173
  }
3001
3174
 
3002
3175
  declare const CONTRACT_PATTERN: {
3176
+ generateContract: string;
3177
+ fetchHiredFreelancerForClient: string;
3178
+ esignContractForClient: string;
3179
+ markContractViewedByFreelancer: string;
3180
+ esignContractForFreelancer: string;
3181
+ fetchFreelancerDropdownForClient: string;
3182
+ fetchClientDropdownForFreelancer: string;
3183
+ escrowFundForContract: string;
3184
+ markContractAsActive: string;
3185
+ fetchActiveContractsForFreelancer: string;
3186
+ fetchHiredFreelancerForGroupCreation: string;
3187
+ fetchActiveContractFreelancerCount: string;
3188
+ fetchJobsDropDownForContractFilters: string;
3189
+ fetchOfferedJobsForFreelancer: string;
3003
3190
  fetchContractsForClient: string;
3004
3191
  fetchContractCountForClientAsPerStatus: string;
3005
3192
  fetchContractsForFreelancer: string;
@@ -3041,6 +3228,12 @@ declare const STRIPE_PATTERN: {
3041
3228
  getConnectedAccounts: string;
3042
3229
  getTransferHistory: string;
3043
3230
  fetchTransactions: string;
3231
+ handleStripeWebhookTestEvent: string;
3232
+ createClientCustomerAccount: string;
3233
+ preCheckoutCalculation: string;
3234
+ clientAddFund: string;
3235
+ getFreelancerAccountBalance: string;
3236
+ getBalanceTransactionsForFreelancer: string;
3044
3237
  };
3045
3238
 
3046
3239
  declare class CreateCheckoutSessionDto {
@@ -3057,10 +3250,25 @@ declare const TIMESHEET_FREELANCER_PATTERN: {
3057
3250
  fetchMissingTimesheetsForFreelancer: string;
3058
3251
  fetchSubmitedTimesheetsForFreelancer: string;
3059
3252
  fetchTimesheetsForResubmitForFreelancer: string;
3253
+ fetchTimesheetsByDateRangeAndJobIdForFreelancer: string;
3254
+ fetchWeeklyCardSummeryByJobIdForFreelancer: string;
3255
+ fetchCardSummeryByTimesheetLineIdForFreelancer: string;
3256
+ fetchApprovedTimesheetsForFreelancer: string;
3257
+ fetchPendingApprovalTimesheetsForFreelancer: string;
3258
+ fetchAllSubmittedTimesheetsForFreelancer: string;
3259
+ checkTimesheetSubmissionStatusForFreelancer: string;
3260
+ fetchSubmissionHistoryForFreelancer: string;
3261
+ resubmitTimesheetForFreelancer: string;
3262
+ createMissingTimesheetLine: string;
3263
+ fetchClientDropDownForFreelancer: string;
3264
+ fetchJobsDropDownForFreelancer: string;
3060
3265
  };
3061
3266
  declare const TIMESHEET_CLIENT_PATTERN: {
3062
3267
  approveFreelancerTimesheetForClient: string;
3063
3268
  rejectFreelancerTimesheetForClient: string;
3269
+ fetchAllSubmittedTimesheetsForClient: string;
3270
+ fetchAllSendBackTimesheetsForClient: string;
3271
+ fetchAllPendingApprovalTimesheetsForClient: string;
3064
3272
  };
3065
3273
 
3066
3274
  declare class CreateFreelancerTimesheetDto {
@@ -3097,12 +3305,23 @@ declare const INVOICE_PATTERN: {
3097
3305
  updateInvoiceStatus: string;
3098
3306
  fetchAnalyticsForClient: string;
3099
3307
  fetchAnalyticsForFreelancer: string;
3308
+ fetchFreelancerDropdownForClient: string;
3309
+ fetchInvoicesSummeryForClient: string;
3310
+ fetchDashboardAnalyticsForClient: string;
3311
+ fetchPaymentDetailsByInvoiceId: string;
3312
+ fetchInvoiceReportsForClient: string;
3100
3313
  };
3101
3314
 
3102
3315
  declare class UpdateInvoiceStatusDto {
3103
3316
  status: InvoiceStatusEnum;
3104
3317
  }
3105
3318
 
3319
+ declare const DISPUTE_PATTERN: {
3320
+ fetchDisputes: string;
3321
+ fetchDisputeById: string;
3322
+ createDispute: string;
3323
+ };
3324
+
3106
3325
  declare class CreateDisputeDto {
3107
3326
  clientId: number;
3108
3327
  freelancerId: number;
@@ -3113,11 +3332,52 @@ declare class CreateDisputeDto {
3113
3332
  dynamicFields?: Record<string, any>;
3114
3333
  }
3115
3334
 
3335
+ declare const SENSELOAF_PATTERN: {
3336
+ handleAiAssessmentDetails: string;
3337
+ handelAiAssessmentCreation: string;
3338
+ handleJdParsing: string;
3339
+ };
3340
+
3116
3341
  declare class AiInterviewQuestionGenerateDto {
3117
3342
  jobDescription: string;
3118
3343
  numQuestions: number;
3119
3344
  }
3120
3345
 
3346
+ declare const COMMISSION_PATTERN: {
3347
+ fetchCommission: string;
3348
+ };
3349
+
3350
+ declare const HIRING_PATTERN: {
3351
+ fetchAllHiredFreelancerForClient: string;
3352
+ fetchAllHiredClientForFreelancer: string;
3353
+ createHiring: string;
3354
+ };
3355
+
3356
+ declare const LLM_PATTERN: {
3357
+ handleMcqGeneration: string;
3358
+ };
3359
+
3360
+ declare const SKILL_PATTERN: {
3361
+ fetchSkillsDropdown: string;
3362
+ fetchSkillsDropdownV2: string;
3363
+ };
3364
+
3365
+ declare const SIGNATURE_PATTERN: {
3366
+ fetchSignatures: string;
3367
+ saveSignature: string;
3368
+ };
3369
+
3370
+ declare const WALLET_PATTERN: {
3371
+ fetchConnectAccountDetails: string;
3372
+ fetchWalletTransactions: string;
3373
+ addTopupEscrowAmount: string;
3374
+ debitCommissionFromClientForFTEHiring: string;
3375
+ };
3376
+ declare const WALLET_ADMIN_PATTERN: {
3377
+ fetchAdminWalletBalance: string;
3378
+ fetchAdminWalletTransactions: string;
3379
+ };
3380
+
3121
3381
  declare const UserTCPAdapter: () => MicroserviceOptions;
3122
3382
 
3123
3383
  declare const JobTCPAdapter: () => MicroserviceOptions;
@@ -3334,4 +3594,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
3334
3594
  isActive: boolean;
3335
3595
  }
3336
3596
 
3337
- 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, 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 };
3597
+ 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 };