@reposit/api-client 6.65.0-2 → 6.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +11 -231
- package/dist/index.js +1 -1
- package/dist/index.mjs +1812 -2324
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -409,7 +409,6 @@ export declare interface BlockedTenantDTO {
|
|
|
409
409
|
export declare interface BulkImportDTO {
|
|
410
410
|
id: string;
|
|
411
411
|
name: string;
|
|
412
|
-
importType: BulkImportDTOImportTypeEnum;
|
|
413
412
|
organizationId: string;
|
|
414
413
|
organizationName?: string;
|
|
415
414
|
filePath?: string;
|
|
@@ -426,11 +425,6 @@ export declare interface BulkImportDTO {
|
|
|
426
425
|
updatedAt: string;
|
|
427
426
|
}
|
|
428
427
|
|
|
429
|
-
export declare enum BulkImportDTOImportTypeEnum {
|
|
430
|
-
REPOSIT = "REPOSIT",
|
|
431
|
-
PROPERTY = "PROPERTY"
|
|
432
|
-
}
|
|
433
|
-
|
|
434
428
|
export declare enum BulkImportDTOStatusEnum {
|
|
435
429
|
DRAFT = "DRAFT",
|
|
436
430
|
IMPORTING = "IMPORTING",
|
|
@@ -445,7 +439,7 @@ export declare class BulkImportsApi extends BaseAPI implements BulkImportsApiInt
|
|
|
445
439
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
446
440
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
447
441
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
448
|
-
getExampleCsv(
|
|
442
|
+
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
449
443
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
450
444
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
451
445
|
}
|
|
@@ -456,7 +450,7 @@ export declare const BulkImportsApiAxiosParamCreator: (configuration?: Configura
|
|
|
456
450
|
getAllBulkImports(options?: any): RequestArgs;
|
|
457
451
|
getBulkImportById(id: string, options?: any): RequestArgs;
|
|
458
452
|
getBulkImportDownloadUrl(id: string, options?: any): RequestArgs;
|
|
459
|
-
getExampleCsv(
|
|
453
|
+
getExampleCsv(options?: any): RequestArgs;
|
|
460
454
|
getFailedRowsCsv(id: string, options?: any): RequestArgs;
|
|
461
455
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): RequestArgs;
|
|
462
456
|
};
|
|
@@ -467,7 +461,7 @@ export declare const BulkImportsApiFactory: (configuration?: Configuration, base
|
|
|
467
461
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
468
462
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
469
463
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
470
|
-
getExampleCsv(
|
|
464
|
+
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
471
465
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
472
466
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
473
467
|
};
|
|
@@ -478,7 +472,7 @@ export declare const BulkImportsApiFp: (configuration?: Configuration) => {
|
|
|
478
472
|
getAllBulkImports(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkImportDTO>>;
|
|
479
473
|
getBulkImportById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
480
474
|
getBulkImportDownloadUrl(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadUrlDTO>;
|
|
481
|
-
getExampleCsv(
|
|
475
|
+
getExampleCsv(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
482
476
|
getFailedRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
483
477
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
484
478
|
};
|
|
@@ -489,13 +483,11 @@ export declare interface BulkImportsApiInterface {
|
|
|
489
483
|
getAllBulkImports(options?: any): AxiosPromise<Array<BulkImportDTO>>;
|
|
490
484
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
491
485
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
492
|
-
getExampleCsv(
|
|
486
|
+
getExampleCsv(options?: any): AxiosPromise<{}>;
|
|
493
487
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<{}>;
|
|
494
488
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
495
489
|
}
|
|
496
490
|
|
|
497
|
-
export declare function calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<MarketRentCalculatorResponseDTO>;
|
|
498
|
-
|
|
499
491
|
export declare interface CashDepositDetailsDTO {
|
|
500
492
|
amount: number;
|
|
501
493
|
PPM: number;
|
|
@@ -1109,12 +1101,10 @@ export declare class ClaimsApi extends BaseAPI implements ClaimsApiInterface {
|
|
|
1109
1101
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1110
1102
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1111
1103
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1112
|
-
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1113
1104
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1114
1105
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1115
1106
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1116
1107
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1117
|
-
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<Response>;
|
|
1118
1108
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1119
1109
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1120
1110
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1138,12 +1128,10 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1138
1128
|
createInsuranceClaimOnClaim(claimId: string, options?: any): RequestArgs;
|
|
1139
1129
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): RequestArgs;
|
|
1140
1130
|
declineClaim(claimId: string, options?: any): RequestArgs;
|
|
1141
|
-
deleteClaim(claimId: string, options?: any): RequestArgs;
|
|
1142
1131
|
findClaimById(claimId: string, options?: any): RequestArgs;
|
|
1143
1132
|
generateADRForm(claimId: string, options?: any): RequestArgs;
|
|
1144
1133
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): RequestArgs;
|
|
1145
1134
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): RequestArgs;
|
|
1146
|
-
previewClaimDeletion(claimId: string, options?: any): RequestArgs;
|
|
1147
1135
|
publishClaim(claimId: string, options?: any): RequestArgs;
|
|
1148
1136
|
readyForArbitrateClaim(claimId: string, options?: any): RequestArgs;
|
|
1149
1137
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): RequestArgs;
|
|
@@ -1167,12 +1155,10 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
1167
1155
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1168
1156
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1169
1157
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1170
|
-
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1171
1158
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1172
1159
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1173
1160
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1174
1161
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1175
|
-
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<Response>;
|
|
1176
1162
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1177
1163
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1178
1164
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1196,12 +1182,10 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
1196
1182
|
createInsuranceClaimOnClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1197
1183
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1198
1184
|
declineClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1199
|
-
deleteClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1200
1185
|
findClaimById(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1201
1186
|
generateADRForm(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1202
1187
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchClaimResultsDTO>;
|
|
1203
1188
|
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>;
|
|
1205
1189
|
publishClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1206
1190
|
readyForArbitrateClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1207
1191
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1225,12 +1209,10 @@ export declare interface ClaimsApiInterface {
|
|
|
1225
1209
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1226
1210
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1227
1211
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1228
|
-
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1229
1212
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1230
1213
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1231
1214
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1232
1215
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1233
|
-
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<{}>;
|
|
1234
1216
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1235
1217
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1236
1218
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1564,15 +1546,9 @@ export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDT
|
|
|
1564
1546
|
|
|
1565
1547
|
export declare interface CreateBulkImportDTO {
|
|
1566
1548
|
name: string;
|
|
1567
|
-
importType: CreateBulkImportDTOImportTypeEnum;
|
|
1568
1549
|
organizationId: string;
|
|
1569
1550
|
}
|
|
1570
1551
|
|
|
1571
|
-
export declare enum CreateBulkImportDTOImportTypeEnum {
|
|
1572
|
-
REPOSIT = "REPOSIT",
|
|
1573
|
-
PROPERTY = "PROPERTY"
|
|
1574
|
-
}
|
|
1575
|
-
|
|
1576
1552
|
export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
|
|
1577
1553
|
|
|
1578
1554
|
export declare function createClaim(createClaimDTO: CreateClaimDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -1853,56 +1829,6 @@ export declare enum CreateInsuredItemDTOTypeEnum {
|
|
|
1853
1829
|
PROPERTY = "PROPERTY"
|
|
1854
1830
|
}
|
|
1855
1831
|
|
|
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
|
-
|
|
1906
1832
|
export declare interface CreateLandlordDTO {
|
|
1907
1833
|
firstName?: string;
|
|
1908
1834
|
lastName?: string;
|
|
@@ -2139,11 +2065,6 @@ export declare interface CreateRepositDTO {
|
|
|
2139
2065
|
draft?: boolean;
|
|
2140
2066
|
}
|
|
2141
2067
|
|
|
2142
|
-
export declare interface CreateRepositOfferResponseDTO {
|
|
2143
|
-
success: boolean;
|
|
2144
|
-
id: string;
|
|
2145
|
-
}
|
|
2146
|
-
|
|
2147
2068
|
export declare function createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TemporaryUploadUrlDTO>;
|
|
2148
2069
|
|
|
2149
2070
|
export declare interface CreateTemporaryUploadUrlDTO {
|
|
@@ -2157,7 +2078,7 @@ export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequ
|
|
|
2157
2078
|
export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
|
|
2158
2079
|
|
|
2159
2080
|
export declare interface CreateTenancyExpiryRequestDTO {
|
|
2160
|
-
endDate
|
|
2081
|
+
endDate: string;
|
|
2161
2082
|
}
|
|
2162
2083
|
|
|
2163
2084
|
export declare function createTenancyInvite(tenancyId: string, createTenancyInviteDTO: CreateTenancyInviteDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -2304,8 +2225,6 @@ export declare function deleteBankAccount(organizationId: string, id: string, co
|
|
|
2304
2225
|
|
|
2305
2226
|
export declare function deleteById(tenantId: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
|
|
2306
2227
|
|
|
2307
|
-
export declare function deleteClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2308
|
-
|
|
2309
2228
|
export declare function deleteClaimDocument(claimId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2310
2229
|
|
|
2311
2230
|
export declare function deleteClaimItem(claimId: string, claimItemId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -2322,8 +2241,6 @@ export declare function deleteEvidenceChaserItemResponseDocument(documentId: str
|
|
|
2322
2241
|
|
|
2323
2242
|
export declare function deleteGuarantor(tenancyUserId: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantDTO>;
|
|
2324
2243
|
|
|
2325
|
-
export declare function deleteIntegrationRepositOffer(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2326
|
-
|
|
2327
2244
|
export declare function deleteInvite(organizationInviteId: string, organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2328
2245
|
|
|
2329
2246
|
export declare function deleteItem(id: string, itemId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<InsuredItemDTO>>;
|
|
@@ -2946,7 +2863,7 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
|
|
|
2946
2863
|
|
|
2947
2864
|
export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
|
|
2948
2865
|
|
|
2949
|
-
export declare function getExampleCsv(
|
|
2866
|
+
export declare function getExampleCsv(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2950
2867
|
|
|
2951
2868
|
export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2952
2869
|
|
|
@@ -2960,22 +2877,6 @@ export declare function getIntegrators(configuration?: Configuration, axios?: Ax
|
|
|
2960
2877
|
|
|
2961
2878
|
export declare function getLandlordById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<LandlordDTO>;
|
|
2962
2879
|
|
|
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
|
-
|
|
2979
2880
|
export declare function getMyDepositsAuthorizeUrl(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<MyDepositsAuthorizeResponseDTO>;
|
|
2980
2881
|
|
|
2981
2882
|
export declare function getMyDepositsCompanyOffices(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -3194,36 +3095,6 @@ export declare interface IntegrationPartnerDTO {
|
|
|
3194
3095
|
notified: boolean;
|
|
3195
3096
|
}
|
|
3196
3097
|
|
|
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
|
-
|
|
3227
3098
|
export declare interface IntegrationWebhookDTO {
|
|
3228
3099
|
webhookUrl: string;
|
|
3229
3100
|
}
|
|
@@ -3423,40 +3294,6 @@ export declare interface LoginDTO {
|
|
|
3423
3294
|
password: string;
|
|
3424
3295
|
}
|
|
3425
3296
|
|
|
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
|
-
|
|
3460
3297
|
export declare function me(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CurrentUserInfoDTO>;
|
|
3461
3298
|
|
|
3462
3299
|
export declare class MessageQueueApi extends BaseAPI implements MessageQueueApiInterface {
|
|
@@ -3555,7 +3392,6 @@ export declare interface MyDepositsOnboardingStatusResponseDTO {
|
|
|
3555
3392
|
companyName?: string;
|
|
3556
3393
|
officeName?: string;
|
|
3557
3394
|
accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
|
|
3558
|
-
failureReason?: string;
|
|
3559
3395
|
}
|
|
3560
3396
|
|
|
3561
3397
|
export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
|
|
@@ -3567,8 +3403,7 @@ export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
|
|
|
3567
3403
|
export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
|
|
3568
3404
|
NOTCONNECTED = "NOT_CONNECTED",
|
|
3569
3405
|
CONNECTED = "CONNECTED",
|
|
3570
|
-
COMPLETE = "COMPLETE"
|
|
3571
|
-
FAILED = "FAILED"
|
|
3406
|
+
COMPLETE = "COMPLETE"
|
|
3572
3407
|
}
|
|
3573
3408
|
|
|
3574
3409
|
export declare class NetPromoterScoreApi extends BaseAPI implements NetPromoterScoreApiInterface {
|
|
@@ -4305,7 +4140,6 @@ export declare interface OrganizationSettingsDTO {
|
|
|
4305
4140
|
autoExtendOutcomeDeadlineEnabled?: boolean;
|
|
4306
4141
|
maximumPolicyCover?: OrganizationSettingsDTOMaximumPolicyCoverEnum;
|
|
4307
4142
|
offerRepositEnabled?: boolean;
|
|
4308
|
-
marketRentCalculatorEnabled?: boolean;
|
|
4309
4143
|
inventoryChaserDisabled?: boolean;
|
|
4310
4144
|
minimumFeeDisabled?: boolean;
|
|
4311
4145
|
pendingSwitchRemindersDisabled?: boolean;
|
|
@@ -4982,8 +4816,6 @@ export declare interface PreTenancyDocumentsApiInterface {
|
|
|
4982
4816
|
deletePreTenancyDocument(tenancyId: string, documentId: string, options?: any): AxiosPromise<{}>;
|
|
4983
4817
|
}
|
|
4984
4818
|
|
|
4985
|
-
export declare function previewClaimDeletion(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
4986
|
-
|
|
4987
4819
|
export declare class PricingApi extends BaseAPI implements PricingApiInterface {
|
|
4988
4820
|
getCashDepositAmount(ppm: number, options?: any): AxiosPromise<CashDepositDTO>;
|
|
4989
4821
|
getRepositFee(ppm: number, organizationId: string, headcount?: number, options?: any): AxiosPromise<RepositFeeDTO>;
|
|
@@ -5036,8 +4868,6 @@ export declare interface ProductDTO {
|
|
|
5036
4868
|
name: string;
|
|
5037
4869
|
}
|
|
5038
4870
|
|
|
5039
|
-
export declare function progressIntegrationRepositOffer(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
5040
|
-
|
|
5041
4871
|
export declare class PropertiesApi extends BaseAPI implements PropertiesApiInterface {
|
|
5042
4872
|
createProperty(createPropertyDTO: CreatePropertyDTO, options?: any): AxiosPromise<PropertyDTO>;
|
|
5043
4873
|
getPropertyById(id: string, options?: any): AxiosPromise<PropertyDTO>;
|
|
@@ -5108,13 +4938,11 @@ export declare enum QueueMessageDTOCronNameEnum {
|
|
|
5108
4938
|
DAILYCLAIMAUTORESPONDSUPPLIER = "DAILY_CLAIM_AUTO_RESPOND_SUPPLIER",
|
|
5109
4939
|
SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
|
|
5110
4940
|
DAILYFINALSCHEDULEDAUTOCHARGE = "DAILY_FINAL_SCHEDULED_AUTO_CHARGE",
|
|
5111
|
-
|
|
4941
|
+
DAILYSCHEDULEDRETRYABLEPAYMENT = "DAILY_SCHEDULED_RETRYABLE_PAYMENT",
|
|
5112
4942
|
DAILYORDERSCHEDULEDCHARGE = "DAILY_ORDER_SCHEDULED_CHARGE",
|
|
5113
4943
|
MONTHLYDIRECTCOMMISSION = "MONTHLY_DIRECT_COMMISSION",
|
|
5114
|
-
MONTHLYCLOSEDREPOSITREPORT = "MONTHLY_CLOSED_REPOSIT_REPORT",
|
|
5115
4944
|
WEEKLYLANDLORDTRANSFERREMINDER = "WEEKLY_LANDLORD_TRANSFER_REMINDER",
|
|
5116
4945
|
DAILYREPOSITENDINGREMINDER = "DAILY_REPOSIT_ENDING_REMINDER",
|
|
5117
|
-
DAILYTENANCYENDINGREMINDER = "DAILY_TENANCY_ENDING_REMINDER",
|
|
5118
4946
|
DAILYREPOSITCLOSINGREMINDER = "DAILY_REPOSIT_CLOSING_REMINDER",
|
|
5119
4947
|
DAILYREPOSITENDED = "DAILY_REPOSIT_ENDED",
|
|
5120
4948
|
DAILYREPOSITCLOSED = "DAILY_REPOSIT_CLOSED",
|
|
@@ -5161,6 +4989,7 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
5161
4989
|
AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
|
|
5162
4990
|
PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
|
|
5163
4991
|
PROCESSOFFSESSIONPAYMENTATTEMPTFAILED = "PROCESS_OFF_SESSION_PAYMENT_ATTEMPT_FAILED",
|
|
4992
|
+
PROCESSOFFSESSIONPAYMENTSUCCEEDED = "PROCESS_OFF_SESSION_PAYMENT_SUCCEEDED",
|
|
5164
4993
|
PROCESSOFFSESSIONPAYMENTFAILED = "PROCESS_OFF_SESSION_PAYMENT_FAILED",
|
|
5165
4994
|
PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
|
|
5166
4995
|
PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
|
|
@@ -5175,7 +5004,6 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
5175
5004
|
ZIPDOCUMENTSFORCLAIM = "ZIP_DOCUMENTS_FOR_CLAIM",
|
|
5176
5005
|
GENERATEADRFORM = "GENERATE_ADR_FORM",
|
|
5177
5006
|
REPOSITENDINGREMINDER = "REPOSIT_ENDING_REMINDER",
|
|
5178
|
-
TENANCYENDINGREMINDER = "TENANCY_ENDING_REMINDER",
|
|
5179
5007
|
REPOSITCLOSINGREMINDER = "REPOSIT_CLOSING_REMINDER",
|
|
5180
5008
|
REPOSITENDED = "REPOSIT_ENDED",
|
|
5181
5009
|
REPOSITCLOSED = "REPOSIT_CLOSED",
|
|
@@ -5973,12 +5801,6 @@ export declare interface SeedRepositDTO {
|
|
|
5973
5801
|
newTenancy?: boolean;
|
|
5974
5802
|
organizationId: string;
|
|
5975
5803
|
userId: string;
|
|
5976
|
-
termType: SeedRepositDTOTermTypeEnum;
|
|
5977
|
-
}
|
|
5978
|
-
|
|
5979
|
-
export declare enum SeedRepositDTOTermTypeEnum {
|
|
5980
|
-
FIXED = "FIXED",
|
|
5981
|
-
PERIODIC = "PERIODIC"
|
|
5982
5804
|
}
|
|
5983
5805
|
|
|
5984
5806
|
export declare class SeedRepositsApi extends BaseAPI implements SeedRepositsApiInterface {
|
|
@@ -6111,8 +5933,6 @@ export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterfa
|
|
|
6111
5933
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
6112
5934
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
6113
5935
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6114
|
-
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6115
|
-
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
6116
5936
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
6117
5937
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6118
5938
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6129,8 +5949,6 @@ export declare const TenanciesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
6129
5949
|
getTenancyDocuments(id: string, options?: any): RequestArgs;
|
|
6130
5950
|
publish(id: string, options?: any): RequestArgs;
|
|
6131
5951
|
signAddendumForSupplier(id: string, options?: any): RequestArgs;
|
|
6132
|
-
tenantMoveOutInfo(token: string, options?: any): RequestArgs;
|
|
6133
|
-
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): RequestArgs;
|
|
6134
5952
|
tenantVacated(token: string, options?: any): RequestArgs;
|
|
6135
5953
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): RequestArgs;
|
|
6136
5954
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): RequestArgs;
|
|
@@ -6147,8 +5965,6 @@ export declare const TenanciesApiFactory: (configuration?: Configuration, basePa
|
|
|
6147
5965
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
6148
5966
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
6149
5967
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6150
|
-
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6151
|
-
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
6152
5968
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
6153
5969
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6154
5970
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6165,8 +5981,6 @@ export declare const TenanciesApiFp: (configuration?: Configuration) => {
|
|
|
6165
5981
|
getTenancyDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
6166
5982
|
publish(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
6167
5983
|
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>;
|
|
6170
5984
|
tenantVacated(token: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
6171
5985
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
6172
5986
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
@@ -6183,8 +5997,6 @@ export declare interface TenanciesApiInterface {
|
|
|
6183
5997
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
6184
5998
|
publish(id: string, options?: any): AxiosPromise<{}>;
|
|
6185
5999
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6186
|
-
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6187
|
-
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
6188
6000
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
6189
6001
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6190
6002
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6268,7 +6080,6 @@ export declare interface TenancyDTO {
|
|
|
6268
6080
|
letOnly: boolean;
|
|
6269
6081
|
isNewTenancy?: boolean;
|
|
6270
6082
|
termType?: TenancyDTOTermTypeEnum;
|
|
6271
|
-
scheduledMoveOutDate?: string;
|
|
6272
6083
|
checkout?: CheckoutDTO;
|
|
6273
6084
|
completedAt?: string;
|
|
6274
6085
|
outcomeDeadline?: string;
|
|
@@ -6629,7 +6440,6 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6629
6440
|
letOnly: boolean;
|
|
6630
6441
|
isNewTenancy?: boolean;
|
|
6631
6442
|
termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
|
|
6632
|
-
scheduledMoveOutDate?: string;
|
|
6633
6443
|
checkout?: CheckoutWithClaimDTO;
|
|
6634
6444
|
completedAt?: string;
|
|
6635
6445
|
outcomeDeadline?: string;
|
|
@@ -6691,17 +6501,6 @@ export declare interface TenantGuarantorForOfferDTO {
|
|
|
6691
6501
|
mobileNumber?: string;
|
|
6692
6502
|
}
|
|
6693
6503
|
|
|
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
|
-
|
|
6705
6504
|
export declare class TenantsApi extends BaseAPI implements TenantsApiInterface {
|
|
6706
6505
|
addTenant(tenancyId: string, addTenantRequestDTO: AddTenantRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6707
6506
|
deleteById(tenantId: string, tenancyId: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6727,23 +6526,6 @@ export declare interface TenantsApiInterface {
|
|
|
6727
6526
|
deleteById(tenantId: string, tenancyId: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6728
6527
|
}
|
|
6729
6528
|
|
|
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
|
-
|
|
6747
6529
|
export declare function tenantVacated(token: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6748
6530
|
|
|
6749
6531
|
export declare class TermsApi extends BaseAPI implements TermsApiInterface {
|
|
@@ -7020,7 +6802,6 @@ export declare interface UpdateTenancyRequestDTO {
|
|
|
7020
6802
|
letOnly?: boolean;
|
|
7021
6803
|
isNewTenancy?: boolean;
|
|
7022
6804
|
termType?: UpdateTenancyRequestDTOTermTypeEnum;
|
|
7023
|
-
scheduledMoveOutDate?: string | null;
|
|
7024
6805
|
}
|
|
7025
6806
|
|
|
7026
6807
|
export declare enum UpdateTenancyRequestDTOTermTypeEnum {
|
|
@@ -7122,8 +6903,7 @@ export declare enum UserDTOInternalRolesEnum {
|
|
|
7122
6903
|
MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
|
|
7123
6904
|
BULKIMPORT = "BULK_IMPORT",
|
|
7124
6905
|
CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
|
|
7125
|
-
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE"
|
|
7126
|
-
CLAIMDELETE = "CLAIM_DELETE"
|
|
6906
|
+
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE"
|
|
7127
6907
|
}
|
|
7128
6908
|
|
|
7129
6909
|
export declare enum UserDTOUserTypeIdEnum {
|