@experts_hub/shared 1.0.610 → 1.0.612

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.
@@ -1,6 +1,7 @@
1
1
  import { BaseEntity } from "./base.entity";
2
2
  import { Job } from "./job.entity";
3
3
  import { User } from "./user.entity";
4
+ import { Hiring } from "./hiring.entity";
4
5
  import { Contract } from "./contract.entity";
5
6
  export declare enum ContractSummaryStatusEnum {
6
7
  PENDING = "PENDING",
@@ -25,4 +26,5 @@ export declare class ContractSummary extends BaseEntity {
25
26
  escrowDepositeAmount: number;
26
27
  status: ContractSummaryStatusEnum;
27
28
  contracts: Contract[];
29
+ hirings: Hiring;
28
30
  }
@@ -2,6 +2,7 @@ import { BaseEntity } from "./base.entity";
2
2
  import { Job } from "./job.entity";
3
3
  import { User } from "./user.entity";
4
4
  import { Invoice } from "./invoice.entity";
5
+ import { ContractSummary } from "./contract-summary.entity";
5
6
  export declare enum HiredFreelancerNatureOfWorkEnum {
6
7
  FTE = "FTE",
7
8
  FREELANCE = "FREELANCE"
@@ -15,6 +16,8 @@ export declare class Hiring extends BaseEntity {
15
16
  freelancer: User;
16
17
  invoiceId?: number;
17
18
  invoice?: Invoice;
19
+ contractSummaryId?: number;
20
+ contractSummary?: ContractSummary;
18
21
  freelancerNatureOfWork: HiredFreelancerNatureOfWorkEnum;
19
22
  isInvoiceGenrated: boolean;
20
23
  }
package/dist/index.d.mts CHANGED
@@ -464,7 +464,7 @@ declare class ClientChangePasswordDto {
464
464
  }
465
465
 
466
466
  declare class ClientServiceAgreementUploadDto {
467
- agreementType?: string;
467
+ serviceAgreementSignedOn?: string;
468
468
  }
469
469
 
470
470
  declare class ClientESignatureDto {
@@ -1612,6 +1612,32 @@ declare class TimesheetLine extends BaseEntity {
1612
1612
  invoice: Invoice[];
1613
1613
  }
1614
1614
 
1615
+ declare enum ContractSummaryStatusEnum {
1616
+ PENDING = "PENDING",
1617
+ ACTIVE = "ACTIVE",
1618
+ COMPLETED = "COMPLETED"
1619
+ }
1620
+ declare class ContractSummary extends BaseEntity {
1621
+ jobId: number;
1622
+ job: Job;
1623
+ clientId: number;
1624
+ client: User;
1625
+ freelancerId: number;
1626
+ freelancer: User;
1627
+ startDate: Date;
1628
+ endDate: Date;
1629
+ duration: number;
1630
+ contractValue: number;
1631
+ invoicingCycle: string;
1632
+ isMsaSigned: boolean;
1633
+ isSowSigned: boolean;
1634
+ isEscrowDeposited: boolean;
1635
+ escrowDepositeAmount: number;
1636
+ status: ContractSummaryStatusEnum;
1637
+ contracts: Contract[];
1638
+ hirings: Hiring;
1639
+ }
1640
+
1615
1641
  declare enum HiredFreelancerNatureOfWorkEnum {
1616
1642
  FTE = "FTE",
1617
1643
  FREELANCE = "FREELANCE"
@@ -1625,6 +1651,8 @@ declare class Hiring extends BaseEntity {
1625
1651
  freelancer: User;
1626
1652
  invoiceId?: number;
1627
1653
  invoice?: Invoice;
1654
+ contractSummaryId?: number;
1655
+ contractSummary?: ContractSummary;
1628
1656
  freelancerNatureOfWork: HiredFreelancerNatureOfWorkEnum;
1629
1657
  isInvoiceGenrated: boolean;
1630
1658
  }
@@ -1708,31 +1736,6 @@ declare class EscrowWallet extends BaseEntity {
1708
1736
  escrowWalletTransactions: EscrowWalletTransaction[];
1709
1737
  }
1710
1738
 
1711
- declare enum ContractSummaryStatusEnum {
1712
- PENDING = "PENDING",
1713
- ACTIVE = "ACTIVE",
1714
- COMPLETED = "COMPLETED"
1715
- }
1716
- declare class ContractSummary extends BaseEntity {
1717
- jobId: number;
1718
- job: Job;
1719
- clientId: number;
1720
- client: User;
1721
- freelancerId: number;
1722
- freelancer: User;
1723
- startDate: Date;
1724
- endDate: Date;
1725
- duration: number;
1726
- contractValue: number;
1727
- invoicingCycle: string;
1728
- isMsaSigned: boolean;
1729
- isSowSigned: boolean;
1730
- isEscrowDeposited: boolean;
1731
- escrowDepositeAmount: number;
1732
- status: ContractSummaryStatusEnum;
1733
- contracts: Contract[];
1734
- }
1735
-
1736
1739
  declare enum ContractStatusEnum {
1737
1740
  GENERATED = "GENERATED",
1738
1741
  DRAFTED = "DRAFTED",
@@ -3536,7 +3539,7 @@ declare class RejectAIInterviewRescheduleRequestDto {
3536
3539
  }
3537
3540
 
3538
3541
  declare class RejectF2FInterviewRescheduleRequestDto {
3539
- reason?: string;
3542
+ clientRejectReason?: string;
3540
3543
  }
3541
3544
 
3542
3545
  declare class CaptureAiInterviewResultPublicDto {
@@ -3962,6 +3965,214 @@ declare class DebitCommissionFteHiringDto {
3962
3965
  invoiceUuid: string;
3963
3966
  }
3964
3967
 
3968
+ declare enum AlertSeverity {
3969
+ CRITICAL = "CRITICAL",
3970
+ ERROR = "ERROR",
3971
+ WARNING = "WARNING",
3972
+ SECURITY = "SECURITY",
3973
+ INFO = "INFO",
3974
+ SUCCESS = "SUCCESS"
3975
+ }
3976
+ declare enum AlertCategory {
3977
+ CRITICAL_ERROR = "CRITICAL_ERROR",
3978
+ DATABASE = "DATABASE",
3979
+ PAYMENT = "PAYMENT",
3980
+ SECURITY = "SECURITY",
3981
+ PERFORMANCE = "PERFORMANCE",
3982
+ BUSINESS_EVENT = "BUSINESS_EVENT"
3983
+ }
3984
+ interface DiscordAlertOptions {
3985
+ severity: AlertSeverity;
3986
+ category: AlertCategory;
3987
+ title: string;
3988
+ description: string;
3989
+ fields?: Record<string, string | number | boolean>;
3990
+ metadata?: {
3991
+ microservice?: string;
3992
+ environment?: string;
3993
+ correlationId?: string;
3994
+ userId?: string;
3995
+ requestPath?: string;
3996
+ requestMethod?: string;
3997
+ errorStack?: string;
3998
+ hostname?: string;
3999
+ [key: string]: any;
4000
+ };
4001
+ }
4002
+ interface DiscordWebhookConfig {
4003
+ errorWebhookUrl?: string;
4004
+ securityWebhookUrl?: string;
4005
+ businessWebhookUrl?: string;
4006
+ performanceWebhookUrl?: string;
4007
+ enabled?: boolean;
4008
+ rateLimitPerMinute?: number;
4009
+ environment?: string;
4010
+ microserviceName?: string;
4011
+ }
4012
+ interface DiscordEmbedField {
4013
+ name: string;
4014
+ value: string;
4015
+ inline?: boolean;
4016
+ }
4017
+ interface DiscordEmbedFooter {
4018
+ text: string;
4019
+ icon_url?: string;
4020
+ }
4021
+ interface DiscordEmbed {
4022
+ title: string;
4023
+ description: string;
4024
+ color: number;
4025
+ fields: DiscordEmbedField[];
4026
+ footer?: DiscordEmbedFooter;
4027
+ timestamp: string;
4028
+ thumbnail?: {
4029
+ url: string;
4030
+ };
4031
+ author?: {
4032
+ name: string;
4033
+ icon_url?: string;
4034
+ };
4035
+ }
4036
+ interface DiscordWebhookPayload {
4037
+ content?: string;
4038
+ embeds: DiscordEmbed[];
4039
+ username?: string;
4040
+ avatar_url?: string;
4041
+ }
4042
+ interface RateLimitState {
4043
+ webhookUrl: string;
4044
+ timestamps: number[];
4045
+ }
4046
+ interface AlertKeyComponents {
4047
+ severity: AlertSeverity;
4048
+ category: AlertCategory;
4049
+ title: string;
4050
+ microservice?: string;
4051
+ }
4052
+
4053
+ declare class RateLimiter {
4054
+ private readonly maxAlertsPerMinute;
4055
+ private alertCounts;
4056
+ private recentAlerts;
4057
+ private readonly deduplicationWindow;
4058
+ private readonly cleanupInterval;
4059
+ private cleanupTimer?;
4060
+ constructor(maxAlertsPerMinute?: number);
4061
+ canSendAlert(webhookUrl: string): boolean;
4062
+ recordAlert(webhookUrl: string): void;
4063
+ isDuplicate(alertKey: string): boolean;
4064
+ generateAlertKey(components: AlertKeyComponents): string;
4065
+ getStats(): {
4066
+ totalWebhooks: number;
4067
+ totalUniqueAlerts: number;
4068
+ webhookStats: Array<{
4069
+ webhook: string;
4070
+ alertsInLastMinute: number;
4071
+ remainingCapacity: number;
4072
+ }>;
4073
+ };
4074
+ private maskWebhookUrl;
4075
+ clear(): void;
4076
+ private startCleanup;
4077
+ private cleanup;
4078
+ destroy(): void;
4079
+ getDeduplicationWindow(): number;
4080
+ getMaxAlertsPerMinute(): number;
4081
+ isRateLimited(webhookUrl: string): boolean;
4082
+ getRemainingCapacity(webhookUrl: string): number;
4083
+ }
4084
+
4085
+ declare class DiscordAlertService {
4086
+ private readonly rateLimiter;
4087
+ private readonly config;
4088
+ private alertsSent;
4089
+ private alertsFailed;
4090
+ constructor(config: DiscordWebhookConfig);
4091
+ sendAlert(options: DiscordAlertOptions): Promise<void>;
4092
+ sendCriticalError(error: Error, context?: Record<string, any>): Promise<void>;
4093
+ sendDatabaseError(message: string, context?: Record<string, any>): Promise<void>;
4094
+ sendSecurityAlert(title: string, description: string, context?: Record<string, any>): Promise<void>;
4095
+ sendPaymentError(message: string, context?: Record<string, any>): Promise<void>;
4096
+ sendBusinessEvent(title: string, description: string, context?: Record<string, any>): Promise<void>;
4097
+ sendPerformanceWarning(title: string, description: string, metrics?: Record<string, any>): Promise<void>;
4098
+ private getWebhookUrl;
4099
+ private sendToWebhook;
4100
+ private httpPost;
4101
+ private getHostname;
4102
+ private log;
4103
+ private logError;
4104
+ getStats(): {
4105
+ alertsSent: number;
4106
+ alertsFailed: number;
4107
+ successRate: number;
4108
+ rateLimiterStats: ReturnType<RateLimiter['getStats']>;
4109
+ };
4110
+ resetStats(): void;
4111
+ isConfigured(): boolean;
4112
+ getConfig(): Omit<Required<DiscordWebhookConfig>, 'errorWebhookUrl' | 'securityWebhookUrl' | 'businessWebhookUrl' | 'performanceWebhookUrl'> & {
4113
+ webhooksConfigured: {
4114
+ error: boolean;
4115
+ security: boolean;
4116
+ business: boolean;
4117
+ performance: boolean;
4118
+ };
4119
+ };
4120
+ destroy(): void;
4121
+ }
4122
+
4123
+ interface DiscordTransportOptions {
4124
+ level?: string;
4125
+ webhookUrl: string;
4126
+ microserviceName: string;
4127
+ environment: string;
4128
+ enabled?: boolean;
4129
+ category?: AlertCategory;
4130
+ severity?: AlertSeverity;
4131
+ }
4132
+ interface WinstonLogInfo {
4133
+ level: string;
4134
+ message: string;
4135
+ timestamp?: string;
4136
+ stack?: string;
4137
+ correlationId?: string;
4138
+ context?: string;
4139
+ error?: string;
4140
+ [key: string]: any;
4141
+ }
4142
+ declare class DiscordTransport {
4143
+ private readonly discordService;
4144
+ private readonly options;
4145
+ private logsSent;
4146
+ constructor(options: DiscordTransportOptions);
4147
+ log(info: WinstonLogInfo, callback: () => void): void;
4148
+ private shouldLog;
4149
+ private sendLogToDiscord;
4150
+ private mapLogLevelToSeverity;
4151
+ private buildTitle;
4152
+ getStats(): {
4153
+ logsSent: number;
4154
+ discordStats: ReturnType<DiscordAlertService['getStats']>;
4155
+ };
4156
+ close(): void;
4157
+ }
4158
+ declare function createDiscordTransport(options: DiscordTransportOptions): DiscordTransport;
4159
+
4160
+ declare class AlertBuilder {
4161
+ private static readonly COLORS;
4162
+ private static readonly SEVERITY_EMOJIS;
4163
+ static buildEmbed(options: DiscordAlertOptions): DiscordEmbed;
4164
+ private static formatTitle;
4165
+ private static formatEnvironment;
4166
+ private static formatTimestamp;
4167
+ private static formatValue;
4168
+ private static shouldBeInline;
4169
+ private static looksLikeCode;
4170
+ private static truncateStack;
4171
+ private static truncateDescription;
4172
+ private static buildFooter;
4173
+ static validateEmbed(embed: DiscordEmbed): string[];
4174
+ }
4175
+
3965
4176
  declare const UserTCPAdapter: () => MicroserviceOptions;
3966
4177
 
3967
4178
  declare const JobTCPAdapter: () => MicroserviceOptions;
@@ -4178,4 +4389,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
4178
4389
  isActive: boolean;
4179
4390
  }
4180
4391
 
4181
- export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AddTopupEscrowAmountDto, AdminCreateJobInformationDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, AssessmentAnswer, AssessmentRequestStatus, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractSourceEnum$1 as ContractSourceEnum, ContractStatusEnum, ContractSummary, ContractSummaryStatusEnum, ContractTCPAdapter, ContractTypeEnum, ContractTypeEnumDto, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CustomQuestionItemDto, DISPUTE_PATTERN, DebitCommissionFteHiringDto, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EmploymentType, EmploymentTypeV2, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GenerateContractDto, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteCandidateType, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectContractDto, RejectF2FInterviewRescheduleRequestDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, ScopeEmailEnumDto, ScopeEmailForLoginEnumDto, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendInterviewInviteDto, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SendNdaContractToFreelancerDto, SendOtpDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SocialAuthDto, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCmsStatusDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInterviewTypeInformationDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, VerifyOnboardingTokenDto, VerifyOtpDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
4392
+ export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AddTopupEscrowAmountDto, AdminCreateJobInformationDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AlertBuilder, AlertCategory, type AlertKeyComponents, AlertSeverity, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, AssessmentAnswer, AssessmentRequestStatus, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractSourceEnum$1 as ContractSourceEnum, ContractStatusEnum, ContractSummary, ContractSummaryStatusEnum, ContractTCPAdapter, ContractTypeEnum, ContractTypeEnumDto, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CustomQuestionItemDto, DISPUTE_PATTERN, DebitCommissionFteHiringDto, type DiscordAlertOptions, DiscordAlertService, type DiscordEmbed, type DiscordEmbedField, type DiscordEmbedFooter, DiscordTransport, type DiscordTransportOptions, type DiscordWebhookConfig, type DiscordWebhookPayload, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EmploymentType, EmploymentTypeV2, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GenerateContractDto, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteCandidateType, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, type RateLimitState, RateLimiter, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectContractDto, RejectF2FInterviewRescheduleRequestDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, ScopeEmailEnumDto, ScopeEmailForLoginEnumDto, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendInterviewInviteDto, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SendNdaContractToFreelancerDto, SendOtpDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SocialAuthDto, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCmsStatusDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInterviewTypeInformationDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, VerifyOnboardingTokenDto, VerifyOtpDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, createDiscordTransport, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };