@experts_hub/shared 1.0.559 → 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 (41) hide show
  1. package/dist/index.d.mts +251 -1
  2. package/dist/index.d.ts +251 -1
  3. package/dist/index.js +313 -24
  4. package/dist/index.mjs +298 -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/pattern/pattern.d.ts +34 -0
  19. package/dist/modules/llm/index.d.ts +1 -0
  20. package/dist/modules/llm/pattern/pattern.d.ts +3 -0
  21. package/dist/modules/notification/pattern/pattern.d.ts +4 -0
  22. package/dist/modules/onboarding/pattern/pattern.d.ts +11 -0
  23. package/dist/modules/question/pattern/pattern.d.ts +4 -0
  24. package/dist/modules/resume-parser/pattern/pattern.d.ts +3 -0
  25. package/dist/modules/senseloaf/index.d.ts +1 -0
  26. package/dist/modules/senseloaf/pattern/pattern.d.ts +5 -0
  27. package/dist/modules/skill/index.d.ts +1 -0
  28. package/dist/modules/skill/pattern/pattern.d.ts +4 -0
  29. package/dist/modules/stripe/pattern/pattern.d.ts +6 -0
  30. package/dist/modules/timesheet/pattern/pattern.d.ts +15 -0
  31. package/dist/modules/user/client-candidate-preference/index.d.ts +1 -0
  32. package/dist/modules/user/client-candidate-preference/pattern/pattern.d.ts +7 -0
  33. package/dist/modules/user/client-profile/pattern/pattern.d.ts +6 -0
  34. package/dist/modules/user/freelancer-profile/pattern/pattern.d.ts +26 -0
  35. package/dist/modules/user/freelancer-skill/pattern/pattern.d.ts +1 -0
  36. package/dist/modules/user/signature/index.d.ts +1 -0
  37. package/dist/modules/user/signature/pattern/pattern.d.ts +4 -0
  38. package/dist/modules/user/subadmin/pattern/pattern.d.ts +1 -0
  39. package/dist/modules/wallet/index.d.ts +1 -0
  40. package/dist/modules/wallet/pattern/pattern.d.ts +10 -0
  41. 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 {
@@ -602,6 +671,32 @@ declare const PROFILE_PATTERN: {
602
671
  uploadFreelancerProfilePic: string;
603
672
  updateFreelancerProfile: string;
604
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;
605
700
  };
606
701
 
607
702
  declare class FreelancerChangePasswordDto {
@@ -651,6 +746,9 @@ declare const BANK_PATTERN: {
651
746
  addFreelancerBankDetails: string;
652
747
  fetchFreelancerBankDetails: string;
653
748
  updateFreelancerBankDetails: string;
749
+ deleteBankAccount: string;
750
+ fetchBankAccounts: string;
751
+ setBankAccountPrimary: string;
654
752
  };
655
753
 
656
754
  declare enum BankAccountScope {
@@ -703,6 +801,10 @@ declare class SystemPreferenceDto {
703
801
  declare const NOTIFICATION_PATTERN: {
704
802
  handleAccountVerificationNotification: string;
705
803
  handleResetLinkNotification: string;
804
+ handleBusinessAccountCreatedNotification: string;
805
+ handleBusinessAccountSetPasswordNotification: string;
806
+ handleFreelancerAccountSetPasswordNotification: string;
807
+ handleSendBulkInterviewInvites: string;
706
808
  };
707
809
 
708
810
  declare const RATING_PATTERN: {
@@ -2409,6 +2511,7 @@ declare const PERMISSION_PATTERN: {
2409
2511
  declare const FREELANCER_SKILL_PATTERN: {
2410
2512
  fetchFreelancerSkill: string;
2411
2513
  saveFreelancerSkill: string;
2514
+ fetchFreelancersSkillDropdown: string;
2412
2515
  };
2413
2516
 
2414
2517
  declare class FreelancerSkillDto {
@@ -2427,6 +2530,11 @@ declare const ADMIN_FREELANCER_PATTERN: {
2427
2530
  adminUpdateFreelancer: string;
2428
2531
  adminDeleteFreelancer: string;
2429
2532
  fetchFreelancerGraphCount: string;
2533
+ adminExportFreelancerV2: string;
2534
+ sendAiAssessmentLink: string;
2535
+ fetchAIassessmentsForAdmin: string;
2536
+ fetchAiAssessmentRequestsForAdmin: string;
2537
+ updateAssessmentRequestStatus: string;
2430
2538
  };
2431
2539
 
2432
2540
  declare enum NatureOfWorkDto {
@@ -2713,6 +2821,14 @@ declare class FreelancerDeclarationDto {
2713
2821
  declarationAccepted: string;
2714
2822
  }
2715
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
+
2716
2832
  declare const CMS_PATTERNS: {
2717
2833
  fetchCms: string;
2718
2834
  createCms: string;
@@ -2935,6 +3051,8 @@ declare const ADMIN_PERMISSION_PATTERN: {
2935
3051
 
2936
3052
  declare const INTERVIEW_INVITE_PATTERN: {
2937
3053
  sendInterviewInvite: string;
3054
+ fetchInvitedFreelancerForClient: string;
3055
+ fetchInterviewInvite: string;
2938
3056
  };
2939
3057
  declare const F2F_INTERVIEW_PATTERN: {
2940
3058
  fetchBookings: string;
@@ -2944,16 +3062,61 @@ declare const F2F_INTERVIEW_PATTERN: {
2944
3062
  createF2FInterview: string;
2945
3063
  createF2FInterviewRescheduleRequest: string;
2946
3064
  rejectF2FInterviewRescheduleRequest: string;
3065
+ fetchF2FInterviewsForClient: string;
3066
+ fetchInterviewedFreelancerForClient: string;
3067
+ createF2FInterviewDirect: string;
3068
+ approveF2FInterviewRescheduleRequest: string;
3069
+ fetchF2FInterviewByUuidWithJobDetailsForClient: string;
3070
+ fetchF2FInterviewByUuidWithJobDetailsForFreelancer: string;
3071
+ fetchF2FInterviewByUuidWithJobDetails: string;
2947
3072
  };
2948
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;
2949
3084
  fetchAiInterviewRescheduleRequestsForClient: string;
2950
3085
  createAiInterviewRescheduleRequest: string;
2951
3086
  approveAiInterviewRescheduleRequest: string;
2952
3087
  rejectAiInterviewRescheduleRequest: string;
3088
+ handleAiInterviewAuthentication: string;
3089
+ handleAiInterviewQuestionGeneration: string;
3090
+ handleAiInterviewTemplateGeneration: string;
3091
+ handleAiInterviewLinkGeneration: string;
3092
+ handleAiInterviewInsights: string;
2953
3093
  };
2954
3094
  declare const CALENDLY_PATTERN: {
2955
3095
  handleCalendlyWebhook: string;
2956
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
+ };
2957
3120
 
2958
3121
  declare enum CandidateType {
2959
3122
  SHORTLISTED = "SHORTLISTED",
@@ -3010,6 +3173,20 @@ declare class RejectAIInterviewRescheduleRequestDto {
3010
3173
  }
3011
3174
 
3012
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;
3013
3190
  fetchContractsForClient: string;
3014
3191
  fetchContractCountForClientAsPerStatus: string;
3015
3192
  fetchContractsForFreelancer: string;
@@ -3051,6 +3228,12 @@ declare const STRIPE_PATTERN: {
3051
3228
  getConnectedAccounts: string;
3052
3229
  getTransferHistory: string;
3053
3230
  fetchTransactions: string;
3231
+ handleStripeWebhookTestEvent: string;
3232
+ createClientCustomerAccount: string;
3233
+ preCheckoutCalculation: string;
3234
+ clientAddFund: string;
3235
+ getFreelancerAccountBalance: string;
3236
+ getBalanceTransactionsForFreelancer: string;
3054
3237
  };
3055
3238
 
3056
3239
  declare class CreateCheckoutSessionDto {
@@ -3067,10 +3250,25 @@ declare const TIMESHEET_FREELANCER_PATTERN: {
3067
3250
  fetchMissingTimesheetsForFreelancer: string;
3068
3251
  fetchSubmitedTimesheetsForFreelancer: string;
3069
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;
3070
3265
  };
3071
3266
  declare const TIMESHEET_CLIENT_PATTERN: {
3072
3267
  approveFreelancerTimesheetForClient: string;
3073
3268
  rejectFreelancerTimesheetForClient: string;
3269
+ fetchAllSubmittedTimesheetsForClient: string;
3270
+ fetchAllSendBackTimesheetsForClient: string;
3271
+ fetchAllPendingApprovalTimesheetsForClient: string;
3074
3272
  };
3075
3273
 
3076
3274
  declare class CreateFreelancerTimesheetDto {
@@ -3107,12 +3305,23 @@ declare const INVOICE_PATTERN: {
3107
3305
  updateInvoiceStatus: string;
3108
3306
  fetchAnalyticsForClient: string;
3109
3307
  fetchAnalyticsForFreelancer: string;
3308
+ fetchFreelancerDropdownForClient: string;
3309
+ fetchInvoicesSummeryForClient: string;
3310
+ fetchDashboardAnalyticsForClient: string;
3311
+ fetchPaymentDetailsByInvoiceId: string;
3312
+ fetchInvoiceReportsForClient: string;
3110
3313
  };
3111
3314
 
3112
3315
  declare class UpdateInvoiceStatusDto {
3113
3316
  status: InvoiceStatusEnum;
3114
3317
  }
3115
3318
 
3319
+ declare const DISPUTE_PATTERN: {
3320
+ fetchDisputes: string;
3321
+ fetchDisputeById: string;
3322
+ createDispute: string;
3323
+ };
3324
+
3116
3325
  declare class CreateDisputeDto {
3117
3326
  clientId: number;
3118
3327
  freelancerId: number;
@@ -3123,11 +3332,52 @@ declare class CreateDisputeDto {
3123
3332
  dynamicFields?: Record<string, any>;
3124
3333
  }
3125
3334
 
3335
+ declare const SENSELOAF_PATTERN: {
3336
+ handleAiAssessmentDetails: string;
3337
+ handelAiAssessmentCreation: string;
3338
+ handleJdParsing: string;
3339
+ };
3340
+
3126
3341
  declare class AiInterviewQuestionGenerateDto {
3127
3342
  jobDescription: string;
3128
3343
  numQuestions: number;
3129
3344
  }
3130
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
+
3131
3381
  declare const UserTCPAdapter: () => MicroserviceOptions;
3132
3382
 
3133
3383
  declare const JobTCPAdapter: () => MicroserviceOptions;
@@ -3344,4 +3594,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
3344
3594
  isActive: boolean;
3345
3595
  }
3346
3596
 
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 };
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 };