@reposit/api-client 6.61.0-concurrent-tenancy-check-2 → 6.62.0-beta.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 +296 -19
- package/dist/index.js +1 -1
- package/dist/index.mjs +4489 -3691
- 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 applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemInternalUpdatePreviewDTO>;
|
|
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,87 @@ 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
|
+
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
|
+
|
|
407
490
|
export declare interface CashDepositDetailsDTO {
|
|
408
491
|
amount: number;
|
|
409
492
|
PPM: number;
|
|
@@ -753,6 +836,29 @@ export declare enum ClaimItemDTOTypeEnum {
|
|
|
753
836
|
OTHER = "OTHER"
|
|
754
837
|
}
|
|
755
838
|
|
|
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
|
+
|
|
756
862
|
export declare interface ClaimItemProposalDTO {
|
|
757
863
|
id: string;
|
|
758
864
|
claimProposalId: string;
|
|
@@ -803,32 +909,42 @@ export declare interface ClaimItemProposalsApiInterface {
|
|
|
803
909
|
}
|
|
804
910
|
|
|
805
911
|
export declare class ClaimItemsApi extends BaseAPI implements ClaimItemsApiInterface {
|
|
912
|
+
applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
806
913
|
createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): AxiosPromise<ClaimItemDTO>;
|
|
807
914
|
deleteClaimItem(claimId: string, claimItemId: string, options?: any): AxiosPromise<object>;
|
|
915
|
+
dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
808
916
|
updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): AxiosPromise<object>;
|
|
809
917
|
}
|
|
810
918
|
|
|
811
919
|
export declare const ClaimItemsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
920
|
+
applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): RequestArgs;
|
|
812
921
|
createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): RequestArgs;
|
|
813
922
|
deleteClaimItem(claimId: string, claimItemId: string, options?: any): RequestArgs;
|
|
923
|
+
dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): RequestArgs;
|
|
814
924
|
updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): RequestArgs;
|
|
815
925
|
};
|
|
816
926
|
|
|
817
927
|
export declare const ClaimItemsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
928
|
+
applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
818
929
|
createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): AxiosPromise<ClaimItemDTO>;
|
|
819
930
|
deleteClaimItem(claimId: string, claimItemId: string, options?: any): AxiosPromise<object>;
|
|
931
|
+
dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
820
932
|
updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): AxiosPromise<object>;
|
|
821
933
|
};
|
|
822
934
|
|
|
823
935
|
export declare const ClaimItemsApiFp: (configuration?: Configuration) => {
|
|
936
|
+
applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
824
937
|
createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemDTO>;
|
|
825
938
|
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>;
|
|
826
940
|
updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
827
941
|
};
|
|
828
942
|
|
|
829
943
|
export declare interface ClaimItemsApiInterface {
|
|
944
|
+
applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
830
945
|
createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): AxiosPromise<ClaimItemDTO>;
|
|
831
946
|
deleteClaimItem(claimId: string, claimItemId: string, options?: any): AxiosPromise<object>;
|
|
947
|
+
dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
|
|
832
948
|
updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): AxiosPromise<object>;
|
|
833
949
|
}
|
|
834
950
|
|
|
@@ -1410,6 +1526,13 @@ export declare interface CreateBeneficiaryDTO {
|
|
|
1410
1526
|
companyName?: string;
|
|
1411
1527
|
}
|
|
1412
1528
|
|
|
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
|
+
|
|
1413
1536
|
export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
|
|
1414
1537
|
|
|
1415
1538
|
export declare function createClaim(createClaimDTO: CreateClaimDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -1704,12 +1827,19 @@ export declare enum CreateLandlordDTOLandlordTypeIdEnum {
|
|
|
1704
1827
|
}
|
|
1705
1828
|
|
|
1706
1829
|
export declare interface CreateLandlordForRepositDTO {
|
|
1707
|
-
|
|
1708
|
-
|
|
1830
|
+
landlordTypeId?: CreateLandlordForRepositDTOLandlordTypeIdEnum;
|
|
1831
|
+
firstName?: string;
|
|
1832
|
+
lastName?: string;
|
|
1833
|
+
companyName?: string;
|
|
1709
1834
|
email: string;
|
|
1710
1835
|
address?: CreateAddressForLandlordDTO;
|
|
1711
1836
|
}
|
|
1712
1837
|
|
|
1838
|
+
export declare enum CreateLandlordForRepositDTOLandlordTypeIdEnum {
|
|
1839
|
+
COMPANY = "COMPANY",
|
|
1840
|
+
SOLEPERSON = "SOLE_PERSON"
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1713
1843
|
export declare interface CreateLandlordWithOrgDTO {
|
|
1714
1844
|
firstName?: string;
|
|
1715
1845
|
lastName?: string;
|
|
@@ -1917,6 +2047,14 @@ export declare interface CreateRepositDTO {
|
|
|
1917
2047
|
draft?: boolean;
|
|
1918
2048
|
}
|
|
1919
2049
|
|
|
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
|
+
|
|
1920
2058
|
export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
|
|
1921
2059
|
|
|
1922
2060
|
export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
|
|
@@ -1963,6 +2101,12 @@ export declare interface CreateTenancyRequestDTO {
|
|
|
1963
2101
|
endDate?: string;
|
|
1964
2102
|
organizationId: string;
|
|
1965
2103
|
letOnly?: boolean;
|
|
2104
|
+
termType?: CreateTenancyRequestDTOTermTypeEnum;
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
export declare enum CreateTenancyRequestDTOTermTypeEnum {
|
|
2108
|
+
FIXED = "FIXED",
|
|
2109
|
+
PERIODIC = "PERIODIC"
|
|
1966
2110
|
}
|
|
1967
2111
|
|
|
1968
2112
|
export declare interface CreateTenantForRepositDTO {
|
|
@@ -2121,6 +2265,8 @@ export declare function disableTopUps(id: string, configuration?: Configuration,
|
|
|
2121
2265
|
|
|
2122
2266
|
export declare function disableWarnings(id: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyInventoryDTO>;
|
|
2123
2267
|
|
|
2268
|
+
export declare function disconnectMyDeposits(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2269
|
+
|
|
2124
2270
|
export declare function dismissNewProductUpdates(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
|
|
2125
2271
|
|
|
2126
2272
|
export declare function dismissOrganizationMessage(messageId: 'featureBankAccounts' | 'warningBankAccounts', id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationDTO>;
|
|
@@ -2169,6 +2315,13 @@ export declare interface DocumentsApiInterface {
|
|
|
2169
2315
|
getDocumentsByIds(ids: Array<string>, options?: any): AxiosPromise<Array<DocumentDTO>>;
|
|
2170
2316
|
}
|
|
2171
2317
|
|
|
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
|
+
|
|
2172
2325
|
export declare function duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<IsDuplicateResponse>;
|
|
2173
2326
|
|
|
2174
2327
|
export declare interface DuplicatePaymentMethodCheckDTO {
|
|
@@ -2660,17 +2813,23 @@ export declare interface GeneratePlaidLinkTokenResponseDTO {
|
|
|
2660
2813
|
|
|
2661
2814
|
export declare function getActive(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<string>;
|
|
2662
2815
|
|
|
2816
|
+
export declare function getAllBulkImports(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<BulkImportDTO>>;
|
|
2817
|
+
|
|
2663
2818
|
export declare function getAmountRemaining(id: string, includeInterest: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderAmountRemainingDTO>;
|
|
2664
2819
|
|
|
2665
2820
|
export declare function getArbitrationById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ArbitrationDTO>;
|
|
2666
2821
|
|
|
2667
2822
|
export declare function getBankAccounts(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationBankAccountDTO>>;
|
|
2668
2823
|
|
|
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
|
+
|
|
2669
2828
|
export declare function getByTenancyId(tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<TenancyExpiryDTO>>;
|
|
2670
2829
|
|
|
2671
2830
|
export declare function getCashDepositAmount(ppm: number, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CashDepositDTO>;
|
|
2672
2831
|
|
|
2673
|
-
export declare function getCashDepositScheme(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<
|
|
2832
|
+
export declare function getCashDepositScheme(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationCashDepositSchemeDTO>;
|
|
2674
2833
|
|
|
2675
2834
|
export declare function getChecks(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<CheckDTO>>;
|
|
2676
2835
|
|
|
@@ -2686,6 +2845,10 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
|
|
|
2686
2845
|
|
|
2687
2846
|
export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
|
|
2688
2847
|
|
|
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
|
+
|
|
2689
2852
|
export declare function getInstalmentById(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentDTO>;
|
|
2690
2853
|
|
|
2691
2854
|
export declare function getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentPayResponseDTO>;
|
|
@@ -2808,6 +2971,7 @@ export declare function healthCheck(configuration?: Configuration, axios?: Axios
|
|
|
2808
2971
|
export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebhooksApiInterface {
|
|
2809
2972
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
|
|
2810
2973
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
|
|
2974
|
+
processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
|
|
2811
2975
|
processStripeWebhooks(options?: any): AxiosPromise<object>;
|
|
2812
2976
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
|
|
2813
2977
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
|
|
@@ -2817,6 +2981,7 @@ export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebh
|
|
|
2817
2981
|
export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2818
2982
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): RequestArgs;
|
|
2819
2983
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): RequestArgs;
|
|
2984
|
+
processStripeOffSessionWebhooks(options?: any): RequestArgs;
|
|
2820
2985
|
processStripeWebhooks(options?: any): RequestArgs;
|
|
2821
2986
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): RequestArgs;
|
|
2822
2987
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): RequestArgs;
|
|
@@ -2826,6 +2991,7 @@ export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Conf
|
|
|
2826
2991
|
export declare const IncomingWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2827
2992
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
|
|
2828
2993
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
|
|
2994
|
+
processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
|
|
2829
2995
|
processStripeWebhooks(options?: any): AxiosPromise<object>;
|
|
2830
2996
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
|
|
2831
2997
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
|
|
@@ -2835,6 +3001,7 @@ export declare const IncomingWebhooksApiFactory: (configuration?: Configuration,
|
|
|
2835
3001
|
export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
|
|
2836
3002
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
2837
3003
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3004
|
+
processStripeOffSessionWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
2838
3005
|
processStripeWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
2839
3006
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
2840
3007
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
@@ -2844,6 +3011,7 @@ export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
|
|
|
2844
3011
|
export declare interface IncomingWebhooksApiInterface {
|
|
2845
3012
|
processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<{}>;
|
|
2846
3013
|
processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
|
|
3014
|
+
processStripeOffSessionWebhooks(options?: any): AxiosPromise<{}>;
|
|
2847
3015
|
processStripeWebhooks(options?: any): AxiosPromise<object>;
|
|
2848
3016
|
processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
|
|
2849
3017
|
processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<{}>;
|
|
@@ -3023,6 +3191,10 @@ export declare interface InternalTeamMembersApiInterface {
|
|
|
3023
3191
|
findAll(options?: any): AxiosPromise<InternalTeamMemberDTO>;
|
|
3024
3192
|
}
|
|
3025
3193
|
|
|
3194
|
+
export declare interface InternalUpdateClaimItemDTO {
|
|
3195
|
+
newAmount: number;
|
|
3196
|
+
}
|
|
3197
|
+
|
|
3026
3198
|
export declare interface IsDuplicateResponse {
|
|
3027
3199
|
isDuplicate: boolean;
|
|
3028
3200
|
}
|
|
@@ -3156,6 +3328,7 @@ export declare interface MyDepositsExchangeTokenRequestDTO {
|
|
|
3156
3328
|
|
|
3157
3329
|
export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAuthApiInterface {
|
|
3158
3330
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
|
|
3331
|
+
disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
|
|
3159
3332
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
|
|
3160
3333
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3161
3334
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
|
|
@@ -3164,6 +3337,7 @@ export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAu
|
|
|
3164
3337
|
|
|
3165
3338
|
export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3166
3339
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): RequestArgs;
|
|
3340
|
+
disconnectMyDeposits(organizationId: string, options?: any): RequestArgs;
|
|
3167
3341
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): RequestArgs;
|
|
3168
3342
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): RequestArgs;
|
|
3169
3343
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): RequestArgs;
|
|
@@ -3172,6 +3346,7 @@ export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Confi
|
|
|
3172
3346
|
|
|
3173
3347
|
export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3174
3348
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
|
|
3349
|
+
disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
|
|
3175
3350
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
|
|
3176
3351
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3177
3352
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
|
|
@@ -3180,6 +3355,7 @@ export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration,
|
|
|
3180
3355
|
|
|
3181
3356
|
export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
|
|
3182
3357
|
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>;
|
|
3183
3359
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3184
3360
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3185
3361
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -3188,6 +3364,7 @@ export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
|
|
|
3188
3364
|
|
|
3189
3365
|
export declare interface MyDepositsOAuthApiInterface {
|
|
3190
3366
|
completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
|
|
3367
|
+
disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<{}>;
|
|
3191
3368
|
exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
|
|
3192
3369
|
getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
|
|
3193
3370
|
getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -3196,6 +3373,16 @@ export declare interface MyDepositsOAuthApiInterface {
|
|
|
3196
3373
|
|
|
3197
3374
|
export declare interface MyDepositsOnboardingStatusResponseDTO {
|
|
3198
3375
|
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"
|
|
3199
3386
|
}
|
|
3200
3387
|
|
|
3201
3388
|
export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
|
|
@@ -3294,7 +3481,7 @@ export declare interface OneTimeSessionTokenDTO {
|
|
|
3294
3481
|
updatedAt: string;
|
|
3295
3482
|
}
|
|
3296
3483
|
|
|
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>;
|
|
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, isNewTenancy?: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<SearchTenancyOrderResultsDTO>;
|
|
3298
3485
|
|
|
3299
3486
|
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
3487
|
|
|
@@ -3614,7 +3801,7 @@ export declare interface OrganizationBankAccountsApiInterface {
|
|
|
3614
3801
|
|
|
3615
3802
|
export declare interface OrganizationCashDepositSchemeDTO {
|
|
3616
3803
|
id: string;
|
|
3617
|
-
|
|
3804
|
+
cashDepositScheme: CashDepositSchemeDTO;
|
|
3618
3805
|
createdAt: string;
|
|
3619
3806
|
updatedAt: string;
|
|
3620
3807
|
}
|
|
@@ -3791,7 +3978,7 @@ export declare class OrganizationsApi extends BaseAPI implements OrganizationsAp
|
|
|
3791
3978
|
fetchTenanciesByOrganizationId(id: string, options?: any): AxiosPromise<TenancyDTO[]>;
|
|
3792
3979
|
fetchUsersByOrganizationId(id: string, options?: any): AxiosPromise<UserDTO[]>;
|
|
3793
3980
|
findOrganizationById(id: string, options?: any): AxiosPromise<OrganizationWithCashDepositDTO>;
|
|
3794
|
-
getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO
|
|
3981
|
+
getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO>;
|
|
3795
3982
|
getChildren(id: string, options?: any): AxiosPromise<OrganizationDTO[]>;
|
|
3796
3983
|
getOrganizationMetrics(organizationId: string, options?: any): AxiosPromise<OrganizationMetricsDTO>;
|
|
3797
3984
|
getOrganizationVerticals(id: string, options?: any): AxiosPromise<OrganizationVerticalDTO[]>;
|
|
@@ -3851,7 +4038,7 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
|
|
|
3851
4038
|
fetchTenanciesByOrganizationId(id: string, options?: any): AxiosPromise<TenancyDTO[]>;
|
|
3852
4039
|
fetchUsersByOrganizationId(id: string, options?: any): AxiosPromise<UserDTO[]>;
|
|
3853
4040
|
findOrganizationById(id: string, options?: any): AxiosPromise<OrganizationWithCashDepositDTO>;
|
|
3854
|
-
getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO
|
|
4041
|
+
getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO>;
|
|
3855
4042
|
getChildren(id: string, options?: any): AxiosPromise<OrganizationDTO[]>;
|
|
3856
4043
|
getOrganizationMetrics(organizationId: string, options?: any): AxiosPromise<OrganizationMetricsDTO>;
|
|
3857
4044
|
getOrganizationVerticals(id: string, options?: any): AxiosPromise<OrganizationVerticalDTO[]>;
|
|
@@ -3881,7 +4068,7 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
|
|
|
3881
4068
|
fetchTenanciesByOrganizationId(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TenancyDTO>>;
|
|
3882
4069
|
fetchUsersByOrganizationId(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserDTO>>;
|
|
3883
4070
|
findOrganizationById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationWithCashDepositDTO>;
|
|
3884
|
-
getCashDepositScheme(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4071
|
+
getCashDepositScheme(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationCashDepositSchemeDTO>;
|
|
3885
4072
|
getChildren(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrganizationDTO>>;
|
|
3886
4073
|
getOrganizationMetrics(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationMetricsDTO>;
|
|
3887
4074
|
getOrganizationVerticals(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrganizationVerticalDTO>>;
|
|
@@ -3911,7 +4098,7 @@ export declare interface OrganizationsApiInterface {
|
|
|
3911
4098
|
fetchTenanciesByOrganizationId(id: string, options?: any): AxiosPromise<Array<TenancyDTO>>;
|
|
3912
4099
|
fetchUsersByOrganizationId(id: string, options?: any): AxiosPromise<Array<UserDTO>>;
|
|
3913
4100
|
findOrganizationById(id: string, options?: any): AxiosPromise<OrganizationWithCashDepositDTO>;
|
|
3914
|
-
getCashDepositScheme(id: string, options?: any): AxiosPromise<
|
|
4101
|
+
getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO>;
|
|
3915
4102
|
getChildren(id: string, options?: any): AxiosPromise<Array<OrganizationDTO>>;
|
|
3916
4103
|
getOrganizationMetrics(organizationId: string, options?: any): AxiosPromise<OrganizationMetricsDTO>;
|
|
3917
4104
|
getOrganizationVerticals(id: string, options?: any): AxiosPromise<Array<OrganizationVerticalDTO>>;
|
|
@@ -4421,7 +4608,12 @@ export declare interface PlaidWebhookDto {
|
|
|
4421
4608
|
|
|
4422
4609
|
export declare enum PlaidWebhookDtoNewPaymentStatusEnum {
|
|
4423
4610
|
EXECUTED = "PAYMENT_STATUS_EXECUTED",
|
|
4424
|
-
INITIATED = "PAYMENT_STATUS_INITIATED"
|
|
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"
|
|
4425
4617
|
}
|
|
4426
4618
|
|
|
4427
4619
|
export declare enum PlaidWebhookDtoStatusEnum {
|
|
@@ -4630,6 +4822,8 @@ export declare function processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, c
|
|
|
4630
4822
|
|
|
4631
4823
|
export declare function processSendGridWebhooks(requestBody: Array<string>, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
4632
4824
|
|
|
4825
|
+
export declare function processStripeOffSessionWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
4826
|
+
|
|
4633
4827
|
export declare function processStripeWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
4634
4828
|
|
|
4635
4829
|
export declare function processTwilioIvrWebhooks(ivrCallId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -4638,6 +4832,12 @@ export declare function processTwilioIvrWebhooksWithGatherAction(ivrCallId: stri
|
|
|
4638
4832
|
|
|
4639
4833
|
export declare function processTwilioVoicemailWebhook(from: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
4640
4834
|
|
|
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
|
+
|
|
4641
4841
|
export declare interface ProductDTO {
|
|
4642
4842
|
id: string;
|
|
4643
4843
|
name: string;
|
|
@@ -4743,10 +4943,12 @@ export declare enum QueueMessageDTOCronNameEnum {
|
|
|
4743
4943
|
DAILYEVIDENCECHASERSUPPLIERDRAFTREMINDER = "DAILY_EVIDENCE_CHASER_SUPPLIER_DRAFT_REMINDER",
|
|
4744
4944
|
DAILYARBITRATIONSENTNOTIFICATION = "DAILY_ARBITRATION_SENT_NOTIFICATION",
|
|
4745
4945
|
DAILYIVRCALLPROCESSING = "DAILY_IVR_CALL_PROCESSING",
|
|
4946
|
+
DAILYALBMETRICSCOLLECTION = "DAILY_ALB_METRICS_COLLECTION",
|
|
4746
4947
|
WEEKLYPENDINGREPOSITPASTSTARTDATEREMINDER = "WEEKLY_PENDING_REPOSIT_PAST_START_DATE_REMINDER",
|
|
4747
4948
|
POLLPENDINGCASHDEPOSITS = "POLL_PENDING_CASH_DEPOSITS",
|
|
4748
4949
|
REFRESHMYDEPOSITSACCESSTOKENS = "REFRESH_MY_DEPOSITS_ACCESS_TOKENS",
|
|
4749
|
-
RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS"
|
|
4950
|
+
RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
|
|
4951
|
+
PROCESSSQSWORKEROUTBOX = "PROCESS_SQS_WORKER_OUTBOX"
|
|
4750
4952
|
}
|
|
4751
4953
|
|
|
4752
4954
|
export declare enum QueueMessageDTOTypeEnum {
|
|
@@ -4759,6 +4961,9 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
4759
4961
|
AUTORESPONDTENANT = "AUTO_RESPOND_TENANT",
|
|
4760
4962
|
AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
|
|
4761
4963
|
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",
|
|
4762
4967
|
PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
|
|
4763
4968
|
PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
|
|
4764
4969
|
PROCESSSTRIPEDISPUTECREATED = "PROCESS_STRIPE_DISPUTE_CREATED",
|
|
@@ -4803,7 +5008,9 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
4803
5008
|
HANDLEPENDINGCASHDEPOSIT = "HANDLE_PENDING_CASH_DEPOSIT",
|
|
4804
5009
|
REFRESHMYDEPOSITSACCESSTOKEN = "REFRESH_MY_DEPOSITS_ACCESS_TOKEN",
|
|
4805
5010
|
RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
|
|
4806
|
-
MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY"
|
|
5011
|
+
MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY",
|
|
5012
|
+
CREATEXEROCONTACTFORORGANIZATION = "CREATE_XERO_CONTACT_FOR_ORGANIZATION",
|
|
5013
|
+
PROCESSBULKIMPORTFILE = "PROCESS_BULK_IMPORT_FILE"
|
|
4807
5014
|
}
|
|
4808
5015
|
|
|
4809
5016
|
export declare function readyForArbitrateClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -5063,11 +5270,18 @@ export declare interface RepositFeeDTO {
|
|
|
5063
5270
|
}
|
|
5064
5271
|
|
|
5065
5272
|
export declare interface RepositLandlordDTO {
|
|
5066
|
-
|
|
5067
|
-
|
|
5273
|
+
landlordTypeId: RepositLandlordDTOLandlordTypeIdEnum;
|
|
5274
|
+
firstName?: string;
|
|
5275
|
+
lastName?: string;
|
|
5276
|
+
companyName?: string;
|
|
5068
5277
|
email: string;
|
|
5069
5278
|
}
|
|
5070
5279
|
|
|
5280
|
+
export declare enum RepositLandlordDTOLandlordTypeIdEnum {
|
|
5281
|
+
COMPANY = "COMPANY",
|
|
5282
|
+
SOLEPERSON = "SOLE_PERSON"
|
|
5283
|
+
}
|
|
5284
|
+
|
|
5071
5285
|
export declare interface RepositOfferDTO {
|
|
5072
5286
|
id: string;
|
|
5073
5287
|
PPM: number;
|
|
@@ -5511,6 +5725,42 @@ export declare interface SearchUserResultsDTO {
|
|
|
5511
5725
|
results: Array<UserDTO>;
|
|
5512
5726
|
}
|
|
5513
5727
|
|
|
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
|
+
|
|
5514
5764
|
export declare function seedReposit(seedRepositDTO: SeedRepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
5515
5765
|
|
|
5516
5766
|
export declare interface SeedRepositDTO {
|
|
@@ -5638,6 +5888,13 @@ export declare interface SuppliersApiInterface {
|
|
|
5638
5888
|
getSupplierAgents(id: string, options?: any): AxiosPromise<Array<RepositAgentDTO>>;
|
|
5639
5889
|
}
|
|
5640
5890
|
|
|
5891
|
+
export declare interface TemporaryUploadUrlDTO {
|
|
5892
|
+
bucket: string;
|
|
5893
|
+
key: string;
|
|
5894
|
+
uploadUrl: string;
|
|
5895
|
+
expiresInSeconds: number;
|
|
5896
|
+
}
|
|
5897
|
+
|
|
5641
5898
|
export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterface {
|
|
5642
5899
|
closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5643
5900
|
createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5794,6 +6051,7 @@ export declare interface TenancyDTO {
|
|
|
5794
6051
|
tenants: Array<TenantDTO>;
|
|
5795
6052
|
letOnly: boolean;
|
|
5796
6053
|
isNewTenancy?: boolean;
|
|
6054
|
+
termType?: TenancyDTOTermTypeEnum;
|
|
5797
6055
|
checkout?: CheckoutDTO;
|
|
5798
6056
|
completedAt?: string;
|
|
5799
6057
|
outcomeDeadline?: string;
|
|
@@ -5812,6 +6070,11 @@ export declare interface TenancyDTO {
|
|
|
5812
6070
|
preTenancyDocuments?: Array<PreTenancyDocumentDTO>;
|
|
5813
6071
|
}
|
|
5814
6072
|
|
|
6073
|
+
export declare enum TenancyDTOTermTypeEnum {
|
|
6074
|
+
FIXED = "FIXED",
|
|
6075
|
+
PERIODIC = "PERIODIC"
|
|
6076
|
+
}
|
|
6077
|
+
|
|
5815
6078
|
export declare class TenancyExpiriesApi extends BaseAPI implements TenancyExpiriesApiInterface {
|
|
5816
6079
|
createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, options?: any): AxiosPromise<TenancyExpiryDTO>;
|
|
5817
6080
|
getByTenancyId(tenancyId: string, options?: any): AxiosPromise<TenancyExpiryDTO[]>;
|
|
@@ -6002,7 +6265,7 @@ export declare interface TenancyOrderNotesApiInterface {
|
|
|
6002
6265
|
|
|
6003
6266
|
export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersApiInterface {
|
|
6004
6267
|
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>;
|
|
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, isNewTenancy?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6006
6269
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6007
6270
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6008
6271
|
sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
|
|
@@ -6011,7 +6274,7 @@ export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersAp
|
|
|
6011
6274
|
|
|
6012
6275
|
export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6013
6276
|
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;
|
|
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, isNewTenancy?: boolean, options?: any): RequestArgs;
|
|
6015
6278
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): RequestArgs;
|
|
6016
6279
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): RequestArgs;
|
|
6017
6280
|
sendOverdueChasers(id: string, options?: any): RequestArgs;
|
|
@@ -6020,7 +6283,7 @@ export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configu
|
|
|
6020
6283
|
|
|
6021
6284
|
export declare const TenancyOrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6022
6285
|
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>;
|
|
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, isNewTenancy?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6024
6287
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6025
6288
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6026
6289
|
sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
|
|
@@ -6029,7 +6292,7 @@ export declare const TenancyOrdersApiFactory: (configuration?: Configuration, ba
|
|
|
6029
6292
|
|
|
6030
6293
|
export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
|
|
6031
6294
|
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>;
|
|
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, isNewTenancy?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6033
6296
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6034
6297
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6035
6298
|
sendOverdueChasers(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
@@ -6038,7 +6301,7 @@ export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
|
|
|
6038
6301
|
|
|
6039
6302
|
export declare interface TenancyOrdersApiInterface {
|
|
6040
6303
|
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>;
|
|
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, isNewTenancy?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
|
|
6042
6305
|
removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6043
6306
|
reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
|
|
6044
6307
|
sendOverdueChasers(id: string, options?: any): AxiosPromise<{}>;
|
|
@@ -6051,6 +6314,7 @@ export declare interface TenancyOrderWithTenancyAndOrderCustomersDTO {
|
|
|
6051
6314
|
tenancy: TenancyWithCheckoutAndClaimDTO;
|
|
6052
6315
|
tenancyOrderNotes?: Array<TenancyOrderNoteDTO>;
|
|
6053
6316
|
repositOfferId?: string;
|
|
6317
|
+
outstandingChargesTenantEmails?: Array<string>;
|
|
6054
6318
|
createdAt: string;
|
|
6055
6319
|
updatedAt: string;
|
|
6056
6320
|
deletedAt: string;
|
|
@@ -6062,6 +6326,7 @@ export declare interface TenancyOrderWithTenancyDTO {
|
|
|
6062
6326
|
id: string;
|
|
6063
6327
|
order: OrderDTO;
|
|
6064
6328
|
tenancy: TenancyWithCheckoutAndClaimDTO;
|
|
6329
|
+
outstandingChargesTenantEmails?: Array<string>;
|
|
6065
6330
|
repositOfferId?: string;
|
|
6066
6331
|
createdAt: string;
|
|
6067
6332
|
updatedAt: string;
|
|
@@ -6146,6 +6411,7 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6146
6411
|
tenants: Array<TenantDTO>;
|
|
6147
6412
|
letOnly: boolean;
|
|
6148
6413
|
isNewTenancy?: boolean;
|
|
6414
|
+
termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
|
|
6149
6415
|
checkout?: CheckoutWithClaimDTO;
|
|
6150
6416
|
completedAt?: string;
|
|
6151
6417
|
outcomeDeadline?: string;
|
|
@@ -6165,6 +6431,11 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6165
6431
|
hasIncompleteTransfers: boolean;
|
|
6166
6432
|
}
|
|
6167
6433
|
|
|
6434
|
+
export declare enum TenancyWithCheckoutAndClaimDTOTermTypeEnum {
|
|
6435
|
+
FIXED = "FIXED",
|
|
6436
|
+
PERIODIC = "PERIODIC"
|
|
6437
|
+
}
|
|
6438
|
+
|
|
6168
6439
|
export declare function tenantConfirmation(token: string, response: 'CONFIRMED' | 'UNCONFIRMED', tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6169
6440
|
|
|
6170
6441
|
export declare interface TenantDTO {
|
|
@@ -6497,6 +6768,12 @@ export declare interface UpdateTenancyRequestDTO {
|
|
|
6497
6768
|
endDate?: string;
|
|
6498
6769
|
letOnly?: boolean;
|
|
6499
6770
|
isNewTenancy?: boolean;
|
|
6771
|
+
termType?: UpdateTenancyRequestDTOTermTypeEnum;
|
|
6772
|
+
}
|
|
6773
|
+
|
|
6774
|
+
export declare enum UpdateTenancyRequestDTOTermTypeEnum {
|
|
6775
|
+
FIXED = "FIXED",
|
|
6776
|
+
PERIODIC = "PERIODIC"
|
|
6500
6777
|
}
|
|
6501
6778
|
|
|
6502
6779
|
export declare function updateTenantDisputeMessage(claimId: string, updateTenantDisputeMessageDTO: UpdateTenantDisputeMessageDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|