@reposit/api-client 6.61.0 → 6.62.0-beta.1

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 CHANGED
@@ -190,6 +190,8 @@ export declare interface ApplicantsApiInterface {
190
190
  updateAttributes(id: string, updateApplicantAttributesDTO: UpdateApplicantAttributesDTO, options?: any): AxiosPromise<ApplicantDTO>;
191
191
  }
192
192
 
193
+ export declare function applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemInternalUpdatePreviewDTO>;
194
+
193
195
  export declare function approveClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
194
196
 
195
197
  export declare interface ArbitrationDocumentDTO {
@@ -399,6 +401,92 @@ export declare interface BeneficiaryDTO {
399
401
  email?: string;
400
402
  }
401
403
 
404
+ export declare interface BlockedTenantDTO {
405
+ email: string;
406
+ fullName?: string;
407
+ }
408
+
409
+ export declare interface BulkImportDTO {
410
+ id: string;
411
+ name: string;
412
+ organizationId: string;
413
+ organizationName?: string;
414
+ filePath?: string;
415
+ status: BulkImportDTOStatusEnum;
416
+ totalRecords: number;
417
+ processedRecords: number;
418
+ failedRecords: number;
419
+ createdByUserId: string;
420
+ createdByUser?: UserDTO;
421
+ startedAt?: string;
422
+ completedAt?: string;
423
+ createdAt: string;
424
+ updatedAt: string;
425
+ }
426
+
427
+ export declare enum BulkImportDTOStatusEnum {
428
+ DRAFT = "DRAFT",
429
+ IMPORTING = "IMPORTING",
430
+ PROCESSING = "PROCESSING",
431
+ COMPLETED = "COMPLETED",
432
+ FAILED = "FAILED"
433
+ }
434
+
435
+ export declare class BulkImportsApi extends BaseAPI implements BulkImportsApiInterface {
436
+ createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
437
+ createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
438
+ getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
439
+ getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
440
+ getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
441
+ getExampleCsv(options?: any): AxiosPromise<Response>;
442
+ getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
443
+ processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
444
+ }
445
+
446
+ export declare const BulkImportsApiAxiosParamCreator: (configuration?: Configuration) => {
447
+ createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): RequestArgs;
448
+ createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): RequestArgs;
449
+ getAllBulkImports(options?: any): RequestArgs;
450
+ getBulkImportById(id: string, options?: any): RequestArgs;
451
+ getBulkImportDownloadUrl(id: string, options?: any): RequestArgs;
452
+ getExampleCsv(options?: any): RequestArgs;
453
+ getFailedRowsCsv(id: string, options?: any): RequestArgs;
454
+ processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): RequestArgs;
455
+ };
456
+
457
+ export declare const BulkImportsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
458
+ createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
459
+ createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
460
+ getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
461
+ getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
462
+ getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
463
+ getExampleCsv(options?: any): AxiosPromise<Response>;
464
+ getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
465
+ processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
466
+ };
467
+
468
+ export declare const BulkImportsApiFp: (configuration?: Configuration) => {
469
+ createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
470
+ createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemporaryUploadUrlDTO>;
471
+ getAllBulkImports(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkImportDTO>>;
472
+ getBulkImportById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
473
+ getBulkImportDownloadUrl(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadUrlDTO>;
474
+ getExampleCsv(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
475
+ getFailedRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
476
+ processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
477
+ };
478
+
479
+ export declare interface BulkImportsApiInterface {
480
+ createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
481
+ createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
482
+ getAllBulkImports(options?: any): AxiosPromise<Array<BulkImportDTO>>;
483
+ getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
484
+ getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
485
+ getExampleCsv(options?: any): AxiosPromise<{}>;
486
+ getFailedRowsCsv(id: string, options?: any): AxiosPromise<{}>;
487
+ processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
488
+ }
489
+
402
490
  export declare interface CashDepositDetailsDTO {
403
491
  amount: number;
404
492
  PPM: number;
@@ -473,6 +561,14 @@ export declare interface ChangeInstalmentDatesDTO {
473
561
  targetInstalmentDate: number;
474
562
  }
475
563
 
564
+ export declare function checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ConcurrentTenancyCheckResultDTO>;
565
+
566
+ export declare interface CheckConcurrentTenancyRequestDTO {
567
+ organizationId: string;
568
+ startDate: string;
569
+ tenantEmails: Array<string>;
570
+ }
571
+
476
572
  export declare interface CheckDTO {
477
573
  id: string;
478
574
  referenceId: string;
@@ -740,6 +836,29 @@ export declare enum ClaimItemDTOTypeEnum {
740
836
  OTHER = "OTHER"
741
837
  }
742
838
 
839
+ export declare interface ClaimItemInternalUpdatePreviewDTO {
840
+ claimId: string;
841
+ claimItemId: string;
842
+ newAmount: number;
843
+ action: ClaimItemInternalUpdatePreviewDTOActionEnum;
844
+ currentItemAmount: number;
845
+ projectedItemAmount: number;
846
+ currentClaimAmount: number;
847
+ projectedClaimAmount: number;
848
+ hasFinalProposal: boolean;
849
+ orderUpdateWouldApply: boolean;
850
+ orderUpdateSkippedReasons: Array<string>;
851
+ relatedProposalCount: number;
852
+ relatedDocumentCount: number;
853
+ relatedEvidenceChaserItemCount: number;
854
+ relatedEvidenceChaserReviewCount: number;
855
+ }
856
+
857
+ export declare enum ClaimItemInternalUpdatePreviewDTOActionEnum {
858
+ Deletion = "deletion",
859
+ Reduction = "reduction"
860
+ }
861
+
743
862
  export declare interface ClaimItemProposalDTO {
744
863
  id: string;
745
864
  claimProposalId: string;
@@ -790,32 +909,42 @@ export declare interface ClaimItemProposalsApiInterface {
790
909
  }
791
910
 
792
911
  export declare class ClaimItemsApi extends BaseAPI implements ClaimItemsApiInterface {
912
+ applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
793
913
  createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): AxiosPromise<ClaimItemDTO>;
794
914
  deleteClaimItem(claimId: string, claimItemId: string, options?: any): AxiosPromise<object>;
915
+ dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
795
916
  updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): AxiosPromise<object>;
796
917
  }
797
918
 
798
919
  export declare const ClaimItemsApiAxiosParamCreator: (configuration?: Configuration) => {
920
+ applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): RequestArgs;
799
921
  createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): RequestArgs;
800
922
  deleteClaimItem(claimId: string, claimItemId: string, options?: any): RequestArgs;
923
+ dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): RequestArgs;
801
924
  updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): RequestArgs;
802
925
  };
