@reposit/api-client 6.65.0-1 → 6.65.0-2
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 +228 -18
- package/dist/index.js +1 -1
- package/dist/index.mjs +2453 -1998
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -409,6 +409,7 @@ export declare interface BlockedTenantDTO {
|
|
|
409
409
|
export declare interface BulkImportDTO {
|
|
410
410
|
id: string;
|
|
411
411
|
name: string;
|
|
412
|
+
importType: BulkImportDTOImportTypeEnum;
|
|
412
413
|
organizationId: string;
|
|
413
414
|
organizationName?: string;
|
|
414
415
|
filePath?: string;
|
|
@@ -425,6 +426,11 @@ export declare interface BulkImportDTO {
|
|
|
425
426
|
updatedAt: string;
|
|
426
427
|
}
|
|
427
428
|
|
|
429
|
+
export declare enum BulkImportDTOImportTypeEnum {
|
|
430
|
+
REPOSIT = "REPOSIT",
|
|
431
|
+
PROPERTY = "PROPERTY"
|
|
432
|
+
}
|
|
433
|
+
|
|
428
434
|
export declare enum BulkImportDTOStatusEnum {
|
|
429
435
|
DRAFT = "DRAFT",
|
|
430
436
|
IMPORTING = "IMPORTING",
|
|
@@ -439,7 +445,7 @@ export declare class BulkImportsApi extends BaseAPI implements BulkImportsApiInt
|
|
|
439
445
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
440
446
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
441
447
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
442
|
-
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
448
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): AxiosPromise<Response>;
|
|
443
449
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
444
450
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
445
451
|
}
|
|
@@ -450,7 +456,7 @@ export declare const BulkImportsApiAxiosParamCreator: (configuration?: Configura
|
|
|
450
456
|
getAllBulkImports(options?: any): RequestArgs;
|
|
451
457
|
getBulkImportById(id: string, options?: any): RequestArgs;
|
|
452
458
|
getBulkImportDownloadUrl(id: string, options?: any): RequestArgs;
|
|
453
|
-
getExampleCsv(options?: any): RequestArgs;
|
|
459
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): RequestArgs;
|
|
454
460
|
getFailedRowsCsv(id: string, options?: any): RequestArgs;
|
|
455
461
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): RequestArgs;
|
|
456
462
|
};
|
|
@@ -461,7 +467,7 @@ export declare const BulkImportsApiFactory: (configuration?: Configuration, base
|
|
|
461
467
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
462
468
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
463
469
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
464
|
-
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
470
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): AxiosPromise<Response>;
|
|
465
471
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
466
472
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
467
473
|
};
|
|
@@ -472,7 +478,7 @@ export declare const BulkImportsApiFp: (configuration?: Configuration) => {
|
|
|
472
478
|
getAllBulkImports(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkImportDTO>>;
|
|
473
479
|
getBulkImportById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
474
480
|
getBulkImportDownloadUrl(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadUrlDTO>;
|
|
475
|
-
getExampleCsv(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
481
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
476
482
|
getFailedRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
477
483
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
478
484
|
};
|
|
@@ -483,11 +489,13 @@ export declare interface BulkImportsApiInterface {
|
|
|
483
489
|
getAllBulkImports(options?: any): AxiosPromise<Array<BulkImportDTO>>;
|
|
484
490
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
485
491
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
486
|
-
getExampleCsv(options?: any): AxiosPromise<{}>;
|
|
492
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): AxiosPromise<{}>;
|
|
487
493
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<{}>;
|
|
488
494
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
489
495
|
}
|
|
490
496
|
|
|
497
|
+
export declare function calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<MarketRentCalculatorResponseDTO>;
|
|
498
|
+
|
|
491
499
|
export declare interface CashDepositDetailsDTO {
|
|
492
500
|
amount: number;
|
|
493
501
|
PPM: number;
|
|
@@ -1101,10 +1109,12 @@ export declare class ClaimsApi extends BaseAPI implements ClaimsApiInterface {
|
|
|
1101
1109
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1102
1110
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1103
1111
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1112
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1104
1113
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1105
1114
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1106
1115
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1107
1116
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1117
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<Response>;
|
|
1108
1118
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1109
1119
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1110
1120
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1128,10 +1138,12 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1128
1138
|
createInsuranceClaimOnClaim(claimId: string, options?: any): RequestArgs;
|
|
1129
1139
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): RequestArgs;
|
|
1130
1140
|
declineClaim(claimId: string, options?: any): RequestArgs;
|
|
1141
|
+
deleteClaim(claimId: string, options?: any): RequestArgs;
|
|
1131
1142
|
findClaimById(claimId: string, options?: any): RequestArgs;
|
|
1132
1143
|
generateADRForm(claimId: string, options?: any): RequestArgs;
|
|
1133
1144
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): RequestArgs;
|
|
1134
1145
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): RequestArgs;
|
|
1146
|
+
previewClaimDeletion(claimId: string, options?: any): RequestArgs;
|
|
1135
1147
|
publishClaim(claimId: string, options?: any): RequestArgs;
|
|
1136
1148
|
readyForArbitrateClaim(claimId: string, options?: any): RequestArgs;
|
|
1137
1149
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): RequestArgs;
|
|
@@ -1155,10 +1167,12 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
1155
1167
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1156
1168
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1157
1169
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1170
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1158
1171
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1159
1172
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1160
1173
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1161
1174
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1175
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<Response>;
|
|
1162
1176
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1163
1177
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1164
1178
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1182,10 +1196,12 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
1182
1196
|
createInsuranceClaimOnClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1183
1197
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1184
1198
|
declineClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1199
|
+
deleteClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1185
1200
|
findClaimById(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1186
1201
|
generateADRForm(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1187
1202
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchClaimResultsDTO>;
|
|
1188
1203
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1204
|
+
previewClaimDeletion(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
1189
1205
|
publishClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1190
1206
|
readyForArbitrateClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1191
1207
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1209,10 +1225,12 @@ export declare interface ClaimsApiInterface {
|
|
|
1209
1225
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1210
1226
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1211
1227
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1228
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1212
1229
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1213
1230
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1214
1231
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1215
1232
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1233
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<{}>;
|
|
1216
1234
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1217
1235
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1218
1236
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1546,9 +1564,15 @@ export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDT
|
|
|
1546
1564
|
|
|
1547
1565
|
export declare interface CreateBulkImportDTO {
|
|
1548
1566
|
name: string;
|
|
1567
|
+
importType: CreateBulkImportDTOImportTypeEnum;
|
|
1549
1568
|
organizationId: string;
|
|
1550
1569
|
}
|
|
1551
1570
|
|
|
1571
|
+
export declare enum CreateBulkImportDTOImportTypeEnum {
|
|
1572
|
+
REPOSIT = "REPOSIT",
|
|
1573
|
+
PROPERTY = "PROPERTY"
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1552
1576
|
export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
|
|
1553
1577
|
|
|
1554
1578
|
export declare function createClaim(createClaimDTO: CreateClaimDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -1829,6 +1853,56 @@ export declare enum CreateInsuredItemDTOTypeEnum {
|
|
|
1829
1853
|
PROPERTY = "PROPERTY"
|
|
1830
1854
|
}
|
|
1831
1855
|
|
|
1856
|
+
export declare function createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CreateRepositOfferResponseDTO>;
|
|
1857
|
+
|
|
1858
|
+
export declare interface CreateIntegrationRepositOfferAddressDTO {
|
|
1859
|
+
line1: string;
|
|
1860
|
+
line2?: string;
|
|
1861
|
+
town: string;
|
|
1862
|
+
postcode: string;
|
|
1863
|
+
country: string;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
export declare interface CreateIntegrationRepositOfferDTO {
|
|
1867
|
+
address: CreateIntegrationRepositOfferAddressDTO;
|
|
1868
|
+
landlord: CreateIntegrationRepositOfferLandlordDTO;
|
|
1869
|
+
agentId: string;
|
|
1870
|
+
ppm: number;
|
|
1871
|
+
tenants: Array<CreateIntegrationRepositOfferTenantDTO>;
|
|
1872
|
+
startDate: string;
|
|
1873
|
+
letOnly: boolean;
|
|
1874
|
+
cashDepositAmount?: number;
|
|
1875
|
+
tenantsReferenceStatus?: CreateIntegrationRepositOfferDTOTenantsReferenceStatusEnum;
|
|
1876
|
+
endDate?: string;
|
|
1877
|
+
referrerId?: string;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
export declare enum CreateIntegrationRepositOfferDTOTenantsReferenceStatusEnum {
|
|
1881
|
+
PASSED = "PASSED",
|
|
1882
|
+
FAILED = "FAILED"
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
export declare interface CreateIntegrationRepositOfferGuarantorDTO {
|
|
1886
|
+
firstName: string;
|
|
1887
|
+
lastName: string;
|
|
1888
|
+
email: string;
|
|
1889
|
+
mobileNumber?: string;
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
export declare interface CreateIntegrationRepositOfferLandlordDTO {
|
|
1893
|
+
firstName: string;
|
|
1894
|
+
lastName: string;
|
|
1895
|
+
email: string;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
export declare interface CreateIntegrationRepositOfferTenantDTO {
|
|
1899
|
+
firstName: string;
|
|
1900
|
+
lastName: string;
|
|
1901
|
+
email: string;
|
|
1902
|
+
mobileNumber?: string;
|
|
1903
|
+
guarantor?: CreateIntegrationRepositOfferGuarantorDTO;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1832
1906
|
export declare interface CreateLandlordDTO {
|
|
1833
1907
|
firstName?: string;
|
|
1834
1908
|
lastName?: string;
|
|
@@ -2065,6 +2139,11 @@ export declare interface CreateRepositDTO {
|
|
|
2065
2139
|
draft?: boolean;
|
|
2066
2140
|
}
|
|
2067
2141
|
|
|
2142
|
+
export declare interface CreateRepositOfferResponseDTO {
|
|
2143
|
+
success: boolean;
|
|
2144
|
+
id: string;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2068
2147
|
export declare function createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TemporaryUploadUrlDTO>;
|
|
2069
2148
|
|
|
2070
2149
|
export declare interface CreateTemporaryUploadUrlDTO {
|
|
@@ -2078,7 +2157,7 @@ export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequ
|
|
|
2078
2157
|
export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
|
|
2079
2158
|
|
|
2080
2159
|
export declare interface CreateTenancyExpiryRequestDTO {
|
|
2081
|
-
endDate
|
|
2160
|
+
endDate?: string;
|
|
2082
2161
|
}
|
|
2083
2162
|
|
|
2084
2163
|
export declare function createTenancyInvite(tenancyId: string, createTenancyInviteDTO: CreateTenancyInviteDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -2225,6 +2304,8 @@ export declare function deleteBankAccount(organizationId: string, id: string, co
|
|
|
2225
2304
|
|
|
2226
2305
|
export declare function deleteById(tenantId: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
|
|
2227
2306
|
|
|
2307
|
+
export declare function deleteClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2308
|
+
|
|
2228
2309
|
export declare function deleteClaimDocument(claimId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2229
2310
|
|
|
2230
2311
|
export declare function deleteClaimItem(claimId: string, claimItemId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -2241,6 +2322,8 @@ export declare function deleteEvidenceChaserItemResponseDocument(documentId: str
|
|
|
2241
2322
|
|
|
2242
2323
|
export declare function deleteGuarantor(tenancyUserId: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantDTO>;
|
|
2243
2324
|
|
|
2325
|
+
export declare function deleteIntegrationRepositOffer(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2326
|
+
|
|
2244
2327
|
export declare function deleteInvite(organizationInviteId: string, organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2245
2328
|
|
|
2246
2329
|
export declare function deleteItem(id: string, itemId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<InsuredItemDTO>>;
|
|
@@ -2817,8 +2900,6 @@ export declare function findReferenceById(id: string, configuration?: Configurat
|
|
|
2817
2900
|
|
|
2818
2901
|
export declare function findReferenceDocumentById(referenceId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ReferenceDocumentDTO>;
|
|
2819
2902
|
|
|
2820
|
-
export declare function forceDeletePaymentPlanById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2821
|
-
|
|
2822
2903
|
export declare function generateADRForm(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2823
2904
|
|
|
2824
2905
|
export declare function generateCashDepositPlaidLinkToken(verifyPostcodeRequestDTO: VerifyPostcodeRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<GeneratePlaidLinkTokenResponseDTO>;
|
|
@@ -2865,7 +2946,7 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
|
|
|
2865
2946
|
|
|
2866
2947
|
export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
|
|
2867
2948
|
|
|
2868
|
-
export declare function getExampleCsv(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2949
|
+
export declare function getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2869
2950
|
|
|
2870
2951
|
export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2871
2952
|
|
|
@@ -2879,6 +2960,22 @@ export declare function getIntegrators(configuration?: Configuration, axios?: Ax
|
|
|
2879
2960
|
|
|
2880
2961
|
export declare function getLandlordById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<LandlordDTO>;
|
|
2881
2962
|
|
|
2963
|
+
export declare interface GetMarketRentCalculationDTO {
|
|
2964
|
+
organizationId: string;
|
|
2965
|
+
postcode: string;
|
|
2966
|
+
numberOfBedrooms: number;
|
|
2967
|
+
propertyType: GetMarketRentCalculationDTOPropertyTypeEnum;
|
|
2968
|
+
currentRent: number;
|
|
2969
|
+
startDateOfCurrentRent: string;
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
export declare enum GetMarketRentCalculationDTOPropertyTypeEnum {
|
|
2973
|
+
Terraced = "terraced",
|
|
2974
|
+
Semi = "semi",
|
|
2975
|
+
Detached = "detached",
|
|
2976
|
+
Flat = "flat"
|
|
2977
|
+
}
|
|
2978
|
+
|
|
2882
2979
|
export declare function getMyDepositsAuthorizeUrl(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<MyDepositsAuthorizeResponseDTO>;
|
|
2883
2980
|
|
|
2884
2981
|
export declare function getMyDepositsCompanyOffices(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -3097,6 +3194,36 @@ export declare interface IntegrationPartnerDTO {
|
|
|
3097
3194
|
notified: boolean;
|
|
3098
3195
|
}
|
|
3099
3196
|
|
|
3197
|
+
export declare class IntegrationRepositOffersApi extends BaseAPI implements IntegrationRepositOffersApiInterface {
|
|
3198
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): AxiosPromise<CreateRepositOfferResponseDTO>;
|
|
3199
|
+
deleteIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3200
|
+
progressIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3203
|
+
export declare const IntegrationRepositOffersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3204
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): RequestArgs;
|
|
3205
|
+
deleteIntegrationRepositOffer(id: string, options?: any): RequestArgs;
|
|
3206
|
+
progressIntegrationRepositOffer(id: string, options?: any): RequestArgs;
|
|
3207
|
+
};
|
|
3208
|
+
|
|
3209
|
+
export declare const IntegrationRepositOffersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3210
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): AxiosPromise<CreateRepositOfferResponseDTO>;
|
|
3211
|
+
deleteIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3212
|
+
progressIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3213
|
+
};
|
|
3214
|
+
|
|
3215
|
+
export declare const IntegrationRepositOffersApiFp: (configuration?: Configuration) => {
|
|
3216
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateRepositOfferResponseDTO>;
|
|
3217
|
+
deleteIntegrationRepositOffer(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3218
|
+
progressIntegrationRepositOffer(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3219
|
+
};
|
|
3220
|
+
|
|
3221
|
+
export declare interface IntegrationRepositOffersApiInterface {
|
|
3222
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): AxiosPromise<CreateRepositOfferResponseDTO>;
|
|
3223
|
+
deleteIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3224
|
+
progressIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3225
|
+
}
|
|
3226
|
+
|
|
3100
3227
|
export declare interface IntegrationWebhookDTO {
|
|
3101
3228
|
webhookUrl: string;
|
|
3102
3229
|
}
|
|
@@ -3296,6 +3423,40 @@ export declare interface LoginDTO {
|
|
|
3296
3423
|
password: string;
|
|
3297
3424
|
}
|
|
3298
3425
|
|
|
3426
|
+
export declare class MarketRentCalculatorApi extends BaseAPI implements MarketRentCalculatorApiInterface {
|
|
3427
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3430
|
+
export declare const MarketRentCalculatorApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3431
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): RequestArgs;
|
|
3432
|
+
};
|
|
3433
|
+
|
|
3434
|
+
export declare const MarketRentCalculatorApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3435
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3436
|
+
};
|
|
3437
|
+
|
|
3438
|
+
export declare const MarketRentCalculatorApiFp: (configuration?: Configuration) => {
|
|
3439
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3440
|
+
};
|
|
3441
|
+
|
|
3442
|
+
export declare interface MarketRentCalculatorApiInterface {
|
|
3443
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
export declare interface MarketRentCalculatorResponseDTO {
|
|
3447
|
+
available: boolean;
|
|
3448
|
+
marketRentIncreaseRecommendation?: number;
|
|
3449
|
+
increasePct?: number;
|
|
3450
|
+
increaseBasis?: MarketRentCalculatorResponseDTOIncreaseBasisEnum;
|
|
3451
|
+
currentMarketRentMinimum?: number;
|
|
3452
|
+
currentMarketRentMaximum?: number;
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3455
|
+
export declare enum MarketRentCalculatorResponseDTOIncreaseBasisEnum {
|
|
3456
|
+
FairRentIncreasePct = "fair_rent_increase_pct",
|
|
3457
|
+
CpihYoyPct = "cpih_yoy_pct"
|
|
3458
|
+
}
|
|
3459
|
+
|
|
3299
3460
|
export declare function me(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CurrentUserInfoDTO>;
|
|
3300
3461
|
|
|
3301
3462
|
export declare class MessageQueueApi extends BaseAPI implements MessageQueueApiInterface {
|
|
@@ -4144,6 +4305,7 @@ export declare interface OrganizationSettingsDTO {
|
|
|
4144
4305
|
autoExtendOutcomeDeadlineEnabled?: boolean;
|
|
4145
4306
|
maximumPolicyCover?: OrganizationSettingsDTOMaximumPolicyCoverEnum;
|
|
4146
4307
|
offerRepositEnabled?: boolean;
|
|
4308
|
+
marketRentCalculatorEnabled?: boolean;
|
|
4147
4309
|
inventoryChaserDisabled?: boolean;
|
|
4148
4310
|
minimumFeeDisabled?: boolean;
|
|
4149
4311
|
pendingSwitchRemindersDisabled?: boolean;
|
|
@@ -4576,7 +4738,6 @@ export declare class PaymentPlansApi extends BaseAPI implements PaymentPlansApiI
|
|
|
4576
4738
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
|
|
4577
4739
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4578
4740
|
deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4579
|
-
forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4580
4741
|
getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4581
4742
|
getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
|
|
4582
4743
|
getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -4586,7 +4747,6 @@ export declare const PaymentPlansApiAxiosParamCreator: (configuration?: Configur
|
|
|
4586
4747
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): RequestArgs;
|
|
4587
4748
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): RequestArgs;
|
|
4588
4749
|
deletePaymentPlanById(id: string, options?: any): RequestArgs;
|
|
4589
|
-
forceDeletePaymentPlanById(id: string, options?: any): RequestArgs;
|
|
4590
4750
|
getPaymentPlanById(id: string, options?: any): RequestArgs;
|
|
4591
4751
|
getPaymentPlanPropertyAddressById(id: string, options?: any): RequestArgs;
|
|
4592
4752
|
getSetupIntentSecret(id: string, options?: any): RequestArgs;
|
|
@@ -4596,7 +4756,6 @@ export declare const PaymentPlansApiFactory: (configuration?: Configuration, bas
|
|
|
4596
4756
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
|
|
4597
4757
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4598
4758
|
deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4599
|
-
forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4600
4759
|
getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4601
4760
|
getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
|
|
4602
4761
|
getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -4606,7 +4765,6 @@ export declare const PaymentPlansApiFp: (configuration?: Configuration) => {
|
|
|
4606
4765
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
4607
4766
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
|
|
4608
4767
|
deletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
4609
|
-
forceDeletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
4610
4768
|
getPaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
|
|
4611
4769
|
getPaymentPlanPropertyAddressById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressDTO>;
|
|
4612
4770
|
getSetupIntentSecret(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -4616,7 +4774,6 @@ export declare interface PaymentPlansApiInterface {
|
|
|
4616
4774
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<{}>;
|
|
4617
4775
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4618
4776
|
deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4619
|
-
forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4620
4777
|
getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4621
4778
|
getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
|
|
4622
4779
|
getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -4825,6 +4982,8 @@ export declare interface PreTenancyDocumentsApiInterface {
|
|
|
4825
4982
|
deletePreTenancyDocument(tenancyId: string, documentId: string, options?: any): AxiosPromise<{}>;
|
|
4826
4983
|
}
|
|
4827
4984
|
|
|
4985
|
+
export declare function previewClaimDeletion(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
4986
|
+
|
|
4828
4987
|
export declare class PricingApi extends BaseAPI implements PricingApiInterface {
|
|
4829
4988
|
getCashDepositAmount(ppm: number, options?: any): AxiosPromise<CashDepositDTO>;
|
|
4830
4989
|
getRepositFee(ppm: number, organizationId: string, headcount?: number, options?: any): AxiosPromise<RepositFeeDTO>;
|
|
@@ -4877,6 +5036,8 @@ export declare interface ProductDTO {
|
|
|
4877
5036
|
name: string;
|
|
4878
5037
|
}
|
|
4879
5038
|
|
|
5039
|
+
export declare function progressIntegrationRepositOffer(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
5040
|
+
|
|
4880
5041
|
export declare class PropertiesApi extends BaseAPI implements PropertiesApiInterface {
|
|
4881
5042
|
createProperty(createPropertyDTO: CreatePropertyDTO, options?: any): AxiosPromise<PropertyDTO>;
|
|
4882
5043
|
getPropertyById(id: string, options?: any): AxiosPromise<PropertyDTO>;
|
|
@@ -4947,11 +5108,13 @@ export declare enum QueueMessageDTOCronNameEnum {
|
|
|
4947
5108
|
DAILYCLAIMAUTORESPONDSUPPLIER = "DAILY_CLAIM_AUTO_RESPOND_SUPPLIER",
|
|
4948
5109
|
SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
|
|
4949
5110
|
DAILYFINALSCHEDULEDAUTOCHARGE = "DAILY_FINAL_SCHEDULED_AUTO_CHARGE",
|
|
4950
|
-
|
|
5111
|
+
SCHEDULEDRETRYABLEPAYMENT = "SCHEDULED_RETRYABLE_PAYMENT",
|
|
4951
5112
|
DAILYORDERSCHEDULEDCHARGE = "DAILY_ORDER_SCHEDULED_CHARGE",
|
|
4952
5113
|
MONTHLYDIRECTCOMMISSION = "MONTHLY_DIRECT_COMMISSION",
|
|
5114
|
+
MONTHLYCLOSEDREPOSITREPORT = "MONTHLY_CLOSED_REPOSIT_REPORT",
|
|
4953
5115
|
WEEKLYLANDLORDTRANSFERREMINDER = "WEEKLY_LANDLORD_TRANSFER_REMINDER",
|
|
4954
5116
|
DAILYREPOSITENDINGREMINDER = "DAILY_REPOSIT_ENDING_REMINDER",
|
|
5117
|
+
DAILYTENANCYENDINGREMINDER = "DAILY_TENANCY_ENDING_REMINDER",
|
|
4955
5118
|
DAILYREPOSITCLOSINGREMINDER = "DAILY_REPOSIT_CLOSING_REMINDER",
|
|
4956
5119
|
DAILYREPOSITENDED = "DAILY_REPOSIT_ENDED",
|
|
4957
5120
|
DAILYREPOSITCLOSED = "DAILY_REPOSIT_CLOSED",
|
|
@@ -4998,7 +5161,6 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
4998
5161
|
AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
|
|
4999
5162
|
PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
|
|
5000
5163
|
PROCESSOFFSESSIONPAYMENTATTEMPTFAILED = "PROCESS_OFF_SESSION_PAYMENT_ATTEMPT_FAILED",
|
|
5001
|
-
PROCESSOFFSESSIONPAYMENTSUCCEEDED = "PROCESS_OFF_SESSION_PAYMENT_SUCCEEDED",
|
|
5002
5164
|
PROCESSOFFSESSIONPAYMENTFAILED = "PROCESS_OFF_SESSION_PAYMENT_FAILED",
|
|
5003
5165
|
PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
|
|
5004
5166
|
PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
|
|
@@ -5013,6 +5175,7 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
5013
5175
|
ZIPDOCUMENTSFORCLAIM = "ZIP_DOCUMENTS_FOR_CLAIM",
|
|
5014
5176
|
GENERATEADRFORM = "GENERATE_ADR_FORM",
|
|
5015
5177
|
REPOSITENDINGREMINDER = "REPOSIT_ENDING_REMINDER",
|
|
5178
|
+
TENANCYENDINGREMINDER = "TENANCY_ENDING_REMINDER",
|
|
5016
5179
|
REPOSITCLOSINGREMINDER = "REPOSIT_CLOSING_REMINDER",
|
|
5017
5180
|
REPOSITENDED = "REPOSIT_ENDED",
|
|
5018
5181
|
REPOSITCLOSED = "REPOSIT_CLOSED",
|
|
@@ -5810,6 +5973,12 @@ export declare interface SeedRepositDTO {
|
|
|
5810
5973
|
newTenancy?: boolean;
|
|
5811
5974
|
organizationId: string;
|
|
5812
5975
|
userId: string;
|
|
5976
|
+
termType: SeedRepositDTOTermTypeEnum;
|
|
5977
|
+
}
|
|
5978
|
+
|
|
5979
|
+
export declare enum SeedRepositDTOTermTypeEnum {
|
|
5980
|
+
FIXED = "FIXED",
|
|
5981
|
+
PERIODIC = "PERIODIC"
|
|
5813
5982
|
}
|
|
5814
5983
|
|
|
5815
5984
|
export declare class SeedRepositsApi extends BaseAPI implements SeedRepositsApiInterface {
|
|
@@ -5942,6 +6111,8 @@ export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterfa
|
|
|
5942
6111
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
5943
6112
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
5944
6113
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6114
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6115
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5945
6116
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
5946
6117
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5947
6118
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5958,6 +6129,8 @@ export declare const TenanciesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5958
6129
|
getTenancyDocuments(id: string, options?: any): RequestArgs;
|
|
5959
6130
|
publish(id: string, options?: any): RequestArgs;
|
|
5960
6131
|
signAddendumForSupplier(id: string, options?: any): RequestArgs;
|
|
6132
|
+
tenantMoveOutInfo(token: string, options?: any): RequestArgs;
|
|
6133
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): RequestArgs;
|
|
5961
6134
|
tenantVacated(token: string, options?: any): RequestArgs;
|
|
5962
6135
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): RequestArgs;
|
|
5963
6136
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): RequestArgs;
|
|
@@ -5974,6 +6147,8 @@ export declare const TenanciesApiFactory: (configuration?: Configuration, basePa
|
|
|
5974
6147
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
5975
6148
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
5976
6149
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6150
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6151
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5977
6152
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
5978
6153
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5979
6154
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5990,6 +6165,8 @@ export declare const TenanciesApiFp: (configuration?: Configuration) => {
|
|
|
5990
6165
|
getTenancyDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
5991
6166
|
publish(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
5992
6167
|
signAddendumForSupplier(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
6168
|
+
tenantMoveOutInfo(token: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6169
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5993
6170
|
tenantVacated(token: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
5994
6171
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
5995
6172
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
@@ -6006,6 +6183,8 @@ export declare interface TenanciesApiInterface {
|
|
|
6006
6183
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
6007
6184
|
publish(id: string, options?: any): AxiosPromise<{}>;
|
|
6008
6185
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6186
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6187
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
6009
6188
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
6010
6189
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6011
6190
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6089,6 +6268,7 @@ export declare interface TenancyDTO {
|
|
|
6089
6268
|
letOnly: boolean;
|
|
6090
6269
|
isNewTenancy?: boolean;
|
|
6091
6270
|
termType?: TenancyDTOTermTypeEnum;
|
|
6271
|
+
scheduledMoveOutDate?: string;
|
|
6092
6272
|
checkout?: CheckoutDTO;
|
|
6093
6273
|
completedAt?: string;
|
|
6094
6274
|
outcomeDeadline?: string;
|
|
@@ -6449,6 +6629,7 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6449
6629
|
letOnly: boolean;
|
|
6450
6630
|
isNewTenancy?: boolean;
|
|
6451
6631
|
termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
|
|
6632
|
+
scheduledMoveOutDate?: string;
|
|
6452
6633
|
checkout?: CheckoutWithClaimDTO;
|
|
6453
6634
|
completedAt?: string;
|
|
6454
6635
|
outcomeDeadline?: string;
|
|
@@ -6510,6 +6691,17 @@ export declare interface TenantGuarantorForOfferDTO {
|
|
|
6510
6691
|
mobileNumber?: string;
|
|
6511
6692
|
}
|
|
6512
6693
|
|
|
6694
|
+
export declare function tenantMoveOutInfo(token: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantMoveOutInfoResponseDTO>;
|
|
6695
|
+
|
|
6696
|
+
export declare interface TenantMoveOutInfoResponseDTO {
|
|
6697
|
+
orgType: TenantMoveOutInfoResponseDTOOrgTypeEnum;
|
|
6698
|
+
}
|
|
6699
|
+
|
|
6700
|
+
export declare enum TenantMoveOutInfoResponseDTOOrgTypeEnum {
|
|
6701
|
+
Agent = "agent",
|
|
6702
|
+
Landlord = "landlord"
|
|
6703
|
+
}
|
|
6704
|
+
|
|
6513
6705
|
export declare class TenantsApi extends BaseAPI implements TenantsApiInterface {
|
|
6514
6706
|
addTenant(tenancyId: string, addTenantRequestDTO: AddTenantRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6515
6707
|
deleteById(tenantId: string, tenancyId: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6535,6 +6727,23 @@ export declare interface TenantsApiInterface {
|
|
|
6535
6727
|
deleteById(tenantId: string, tenancyId: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6536
6728
|
}
|
|
6537
6729
|
|
|
6730
|
+
export declare function tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantScheduledMoveOutResponseDTO>;
|
|
6731
|
+
|
|
6732
|
+
export declare interface TenantScheduledMoveOutRequestDTO {
|
|
6733
|
+
token: string;
|
|
6734
|
+
scheduledMoveOutDate: string;
|
|
6735
|
+
}
|
|
6736
|
+
|
|
6737
|
+
export declare interface TenantScheduledMoveOutResponseDTO {
|
|
6738
|
+
success: boolean;
|
|
6739
|
+
orgType: TenantScheduledMoveOutResponseDTOOrgTypeEnum;
|
|
6740
|
+
}
|
|
6741
|
+
|
|
6742
|
+
export declare enum TenantScheduledMoveOutResponseDTOOrgTypeEnum {
|
|
6743
|
+
Agent = "agent",
|
|
6744
|
+
Landlord = "landlord"
|
|
6745
|
+
}
|
|
6746
|
+
|
|
6538
6747
|
export declare function tenantVacated(token: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6539
6748
|
|
|
6540
6749
|
export declare class TermsApi extends BaseAPI implements TermsApiInterface {
|
|
@@ -6811,6 +7020,7 @@ export declare interface UpdateTenancyRequestDTO {
|
|
|
6811
7020
|
letOnly?: boolean;
|
|
6812
7021
|
isNewTenancy?: boolean;
|
|
6813
7022
|
termType?: UpdateTenancyRequestDTOTermTypeEnum;
|
|
7023
|
+
scheduledMoveOutDate?: string | null;
|
|
6814
7024
|
}
|
|
6815
7025
|
|
|
6816
7026
|
export declare enum UpdateTenancyRequestDTOTermTypeEnum {
|
|
@@ -6908,12 +7118,12 @@ export declare enum UserDTOInternalRolesEnum {
|
|
|
6908
7118
|
FINANCEINDIVIDUAL = "FINANCE_INDIVIDUAL",
|
|
6909
7119
|
PAYMENTPLANCREATE = "PAYMENT_PLAN_CREATE",
|
|
6910
7120
|
PAYMENTPLANDELETE = "PAYMENT_PLAN_DELETE",
|
|
6911
|
-
PAYMENTPLANDELETEFORCE = "PAYMENT_PLAN_DELETE_FORCE",
|
|
6912
7121
|
INTERNALREPORTSALES = "INTERNAL_REPORT_SALES",
|
|
6913
7122
|
MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
|
|
6914
7123
|
BULKIMPORT = "BULK_IMPORT",
|
|
6915
7124
|
CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
|
|
6916
|
-
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE"
|
|
7125
|
+
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE",
|
|
7126
|
+
CLAIMDELETE = "CLAIM_DELETE"
|
|
6917
7127
|
}
|
|
6918
7128
|
|
|
6919
7129
|
export declare enum UserDTOUserTypeIdEnum {
|