@experts_hub/shared 1.0.611 → 1.0.614
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/entities/contract-summary.entity.d.ts +2 -0
- package/dist/entities/hiring.entity.d.ts +3 -0
- package/dist/index.d.mts +240 -28
- package/dist/index.d.ts +240 -28
- package/dist/index.js +1328 -189
- package/dist/index.mjs +1343 -221
- package/dist/modules/discord/alert-builder.d.ts +16 -0
- package/dist/modules/discord/discord-alert.interface.d.ts +84 -0
- package/dist/modules/discord/discord-alert.service.d.ts +39 -0
- package/dist/modules/discord/index.d.ts +5 -0
- package/dist/modules/discord/rate-limiter.d.ts +32 -0
- package/dist/modules/discord/winston-discord.transport.d.ts +40 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/interview/dto/reject-f2f-interview-reschedule-request.dto.d.ts +1 -1
- package/dist/modules/user/client-profile/dto/client-service-agreement-upload.dto.d.ts +1 -1
- package/package.json +3 -2
|
@@ -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
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import Transport from 'winston-transport';
|
|
1
2
|
import { MicroserviceOptions } from '@nestjs/microservices';
|
|
2
3
|
|
|
3
4
|
declare const AUTHENTICATION_PATTERN: {
|
|
@@ -464,7 +465,7 @@ declare class ClientChangePasswordDto {
|
|
|
464
465
|
}
|
|
465
466
|
|
|
466
467
|
declare class ClientServiceAgreementUploadDto {
|
|
467
|
-
|
|
468
|
+
serviceAgreementSignedOn?: string;
|
|
468
469
|
}
|
|
469
470
|
|
|
470
471
|
declare class ClientESignatureDto {
|
|
@@ -1612,6 +1613,32 @@ declare class TimesheetLine extends BaseEntity {
|
|
|
1612
1613
|
invoice: Invoice[];
|
|
1613
1614
|
}
|
|
1614
1615
|
|
|
1616
|
+
declare enum ContractSummaryStatusEnum {
|
|
1617
|
+
PENDING = "PENDING",
|
|
1618
|
+
ACTIVE = "ACTIVE",
|
|
1619
|
+
COMPLETED = "COMPLETED"
|
|
1620
|
+
}
|
|
1621
|
+
declare class ContractSummary extends BaseEntity {
|
|
1622
|
+
jobId: number;
|
|
1623
|
+
job: Job;
|
|
1624
|
+
clientId: number;
|
|
1625
|
+
client: User;
|
|
1626
|
+
freelancerId: number;
|
|
1627
|
+
freelancer: User;
|
|
1628
|
+
startDate: Date;
|
|
1629
|
+
endDate: Date;
|
|
1630
|
+
duration: number;
|
|
1631
|
+
contractValue: number;
|
|
1632
|
+
invoicingCycle: string;
|
|
1633
|
+
isMsaSigned: boolean;
|
|
1634
|
+
isSowSigned: boolean;
|
|
1635
|
+
isEscrowDeposited: boolean;
|
|
1636
|
+
escrowDepositeAmount: number;
|
|
1637
|
+
status: ContractSummaryStatusEnum;
|
|
1638
|
+
contracts: Contract[];
|
|
1639
|
+
hirings: Hiring;
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1615
1642
|
declare enum HiredFreelancerNatureOfWorkEnum {
|
|
1616
1643
|
FTE = "FTE",
|
|
1617
1644
|
FREELANCE = "FREELANCE"
|
|
@@ -1625,6 +1652,8 @@ declare class Hiring extends BaseEntity {
|
|
|
1625
1652
|
freelancer: User;
|
|
1626
1653
|
invoiceId?: number;
|
|
1627
1654
|
invoice?: Invoice;
|
|
1655
|
+
contractSummaryId?: number;
|
|
1656
|
+
contractSummary?: ContractSummary;
|
|
1628
1657
|
freelancerNatureOfWork: HiredFreelancerNatureOfWorkEnum;
|
|
1629
1658
|
isInvoiceGenrated: boolean;
|
|
1630
1659
|
}
|
|
@@ -1708,31 +1737,6 @@ declare class EscrowWallet extends BaseEntity {
|
|
|
1708
1737
|
escrowWalletTransactions: EscrowWalletTransaction[];
|
|
1709
1738
|
}
|
|
1710
1739
|
|
|
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
1740
|
declare enum ContractStatusEnum {
|
|
1737
1741
|
GENERATED = "GENERATED",
|
|
1738
1742
|
DRAFTED = "DRAFTED",
|
|
@@ -3536,7 +3540,7 @@ declare class RejectAIInterviewRescheduleRequestDto {
|
|
|
3536
3540
|
}
|
|
3537
3541
|
|
|
3538
3542
|
declare class RejectF2FInterviewRescheduleRequestDto {
|
|
3539
|
-
|
|
3543
|
+
clientRejectReason?: string;
|
|
3540
3544
|
}
|
|
3541
3545
|
|
|
3542
3546
|
declare class CaptureAiInterviewResultPublicDto {
|
|
@@ -3962,6 +3966,214 @@ declare class DebitCommissionFteHiringDto {
|
|
|
3962
3966
|
invoiceUuid: string;
|
|
3963
3967
|
}
|
|
3964
3968
|
|
|
3969
|
+
declare enum AlertSeverity {
|
|
3970
|
+
CRITICAL = "CRITICAL",
|
|
3971
|
+
ERROR = "ERROR",
|
|
3972
|
+
WARNING = "WARNING",
|
|
3973
|
+
SECURITY = "SECURITY",
|
|
3974
|
+
INFO = "INFO",
|
|
3975
|
+
SUCCESS = "SUCCESS"
|
|
3976
|
+
}
|
|
3977
|
+
declare enum AlertCategory {
|
|
3978
|
+
CRITICAL_ERROR = "CRITICAL_ERROR",
|
|
3979
|
+
DATABASE = "DATABASE",
|
|
3980
|
+
PAYMENT = "PAYMENT",
|
|
3981
|
+
SECURITY = "SECURITY",
|
|
3982
|
+
PERFORMANCE = "PERFORMANCE",
|
|
3983
|
+
BUSINESS_EVENT = "BUSINESS_EVENT"
|
|
3984
|
+
}
|
|
3985
|
+
interface DiscordAlertOptions {
|
|
3986
|
+
severity: AlertSeverity;
|
|
3987
|
+
category: AlertCategory;
|
|
3988
|
+
title: string;
|
|
3989
|
+
description: string;
|
|
3990
|
+
fields?: Record<string, string | number | boolean>;
|
|
3991
|
+
metadata?: {
|
|
3992
|
+
microservice?: string;
|
|
3993
|
+
environment?: string;
|
|
3994
|
+
correlationId?: string;
|
|
3995
|
+
userId?: string;
|
|
3996
|
+
requestPath?: string;
|
|
3997
|
+
requestMethod?: string;
|
|
3998
|
+
errorStack?: string;
|
|
3999
|
+
hostname?: string;
|
|
4000
|
+
[key: string]: any;
|
|
4001
|
+
};
|
|
4002
|
+
}
|
|
4003
|
+
interface DiscordWebhookConfig {
|
|
4004
|
+
errorWebhookUrl?: string;
|
|
4005
|
+
securityWebhookUrl?: string;
|
|
4006
|
+
businessWebhookUrl?: string;
|
|
4007
|
+
performanceWebhookUrl?: string;
|
|
4008
|
+
enabled?: boolean;
|
|
4009
|
+
rateLimitPerMinute?: number;
|
|
4010
|
+
environment?: string;
|
|
4011
|
+
microserviceName?: string;
|
|
4012
|
+
}
|
|
4013
|
+
interface DiscordEmbedField {
|
|
4014
|
+
name: string;
|
|
4015
|
+
value: string;
|
|
4016
|
+
inline?: boolean;
|
|
4017
|
+
}
|
|
4018
|
+
interface DiscordEmbedFooter {
|
|
4019
|
+
text: string;
|
|
4020
|
+
icon_url?: string;
|
|
4021
|
+
}
|
|
4022
|
+
interface DiscordEmbed {
|
|
4023
|
+
title: string;
|
|
4024
|
+
description: string;
|
|
4025
|
+
color: number;
|
|
4026
|
+
fields: DiscordEmbedField[];
|
|
4027
|
+
footer?: DiscordEmbedFooter;
|
|
4028
|
+
timestamp: string;
|
|
4029
|
+
thumbnail?: {
|
|
4030
|
+
url: string;
|
|
4031
|
+
};
|
|
4032
|
+
author?: {
|
|
4033
|
+
name: string;
|
|
4034
|
+
icon_url?: string;
|
|
4035
|
+
};
|
|
4036
|
+
}
|
|
4037
|
+
interface DiscordWebhookPayload {
|
|
4038
|
+
content?: string;
|
|
4039
|
+
embeds: DiscordEmbed[];
|
|
4040
|
+
username?: string;
|
|
4041
|
+
avatar_url?: string;
|
|
4042
|
+
}
|
|
4043
|
+
interface RateLimitState {
|
|
4044
|
+
webhookUrl: string;
|
|
4045
|
+
timestamps: number[];
|
|
4046
|
+
}
|
|
4047
|
+
interface AlertKeyComponents {
|
|
4048
|
+
severity: AlertSeverity;
|
|
4049
|
+
category: AlertCategory;
|
|
4050
|
+
title: string;
|
|
4051
|
+
microservice?: string;
|
|
4052
|
+
}
|
|
4053
|
+
|
|
4054
|
+
declare class RateLimiter {
|
|
4055
|
+
private readonly maxAlertsPerMinute;
|
|
4056
|
+
private alertCounts;
|
|
4057
|
+
private recentAlerts;
|
|
4058
|
+
private readonly deduplicationWindow;
|
|
4059
|
+
private readonly cleanupInterval;
|
|
4060
|
+
private cleanupTimer?;
|
|
4061
|
+
constructor(maxAlertsPerMinute?: number);
|
|
4062
|
+
canSendAlert(webhookUrl: string): boolean;
|
|
4063
|
+
recordAlert(webhookUrl: string): void;
|
|
4064
|
+
isDuplicate(alertKey: string): boolean;
|
|
4065
|
+
generateAlertKey(components: AlertKeyComponents): string;
|
|
4066
|
+
getStats(): {
|
|
4067
|
+
totalWebhooks: number;
|
|
4068
|
+
totalUniqueAlerts: number;
|
|
4069
|
+
webhookStats: Array<{
|
|
4070
|
+
webhook: string;
|
|
4071
|
+
alertsInLastMinute: number;
|
|
4072
|
+
remainingCapacity: number;
|
|
4073
|
+
}>;
|
|
4074
|
+
};
|
|
4075
|
+
private maskWebhookUrl;
|
|
4076
|
+
clear(): void;
|
|
4077
|
+
private startCleanup;
|
|
4078
|
+
private cleanup;
|
|
4079
|
+
destroy(): void;
|
|
4080
|
+
getDeduplicationWindow(): number;
|
|
4081
|
+
getMaxAlertsPerMinute(): number;
|
|
4082
|
+
isRateLimited(webhookUrl: string): boolean;
|
|
4083
|
+
getRemainingCapacity(webhookUrl: string): number;
|
|
4084
|
+
}
|
|
4085
|
+
|
|
4086
|
+
declare class DiscordAlertService {
|
|
4087
|
+
private readonly rateLimiter;
|
|
4088
|
+
private readonly config;
|
|
4089
|
+
private alertsSent;
|
|
4090
|
+
private alertsFailed;
|
|
4091
|
+
constructor(config: DiscordWebhookConfig);
|
|
4092
|
+
sendAlert(options: DiscordAlertOptions): Promise<void>;
|
|
4093
|
+
sendCriticalError(error: Error, context?: Record<string, any>): Promise<void>;
|
|
4094
|
+
sendDatabaseError(message: string, context?: Record<string, any>): Promise<void>;
|
|
4095
|
+
sendSecurityAlert(title: string, description: string, context?: Record<string, any>): Promise<void>;
|
|
4096
|
+
sendPaymentError(message: string, context?: Record<string, any>): Promise<void>;
|
|
4097
|
+
sendBusinessEvent(title: string, description: string, context?: Record<string, any>): Promise<void>;
|
|
4098
|
+
sendPerformanceWarning(title: string, description: string, metrics?: Record<string, any>): Promise<void>;
|
|
4099
|
+
private getWebhookUrl;
|
|
4100
|
+
private sendToWebhook;
|
|
4101
|
+
private httpPost;
|
|
4102
|
+
private getHostname;
|
|
4103
|
+
private log;
|
|
4104
|
+
private logError;
|
|
4105
|
+
getStats(): {
|
|
4106
|
+
alertsSent: number;
|
|
4107
|
+
alertsFailed: number;
|
|
4108
|
+
successRate: number;
|
|
4109
|
+
rateLimiterStats: ReturnType<RateLimiter['getStats']>;
|
|
4110
|
+
};
|
|
4111
|
+
resetStats(): void;
|
|
4112
|
+
isConfigured(): boolean;
|
|
4113
|
+
getConfig(): Omit<Required<DiscordWebhookConfig>, 'errorWebhookUrl' | 'securityWebhookUrl' | 'businessWebhookUrl' | 'performanceWebhookUrl'> & {
|
|
4114
|
+
webhooksConfigured: {
|
|
4115
|
+
error: boolean;
|
|
4116
|
+
security: boolean;
|
|
4117
|
+
business: boolean;
|
|
4118
|
+
performance: boolean;
|
|
4119
|
+
};
|
|
4120
|
+
};
|
|
4121
|
+
destroy(): void;
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
interface DiscordTransportOptions {
|
|
4125
|
+
level?: string;
|
|
4126
|
+
webhookUrl: string;
|
|
4127
|
+
microserviceName: string;
|
|
4128
|
+
environment: string;
|
|
4129
|
+
enabled?: boolean;
|
|
4130
|
+
category?: AlertCategory;
|
|
4131
|
+
severity?: AlertSeverity;
|
|
4132
|
+
}
|
|
4133
|
+
interface WinstonLogInfo {
|
|
4134
|
+
level: string;
|
|
4135
|
+
message: string;
|
|
4136
|
+
timestamp?: string;
|
|
4137
|
+
stack?: string;
|
|
4138
|
+
correlationId?: string;
|
|
4139
|
+
context?: string;
|
|
4140
|
+
error?: string;
|
|
4141
|
+
[key: string]: any;
|
|
4142
|
+
}
|
|
4143
|
+
declare class DiscordTransport extends Transport {
|
|
4144
|
+
private readonly discordService;
|
|
4145
|
+
private readonly transportOptions;
|
|
4146
|
+
private logsSent;
|
|
4147
|
+
constructor(options: DiscordTransportOptions);
|
|
4148
|
+
log(info: WinstonLogInfo, callback: () => void): void;
|
|
4149
|
+
private shouldLog;
|
|
4150
|
+
private sendLogToDiscord;
|
|
4151
|
+
private mapLogLevelToSeverity;
|
|
4152
|
+
private buildTitle;
|
|
4153
|
+
getStats(): {
|
|
4154
|
+
logsSent: number;
|
|
4155
|
+
discordStats: ReturnType<DiscordAlertService['getStats']>;
|
|
4156
|
+
};
|
|
4157
|
+
close(): void;
|
|
4158
|
+
}
|
|
4159
|
+
declare function createDiscordTransport(options: DiscordTransportOptions): DiscordTransport;
|
|
4160
|
+
|
|
4161
|
+
declare class AlertBuilder {
|
|
4162
|
+
private static readonly COLORS;
|
|
4163
|
+
private static readonly SEVERITY_EMOJIS;
|
|
4164
|
+
static buildEmbed(options: DiscordAlertOptions): DiscordEmbed;
|
|
4165
|
+
private static formatTitle;
|
|
4166
|
+
private static formatEnvironment;
|
|
4167
|
+
private static formatTimestamp;
|
|
4168
|
+
private static formatValue;
|
|
4169
|
+
private static shouldBeInline;
|
|
4170
|
+
private static looksLikeCode;
|
|
4171
|
+
private static truncateStack;
|
|
4172
|
+
private static truncateDescription;
|
|
4173
|
+
private static buildFooter;
|
|
4174
|
+
static validateEmbed(embed: DiscordEmbed): string[];
|
|
4175
|
+
}
|
|
4176
|
+
|
|
3965
4177
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
3966
4178
|
|
|
3967
4179
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -4178,4 +4390,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
4178
4390
|
isActive: boolean;
|
|
4179
4391
|
}
|
|
4180
4392
|
|
|
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 };
|
|
4393
|
+
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 };
|