@reposit/api-client 6.65.0 → 6.67.0-alpha.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 +326 -16
- package/dist/index.js +1 -1
- package/dist/index.mjs +2564 -1865
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -409,13 +409,15 @@ 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;
|
|
416
417
|
totalRecords: number;
|
|
417
418
|
processedRecords: number;
|
|
418
419
|
failedRecords: number;
|
|
420
|
+
duplicateRecords?: number;
|
|
419
421
|
createdByUserId: string;
|
|
420
422
|
createdByUser?: UserDTO;
|
|
421
423
|
failureReason?: string;
|
|
@@ -425,6 +427,12 @@ export declare interface BulkImportDTO {
|
|
|
425
427
|
updatedAt: string;
|
|
426
428
|
}
|
|
427
429
|
|
|
430
|
+
export declare enum BulkImportDTOImportTypeEnum {
|
|
431
|
+
REPOSIT = "REPOSIT",
|
|
432
|
+
PROPERTY = "PROPERTY",
|
|
433
|
+
BANKTRANSACTION = "BANK_TRANSACTION"
|
|
434
|
+
}
|
|
435
|
+
|
|
428
436
|
export declare enum BulkImportDTOStatusEnum {
|
|
429
437
|
DRAFT = "DRAFT",
|
|
430
438
|
IMPORTING = "IMPORTING",
|
|
@@ -439,7 +447,8 @@ export declare class BulkImportsApi extends BaseAPI implements BulkImportsApiInt
|
|
|
439
447
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
440
448
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
441
449
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
442
|
-
|
|
450
|
+
getDuplicateRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
451
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): AxiosPromise<Response>;
|
|
443
452
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
444
453
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
445
454
|
}
|
|
@@ -450,7 +459,8 @@ export declare const BulkImportsApiAxiosParamCreator: (configuration?: Configura
|
|
|
450
459
|
getAllBulkImports(options?: any): RequestArgs;
|
|
451
460
|
getBulkImportById(id: string, options?: any): RequestArgs;
|
|
452
461
|
getBulkImportDownloadUrl(id: string, options?: any): RequestArgs;
|
|
453
|
-
|
|
462
|
+
getDuplicateRowsCsv(id: string, options?: any): RequestArgs;
|
|
463
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): RequestArgs;
|
|
454
464
|
getFailedRowsCsv(id: string, options?: any): RequestArgs;
|
|
455
465
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): RequestArgs;
|
|
456
466
|
};
|
|
@@ -461,7 +471,8 @@ export declare const BulkImportsApiFactory: (configuration?: Configuration, base
|
|
|
461
471
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
462
472
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
463
473
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
464
|
-
|
|
474
|
+
getDuplicateRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
475
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): AxiosPromise<Response>;
|
|
465
476
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
466
477
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
467
478
|
};
|
|
@@ -472,7 +483,8 @@ export declare const BulkImportsApiFp: (configuration?: Configuration) => {
|
|
|
472
483
|
getAllBulkImports(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkImportDTO>>;
|
|
473
484
|
getBulkImportById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
474
485
|
getBulkImportDownloadUrl(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadUrlDTO>;
|
|
475
|
-
|
|
486
|
+
getDuplicateRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
487
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
476
488
|
getFailedRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
477
489
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
478
490
|
};
|
|
@@ -483,11 +495,14 @@ export declare interface BulkImportsApiInterface {
|
|
|
483
495
|
getAllBulkImports(options?: any): AxiosPromise<Array<BulkImportDTO>>;
|
|
484
496
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
485
497
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
486
|
-
|
|
498
|
+
getDuplicateRowsCsv(id: string, options?: any): AxiosPromise<{}>;
|
|
499
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): AxiosPromise<{}>;
|
|
487
500
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<{}>;
|
|
488
501
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
489
502
|
}
|
|
490
503
|
|
|
504
|
+
export declare function calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<MarketRentCalculatorResponseDTO>;
|
|
505
|
+
|
|
491
506
|
export declare interface CashDepositDetailsDTO {
|
|
492
507
|
amount: number;
|
|
493
508
|
PPM: number;
|
|
@@ -659,6 +674,34 @@ export declare enum ClaimActivityType {
|
|
|
659
674
|
CHECKOUTINVENTORYREPORT = "TENANT_VIEWED_CHECKOUT_INVENTORY_REPORT"
|
|
660
675
|
}
|
|
661
676
|
|
|
677
|
+
export declare interface ClaimDeletionGraphDto {
|
|
678
|
+
claimId: string;
|
|
679
|
+
arbitrationIds: Array<string>;
|
|
680
|
+
evidenceChaserIds: Array<string>;
|
|
681
|
+
hasTenantResponse: boolean;
|
|
682
|
+
orderIds: Array<string>;
|
|
683
|
+
publishedAt?: Date;
|
|
684
|
+
statusId: string;
|
|
685
|
+
claimItemIds: Array<string>;
|
|
686
|
+
claimItemDocumentIds: Array<string>;
|
|
687
|
+
claimItemProposalIds: Array<string>;
|
|
688
|
+
eventIds: Array<string>;
|
|
689
|
+
claimActivityIds: Array<string>;
|
|
690
|
+
claimProposalIds: Array<string>;
|
|
691
|
+
claimDocumentIds: Array<string>;
|
|
692
|
+
claimPolicyIds: Array<string>;
|
|
693
|
+
claimRespondentIds: Array<string>;
|
|
694
|
+
claimStatusIds: Array<string>;
|
|
695
|
+
ivrCallIds: Array<string>;
|
|
696
|
+
ivrCallActivityIds: Array<string>;
|
|
697
|
+
ivrCallClaimIds: Array<string>;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
export declare interface ClaimDeletionPreviewDto {
|
|
701
|
+
blockingReasons: Array<string>;
|
|
702
|
+
deletionGraph: ClaimDeletionGraphDto;
|
|
703
|
+
}
|
|
704
|
+
|
|
662
705
|
export declare interface ClaimDocumentDTO {
|
|
663
706
|
document: DocumentDTO;
|
|
664
707
|
id: string;
|
|
@@ -1101,10 +1144,12 @@ export declare class ClaimsApi extends BaseAPI implements ClaimsApiInterface {
|
|
|
1101
1144
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1102
1145
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1103
1146
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1147
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1104
1148
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1105
1149
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1106
1150
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1107
1151
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1152
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1108
1153
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1109
1154
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1110
1155
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1128,10 +1173,12 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1128
1173
|
createInsuranceClaimOnClaim(claimId: string, options?: any): RequestArgs;
|
|
1129
1174
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): RequestArgs;
|
|
1130
1175
|
declineClaim(claimId: string, options?: any): RequestArgs;
|
|
1176
|
+
deleteClaim(claimId: string, options?: any): RequestArgs;
|
|
1131
1177
|
findClaimById(claimId: string, options?: any): RequestArgs;
|
|
1132
1178
|
generateADRForm(claimId: string, options?: any): RequestArgs;
|
|
1133
1179
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): RequestArgs;
|
|
1134
1180
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): RequestArgs;
|
|
1181
|
+
previewClaimDeletion(claimId: string, options?: any): RequestArgs;
|
|
1135
1182
|
publishClaim(claimId: string, options?: any): RequestArgs;
|
|
1136
1183
|
readyForArbitrateClaim(claimId: string, options?: any): RequestArgs;
|
|
1137
1184
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): RequestArgs;
|
|
@@ -1155,10 +1202,12 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
1155
1202
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1156
1203
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1157
1204
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1205
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1158
1206
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1159
1207
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1160
1208
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1161
1209
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1210
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1162
1211
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1163
1212
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1164
1213
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1182,10 +1231,12 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
1182
1231
|
createInsuranceClaimOnClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1183
1232
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1184
1233
|
declineClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1234
|
+
deleteClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1185
1235
|
findClaimById(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1186
1236
|
generateADRForm(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1187
1237
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchClaimResultsDTO>;
|
|
1188
1238
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1239
|
+
previewClaimDeletion(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1189
1240
|
publishClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1190
1241
|
readyForArbitrateClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1191
1242
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1209,10 +1260,12 @@ export declare interface ClaimsApiInterface {
|
|
|
1209
1260
|
createInsuranceClaimOnClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1210
1261
|
deactivateClaim(claimId: string, deactivateClaimDTO: DeactivateClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1211
1262
|
declineClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1263
|
+
deleteClaim(claimId: string, options?: any): AxiosPromise<object>;
|
|
1212
1264
|
findClaimById(claimId: string, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
1213
1265
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1214
1266
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1215
1267
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1268
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1216
1269
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1217
1270
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1218
1271
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1545,8 +1598,15 @@ export declare interface CreateBeneficiaryDTO {
|
|
|
1545
1598
|
export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
|
|
1546
1599
|
|
|
1547
1600
|
export declare interface CreateBulkImportDTO {
|
|
1548
|
-
name
|
|
1549
|
-
|
|
1601
|
+
name?: string | null;
|
|
1602
|
+
importType: CreateBulkImportDTOImportTypeEnum;
|
|
1603
|
+
organizationId?: string | null;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
export declare enum CreateBulkImportDTOImportTypeEnum {
|
|
1607
|
+
REPOSIT = "REPOSIT",
|
|
1608
|
+
PROPERTY = "PROPERTY",
|
|
1609
|
+
BANKTRANSACTION = "BANK_TRANSACTION"
|
|
1550
1610
|
}
|
|
1551
1611
|
|
|
1552
1612
|
export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
|
|
@@ -1829,6 +1889,56 @@ export declare enum CreateInsuredItemDTOTypeEnum {
|
|
|
1829
1889
|
PROPERTY = "PROPERTY"
|
|
1830
1890
|
}
|
|
1831
1891
|
|
|
1892
|
+
export declare function createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CreateRepositOfferResponseDTO>;
|
|
1893
|
+
|
|
1894
|
+
export declare interface CreateIntegrationRepositOfferAddressDTO {
|
|
1895
|
+
line1: string;
|
|
1896
|
+
line2?: string;
|
|
1897
|
+
town: string;
|
|
1898
|
+
postcode: string;
|
|
1899
|
+
country: string;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
export declare interface CreateIntegrationRepositOfferDTO {
|
|
1903
|
+
address: CreateIntegrationRepositOfferAddressDTO;
|
|
1904
|
+
landlord: CreateIntegrationRepositOfferLandlordDTO;
|
|
1905
|
+
agentId: string;
|
|
1906
|
+
ppm: number;
|
|
1907
|
+
tenants: Array<CreateIntegrationRepositOfferTenantDTO>;
|
|
1908
|
+
startDate: string;
|
|
1909
|
+
letOnly: boolean;
|
|
1910
|
+
cashDepositAmount?: number;
|
|
1911
|
+
tenantsReferenceStatus?: CreateIntegrationRepositOfferDTOTenantsReferenceStatusEnum;
|
|
1912
|
+
endDate?: string;
|
|
1913
|
+
referrerId?: string;
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
export declare enum CreateIntegrationRepositOfferDTOTenantsReferenceStatusEnum {
|
|
1917
|
+
PASSED = "PASSED",
|
|
1918
|
+
FAILED = "FAILED"
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
export declare interface CreateIntegrationRepositOfferGuarantorDTO {
|
|
1922
|
+
firstName: string;
|
|
1923
|
+
lastName: string;
|
|
1924
|
+
email: string;
|
|
1925
|
+
mobileNumber?: string;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
export declare interface CreateIntegrationRepositOfferLandlordDTO {
|
|
1929
|
+
firstName: string;
|
|
1930
|
+
lastName: string;
|
|
1931
|
+
email: string;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
export declare interface CreateIntegrationRepositOfferTenantDTO {
|
|
1935
|
+
firstName: string;
|
|
1936
|
+
lastName: string;
|
|
1937
|
+
email: string;
|
|
1938
|
+
mobileNumber?: string;
|
|
1939
|
+
guarantor?: CreateIntegrationRepositOfferGuarantorDTO;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1832
1942
|
export declare interface CreateLandlordDTO {
|
|
1833
1943
|
firstName?: string;
|
|
1834
1944
|
lastName?: string;
|
|
@@ -2055,7 +2165,7 @@ export declare interface CreateRepositDTO {
|
|
|
2055
2165
|
ppm: number;
|
|
2056
2166
|
headcount: number;
|
|
2057
2167
|
startDate: string;
|
|
2058
|
-
endDate
|
|
2168
|
+
endDate?: string;
|
|
2059
2169
|
tenantEmails: Array<string>;
|
|
2060
2170
|
tenants: Array<CreateTenantForRepositDTO>;
|
|
2061
2171
|
letOnly: boolean;
|
|
@@ -2065,6 +2175,11 @@ export declare interface CreateRepositDTO {
|
|
|
2065
2175
|
draft?: boolean;
|
|
2066
2176
|
}
|
|
2067
2177
|
|
|
2178
|
+
export declare interface CreateRepositOfferResponseDTO {
|
|
2179
|
+
success: boolean;
|
|
2180
|
+
id: string;
|
|
2181
|
+
}
|
|
2182
|
+
|
|
2068
2183
|
export declare function createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TemporaryUploadUrlDTO>;
|
|
2069
2184
|
|
|
2070
2185
|
export declare interface CreateTemporaryUploadUrlDTO {
|
|
@@ -2078,7 +2193,7 @@ export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequ
|
|
|
2078
2193
|
export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
|
|
2079
2194
|
|
|
2080
2195
|
export declare interface CreateTenancyExpiryRequestDTO {
|
|
2081
|
-
endDate
|
|
2196
|
+
endDate?: string;
|
|
2082
2197
|
}
|
|
2083
2198
|
|
|
2084
2199
|
export declare function createTenancyInvite(tenancyId: string, createTenancyInviteDTO: CreateTenancyInviteDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -2225,6 +2340,8 @@ export declare function deleteBankAccount(organizationId: string, id: string, co
|
|
|
2225
2340
|
|
|
2226
2341
|
export declare function deleteById(tenantId: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
|
|
2227
2342
|
|
|
2343
|
+
export declare function deleteClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2344
|
+
|
|
2228
2345
|
export declare function deleteClaimDocument(claimId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2229
2346
|
|
|
2230
2347
|
export declare function deleteClaimItem(claimId: string, claimItemId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
@@ -2241,6 +2358,8 @@ export declare function deleteEvidenceChaserItemResponseDocument(documentId: str
|
|
|
2241
2358
|
|
|
2242
2359
|
export declare function deleteGuarantor(tenancyUserId: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantDTO>;
|
|
2243
2360
|
|
|
2361
|
+
export declare function deleteIntegrationRepositOffer(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2362
|
+
|
|
2244
2363
|
export declare function deleteInvite(organizationInviteId: string, organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2245
2364
|
|
|
2246
2365
|
export declare function deleteItem(id: string, itemId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<InsuredItemDTO>>;
|
|
@@ -2861,9 +2980,11 @@ export declare function getCustomer(configuration?: Configuration, axios?: Axios
|
|
|
2861
2980
|
|
|
2862
2981
|
export declare function getDocumentsByIds(ids: Array<string>, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<DocumentDTO>>;
|
|
2863
2982
|
|
|
2983
|
+
export declare function getDuplicateRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2984
|
+
|
|
2864
2985
|
export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
|
|
2865
2986
|
|
|
2866
|
-
export declare function getExampleCsv(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2987
|
+
export declare function getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2867
2988
|
|
|
2868
2989
|
export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2869
2990
|
|
|
@@ -2877,6 +2998,22 @@ export declare function getIntegrators(configuration?: Configuration, axios?: Ax
|
|
|
2877
2998
|
|
|
2878
2999
|
export declare function getLandlordById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<LandlordDTO>;
|
|
2879
3000
|
|
|
3001
|
+
export declare interface GetMarketRentCalculationDTO {
|
|
3002
|
+
organizationId: string;
|
|
3003
|
+
postcode: string;
|
|
3004
|
+
numberOfBedrooms: number;
|
|
3005
|
+
propertyType: GetMarketRentCalculationDTOPropertyTypeEnum;
|
|
3006
|
+
currentRent: number;
|
|
3007
|
+
startDateOfCurrentRent: string;
|
|
3008
|
+
}
|
|
3009
|
+
|
|
3010
|
+
export declare enum GetMarketRentCalculationDTOPropertyTypeEnum {
|
|
3011
|
+
Terraced = "terraced",
|
|
3012
|
+
Semi = "semi",
|
|
3013
|
+
Detached = "detached",
|
|
3014
|
+
Flat = "flat"
|
|
3015
|
+
}
|
|
3016
|
+
|
|
2880
3017
|
export declare function getMyDepositsAuthorizeUrl(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<MyDepositsAuthorizeResponseDTO>;
|
|
2881
3018
|
|
|
2882
3019
|
export declare function getMyDepositsCompanyOffices(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<MyDepositsCompanyOfficeResponseDTO>>;
|
|
@@ -2887,6 +3024,10 @@ export declare function getMySupplier(configuration?: Configuration, axios?: Axi
|
|
|
2887
3024
|
|
|
2888
3025
|
export declare function getOrderCustomerById(orderId: string, customerId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderCustomerDTO>;
|
|
2889
3026
|
|
|
3027
|
+
export declare function getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrderManualPaymentWithBankTransactionDTO>>;
|
|
3028
|
+
|
|
3029
|
+
export declare function getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrderManualPaymentWithBankTransactionDTO>>;
|
|
3030
|
+
|
|
2890
3031
|
export declare function getOrganizationMetrics(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationMetricsDTO>;
|
|
2891
3032
|
|
|
2892
3033
|
export declare function getOrganizationUsers(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationUserDTO>>;
|
|
@@ -3095,6 +3236,36 @@ export declare interface IntegrationPartnerDTO {
|
|
|
3095
3236
|
notified: boolean;
|
|
3096
3237
|
}
|
|
3097
3238
|
|
|
3239
|
+
export declare class IntegrationRepositOffersApi extends BaseAPI implements IntegrationRepositOffersApiInterface {
|
|
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 IntegrationRepositOffersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3246
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): RequestArgs;
|
|
3247
|
+
deleteIntegrationRepositOffer(id: string, options?: any): RequestArgs;
|
|
3248
|
+
progressIntegrationRepositOffer(id: string, options?: any): RequestArgs;
|
|
3249
|
+
};
|
|
3250
|
+
|
|
3251
|
+
export declare const IntegrationRepositOffersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
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
|
+
|
|
3257
|
+
export declare const IntegrationRepositOffersApiFp: (configuration?: Configuration) => {
|
|
3258
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateRepositOfferResponseDTO>;
|
|
3259
|
+
deleteIntegrationRepositOffer(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3260
|
+
progressIntegrationRepositOffer(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
3261
|
+
};
|
|
3262
|
+
|
|
3263
|
+
export declare interface IntegrationRepositOffersApiInterface {
|
|
3264
|
+
createIntegrationRepositOffer(createIntegrationRepositOfferDTO: CreateIntegrationRepositOfferDTO, options?: any): AxiosPromise<CreateRepositOfferResponseDTO>;
|
|
3265
|
+
deleteIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3266
|
+
progressIntegrationRepositOffer(id: string, options?: any): AxiosPromise<object>;
|
|
3267
|
+
}
|
|
3268
|
+
|
|
3098
3269
|
export declare interface IntegrationWebhookDTO {
|
|
3099
3270
|
webhookUrl: string;
|
|
3100
3271
|
}
|
|
@@ -3294,6 +3465,40 @@ export declare interface LoginDTO {
|
|
|
3294
3465
|
password: string;
|
|
3295
3466
|
}
|
|
3296
3467
|
|
|
3468
|
+
export declare class MarketRentCalculatorApi extends BaseAPI implements MarketRentCalculatorApiInterface {
|
|
3469
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3470
|
+
}
|
|
3471
|
+
|
|
3472
|
+
export declare const MarketRentCalculatorApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3473
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): RequestArgs;
|
|
3474
|
+
};
|
|
3475
|
+
|
|
3476
|
+
export declare const MarketRentCalculatorApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3477
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3478
|
+
};
|
|
3479
|
+
|
|
3480
|
+
export declare const MarketRentCalculatorApiFp: (configuration?: Configuration) => {
|
|
3481
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3482
|
+
};
|
|
3483
|
+
|
|
3484
|
+
export declare interface MarketRentCalculatorApiInterface {
|
|
3485
|
+
calculateMarketRent(getMarketRentCalculationDTO: GetMarketRentCalculationDTO, options?: any): AxiosPromise<MarketRentCalculatorResponseDTO>;
|
|
3486
|
+
}
|
|
3487
|
+
|
|
3488
|
+
export declare interface MarketRentCalculatorResponseDTO {
|
|
3489
|
+
available: boolean;
|
|
3490
|
+
marketRentIncreaseRecommendation?: number;
|
|
3491
|
+
increasePct?: number;
|
|
3492
|
+
increaseBasis?: MarketRentCalculatorResponseDTOIncreaseBasisEnum;
|
|
3493
|
+
currentMarketRentMinimum?: number;
|
|
3494
|
+
currentMarketRentMaximum?: number;
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3497
|
+
export declare enum MarketRentCalculatorResponseDTOIncreaseBasisEnum {
|
|
3498
|
+
FairRentIncreasePct = "fair_rent_increase_pct",
|
|
3499
|
+
CpihYoyPct = "cpih_yoy_pct"
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3297
3502
|
export declare function me(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CurrentUserInfoDTO>;
|
|
3298
3503
|
|
|
3299
3504
|
export declare class MessageQueueApi extends BaseAPI implements MessageQueueApiInterface {
|
|
@@ -3392,6 +3597,7 @@ export declare interface MyDepositsOnboardingStatusResponseDTO {
|
|
|
3392
3597
|
companyName?: string;
|
|
3393
3598
|
officeName?: string;
|
|
3394
3599
|
accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
|
|
3600
|
+
failureReason?: string;
|
|
3395
3601
|
}
|
|
3396
3602
|
|
|
3397
3603
|
export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
|
|
@@ -3403,7 +3609,8 @@ export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
|
|
|
3403
3609
|
export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
|
|
3404
3610
|
NOTCONNECTED = "NOT_CONNECTED",
|
|
3405
3611
|
CONNECTED = "CONNECTED",
|
|
3406
|
-
COMPLETE = "COMPLETE"
|
|
3612
|
+
COMPLETE = "COMPLETE",
|
|
3613
|
+
FAILED = "FAILED"
|
|
3407
3614
|
}
|
|
3408
3615
|
|
|
3409
3616
|
export declare class NetPromoterScoreApi extends BaseAPI implements NetPromoterScoreApiInterface {
|
|
@@ -3662,12 +3869,59 @@ export declare enum OrderDTOStatusIdEnum {
|
|
|
3662
3869
|
REFUNDED = "REFUNDED"
|
|
3663
3870
|
}
|
|
3664
3871
|
|
|
3872
|
+
export declare interface OrderManualPaymentBankTransactionDTO {
|
|
3873
|
+
id: string;
|
|
3874
|
+
transactionDate: Date;
|
|
3875
|
+
narrative1?: string;
|
|
3876
|
+
narrative2?: string;
|
|
3877
|
+
narrative3?: string;
|
|
3878
|
+
narrative4?: string;
|
|
3879
|
+
narrative5?: string;
|
|
3880
|
+
type?: string;
|
|
3881
|
+
debit?: number;
|
|
3882
|
+
credit?: number;
|
|
3883
|
+
}
|
|
3884
|
+
|
|
3665
3885
|
export declare interface OrderManualPaymentDTO {
|
|
3666
3886
|
id: string;
|
|
3667
3887
|
orderId: string;
|
|
3668
3888
|
amount: number;
|
|
3669
3889
|
}
|
|
3670
3890
|
|
|
3891
|
+
export declare class OrderManualPaymentsApi extends BaseAPI implements OrderManualPaymentsApiInterface {
|
|
3892
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
|
|
3893
|
+
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
|
|
3894
|
+
}
|
|
3895
|
+
|
|
3896
|
+
export declare const OrderManualPaymentsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3897
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): RequestArgs;
|
|
3898
|
+
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): RequestArgs;
|
|
3899
|
+
};
|
|
3900
|
+
|
|
3901
|
+
export declare const OrderManualPaymentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3902
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
|
|
3903
|
+
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
|
|
3904
|
+
};
|
|
3905
|
+
|
|
3906
|
+
export declare const OrderManualPaymentsApiFp: (configuration?: Configuration) => {
|
|
3907
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderManualPaymentWithBankTransactionDTO>>;
|
|
3908
|
+
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderManualPaymentWithBankTransactionDTO>>;
|
|
3909
|
+
};
|
|
3910
|
+
|
|
3911
|
+
export declare interface OrderManualPaymentsApiInterface {
|
|
3912
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<Array<OrderManualPaymentWithBankTransactionDTO>>;
|
|
3913
|
+
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<Array<OrderManualPaymentWithBankTransactionDTO>>;
|
|
3914
|
+
}
|
|
3915
|
+
|
|
3916
|
+
export declare interface OrderManualPaymentWithBankTransactionDTO {
|
|
3917
|
+
id: string;
|
|
3918
|
+
orderId: string;
|
|
3919
|
+
amount: number;
|
|
3920
|
+
createdAt: Date;
|
|
3921
|
+
updatedAt: Date;
|
|
3922
|
+
bankTransaction?: OrderManualPaymentBankTransactionDTO;
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3671
3925
|
export declare class OrdersApi extends BaseAPI implements OrdersApiInterface {
|
|
3672
3926
|
duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, options?: any): AxiosPromise<IsDuplicateResponse>;
|
|
3673
3927
|
getAmountRemaining(id: string, includeInterest: boolean, options?: any): AxiosPromise<OrderAmountRemainingDTO>;
|
|
@@ -4140,6 +4394,7 @@ export declare interface OrganizationSettingsDTO {
|
|
|
4140
4394
|
autoExtendOutcomeDeadlineEnabled?: boolean;
|
|
4141
4395
|
maximumPolicyCover?: OrganizationSettingsDTOMaximumPolicyCoverEnum;
|
|
4142
4396
|
offerRepositEnabled?: boolean;
|
|
4397
|
+
marketRentCalculatorEnabled?: boolean;
|
|
4143
4398
|
inventoryChaserDisabled?: boolean;
|
|
4144
4399
|
minimumFeeDisabled?: boolean;
|
|
4145
4400
|
pendingSwitchRemindersDisabled?: boolean;
|
|
@@ -4816,6 +5071,8 @@ export declare interface PreTenancyDocumentsApiInterface {
|
|
|
4816
5071
|
deletePreTenancyDocument(tenancyId: string, documentId: string, options?: any): AxiosPromise<{}>;
|
|
4817
5072
|
}
|
|
4818
5073
|
|
|
5074
|
+
export declare function previewClaimDeletion(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDeletionPreviewDto>;
|
|
5075
|
+
|
|
4819
5076
|
export declare class PricingApi extends BaseAPI implements PricingApiInterface {
|
|
4820
5077
|
getCashDepositAmount(ppm: number, options?: any): AxiosPromise<CashDepositDTO>;
|
|
4821
5078
|
getRepositFee(ppm: number, organizationId: string, headcount?: number, options?: any): AxiosPromise<RepositFeeDTO>;
|
|
@@ -4868,6 +5125,8 @@ export declare interface ProductDTO {
|
|
|
4868
5125
|
name: string;
|
|
4869
5126
|
}
|
|
4870
5127
|
|
|
5128
|
+
export declare function progressIntegrationRepositOffer(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
5129
|
+
|
|
4871
5130
|
export declare class PropertiesApi extends BaseAPI implements PropertiesApiInterface {
|
|
4872
5131
|
createProperty(createPropertyDTO: CreatePropertyDTO, options?: any): AxiosPromise<PropertyDTO>;
|
|
4873
5132
|
getPropertyById(id: string, options?: any): AxiosPromise<PropertyDTO>;
|
|
@@ -4938,11 +5197,13 @@ export declare enum QueueMessageDTOCronNameEnum {
|
|
|
4938
5197
|
DAILYCLAIMAUTORESPONDSUPPLIER = "DAILY_CLAIM_AUTO_RESPOND_SUPPLIER",
|
|
4939
5198
|
SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
|
|
4940
5199
|
DAILYFINALSCHEDULEDAUTOCHARGE = "DAILY_FINAL_SCHEDULED_AUTO_CHARGE",
|
|
4941
|
-
|
|
5200
|
+
SCHEDULEDRETRYABLEPAYMENT = "SCHEDULED_RETRYABLE_PAYMENT",
|
|
4942
5201
|
DAILYORDERSCHEDULEDCHARGE = "DAILY_ORDER_SCHEDULED_CHARGE",
|
|
4943
5202
|
MONTHLYDIRECTCOMMISSION = "MONTHLY_DIRECT_COMMISSION",
|
|
5203
|
+
MONTHLYCLOSEDREPOSITREPORT = "MONTHLY_CLOSED_REPOSIT_REPORT",
|
|
4944
5204
|
WEEKLYLANDLORDTRANSFERREMINDER = "WEEKLY_LANDLORD_TRANSFER_REMINDER",
|
|
4945
5205
|
DAILYREPOSITENDINGREMINDER = "DAILY_REPOSIT_ENDING_REMINDER",
|
|
5206
|
+
DAILYTENANCYENDINGREMINDER = "DAILY_TENANCY_ENDING_REMINDER",
|
|
4946
5207
|
DAILYREPOSITCLOSINGREMINDER = "DAILY_REPOSIT_CLOSING_REMINDER",
|
|
4947
5208
|
DAILYREPOSITENDED = "DAILY_REPOSIT_ENDED",
|
|
4948
5209
|
DAILYREPOSITCLOSED = "DAILY_REPOSIT_CLOSED",
|
|
@@ -4989,7 +5250,6 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
4989
5250
|
AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
|
|
4990
5251
|
PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
|
|
4991
5252
|
PROCESSOFFSESSIONPAYMENTATTEMPTFAILED = "PROCESS_OFF_SESSION_PAYMENT_ATTEMPT_FAILED",
|
|
4992
|
-
PROCESSOFFSESSIONPAYMENTSUCCEEDED = "PROCESS_OFF_SESSION_PAYMENT_SUCCEEDED",
|
|
4993
5253
|
PROCESSOFFSESSIONPAYMENTFAILED = "PROCESS_OFF_SESSION_PAYMENT_FAILED",
|
|
4994
5254
|
PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
|
|
4995
5255
|
PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
|
|
@@ -5004,6 +5264,7 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
5004
5264
|
ZIPDOCUMENTSFORCLAIM = "ZIP_DOCUMENTS_FOR_CLAIM",
|
|
5005
5265
|
GENERATEADRFORM = "GENERATE_ADR_FORM",
|
|
5006
5266
|
REPOSITENDINGREMINDER = "REPOSIT_ENDING_REMINDER",
|
|
5267
|
+
TENANCYENDINGREMINDER = "TENANCY_ENDING_REMINDER",
|
|
5007
5268
|
REPOSITCLOSINGREMINDER = "REPOSIT_CLOSING_REMINDER",
|
|
5008
5269
|
REPOSITENDED = "REPOSIT_ENDED",
|
|
5009
5270
|
REPOSITCLOSED = "REPOSIT_CLOSED",
|
|
@@ -5225,7 +5486,7 @@ export declare interface ReplaceRepositDTO {
|
|
|
5225
5486
|
ppm: number;
|
|
5226
5487
|
headcount: number;
|
|
5227
5488
|
startDate: string;
|
|
5228
|
-
endDate
|
|
5489
|
+
endDate?: string;
|
|
5229
5490
|
tenantEmails: Array<string>;
|
|
5230
5491
|
tenants: Array<CreateTenantForRepositDTO>;
|
|
5231
5492
|
letOnly: boolean;
|
|
@@ -5801,6 +6062,12 @@ export declare interface SeedRepositDTO {
|
|
|
5801
6062
|
newTenancy?: boolean;
|
|
5802
6063
|
organizationId: string;
|
|
5803
6064
|
userId: string;
|
|
6065
|
+
termType: SeedRepositDTOTermTypeEnum;
|
|
6066
|
+
}
|
|
6067
|
+
|
|
6068
|
+
export declare enum SeedRepositDTOTermTypeEnum {
|
|
6069
|
+
FIXED = "FIXED",
|
|
6070
|
+
PERIODIC = "PERIODIC"
|
|
5804
6071
|
}
|
|
5805
6072
|
|
|
5806
6073
|
export declare class SeedRepositsApi extends BaseAPI implements SeedRepositsApiInterface {
|
|
@@ -5933,6 +6200,8 @@ export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterfa
|
|
|
5933
6200
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
5934
6201
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
5935
6202
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6203
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6204
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5936
6205
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
5937
6206
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5938
6207
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5949,6 +6218,8 @@ export declare const TenanciesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5949
6218
|
getTenancyDocuments(id: string, options?: any): RequestArgs;
|
|
5950
6219
|
publish(id: string, options?: any): RequestArgs;
|
|
5951
6220
|
signAddendumForSupplier(id: string, options?: any): RequestArgs;
|
|
6221
|
+
tenantMoveOutInfo(token: string, options?: any): RequestArgs;
|
|
6222
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): RequestArgs;
|
|
5952
6223
|
tenantVacated(token: string, options?: any): RequestArgs;
|
|
5953
6224
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): RequestArgs;
|
|
5954
6225
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): RequestArgs;
|
|
@@ -5965,6 +6236,8 @@ export declare const TenanciesApiFactory: (configuration?: Configuration, basePa
|
|
|
5965
6236
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<PolicyDocumentDTO[]>;
|
|
5966
6237
|
publish(id: string, options?: any): AxiosPromise<Response>;
|
|
5967
6238
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6239
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6240
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5968
6241
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
5969
6242
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5970
6243
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5981,6 +6254,8 @@ export declare const TenanciesApiFp: (configuration?: Configuration) => {
|
|
|
5981
6254
|
getTenancyDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
5982
6255
|
publish(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
5983
6256
|
signAddendumForSupplier(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
6257
|
+
tenantMoveOutInfo(token: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6258
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
5984
6259
|
tenantVacated(token: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
5985
6260
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
5986
6261
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
@@ -5997,6 +6272,8 @@ export declare interface TenanciesApiInterface {
|
|
|
5997
6272
|
getTenancyDocuments(id: string, options?: any): AxiosPromise<Array<PolicyDocumentDTO>>;
|
|
5998
6273
|
publish(id: string, options?: any): AxiosPromise<{}>;
|
|
5999
6274
|
signAddendumForSupplier(id: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6275
|
+
tenantMoveOutInfo(token: string, options?: any): AxiosPromise<TenantMoveOutInfoResponseDTO>;
|
|
6276
|
+
tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, options?: any): AxiosPromise<TenantScheduledMoveOutResponseDTO>;
|
|
6000
6277
|
tenantVacated(token: string, options?: any): AxiosPromise<object>;
|
|
6001
6278
|
updateExistingProperty(id: string, updateExistingPropertyOnTenancyRequestDTO: UpdateExistingPropertyOnTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6002
6279
|
updateProperty(id: string, updatePropertyRequestDTO: UpdatePropertyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6080,6 +6357,7 @@ export declare interface TenancyDTO {
|
|
|
6080
6357
|
letOnly: boolean;
|
|
6081
6358
|
isNewTenancy?: boolean;
|
|
6082
6359
|
termType?: TenancyDTOTermTypeEnum;
|
|
6360
|
+
scheduledMoveOutDate?: string;
|
|
6083
6361
|
checkout?: CheckoutDTO;
|
|
6084
6362
|
completedAt?: string;
|
|
6085
6363
|
outcomeDeadline?: string;
|
|
@@ -6440,6 +6718,7 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
|
|
|
6440
6718
|
letOnly: boolean;
|
|
6441
6719
|
isNewTenancy?: boolean;
|
|
6442
6720
|
termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
|
|
6721
|
+
scheduledMoveOutDate?: string;
|
|
6443
6722
|
checkout?: CheckoutWithClaimDTO;
|
|
6444
6723
|
completedAt?: string;
|
|
6445
6724
|
outcomeDeadline?: string;
|
|
@@ -6501,6 +6780,17 @@ export declare interface TenantGuarantorForOfferDTO {
|
|
|
6501
6780
|
mobileNumber?: string;
|
|
6502
6781
|
}
|
|
6503
6782
|
|
|
6783
|
+
export declare function tenantMoveOutInfo(token: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantMoveOutInfoResponseDTO>;
|
|
6784
|
+
|
|
6785
|
+
export declare interface TenantMoveOutInfoResponseDTO {
|
|
6786
|
+
orgType: TenantMoveOutInfoResponseDTOOrgTypeEnum;
|
|
6787
|
+
}
|
|
6788
|
+
|
|
6789
|
+
export declare enum TenantMoveOutInfoResponseDTOOrgTypeEnum {
|
|
6790
|
+
Agent = "agent",
|
|
6791
|
+
Landlord = "landlord"
|
|
6792
|
+
}
|
|
6793
|
+
|
|
6504
6794
|
export declare class TenantsApi extends BaseAPI implements TenantsApiInterface {
|
|
6505
6795
|
addTenant(tenancyId: string, addTenantRequestDTO: AddTenantRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
6506
6796
|
deleteById(tenantId: string, tenancyId: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -6526,6 +6816,23 @@ export declare interface TenantsApiInterface {
|
|
|
6526
6816
|
deleteById(tenantId: string, tenancyId: string, options?: any): AxiosPromise<TenancyDTO>;
|
|
6527
6817
|
}
|
|
6528
6818
|
|
|
6819
|
+
export declare function tenantScheduledMoveOut(tenantScheduledMoveOutRequestDTO: TenantScheduledMoveOutRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenantScheduledMoveOutResponseDTO>;
|
|
6820
|
+
|
|
6821
|
+
export declare interface TenantScheduledMoveOutRequestDTO {
|
|
6822
|
+
token: string;
|
|
6823
|
+
scheduledMoveOutDate: string;
|
|
6824
|
+
}
|
|
6825
|
+
|
|
6826
|
+
export declare interface TenantScheduledMoveOutResponseDTO {
|
|
6827
|
+
success: boolean;
|
|
6828
|
+
orgType: TenantScheduledMoveOutResponseDTOOrgTypeEnum;
|
|
6829
|
+
}
|
|
6830
|
+
|
|
6831
|
+
export declare enum TenantScheduledMoveOutResponseDTOOrgTypeEnum {
|
|
6832
|
+
Agent = "agent",
|
|
6833
|
+
Landlord = "landlord"
|
|
6834
|
+
}
|
|
6835
|
+
|
|
6529
6836
|
export declare function tenantVacated(token: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6530
6837
|
|
|
6531
6838
|
export declare class TermsApi extends BaseAPI implements TermsApiInterface {
|
|
@@ -6802,6 +7109,7 @@ export declare interface UpdateTenancyRequestDTO {
|
|
|
6802
7109
|
letOnly?: boolean;
|
|
6803
7110
|
isNewTenancy?: boolean;
|
|
6804
7111
|
termType?: UpdateTenancyRequestDTOTermTypeEnum;
|
|
7112
|
+
scheduledMoveOutDate?: string | null;
|
|
6805
7113
|
}
|
|
6806
7114
|
|
|
6807
7115
|
export declare enum UpdateTenancyRequestDTOTermTypeEnum {
|
|
@@ -6903,7 +7211,9 @@ export declare enum UserDTOInternalRolesEnum {
|
|
|
6903
7211
|
MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
|
|
6904
7212
|
BULKIMPORT = "BULK_IMPORT",
|
|
6905
7213
|
CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
|
|
6906
|
-
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE"
|
|
7214
|
+
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE",
|
|
7215
|
+
CLAIMDELETE = "CLAIM_DELETE",
|
|
7216
|
+
BANKTRANSACTIONIMPORT = "BANK_TRANSACTION_IMPORT"
|
|
6907
7217
|
}
|
|
6908
7218
|
|
|
6909
7219
|
export declare enum UserDTOUserTypeIdEnum {
|