@reposit/api-client 6.65.0 → 6.66.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 +263 -13
- package/dist/index.js +1 -1
- package/dist/index.mjs +2324 -1812
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -409,7 +409,8 @@ export declare interface BlockedTenantDTO {
|
|
|
409
409
|
export declare interface BulkImportDTO {
|
|
410
410
|
id: string;
|
|
411
411
|
name: string;
|
|
412
|
-
|
|
412
|
+
importType: BulkImportDTOImportTypeEnum;
|
|
413
|
+
organizationId?: string | null;
|
|
413
414
|
organizationName?: string;
|
|
414
415
|
filePath?: string;
|
|
415
416
|
status: BulkImportDTOStatusEnum;
|
|
@@ -425,6 +426,12 @@ export declare interface BulkImportDTO {
|
|
|
425
426
|
updatedAt: string;
|
|
426
427
|
}
|
|
427
428
|
|
|
429
|
+
export declare enum BulkImportDTOImportTypeEnum {
|
|
430
|
+
REPOSIT = "REPOSIT",
|
|
431
|
+
PROPERTY = "PROPERTY",
|
|
432
|
+
BANKTRANSACTION = "BANK_TRANSACTION"
|
|
433
|
+
}
|
|
434
|
+
|
|
428
435
|
export declare enum BulkImportDTOStatusEnum {
|
|
429
436
|
DRAFT = "DRAFT",
|
|
430
437
|
IMPORTING = "IMPORTING",
|
|
@@ -439,7 +446,7 @@ export declare class BulkImportsApi extends BaseAPI implements BulkImportsApiInt
|
|
|
439
446
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
440
447
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
441
448
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
442
|
-
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
449
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): AxiosPromise<Response>;
|
|
443
450
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
444
451
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
445
452
|
}
|
|
@@ -450,7 +457,7 @@ export declare const BulkImportsApiAxiosParamCreator: (configuration?: Configura
|
|
|
450
457
|
getAllBulkImports(options?: any): RequestArgs;
|
|
451
458
|
getBulkImportById(id: string, options?: any): RequestArgs;
|
|
452
459
|
getBulkImportDownloadUrl(id: string, options?: any): RequestArgs;
|
|
453
|
-
getExampleCsv(options?: any): RequestArgs;
|
|
460
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): RequestArgs;
|
|
454
461
|
getFailedRowsCsv(id: string, options?: any): RequestArgs;
|
|
455
462
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): RequestArgs;
|
|
456
463
|
};
|
|
@@ -461,7 +468,7 @@ export declare const BulkImportsApiFactory: (configuration?: Configuration, base
|
|
|
461
468
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
462
469
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
463
470
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
464
|
-
getExampleCsv(options?: any): AxiosPromise<Response>;
|
|
471
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): AxiosPromise<Response>;
|
|
465
472
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
466
473
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
467
474
|
};
|
|
@@ -472,7 +479,7 @@ export declare const BulkImportsApiFp: (configuration?: Configuration) => {
|
|
|
472
479
|
getAllBulkImports(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkImportDTO>>;
|
|
473
480
|
getBulkImportById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
474
481
|
getBulkImportDownloadUrl(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadUrlDTO>;
|
|
475
|
-
getExampleCsv(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
482
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
476
483
|
getFailedRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
477
484
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
478
485
|
};
|
|
@@ -483,11 +490,13 @@ export declare interface BulkImportsApiInterface {
|
|
|
483
490
|
getAllBulkImports(options?: any): AxiosPromise<Array<BulkImportDTO>>;
|
|
484
491
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
485
492
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
486
|
-
getExampleCsv(options?: any): AxiosPromise<{}>;
|
|
493
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): AxiosPromise<{}>;
|
|
487
494
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<{}>;
|
|
488
495
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
489
496
|
}
|
|
490
497
|
|
|
498
|
+
export declare function calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<MarketRentCalculatorResponseDTO>;
|
|
499
|
+
|
|
491
500
|
export declare interface CashDepositDetailsDTO {
|
|
492
501
|
amount: number;
|
|
493
502
|
PPM: number;
|
|
@@ -659,6 +668,34 @@ export declare enum ClaimActivityType {
|
|
|
659
668
|
CHECKOUTINVENTORYREPORT = "TENANT_VIEWED_CHECKOUT_INVENTORY_REPORT"
|
|
660
669
|
}
|
|
661
670
|
|
|
671
|
+
export declare interface ClaimDeletionGraphDto {
|
|
672
|
+
claimId: string;
|
|
673
|
+
arbitrationIds: Array<string>;
|
|
674
|
+
evidenceChaserIds: Array<string>;
|
|
675
|
+
hasTenantResponse: boolean;
|
|
676
|
+
orderIds: Array<string>;
|
|
677
|
+
publishedAt?: Date;
|
|
678
|
+
statusId: string;
|
|
679
|
+
claimItemIds: Array<string>;
|
|
680
|
+
claimItemDocumentIds: Array<string>;
|
|
681
|
+
claimItemProposalIds: Array<string>;
|
|
682
|
+
eventIds: Array<string>;
|
|
683
|
+
claimActivityIds: Array<string>;
|
|
684
|
+
claimProposalIds: Array<string>;
|
|
685
|
+
claimDocumentIds: Array<string>;
|
|
686
|
+
claimPolicyIds: Array<string>;
|
|
687
|
+
claimRespondentIds: Array<string>;
|
|
688
|
+
claimStatusIds: Array<string>;
|
|
689
|
+
ivrCallIds: Array<string>;
|
|
690
|
+
ivrCallActivityIds: Array<string>;
|
|
691
|
+
ivrCallClaimIds: Array<string>;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
export declare interface ClaimDeletionPreviewDto {
|
|
695
|
+
blockingReasons: Array<string>;
|
|
696
|
+
deletionGraph: ClaimDeletionGraphDto;
|
|
697
|
+
}
|
|
698
|
+
|
|
662
699
|
export declare interface ClaimDocumentDTO {
|
|
663
700
|
document: DocumentDTO;
|
|
664
701
|
id: string;
|
|
@@ -1101,10 +1138,12 @@ export declare class ClaimsApi extends BaseAPI implements ClaimsApiInterface {
|
|
|
1101
1138
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1102
1139
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1103
1140
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1141
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1104
1142
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1105
1143
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1106
1144
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1107
1145
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1146
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1108
1147
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1109
1148
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1110
1149
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1128,10 +1167,12 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1128
1167
|
createInsuranceClaimOnClaim(claimId: string, options?: any): RequestArgs;
|
|
1129
1168
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): RequestArgs;
|
|
1130
1169
|
declineClaim(claimId: string, options?: any): RequestArgs;
|
|
1170
|
+
deleteClaim(claimId: string, options?: any): RequestArgs;
|
|
1131
1171
|
findClaimById(claimId: string, options?: any): RequestArgs;
|
|
1132
1172
|
generateADRForm(claimId: string, options?: any): RequestArgs;
|
|
1133
1173
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): RequestArgs;
|
|
1134
1174
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): RequestArgs;
|
|
1175
|
+
previewClaimDeletion(claimId: string, options?: any): RequestArgs;
|
|
1135
1176
|
publishClaim(claimId: string, options?: any): RequestArgs;
|
|
1136
1177
|
readyForArbitrateClaim(claimId: string, options?: any): RequestArgs;
|
|
1137
1178
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): RequestArgs;
|
|
@@ -1155,10 +1196,12 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
1155
1196
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1156
1197
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1157
1198
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1199
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1158
1200
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1159
1201
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1160
1202
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1161
1203
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1204
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1162
1205
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1163
1206
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1164
1207
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1182,10 +1225,12 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
1182
1225
|
createInsuranceClaimOnClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1183
1226
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1184
1227
|
declineClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1228
|
+
deleteClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1185
1229
|
findClaimById(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1186
1230
|
generateADRForm(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1187
1231
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchClaimResultsDTO>;
|
|
1188
1232
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1233
|
+
previewClaimDeletion(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1189
1234
|
publishClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1190
1235
|
readyForArbitrateClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1191
1236
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1209,10 +1254,12 @@ export declare interface ClaimsApiInterface {
|
|
|
1209
1254
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1210
1255
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1211
1256
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1257
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1212
1258
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1213
1259
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1214
1260
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1215
1261
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1262
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1216
1263
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1217
1264
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1218
1265
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1546,7 +1593,14 @@ export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDT
|
|
|
1546
1593
|
|
|
1547
1594
|
export declare interface CreateBulkImportDTO {
|
|
1548
1595
|
name: string;
|
|
1549
|
-
|
|
1596
|
+
importType: CreateBulkImportDTOImportTypeEnum;
|
|
1597
|
+
organizationId?: string | null;
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
export declare enum CreateBulkImportDTOImportTypeEnum {
|
|
1601
|
+
REPOSIT = "REPOSIT",
|
|
1602
|
+
PROPERTY = "PROPERTY",
|
|
1603
|
+
BANKTRANSACTION = "BANK_TRANSACTION"
|
|
1550
1604
|
}
|
|
1551
1605
|
|
|
1552
1606
|
export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
|
|
@@ -1829,6 +1883,56 @@ export declare enum CreateInsuredItemDTOTypeEnum {
|
|
|
1829
1883
|
PROPERTY = "PROPERTY"
|
|
1830
1884
|
}
|
|
1831
1885
|
|
|
1886
|
+
export declare function createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CreateRepositOfferResponseDTO>;
|
|
1887
|
+
|
|
1888
|
+
export declare interface CreateIntegrationRepositOfferAddressDTO {
|
|
1889
|
+
line1: string;
|
|
1890
|
+
line2?: string;
|
|
1891
|
+
town: string;
|
|
1892
|
+
postcode: string;
|
|
1893
|
+
country: string;
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
export declare interface CreateIntegrationRepositOfferDTO {
|
|
1897
|
+
address: CreateIntegrationRepositOfferAddressDTO;
|
|
1898
|
+
landlord: CreateIntegrationRepositOfferLandlordDTO;
|
|
1899
|
+
agentId: string;
|
|
1900
|
+
ppm: number;
|
|
1901
|
+
tenants: Array<CreateIntegrationRepositOfferTenantDTO>;
|
|
1902
|
+
startDate: string;
|
|
1903
|
+
letOnly: boolean;
|
|
1904
|
+
cashDepositAmount?: number;
|
|
1905
|
+
tenantsReferenceStatus?: CreateIntegrationRepositOfferDTOTenantsReferenceStatusEnum;
|
|
1906
|
+
endDate?: string;
|
|
1907
|
+
referrerId?: string;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
export declare enum CreateIntegrationRepositOfferDTOTenantsReferenceStatusEnum {
|
|
1911
|
+
PASSED = "PASSED",
|
|
1912
|
+
FAILED = "FAILED"
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
export declare interface CreateIntegrationRepositOfferGuarantorDTO {
|
|
1916
|
+
firstName: string;
|
|
1917
|
+
lastName: string;
|
|
1918
|
+
email: string;
|
|
1919
|
+
mobileNumber?: string;
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
export declare interface CreateIntegrationRepositOfferLandlordDTO {
|
|
1923
|
+
firstName: string;
|
|
1924
|
+
lastName: string;
|
|
1925
|
+
email: string;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
export declare interface CreateIntegrationRepositOfferTenantDTO {
|
|
1929
|
+
firstName: string;
|
|
1930
|
+
lastName: string;
|
|
1931
|
+
email: string;
|
|
1932
|
+
mobileNumber?: string;
|
|
1933
|
+
guarantor?: CreateIntegrationRepositOfferGuarantorDTO;
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1832
1936
|
export declare interface CreateLandlordDTO {
|
|
1833
1937
|
firstName?: string;
|
|
1834
1938
|
lastName?: string;
|
|
@@ -2065,6 +2169,11 @@ export declare interface CreateRepositDTO {
|
|
|
2065
2169
|
draft?: boolean;
|
|
2066
2170
|
}
|
|
2067
2171
|
|
|
2172
|
+
export declare interface CreateRepositOfferResponseDTO {
|
|
2173
|
+
success: boolean;
|
|
2174
|
+
id: string;
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2068
2177
|
export declare function createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TemporaryUploadUrlDTO>;
|
|
2069
2178
|
|
|
2070
2179
|
export declare interface CreateTemporaryUploadUrlDTO {
|
|
@@ -2078,7 +2187,7 @@ export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequ
|
|
|
2078
2187
|
export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
|
|
2079
2188
|
|
|
2080
2189
|
export declare interface CreateTenancyExpiryRequestDTO {
|
|
2081
|
-
endDate
|
|
2190
|
+
endDate?: string;
|
|
2082
2191
|
}
|
|
2083
2192
|
|
|
2084
2193
|
export declare function createTenancyInvite(tenancyId: string, createTenancyInviteDTO: CreateTenancyInviteDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -2225,6 +2334,8 @@ export declare function deleteBankAccount(organizationId: string, id: string, co
|
|
|
2225
2334
|
|
|
2226
2335
|
export declare function deleteById(tenantId: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
|
|
2227
2336
|
|
|
2337
|
+
export declare function deleteClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2338
|
+
|
|
2228
2339
|
export declare function deleteClaimDocument(claimId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2229
2340
|
|
|
2230
2341
|
export declare function deleteClaimItem(claimId: string, claimItemId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -2241,6 +2352,8 @@ export declare function deleteEvidenceChaserItemResponseDocument(documentId: str
|
|
|
2241
2352
|
|
|
2242
2353
|
export declare function deleteGuarantor(tenancyUserId: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantDTO>;
|
|
2243
2354
|
|
|
2355
|
+
export declare function deleteIntegrationRepositOffer(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2356
|
+
|
|
2244
2357
|
export declare function deleteInvite(organizationInviteId: string, organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2245
2358
|
|
|
2246
2359
|
export declare function deleteItem(id: string, itemId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<InsuredItemDTO>>;
|
|
@@ -2863,7 +2976,7 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
|
|
|
2863
2976
|
|
|
2864
2977
|
export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
|
|
2865
2978
|
|
|
2866
|
-
export declare function getExampleCsv(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2979
|
+
export declare function getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2867
2980
|
|
|
2868
2981
|
export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2869
2982
|
|
|
@@ -2877,6 +2990,22 @@ export declare function getIntegrators(configuration?: Configuration, axios?: Ax
|
|
|
2877
2990
|
|
|
2878
2991
|
export declare function getLandlordById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<LandlordDTO>;
|
|
2879
2992
|
|
|
2993
|
+
export declare interface GetMarketRentCalculationDTO {
|
|
2994
|
+
organizationId: string;
|
|
2995
|
+
postcode: string;
|
|
2996
|
+
numberOfBedrooms: number;
|
|
2997
|
+
propertyType: GetMarketRentCalculationDTOPropertyTypeEnum;
|
|
2998
|
+
currentRent: number;
|
|
2999
|
+
startDateOfCurrentRent: string;
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
export declare enum GetMarketRentCalculationDTOPropertyTypeEnum {
|
|
3003
|
+
Terraced = "terraced",
|
|
3004
|
+
Semi = "semi",
|
|
3005
|
+
Detached = "detached",
|
|
3006
|
+
Flat = "flat"
|
|
3007
|
+
}
|
|
3008
|
+
|
|
2880
3009
|
export declare function getMyDepositsAuthorizeUrl(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<MyDepositsAuthorizeResponseDTO>;
|
|
2881
3010
|
|
|
2882
3011
|
export declare function getMyDepositsCompanyOffices(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -3095,6 +3224,36 @@ export declare interface IntegrationPartnerDTO {
|
|
|
3095
3224
|
notified: boolean;
|
|
3096
3225
|
}
|
|
3097
3226
|
|
|
3227
|
+
export declare class IntegrationRepositOffersApi extends BaseAPI implements IntegrationRepositOffersApiInterface {
|
|
3228
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): AxiosPromise<CreateRepositOfferResponseDTO>;
|
|
3229
|
+
deleteIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3230
|
+
progressIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3231
|
+
}
|
|
3232
|
+
|
|
3233
|
+
export declare const IntegrationRepositOffersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3234
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): RequestArgs;
|
|
3235
|
+
deleteIntegrationRepositOffer(id: string, options?: any): RequestArgs;
|
|
3236
|
+
progressIntegrationRepositOffer(id: string, options?: any): RequestArgs;
|
|
3237
|
+
};
|
|
3238
|
+
|
|
3239
|
+
export declare const IntegrationRepositOffersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3240
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): AxiosPromise<CreateRepositOfferResponseDTO>;
|
|
3241
|
+
deleteIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3242
|
+
progressIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3243
|
+
};
|
|
3244
|
+
|
|
3245
|
+
export declare const IntegrationRepositOffersApiFp: (configuration?: Configuration) => {
|
|
3246
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateRepositOfferResponseDTO>;
|
|
3247
|
+
deleteIntegrationRepositOffer(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3248
|
+
progressIntegrationRepositOffer(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3249
|
+
};
|
|
3250
|
+
|
|
3251
|
+
export declare interface IntegrationRepositOffersApiInterface {
|
|
3252
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): AxiosPromise<CreateRepositOfferResponseDTO>;
|
|
3253
|
+
deleteIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3254
|
+
progressIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3255
|
+
}
|
|
3256
|
+
|
|
3098
3257
|
export declare interface IntegrationWebhookDTO {
|
|
3099
3258
|
webhookUrl: string;
|
|
3100
3259
|
}
|
|
@@ -3294,6 +3453,40 @@ export declare interface LoginDTO {
|
|
|
3294
3453
|
password: string;
|
|
3295
3454
|
}
|
|
3296
3455
|
|
|
3456
|
+
export declare class MarketRentCalculatorApi extends BaseAPI implements MarketRentCalculatorApiInterface {
|
|
3457
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3458
|
+
}
|
|
3459
|
+
|
|
3460
|
+
export declare const MarketRentCalculatorApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3461
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): RequestArgs;
|
|
3462
|
+
};
|
|
3463
|
+
|
|
3464
|
+
export declare const MarketRentCalculatorApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3465
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3466
|
+
};
|
|
3467
|
+
|
|
3468
|
+
export declare const MarketRentCalculatorApiFp: (configuration?: Configuration) => {
|
|
3469
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3470
|
+
};
|
|
3471
|
+
|
|
3472
|
+
export declare interface MarketRentCalculatorApiInterface {
|
|
3473
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
export declare interface MarketRentCalculatorResponseDTO {
|
|
3477
|
+
available: boolean;
|
|
3478
|
+
marketRentIncreaseRecommendation?: number;
|
|
3479
|
+
increasePct?: number;
|
|
3480
|
+
increaseBasis?: MarketRentCalculatorResponseDTOIncreaseBasisEnum;
|
|
3481
|
+
currentMarketRentMinimum?: number;
|
|
3482
|
+
currentMarketRentMaximum?: number;
|
|
3483
|
+
}
|
|
3484
|
+
|
|
3485
|
+
export declare enum MarketRentCalculatorResponseDTOIncreaseBasisEnum {
|
|
3486
|
+
FairRentIncreasePct = "fair_rent_increase_pct",
|
|
3487
|
+
CpihYoyPct = "cpih_yoy_pct"
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3297
3490
|
export declare function me(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CurrentUserInfoDTO>;
|
|
3298
3491
|
|
|
3299
3492
|
export declare class MessageQueueApi extends BaseAPI implements MessageQueueApiInterface {
|
|
@@ -3392,6 +3585,7 @@ export declare interface MyDepositsOnboardingStatusResponseDTO {
|
|
|
3392
3585
|
companyName?: string;
|
|
3393
3586
|
officeName?: string;
|
|
3394
3587
|
accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
|
|
3588
|
+
failureReason?: string;
|
|
3395
3589
|
}
|
|
3396
3590
|
|
|
3397
3591
|
export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
|
|
@@ -3403,7 +3597,8 @@ export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
|
|
|
3403
3597
|
export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
|
|
3404
3598
|
NOTCONNECTED = "NOT_CONNECTED",
|
|
3405
3599
|
CONNECTED = "CONNECTED",
|
|
3406
|
-
COMPLETE = "COMPLETE"
|
|
3600
|
+
COMPLETE = "COMPLETE",
|
|
3601
|
+
FAILED = "FAILED"
|
|
3407
3602
|
}
|
|
3408
3603
|
|
|
3409
3604
|
export declare class NetPromoterScoreApi extends BaseAPI implements NetPromoterScoreApiInterface {
|
|
@@ -4140,6 +4335,7 @@ export declare interface OrganizationSettingsDTO {
|
|
|
4140
4335
|
autoExtendOutcomeDeadlineEnabled?: boolean;
|
|
4141
4336
|
maximumPolicyCover?: OrganizationSettingsDTOMaximumPolicyCoverEnum;
|
|
4142
4337
|
offerRepositEnabled?: boolean;
|
|
4338
|
+
marketRentCalculatorEnabled?: boolean;
|
|
4143
4339
|
inventoryChaserDisabled?: boolean;
|
|
4144
4340
|
minimumFeeDisabled?: boolean;
|
|
4145
4341
|
pendingSwitchRemindersDisabled?: boolean;
|
|
@@ -4816,6 +5012,8 @@ export declare interface PreTenancyDocumentsApiInterface {
|
|
|
4816
5012
|
deletePreTenancyDocument(tenancyId: string, documentId: string, options?: any): AxiosPromise<{}>;
|
|
4817
5013
|
}
|
|
4818
5014
|
|
|
5015
|
+
export declare function previewClaimDeletion(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDeletionPreviewDto>;
|
|
5016
|
+
|
|
4819
5017
|
export declare class PricingApi extends BaseAPI implements PricingApiInterface {
|
|
4820
5018
|
getCashDepositAmount(ppm: number, options?: any): AxiosPromise<CashDepositDTO>;
|
|
4821
5019
|
getRepositFee(ppm: number, organizationId: string, headcount?: number, options?: any): AxiosPromise<RepositFeeDTO>;
|
|
@@ -4868,6 +5066,8 @@ export declare interface ProductDTO {
|
|
|
4868
5066
|
name: string;
|
|
4869
5067
|
}
|
|
4870
5068
|
|
|
5069
|
+
export declare function progressIntegrationRepositOffer(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
5070
|
+
|
|
4871
5071
|
export declare class PropertiesApi extends BaseAPI implements PropertiesApiInterface {
|
|
4872
5072
|
createProperty(createPropertyDTO: CreatePropertyDTO, options?: any): AxiosPromise<PropertyDTO>;
|
|
4873
5073
|
getPropertyById(id: string, options?: any): AxiosPromise<PropertyDTO>;
|
|
@@ -4938,11 +5138,13 @@ export declare enum QueueMessageDTOCronNameEnum {
|
|
|
4938
5138
|
DAILYCLAIMAUTORESPONDSUPPLIER = "DAILY_CLAIM_AUTO_RESPOND_SUPPLIER",
|
|
4939
5139
|
SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
|
|
4940
5140
|
DAILYFINALSCHEDULEDAUTOCHARGE = "DAILY_FINAL_SCHEDULED_AUTO_CHARGE",
|
|
4941
|
-
|
|
5141
|
+
SCHEDULEDRETRYABLEPAYMENT = "SCHEDULED_RETRYABLE_PAYMENT",
|
|
4942
5142
|
DAILYORDERSCHEDULEDCHARGE = "DAILY_ORDER_SCHEDULED_CHARGE",
|
|
4943
5143
|
MONTHLYDIRECTCOMMISSION = "MONTHLY_DIRECT_COMMISSION",
|
|
5144
|
+
MONTHLYCLOSEDREPOSITREPORT = "MONTHLY_CLOSED_REPOSIT_REPORT",
|
|
4944
5145
|
WEEKLYLANDLORDTRANSFERREMINDER = "WEEKLY_LANDLORD_TRANSFER_REMINDER",
|
|
4945
5146
|
DAILYREPOSITENDINGREMINDER = "DAILY_REPOSIT_ENDING_REMINDER",
|
|
5147
|
+
DAILYTENANCYENDINGREMINDER = "DAILY_TENANCY_ENDING_REMINDER",
|
|
4946
5148
|
DAILYREPOSITCLOSINGREMINDER = "DAILY_REPOSIT_CLOSING_REMINDER",
|
|
4947
5149
|
DAILYREPOSITENDED = "DAILY_REPOSIT_ENDED",
|
|
4948
5150
|
DAILYREPOSITCLOSED = "DAILY_REPOSIT_CLOSED",
|
|
@@ -4989,7 +5191,6 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
4989
5191
|
AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
|
|
4990
5192
|
PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
|
|
4991
5193
|
PROCESSOFFSESSIONPAYMENTATTEMPTFAILED = "PROCESS_OFF_SESSION_PAYMENT_ATTEMPT_FAILED",
|
|
4992
|
-
PROCESSOFFSESSIONPAYMENTSUCCEEDED = "PROCESS_OFF_SESSION_PAYMENT_SUCCEEDED",
|
|
4993
5194
|
PROCESSOFFSESSIONPAYMENTFAILED = "PROCESS_OFF_SESSION_PAYMENT_FAILED",
|
|
4994
5195
|
PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
|
|
4995
5196
|
PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
|
|
@@ -5004,6 +5205,7 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
5004
5205
|
ZIPDOCUMENTSFORCLAIM = "ZIP_DOCUMENTS_FOR_CLAIM",
|
|
5005
5206
|
GENERATEADRFORM = "GENERATE_ADR_FORM",
|
|
5006
5207
|
REPOSITENDINGREMINDER = "REPOSIT_ENDING_REMINDER",
|
|
5208
|
+
TENANCYENDINGREMINDER = "TENANCY_ENDING_REMINDER",
|
|
5007
5209
|
REPOSITCLOSINGREMINDER = "REPOSIT_CLOSING_REMINDER",
|
|
5008
5210
|
REPOSITENDED = "REPOSIT_ENDED",
|
|
5009
5211
|
REPOSITCLOSED = "REPOSIT_CLOSED",
|
|
@@ -5801,6 +6003,12 @@ export declare interface SeedRepositDTO {
|
|
|
5801
6003
|
newTenancy?: boolean;
|
|
5802
6004
|
organizationId: string;
|
|
5803
6005
|
userId: string;
|
|
6006
|
+
termType: SeedRepositDTOTermTypeEnum;
|
|
6007
|
+
}
|
|
6008
|
+
|
|
6009
|
+
export declare enum SeedRepositDTOTermTypeEnum {
|
|
6010
|
+
FIXED = "FIXED",
|
|
6011
|
+
PERIODIC = "PERIODIC"
|
|
5804
6012
|
}
|
|
5805
6013
|
|
|
5806
6014
|
export declare class SeedRepositsApi extends BaseAPI implements SeedRepositsApiInterface {
|
|
@@ -5933,6 +6141,8 @@ export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterfa
|
|
|
5933
6141
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
5934
6142
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
5935
6143
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6144
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6145
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5936
6146
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
5937
6147
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5938
6148
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5949,6 +6159,8 @@ export declare const TenanciesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5949
6159
|
getTenancyDocuments(id: string, options?: any): RequestArgs;
|
|
5950
6160
|
publish(id: string, options?: any): RequestArgs;
|
|
5951
6161
|
signAddendumForSupplier(id: string, options?: any): RequestArgs;
|
|
6162
|
+
tenantMoveOutInfo(token: string, options?: any): RequestArgs;
|
|
6163
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): RequestArgs;
|
|
5952
6164
|
tenantVacated(token: string, options?: any): RequestArgs;
|
|
5953
6165
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): RequestArgs;
|
|
5954
6166
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): RequestArgs;
|
|
@@ -5965,6 +6177,8 @@ export declare const TenanciesApiFactory: (configuration?: Configuration, basePa
|
|
|
5965
6177
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
5966
6178
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
5967
6179
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6180
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6181
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5968
6182
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
5969
6183
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5970
6184
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5981,6 +6195,8 @@ export declare const TenanciesApiFp: (configuration?: Configuration) => {
|
|
|
5981
6195
|
getTenancyDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
5982
6196
|
publish(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
5983
6197
|
signAddendumForSupplier(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
6198
|
+
tenantMoveOutInfo(token: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6199
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5984
6200
|
tenantVacated(token: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
5985
6201
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
5986
6202
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
@@ -5997,6 +6213,8 @@ export declare interface TenanciesApiInterface {
|
|
|
5997
6213
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
5998
6214
|
publish(id: string, options?: any): AxiosPromise<{}>;
|
|
5999
6215
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6216
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6217
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
6000
6218
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
6001
6219
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6002
6220
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6080,6 +6298,7 @@ export declare interface TenancyDTO {
|
|
|
6080
6298
|
letOnly: boolean;
|
|
6081
6299
|
isNewTenancy?: boolean;
|
|
6082
6300
|
termType?: TenancyDTOTermTypeEnum;
|
|
6301
|
+
scheduledMoveOutDate?: string;
|
|
6083
6302
|
checkout?: CheckoutDTO;
|
|
6084
6303
|
completedAt?: string;
|
|
6085
6304
|
outcomeDeadline?: string;
|
|
@@ -6440,6 +6659,7 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6440
6659
|
letOnly: boolean;
|
|
6441
6660
|
isNewTenancy?: boolean;
|
|
6442
6661
|
termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
|
|
6662
|
+
scheduledMoveOutDate?: string;
|
|
6443
6663
|
checkout?: CheckoutWithClaimDTO;
|
|
6444
6664
|
completedAt?: string;
|
|
6445
6665
|
outcomeDeadline?: string;
|
|
@@ -6501,6 +6721,17 @@ export declare interface TenantGuarantorForOfferDTO {
|
|
|
6501
6721
|
mobileNumber?: string;
|
|
6502
6722
|
}
|
|
6503
6723
|
|
|
6724
|
+
export declare function tenantMoveOutInfo(token: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantMoveOutInfoResponseDTO>;
|
|
6725
|
+
|
|
6726
|
+
export declare interface TenantMoveOutInfoResponseDTO {
|
|
6727
|
+
orgType: TenantMoveOutInfoResponseDTOOrgTypeEnum;
|
|
6728
|
+
}
|
|
6729
|
+
|
|
6730
|
+
export declare enum TenantMoveOutInfoResponseDTOOrgTypeEnum {
|
|
6731
|
+
Agent = "agent",
|
|
6732
|
+
Landlord = "landlord"
|
|
6733
|
+
}
|
|
6734
|
+
|
|
6504
6735
|
export declare class TenantsApi extends BaseAPI implements TenantsApiInterface {
|
|
6505
6736
|
addTenant(tenancyId: string, addTenantRequestDTO: AddTenantRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6506
6737
|
deleteById(tenantId: string, tenancyId: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6526,6 +6757,23 @@ export declare interface TenantsApiInterface {
|
|
|
6526
6757
|
deleteById(tenantId: string, tenancyId: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6527
6758
|
}
|
|
6528
6759
|
|
|
6760
|
+
export declare function tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantScheduledMoveOutResponseDTO>;
|
|
6761
|
+
|
|
6762
|
+
export declare interface TenantScheduledMoveOutRequestDTO {
|
|
6763
|
+
token: string;
|
|
6764
|
+
scheduledMoveOutDate: string;
|
|
6765
|
+
}
|
|
6766
|
+
|
|
6767
|
+
export declare interface TenantScheduledMoveOutResponseDTO {
|
|
6768
|
+
success: boolean;
|
|
6769
|
+
orgType: TenantScheduledMoveOutResponseDTOOrgTypeEnum;
|
|
6770
|
+
}
|
|
6771
|
+
|
|
6772
|
+
export declare enum TenantScheduledMoveOutResponseDTOOrgTypeEnum {
|
|
6773
|
+
Agent = "agent",
|
|
6774
|
+
Landlord = "landlord"
|
|
6775
|
+
}
|
|
6776
|
+
|
|
6529
6777
|
export declare function tenantVacated(token: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6530
6778
|
|
|
6531
6779
|
export declare class TermsApi extends BaseAPI implements TermsApiInterface {
|
|
@@ -6802,6 +7050,7 @@ export declare interface UpdateTenancyRequestDTO {
|
|
|
6802
7050
|
letOnly?: boolean;
|
|
6803
7051
|
isNewTenancy?: boolean;
|
|
6804
7052
|
termType?: UpdateTenancyRequestDTOTermTypeEnum;
|
|
7053
|
+
scheduledMoveOutDate?: string | null;
|
|
6805
7054
|
}
|
|
6806
7055
|
|
|
6807
7056
|
export declare enum UpdateTenancyRequestDTOTermTypeEnum {
|
|
@@ -6903,7 +7152,8 @@ export declare enum UserDTOInternalRolesEnum {
|
|
|
6903
7152
|
MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
|
|
6904
7153
|
BULKIMPORT = "BULK_IMPORT",
|
|
6905
7154
|
CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
|
|
6906
|
-
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE"
|
|
7155
|
+
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE",
|
|
7156
|
+
CLAIMDELETE = "CLAIM_DELETE"
|
|
6907
7157
|
}
|
|
6908
7158
|
|
|
6909
7159
|
export declare enum UserDTOUserTypeIdEnum {
|