@experts_hub/shared 1.0.451 → 1.0.453

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.
@@ -12,6 +12,7 @@ export declare class BankDetail extends BaseEntity {
12
12
  userId: number;
13
13
  user: User;
14
14
  name: string;
15
+ mobileCode: string;
15
16
  mobile: string;
16
17
  email: string;
17
18
  address: string;
@@ -60,9 +60,6 @@ export * from './f2f-interview-schedule.entity';
60
60
  export * from './f2f-interview-reschedule-request.entity';
61
61
  export * from './zoom-meeting-log.entity';
62
62
  export * from './contract.entity';
63
- export * from './stripe-wallet.entity';
64
- export * from './stripe-wallet-transaction.entity';
65
- export * from './stripe-logs.entity';
66
63
  export * from './signature.entity';
67
64
  export * from './timesheets.entity';
68
65
  export * from './timesheet-line.entity';
@@ -71,3 +68,7 @@ export * from './timesheet-line-history.entity';
71
68
  export * from './client-candidate-preference.entity';
72
69
  export * from './invoice.entity';
73
70
  export * from './dispute.entity';
71
+ export * from './stripe-transaction.entity';
72
+ export * from './stripe-logs.entity';
73
+ export * from './wallet.entity';
74
+ export * from './wallet-transaction.entity';
@@ -1,23 +1,26 @@
1
1
  import { BaseEntity } from "./base.entity";
2
- import { StripeWallet } from "./stripe-wallet.entity";
3
- export declare enum StripeWalletTransactionTypeEnum {
4
- CR = "CR",
5
- DR = "DR"
2
+ import { User } from "./user.entity";
3
+ export declare enum StripeTransactionTypeEnum {
4
+ ADD_FUNDS = "ADD_FUNDS",
5
+ TRANSFER = "TRANSFER",
6
+ WITHDRAW = "WITHDRAW",
7
+ INVOICE_PAYMENT = "INVOICE_PAYMENT",
8
+ REFUND = "REFUND"
6
9
  }
7
- export declare enum StripeWalletTransactionStatusEnum {
10
+ export declare enum StripeTransactionStatusEnum {
8
11
  PENDING = "PENDING",
9
12
  PROCESSING = "PROCESSING",
10
13
  SUCCESS = "SUCCESS",
11
14
  FAILED = "FAILED",
12
15
  EXPIRED = "EXPIRED"
13
16
  }
14
- export declare class StripeWalletTransaction extends BaseEntity {
15
- walletId: number;
16
- stripeWallet: StripeWallet;
17
+ export declare class StripeTransaction extends BaseEntity {
18
+ userId: number;
19
+ user: User;
17
20
  amount: number;
18
21
  currency: string;
19
- type: StripeWalletTransactionTypeEnum;
20
- status: StripeWalletTransactionStatusEnum;
22
+ type: StripeTransactionTypeEnum;
23
+ status: StripeTransactionStatusEnum;
21
24
  stripeSessionId: string;
22
25
  stripePaymentIntentId: string;
23
26
  description: string;
@@ -30,6 +33,4 @@ export declare class StripeWalletTransaction extends BaseEntity {
30
33
  stripeChargeId: string;
31
34
  stripeBalanceTransactionId: string;
32
35
  completedAt: Date;
33
- transactionFor: string;
34
- metaData: string;
35
36
  }
@@ -28,13 +28,14 @@ import { AiInterview } from "./ai-interview.entity";
28
28
  import { F2FInterview } from "./f2f-interview.entity";
29
29
  import { F2fInterviewRescheduleRequest } from "./f2f-interview-reschedule-request.entity";
30
30
  import { Contract } from "./contract.entity";
31
- import { StripeWallet } from "./stripe-wallet.entity";
32
31
  import { Timesheet } from "./timesheets.entity";
33
32
  import { TimesheetLine } from "./timesheet-line.entity";
34
33
  import { Signature } from "./signature.entity";
35
34
  import { ClientCandidatePreference } from "./client-candidate-preference.entity";
36
35
  import { Invoice } from "./invoice.entity";
37
36
  import { Dispute } from "./dispute.entity";
37
+ import { StripeTransaction } from "./stripe-transaction.entity";
38
+ import { Wallet } from "./wallet.entity";
38
39
  export declare enum AccountType {
39
40
  ADMIN = "ADMIN",
40
41
  SUB_ADMIN = "SUB_ADMIN",
@@ -117,7 +118,6 @@ export declare class User extends BaseEntity {
117
118
  adminUserRoles: AdminUserRole[];
118
119
  clientContracts: Contract[];
119
120
  freelancerContracts: Contract[];
120
- stripeWallet: StripeWallet;
121
121
  signatures: Signature;
122
122
  clientTimesheets: Timesheet[];
123
123
  freelancerTimesheets: Timesheet[];
@@ -129,4 +129,6 @@ export declare class User extends BaseEntity {
129
129
  clientPreferencesReceived: ClientCandidatePreference[];
130
130
  initiatedDisputes: Dispute[];
131
131
  respondentDisputes: Dispute[];
132
+ wallet: Wallet;
133
+ stripeTransactions: StripeTransaction[];
132
134
  }
@@ -0,0 +1,25 @@
1
+ import { BaseEntity } from "./base.entity";
2
+ import { Wallet } from "./wallet.entity";
3
+ export declare enum WalletTransactionTypeEnum {
4
+ CR = "CR",
5
+ DR = "DR"
6
+ }
7
+ export declare enum WalletTransactionStatusEnum {
8
+ PENDING = "PENDING",
9
+ PROCESSING = "PROCESSING",
10
+ SUCCESS = "SUCCESS",
11
+ FAILED = "FAILED",
12
+ EXPIRED = "EXPIRED"
13
+ }
14
+ export declare class WalletTransaction extends BaseEntity {
15
+ walletId: number;
16
+ wallet: Wallet;
17
+ amount: number;
18
+ type: WalletTransactionTypeEnum;
19
+ status: WalletTransactionStatusEnum;
20
+ description: string;
21
+ completedAt: Date;
22
+ transactionFor: string;
23
+ metaData: string;
24
+ stripeTransactionId: number;
25
+ }
@@ -1,23 +1,23 @@
1
1
  import { BaseEntity } from "./base.entity";
2
2
  import { User } from "./user.entity";
3
- import { StripeWalletTransaction } from "./stripe-wallet-transaction.entity";
4
- export declare enum StripeWalletAccountTypeEnum {
3
+ import { WalletTransaction } from "./wallet-transaction.entity";
4
+ export declare enum WalletAccountTypeEnum {
5
5
  BUSINESS = "BUSINESS",
6
6
  FREELANCER = "FREELANCER"
7
7
  }
8
- export declare enum StripeWalletOnboardingStatusEnum {
8
+ export declare enum WalletOnboardingStatusEnum {
9
9
  PENDING = "PENDING",
10
10
  COMPLETED = "COMPLETED"
11
11
  }
12
- export declare class StripeWallet extends BaseEntity {
12
+ export declare class Wallet extends BaseEntity {
13
13
  userId: number;
14
14
  user: User;
15
- accountType: StripeWalletAccountTypeEnum;
15
+ accountType: WalletAccountTypeEnum;
16
16
  stripeAccountId: string;
17
17
  stripeCustomerId: string;
18
18
  walletBalance: number;
19
19
  walletBalanceCents: number;
20
- onboardingStatus: StripeWalletOnboardingStatusEnum;
20
+ onboardingStatus: WalletOnboardingStatusEnum;
21
21
  stripeMetadata: Record<string, any>;
22
- transactions: StripeWalletTransaction[];
22
+ walletTransactions: WalletTransaction[];
23
23
  }
package/dist/index.d.mts CHANGED
@@ -586,6 +586,7 @@ declare enum BankAccountScope {
586
586
  }
587
587
  declare class FreelancerBankDetailsDto {
588
588
  name: string;
589
+ mobileCode: string;
589
590
  mobile: string;
590
591
  email: string;
591
592
  address: string;
@@ -1358,6 +1359,7 @@ declare class BankDetail extends BaseEntity {
1358
1359
  userId: number;
1359
1360
  user: User;
1360
1361
  name: string;
1362
+ mobileCode: string;
1361
1363
  mobile: string;
1362
1364
  email: string;
1363
1365
  address: string;
@@ -1591,24 +1593,58 @@ declare class FreelancerResume extends BaseEntity {
1591
1593
  processedResumeData: string;
1592
1594
  }
1593
1595
 
1594
- declare enum StripeWalletTransactionTypeEnum {
1595
- CR = "CR",
1596
- DR = "DR"
1596
+ declare class Signature extends BaseEntity {
1597
+ userId: number;
1598
+ user: User;
1599
+ signatureUrl: string;
1600
+ }
1601
+
1602
+ declare enum DisputeStatusEnum {
1603
+ OPEN = "OPEN",
1604
+ IN_REVIEW = "IN_REVIEW",
1605
+ PENDING_RESPONSE = "PENDING_RESPONSE",
1606
+ UNDER_INVESTIGATION = "UNDER_INVESTIGATION",
1607
+ RESOLVED = "RESOLVED",
1608
+ CLOSED = "CLOSED",
1609
+ ESCALATED = "ESCALATED",
1610
+ CANCELLED = "CANCELLED",
1611
+ REOPENED = "REOPENED"
1612
+ }
1613
+ declare class Dispute extends BaseEntity {
1614
+ disputeUniqueId: string;
1615
+ disputeType: string;
1616
+ description: string;
1617
+ comment: string;
1618
+ status: DisputeStatusEnum;
1619
+ initiatorId: number;
1620
+ initiator: User;
1621
+ respondentId: number;
1622
+ respondent: User;
1623
+ attachments: any[];
1624
+ dynamicFields: Record<string, any>;
1625
+ }
1626
+
1627
+ declare enum StripeTransactionTypeEnum {
1628
+ ADD_FUNDS = "ADD_FUNDS",
1629
+ TRANSFER = "TRANSFER",
1630
+ WITHDRAW = "WITHDRAW",
1631
+ INVOICE_PAYMENT = "INVOICE_PAYMENT",
1632
+ REFUND = "REFUND"
1597
1633
  }
1598
- declare enum StripeWalletTransactionStatusEnum {
1634
+ declare enum StripeTransactionStatusEnum {
1599
1635
  PENDING = "PENDING",
1600
1636
  PROCESSING = "PROCESSING",
1601
1637
  SUCCESS = "SUCCESS",
1602
1638
  FAILED = "FAILED",
1603
1639
  EXPIRED = "EXPIRED"
1604
1640
  }
1605
- declare class StripeWalletTransaction extends BaseEntity {
1606
- walletId: number;
1607
- stripeWallet: StripeWallet;
1641
+ declare class StripeTransaction extends BaseEntity {
1642
+ userId: number;
1643
+ user: User;
1608
1644
  amount: number;
1609
1645
  currency: string;
1610
- type: StripeWalletTransactionTypeEnum;
1611
- status: StripeWalletTransactionStatusEnum;
1646
+ type: StripeTransactionTypeEnum;
1647
+ status: StripeTransactionStatusEnum;
1612
1648
  stripeSessionId: string;
1613
1649
  stripePaymentIntentId: string;
1614
1650
  description: string;
@@ -1621,60 +1657,51 @@ declare class StripeWalletTransaction extends BaseEntity {
1621
1657
  stripeChargeId: string;
1622
1658
  stripeBalanceTransactionId: string;
1623
1659
  completedAt: Date;
1660
+ }
1661
+
1662
+ declare enum WalletTransactionTypeEnum {
1663
+ CR = "CR",
1664
+ DR = "DR"
1665
+ }
1666
+ declare enum WalletTransactionStatusEnum {
1667
+ PENDING = "PENDING",
1668
+ PROCESSING = "PROCESSING",
1669
+ SUCCESS = "SUCCESS",
1670
+ FAILED = "FAILED",
1671
+ EXPIRED = "EXPIRED"
1672
+ }
1673
+ declare class WalletTransaction extends BaseEntity {
1674
+ walletId: number;
1675
+ wallet: Wallet;
1676
+ amount: number;
1677
+ type: WalletTransactionTypeEnum;
1678
+ status: WalletTransactionStatusEnum;
1679
+ description: string;
1680
+ completedAt: Date;
1624
1681
  transactionFor: string;
1625
1682
  metaData: string;
1683
+ stripeTransactionId: number;
1626
1684
  }
1627
1685
 
1628
- declare enum StripeWalletAccountTypeEnum {
1686
+ declare enum WalletAccountTypeEnum {
1629
1687
  BUSINESS = "BUSINESS",
1630
1688
  FREELANCER = "FREELANCER"
1631
1689
  }
1632
- declare enum StripeWalletOnboardingStatusEnum {
1690
+ declare enum WalletOnboardingStatusEnum {
1633
1691
  PENDING = "PENDING",
1634
1692
  COMPLETED = "COMPLETED"
1635
1693
  }
1636
- declare class StripeWallet extends BaseEntity {
1694
+ declare class Wallet extends BaseEntity {
1637
1695
  userId: number;
1638
1696
  user: User;
1639
- accountType: StripeWalletAccountTypeEnum;
1697
+ accountType: WalletAccountTypeEnum;
1640
1698
  stripeAccountId: string;
1641
1699
  stripeCustomerId: string;
1642
1700
  walletBalance: number;
1643
1701
  walletBalanceCents: number;
1644
- onboardingStatus: StripeWalletOnboardingStatusEnum;
1702
+ onboardingStatus: WalletOnboardingStatusEnum;
1645
1703
  stripeMetadata: Record<string, any>;
1646
- transactions: StripeWalletTransaction[];
1647
- }
1648
-
1649
- declare class Signature extends BaseEntity {
1650
- userId: number;
1651
- user: User;
1652
- signatureUrl: string;
1653
- }
1654
-
1655
- declare enum DisputeStatusEnum {
1656
- OPEN = "OPEN",
1657
- IN_REVIEW = "IN_REVIEW",
1658
- PENDING_RESPONSE = "PENDING_RESPONSE",
1659
- UNDER_INVESTIGATION = "UNDER_INVESTIGATION",
1660
- RESOLVED = "RESOLVED",
1661
- CLOSED = "CLOSED",
1662
- ESCALATED = "ESCALATED",
1663
- CANCELLED = "CANCELLED",
1664
- REOPENED = "REOPENED"
1665
- }
1666
- declare class Dispute extends BaseEntity {
1667
- disputeUniqueId: string;
1668
- disputeType: string;
1669
- description: string;
1670
- comment: string;
1671
- status: DisputeStatusEnum;
1672
- initiatorId: number;
1673
- initiator: User;
1674
- respondentId: number;
1675
- respondent: User;
1676
- attachments: any[];
1677
- dynamicFields: Record<string, any>;
1704
+ walletTransactions: WalletTransaction[];
1678
1705
  }
1679
1706
 
1680
1707
  declare enum AccountType {
@@ -1759,7 +1786,6 @@ declare class User extends BaseEntity {
1759
1786
  adminUserRoles: AdminUserRole[];
1760
1787
  clientContracts: Contract[];
1761
1788
  freelancerContracts: Contract[];
1762
- stripeWallet: StripeWallet;
1763
1789
  signatures: Signature;
1764
1790
  clientTimesheets: Timesheet[];
1765
1791
  freelancerTimesheets: Timesheet[];
@@ -1771,6 +1797,8 @@ declare class User extends BaseEntity {
1771
1797
  clientPreferencesReceived: ClientCandidatePreference[];
1772
1798
  initiatedDisputes: Dispute[];
1773
1799
  respondentDisputes: Dispute[];
1800
+ wallet: Wallet;
1801
+ stripeTransactions: StripeTransaction[];
1774
1802
  }
1775
1803
 
1776
1804
  declare enum RatingTypeEnum {
@@ -2878,4 +2906,4 @@ declare class StripeLog extends BaseEntity {
2878
2906
  rawWebhookData: string;
2879
2907
  }
2880
2908
 
2881
- export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, 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, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, 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, 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, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, 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, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, 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, RefreshDto, RefreshToken, ResetPasswordDto, ResetPasswordTokenValidationDto, 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, State, Step, StripeLog, StripeWallet, StripeWalletAccountTypeEnum, StripeWalletOnboardingStatusEnum, StripeWalletTransaction, StripeWalletTransactionStatusEnum, StripeWalletTransactionTypeEnum, 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, ZoomMeetingLog };
2909
+ export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, 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, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, 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, 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, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, 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, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, 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, RefreshDto, RefreshToken, ResetPasswordDto, ResetPasswordTokenValidationDto, 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, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZoomMeetingLog };
package/dist/index.d.ts CHANGED
@@ -586,6 +586,7 @@ declare enum BankAccountScope {
586
586
  }
587
587
  declare class FreelancerBankDetailsDto {
588
588
  name: string;
589
+ mobileCode: string;
589
590
  mobile: string;
590
591
  email: string;
591
592
  address: string;
@@ -1358,6 +1359,7 @@ declare class BankDetail extends BaseEntity {
1358
1359
  userId: number;
1359
1360
  user: User;
1360
1361
  name: string;
1362
+ mobileCode: string;
1361
1363
  mobile: string;
1362
1364
  email: string;
1363
1365
  address: string;
@@ -1591,24 +1593,58 @@ declare class FreelancerResume extends BaseEntity {
1591
1593
  processedResumeData: string;
1592
1594
  }
1593
1595
 
1594
- declare enum StripeWalletTransactionTypeEnum {
1595
- CR = "CR",
1596
- DR = "DR"
1596
+ declare class Signature extends BaseEntity {
1597
+ userId: number;
1598
+ user: User;
1599
+ signatureUrl: string;
1600
+ }
1601
+
1602
+ declare enum DisputeStatusEnum {
1603
+ OPEN = "OPEN",
1604
+ IN_REVIEW = "IN_REVIEW",
1605
+ PENDING_RESPONSE = "PENDING_RESPONSE",
1606
+ UNDER_INVESTIGATION = "UNDER_INVESTIGATION",
1607
+ RESOLVED = "RESOLVED",
1608
+ CLOSED = "CLOSED",
1609
+ ESCALATED = "ESCALATED",
1610
+ CANCELLED = "CANCELLED",
1611
+ REOPENED = "REOPENED"
1612
+ }
1613
+ declare class Dispute extends BaseEntity {
1614
+ disputeUniqueId: string;
1615
+ disputeType: string;
1616
+ description: string;
1617
+ comment: string;
1618
+ status: DisputeStatusEnum;
1619
+ initiatorId: number;
1620
+ initiator: User;
1621
+ respondentId: number;
1622
+ respondent: User;
1623
+ attachments: any[];
1624
+ dynamicFields: Record<string, any>;
1625
+ }
1626
+
1627
+ declare enum StripeTransactionTypeEnum {
1628
+ ADD_FUNDS = "ADD_FUNDS",
1629
+ TRANSFER = "TRANSFER",
1630
+ WITHDRAW = "WITHDRAW",
1631
+ INVOICE_PAYMENT = "INVOICE_PAYMENT",
1632
+ REFUND = "REFUND"
1597
1633
  }
1598
- declare enum StripeWalletTransactionStatusEnum {
1634
+ declare enum StripeTransactionStatusEnum {
1599
1635
  PENDING = "PENDING",
1600
1636
  PROCESSING = "PROCESSING",
1601
1637
  SUCCESS = "SUCCESS",
1602
1638
  FAILED = "FAILED",
1603
1639
  EXPIRED = "EXPIRED"
1604
1640
  }
1605
- declare class StripeWalletTransaction extends BaseEntity {
1606
- walletId: number;
1607
- stripeWallet: StripeWallet;
1641
+ declare class StripeTransaction extends BaseEntity {
1642
+ userId: number;
1643
+ user: User;
1608
1644
  amount: number;
1609
1645
  currency: string;
1610
- type: StripeWalletTransactionTypeEnum;
1611
- status: StripeWalletTransactionStatusEnum;
1646
+ type: StripeTransactionTypeEnum;
1647
+ status: StripeTransactionStatusEnum;
1612
1648
  stripeSessionId: string;
1613
1649
  stripePaymentIntentId: string;
1614
1650
  description: string;
@@ -1621,60 +1657,51 @@ declare class StripeWalletTransaction extends BaseEntity {
1621
1657
  stripeChargeId: string;
1622
1658
  stripeBalanceTransactionId: string;
1623
1659
  completedAt: Date;
1660
+ }
1661
+
1662
+ declare enum WalletTransactionTypeEnum {
1663
+ CR = "CR",
1664
+ DR = "DR"
1665
+ }
1666
+ declare enum WalletTransactionStatusEnum {
1667
+ PENDING = "PENDING",
1668
+ PROCESSING = "PROCESSING",
1669
+ SUCCESS = "SUCCESS",
1670
+ FAILED = "FAILED",
1671
+ EXPIRED = "EXPIRED"
1672
+ }
1673
+ declare class WalletTransaction extends BaseEntity {
1674
+ walletId: number;
1675
+ wallet: Wallet;
1676
+ amount: number;
1677
+ type: WalletTransactionTypeEnum;
1678
+ status: WalletTransactionStatusEnum;
1679
+ description: string;
1680
+ completedAt: Date;
1624
1681
  transactionFor: string;
1625
1682
  metaData: string;
1683
+ stripeTransactionId: number;
1626
1684
  }
1627
1685
 
1628
- declare enum StripeWalletAccountTypeEnum {
1686
+ declare enum WalletAccountTypeEnum {
1629
1687
  BUSINESS = "BUSINESS",
1630
1688
  FREELANCER = "FREELANCER"
1631
1689
  }
1632
- declare enum StripeWalletOnboardingStatusEnum {
1690
+ declare enum WalletOnboardingStatusEnum {
1633
1691
  PENDING = "PENDING",
1634
1692
  COMPLETED = "COMPLETED"
1635
1693
  }
1636
- declare class StripeWallet extends BaseEntity {
1694
+ declare class Wallet extends BaseEntity {
1637
1695
  userId: number;
1638
1696
  user: User;
1639
- accountType: StripeWalletAccountTypeEnum;
1697
+ accountType: WalletAccountTypeEnum;
1640
1698
  stripeAccountId: string;
1641
1699
  stripeCustomerId: string;
1642
1700
  walletBalance: number;
1643
1701
  walletBalanceCents: number;
1644
- onboardingStatus: StripeWalletOnboardingStatusEnum;
1702
+ onboardingStatus: WalletOnboardingStatusEnum;
1645
1703
  stripeMetadata: Record<string, any>;
1646
- transactions: StripeWalletTransaction[];
1647
- }
1648
-
1649
- declare class Signature extends BaseEntity {
1650
- userId: number;
1651
- user: User;
1652
- signatureUrl: string;
1653
- }
1654
-
1655
- declare enum DisputeStatusEnum {
1656
- OPEN = "OPEN",
1657
- IN_REVIEW = "IN_REVIEW",
1658
- PENDING_RESPONSE = "PENDING_RESPONSE",
1659
- UNDER_INVESTIGATION = "UNDER_INVESTIGATION",
1660
- RESOLVED = "RESOLVED",
1661
- CLOSED = "CLOSED",
1662
- ESCALATED = "ESCALATED",
1663
- CANCELLED = "CANCELLED",
1664
- REOPENED = "REOPENED"
1665
- }
1666
- declare class Dispute extends BaseEntity {
1667
- disputeUniqueId: string;
1668
- disputeType: string;
1669
- description: string;
1670
- comment: string;
1671
- status: DisputeStatusEnum;
1672
- initiatorId: number;
1673
- initiator: User;
1674
- respondentId: number;
1675
- respondent: User;
1676
- attachments: any[];
1677
- dynamicFields: Record<string, any>;
1704
+ walletTransactions: WalletTransaction[];
1678
1705
  }
1679
1706
 
1680
1707
  declare enum AccountType {
@@ -1759,7 +1786,6 @@ declare class User extends BaseEntity {
1759
1786
  adminUserRoles: AdminUserRole[];
1760
1787
  clientContracts: Contract[];
1761
1788
  freelancerContracts: Contract[];
1762
- stripeWallet: StripeWallet;
1763
1789
  signatures: Signature;
1764
1790
  clientTimesheets: Timesheet[];
1765
1791
  freelancerTimesheets: Timesheet[];
@@ -1771,6 +1797,8 @@ declare class User extends BaseEntity {
1771
1797
  clientPreferencesReceived: ClientCandidatePreference[];
1772
1798
  initiatedDisputes: Dispute[];
1773
1799
  respondentDisputes: Dispute[];
1800
+ wallet: Wallet;
1801
+ stripeTransactions: StripeTransaction[];
1774
1802
  }
1775
1803
 
1776
1804
  declare enum RatingTypeEnum {
@@ -2878,4 +2906,4 @@ declare class StripeLog extends BaseEntity {
2878
2906
  rawWebhookData: string;
2879
2907
  }
2880
2908
 
2881
- export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, 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, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, 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, 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, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, 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, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, 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, RefreshDto, RefreshToken, ResetPasswordDto, ResetPasswordTokenValidationDto, 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, State, Step, StripeLog, StripeWallet, StripeWalletAccountTypeEnum, StripeWalletOnboardingStatusEnum, StripeWalletTransaction, StripeWalletTransactionStatusEnum, StripeWalletTransactionTypeEnum, 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, ZoomMeetingLog };
2909
+ export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, 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, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, 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, 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, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, 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, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, 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, RefreshDto, RefreshToken, ResetPasswordDto, ResetPasswordTokenValidationDto, 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, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZoomMeetingLog };