@experts_hub/shared 1.0.369 → 1.0.371
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/index.d.ts +3 -0
- package/dist/entities/invoices.entity.d.ts +20 -0
- package/dist/entities/transaction.entity.d.ts +24 -0
- package/dist/entities/user.entity.d.ts +2 -0
- package/dist/entities/wallet-details.entity.d.ts +20 -0
- package/dist/index.d.mts +67 -1
- package/dist/index.d.ts +67 -1
- package/dist/index.js +388 -223
- package/dist/index.mjs +318 -159
- package/dist/modules/contract/pattern/pattern.d.ts +6 -0
- package/package.json +1 -1
package/dist/entities/index.d.ts
CHANGED
|
@@ -60,3 +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 './wallet-details.entity';
|
|
64
|
+
export * from './transaction.entity';
|
|
65
|
+
export * from './invoices.entity';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BaseEntity } from "./base.entity";
|
|
2
|
+
import { WalletDetail } from "./wallet-details.entity";
|
|
3
|
+
export declare enum InvoiceStatusEnum {
|
|
4
|
+
PENDING = "PENDING",
|
|
5
|
+
PAID = "PAID",
|
|
6
|
+
FAILED = "FAILED",
|
|
7
|
+
CANCELED = "CANCELED"
|
|
8
|
+
}
|
|
9
|
+
export declare class Invoice extends BaseEntity {
|
|
10
|
+
clientWalletId: number;
|
|
11
|
+
clientWallet: WalletDetail;
|
|
12
|
+
freelancerWalletId: number;
|
|
13
|
+
freelancerWallet: WalletDetail;
|
|
14
|
+
amount: number;
|
|
15
|
+
currency: string;
|
|
16
|
+
status: InvoiceStatusEnum;
|
|
17
|
+
stripeInvoiceId: string;
|
|
18
|
+
stripeInvoicePdf: string;
|
|
19
|
+
description: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { BaseEntity } from "./base.entity";
|
|
2
|
+
import { WalletDetail } from "./wallet-details.entity";
|
|
3
|
+
export declare enum TransactionTypeEnum {
|
|
4
|
+
ADD_FUNDS = "ADD_FUNDS",
|
|
5
|
+
TRANSFER = "TRANSFER",
|
|
6
|
+
WITHDRAW = "WITHDRAW",
|
|
7
|
+
INVOICE_PAYMENT = "INVOICE_PAYMENT",
|
|
8
|
+
REFUND = "REFUND"
|
|
9
|
+
}
|
|
10
|
+
export declare enum TransactionStatusEnum {
|
|
11
|
+
PENDING = "PENDING",
|
|
12
|
+
SUCCESS = "SUCCESS",
|
|
13
|
+
FAILED = "FAILED"
|
|
14
|
+
}
|
|
15
|
+
export declare class Transaction extends BaseEntity {
|
|
16
|
+
walletId: number;
|
|
17
|
+
walletDetail: WalletDetail;
|
|
18
|
+
amount: number;
|
|
19
|
+
currency: string;
|
|
20
|
+
type: TransactionTypeEnum;
|
|
21
|
+
status: TransactionStatusEnum;
|
|
22
|
+
stripeReferenceId: string;
|
|
23
|
+
description: string;
|
|
24
|
+
}
|
|
@@ -28,6 +28,7 @@ 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 { WalletDetail } from "./wallet-details.entity";
|
|
31
32
|
export declare enum AccountType {
|
|
32
33
|
ADMIN = "ADMIN",
|
|
33
34
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -110,4 +111,5 @@ export declare class User extends BaseEntity {
|
|
|
110
111
|
adminUserRoles: AdminUserRole[];
|
|
111
112
|
clientContracts: Contract[];
|
|
112
113
|
freelancerContracts: Contract[];
|
|
114
|
+
walletDetail: WalletDetail;
|
|
113
115
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BaseEntity } from "./base.entity";
|
|
2
|
+
import { User } from "./user.entity";
|
|
3
|
+
import { Transaction } from "./transaction.entity";
|
|
4
|
+
declare enum AccountTypeEnum {
|
|
5
|
+
BUSINESS = "BUSINESS",
|
|
6
|
+
FREELANCER = "FREELANCER"
|
|
7
|
+
}
|
|
8
|
+
export declare class WalletDetail extends BaseEntity {
|
|
9
|
+
userId: number;
|
|
10
|
+
user: User;
|
|
11
|
+
name: string;
|
|
12
|
+
email: string;
|
|
13
|
+
accountType: AccountTypeEnum;
|
|
14
|
+
stripeAccountId: string;
|
|
15
|
+
stripeCustomerId: string;
|
|
16
|
+
walletBalance: number;
|
|
17
|
+
stripeMetadata: Record<string, any>;
|
|
18
|
+
transactions: Transaction[];
|
|
19
|
+
}
|
|
20
|
+
export {};
|
package/dist/index.d.mts
CHANGED
|
@@ -1379,6 +1379,46 @@ declare class FreelancerResume extends BaseEntity {
|
|
|
1379
1379
|
processedResumeData: string;
|
|
1380
1380
|
}
|
|
1381
1381
|
|
|
1382
|
+
declare enum TransactionTypeEnum {
|
|
1383
|
+
ADD_FUNDS = "ADD_FUNDS",
|
|
1384
|
+
TRANSFER = "TRANSFER",
|
|
1385
|
+
WITHDRAW = "WITHDRAW",
|
|
1386
|
+
INVOICE_PAYMENT = "INVOICE_PAYMENT",
|
|
1387
|
+
REFUND = "REFUND"
|
|
1388
|
+
}
|
|
1389
|
+
declare enum TransactionStatusEnum {
|
|
1390
|
+
PENDING = "PENDING",
|
|
1391
|
+
SUCCESS = "SUCCESS",
|
|
1392
|
+
FAILED = "FAILED"
|
|
1393
|
+
}
|
|
1394
|
+
declare class Transaction extends BaseEntity {
|
|
1395
|
+
walletId: number;
|
|
1396
|
+
walletDetail: WalletDetail;
|
|
1397
|
+
amount: number;
|
|
1398
|
+
currency: string;
|
|
1399
|
+
type: TransactionTypeEnum;
|
|
1400
|
+
status: TransactionStatusEnum;
|
|
1401
|
+
stripeReferenceId: string;
|
|
1402
|
+
description: string;
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
declare enum AccountTypeEnum {
|
|
1406
|
+
BUSINESS = "BUSINESS",
|
|
1407
|
+
FREELANCER = "FREELANCER"
|
|
1408
|
+
}
|
|
1409
|
+
declare class WalletDetail extends BaseEntity {
|
|
1410
|
+
userId: number;
|
|
1411
|
+
user: User;
|
|
1412
|
+
name: string;
|
|
1413
|
+
email: string;
|
|
1414
|
+
accountType: AccountTypeEnum;
|
|
1415
|
+
stripeAccountId: string;
|
|
1416
|
+
stripeCustomerId: string;
|
|
1417
|
+
walletBalance: number;
|
|
1418
|
+
stripeMetadata: Record<string, any>;
|
|
1419
|
+
transactions: Transaction[];
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1382
1422
|
declare enum AccountType {
|
|
1383
1423
|
ADMIN = "ADMIN",
|
|
1384
1424
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -1461,6 +1501,7 @@ declare class User extends BaseEntity {
|
|
|
1461
1501
|
adminUserRoles: AdminUserRole[];
|
|
1462
1502
|
clientContracts: Contract[];
|
|
1463
1503
|
freelancerContracts: Contract[];
|
|
1504
|
+
walletDetail: WalletDetail;
|
|
1464
1505
|
}
|
|
1465
1506
|
|
|
1466
1507
|
declare enum RatingTypeEnum {
|
|
@@ -2269,6 +2310,12 @@ declare const CONTRACT_PATTERN: {
|
|
|
2269
2310
|
fetchContractDetailsForClient: string;
|
|
2270
2311
|
fetchContractDetailsForFreelancer: string;
|
|
2271
2312
|
rejectContractsForFreelancer: string;
|
|
2313
|
+
fetchFreelancersForClientContractRepository: string;
|
|
2314
|
+
fetchJobsForClientContractRepository: string;
|
|
2315
|
+
fetchContractsForClientContractRepository: string;
|
|
2316
|
+
fetchClientsForFreelancerContractRepository: string;
|
|
2317
|
+
fetchJobsForFreelancerContractRepository: string;
|
|
2318
|
+
fetchContractsForFreelancerContractRepository: string;
|
|
2272
2319
|
};
|
|
2273
2320
|
|
|
2274
2321
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
@@ -2452,4 +2499,23 @@ declare class ZoomMeetingLog extends BaseEntity {
|
|
|
2452
2499
|
rawWebhookData: any;
|
|
2453
2500
|
}
|
|
2454
2501
|
|
|
2455
|
-
|
|
2502
|
+
declare enum InvoiceStatusEnum {
|
|
2503
|
+
PENDING = "PENDING",
|
|
2504
|
+
PAID = "PAID",
|
|
2505
|
+
FAILED = "FAILED",
|
|
2506
|
+
CANCELED = "CANCELED"
|
|
2507
|
+
}
|
|
2508
|
+
declare class Invoice extends BaseEntity {
|
|
2509
|
+
clientWalletId: number;
|
|
2510
|
+
clientWallet: WalletDetail;
|
|
2511
|
+
freelancerWalletId: number;
|
|
2512
|
+
freelancerWallet: WalletDetail;
|
|
2513
|
+
amount: number;
|
|
2514
|
+
currency: string;
|
|
2515
|
+
status: InvoiceStatusEnum;
|
|
2516
|
+
stripeInvoiceId: string;
|
|
2517
|
+
stripeInvoicePdf: string;
|
|
2518
|
+
description: string;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
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, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractStatusEnum, ContractTypeEnum, Country, CreateAdminRoleDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, 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, 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, InvoiceStatusEnum, 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, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, Transaction, TransactionStatusEnum, TransactionTypeEnum, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, WalletDetail, ZoomMeetingLog };
|
package/dist/index.d.ts
CHANGED
|
@@ -1379,6 +1379,46 @@ declare class FreelancerResume extends BaseEntity {
|
|
|
1379
1379
|
processedResumeData: string;
|
|
1380
1380
|
}
|
|
1381
1381
|
|
|
1382
|
+
declare enum TransactionTypeEnum {
|
|
1383
|
+
ADD_FUNDS = "ADD_FUNDS",
|
|
1384
|
+
TRANSFER = "TRANSFER",
|
|
1385
|
+
WITHDRAW = "WITHDRAW",
|
|
1386
|
+
INVOICE_PAYMENT = "INVOICE_PAYMENT",
|
|
1387
|
+
REFUND = "REFUND"
|
|
1388
|
+
}
|
|
1389
|
+
declare enum TransactionStatusEnum {
|
|
1390
|
+
PENDING = "PENDING",
|
|
1391
|
+
SUCCESS = "SUCCESS",
|
|
1392
|
+
FAILED = "FAILED"
|
|
1393
|
+
}
|
|
1394
|
+
declare class Transaction extends BaseEntity {
|
|
1395
|
+
walletId: number;
|
|
1396
|
+
walletDetail: WalletDetail;
|
|
1397
|
+
amount: number;
|
|
1398
|
+
currency: string;
|
|
1399
|
+
type: TransactionTypeEnum;
|
|
1400
|
+
status: TransactionStatusEnum;
|
|
1401
|
+
stripeReferenceId: string;
|
|
1402
|
+
description: string;
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
declare enum AccountTypeEnum {
|
|
1406
|
+
BUSINESS = "BUSINESS",
|
|
1407
|
+
FREELANCER = "FREELANCER"
|
|
1408
|
+
}
|
|
1409
|
+
declare class WalletDetail extends BaseEntity {
|
|
1410
|
+
userId: number;
|
|
1411
|
+
user: User;
|
|
1412
|
+
name: string;
|
|
1413
|
+
email: string;
|
|
1414
|
+
accountType: AccountTypeEnum;
|
|
1415
|
+
stripeAccountId: string;
|
|
1416
|
+
stripeCustomerId: string;
|
|
1417
|
+
walletBalance: number;
|
|
1418
|
+
stripeMetadata: Record<string, any>;
|
|
1419
|
+
transactions: Transaction[];
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1382
1422
|
declare enum AccountType {
|
|
1383
1423
|
ADMIN = "ADMIN",
|
|
1384
1424
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -1461,6 +1501,7 @@ declare class User extends BaseEntity {
|
|
|
1461
1501
|
adminUserRoles: AdminUserRole[];
|
|
1462
1502
|
clientContracts: Contract[];
|
|
1463
1503
|
freelancerContracts: Contract[];
|
|
1504
|
+
walletDetail: WalletDetail;
|
|
1464
1505
|
}
|
|
1465
1506
|
|
|
1466
1507
|
declare enum RatingTypeEnum {
|
|
@@ -2269,6 +2310,12 @@ declare const CONTRACT_PATTERN: {
|
|
|
2269
2310
|
fetchContractDetailsForClient: string;
|
|
2270
2311
|
fetchContractDetailsForFreelancer: string;
|
|
2271
2312
|
rejectContractsForFreelancer: string;
|
|
2313
|
+
fetchFreelancersForClientContractRepository: string;
|
|
2314
|
+
fetchJobsForClientContractRepository: string;
|
|
2315
|
+
fetchContractsForClientContractRepository: string;
|
|
2316
|
+
fetchClientsForFreelancerContractRepository: string;
|
|
2317
|
+
fetchJobsForFreelancerContractRepository: string;
|
|
2318
|
+
fetchContractsForFreelancerContractRepository: string;
|
|
2272
2319
|
};
|
|
2273
2320
|
|
|
2274
2321
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
@@ -2452,4 +2499,23 @@ declare class ZoomMeetingLog extends BaseEntity {
|
|
|
2452
2499
|
rawWebhookData: any;
|
|
2453
2500
|
}
|
|
2454
2501
|
|
|
2455
|
-
|
|
2502
|
+
declare enum InvoiceStatusEnum {
|
|
2503
|
+
PENDING = "PENDING",
|
|
2504
|
+
PAID = "PAID",
|
|
2505
|
+
FAILED = "FAILED",
|
|
2506
|
+
CANCELED = "CANCELED"
|
|
2507
|
+
}
|
|
2508
|
+
declare class Invoice extends BaseEntity {
|
|
2509
|
+
clientWalletId: number;
|
|
2510
|
+
clientWallet: WalletDetail;
|
|
2511
|
+
freelancerWalletId: number;
|
|
2512
|
+
freelancerWallet: WalletDetail;
|
|
2513
|
+
amount: number;
|
|
2514
|
+
currency: string;
|
|
2515
|
+
status: InvoiceStatusEnum;
|
|
2516
|
+
stripeInvoiceId: string;
|
|
2517
|
+
stripeInvoicePdf: string;
|
|
2518
|
+
description: string;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
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, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractStatusEnum, ContractTypeEnum, Country, CreateAdminRoleDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, 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, 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, InvoiceStatusEnum, 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, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, Transaction, TransactionStatusEnum, TransactionTypeEnum, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, WalletDetail, ZoomMeetingLog };
|