803
926
 
804
927
  export declare const ClaimItemsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
928
+ applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
805
929
  createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): AxiosPromise<ClaimItemDTO>;
806
930
  deleteClaimItem(claimId: string, claimItemId: string, options?: any): AxiosPromise<object>;
931
+ dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
807
932
  updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): AxiosPromise<object>;
808
933
  };
809
934
 
810
935
  export declare const ClaimItemsApiFp: (configuration?: Configuration) => {
936
+ applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
811
937
  createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemDTO>;
812
938
  deleteClaimItem(claimId: string, claimItemId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
939
+ dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
813
940
  updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
814
941
  };
815
942
 
816
943
  export declare interface ClaimItemsApiInterface {
944
+ applyInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
817
945
  createClaimItem(claimId: string, createClaimItemDTO: CreateClaimItemDTO, options?: any): AxiosPromise<ClaimItemDTO>;
818
946
  deleteClaimItem(claimId: string, claimItemId: string, options?: any): AxiosPromise<object>;
947
+ dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, options?: any): AxiosPromise<ClaimItemInternalUpdatePreviewDTO>;
819
948
  updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, options?: any): AxiosPromise<object>;
820
949
  }
821
950
 
@@ -1207,6 +1336,32 @@ export declare function completeMyDepositsSetup(organizationId: string, myDeposi
1207
1336
 
1208
1337
  export declare function completeOnboardingIntroduction(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
1209
1338
 
1339
+ export declare class ConcurrentTenancyCheckApi extends BaseAPI implements ConcurrentTenancyCheckApiInterface {
1340
+ checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1341
+ }
1342
+
1343
+ export declare const ConcurrentTenancyCheckApiAxiosParamCreator: (configuration?: Configuration) => {
1344
+ checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): RequestArgs;
1345
+ };
1346
+
1347
+ export declare const ConcurrentTenancyCheckApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1348
+ checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1349
+ };
1350
+
1351
+ export declare const ConcurrentTenancyCheckApiFp: (configuration?: Configuration) => {
1352
+ checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1353
+ };
1354
+
1355
+ export declare interface ConcurrentTenancyCheckApiInterface {
1356
+ checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1357
+ }
1358
+
1359
+ export declare interface ConcurrentTenancyCheckResultDTO {
1360
+ isBlocked: boolean;
1361
+ blockedTenants: Array<BlockedTenantDTO>;
1362
+ conflictingReposits: Array<ConflictingRepositDTO>;
1363
+ }
1364
+
1210
1365
  export declare class Configuration {
1211
1366
  apiKey?: string | ((name: string) => string);
1212
1367
  username?: string;
@@ -1239,6 +1394,17 @@ export declare interface ConfirmTenancyDetailsResponseDTO {
1239
1394
  confirmedAt: Date;
1240
1395
  }
1241
1396
 
1397
+ export declare interface ConflictingRepositDTO {
1398
+ tenancyOrderId: string;
1399
+ tenancyId: string;
1400
+ organizationId: string;
1401
+ organizationName: string;
1402
+ startDate: string;
1403
+ daysApart: number;
1404
+ isSameOrganization: boolean;
1405
+ blockedTenants: Array<BlockedTenantDTO>;
1406
+ }
1407
+
1242
1408
  export declare interface CoreAddressDTO {
1243
1409
  roomNumber?: string;
1244
1410
  flatNumber?: string;
@@ -1360,6 +1526,13 @@ export declare interface CreateBeneficiaryDTO {
1360
1526
  companyName?: string;
1361
1527
  }
1362
1528
 
1529
+ export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
1530
+
1531
+ export declare interface CreateBulkImportDTO {
1532
+ name: string;
1533
+ organizationId: string;
1534
+ }
1535
+
1363
1536
  export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
1364
1537
 
1365
1538
  export declare function createClaim(createClaimDTO: CreateClaimDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
@@ -1654,12 +1827,19 @@ export declare enum CreateLandlordDTOLandlordTypeIdEnum {
1654
1827
  }
1655
1828
 
1656
1829
  export declare interface CreateLandlordForRepositDTO {
1657
- firstName: string;
1658
- lastName: string;
1830
+ landlordTypeId?: CreateLandlordForRepositDTOLandlordTypeIdEnum;
1831
+ firstName?: string;
1832
+ lastName?: string;
1833
+ companyName?: string;
1659
1834
  email: string;
1660
1835
  address?: CreateAddressForLandlordDTO;
1661
1836
  }
1662
1837
 
1838
+ export declare enum CreateLandlordForRepositDTOLandlordTypeIdEnum {
1839
+ COMPANY = "COMPANY",
1840
+ SOLEPERSON = "SOLE_PERSON"
1841
+ }
1842
+
1663
1843
  export declare interface CreateLandlordWithOrgDTO {
1664
1844
  firstName?: string;
1665
1845
  lastName?: string;
@@ -1867,6 +2047,14 @@ export declare interface CreateRepositDTO {
1867
2047
  draft?: boolean;
1868
2048
  }
1869
2049
 
2050
+ export declare function createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TemporaryUploadUrlDTO>;
2051
+
2052
+ export declare interface CreateTemporaryUploadUrlDTO {
2053
+ fileName: string;
2054
+ contentType?: string;
2055
+ expiresInSeconds?: number;
2056
+ }
2057
+
1870
2058
  export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
1871
2059
 
1872
2060
  export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
@@ -1913,6 +2101,12 @@ export declare interface CreateTenancyRequestDTO {
1913
2101
  endDate?: string;
1914
2102
  organizationId: string;
1915
2103
  letOnly?: boolean;
2104
+ termType?: CreateTenancyRequestDTOTermTypeEnum;
2105
+ }
2106
+
2107
+ export declare enum CreateTenancyRequestDTOTermTypeEnum {
2108
+ FIXED = "FIXED",
2109
+ PERIODIC = "PERIODIC"
1916
2110
  }
1917
2111
 
1918
2112
  export declare interface CreateTenantForRepositDTO {
@@ -2071,6 +2265,8 @@ export declare function disableTopUps(id: string, configuration?: Configuration,
2071
2265
 
2072
2266
  export declare function disableWarnings(id: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyInventoryDTO>;
2073
2267
 
2268
+ export declare function disconnectMyDeposits(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
2269
+
2074
2270
  export declare function dismissNewProductUpdates(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
2075
2271
 
2076
2272
  export declare function dismissOrganizationMessage(messageId: 'featureBankAccounts' | 'warningBankAccounts', id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationDTO>;
@@ -2119,6 +2315,13 @@ export declare interface DocumentsApiInterface {
2119
2315
  getDocumentsByIds(ids: Array<string>, options?: any): AxiosPromise<Array<DocumentDTO>>;
2120
2316
  }
2121
2317
 
2318
+ export declare interface DownloadUrlDTO {
2319
+ downloadUrl: string;
2320
+ expiresInSeconds: number;
2321
+ }
2322
+
2323
+ export declare function dryRunInternalClaimItemUpdate(claimId: string, claimItemId: string, internalUpdateClaimItemDTO: InternalUpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemInternalUpdatePreviewDTO>;
2324
+
2122
2325
  export declare function duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<IsDuplicateResponse>;
2123
2326
 
2124
2327
  export declare interface DuplicatePaymentMethodCheckDTO {
@@ -2610,17 +2813,23 @@ export declare interface GeneratePlaidLinkTokenResponseDTO {
2610
2813
 
2611
2814
  export declare function getActive(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<string>;
2612
2815
 
2816
+ export declare function getAllBulkImports(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<BulkImportDTO>>;
2817
+
2613
2818
  export declare function getAmountRemaining(id: string, includeInterest: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderAmountRemainingDTO>;
2614
2819
 
2615
2820
  export declare function getArbitrationById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ArbitrationDTO>;
2616
2821
 
2617
2822
  export declare function getBankAccounts(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationBankAccountDTO>>;
2618
2823
 
2824
+ export declare function getBulkImportById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
2825
+
2826
+ export declare function getBulkImportDownloadUrl(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<DownloadUrlDTO>;
2827
+
2619
2828
  export declare function getByTenancyId(tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<TenancyExpiryDTO>>;
2620
2829
 
2621
2830
  export declare function getCashDepositAmount(ppm: number, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CashDepositDTO>;
2622
2831
 
2623
- export declare function getCashDepositScheme(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationCashDepositSchemeDTO>>;
2832
+ export declare function getCashDepositScheme(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationCashDepositSchemeDTO>;
2624
2833
 
2625
2834
  export declare function getChecks(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<CheckDTO>>;
2626
2835
 
@@ -2636,6 +2845,10 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
2636
2845
 
2637
2846
  export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
2638
2847
 
2848
+ export declare function getExampleCsv(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
2849
+
2850
+ export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
2851
+
2639
2852
  export declare function getInstalmentById(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentDTO>;
2640
2853
 
2641
2854
  export declare function getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentPayResponseDTO>;
@@ -2758,6 +2971,7 @@ export declare function healthCheck(configuration?: Configuration, axios?: Axios
2758
2971
  export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebhooksApiInterface {
2759
2972
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
2760
2973
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
2974
+ processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
2761
2975
  processStripeWebhooks(options?: any): AxiosPromise<object>;
2762
2976
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
2763
2977
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
@@ -2767,6 +2981,7 @@ export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebh
2767
2981
  export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
2768
2982
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): RequestArgs;
2769
2983
  processSendGridWebhooks(requestBody: Array<string>, options?: any): RequestArgs;
2984
+ processStripeOffSessionWebhooks(options?: any): RequestArgs;
2770
2985
  processStripeWebhooks(options?: any): RequestArgs;
2771
2986
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): RequestArgs;
2772
2987
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): RequestArgs;
@@ -2776,6 +2991,7 @@ export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Conf
2776
2991
  export declare const IncomingWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2777
2992
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
2778
2993
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
2994
+ processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
2779
2995
  processStripeWebhooks(options?: any): AxiosPromise<object>;
2780
2996
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
2781
2997
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
@@ -2785,6 +3001,7 @@ export declare const IncomingWebhooksApiFactory: (configuration?: Configuration,
2785
3001
  export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
2786
3002
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
2787
3003
  processSendGridWebhooks(requestBody: Array<string>, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3004
+ processStripeOffSessionWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
2788
3005
  processStripeWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
2789
3006
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
2790
3007
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
@@ -2794,6 +3011,7 @@ export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
2794
3011
  export declare interface IncomingWebhooksApiInterface {
2795
3012
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<{}>;
2796
3013
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
3014
+ processStripeOffSessionWebhooks(options?: any): AxiosPromise<{}>;
2797
3015
  processStripeWebhooks(options?: any): AxiosPromise<object>;
2798
3016
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
2799
3017
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<{}>;
@@ -2973,6 +3191,10 @@ export declare interface InternalTeamMembersApiInterface {
2973
3191
  findAll(options?: any): AxiosPromise<InternalTeamMemberDTO>;
2974
3192
  }
2975
3193
 
3194
+ export declare interface InternalUpdateClaimItemDTO {
3195
+ newAmount: number;
3196
+ }
3197
+
2976
3198
  export declare interface IsDuplicateResponse {
2977
3199
  isDuplicate: boolean;
2978
3200
  }
@@ -3106,6 +3328,7 @@ export declare interface MyDepositsExchangeTokenRequestDTO {
3106
3328
 
3107
3329
  export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAuthApiInterface {
3108
3330
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3331
+ disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
3109
3332
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3110
3333
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3111
3334
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
@@ -3114,6 +3337,7 @@ export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAu
3114
3337
 
3115
3338
  export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Configuration) => {
3116
3339
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): RequestArgs;
3340
+ disconnectMyDeposits(organizationId: string, options?: any): RequestArgs;
3117
3341
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): RequestArgs;
3118
3342
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): RequestArgs;
3119
3343
  getMyDepositsCompanyOffices(organizationId: string, options?: any): RequestArgs;
@@ -3122,6 +3346,7 @@ export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Confi
3122
3346
 
3123
3347
  export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3124
3348
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3349
+ disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
3125
3350
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3126
3351
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3127
3352
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
@@ -3130,6 +3355,7 @@ export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration,
3130
3355
 
3131
3356
  export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
3132
3357
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3358
+ disconnectMyDeposits(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
3133
3359
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3134
3360
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3135
3361
  getMyDepositsCompanyOffices(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
@@ -3138,6 +3364,7 @@ export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
3138
3364
 
3139
3365
  export declare interface MyDepositsOAuthApiInterface {
3140
3366
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3367
+ disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<{}>;
3141
3368
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3142
3369
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3143
3370
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
@@ -3146,6 +3373,16 @@ export declare interface MyDepositsOAuthApiInterface {
3146
3373
 
3147
3374
  export declare interface MyDepositsOnboardingStatusResponseDTO {
3148
3375
  onboardingStatus: MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum;
3376
+ connectedUserName?: string;
3377
+ companyName?: string;
3378
+ officeName?: string;
3379
+ accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
3380
+ }
3381
+
3382
+ export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
3383
+ AGENT = "AGENT",
3384
+ LANDLORD = "LANDLORD",
3385
+ CORPORATELANDLORD = "CORPORATE_LANDLORD"
3149
3386
  }
3150
3387
 
3151
3388
  export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
@@ -3244,7 +3481,7 @@ export declare interface OneTimeSessionTokenDTO {
3244
3481
  updatedAt: string;
3245
3482
  }
3246
3483
 
3247
- export declare function optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<SearchTenancyOrderResultsDTO>;
3484
+ export declare function optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<SearchTenancyOrderResultsDTO>;
3248
3485
 
3249
3486
  export declare function optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<SearchClaimResultsDTO>;
3250
3487
 
@@ -3564,7 +3801,7 @@ export declare interface OrganizationBankAccountsApiInterface {
3564
3801
 
3565
3802
  export declare interface OrganizationCashDepositSchemeDTO {
3566
3803
  id: string;
3567
- cashDepositSchemeId: string;
3804
+ cashDepositScheme: CashDepositSchemeDTO;
3568
3805
  createdAt: string;
3569
3806
  updatedAt: string;
3570
3807
  }
@@ -3741,7 +3978,7 @@ export declare class OrganizationsApi extends BaseAPI implements OrganizationsAp
3741
3978
  fetchTenanciesByOrganizationId(id: string, options?: any): AxiosPromise<TenancyDTO[]>;
3742
3979
  fetchUsersByOrganizationId(id: string, options?: any): AxiosPromise<UserDTO[]>;
3743
3980
  findOrganizationById(id: string, options?: any): AxiosPromise<OrganizationWithCashDepositDTO>;
3744
- getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO[]>;
3981
+ getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO>;
3745
3982
  getChildren(id: string, options?: any): AxiosPromise<OrganizationDTO[]>;
3746
3983
  getOrganizationMetrics(organizationId: string, options?: any): AxiosPromise<OrganizationMetricsDTO>;
3747
3984
  getOrganizationVerticals(id: string, options?: any): AxiosPromise<OrganizationVerticalDTO[]>;
@@ -3801,7 +4038,7 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
3801
4038
  fetchTenanciesByOrganizationId(id: string, options?: any): AxiosPromise<TenancyDTO[]>;
3802
4039
  fetchUsersByOrganizationId(id: string, options?: any): AxiosPromise<UserDTO[]>;
3803
4040
  findOrganizationById(id: string, options?: any): AxiosPromise<OrganizationWithCashDepositDTO>;
3804
- getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO[]>;
4041
+ getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO>;
3805
4042
  getChildren(id: string, options?: any): AxiosPromise<OrganizationDTO[]>;
3806
4043
  getOrganizationMetrics(organizationId: string, options?: any): AxiosPromise<OrganizationMetricsDTO>;
3807
4044
  getOrganizationVerticals(id: string, options?: any): AxiosPromise<OrganizationVerticalDTO[]>;
@@ -3831,7 +4068,7 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
3831
4068
  fetchTenanciesByOrganizationId(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TenancyDTO>>;
3832
4069
  fetchUsersByOrganizationId(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserDTO>>;
3833
4070
  findOrganizationById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationWithCashDepositDTO>;
3834
- getCashDepositScheme(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrganizationCashDepositSchemeDTO>>;
4071
+ getCashDepositScheme(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationCashDepositSchemeDTO>;
3835
4072
  getChildren(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrganizationDTO>>;
3836
4073
  getOrganizationMetrics(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationMetricsDTO>;
3837
4074
  getOrganizationVerticals(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrganizationVerticalDTO>>;
@@ -3861,7 +4098,7 @@ export declare interface OrganizationsApiInterface {
3861
4098
  fetchTenanciesByOrganizationId(id: string, options?: any): AxiosPromise<Array<TenancyDTO>>;
3862
4099
  fetchUsersByOrganizationId(id: string, options?: any): AxiosPromise<Array<UserDTO>>;
3863
4100
  findOrganizationById(id: string, options?: any): AxiosPromise<OrganizationWithCashDepositDTO>;
3864
- getCashDepositScheme(id: string, options?: any): AxiosPromise<Array<OrganizationCashDepositSchemeDTO>>;
4101
+ getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO>;
3865
4102
  getChildren(id: string, options?: any): AxiosPromise<Array<OrganizationDTO>>;
3866
4103
  getOrganizationMetrics(organizationId: string, options?: any): AxiosPromise<OrganizationMetricsDTO>;
3867
4104
  getOrganizationVerticals(id: string, options?: any): AxiosPromise<Array<OrganizationVerticalDTO>>;
@@ -3898,6 +4135,7 @@ export declare enum OrganizationSettingsDTOCommissionRuleEnum {
3898
4135
  FEEPERCENTAGE30 = "FEE_PERCENTAGE_30",
3899
4136
  FEEPERCENTAGE25 = "FEE_PERCENTAGE_25",
3900
4137
  FEEPERCENTAGE20 = "FEE_PERCENTAGE_20",
4138
+ FEEPERCENTAGE17POINT5 = "FEE_PERCENTAGE_17_POINT_5",
3901
4139
  FEEPERCENTAGE15 = "FEE_PERCENTAGE_15",
3902
4140
  FEEPERCENTAGE12POINT5 = "FEE_PERCENTAGE_12_POINT_5",
3903
4141
  FEEPERCENTAGE10 = "FEE_PERCENTAGE_10",
@@ -4370,7 +4608,12 @@ export declare interface PlaidWebhookDto {
4370
4608
 
4371
4609
  export declare enum PlaidWebhookDtoNewPaymentStatusEnum {
4372
4610
  EXECUTED = "PAYMENT_STATUS_EXECUTED",
4373
- INITIATED = "PAYMENT_STATUS_INITIATED"
4611
+ INITIATED = "PAYMENT_STATUS_INITIATED",
4612
+ INSUFFICIENTFUNDS = "PAYMENT_STATUS_INSUFFICIENT_FUNDS",
4613
+ FAILED = "PAYMENT_STATUS_FAILED",
4614
+ BLOCKED = "PAYMENT_STATUS_BLOCKED",
4615
+ REJECTED = "PAYMENT_STATUS_REJECTED",
4616
+ CANCELLED = "PAYMENT_STATUS_CANCELLED"
4374
4617
  }
4375
4618
 
4376
4619
  export declare enum PlaidWebhookDtoStatusEnum {
@@ -4579,6 +4822,8 @@ export declare function processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, c
4579
4822
 
4580
4823
  export declare function processSendGridWebhooks(requestBody: Array<string>, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4581
4824
 
4825
+ export declare function processStripeOffSessionWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
4826
+
4582
4827
  export declare function processStripeWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4583
4828
 
4584
4829
  export declare function processTwilioIvrWebhooks(ivrCallId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
@@ -4587,6 +4832,12 @@ export declare function processTwilioIvrWebhooksWithGatherAction(ivrCallId: stri
4587
4832
 
4588
4833
  export declare function processTwilioVoicemailWebhook(from: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4589
4834
 
4835
+ export declare function processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
4836
+
4837
+ export declare interface ProcessUploadFileDTO {
4838
+ sourceKey: string;
4839
+ }
4840
+
4590
4841
  export declare interface ProductDTO {
4591
4842
  id: string;
4592
4843
  name: string;
@@ -4692,10 +4943,12 @@ export declare enum QueueMessageDTOCronNameEnum {
4692
4943
  DAILYEVIDENCECHASERSUPPLIERDRAFTREMINDER = "DAILY_EVIDENCE_CHASER_SUPPLIER_DRAFT_REMINDER",
4693
4944
  DAILYARBITRATIONSENTNOTIFICATION = "DAILY_ARBITRATION_SENT_NOTIFICATION",
4694
4945
  DAILYIVRCALLPROCESSING = "DAILY_IVR_CALL_PROCESSING",
4946
+ DAILYALBMETRICSCOLLECTION = "DAILY_ALB_METRICS_COLLECTION",
4695
4947
  WEEKLYPENDINGREPOSITPASTSTARTDATEREMINDER = "WEEKLY_PENDING_REPOSIT_PAST_START_DATE_REMINDER",
4696
4948
  POLLPENDINGCASHDEPOSITS = "POLL_PENDING_CASH_DEPOSITS",
4697
4949
  REFRESHMYDEPOSITSACCESSTOKENS = "REFRESH_MY_DEPOSITS_ACCESS_TOKENS",
4698
- RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS"
4950
+ RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
4951
+ PROCESSSQSWORKEROUTBOX = "PROCESS_SQS_WORKER_OUTBOX"
4699
4952
  }
4700
4953
 
4701
4954
  export declare enum QueueMessageDTOTypeEnum {
@@ -4708,6 +4961,9 @@ export declare enum QueueMessageDTOTypeEnum {
4708
4961
  AUTORESPONDTENANT = "AUTO_RESPOND_TENANT",
4709
4962
  AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
4710
4963
  PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
4964
+ PROCESSOFFSESSIONPAYMENTATTEMPTFAILED = "PROCESS_OFF_SESSION_PAYMENT_ATTEMPT_FAILED",
4965
+ PROCESSOFFSESSIONPAYMENTSUCCEEDED = "PROCESS_OFF_SESSION_PAYMENT_SUCCEEDED",
4966
+ PROCESSOFFSESSIONPAYMENTFAILED = "PROCESS_OFF_SESSION_PAYMENT_FAILED",
4711
4967
  PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
4712
4968
  PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
4713
4969
  PROCESSSTRIPEDISPUTECREATED = "PROCESS_STRIPE_DISPUTE_CREATED",
@@ -4752,7 +5008,9 @@ export declare enum QueueMessageDTOTypeEnum {
4752
5008
  HANDLEPENDINGCASHDEPOSIT = "HANDLE_PENDING_CASH_DEPOSIT",
4753
5009
  REFRESHMYDEPOSITSACCESSTOKEN = "REFRESH_MY_DEPOSITS_ACCESS_TOKEN",
4754
5010
  RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
4755
- MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY"
5011
+ MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY",
5012
+ CREATEXEROCONTACTFORORGANIZATION = "CREATE_XERO_CONTACT_FOR_ORGANIZATION",
5013
+ PROCESSBULKIMPORTFILE = "PROCESS_BULK_IMPORT_FILE"
4756
5014
  }
4757
5015
 
4758
5016
  export declare function readyForArbitrateClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
@@ -5012,11 +5270,18 @@ export declare interface RepositFeeDTO {
5012
5270
  }
5013
5271
 
5014
5272
  export declare interface RepositLandlordDTO {
5015
- firstName: string;
5016
- lastName: string;
5273
+ landlordTypeId: RepositLandlordDTOLandlordTypeIdEnum;
5274
+ firstName?: string;
5275
+ lastName?: string;
5276
+ companyName?: string;
5017
5277
  email: string;
5018
5278
  }
5019
5279
 
5280
+ export declare enum RepositLandlordDTOLandlordTypeIdEnum {
5281
+ COMPANY = "COMPANY",
5282
+ SOLEPERSON = "SOLE_PERSON"
5283
+ }
5284
+
5020
5285
  export declare interface RepositOfferDTO {
5021
5286
  id: string;
5022
5287
  PPM: number;
@@ -5460,6 +5725,42 @@ export declare interface SearchUserResultsDTO {
5460
5725
  results: Array<UserDTO>;
5461
5726
  }
5462
5727
 
5728
+ export declare function seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
5729
+
5730
+ export declare interface SeedCashDepositDTO {
5731
+ organizationId: string;
5732
+ userId: string;
5733
+ propertyId: string;
5734
+ ppm: number;
5735
+ amount: number;
5736
+ startDate: string;
5737
+ letOnly: boolean;
5738
+ tenantFirstName: string;
5739
+ tenantLastName: string;
5740
+ tenantEmail: string;
5741
+ tenantMobileNumber: string;
5742
+ }
5743
+
5744
+ export declare class SeedCashDepositsApi extends BaseAPI implements SeedCashDepositsApiInterface {
5745
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<Response>;
5746
+ }
5747
+
5748
+ export declare const SeedCashDepositsApiAxiosParamCreator: (configuration?: Configuration) => {
5749
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): RequestArgs;
5750
+ };
5751
+
5752
+ export declare const SeedCashDepositsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5753
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<Response>;
5754
+ };
5755
+
5756
+ export declare const SeedCashDepositsApiFp: (configuration?: Configuration) => {
5757
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
5758
+ };
5759
+
5760
+ export declare interface SeedCashDepositsApiInterface {
5761
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<{}>;
5762
+ }
5763
+
5463
5764
  export declare function seedReposit(seedRepositDTO: SeedRepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
5464
5765
 
5465
5766
  export declare interface SeedRepositDTO {
@@ -5587,6 +5888,13 @@ export declare interface SuppliersApiInterface {
5587
5888
  getSupplierAgents(id: string, options?: any): AxiosPromise<Array<RepositAgentDTO>>;
5588
5889
  }
5589
5890
 
5891
+ export declare interface TemporaryUploadUrlDTO {
5892
+ bucket: string;
5893
+ key: string;
5894
+ uploadUrl: string;
5895
+ expiresInSeconds: number;
5896
+ }
5897
+
5590
5898
  export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterface {
5591
5899
  closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
5592
5900
  createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
@@ -5743,6 +6051,7 @@ export declare interface TenancyDTO {
5743
6051
  tenants: Array<TenantDTO>;
5744
6052
  letOnly: boolean;
5745
6053
  isNewTenancy?: boolean;
6054
+ termType?: TenancyDTOTermTypeEnum;
5746
6055
  checkout?: CheckoutDTO;
5747
6056
  completedAt?: string;
5748
6057
  outcomeDeadline?: string;
@@ -5761,6 +6070,11 @@ export declare interface TenancyDTO {
5761
6070
  preTenancyDocuments?: Array<PreTenancyDocumentDTO>;
5762
6071
  }
5763
6072
 
6073
+ export declare enum TenancyDTOTermTypeEnum {
6074
+ FIXED = "FIXED",
6075
+ PERIODIC = "PERIODIC"
6076
+ }
6077
+
5764
6078
  export declare class TenancyExpiriesApi extends BaseAPI implements TenancyExpiriesApiInterface {
5765
6079
  createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, options?: any): AxiosPromise<TenancyExpiryDTO>;
5766
6080
  getByTenancyId(tenancyId: string, options?: any): AxiosPromise<TenancyExpiryDTO[]>;
@@ -5951,7 +6265,7 @@ export declare interface TenancyOrderNotesApiInterface {
5951
6265
 
5952
6266
  export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersApiInterface {
5953
6267
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5954
- optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
6268
+ optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
5955
6269
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5956
6270
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5957
6271
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
@@ -5960,7 +6274,7 @@ export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersAp
5960
6274
 
5961
6275
  export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configuration) => {
5962
6276
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): RequestArgs;
5963
- optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): RequestArgs;
6277
+ optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, options?: any): RequestArgs;
5964
6278
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): RequestArgs;
5965
6279
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): RequestArgs;
5966
6280
  sendOverdueChasers(id: string, options?: any): RequestArgs;
@@ -5969,7 +6283,7 @@ export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configu
5969
6283
 
5970
6284
  export declare const TenancyOrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5971
6285
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5972
- optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
6286
+ optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
5973
6287
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5974
6288
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5975
6289
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
@@ -5978,7 +6292,7 @@ export declare const TenancyOrdersApiFactory: (configuration?: Configuration, ba
5978
6292
 
5979
6293
  export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
5980
6294
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5981
- optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchTenancyOrderResultsDTO>;
6295
+ optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchTenancyOrderResultsDTO>;
5982
6296
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5983
6297
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5984
6298
  sendOverdueChasers(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
@@ -5987,7 +6301,7 @@ export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
5987
6301
 
5988
6302
  export declare interface TenancyOrdersApiInterface {
5989
6303
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5990
- optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
6304
+ optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, isNewTenancy?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
5991
6305
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5992
6306
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5993
6307
  sendOverdueChasers(id: string, options?: any): AxiosPromise<{}>;
@@ -6000,6 +6314,7 @@ export declare interface TenancyOrderWithTenancyAndOrderCustomersDTO {
6000
6314
  tenancy: TenancyWithCheckoutAndClaimDTO;
6001
6315
  tenancyOrderNotes?: Array<TenancyOrderNoteDTO>;
6002
6316
  repositOfferId?: string;
6317
+ outstandingChargesTenantEmails?: Array<string>;
6003
6318
  createdAt: string;
6004
6319
  updatedAt: string;
6005
6320
  deletedAt: string;
@@ -6011,6 +6326,7 @@ export declare interface TenancyOrderWithTenancyDTO {
6011
6326
  id: string;
6012
6327
  order: OrderDTO;
6013
6328
  tenancy: TenancyWithCheckoutAndClaimDTO;
6329
+ outstandingChargesTenantEmails?: Array<string>;
6014
6330
  repositOfferId?: string;
6015
6331
  createdAt: string;
6016
6332
  updatedAt: string;
@@ -6095,6 +6411,7 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
6095
6411
  tenants: Array<TenantDTO>;
6096
6412
  letOnly: boolean;
6097
6413
  isNewTenancy?: boolean;
6414
+ termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
6098
6415
  checkout?: CheckoutWithClaimDTO;
6099
6416
  completedAt?: string;
6100
6417
  outcomeDeadline?: string;
@@ -6114,6 +6431,11 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
6114
6431
  hasIncompleteTransfers: boolean;
6115
6432
  }
6116
6433
 
6434
+ export declare enum TenancyWithCheckoutAndClaimDTOTermTypeEnum {
6435
+ FIXED = "FIXED",
6436
+ PERIODIC = "PERIODIC"
6437
+ }
6438
+
6117
6439
  export declare function tenantConfirmation(token: string, response: 'CONFIRMED' | 'UNCONFIRMED', tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
6118
6440
 
6119
6441
  export declare interface TenantDTO {
@@ -6446,6 +6768,12 @@ export declare interface UpdateTenancyRequestDTO {
6446
6768
  endDate?: string;
6447
6769
  letOnly?: boolean;
6448
6770
  isNewTenancy?: boolean;
6771
+ termType?: UpdateTenancyRequestDTOTermTypeEnum;
6772
+ }
6773
+
6774
+ export declare enum UpdateTenancyRequestDTOTermTypeEnum {
6775
+ FIXED = "FIXED",
6776
+ PERIODIC = "PERIODIC"
6449
6777
  }
6450
6778
 
6451
6779
  export declare function updateTenantDisputeMessage(claimId: string, updateTenantDisputeMessageDTO: UpdateTenantDisputeMessageDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;