@reposit/api-client 6.62.0-beta.1 → 6.62.0
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 +13 -290
- package/dist/index.js +1 -1
- package/dist/index.mjs +3691 -4489
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -190,8 +190,6 @@ export declare interface ApplicantsApiInterface {
|
|
|
190
190
|
updateAttributes(id: string, updateApplicantAttributesDTO: UpdateApplicantAttributesDTO, options?: any): AxiosPromise<ApplicantDTO>;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
|
-
export declare function applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemInternalUpdatePreviewDTO>;
|
|
194
|
-
|
|
195
193
|
export declare function approveClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
196
194
|
|
|
197
195
|
export declare interface ArbitrationDocumentDTO {
|
|
@@ -406,87 +404,6 @@ export declare interface BlockedTenantDTO {
|
|
|
406
404
|
fullName?: string;
|
|
407
405
|
}
|
|
408
406
|
|
|
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
|
-
startedAt?: string;
|
|
422
|
-
completedAt?: string;
|
|
423
|
-
createdAt: string;
|
|
424
|
-
updatedAt: string;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
export declare enum BulkImportDTOStatusEnum {
|
|
428
|
-
DRAFT = "DRAFT",
|
|
429
|
-
IMPORTING = "IMPORTING",
|
|
430
|
-
PROCESSING = "PROCESSING",
|
|
431
|
-
COMPLETED = "COMPLETED",
|
|
432
|
-
FAILED = "FAILED"
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
export declare class BulkImportsApi extends BaseAPI implements BulkImportsApiInterface {
|
|
436
|
-
createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
437
|
-
createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
|
|
438
|
-
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
439
|
-
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
440
|
-
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
441
|
-
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
442
|
-
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
443
|
-
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
export declare const BulkImportsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
447
|
-
createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): RequestArgs;
|
|
448
|
-
createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): RequestArgs;
|
|
449
|
-
getAllBulkImports(options?: any): RequestArgs;
|
|
450
|
-
getBulkImportById(id: string, options?: any): RequestArgs;
|
|
451
|
-
getBulkImportDownloadUrl(id: string, options?: any): RequestArgs;
|
|
452
|
-
getExampleCsv(options?: any): RequestArgs;
|
|
453
|
-
getFailedRowsCsv(id: string, options?: any): RequestArgs;
|
|
454
|
-
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): RequestArgs;
|
|
455
|
-
};
|
|
456
|
-
|
|
457
|
-
export declare const BulkImportsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
458
|
-
createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
459
|
-
createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
|
|
460
|
-
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
461
|
-
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
462
|
-
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
463
|
-
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
464
|
-
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
465
|
-
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
466
|
-
};
|
|
467
|
-
|
|
468
|
-
export declare const BulkImportsApiFp: (configuration?: Configuration) => {
|
|
469
|
-
createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
470
|
-
createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemporaryUploadUrlDTO>;
|
|
471
|
-
getAllBulkImports(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkImportDTO>>;
|
|
472
|
-
getBulkImportById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
473
|
-
getBulkImportDownloadUrl(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadUrlDTO>;
|
|
474
|
-
getExampleCsv(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
475
|
-
getFailedRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
476
|
-
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
477
|
-
};
|
|
478
|
-
|
|
479
|
-
export declare interface BulkImportsApiInterface {
|
|
480
|
-
createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
481
|
-
createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
|
|
482
|
-
getAllBulkImports(options?: any): AxiosPromise<Array<BulkImportDTO>>;
|
|
483
|
-
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
484
|
-
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
485
|
-
getExampleCsv(options?: any): AxiosPromise<{}>;
|
|
486
|
-
getFailedRowsCsv(id: string, options?: any): AxiosPromise<{}>;
|
|
487
|
-
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
488
|
-
}
|
|
489
|
-
|
|
490
407
|
export declare interface CashDepositDetailsDTO {
|
|
491
408
|
amount: number;
|
|
492
409
|
PPM: number;
|
|
@@ -836,29 +753,6 @@ export declare enum ClaimItemDTOTypeEnum {
|
|
|
836
753
|
OTHER = "OTHER"
|
|
837
754
|
}
|
|
838
755
|
|
|
839
|
-
export declare interface ClaimItemInternalUpdatePreviewDTO {
|
|
840
|
-
claimId: string;
|
|
841
|
-
claimItemId: string;
|
|
842
|
-
newAmount: number;
|
|
843
|
-
action: ClaimItemInternalUpdatePreviewDTOActionEnum;
|
|
844
|
-
currentItemAmount: number;
|
|
845
|
-
projectedItemAmount: number;
|
|
846
|
-
currentClaimAmount: number;
|
|
847
|
-
projectedClaimAmount: number;
|
|
848
|
-
hasFinalProposal: boolean;
|
|
849
|
-
orderUpdateWouldApply: boolean;
|
|
850
|
-
orderUpdateSkippedReasons: Array<string>;
|
|
851
|
-
relatedProposalCount: number;
|
|
852
|
-
relatedDocumentCount: number;
|
|
853
|
-
relatedEvidenceChaserItemCount: number;
|
|
854
|
-
relatedEvidenceChaserReviewCount: number;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
export declare enum ClaimItemInternalUpdatePreviewDTOActionEnum {
|
|
858
|
-
Deletion = "deletion",
|
|
859
|
-
Reduction = "reduction"
|
|
860
|
-
}
|
|
861
|
-
|
|
862
756
|
export declare interface ClaimItemProposalDTO {
|
|
863
757
|
id: string;
|
|
864
758
|
claimProposalId: string;
|
|
@@ -909,42 +803,32 @@ export declare interface ClaimItemProposalsApiInterface {
|
|
|
909
803
|
}
|
|
910
804
|
|
|
911
805
|
export declare class ClaimItemsApi extends BaseAPI implements ClaimItemsApiInterface {
|
|
912
|
-
applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
913
806
|
createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): AxiosPromise<ClaimItemDTO>;
|
|
914
807
|
deleteClaimItem(claimId: string, claimItemId: string, options?: any): AxiosPromise<object>;
|
|
915
|
-
dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
916
808
|
updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): AxiosPromise<object>;
|
|
917
809
|
}
|
|
918
810
|
|
|
919
811
|
export declare const ClaimItemsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
920
|
-
applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): RequestArgs;
|
|
921
812
|
createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): RequestArgs;
|
|
922
813
|
deleteClaimItem(claimId: string, claimItemId: string, options?: any): RequestArgs;
|
|
923
|
-
dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): RequestArgs;
|
|
924
814
|
updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): RequestArgs;
|
|
925
815
|
};
|
|
926
816
|
|
|
927
817
|
export declare const ClaimItemsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
928
|
-
applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
929
818
|
createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): AxiosPromise<ClaimItemDTO>;
|
|
930
819
|
deleteClaimItem(claimId: string, claimItemId: string, options?: any): AxiosPromise<object>;
|
|
931
|
-
dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
932
820
|
updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): AxiosPromise<object>;
|
|
933
821
|
};
|
|
934
822
|
|
|
935
823
|
export declare const ClaimItemsApiFp: (configuration?: Configuration) => {
|
|
936
|
-
applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
937
824
|
createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemDTO>;
|
|
938
825
|
deleteClaimItem(claimId: string, claimItemId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
939
|
-
dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
940
826
|
updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
941
827
|
};
|
|
942
828
|
|
|
943
829
|
export declare interface ClaimItemsApiInterface {
|
|
944
|
-
applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
945
830
|
createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): AxiosPromise<ClaimItemDTO>;
|
|
946
831
|
deleteClaimItem(claimId: string, claimItemId: string, options?: any): AxiosPromise<object>;
|
|
947
|
-
dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
948
832
|
updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): AxiosPromise<object>;
|
|
949
833
|
}
|
|
950
834
|
|
|
@@ -1526,13 +1410,6 @@ export declare interface CreateBeneficiaryDTO {
|
|
|
1526
1410
|
companyName?: string;
|
|
1527
1411
|
}
|
|
1528
1412
|
|
|
1529
|
-
export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
|
|
1530
|
-
|
|
1531
|
-
export declare interface CreateBulkImportDTO {
|
|
1532
|
-
name: string;
|
|
1533
|
-
organizationId: string;
|
|
1534
|
-
}
|
|
1535
|
-
|
|
1536
1413
|
export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
|
|
1537
1414
|
|
|
1538
1415
|
export declare function createClaim(createClaimDTO: CreateClaimDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -1827,19 +1704,12 @@ export declare enum CreateLandlordDTOLandlordTypeIdEnum {
|
|
|
1827
1704
|
}
|
|
1828
1705
|
|
|
1829
1706
|
export declare interface CreateLandlordForRepositDTO {
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
lastName?: string;
|
|
1833
|
-
companyName?: string;
|
|
1707
|
+
firstName: string;
|
|
1708
|
+
lastName: string;
|
|
1834
1709
|
email: string;
|
|
1835
1710
|
address?: CreateAddressForLandlordDTO;
|
|
1836
1711
|
}
|
|
1837
1712
|
|
|
1838
|
-
export declare enum CreateLandlordForRepositDTOLandlordTypeIdEnum {
|
|
1839
|
-
COMPANY = "COMPANY",
|
|
1840
|
-
SOLEPERSON = "SOLE_PERSON"
|
|
1841
|
-
}
|
|
1842
|
-
|
|
1843
1713
|
export declare interface CreateLandlordWithOrgDTO {
|
|
1844
1714
|
firstName?: string;
|
|
1845
1715
|
lastName?: string;
|
|
@@ -2047,14 +1917,6 @@ export declare interface CreateRepositDTO {
|
|
|
2047
1917
|
draft?: boolean;
|
|
2048
1918
|
}
|
|
2049
1919
|
|
|
2050
|
-
export declare function createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TemporaryUploadUrlDTO>;
|
|
2051
|
-
|
|
2052
|
-
export declare interface CreateTemporaryUploadUrlDTO {
|
|
2053
|
-
fileName: string;
|
|
2054
|
-
contentType?: string;
|
|
2055
|
-
expiresInSeconds?: number;
|
|
2056
|
-
}
|
|
2057
|
-
|
|
2058
1920
|
export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
|
|
2059
1921
|
|
|
2060
1922
|
export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
|
|
@@ -2101,12 +1963,6 @@ export declare interface CreateTenancyRequestDTO {
|
|
|
2101
1963
|
endDate?: string;
|
|
2102
1964
|
organizationId: string;
|
|
2103
1965
|
letOnly?: boolean;
|
|
2104
|
-
termType?: CreateTenancyRequestDTOTermTypeEnum;
|
|
2105
|
-
}
|
|
2106
|
-
|
|
2107
|
-
export declare enum CreateTenancyRequestDTOTermTypeEnum {
|
|
2108
|
-
FIXED = "FIXED",
|
|
2109
|
-
PERIODIC = "PERIODIC"
|
|
2110
1966
|
}
|
|
2111
1967
|
|
|
2112
1968
|
export declare interface CreateTenantForRepositDTO {
|
|
@@ -2265,8 +2121,6 @@ export declare function disableTopUps(id: string, configuration?: Configuration,
|
|
|
2265
2121
|
|
|
2266
2122
|
export declare function disableWarnings(id: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyInventoryDTO>;
|
|
2267
2123
|
|
|
2268
|
-
export declare function disconnectMyDeposits(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2269
|
-
|
|
2270
2124
|
export declare function dismissNewProductUpdates(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
|
|
2271
2125
|
|
|
2272
2126
|
export declare function dismissOrganizationMessage(messageId: 'featureBankAccounts' | 'warningBankAccounts', id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationDTO>;
|
|
@@ -2315,13 +2169,6 @@ export declare interface DocumentsApiInterface {
|
|
|
2315
2169
|
getDocumentsByIds(ids: Array<string>, options?: any): AxiosPromise<Array<DocumentDTO>>;
|
|
2316
2170
|
}
|
|
2317
2171
|
|
|
2318
|
-
export declare interface DownloadUrlDTO {
|
|
2319
|
-
downloadUrl: string;
|
|
2320
|
-
expiresInSeconds: number;
|
|
2321
|
-
}
|
|
2322
|
-
|
|
2323
|
-
export declare function dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemInternalUpdatePreviewDTO>;
|
|
2324
|
-
|
|
2325
2172
|
export declare function duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<IsDuplicateResponse>;
|
|
2326
2173
|
|
|
2327
2174
|
export declare interface DuplicatePaymentMethodCheckDTO {
|
|
@@ -2813,18 +2660,12 @@ export declare interface GeneratePlaidLinkTokenResponseDTO {
|
|
|
2813
2660
|
|
|
2814
2661
|
export declare function getActive(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<string>;
|
|
2815
2662
|
|
|
2816
|
-
export declare function getAllBulkImports(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<BulkImportDTO>>;
|
|
2817
|
-
|
|
2818
2663
|
export declare function getAmountRemaining(id: string, includeInterest: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderAmountRemainingDTO>;
|
|
2819
2664
|
|
|
2820
2665
|
export declare function getArbitrationById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ArbitrationDTO>;
|
|
2821
2666
|
|
|
2822
2667
|
export declare function getBankAccounts(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationBankAccountDTO>>;
|
|
2823
2668
|
|
|
2824
|
-
export declare function getBulkImportById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
|
|
2825
|
-
|
|
2826
|
-
export declare function getBulkImportDownloadUrl(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<DownloadUrlDTO>;
|
|
2827
|
-
|
|
2828
2669
|
export declare function getByTenancyId(tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<TenancyExpiryDTO>>;
|
|
2829
2670
|
|
|
2830
2671
|
export declare function getCashDepositAmount(ppm: number, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CashDepositDTO>;
|
|
@@ -2845,10 +2686,6 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
|
|
|
2845
2686
|
|
|
2846
2687
|
export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
|
|
2847
2688
|
|
|
2848
|
-
export declare function getExampleCsv(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2849
|
-
|
|
2850
|
-
export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2851
|
-
|
|
2852
2689
|
export declare function getInstalmentById(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentDTO>;
|
|
2853
2690
|
|
|
2854
2691
|
export declare function getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentPayResponseDTO>;
|
|
@@ -2971,7 +2808,6 @@ export declare function healthCheck(configuration?: Configuration, axios?: Axios
|
|
|
2971
2808
|
export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebhooksApiInterface {
|
|
2972
2809
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
|
|
2973
2810
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
|
|
2974
|
-
processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
|
|
2975
2811
|
processStripeWebhooks(options?: any): AxiosPromise<object>;
|
|
2976
2812
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
|
|
2977
2813
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
|
|
@@ -2981,7 +2817,6 @@ export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebh
|
|
|
2981
2817
|
export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2982
2818
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): RequestArgs;
|
|
2983
2819
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): RequestArgs;
|
|
2984
|
-
processStripeOffSessionWebhooks(options?: any): RequestArgs;
|
|
2985
2820
|
processStripeWebhooks(options?: any): RequestArgs;
|
|
2986
2821
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): RequestArgs;
|
|
2987
2822
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): RequestArgs;
|
|
@@ -2991,7 +2826,6 @@ export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Conf
|
|
|
2991
2826
|
export declare const IncomingWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2992
2827
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
|
|
2993
2828
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
|
|
2994
|
-
processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
|
|
2995
2829
|
processStripeWebhooks(options?: any): AxiosPromise<object>;
|
|
2996
2830
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
|
|
2997
2831
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
|
|
@@ -3001,7 +2835,6 @@ export declare const IncomingWebhooksApiFactory: (configuration?: Configuration,
|
|
|
3001
2835
|
export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
|
|
3002
2836
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
3003
2837
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3004
|
-
processStripeOffSessionWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
3005
2838
|
processStripeWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3006
2839
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3007
2840
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
@@ -3011,7 +2844,6 @@ export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
|
|
|
3011
2844
|
export declare interface IncomingWebhooksApiInterface {
|
|
3012
2845
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<{}>;
|
|
3013
2846
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
|
|
3014
|
-
processStripeOffSessionWebhooks(options?: any): AxiosPromise<{}>;
|
|
3015
2847
|
processStripeWebhooks(options?: any): AxiosPromise<object>;
|
|
3016
2848
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
|
|
3017
2849
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<{}>;
|
|
@@ -3191,10 +3023,6 @@ export declare interface InternalTeamMembersApiInterface {
|
|
|
3191
3023
|
findAll(options?: any): AxiosPromise<InternalTeamMemberDTO>;
|
|
3192
3024
|
}
|
|
3193
3025
|
|
|
3194
|
-
export declare interface InternalUpdateClaimItemDTO {
|
|
3195
|
-
newAmount: number;
|
|
3196
|
-
}
|
|
3197
|
-
|
|
3198
3026
|
export declare interface IsDuplicateResponse {
|
|
3199
3027
|
isDuplicate: boolean;
|
|
3200
3028
|
}
|
|
@@ -3328,7 +3156,6 @@ export declare interface MyDepositsExchangeTokenRequestDTO {
|
|
|
3328
3156
|
|
|
3329
3157
|
export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAuthApiInterface {
|
|
3330
3158
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
|
|
3331
|
-
disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
|
|
3332
3159
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
|
|
3333
3160
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3334
3161
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
|
|
@@ -3337,7 +3164,6 @@ export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAu
|
|
|
3337
3164
|
|
|
3338
3165
|
export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3339
3166
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): RequestArgs;
|
|
3340
|
-
disconnectMyDeposits(organizationId: string, options?: any): RequestArgs;
|
|
3341
3167
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): RequestArgs;
|
|
3342
3168
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): RequestArgs;
|
|
3343
3169
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): RequestArgs;
|
|
@@ -3346,7 +3172,6 @@ export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Confi
|
|
|
3346
3172
|
|
|
3347
3173
|
export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3348
3174
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
|
|
3349
|
-
disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
|
|
3350
3175
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
|
|
3351
3176
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3352
3177
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
|
|
@@ -3355,7 +3180,6 @@ export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration,
|
|
|
3355
3180
|
|
|
3356
3181
|
export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
|
|
3357
3182
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3358
|
-
disconnectMyDeposits(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
3359
3183
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3360
3184
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3361
3185
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -3364,7 +3188,6 @@ export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
|
|
|
3364
3188
|
|
|
3365
3189
|
export declare interface MyDepositsOAuthApiInterface {
|
|
3366
3190
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
|
|
3367
|
-
disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<{}>;
|
|
3368
3191
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
|
|
3369
3192
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3370
3193
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -3373,16 +3196,6 @@ export declare interface MyDepositsOAuthApiInterface {
|
|
|
3373
3196
|
|
|
3374
3197
|
export declare interface MyDepositsOnboardingStatusResponseDTO {
|
|
3375
3198
|
onboardingStatus: MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum;
|
|
3376
|
-
connectedUserName?: string;
|
|
3377
|
-
companyName?: string;
|
|
3378
|
-
officeName?: string;
|
|
3379
|
-
accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
|
|
3380
|
-
}
|
|
3381
|
-
|
|
3382
|
-
export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
|
|
3383
|
-
AGENT = "AGENT",
|
|
3384
|
-
LANDLORD = "LANDLORD",
|
|
3385
|
-
CORPORATELANDLORD = "CORPORATE_LANDLORD"
|
|
3386
3199
|
}
|
|
3387
3200
|
|
|
3388
3201
|
export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
|
|
@@ -3481,7 +3294,7 @@ export declare interface OneTimeSessionTokenDTO {
|
|
|
3481
3294
|
updatedAt: string;
|
|
3482
3295
|
}
|
|
3483
3296
|
|
|
3484
|
-
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,
|
|
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>;
|
|
3485
3298
|
|
|
3486
3299
|
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>;
|
|
3487
3300
|
|
|
@@ -4608,12 +4421,7 @@ export declare interface PlaidWebhookDto {
|
|
|
4608
4421
|
|
|
4609
4422
|
export declare enum PlaidWebhookDtoNewPaymentStatusEnum {
|
|
4610
4423
|
EXECUTED = "PAYMENT_STATUS_EXECUTED",
|
|
4611
|
-
INITIATED = "PAYMENT_STATUS_INITIATED"
|
|
4612
|
-
INSUFFICIENTFUNDS = "PAYMENT_STATUS_INSUFFICIENT_FUNDS",
|
|
4613
|
-
FAILED = "PAYMENT_STATUS_FAILED",
|
|
4614
|
-
BLOCKED = "PAYMENT_STATUS_BLOCKED",
|
|
4615
|
-
REJECTED = "PAYMENT_STATUS_REJECTED",
|
|
4616
|
-
CANCELLED = "PAYMENT_STATUS_CANCELLED"
|
|
4424
|
+
INITIATED = "PAYMENT_STATUS_INITIATED"
|
|
4617
4425
|
}
|
|
4618
4426
|
|
|
4619
4427
|
export declare enum PlaidWebhookDtoStatusEnum {
|
|
@@ -4822,8 +4630,6 @@ export declare function processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, c
|
|
|
4822
4630
|
|
|
4823
4631
|
export declare function processSendGridWebhooks(requestBody: Array<string>, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
4824
4632
|
|
|
4825
|
-
export declare function processStripeOffSessionWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
4826
|
-
|
|
4827
4633
|
export declare function processStripeWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
4828
4634
|
|
|
4829
4635
|
export declare function processTwilioIvrWebhooks(ivrCallId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -4832,12 +4638,6 @@ export declare function processTwilioIvrWebhooksWithGatherAction(ivrCallId: stri
|
|
|
4832
4638
|
|
|
4833
4639
|
export declare function processTwilioVoicemailWebhook(from: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
4834
4640
|
|
|
4835
|
-
export declare function processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
|
|
4836
|
-
|
|
4837
|
-
export declare interface ProcessUploadFileDTO {
|
|
4838
|
-
sourceKey: string;
|
|
4839
|
-
}
|
|
4840
|
-
|
|
4841
4641
|
export declare interface ProductDTO {
|
|
4842
4642
|
id: string;
|
|
4843
4643
|
name: string;
|
|
@@ -4943,12 +4743,10 @@ export declare enum QueueMessageDTOCronNameEnum {
|
|
|
4943
4743
|
DAILYEVIDENCECHASERSUPPLIERDRAFTREMINDER = "DAILY_EVIDENCE_CHASER_SUPPLIER_DRAFT_REMINDER",
|
|
4944
4744
|
DAILYARBITRATIONSENTNOTIFICATION = "DAILY_ARBITRATION_SENT_NOTIFICATION",
|
|
4945
4745
|
DAILYIVRCALLPROCESSING = "DAILY_IVR_CALL_PROCESSING",
|
|
4946
|
-
DAILYALBMETRICSCOLLECTION = "DAILY_ALB_METRICS_COLLECTION",
|
|
4947
4746
|
WEEKLYPENDINGREPOSITPASTSTARTDATEREMINDER = "WEEKLY_PENDING_REPOSIT_PAST_START_DATE_REMINDER",
|
|
4948
4747
|
POLLPENDINGCASHDEPOSITS = "POLL_PENDING_CASH_DEPOSITS",
|
|
4949
4748
|
REFRESHMYDEPOSITSACCESSTOKENS = "REFRESH_MY_DEPOSITS_ACCESS_TOKENS",
|
|
4950
|
-
RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS"
|
|
4951
|
-
PROCESSSQSWORKEROUTBOX = "PROCESS_SQS_WORKER_OUTBOX"
|
|
4749
|
+
RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS"
|
|
4952
4750
|
}
|
|
4953
4751
|
|
|
4954
4752
|
export declare enum QueueMessageDTOTypeEnum {
|
|
@@ -4961,9 +4759,6 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
4961
4759
|
AUTORESPONDTENANT = "AUTO_RESPOND_TENANT",
|
|
4962
4760
|
AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
|
|
4963
4761
|
PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
|
|
4964
|
-
PROCESSOFFSESSIONPAYMENTATTEMPTFAILED = "PROCESS_OFF_SESSION_PAYMENT_ATTEMPT_FAILED",
|
|
4965
|
-
PROCESSOFFSESSIONPAYMENTSUCCEEDED = "PROCESS_OFF_SESSION_PAYMENT_SUCCEEDED",
|
|
4966
|
-
PROCESSOFFSESSIONPAYMENTFAILED = "PROCESS_OFF_SESSION_PAYMENT_FAILED",
|
|
4967
4762
|
PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
|
|
4968
4763
|
PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
|
|
4969
4764
|
PROCESSSTRIPEDISPUTECREATED = "PROCESS_STRIPE_DISPUTE_CREATED",
|
|
@@ -5008,9 +4803,7 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
5008
4803
|
HANDLEPENDINGCASHDEPOSIT = "HANDLE_PENDING_CASH_DEPOSIT",
|
|
5009
4804
|
REFRESHMYDEPOSITSACCESSTOKEN = "REFRESH_MY_DEPOSITS_ACCESS_TOKEN",
|
|
5010
4805
|
RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
|
|
5011
|
-
MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY"
|
|
5012
|
-
CREATEXEROCONTACTFORORGANIZATION = "CREATE_XERO_CONTACT_FOR_ORGANIZATION",
|
|
5013
|
-
PROCESSBULKIMPORTFILE = "PROCESS_BULK_IMPORT_FILE"
|
|
4806
|
+
MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY"
|
|
5014
4807
|
}
|
|
5015
4808
|
|
|
5016
4809
|
export declare function readyForArbitrateClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -5270,18 +5063,11 @@ export declare interface RepositFeeDTO {
|
|
|
5270
5063
|
}
|
|
5271
5064
|
|
|
5272
5065
|
export declare interface RepositLandlordDTO {
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
lastName?: string;
|
|
5276
|
-
companyName?: string;
|
|
5066
|
+
firstName: string;
|
|
5067
|
+
lastName: string;
|
|
5277
5068
|
email: string;
|
|
5278
5069
|
}
|
|
5279
5070
|
|
|
5280
|
-
export declare enum RepositLandlordDTOLandlordTypeIdEnum {
|
|
5281
|
-
COMPANY = "COMPANY",
|
|
5282
|
-
SOLEPERSON = "SOLE_PERSON"
|
|
5283
|
-
}
|
|
5284
|
-
|
|
5285
5071
|
export declare interface RepositOfferDTO {
|
|
5286
5072
|
id: string;
|
|
5287
5073
|
PPM: number;
|
|
@@ -5725,42 +5511,6 @@ export declare interface SearchUserResultsDTO {
|
|
|
5725
5511
|
results: Array<UserDTO>;
|
|
5726
5512
|
}
|
|
5727
5513
|
|
|
5728
|
-
export declare function seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
5729
|
-
|
|
5730
|
-
export declare interface SeedCashDepositDTO {
|
|
5731
|
-
organizationId: string;
|
|
5732
|
-
userId: string;
|
|
5733
|
-
propertyId: string;
|
|
5734
|
-
ppm: number;
|
|
5735
|
-
amount: number;
|
|
5736
|
-
startDate: string;
|
|
5737
|
-
letOnly: boolean;
|
|
5738
|
-
tenantFirstName: string;
|
|
5739
|
-
tenantLastName: string;
|
|
5740
|
-
tenantEmail: string;
|
|
5741
|
-
tenantMobileNumber: string;
|
|
5742
|
-
}
|
|
5743
|
-
|
|
5744
|
-
export declare class SeedCashDepositsApi extends BaseAPI implements SeedCashDepositsApiInterface {
|
|
5745
|
-
seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<Response>;
|
|
5746
|
-
}
|
|
5747
|
-
|
|
5748
|
-
export declare const SeedCashDepositsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5749
|
-
seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): RequestArgs;
|
|
5750
|
-
};
|
|
5751
|
-
|
|
5752
|
-
export declare const SeedCashDepositsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5753
|
-
seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<Response>;
|
|
5754
|
-
};
|
|
5755
|
-
|
|
5756
|
-
export declare const SeedCashDepositsApiFp: (configuration?: Configuration) => {
|
|
5757
|
-
seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
5758
|
-
};
|
|
5759
|
-
|
|
5760
|
-
export declare interface SeedCashDepositsApiInterface {
|
|
5761
|
-
seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<{}>;
|
|
5762
|
-
}
|
|
5763
|
-
|
|
5764
5514
|
export declare function seedReposit(seedRepositDTO: SeedRepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
5765
5515
|
|
|
5766
5516
|
export declare interface SeedRepositDTO {
|
|
@@ -5888,13 +5638,6 @@ export declare interface SuppliersApiInterface {
|
|
|
5888
5638
|
getSupplierAgents(id: string, options?: any): AxiosPromise<Array<RepositAgentDTO>>;
|
|
5889
5639
|
}
|
|
5890
5640
|
|
|
5891
|
-
export declare interface TemporaryUploadUrlDTO {
|
|
5892
|
-
bucket: string;
|
|
5893
|
-
key: string;
|
|
5894
|
-
uploadUrl: string;
|
|
5895
|
-
expiresInSeconds: number;
|
|
5896
|
-
}
|
|
5897
|
-
|
|
5898
5641
|
export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterface {
|
|
5899
5642
|
closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5900
5643
|
createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6051,7 +5794,6 @@ export declare interface TenancyDTO {
|
|
|
6051
5794
|
tenants: Array<TenantDTO>;
|
|
6052
5795
|
letOnly: boolean;
|
|
6053
5796
|
isNewTenancy?: boolean;
|
|
6054
|
-
termType?: TenancyDTOTermTypeEnum;
|
|
6055
5797
|
checkout?: CheckoutDTO;
|
|
6056
5798
|
completedAt?: string;
|
|
6057
5799
|
outcomeDeadline?: string;
|
|
@@ -6070,11 +5812,6 @@ export declare interface TenancyDTO {
|
|
|
6070
5812
|
preTenancyDocuments?: Array<PreTenancyDocumentDTO>;
|
|
6071
5813
|
}
|
|
6072
5814
|
|
|
6073
|
-
export declare enum TenancyDTOTermTypeEnum {
|
|
6074
|
-
FIXED = "FIXED",
|
|
6075
|
-
PERIODIC = "PERIODIC"
|
|
6076
|
-
}
|
|
6077
|
-
|
|
6078
5815
|
export declare class TenancyExpiriesApi extends BaseAPI implements TenancyExpiriesApiInterface {
|
|
6079
5816
|
createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, options?: any): AxiosPromise<TenancyExpiryDTO>;
|
|
6080
5817
|
getByTenancyId(tenancyId: string, options?: any): AxiosPromise<TenancyExpiryDTO[]>;
|
|
@@ -6265,7 +6002,7 @@ export declare interface TenancyOrderNotesApiInterface {
|
|
|
6265
6002
|
|
|
6266
6003
|
export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersApiInterface {
|
|
6267
6004
|
getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6268
|
-
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,
|
|
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>;
|
|
6269
6006
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6270
6007
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6271
6008
|
sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
|
|
@@ -6274,7 +6011,7 @@ export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersAp
|
|
|
6274
6011
|
|
|
6275
6012
|
export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6276
6013
|
getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): RequestArgs;
|
|
6277
|
-
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,
|
|
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;
|
|
6278
6015
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): RequestArgs;
|
|
6279
6016
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): RequestArgs;
|
|
6280
6017
|
sendOverdueChasers(id: string, options?: any): RequestArgs;
|
|
@@ -6283,7 +6020,7 @@ export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configu
|
|
|
6283
6020
|
|
|
6284
6021
|
export declare const TenancyOrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6285
6022
|
getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6286
|
-
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,
|
|
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>;
|
|
6287
6024
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6288
6025
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6289
6026
|
sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
|
|
@@ -6292,7 +6029,7 @@ export declare const TenancyOrdersApiFactory: (configuration?: Configuration, ba
|
|
|
6292
6029
|
|
|
6293
6030
|
export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
|
|
6294
6031
|
getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6295
|
-
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,
|
|
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>;
|
|
6296
6033
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6297
6034
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6298
6035
|
sendOverdueChasers(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
@@ -6301,7 +6038,7 @@ export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
|
|
|
6301
6038
|
|
|
6302
6039
|
export declare interface TenancyOrdersApiInterface {
|
|
6303
6040
|
getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6304
|
-
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,
|
|
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>;
|
|
6305
6042
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6306
6043
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6307
6044
|
sendOverdueChasers(id: string, options?: any): AxiosPromise<{}>;
|
|
@@ -6314,7 +6051,6 @@ export declare interface TenancyOrderWithTenancyAndOrderCustomersDTO {
|
|
|
6314
6051
|
tenancy: TenancyWithCheckoutAndClaimDTO;
|
|
6315
6052
|
tenancyOrderNotes?: Array<TenancyOrderNoteDTO>;
|
|
6316
6053
|
repositOfferId?: string;
|
|
6317
|
-
outstandingChargesTenantEmails?: Array<string>;
|
|
6318
6054
|
createdAt: string;
|
|
6319
6055
|
updatedAt: string;
|
|
6320
6056
|
deletedAt: string;
|
|
@@ -6326,7 +6062,6 @@ export declare interface TenancyOrderWithTenancyDTO {
|
|
|
6326
6062
|
id: string;
|
|
6327
6063
|
order: OrderDTO;
|
|
6328
6064
|
tenancy: TenancyWithCheckoutAndClaimDTO;
|
|
6329
|
-
outstandingChargesTenantEmails?: Array<string>;
|
|
6330
6065
|
repositOfferId?: string;
|
|
6331
6066
|
createdAt: string;
|
|
6332
6067
|
updatedAt: string;
|
|
@@ -6411,7 +6146,6 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6411
6146
|
tenants: Array<TenantDTO>;
|
|
6412
6147
|
letOnly: boolean;
|
|
6413
6148
|
isNewTenancy?: boolean;
|
|
6414
|
-
termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
|
|
6415
6149
|
checkout?: CheckoutWithClaimDTO;
|
|
6416
6150
|
completedAt?: string;
|
|
6417
6151
|
outcomeDeadline?: string;
|
|
@@ -6431,11 +6165,6 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6431
6165
|
hasIncompleteTransfers: boolean;
|
|
6432
6166
|
}
|
|
6433
6167
|
|
|
6434
|
-
export declare enum TenancyWithCheckoutAndClaimDTOTermTypeEnum {
|
|
6435
|
-
FIXED = "FIXED",
|
|
6436
|
-
PERIODIC = "PERIODIC"
|
|
6437
|
-
}
|
|
6438
|
-
|
|
6439
6168
|
export declare function tenantConfirmation(token: string, response: 'CONFIRMED' | 'UNCONFIRMED', tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6440
6169
|
|
|
6441
6170
|
export declare interface TenantDTO {
|
|
@@ -6768,12 +6497,6 @@ export declare interface UpdateTenancyRequestDTO {
|
|
|
6768
6497
|
endDate?: string;
|
|
6769
6498
|
letOnly?: boolean;
|
|
6770
6499
|
isNewTenancy?: boolean;
|
|
6771
|
-
termType?: UpdateTenancyRequestDTOTermTypeEnum;
|
|
6772
|
-
}
|
|
6773
|
-
|
|
6774
|
-
export declare enum UpdateTenancyRequestDTOTermTypeEnum {
|
|
6775
|
-
FIXED = "FIXED",
|
|
6776
|
-
PERIODIC = "PERIODIC"
|
|
6777
6500
|
}
|
|
6778
6501
|
|
|
6779
6502
|
export declare function updateTenantDisputeMessage(claimId: string, updateTenantDisputeMessageDTO: UpdateTenantDisputeMessageDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|