@reposit/api-client 6.64.0 → 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 +246 -11
- package/dist/index.js +1 -1
- package/dist/index.mjs +2445 -1932
- package/package.json +4 -6
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;
|
|
@@ -418,12 +419,18 @@ export declare interface BulkImportDTO {
|
|
|
418
419
|
failedRecords: number;
|
|
419
420
|
createdByUserId: string;
|
|
420
421
|
createdByUser?: UserDTO;
|
|
422
|
+
failureReason?: string;
|
|
421
423
|
startedAt?: string;
|
|
422
424
|
completedAt?: string;
|
|
423
425
|
createdAt: string;
|
|
424
426
|
updatedAt: string;
|
|
425
427
|
}
|
|
426
428
|
|
|
429
|
+
export declare enum BulkImportDTOImportTypeEnum {
|
|
430
|
+
REPOSIT = "REPOSIT",
|
|
431
|
+
PROPERTY = "PROPERTY"
|
|
432
|
+
}
|
|
433
|
+
|
|
427
434
|
export declare enum BulkImportDTOStatusEnum {
|
|
428
435
|
DRAFT = "DRAFT",
|
|
429
436
|
IMPORTING = "IMPORTING",
|
|
@@ -438,7 +445,7 @@ export declare class BulkImportsApi extends BaseAPI implements BulkImportsApiInt
|
|
|
438
445
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
439
446
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
440
447
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
441
|
-
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
448
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): AxiosPromise<Response>;
|
|
442
449
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
443
450
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
444
451
|
}
|
|
@@ -449,7 +456,7 @@ export declare const BulkImportsApiAxiosParamCreator: (configuration?: Configura
|
|
|
449
456
|
getAllBulkImports(options?: any): RequestArgs;
|
|
450
457
|
getBulkImportById(id: string, options?: any): RequestArgs;
|
|
451
458
|
getBulkImportDownloadUrl(id: string, options?: any): RequestArgs;
|
|
452
|
-
getExampleCsv(options?: any): RequestArgs;
|
|
459
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): RequestArgs;
|
|
453
460
|
getFailedRowsCsv(id: string, options?: any): RequestArgs;
|
|
454
461
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): RequestArgs;
|
|
455
462
|
};
|
|
@@ -460,7 +467,7 @@ export declare const BulkImportsApiFactory: (configuration?: Configuration, base
|
|
|
460
467
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
461
468
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
462
469
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
463
|
-
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
470
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): AxiosPromise<Response>;
|
|
464
471
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
465
472
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
466
473
|
};
|
|
@@ -471,7 +478,7 @@ export declare const BulkImportsApiFp: (configuration?: Configuration) => {
|
|
|
471
478
|
getAllBulkImports(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkImportDTO>>;
|
|
472
479
|
getBulkImportById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
473
480
|
getBulkImportDownloadUrl(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadUrlDTO>;
|
|
474
|
-
getExampleCsv(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
481
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
475
482
|
getFailedRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
476
483
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
477
484
|
};
|
|
@@ -482,11 +489,13 @@ export declare interface BulkImportsApiInterface {
|
|
|
482
489
|
getAllBulkImports(options?: any): AxiosPromise<Array<BulkImportDTO>>;
|
|
483
490
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
484
491
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
485
|
-
getExampleCsv(options?: any): AxiosPromise<{}>;
|
|
492
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): AxiosPromise<{}>;
|
|
486
493
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<{}>;
|
|
487
494
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
488
495
|
}
|
|
489
496
|
|
|
497
|
+
export declare function calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<MarketRentCalculatorResponseDTO>;
|
|
498
|
+
|
|
490
499
|
export declare interface CashDepositDetailsDTO {
|
|
491
500
|
amount: number;
|
|
492
501
|
PPM: number;
|
|
@@ -1100,10 +1109,12 @@ export declare class ClaimsApi extends BaseAPI implements ClaimsApiInterface {
|
|
|
1100
1109
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1101
1110
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1102
1111
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1112
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1103
1113
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1104
1114
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1105
1115
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1106
1116
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1117
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<Response>;
|
|
1107
1118
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1108
1119
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1109
1120
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1127,10 +1138,12 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1127
1138
|
createInsuranceClaimOnClaim(claimId: string, options?: any): RequestArgs;
|
|
1128
1139
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): RequestArgs;
|
|
1129
1140
|
declineClaim(claimId: string, options?: any): RequestArgs;
|
|
1141
|
+
deleteClaim(claimId: string, options?: any): RequestArgs;
|
|
1130
1142
|
findClaimById(claimId: string, options?: any): RequestArgs;
|
|
1131
1143
|
generateADRForm(claimId: string, options?: any): RequestArgs;
|
|
1132
1144
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): RequestArgs;
|
|
1133
1145
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): RequestArgs;
|
|
1146
|
+
previewClaimDeletion(claimId: string, options?: any): RequestArgs;
|
|
1134
1147
|
publishClaim(claimId: string, options?: any): RequestArgs;
|
|
1135
1148
|
readyForArbitrateClaim(claimId: string, options?: any): RequestArgs;
|
|
1136
1149
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): RequestArgs;
|
|
@@ -1154,10 +1167,12 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
1154
1167
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1155
1168
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1156
1169
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1170
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1157
1171
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1158
1172
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1159
1173
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1160
1174
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1175
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<Response>;
|
|
1161
1176
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1162
1177
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1163
1178
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1181,10 +1196,12 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
1181
1196
|
createInsuranceClaimOnClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1182
1197
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1183
1198
|
declineClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1199
|
+
deleteClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1184
1200
|
findClaimById(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1185
1201
|
generateADRForm(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1186
1202
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchClaimResultsDTO>;
|
|
1187
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>;
|
|
1188
1205
|
publishClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1189
1206
|
readyForArbitrateClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1190
1207
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1208,10 +1225,12 @@ export declare interface ClaimsApiInterface {
|
|
|
1208
1225
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1209
1226
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1210
1227
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1228
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1211
1229
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1212
1230
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1213
1231
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1214
1232
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1233
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<{}>;
|
|
1215
1234
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1216
1235
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1217
1236
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1545,9 +1564,15 @@ export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDT
|
|
|
1545
1564
|
|
|
1546
1565
|
export declare interface CreateBulkImportDTO {
|
|
1547
1566
|
name: string;
|
|
1567
|
+
importType: CreateBulkImportDTOImportTypeEnum;
|
|
1548
1568
|
organizationId: string;
|
|
1549
1569
|
}
|
|
1550
1570
|
|
|
1571
|
+
export declare enum CreateBulkImportDTOImportTypeEnum {
|
|
1572
|
+
REPOSIT = "REPOSIT",
|
|
1573
|
+
PROPERTY = "PROPERTY"
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1551
1576
|
export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
|
|
1552
1577
|
|
|
1553
1578
|
export declare function createClaim(createClaimDTO: CreateClaimDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -1828,6 +1853,56 @@ export declare enum CreateInsuredItemDTOTypeEnum {
|
|
|
1828
1853
|
PROPERTY = "PROPERTY"
|
|
1829
1854
|
}
|
|
1830
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
|
+
|
|
1831
1906
|
export declare interface CreateLandlordDTO {
|
|
1832
1907
|
firstName?: string;
|
|
1833
1908
|
lastName?: string;
|
|
@@ -2064,6 +2139,11 @@ export declare interface CreateRepositDTO {
|
|
|
2064
2139
|
draft?: boolean;
|
|
2065
2140
|
}
|
|
2066
2141
|
|
|
2142
|
+
export declare interface CreateRepositOfferResponseDTO {
|
|
2143
|
+
success: boolean;
|
|
2144
|
+
id: string;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2067
2147
|
export declare function createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TemporaryUploadUrlDTO>;
|
|
2068
2148
|
|
|
2069
2149
|
export declare interface CreateTemporaryUploadUrlDTO {
|
|
@@ -2077,7 +2157,7 @@ export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequ
|
|
|
2077
2157
|
export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
|
|
2078
2158
|
|
|
2079
2159
|
export declare interface CreateTenancyExpiryRequestDTO {
|
|
2080
|
-
endDate
|
|
2160
|
+
endDate?: string;
|
|
2081
2161
|
}
|
|
2082
2162
|
|
|
2083
2163
|
export declare function createTenancyInvite(tenancyId: string, createTenancyInviteDTO: CreateTenancyInviteDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -2115,10 +2195,10 @@ export declare interface CreateTenancyRequestDTO {
|
|
|
2115
2195
|
PPM?: number;
|
|
2116
2196
|
isNewTenancy?: boolean;
|
|
2117
2197
|
startDate?: string;
|
|
2198
|
+
termType?: CreateTenancyRequestDTOTermTypeEnum;
|
|
2118
2199
|
endDate?: string;
|
|
2119
2200
|
organizationId: string;
|
|
2120
2201
|
letOnly?: boolean;
|
|
2121
|
-
termType?: CreateTenancyRequestDTOTermTypeEnum;
|
|
2122
2202
|
}
|
|
2123
2203
|
|
|
2124
2204
|
export declare enum CreateTenancyRequestDTOTermTypeEnum {
|
|
@@ -2224,6 +2304,8 @@ export declare function deleteBankAccount(organizationId: string, id: string, co
|
|
|
2224
2304
|
|
|
2225
2305
|
export declare function deleteById(tenantId: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
|
|
2226
2306
|
|
|
2307
|
+
export declare function deleteClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2308
|
+
|
|
2227
2309
|
export declare function deleteClaimDocument(claimId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2228
2310
|
|
|
2229
2311
|
export declare function deleteClaimItem(claimId: string, claimItemId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -2240,6 +2322,8 @@ export declare function deleteEvidenceChaserItemResponseDocument(documentId: str
|
|
|
2240
2322
|
|
|
2241
2323
|
export declare function deleteGuarantor(tenancyUserId: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantDTO>;
|
|
2242
2324
|
|
|
2325
|
+
export declare function deleteIntegrationRepositOffer(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2326
|
+
|
|
2243
2327
|
export declare function deleteInvite(organizationInviteId: string, organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2244
2328
|
|
|
2245
2329
|
export declare function deleteItem(id: string, itemId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<InsuredItemDTO>>;
|
|
@@ -2862,7 +2946,7 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
|
|
|
2862
2946
|
|
|
2863
2947
|
export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
|
|
2864
2948
|
|
|
2865
|
-
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>;
|
|
2866
2950
|
|
|
2867
2951
|
export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2868
2952
|
|
|
@@ -2876,6 +2960,22 @@ export declare function getIntegrators(configuration?: Configuration, axios?: Ax
|
|
|
2876
2960
|
|
|
2877
2961
|
export declare function getLandlordById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<LandlordDTO>;
|
|
2878
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
|
+
|
|
2879
2979
|
export declare function getMyDepositsAuthorizeUrl(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<MyDepositsAuthorizeResponseDTO>;
|
|
2880
2980
|
|
|
2881
2981
|
export declare function getMyDepositsCompanyOffices(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -3094,6 +3194,36 @@ export declare interface IntegrationPartnerDTO {
|
|
|
3094
3194
|
notified: boolean;
|
|
3095
3195
|
}
|
|
3096
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
|
+
|
|
3097
3227
|
export declare interface IntegrationWebhookDTO {
|
|
3098
3228
|
webhookUrl: string;
|
|
3099
3229
|
}
|
|
@@ -3293,6 +3423,40 @@ export declare interface LoginDTO {
|
|
|
3293
3423
|
password: string;
|
|
3294
3424
|
}
|
|
3295
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
|
+
|
|
3296
3460
|
export declare function me(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CurrentUserInfoDTO>;
|
|
3297
3461
|
|
|
3298
3462
|
export declare class MessageQueueApi extends BaseAPI implements MessageQueueApiInterface {
|
|
@@ -3391,6 +3555,7 @@ export declare interface MyDepositsOnboardingStatusResponseDTO {
|
|
|
3391
3555
|
companyName?: string;
|
|
3392
3556
|
officeName?: string;
|
|
3393
3557
|
accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
|
|
3558
|
+
failureReason?: string;
|
|
3394
3559
|
}
|
|
3395
3560
|
|
|
3396
3561
|
export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
|
|
@@ -3402,7 +3567,8 @@ export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
|
|
|
3402
3567
|
export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
|
|
3403
3568
|
NOTCONNECTED = "NOT_CONNECTED",
|
|
3404
3569
|
CONNECTED = "CONNECTED",
|
|
3405
|
-
COMPLETE = "COMPLETE"
|
|
3570
|
+
COMPLETE = "COMPLETE",
|
|
3571
|
+
FAILED = "FAILED"
|
|
3406
3572
|
}
|
|
3407
3573
|
|
|
3408
3574
|
export declare class NetPromoterScoreApi extends BaseAPI implements NetPromoterScoreApiInterface {
|
|
@@ -3826,6 +3992,7 @@ export declare interface OrganizationDTO {
|
|
|
3826
3992
|
name: string;
|
|
3827
3993
|
attributes?: OrganizationAttributesDTO;
|
|
3828
3994
|
settings?: OrganizationSettingsDTO;
|
|
3995
|
+
canUseAllTenancyTypes?: boolean;
|
|
3829
3996
|
organizationTypeId: OrganizationDTOOrganizationTypeIdEnum;
|
|
3830
3997
|
organizationRecipients?: Array<OrganizationRecipientDTO>;
|
|
3831
3998
|
createdAt: string;
|
|
@@ -4138,9 +4305,16 @@ export declare interface OrganizationSettingsDTO {
|
|
|
4138
4305
|
autoExtendOutcomeDeadlineEnabled?: boolean;
|
|
4139
4306
|
maximumPolicyCover?: OrganizationSettingsDTOMaximumPolicyCoverEnum;
|
|
4140
4307
|
offerRepositEnabled?: boolean;
|
|
4308
|
+
marketRentCalculatorEnabled?: boolean;
|
|
4141
4309
|
inventoryChaserDisabled?: boolean;
|
|
4142
4310
|
minimumFeeDisabled?: boolean;
|
|
4143
4311
|
pendingSwitchRemindersDisabled?: boolean;
|
|
4312
|
+
allowedTenancyTermTypes?: Array<OrganizationSettingsDTOAllowedTenancyTermTypesEnum>;
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4315
|
+
export declare enum OrganizationSettingsDTOAllowedTenancyTermTypesEnum {
|
|
4316
|
+
FIXED = "FIXED",
|
|
4317
|
+
PERIODIC = "PERIODIC"
|
|
4144
4318
|
}
|
|
4145
4319
|
|
|
4146
4320
|
export declare enum OrganizationSettingsDTOCommissionRuleEnum {
|
|
@@ -4258,6 +4432,7 @@ export declare interface OrganizationWithCashDepositDTO {
|
|
|
4258
4432
|
name: string;
|
|
4259
4433
|
attributes?: OrganizationAttributesDTO;
|
|
4260
4434
|
settings?: OrganizationSettingsDTO;
|
|
4435
|
+
canUseAllTenancyTypes?: boolean;
|
|
4261
4436
|
organizationTypeId: OrganizationWithCashDepositDTOOrganizationTypeIdEnum;
|
|
4262
4437
|
organizationRecipients?: Array<OrganizationRecipientDTO>;
|
|
4263
4438
|
createdAt: string;
|
|
@@ -4279,6 +4454,7 @@ export declare interface OrganizationWithRepositsAndRoles {
|
|
|
4279
4454
|
name: string;
|
|
4280
4455
|
attributes?: OrganizationAttributesDTO;
|
|
4281
4456
|
settings?: OrganizationSettingsDTO;
|
|
4457
|
+
canUseAllTenancyTypes?: boolean;
|
|
4282
4458
|
organizationTypeId: OrganizationWithRepositsAndRolesOrganizationTypeIdEnum;
|
|
4283
4459
|
organizationRecipients?: Array<OrganizationRecipientDTO>;
|
|
4284
4460
|
createdAt: string;
|
|
@@ -4310,6 +4486,7 @@ export declare interface OrganizationWithRoles {
|
|
|
4310
4486
|
name: string;
|
|
4311
4487
|
attributes?: OrganizationAttributesDTO;
|
|
4312
4488
|
settings?: OrganizationSettingsDTO;
|
|
4489
|
+
canUseAllTenancyTypes?: boolean;
|
|
4313
4490
|
organizationTypeId: OrganizationWithRolesOrganizationTypeIdEnum;
|
|
4314
4491
|
organizationRecipients?: Array<OrganizationRecipientDTO>;
|
|
4315
4492
|
createdAt: string;
|
|
@@ -4805,6 +4982,8 @@ export declare interface PreTenancyDocumentsApiInterface {
|
|
|
4805
4982
|
deletePreTenancyDocument(tenancyId: string, documentId: string, options?: any): AxiosPromise<{}>;
|
|
4806
4983
|
}
|
|
4807
4984
|
|
|
4985
|
+
export declare function previewClaimDeletion(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
4986
|
+
|
|
4808
4987
|
export declare class PricingApi extends BaseAPI implements PricingApiInterface {
|
|
4809
4988
|
getCashDepositAmount(ppm: number, options?: any): AxiosPromise<CashDepositDTO>;
|
|
4810
4989
|
getRepositFee(ppm: number, organizationId: string, headcount?: number, options?: any): AxiosPromise<RepositFeeDTO>;
|
|
@@ -4857,6 +5036,8 @@ export declare interface ProductDTO {
|
|
|
4857
5036
|
name: string;
|
|
4858
5037
|
}
|
|
4859
5038
|
|
|
5039
|
+
export declare function progressIntegrationRepositOffer(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
5040
|
+
|
|
4860
5041
|
export declare class PropertiesApi extends BaseAPI implements PropertiesApiInterface {
|
|
4861
5042
|
createProperty(createPropertyDTO: CreatePropertyDTO, options?: any): AxiosPromise<PropertyDTO>;
|
|
4862
5043
|
getPropertyById(id: string, options?: any): AxiosPromise<PropertyDTO>;
|
|
@@ -4927,10 +5108,13 @@ export declare enum QueueMessageDTOCronNameEnum {
|
|
|
4927
5108
|
DAILYCLAIMAUTORESPONDSUPPLIER = "DAILY_CLAIM_AUTO_RESPOND_SUPPLIER",
|
|
4928
5109
|
SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
|
|
4929
5110
|
DAILYFINALSCHEDULEDAUTOCHARGE = "DAILY_FINAL_SCHEDULED_AUTO_CHARGE",
|
|
5111
|
+
SCHEDULEDRETRYABLEPAYMENT = "SCHEDULED_RETRYABLE_PAYMENT",
|
|
4930
5112
|
DAILYORDERSCHEDULEDCHARGE = "DAILY_ORDER_SCHEDULED_CHARGE",
|
|
4931
5113
|
MONTHLYDIRECTCOMMISSION = "MONTHLY_DIRECT_COMMISSION",
|
|
5114
|
+
MONTHLYCLOSEDREPOSITREPORT = "MONTHLY_CLOSED_REPOSIT_REPORT",
|
|
4932
5115
|
WEEKLYLANDLORDTRANSFERREMINDER = "WEEKLY_LANDLORD_TRANSFER_REMINDER",
|
|
4933
5116
|
DAILYREPOSITENDINGREMINDER = "DAILY_REPOSIT_ENDING_REMINDER",
|
|
5117
|
+
DAILYTENANCYENDINGREMINDER = "DAILY_TENANCY_ENDING_REMINDER",
|
|
4934
5118
|
DAILYREPOSITCLOSINGREMINDER = "DAILY_REPOSIT_CLOSING_REMINDER",
|
|
4935
5119
|
DAILYREPOSITENDED = "DAILY_REPOSIT_ENDED",
|
|
4936
5120
|
DAILYREPOSITCLOSED = "DAILY_REPOSIT_CLOSED",
|
|
@@ -4971,12 +5155,12 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
4971
5155
|
TOPUPUPCOMING = "TOP_UP_UPCOMING",
|
|
4972
5156
|
AUTOCHARGE = "AUTO_CHARGE",
|
|
4973
5157
|
SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
|
|
5158
|
+
PROCESSSCHEDULEDRETRYABLEPAYMENT = "PROCESS_SCHEDULED_RETRYABLE_PAYMENT",
|
|
4974
5159
|
CHARGEORDERSCHEDULEDCHARGE = "CHARGE_ORDER_SCHEDULED_CHARGE",
|
|
4975
5160
|
AUTORESPONDTENANT = "AUTO_RESPOND_TENANT",
|
|
4976
5161
|
AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
|
|
4977
5162
|
PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
|
|
4978
5163
|
PROCESSOFFSESSIONPAYMENTATTEMPTFAILED = "PROCESS_OFF_SESSION_PAYMENT_ATTEMPT_FAILED",
|
|
4979
|
-
PROCESSOFFSESSIONPAYMENTSUCCEEDED = "PROCESS_OFF_SESSION_PAYMENT_SUCCEEDED",
|
|
4980
5164
|
PROCESSOFFSESSIONPAYMENTFAILED = "PROCESS_OFF_SESSION_PAYMENT_FAILED",
|
|
4981
5165
|
PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
|
|
4982
5166
|
PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
|
|
@@ -4991,6 +5175,7 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
4991
5175
|
ZIPDOCUMENTSFORCLAIM = "ZIP_DOCUMENTS_FOR_CLAIM",
|
|
4992
5176
|
GENERATEADRFORM = "GENERATE_ADR_FORM",
|
|
4993
5177
|
REPOSITENDINGREMINDER = "REPOSIT_ENDING_REMINDER",
|
|
5178
|
+
TENANCYENDINGREMINDER = "TENANCY_ENDING_REMINDER",
|
|
4994
5179
|
REPOSITCLOSINGREMINDER = "REPOSIT_CLOSING_REMINDER",
|
|
4995
5180
|
REPOSITENDED = "REPOSIT_ENDED",
|
|
4996
5181
|
REPOSITCLOSED = "REPOSIT_CLOSED",
|
|
@@ -5788,6 +5973,12 @@ export declare interface SeedRepositDTO {
|
|
|
5788
5973
|
newTenancy?: boolean;
|
|
5789
5974
|
organizationId: string;
|
|
5790
5975
|
userId: string;
|
|
5976
|
+
termType: SeedRepositDTOTermTypeEnum;
|
|
5977
|
+
}
|
|
5978
|
+
|
|
5979
|
+
export declare enum SeedRepositDTOTermTypeEnum {
|
|
5980
|
+
FIXED = "FIXED",
|
|
5981
|
+
PERIODIC = "PERIODIC"
|
|
5791
5982
|
}
|
|
5792
5983
|
|
|
5793
5984
|
export declare class SeedRepositsApi extends BaseAPI implements SeedRepositsApiInterface {
|
|
@@ -5920,6 +6111,8 @@ export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterfa
|
|
|
5920
6111
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
5921
6112
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
5922
6113
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6114
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6115
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5923
6116
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
5924
6117
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5925
6118
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5936,6 +6129,8 @@ export declare const TenanciesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5936
6129
|
getTenancyDocuments(id: string, options?: any): RequestArgs;
|
|
5937
6130
|
publish(id: string, options?: any): RequestArgs;
|
|
5938
6131
|
signAddendumForSupplier(id: string, options?: any): RequestArgs;
|
|
6132
|
+
tenantMoveOutInfo(token: string, options?: any): RequestArgs;
|
|
6133
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): RequestArgs;
|
|
5939
6134
|
tenantVacated(token: string, options?: any): RequestArgs;
|
|
5940
6135
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): RequestArgs;
|
|
5941
6136
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): RequestArgs;
|
|
@@ -5952,6 +6147,8 @@ export declare const TenanciesApiFactory: (configuration?: Configuration, basePa
|
|
|
5952
6147
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
5953
6148
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
5954
6149
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6150
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6151
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5955
6152
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
5956
6153
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5957
6154
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5968,6 +6165,8 @@ export declare const TenanciesApiFp: (configuration?: Configuration) => {
|
|
|
5968
6165
|
getTenancyDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
5969
6166
|
publish(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
5970
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>;
|
|
5971
6170
|
tenantVacated(token: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
5972
6171
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
5973
6172
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
@@ -5984,6 +6183,8 @@ export declare interface TenanciesApiInterface {
|
|
|
5984
6183
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
5985
6184
|
publish(id: string, options?: any): AxiosPromise<{}>;
|
|
5986
6185
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6186
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6187
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5987
6188
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
5988
6189
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5989
6190
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6067,6 +6268,7 @@ export declare interface TenancyDTO {
|
|
|
6067
6268
|
letOnly: boolean;
|
|
6068
6269
|
isNewTenancy?: boolean;
|
|
6069
6270
|
termType?: TenancyDTOTermTypeEnum;
|
|
6271
|
+
scheduledMoveOutDate?: string;
|
|
6070
6272
|
checkout?: CheckoutDTO;
|
|
6071
6273
|
completedAt?: string;
|
|
6072
6274
|
outcomeDeadline?: string;
|
|
@@ -6427,6 +6629,7 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6427
6629
|
letOnly: boolean;
|
|
6428
6630
|
isNewTenancy?: boolean;
|
|
6429
6631
|
termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
|
|
6632
|
+
scheduledMoveOutDate?: string;
|
|
6430
6633
|
checkout?: CheckoutWithClaimDTO;
|
|
6431
6634
|
completedAt?: string;
|
|
6432
6635
|
outcomeDeadline?: string;
|
|
@@ -6488,6 +6691,17 @@ export declare interface TenantGuarantorForOfferDTO {
|
|
|
6488
6691
|
mobileNumber?: string;
|
|
6489
6692
|
}
|
|
6490
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
|
+
|
|
6491
6705
|
export declare class TenantsApi extends BaseAPI implements TenantsApiInterface {
|
|
6492
6706
|
addTenant(tenancyId: string, addTenantRequestDTO: AddTenantRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6493
6707
|
deleteById(tenantId: string, tenancyId: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6513,6 +6727,23 @@ export declare interface TenantsApiInterface {
|
|
|
6513
6727
|
deleteById(tenantId: string, tenancyId: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6514
6728
|
}
|
|
6515
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
|
+
|
|
6516
6747
|
export declare function tenantVacated(token: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6517
6748
|
|
|
6518
6749
|
export declare class TermsApi extends BaseAPI implements TermsApiInterface {
|
|
@@ -6789,6 +7020,7 @@ export declare interface UpdateTenancyRequestDTO {
|
|
|
6789
7020
|
letOnly?: boolean;
|
|
6790
7021
|
isNewTenancy?: boolean;
|
|
6791
7022
|
termType?: UpdateTenancyRequestDTOTermTypeEnum;
|
|
7023
|
+
scheduledMoveOutDate?: string | null;
|
|
6792
7024
|
}
|
|
6793
7025
|
|
|
6794
7026
|
export declare enum UpdateTenancyRequestDTOTermTypeEnum {
|
|
@@ -6888,7 +7120,10 @@ export declare enum UserDTOInternalRolesEnum {
|
|
|
6888
7120
|
PAYMENTPLANDELETE = "PAYMENT_PLAN_DELETE",
|
|
6889
7121
|
INTERNALREPORTSALES = "INTERNAL_REPORT_SALES",
|
|
6890
7122
|
MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
|
|
6891
|
-
BULKIMPORT = "BULK_IMPORT"
|
|
7123
|
+
BULKIMPORT = "BULK_IMPORT",
|
|
7124
|
+
CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
|
|
7125
|
+
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE",
|
|
7126
|
+
CLAIMDELETE = "CLAIM_DELETE"
|
|
6892
7127
|
}
|
|
6893
7128
|
|
|
6894
7129
|
export declare enum UserDTOUserTypeIdEnum {
|