@reposit/api-client 6.62.0 → 6.64.0-1
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/index.d.ts +327 -14
- package/dist/index.js +1 -1
- package/dist/index.mjs +4560 -3757
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -190,6 +190,8 @@ export declare interface ApplicantsApiInterface {
|
|
|
190
190
|
updateAttributes(id: string, updateApplicantAttributesDTO: UpdateApplicantAttributesDTO, options?: any): AxiosPromise<ApplicantDTO>;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
|
+
export declare function applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemCorrectionResponseDTO>;
|
|
194
|
+
|
|
193
195
|
export declare function approveClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
194
196
|
|
|
195
197
|
export declare interface ArbitrationDocumentDTO {
|
|
@@ -404,6 +406,88 @@ export declare interface BlockedTenantDTO {
|
|
|
404
406
|
fullName?: string;
|
|
405
407
|
}
|
|
406
408
|
|
|
409
|
+
export declare interface BulkImportDTO {
|
|
410
|
+
id: string;
|
|
411
|
+
name: string;
|
|
412
|
+
organizationId: string;
|
|
413
|
+
organizationName?: string;
|
|
414
|
+
filePath?: string;
|
|
415
|
+
status: BulkImportDTOStatusEnum;
|
|
416
|
+
totalRecords: number;
|
|
417
|
+
processedRecords: number;
|
|
418
|
+
failedRecords: number;
|
|
419
|
+
createdByUserId: string;
|
|
420
|
+
createdByUser?: UserDTO;
|
|
421
|
+
failureReason?: string;
|
|
422
|
+
startedAt?: string;
|
|
423
|
+
completedAt?: string;
|
|
424
|
+
createdAt: string;
|
|
425
|
+
updatedAt: string;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
export declare enum BulkImportDTOStatusEnum {
|
|
429
|
+
DRAFT = "DRAFT",
|
|
430
|
+
IMPORTING = "IMPORTING",
|
|
431
|
+
PROCESSING = "PROCESSING",
|
|
432
|
+
COMPLETED = "COMPLETED",
|
|
433
|
+
FAILED = "FAILED"
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
export declare class BulkImportsApi extends BaseAPI implements BulkImportsApiInterface {
|
|
437
|
+
createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
438
|
+
createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
|
|
439
|
+
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
440
|
+
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
441
|
+
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
442
|
+
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
443
|
+
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
444
|
+
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
export declare const BulkImportsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
448
|
+
createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): RequestArgs;
|
|
449
|
+
createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): RequestArgs;
|
|
450
|
+
getAllBulkImports(options?: any): RequestArgs;
|
|
451
|
+
getBulkImportById(id: string, options?: any): RequestArgs;
|
|
452
|
+
getBulkImportDownloadUrl(id: string, options?: any): RequestArgs;
|
|
453
|
+
getExampleCsv(options?: any): RequestArgs;
|
|
454
|
+
getFailedRowsCsv(id: string, options?: any): RequestArgs;
|
|
455
|
+
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): RequestArgs;
|
|
456
|
+
};
|
|
457
|
+
|
|
458
|
+
export declare const BulkImportsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
459
|
+
createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
460
|
+
createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
|
|
461
|
+
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
462
|
+
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
463
|
+
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
464
|
+
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
465
|
+
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
466
|
+
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
export declare const BulkImportsApiFp: (configuration?: Configuration) => {
|
|
470
|
+
createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
471
|
+
createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemporaryUploadUrlDTO>;
|
|
472
|
+
getAllBulkImports(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkImportDTO>>;
|
|
473
|
+
getBulkImportById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
474
|
+
getBulkImportDownloadUrl(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadUrlDTO>;
|
|
475
|
+
getExampleCsv(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
476
|
+
getFailedRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
477
|
+
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
478
|
+
};
|
|
479
|
+
|
|
480
|
+
export declare interface BulkImportsApiInterface {
|
|
481
|
+
createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
482
|
+
createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
|
|
483
|
+
getAllBulkImports(options?: any): AxiosPromise<Array<BulkImportDTO>>;
|
|
484
|
+
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
485
|
+
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
486
|
+
getExampleCsv(options?: any): AxiosPromise<{}>;
|
|
487
|
+
getFailedRowsCsv(id: string, options?: any): AxiosPromise<{}>;
|
|
488
|
+
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
489
|
+
}
|
|
490
|
+
|
|
407
491
|
export declare interface CashDepositDetailsDTO {
|
|
408
492
|
amount: number;
|
|
409
493
|
PPM: number;
|
|
@@ -685,6 +769,54 @@ export declare enum ClaimDTOStatusEnum {
|
|
|
685
769
|
INSURANCECLAIM = "INSURANCE_CLAIM"
|
|
686
770
|
}
|
|
687
771
|
|
|
772
|
+
export declare interface ClaimItemCorrectionResponseDTO {
|
|
773
|
+
claimId: string;
|
|
774
|
+
claimItemId: string;
|
|
775
|
+
newAmount: number;
|
|
776
|
+
action: ClaimItemCorrectionResponseDTOActionEnum;
|
|
777
|
+
currentItemAmount: number;
|
|
778
|
+
projectedItemAmount: number;
|
|
779
|
+
currentClaimAmount: number;
|
|
780
|
+
projectedClaimAmount: number;
|
|
781
|
+
hasFinalProposal: boolean;
|
|
782
|
+
orderUpdateWouldApply: boolean;
|
|
783
|
+
orderUpdateSkippedReasons: Array<string>;
|
|
784
|
+
relatedProposalCount: number;
|
|
785
|
+
relatedDocumentCount: number;
|
|
786
|
+
relatedEvidenceChaserItemCount: number;
|
|
787
|
+
relatedEvidenceChaserReviewCount: number;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
export declare enum ClaimItemCorrectionResponseDTOActionEnum {
|
|
791
|
+
Deletion = "deletion",
|
|
792
|
+
Reduction = "reduction"
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
export declare class ClaimItemCorrectionsApi extends BaseAPI implements ClaimItemCorrectionsApiInterface {
|
|
796
|
+
applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
797
|
+
dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
export declare const ClaimItemCorrectionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
801
|
+
applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): RequestArgs;
|
|
802
|
+
dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): RequestArgs;
|
|
803
|
+
};
|
|
804
|
+
|
|
805
|
+
export declare const ClaimItemCorrectionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
806
|
+
applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
807
|
+
dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
808
|
+
};
|
|
809
|
+
|
|
810
|
+
export declare const ClaimItemCorrectionsApiFp: (configuration?: Configuration) => {
|
|
811
|
+
applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
812
|
+
dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
813
|
+
};
|
|
814
|
+
|
|
815
|
+
export declare interface ClaimItemCorrectionsApiInterface {
|
|
816
|
+
applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
817
|
+
dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
818
|
+
}
|
|
819
|
+
|
|
688
820
|
export declare interface ClaimItemDocumentDTO {
|
|
689
821
|
document: DocumentDTO;
|
|
690
822
|
id: string;
|
|
@@ -1410,6 +1542,13 @@ export declare interface CreateBeneficiaryDTO {
|
|
|
1410
1542
|
companyName?: string;
|
|
1411
1543
|
}
|
|
1412
1544
|
|
|
1545
|
+
export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
|
|
1546
|
+
|
|
1547
|
+
export declare interface CreateBulkImportDTO {
|
|
1548
|
+
name: string;
|
|
1549
|
+
organizationId: string;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1413
1552
|
export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
|
|
1414
1553
|
|
|
1415
1554
|
export declare function createClaim(createClaimDTO: CreateClaimDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -1695,6 +1834,7 @@ export declare interface CreateLandlordDTO {
|
|
|
1695
1834
|
lastName?: string;
|
|
1696
1835
|
companyName?: string;
|
|
1697
1836
|
email: string;
|
|
1837
|
+
contactNumber?: string;
|
|
1698
1838
|
landlordTypeId: CreateLandlordDTOLandlordTypeIdEnum;
|
|
1699
1839
|
}
|
|
1700
1840
|
|
|
@@ -1704,17 +1844,25 @@ export declare enum CreateLandlordDTOLandlordTypeIdEnum {
|
|
|
1704
1844
|
}
|
|
1705
1845
|
|
|
1706
1846
|
export declare interface CreateLandlordForRepositDTO {
|
|
1707
|
-
|
|
1708
|
-
|
|
1847
|
+
landlordTypeId?: CreateLandlordForRepositDTOLandlordTypeIdEnum;
|
|
1848
|
+
firstName?: string;
|
|
1849
|
+
lastName?: string;
|
|
1850
|
+
companyName?: string;
|
|
1709
1851
|
email: string;
|
|
1710
1852
|
address?: CreateAddressForLandlordDTO;
|
|
1711
1853
|
}
|
|
1712
1854
|
|
|
1855
|
+
export declare enum CreateLandlordForRepositDTOLandlordTypeIdEnum {
|
|
1856
|
+
COMPANY = "COMPANY",
|
|
1857
|
+
SOLEPERSON = "SOLE_PERSON"
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1713
1860
|
export declare interface CreateLandlordWithOrgDTO {
|
|
1714
1861
|
firstName?: string;
|
|
1715
1862
|
lastName?: string;
|
|
1716
1863
|
companyName?: string;
|
|
1717
1864
|
email: string;
|
|
1865
|
+
contactNumber?: string;
|
|
1718
1866
|
landlordTypeId: CreateLandlordWithOrgDTOLandlordTypeIdEnum;
|
|
1719
1867
|
organizationId: string;
|
|
1720
1868
|
}
|
|
@@ -1917,6 +2065,14 @@ export declare interface CreateRepositDTO {
|
|
|
1917
2065
|
draft?: boolean;
|
|
1918
2066
|
}
|
|
1919
2067
|
|
|
2068
|
+
export declare function createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TemporaryUploadUrlDTO>;
|
|
2069
|
+
|
|
2070
|
+
export declare interface CreateTemporaryUploadUrlDTO {
|
|
2071
|
+
fileName: string;
|
|
2072
|
+
contentType?: string;
|
|
2073
|
+
expiresInSeconds?: number;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
1920
2076
|
export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
|
|
1921
2077
|
|
|
1922
2078
|
export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
|
|
@@ -1960,11 +2116,17 @@ export declare interface CreateTenancyRequestDTO {
|
|
|
1960
2116
|
PPM?: number;
|
|
1961
2117
|
isNewTenancy?: boolean;
|
|
1962
2118
|
startDate?: string;
|
|
2119
|
+
termType?: CreateTenancyRequestDTOTermTypeEnum;
|
|
1963
2120
|
endDate?: string;
|
|
1964
2121
|
organizationId: string;
|
|
1965
2122
|
letOnly?: boolean;
|
|
1966
2123
|
}
|
|
1967
2124
|
|
|
2125
|
+
export declare enum CreateTenancyRequestDTOTermTypeEnum {
|
|
2126
|
+
FIXED = "FIXED",
|
|
2127
|
+
PERIODIC = "PERIODIC"
|
|
2128
|
+
}
|
|
2129
|
+
|
|
1968
2130
|
export declare interface CreateTenantForRepositDTO {
|
|
1969
2131
|
email: string;
|
|
1970
2132
|
firstName?: string;
|
|
@@ -2121,6 +2283,8 @@ export declare function disableTopUps(id: string, configuration?: Configuration,
|
|
|
2121
2283
|
|
|
2122
2284
|
export declare function disableWarnings(id: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyInventoryDTO>;
|
|
2123
2285
|
|
|
2286
|
+
export declare function disconnectMyDeposits(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2287
|
+
|
|
2124
2288
|
export declare function dismissNewProductUpdates(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
|
|
2125
2289
|
|
|
2126
2290
|
export declare function dismissOrganizationMessage(messageId: 'featureBankAccounts' | 'warningBankAccounts', id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationDTO>;
|
|
@@ -2169,6 +2333,13 @@ export declare interface DocumentsApiInterface {
|
|
|
2169
2333
|
getDocumentsByIds(ids: Array<string>, options?: any): AxiosPromise<Array<DocumentDTO>>;
|
|
2170
2334
|
}
|
|
2171
2335
|
|
|
2336
|
+
export declare interface DownloadUrlDTO {
|
|
2337
|
+
downloadUrl: string;
|
|
2338
|
+
expiresInSeconds: number;
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2341
|
+
export declare function dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemCorrectionResponseDTO>;
|
|
2342
|
+
|
|
2172
2343
|
export declare function duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<IsDuplicateResponse>;
|
|
2173
2344
|
|
|
2174
2345
|
export declare interface DuplicatePaymentMethodCheckDTO {
|
|
@@ -2660,12 +2831,18 @@ export declare interface GeneratePlaidLinkTokenResponseDTO {
|
|
|
2660
2831
|
|
|
2661
2832
|
export declare function getActive(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<string>;
|
|
2662
2833
|
|
|
2834
|
+
export declare function getAllBulkImports(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<BulkImportDTO>>;
|
|
2835
|
+
|
|
2663
2836
|
export declare function getAmountRemaining(id: string, includeInterest: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderAmountRemainingDTO>;
|
|
2664
2837
|
|
|
2665
2838
|
export declare function getArbitrationById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ArbitrationDTO>;
|
|
2666
2839
|
|
|
2667
2840
|
export declare function getBankAccounts(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationBankAccountDTO>>;
|
|
2668
2841
|
|
|
2842
|
+
export declare function getBulkImportById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
|
|
2843
|
+
|
|
2844
|
+
export declare function getBulkImportDownloadUrl(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<DownloadUrlDTO>;
|
|
2845
|
+
|
|
2669
2846
|
export declare function getByTenancyId(tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<TenancyExpiryDTO>>;
|
|
2670
2847
|
|
|
2671
2848
|
export declare function getCashDepositAmount(ppm: number, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CashDepositDTO>;
|
|
@@ -2686,6 +2863,10 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
|
|
|
2686
2863
|
|
|
2687
2864
|
export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
|
|
2688
2865
|
|
|
2866
|
+
export declare function getExampleCsv(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2867
|
+
|
|
2868
|
+
export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2869
|
+
|
|
2689
2870
|
export declare function getInstalmentById(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentDTO>;
|
|
2690
2871
|
|
|
2691
2872
|
export declare function getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentPayResponseDTO>;
|
|
@@ -2808,6 +2989,7 @@ export declare function healthCheck(configuration?: Configuration, axios?: Axios
|
|
|
2808
2989
|
export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebhooksApiInterface {
|
|
2809
2990
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
|
|
2810
2991
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
|
|
2992
|
+
processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
|
|
2811
2993
|
processStripeWebhooks(options?: any): AxiosPromise<object>;
|
|
2812
2994
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
|
|
2813
2995
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
|
|
@@ -2817,6 +2999,7 @@ export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebh
|
|
|
2817
2999
|
export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2818
3000
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): RequestArgs;
|
|
2819
3001
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): RequestArgs;
|
|
3002
|
+
processStripeOffSessionWebhooks(options?: any): RequestArgs;
|
|
2820
3003
|
processStripeWebhooks(options?: any): RequestArgs;
|
|
2821
3004
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): RequestArgs;
|
|
2822
3005
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): RequestArgs;
|
|
@@ -2826,6 +3009,7 @@ export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Conf
|
|
|
2826
3009
|
export declare const IncomingWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2827
3010
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
|
|
2828
3011
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
|
|
3012
|
+
processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
|
|
2829
3013
|
processStripeWebhooks(options?: any): AxiosPromise<object>;
|
|
2830
3014
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
|
|
2831
3015
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
|
|
@@ -2835,6 +3019,7 @@ export declare const IncomingWebhooksApiFactory: (configuration?: Configuration,
|
|
|
2835
3019
|
export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
|
|
2836
3020
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
2837
3021
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3022
|
+
processStripeOffSessionWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
2838
3023
|
processStripeWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
2839
3024
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
2840
3025
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
@@ -2844,6 +3029,7 @@ export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
|
|
|
2844
3029
|
export declare interface IncomingWebhooksApiInterface {
|
|
2845
3030
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<{}>;
|
|
2846
3031
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
|
|
3032
|
+
processStripeOffSessionWebhooks(options?: any): AxiosPromise<{}>;
|
|
2847
3033
|
processStripeWebhooks(options?: any): AxiosPromise<object>;
|
|
2848
3034
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
|
|
2849
3035
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<{}>;
|
|
@@ -3065,6 +3251,7 @@ export declare interface LandlordDTO {
|
|
|
3065
3251
|
companyName: string;
|
|
3066
3252
|
type: LandlordDTOTypeEnum;
|
|
3067
3253
|
email: string;
|
|
3254
|
+
contactNumber?: string;
|
|
3068
3255
|
organization: OrganizationDTO;
|
|
3069
3256
|
createdAt: string;
|
|
3070
3257
|
updatedAt: string;
|
|
@@ -3156,6 +3343,7 @@ export declare interface MyDepositsExchangeTokenRequestDTO {
|
|
|
3156
3343
|
|
|
3157
3344
|
export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAuthApiInterface {
|
|
3158
3345
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
|
|
3346
|
+
disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
|
|
3159
3347
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
|
|
3160
3348
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3161
3349
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
|
|
@@ -3164,6 +3352,7 @@ export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAu
|
|
|
3164
3352
|
|
|
3165
3353
|
export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3166
3354
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): RequestArgs;
|
|
3355
|
+
disconnectMyDeposits(organizationId: string, options?: any): RequestArgs;
|
|
3167
3356
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): RequestArgs;
|
|
3168
3357
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): RequestArgs;
|
|
3169
3358
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): RequestArgs;
|
|
@@ -3172,6 +3361,7 @@ export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Confi
|
|
|
3172
3361
|
|
|
3173
3362
|
export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3174
3363
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
|
|
3364
|
+
disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
|
|
3175
3365
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
|
|
3176
3366
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3177
3367
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
|
|
@@ -3180,6 +3370,7 @@ export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration,
|
|
|
3180
3370
|
|
|
3181
3371
|
export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
|
|
3182
3372
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3373
|
+
disconnectMyDeposits(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
3183
3374
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3184
3375
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3185
3376
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -3188,6 +3379,7 @@ export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
|
|
|
3188
3379
|
|
|
3189
3380
|
export declare interface MyDepositsOAuthApiInterface {
|
|
3190
3381
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
|
|
3382
|
+
disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<{}>;
|
|
3191
3383
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
|
|
3192
3384
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3193
3385
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -3196,6 +3388,16 @@ export declare interface MyDepositsOAuthApiInterface {
|
|
|
3196
3388
|
|
|
3197
3389
|
export declare interface MyDepositsOnboardingStatusResponseDTO {
|
|
3198
3390
|
onboardingStatus: MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum;
|
|
3391
|
+
connectedUserName?: string;
|
|
3392
|
+
companyName?: string;
|
|
3393
|
+
officeName?: string;
|
|
3394
|
+
accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
|
|
3395
|
+
}
|
|
3396
|
+
|
|
3397
|
+
export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
|
|
3398
|
+
AGENT = "AGENT",
|
|
3399
|
+
LANDLORD = "LANDLORD",
|
|
3400
|
+
CORPORATELANDLORD = "CORPORATE_LANDLORD"
|
|
3199
3401
|
}
|
|
3200
3402
|
|
|
3201
3403
|
export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
|
|
@@ -3294,7 +3496,7 @@ export declare interface OneTimeSessionTokenDTO {
|
|
|
3294
3496
|
updatedAt: string;
|
|
3295
3497
|
}
|
|
3296
3498
|
|
|
3297
|
-
export declare function optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<SearchTenancyOrderResultsDTO>;
|
|
3499
|
+
export declare function optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<SearchTenancyOrderResultsDTO>;
|
|
3298
3500
|
|
|
3299
3501
|
export declare function optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<SearchClaimResultsDTO>;
|
|
3300
3502
|
|
|
@@ -3625,6 +3827,7 @@ export declare interface OrganizationDTO {
|
|
|
3625
3827
|
name: string;
|
|
3626
3828
|
attributes?: OrganizationAttributesDTO;
|
|
3627
3829
|
settings?: OrganizationSettingsDTO;
|
|
3830
|
+
canUseAllTenancyTypes?: boolean;
|
|
3628
3831
|
organizationTypeId: OrganizationDTOOrganizationTypeIdEnum;
|
|
3629
3832
|
organizationRecipients?: Array<OrganizationRecipientDTO>;
|
|
3630
3833
|
createdAt: string;
|
|
@@ -3940,6 +4143,12 @@ export declare interface OrganizationSettingsDTO {
|
|
|
3940
4143
|
inventoryChaserDisabled?: boolean;
|
|
3941
4144
|
minimumFeeDisabled?: boolean;
|
|
3942
4145
|
pendingSwitchRemindersDisabled?: boolean;
|
|
4146
|
+
allowedTenancyTermTypes?: Array<OrganizationSettingsDTOAllowedTenancyTermTypesEnum>;
|
|
4147
|
+
}
|
|
4148
|
+
|
|
4149
|
+
export declare enum OrganizationSettingsDTOAllowedTenancyTermTypesEnum {
|
|
4150
|
+
FIXED = "FIXED",
|
|
4151
|
+
PERIODIC = "PERIODIC"
|
|
3943
4152
|
}
|
|
3944
4153
|
|
|
3945
4154
|
export declare enum OrganizationSettingsDTOCommissionRuleEnum {
|
|
@@ -4057,6 +4266,7 @@ export declare interface OrganizationWithCashDepositDTO {
|
|
|
4057
4266
|
name: string;
|
|
4058
4267
|
attributes?: OrganizationAttributesDTO;
|
|
4059
4268
|
settings?: OrganizationSettingsDTO;
|
|
4269
|
+
canUseAllTenancyTypes?: boolean;
|
|
4060
4270
|
organizationTypeId: OrganizationWithCashDepositDTOOrganizationTypeIdEnum;
|
|
4061
4271
|
organizationRecipients?: Array<OrganizationRecipientDTO>;
|
|
4062
4272
|
createdAt: string;
|
|
@@ -4078,6 +4288,7 @@ export declare interface OrganizationWithRepositsAndRoles {
|
|
|
4078
4288
|
name: string;
|
|
4079
4289
|
attributes?: OrganizationAttributesDTO;
|
|
4080
4290
|
settings?: OrganizationSettingsDTO;
|
|
4291
|
+
canUseAllTenancyTypes?: boolean;
|
|
4081
4292
|
organizationTypeId: OrganizationWithRepositsAndRolesOrganizationTypeIdEnum;
|
|
4082
4293
|
organizationRecipients?: Array<OrganizationRecipientDTO>;
|
|
4083
4294
|
createdAt: string;
|
|
@@ -4109,6 +4320,7 @@ export declare interface OrganizationWithRoles {
|
|
|
4109
4320
|
name: string;
|
|
4110
4321
|
attributes?: OrganizationAttributesDTO;
|
|
4111
4322
|
settings?: OrganizationSettingsDTO;
|
|
4323
|
+
canUseAllTenancyTypes?: boolean;
|
|
4112
4324
|
organizationTypeId: OrganizationWithRolesOrganizationTypeIdEnum;
|
|
4113
4325
|
organizationRecipients?: Array<OrganizationRecipientDTO>;
|
|
4114
4326
|
createdAt: string;
|
|
@@ -4421,7 +4633,12 @@ export declare interface PlaidWebhookDto {
|
|
|
4421
4633
|
|
|
4422
4634
|
export declare enum PlaidWebhookDtoNewPaymentStatusEnum {
|
|
4423
4635
|
EXECUTED = "PAYMENT_STATUS_EXECUTED",
|
|
4424
|
-
INITIATED = "PAYMENT_STATUS_INITIATED"
|
|
4636
|
+
INITIATED = "PAYMENT_STATUS_INITIATED",
|
|
4637
|
+
INSUFFICIENTFUNDS = "PAYMENT_STATUS_INSUFFICIENT_FUNDS",
|
|
4638
|
+
FAILED = "PAYMENT_STATUS_FAILED",
|
|
4639
|
+
BLOCKED = "PAYMENT_STATUS_BLOCKED",
|
|
4640
|
+
REJECTED = "PAYMENT_STATUS_REJECTED",
|
|
4641
|
+
CANCELLED = "PAYMENT_STATUS_CANCELLED"
|
|
4425
4642
|
}
|
|
4426
4643
|
|
|
4427
4644
|
export declare enum PlaidWebhookDtoStatusEnum {
|
|
@@ -4630,6 +4847,8 @@ export declare function processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, c
|
|
|
4630
4847
|
|
|
4631
4848
|
export declare function processSendGridWebhooks(requestBody: Array<string>, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
4632
4849
|
|
|
4850
|
+
export declare function processStripeOffSessionWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
4851
|
+
|
|
4633
4852
|
export declare function processStripeWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
4634
4853
|
|
|
4635
4854
|
export declare function processTwilioIvrWebhooks(ivrCallId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -4638,6 +4857,12 @@ export declare function processTwilioIvrWebhooksWithGatherAction(ivrCallId: stri
|
|
|
4638
4857
|
|
|
4639
4858
|
export declare function processTwilioVoicemailWebhook(from: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
4640
4859
|
|
|
4860
|
+
export declare function processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
|
|
4861
|
+
|
|
4862
|
+
export declare interface ProcessUploadFileDTO {
|
|
4863
|
+
sourceKey: string;
|
|
4864
|
+
}
|
|
4865
|
+
|
|
4641
4866
|
export declare interface ProductDTO {
|
|
4642
4867
|
id: string;
|
|
4643
4868
|
name: string;
|
|
@@ -4713,6 +4938,7 @@ export declare enum QueueMessageDTOCronNameEnum {
|
|
|
4713
4938
|
DAILYCLAIMAUTORESPONDSUPPLIER = "DAILY_CLAIM_AUTO_RESPOND_SUPPLIER",
|
|
4714
4939
|
SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
|
|
4715
4940
|
DAILYFINALSCHEDULEDAUTOCHARGE = "DAILY_FINAL_SCHEDULED_AUTO_CHARGE",
|
|
4941
|
+
DAILYSCHEDULEDRETRYABLEPAYMENT = "DAILY_SCHEDULED_RETRYABLE_PAYMENT",
|
|
4716
4942
|
DAILYORDERSCHEDULEDCHARGE = "DAILY_ORDER_SCHEDULED_CHARGE",
|
|
4717
4943
|
MONTHLYDIRECTCOMMISSION = "MONTHLY_DIRECT_COMMISSION",
|
|
4718
4944
|
WEEKLYLANDLORDTRANSFERREMINDER = "WEEKLY_LANDLORD_TRANSFER_REMINDER",
|
|
@@ -4743,10 +4969,12 @@ export declare enum QueueMessageDTOCronNameEnum {
|
|
|
4743
4969
|
DAILYEVIDENCECHASERSUPPLIERDRAFTREMINDER = "DAILY_EVIDENCE_CHASER_SUPPLIER_DRAFT_REMINDER",
|
|
4744
4970
|
DAILYARBITRATIONSENTNOTIFICATION = "DAILY_ARBITRATION_SENT_NOTIFICATION",
|
|
4745
4971
|
DAILYIVRCALLPROCESSING = "DAILY_IVR_CALL_PROCESSING",
|
|
4972
|
+
DAILYALBMETRICSCOLLECTION = "DAILY_ALB_METRICS_COLLECTION",
|
|
4746
4973
|
WEEKLYPENDINGREPOSITPASTSTARTDATEREMINDER = "WEEKLY_PENDING_REPOSIT_PAST_START_DATE_REMINDER",
|
|
4747
4974
|
POLLPENDINGCASHDEPOSITS = "POLL_PENDING_CASH_DEPOSITS",
|
|
4748
4975
|
REFRESHMYDEPOSITSACCESSTOKENS = "REFRESH_MY_DEPOSITS_ACCESS_TOKENS",
|
|
4749
|
-
RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS"
|
|
4976
|
+
RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
|
|
4977
|
+
PROCESSSQSWORKEROUTBOX = "PROCESS_SQS_WORKER_OUTBOX"
|
|
4750
4978
|
}
|
|
4751
4979
|
|
|
4752
4980
|
export declare enum QueueMessageDTOTypeEnum {
|
|
@@ -4755,10 +4983,14 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
4755
4983
|
TOPUPUPCOMING = "TOP_UP_UPCOMING",
|
|
4756
4984
|
AUTOCHARGE = "AUTO_CHARGE",
|
|
4757
4985
|
SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
|
|
4986
|
+
PROCESSSCHEDULEDRETRYABLEPAYMENT = "PROCESS_SCHEDULED_RETRYABLE_PAYMENT",
|
|
4758
4987
|
CHARGEORDERSCHEDULEDCHARGE = "CHARGE_ORDER_SCHEDULED_CHARGE",
|
|
4759
4988
|
AUTORESPONDTENANT = "AUTO_RESPOND_TENANT",
|
|
4760
4989
|
AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
|
|
4761
4990
|
PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
|
|
4991
|
+
PROCESSOFFSESSIONPAYMENTATTEMPTFAILED = "PROCESS_OFF_SESSION_PAYMENT_ATTEMPT_FAILED",
|
|
4992
|
+
PROCESSOFFSESSIONPAYMENTSUCCEEDED = "PROCESS_OFF_SESSION_PAYMENT_SUCCEEDED",
|
|
4993
|
+
PROCESSOFFSESSIONPAYMENTFAILED = "PROCESS_OFF_SESSION_PAYMENT_FAILED",
|
|
4762
4994
|
PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
|
|
4763
4995
|
PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
|
|
4764
4996
|
PROCESSSTRIPEDISPUTECREATED = "PROCESS_STRIPE_DISPUTE_CREATED",
|
|
@@ -4803,7 +5035,10 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
4803
5035
|
HANDLEPENDINGCASHDEPOSIT = "HANDLE_PENDING_CASH_DEPOSIT",
|
|
4804
5036
|
REFRESHMYDEPOSITSACCESSTOKEN = "REFRESH_MY_DEPOSITS_ACCESS_TOKEN",
|
|
4805
5037
|
RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
|
|
4806
|
-
MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY"
|
|
5038
|
+
MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY",
|
|
5039
|
+
CREATEXEROCONTACTFORORGANIZATION = "CREATE_XERO_CONTACT_FOR_ORGANIZATION",
|
|
5040
|
+
PROCESSBULKIMPORTFILE = "PROCESS_BULK_IMPORT_FILE",
|
|
5041
|
+
PROCESSBULKIMPORTROW = "PROCESS_BULK_IMPORT_ROW"
|
|
4807
5042
|
}
|
|
4808
5043
|
|
|
4809
5044
|
export declare function readyForArbitrateClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -5063,11 +5298,18 @@ export declare interface RepositFeeDTO {
|
|
|
5063
5298
|
}
|
|
5064
5299
|
|
|
5065
5300
|
export declare interface RepositLandlordDTO {
|
|
5066
|
-
|
|
5067
|
-
|
|
5301
|
+
landlordTypeId: RepositLandlordDTOLandlordTypeIdEnum;
|
|
5302
|
+
firstName?: string;
|
|
5303
|
+
lastName?: string;
|
|
5304
|
+
companyName?: string;
|
|
5068
5305
|
email: string;
|
|
5069
5306
|
}
|
|
5070
5307
|
|
|
5308
|
+
export declare enum RepositLandlordDTOLandlordTypeIdEnum {
|
|
5309
|
+
COMPANY = "COMPANY",
|
|
5310
|
+
SOLEPERSON = "SOLE_PERSON"
|
|
5311
|
+
}
|
|
5312
|
+
|
|
5071
5313
|
export declare interface RepositOfferDTO {
|
|
5072
5314
|
id: string;
|
|
5073
5315
|
PPM: number;
|
|
@@ -5511,6 +5753,42 @@ export declare interface SearchUserResultsDTO {
|
|
|
5511
5753
|
results: Array<UserDTO>;
|
|
5512
5754
|
}
|
|
5513
5755
|
|
|
5756
|
+
export declare function seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
5757
|
+
|
|
5758
|
+
export declare interface SeedCashDepositDTO {
|
|
5759
|
+
organizationId: string;
|
|
5760
|
+
userId: string;
|
|
5761
|
+
propertyId: string;
|
|
5762
|
+
ppm: number;
|
|
5763
|
+
amount: number;
|
|
5764
|
+
startDate: string;
|
|
5765
|
+
letOnly: boolean;
|
|
5766
|
+
tenantFirstName: string;
|
|
5767
|
+
tenantLastName: string;
|
|
5768
|
+
tenantEmail: string;
|
|
5769
|
+
tenantMobileNumber: string;
|
|
5770
|
+
}
|
|
5771
|
+
|
|
5772
|
+
export declare class SeedCashDepositsApi extends BaseAPI implements SeedCashDepositsApiInterface {
|
|
5773
|
+
seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<Response>;
|
|
5774
|
+
}
|
|
5775
|
+
|
|
5776
|
+
export declare const SeedCashDepositsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5777
|
+
seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): RequestArgs;
|
|
5778
|
+
};
|
|
5779
|
+
|
|
5780
|
+
export declare const SeedCashDepositsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5781
|
+
seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<Response>;
|
|
5782
|
+
};
|
|
5783
|
+
|
|
5784
|
+
export declare const SeedCashDepositsApiFp: (configuration?: Configuration) => {
|
|
5785
|
+
seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
5786
|
+
};
|
|
5787
|
+
|
|
5788
|
+
export declare interface SeedCashDepositsApiInterface {
|
|
5789
|
+
seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<{}>;
|
|
5790
|
+
}
|
|
5791
|
+
|
|
5514
5792
|
export declare function seedReposit(seedRepositDTO: SeedRepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
5515
5793
|
|
|
5516
5794
|
export declare interface SeedRepositDTO {
|
|
@@ -5638,6 +5916,13 @@ export declare interface SuppliersApiInterface {
|
|
|
5638
5916
|
getSupplierAgents(id: string, options?: any): AxiosPromise<Array<RepositAgentDTO>>;
|
|
5639
5917
|
}
|
|
5640
5918
|
|
|
5919
|
+
export declare interface TemporaryUploadUrlDTO {
|
|
5920
|
+
bucket: string;
|
|
5921
|
+
key: string;
|
|
5922
|
+
uploadUrl: string;
|
|
5923
|
+
expiresInSeconds: number;
|
|
5924
|
+
}
|
|
5925
|
+
|
|
5641
5926
|
export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterface {
|
|
5642
5927
|
closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5643
5928
|
createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5794,6 +6079,7 @@ export declare interface TenancyDTO {
|
|
|
5794
6079
|
tenants: Array<TenantDTO>;
|
|
5795
6080
|
letOnly: boolean;
|
|
5796
6081
|
isNewTenancy?: boolean;
|
|
6082
|
+
termType?: TenancyDTOTermTypeEnum;
|
|
5797
6083
|
checkout?: CheckoutDTO;
|
|
5798
6084
|
completedAt?: string;
|
|
5799
6085
|
outcomeDeadline?: string;
|
|
@@ -5812,6 +6098,11 @@ export declare interface TenancyDTO {
|
|
|
5812
6098
|
preTenancyDocuments?: Array<PreTenancyDocumentDTO>;
|
|
5813
6099
|
}
|
|
5814
6100
|
|
|
6101
|
+
export declare enum TenancyDTOTermTypeEnum {
|
|
6102
|
+
FIXED = "FIXED",
|
|
6103
|
+
PERIODIC = "PERIODIC"
|
|
6104
|
+
}
|
|
6105
|
+
|
|
5815
6106
|
export declare class TenancyExpiriesApi extends BaseAPI implements TenancyExpiriesApiInterface {
|
|
5816
6107
|
createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, options?: any): AxiosPromise<TenancyExpiryDTO>;
|
|
5817
6108
|
getByTenancyId(tenancyId: string, options?: any): AxiosPromise<TenancyExpiryDTO[]>;
|
|
@@ -6002,7 +6293,7 @@ export declare interface TenancyOrderNotesApiInterface {
|
|
|
6002
6293
|
|
|
6003
6294
|
export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersApiInterface {
|
|
6004
6295
|
getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6005
|
-
optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6296
|
+
optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6006
6297
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6007
6298
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6008
6299
|
sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
|
|
@@ -6011,7 +6302,7 @@ export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersAp
|
|
|
6011
6302
|
|
|
6012
6303
|
export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6013
6304
|
getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): RequestArgs;
|
|
6014
|
-
optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): RequestArgs;
|
|
6305
|
+
optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, options?: any): RequestArgs;
|
|
6015
6306
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): RequestArgs;
|
|
6016
6307
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): RequestArgs;
|
|
6017
6308
|
sendOverdueChasers(id: string, options?: any): RequestArgs;
|
|
@@ -6020,7 +6311,7 @@ export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configu
|
|
|
6020
6311
|
|
|
6021
6312
|
export declare const TenancyOrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6022
6313
|
getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6023
|
-
optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6314
|
+
optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6024
6315
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6025
6316
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6026
6317
|
sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
|
|
@@ -6029,7 +6320,7 @@ export declare const TenancyOrdersApiFactory: (configuration?: Configuration, ba
|
|
|
6029
6320
|
|
|
6030
6321
|
export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
|
|
6031
6322
|
getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6032
|
-
optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6323
|
+
optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6033
6324
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6034
6325
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6035
6326
|
sendOverdueChasers(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
@@ -6038,7 +6329,7 @@ export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
|
|
|
6038
6329
|
|
|
6039
6330
|
export declare interface TenancyOrdersApiInterface {
|
|
6040
6331
|
getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6041
|
-
optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6332
|
+
optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6042
6333
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6043
6334
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6044
6335
|
sendOverdueChasers(id: string, options?: any): AxiosPromise<{}>;
|
|
@@ -6051,6 +6342,7 @@ export declare interface TenancyOrderWithTenancyAndOrderCustomersDTO {
|
|
|
6051
6342
|
tenancy: TenancyWithCheckoutAndClaimDTO;
|
|
6052
6343
|
tenancyOrderNotes?: Array<TenancyOrderNoteDTO>;
|
|
6053
6344
|
repositOfferId?: string;
|
|
6345
|
+
outstandingChargesTenantEmails?: Array<string>;
|
|
6054
6346
|
createdAt: string;
|
|
6055
6347
|
updatedAt: string;
|
|
6056
6348
|
deletedAt: string;
|
|
@@ -6062,6 +6354,7 @@ export declare interface TenancyOrderWithTenancyDTO {
|
|
|
6062
6354
|
id: string;
|
|
6063
6355
|
order: OrderDTO;
|
|
6064
6356
|
tenancy: TenancyWithCheckoutAndClaimDTO;
|
|
6357
|
+
outstandingChargesTenantEmails?: Array<string>;
|
|
6065
6358
|
repositOfferId?: string;
|
|
6066
6359
|
createdAt: string;
|
|
6067
6360
|
updatedAt: string;
|
|
@@ -6146,6 +6439,7 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6146
6439
|
tenants: Array<TenantDTO>;
|
|
6147
6440
|
letOnly: boolean;
|
|
6148
6441
|
isNewTenancy?: boolean;
|
|
6442
|
+
termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
|
|
6149
6443
|
checkout?: CheckoutWithClaimDTO;
|
|
6150
6444
|
completedAt?: string;
|
|
6151
6445
|
outcomeDeadline?: string;
|
|
@@ -6165,6 +6459,11 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6165
6459
|
hasIncompleteTransfers: boolean;
|
|
6166
6460
|
}
|
|
6167
6461
|
|
|
6462
|
+
export declare enum TenancyWithCheckoutAndClaimDTOTermTypeEnum {
|
|
6463
|
+
FIXED = "FIXED",
|
|
6464
|
+
PERIODIC = "PERIODIC"
|
|
6465
|
+
}
|
|
6466
|
+
|
|
6168
6467
|
export declare function tenantConfirmation(token: string, response: 'CONFIRMED' | 'UNCONFIRMED', tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6169
6468
|
|
|
6170
6469
|
export declare interface TenantDTO {
|
|
@@ -6357,6 +6656,10 @@ export declare interface UpdateClaimDTO {
|
|
|
6357
6656
|
|
|
6358
6657
|
export declare function updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6359
6658
|
|
|
6659
|
+
export declare interface UpdateClaimItemCorrectionDTO {
|
|
6660
|
+
newAmount: number;
|
|
6661
|
+
}
|
|
6662
|
+
|
|
6360
6663
|
export declare interface UpdateClaimItemDTO {
|
|
6361
6664
|
amount?: number;
|
|
6362
6665
|
description?: string;
|
|
@@ -6420,6 +6723,7 @@ export declare interface UpdateLandlordDTO {
|
|
|
6420
6723
|
companyName?: string;
|
|
6421
6724
|
type?: UpdateLandlordDTOTypeEnum;
|
|
6422
6725
|
email?: string;
|
|
6726
|
+
contactNumber?: string;
|
|
6423
6727
|
}
|
|
6424
6728
|
|
|
6425
6729
|
export declare enum UpdateLandlordDTOTypeEnum {
|
|
@@ -6497,6 +6801,12 @@ export declare interface UpdateTenancyRequestDTO {
|
|
|
6497
6801
|
endDate?: string;
|
|
6498
6802
|
letOnly?: boolean;
|
|
6499
6803
|
isNewTenancy?: boolean;
|
|
6804
|
+
termType?: UpdateTenancyRequestDTOTermTypeEnum;
|
|
6805
|
+
}
|
|
6806
|
+
|
|
6807
|
+
export declare enum UpdateTenancyRequestDTOTermTypeEnum {
|
|
6808
|
+
FIXED = "FIXED",
|
|
6809
|
+
PERIODIC = "PERIODIC"
|
|
6500
6810
|
}
|
|
6501
6811
|
|
|
6502
6812
|
export declare function updateTenantDisputeMessage(claimId: string, updateTenantDisputeMessageDTO: UpdateTenantDisputeMessageDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -6590,7 +6900,10 @@ export declare enum UserDTOInternalRolesEnum {
|
|
|
6590
6900
|
PAYMENTPLANCREATE = "PAYMENT_PLAN_CREATE",
|
|
6591
6901
|
PAYMENTPLANDELETE = "PAYMENT_PLAN_DELETE",
|
|
6592
6902
|
INTERNALREPORTSALES = "INTERNAL_REPORT_SALES",
|
|
6593
|
-
MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES"
|
|
6903
|
+
MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
|
|
6904
|
+
BULKIMPORT = "BULK_IMPORT",
|
|
6905
|
+
CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
|
|
6906
|
+
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE"
|
|
6594
6907
|
}
|
|
6595
6908
|
|
|
6596
6909
|
export declare enum UserDTOUserTypeIdEnum {
|