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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts 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 applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemCorrectionResponseDTO>;
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;
@@ -672,6 +768,54 @@ export declare enum ClaimDTOStatusEnum {
672
768
  INSURANCECLAIM = "INSURANCE_CLAIM"
673
769
  }
674
770
 
771
+ export declare interface ClaimItemCorrectionResponseDTO {
772
+ claimId: string;
773
+ claimItemId: string;
774
+ newAmount: number;
775
+ action: ClaimItemCorrectionResponseDTOActionEnum;
776
+ currentItemAmount: number;
777
+ projectedItemAmount: number;
778
+ currentClaimAmount: number;
779
+ projectedClaimAmount: number;
780
+ hasFinalProposal: boolean;
781
+ orderUpdateWouldApply: boolean;
782
+ orderUpdateSkippedReasons: Array<string>;
783
+ relatedProposalCount: number;
784
+ relatedDocumentCount: number;
785
+ relatedEvidenceChaserItemCount: number;
786
+ relatedEvidenceChaserReviewCount: number;
787
+ }
788
+
789
+ export declare enum ClaimItemCorrectionResponseDTOActionEnum {
790
+ Deletion = "deletion",
791
+ Reduction = "reduction"
792
+ }
793
+
794
+ export declare class ClaimItemCorrectionsApi extends BaseAPI implements ClaimItemCorrectionsApiInterface {
795
+ applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
796
+ dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
797
+ }
798
+
799
+ export declare const ClaimItemCorrectionsApiAxiosParamCreator: (configuration?: Configuration) => {
800
+ applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): RequestArgs;
801
+ dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): RequestArgs;
802
+ };
803
+
804
+ export declare const ClaimItemCorrectionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
805
+ applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
806
+ dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
807
+ };
808
+
809
+ export declare const ClaimItemCorrectionsApiFp: (configuration?: Configuration) => {
810
+ applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemCorrectionResponseDTO>;
811
+ dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemCorrectionResponseDTO>;
812
+ };
813
+
814
+ export declare interface ClaimItemCorrectionsApiInterface {
815
+ applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
816
+ dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
817
+ }
818
+
675
819
  export declare interface ClaimItemDocumentDTO {
676
820
  document: DocumentDTO;
677
821
  id: string;
@@ -1207,6 +1351,32 @@ export declare function completeMyDepositsSetup(organizationId: string, myDeposi
1207
1351
 
1208
1352
  export declare function completeOnboardingIntroduction(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
1209
1353
 
1354
+ export declare class ConcurrentTenancyCheckApi extends BaseAPI implements ConcurrentTenancyCheckApiInterface {
1355
+ checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1356
+ }
1357
+
1358
+ export declare const ConcurrentTenancyCheckApiAxiosParamCreator: (configuration?: Configuration) => {
1359
+ checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): RequestArgs;
1360
+ };
1361
+
1362
+ export declare const ConcurrentTenancyCheckApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1363
+ checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1364
+ };
1365
+
1366
+ export declare const ConcurrentTenancyCheckApiFp: (configuration?: Configuration) => {
1367
+ checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1368
+ };
1369
+
1370
+ export declare interface ConcurrentTenancyCheckApiInterface {
1371
+ checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1372
+ }
1373
+
1374
+ export declare interface ConcurrentTenancyCheckResultDTO {
1375
+ isBlocked: boolean;
1376
+ blockedTenants: Array<BlockedTenantDTO>;
1377
+ conflictingReposits: Array<ConflictingRepositDTO>;
1378
+ }
1379
+
1210
1380
  export declare class Configuration {
1211
1381
  apiKey?: string | ((name: string) => string);
1212
1382
  username?: string;
@@ -1239,6 +1409,17 @@ export declare interface ConfirmTenancyDetailsResponseDTO {
1239
1409
  confirmedAt: Date;
1240
1410
  }
1241
1411
 
1412
+ export declare interface ConflictingRepositDTO {
1413
+ tenancyOrderId: string;
1414
+ tenancyId: string;
1415
+ organizationId: string;
1416
+ organizationName: string;
1417
+ startDate: string;
1418
+ daysApart: number;
1419
+ isSameOrganization: boolean;
1420
+ blockedTenants: Array<BlockedTenantDTO>;
1421
+ }
1422
+
1242
1423
  export declare interface CoreAddressDTO {
1243
1424
  roomNumber?: string;
1244
1425
  flatNumber?: string;
@@ -1360,6 +1541,13 @@ export declare interface CreateBeneficiaryDTO {
1360
1541
  companyName?: string;
1361
1542
  }
1362
1543
 
1544
+ export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
1545
+
1546
+ export declare interface CreateBulkImportDTO {
1547
+ name: string;
1548
+ organizationId: string;
1549
+ }
1550
+
1363
1551
  export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
1364
1552
 
1365
1553
  export declare function createClaim(createClaimDTO: CreateClaimDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
@@ -1654,12 +1842,19 @@ export declare enum CreateLandlordDTOLandlordTypeIdEnum {
1654
1842
  }
1655
1843
 
1656
1844
  export declare interface CreateLandlordForRepositDTO {
1657
- firstName: string;
1658
- lastName: string;
1845
+ landlordTypeId?: CreateLandlordForRepositDTOLandlordTypeIdEnum;
1846
+ firstName?: string;
1847
+ lastName?: string;
1848
+ companyName?: string;
1659
1849
  email: string;
1660
1850
  address?: CreateAddressForLandlordDTO;
1661
1851
  }
1662
1852
 
1853
+ export declare enum CreateLandlordForRepositDTOLandlordTypeIdEnum {
1854
+ COMPANY = "COMPANY",
1855
+ SOLEPERSON = "SOLE_PERSON"
1856
+ }
1857
+
1663
1858
  export declare interface CreateLandlordWithOrgDTO {
1664
1859
  firstName?: string;
1665
1860
  lastName?: string;
@@ -1867,6 +2062,14 @@ export declare interface CreateRepositDTO {
1867
2062
  draft?: boolean;
1868
2063
  }
1869
2064
 
2065
+ export declare function createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TemporaryUploadUrlDTO>;
2066
+
2067
+ export declare interface CreateTemporaryUploadUrlDTO {
2068
+ fileName: string;
2069
+ contentType?: string;
2070
+ expiresInSeconds?: number;
2071
+ }
2072
+
1870
2073
  export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
1871
2074
 
1872
2075
  export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
@@ -1913,6 +2116,12 @@ export declare interface CreateTenancyRequestDTO {
1913
2116
  endDate?: string;
1914
2117
  organizationId: string;
1915
2118
  letOnly?: boolean;
2119
+ termType?: CreateTenancyRequestDTOTermTypeEnum;
2120
+ }
2121
+
2122
+ export declare enum CreateTenancyRequestDTOTermTypeEnum {
2123
+ FIXED = "FIXED",
2124
+ PERIODIC = "PERIODIC"
1916
2125
  }
1917
2126
 
1918
2127
  export declare interface CreateTenantForRepositDTO {
@@ -2071,6 +2280,8 @@ export declare function disableTopUps(id: string, configuration?: Configuration,
2071
2280
 
2072
2281
  export declare function disableWarnings(id: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyInventoryDTO>;
2073
2282
 
2283
+ export declare function disconnectMyDeposits(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
2284
+
2074
2285
  export declare function dismissNewProductUpdates(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
2075
2286
 
2076
2287
  export declare function dismissOrganizationMessage(messageId: 'featureBankAccounts' | 'warningBankAccounts', id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationDTO>;
@@ -2119,6 +2330,13 @@ export declare interface DocumentsApiInterface {
2119
2330
  getDocumentsByIds(ids: Array<string>, options?: any): AxiosPromise<Array<DocumentDTO>>;
2120
2331
  }
2121
2332
 
2333
+ export declare interface DownloadUrlDTO {
2334
+ downloadUrl: string;
2335
+ expiresInSeconds: number;
2336
+ }
2337
+
2338
+ export declare function dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemCorrectionResponseDTO>;
2339
+
2122
2340
  export declare function duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<IsDuplicateResponse>;
2123
2341
 
2124
2342
  export declare interface DuplicatePaymentMethodCheckDTO {
@@ -2610,17 +2828,23 @@ export declare interface GeneratePlaidLinkTokenResponseDTO {
2610
2828
 
2611
2829
  export declare function getActive(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<string>;
2612
2830
 
2831
+ export declare function getAllBulkImports(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<BulkImportDTO>>;
2832
+
2613
2833
  export declare function getAmountRemaining(id: string, includeInterest: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderAmountRemainingDTO>;
2614
2834
 
2615
2835
  export declare function getArbitrationById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ArbitrationDTO>;
2616
2836
 
2617
2837
  export declare function getBankAccounts(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationBankAccountDTO>>;
2618
2838
 
2839
+ export declare function getBulkImportById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
2840
+
2841
+ export declare function getBulkImportDownloadUrl(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<DownloadUrlDTO>;
2842
+
2619
2843
  export declare function getByTenancyId(tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<TenancyExpiryDTO>>;
2620
2844
 
2621
2845
  export declare function getCashDepositAmount(ppm: number, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CashDepositDTO>;
2622
2846
 
2623
- export declare function getCashDepositScheme(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationCashDepositSchemeDTO>>;
2847
+ export declare function getCashDepositScheme(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationCashDepositSchemeDTO>;
2624
2848
 
2625
2849
  export declare function getChecks(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<CheckDTO>>;
2626
2850
 
@@ -2636,6 +2860,10 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
2636
2860
 
2637
2861
  export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
2638
2862
 
2863
+ export declare function getExampleCsv(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
2864
+
2865
+ export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
2866
+
2639
2867
  export declare function getInstalmentById(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentDTO>;
2640
2868
 
2641
2869
  export declare function getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentPayResponseDTO>;
@@ -2758,6 +2986,7 @@ export declare function healthCheck(configuration?: Configuration, axios?: Axios
2758
2986
  export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebhooksApiInterface {
2759
2987
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
2760
2988
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
2989
+ processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
2761
2990
  processStripeWebhooks(options?: any): AxiosPromise<object>;
2762
2991
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
2763
2992
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
@@ -2767,6 +2996,7 @@ export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebh
2767
2996
  export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
2768
2997
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): RequestArgs;
2769
2998
  processSendGridWebhooks(requestBody: Array<string>, options?: any): RequestArgs;
2999
+ processStripeOffSessionWebhooks(options?: any): RequestArgs;
2770
3000
  processStripeWebhooks(options?: any): RequestArgs;
2771
3001
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): RequestArgs;
2772
3002
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): RequestArgs;
@@ -2776,6 +3006,7 @@ export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Conf
2776
3006
  export declare const IncomingWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2777
3007
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
2778
3008
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
3009
+ processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
2779
3010
  processStripeWebhooks(options?: any): AxiosPromise<object>;
2780
3011
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
2781
3012
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
@@ -2785,6 +3016,7 @@ export declare const IncomingWebhooksApiFactory: (configuration?: Configuration,
2785
3016
  export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
2786
3017
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
2787
3018
  processSendGridWebhooks(requestBody: Array<string>, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3019
+ processStripeOffSessionWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
2788
3020
  processStripeWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
2789
3021
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
2790
3022
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
@@ -2794,6 +3026,7 @@ export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
2794
3026
  export declare interface IncomingWebhooksApiInterface {
2795
3027
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<{}>;
2796
3028
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
3029
+ processStripeOffSessionWebhooks(options?: any): AxiosPromise<{}>;
2797
3030
  processStripeWebhooks(options?: any): AxiosPromise<object>;
2798
3031
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
2799
3032
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<{}>;
@@ -3106,6 +3339,7 @@ export declare interface MyDepositsExchangeTokenRequestDTO {
3106
3339
 
3107
3340
  export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAuthApiInterface {
3108
3341
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3342
+ disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
3109
3343
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3110
3344
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3111
3345
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
@@ -3114,6 +3348,7 @@ export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAu
3114
3348
 
3115
3349
  export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Configuration) => {
3116
3350
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): RequestArgs;
3351
+ disconnectMyDeposits(organizationId: string, options?: any): RequestArgs;
3117
3352
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): RequestArgs;
3118
3353
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): RequestArgs;
3119
3354
  getMyDepositsCompanyOffices(organizationId: string, options?: any): RequestArgs;
@@ -3122,6 +3357,7 @@ export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Confi
3122
3357
 
3123
3358
  export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3124
3359
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3360
+ disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
3125
3361
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3126
3362
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3127
3363
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
@@ -3130,6 +3366,7 @@ export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration,
3130
3366
 
3131
3367
  export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
3132
3368
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3369
+ disconnectMyDeposits(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
3133
3370
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3134
3371
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3135
3372
  getMyDepositsCompanyOffices(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
@@ -3138,6 +3375,7 @@ export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
3138
3375
 
3139
3376
  export declare interface MyDepositsOAuthApiInterface {
3140
3377
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3378
+ disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<{}>;
3141
3379
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3142
3380
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3143
3381
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
@@ -3146,6 +3384,16 @@ export declare interface MyDepositsOAuthApiInterface {
3146
3384
 
3147
3385
  export declare interface MyDepositsOnboardingStatusResponseDTO {
3148
3386
  onboardingStatus: MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum;
3387
+ connectedUserName?: string;
3388
+ companyName?: string;
3389
+ officeName?: string;
3390
+ accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
3391
+ }
3392
+
3393
+ export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
3394
+ AGENT = "AGENT",
3395
+ LANDLORD = "LANDLORD",
3396
+ CORPORATELANDLORD = "CORPORATE_LANDLORD"
3149
3397
  }
3150
3398
 
3151
3399
  export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
@@ -3244,7 +3492,7 @@ export declare interface OneTimeSessionTokenDTO {
3244
3492
  updatedAt: string;
3245
3493
  }
3246
3494
 
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>;
3495
+ 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
3496
 
3249
3497
  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
3498
 
@@ -3564,7 +3812,7 @@ export declare interface OrganizationBankAccountsApiInterface {
3564
3812
 
3565
3813
  export declare interface OrganizationCashDepositSchemeDTO {
3566
3814
  id: string;
3567
- cashDepositSchemeId: string;
3815
+ cashDepositScheme: CashDepositSchemeDTO;
3568
3816
  createdAt: string;
3569
3817
  updatedAt: string;
3570
3818
  }
@@ -3741,7 +3989,7 @@ export declare class OrganizationsApi extends BaseAPI implements OrganizationsAp
3741
3989
  fetchTenanciesByOrganizationId(id: string, options?: any): AxiosPromise<TenancyDTO[]>;
3742
3990
  fetchUsersByOrganizationId(id: string, options?: any): AxiosPromise<UserDTO[]>;
3743
3991
  findOrganizationById(id: string, options?: any): AxiosPromise<OrganizationWithCashDepositDTO>;
3744
- getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO[]>;
3992
+ getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO>;
3745
3993
  getChildren(id: string, options?: any): AxiosPromise<OrganizationDTO[]>;
3746
3994
  getOrganizationMetrics(organizationId: string, options?: any): AxiosPromise<OrganizationMetricsDTO>;
3747
3995
  getOrganizationVerticals(id: string, options?: any): AxiosPromise<OrganizationVerticalDTO[]>;
@@ -3801,7 +4049,7 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
3801
4049
  fetchTenanciesByOrganizationId(id: string, options?: any): AxiosPromise<TenancyDTO[]>;
3802
4050
  fetchUsersByOrganizationId(id: string, options?: any): AxiosPromise<UserDTO[]>;
3803
4051
  findOrganizationById(id: string, options?: any): AxiosPromise<OrganizationWithCashDepositDTO>;
3804
- getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO[]>;
4052
+ getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO>;
3805
4053
  getChildren(id: string, options?: any): AxiosPromise<OrganizationDTO[]>;
3806
4054
  getOrganizationMetrics(organizationId: string, options?: any): AxiosPromise<OrganizationMetricsDTO>;
3807
4055
  getOrganizationVerticals(id: string, options?: any): AxiosPromise<OrganizationVerticalDTO[]>;
@@ -3831,7 +4079,7 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
3831
4079
  fetchTenanciesByOrganizationId(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TenancyDTO>>;
3832
4080
  fetchUsersByOrganizationId(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserDTO>>;
3833
4081
  findOrganizationById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationWithCashDepositDTO>;
3834
- getCashDepositScheme(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrganizationCashDepositSchemeDTO>>;
4082
+ getCashDepositScheme(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationCashDepositSchemeDTO>;
3835
4083
  getChildren(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrganizationDTO>>;
3836
4084
  getOrganizationMetrics(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationMetricsDTO>;
3837
4085
  getOrganizationVerticals(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrganizationVerticalDTO>>;
@@ -3861,7 +4109,7 @@ export declare interface OrganizationsApiInterface {
3861
4109
  fetchTenanciesByOrganizationId(id: string, options?: any): AxiosPromise<Array<TenancyDTO>>;
3862
4110
  fetchUsersByOrganizationId(id: string, options?: any): AxiosPromise<Array<UserDTO>>;
3863
4111
  findOrganizationById(id: string, options?: any): AxiosPromise<OrganizationWithCashDepositDTO>;
3864
- getCashDepositScheme(id: string, options?: any): AxiosPromise<Array<OrganizationCashDepositSchemeDTO>>;
4112
+ getCashDepositScheme(id: string, options?: any): AxiosPromise<OrganizationCashDepositSchemeDTO>;
3865
4113
  getChildren(id: string, options?: any): AxiosPromise<Array<OrganizationDTO>>;
3866
4114
  getOrganizationMetrics(organizationId: string, options?: any): AxiosPromise<OrganizationMetricsDTO>;
3867
4115
  getOrganizationVerticals(id: string, options?: any): AxiosPromise<Array<OrganizationVerticalDTO>>;
@@ -3898,6 +4146,7 @@ export declare enum OrganizationSettingsDTOCommissionRuleEnum {
3898
4146
  FEEPERCENTAGE30 = "FEE_PERCENTAGE_30",
3899
4147
  FEEPERCENTAGE25 = "FEE_PERCENTAGE_25",
3900
4148
  FEEPERCENTAGE20 = "FEE_PERCENTAGE_20",
4149
+ FEEPERCENTAGE17POINT5 = "FEE_PERCENTAGE_17_POINT_5",
3901
4150
  FEEPERCENTAGE15 = "FEE_PERCENTAGE_15",
3902
4151
  FEEPERCENTAGE12POINT5 = "FEE_PERCENTAGE_12_POINT_5",
3903
4152
  FEEPERCENTAGE10 = "FEE_PERCENTAGE_10",
@@ -4370,7 +4619,12 @@ export declare interface PlaidWebhookDto {
4370
4619
 
4371
4620
  export declare enum PlaidWebhookDtoNewPaymentStatusEnum {
4372
4621
  EXECUTED = "PAYMENT_STATUS_EXECUTED",
4373
- INITIATED = "PAYMENT_STATUS_INITIATED"
4622
+ INITIATED = "PAYMENT_STATUS_INITIATED",
4623
+ INSUFFICIENTFUNDS = "PAYMENT_STATUS_INSUFFICIENT_FUNDS",
4624
+ FAILED = "PAYMENT_STATUS_FAILED",
4625
+ BLOCKED = "PAYMENT_STATUS_BLOCKED",
4626
+ REJECTED = "PAYMENT_STATUS_REJECTED",
4627
+ CANCELLED = "PAYMENT_STATUS_CANCELLED"
4374
4628
  }
4375
4629
 
4376
4630
  export declare enum PlaidWebhookDtoStatusEnum {
@@ -4579,6 +4833,8 @@ export declare function processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, c
4579
4833
 
4580
4834
  export declare function processSendGridWebhooks(requestBody: Array<string>, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4581
4835
 
4836
+ export declare function processStripeOffSessionWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
4837
+
4582
4838
  export declare function processStripeWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4583
4839
 
4584
4840
  export declare function processTwilioIvrWebhooks(ivrCallId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
@@ -4587,6 +4843,12 @@ export declare function processTwilioIvrWebhooksWithGatherAction(ivrCallId: stri
4587
4843
 
4588
4844
  export declare function processTwilioVoicemailWebhook(from: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4589
4845
 
4846
+ export declare function processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
4847
+
4848
+ export declare interface ProcessUploadFileDTO {
4849
+ sourceKey: string;
4850
+ }
4851
+
4590
4852
  export declare interface ProductDTO {
4591
4853
  id: string;
4592
4854
  name: string;
@@ -4692,10 +4954,12 @@ export declare enum QueueMessageDTOCronNameEnum {
4692
4954
  DAILYEVIDENCECHASERSUPPLIERDRAFTREMINDER = "DAILY_EVIDENCE_CHASER_SUPPLIER_DRAFT_REMINDER",
4693
4955
  DAILYARBITRATIONSENTNOTIFICATION = "DAILY_ARBITRATION_SENT_NOTIFICATION",
4694
4956
  DAILYIVRCALLPROCESSING = "DAILY_IVR_CALL_PROCESSING",
4957
+ DAILYALBMETRICSCOLLECTION = "DAILY_ALB_METRICS_COLLECTION",
4695
4958
  WEEKLYPENDINGREPOSITPASTSTARTDATEREMINDER = "WEEKLY_PENDING_REPOSIT_PAST_START_DATE_REMINDER",
4696
4959
  POLLPENDINGCASHDEPOSITS = "POLL_PENDING_CASH_DEPOSITS",
4697
4960
  REFRESHMYDEPOSITSACCESSTOKENS = "REFRESH_MY_DEPOSITS_ACCESS_TOKENS",
4698
- RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS"
4961
+ RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
4962
+ PROCESSSQSWORKEROUTBOX = "PROCESS_SQS_WORKER_OUTBOX"
4699
4963
  }
4700
4964
 
4701
4965
  export declare enum QueueMessageDTOTypeEnum {
@@ -4708,6 +4972,9 @@ export declare enum QueueMessageDTOTypeEnum {
4708
4972
  AUTORESPONDTENANT = "AUTO_RESPOND_TENANT",
4709
4973
  AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
4710
4974
  PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
4975
+ PROCESSOFFSESSIONPAYMENTATTEMPTFAILED = "PROCESS_OFF_SESSION_PAYMENT_ATTEMPT_FAILED",
4976
+ PROCESSOFFSESSIONPAYMENTSUCCEEDED = "PROCESS_OFF_SESSION_PAYMENT_SUCCEEDED",
4977
+ PROCESSOFFSESSIONPAYMENTFAILED = "PROCESS_OFF_SESSION_PAYMENT_FAILED",
4711
4978
  PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
4712
4979
  PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
4713
4980
  PROCESSSTRIPEDISPUTECREATED = "PROCESS_STRIPE_DISPUTE_CREATED",
@@ -4752,7 +5019,9 @@ export declare enum QueueMessageDTOTypeEnum {
4752
5019
  HANDLEPENDINGCASHDEPOSIT = "HANDLE_PENDING_CASH_DEPOSIT",
4753
5020
  REFRESHMYDEPOSITSACCESSTOKEN = "REFRESH_MY_DEPOSITS_ACCESS_TOKEN",
4754
5021
  RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
4755
- MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY"
5022
+ MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY",
5023
+ CREATEXEROCONTACTFORORGANIZATION = "CREATE_XERO_CONTACT_FOR_ORGANIZATION",
5024
+ PROCESSBULKIMPORTFILE = "PROCESS_BULK_IMPORT_FILE"
4756
5025
  }
4757
5026
 
4758
5027
  export declare function readyForArbitrateClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
@@ -5012,11 +5281,18 @@ export declare interface RepositFeeDTO {
5012
5281
  }
5013
5282
 
5014
5283
  export declare interface RepositLandlordDTO {
5015
- firstName: string;
5016
- lastName: string;
5284
+ landlordTypeId: RepositLandlordDTOLandlordTypeIdEnum;
5285
+ firstName?: string;
5286
+ lastName?: string;
5287
+ companyName?: string;
5017
5288
  email: string;
5018
5289
  }
5019
5290
 
5291
+ export declare enum RepositLandlordDTOLandlordTypeIdEnum {
5292
+ COMPANY = "COMPANY",
5293
+ SOLEPERSON = "SOLE_PERSON"
5294
+ }
5295
+
5020
5296
  export declare interface RepositOfferDTO {
5021
5297
  id: string;
5022
5298
  PPM: number;
@@ -5460,6 +5736,42 @@ export declare interface SearchUserResultsDTO {
5460
5736
  results: Array<UserDTO>;
5461
5737
  }
5462
5738
 
5739
+ export declare function seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
5740
+
5741
+ export declare interface SeedCashDepositDTO {
5742
+ organizationId: string;
5743
+ userId: string;
5744
+ propertyId: string;
5745
+ ppm: number;
5746
+ amount: number;
5747
+ startDate: string;
5748
+ letOnly: boolean;
5749
+ tenantFirstName: string;
5750
+ tenantLastName: string;
5751
+ tenantEmail: string;
5752
+ tenantMobileNumber: string;
5753
+ }
5754
+
5755
+ export declare class SeedCashDepositsApi extends BaseAPI implements SeedCashDepositsApiInterface {
5756
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<Response>;
5757
+ }
5758
+
5759
+ export declare const SeedCashDepositsApiAxiosParamCreator: (configuration?: Configuration) => {
5760
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): RequestArgs;
5761
+ };
5762
+
5763
+ export declare const SeedCashDepositsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5764
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<Response>;
5765
+ };
5766
+
5767
+ export declare const SeedCashDepositsApiFp: (configuration?: Configuration) => {
5768
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
5769
+ };
5770
+
5771
+ export declare interface SeedCashDepositsApiInterface {
5772
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<{}>;
5773
+ }
5774
+
5463
5775
  export declare function seedReposit(seedRepositDTO: SeedRepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
5464
5776
 
5465
5777
  export declare interface SeedRepositDTO {
@@ -5587,6 +5899,13 @@ export declare interface SuppliersApiInterface {
5587
5899
  getSupplierAgents(id: string, options?: any): AxiosPromise<Array<RepositAgentDTO>>;
5588
5900
  }
5589
5901
 
5902
+ export declare interface TemporaryUploadUrlDTO {
5903
+ bucket: string;
5904
+ key: string;
5905
+ uploadUrl: string;
5906
+ expiresInSeconds: number;
5907
+ }
5908
+
5590
5909
  export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterface {
5591
5910
  closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
5592
5911
  createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
@@ -5743,6 +6062,7 @@ export declare interface TenancyDTO {
5743
6062
  tenants: Array<TenantDTO>;
5744
6063
  letOnly: boolean;
5745
6064
  isNewTenancy?: boolean;
6065
+ termType?: TenancyDTOTermTypeEnum;
5746
6066
  checkout?: CheckoutDTO;
5747
6067
  completedAt?: string;
5748
6068
  outcomeDeadline?: string;
@@ -5761,6 +6081,11 @@ export declare interface TenancyDTO {
5761
6081
  preTenancyDocuments?: Array<PreTenancyDocumentDTO>;
5762
6082
  }
5763
6083
 
6084
+ export declare enum TenancyDTOTermTypeEnum {
6085
+ FIXED = "FIXED",
6086
+ PERIODIC = "PERIODIC"
6087
+ }
6088
+
5764
6089
  export declare class TenancyExpiriesApi extends BaseAPI implements TenancyExpiriesApiInterface {
5765
6090
  createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, options?: any): AxiosPromise<TenancyExpiryDTO>;
5766
6091
  getByTenancyId(tenancyId: string, options?: any): AxiosPromise<TenancyExpiryDTO[]>;
@@ -5951,7 +6276,7 @@ export declare interface TenancyOrderNotesApiInterface {
5951
6276
 
5952
6277
  export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersApiInterface {
5953
6278
  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>;
6279
+ 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
6280
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5956
6281
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5957
6282
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
@@ -5960,7 +6285,7 @@ export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersAp
5960
6285
 
5961
6286
  export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configuration) => {
5962
6287
  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;
6288
+ 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
6289
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): RequestArgs;
5965
6290
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): RequestArgs;
5966
6291
  sendOverdueChasers(id: string, options?: any): RequestArgs;
@@ -5969,7 +6294,7 @@ export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configu
5969
6294
 
5970
6295
  export declare const TenancyOrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5971
6296
  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>;
6297
+ 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
6298
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5974
6299
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5975
6300
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
@@ -5978,7 +6303,7 @@ export declare const TenancyOrdersApiFactory: (configuration?: Configuration, ba
5978
6303
 
5979
6304
  export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
5980
6305
  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>;
6306
+ 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
6307
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5983
6308
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5984
6309
  sendOverdueChasers(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
@@ -5987,7 +6312,7 @@ export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
5987
6312
 
5988
6313
  export declare interface TenancyOrdersApiInterface {
5989
6314
  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>;
6315
+ 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
6316
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5992
6317
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
5993
6318
  sendOverdueChasers(id: string, options?: any): AxiosPromise<{}>;
@@ -6000,6 +6325,7 @@ export declare interface TenancyOrderWithTenancyAndOrderCustomersDTO {
6000
6325
  tenancy: TenancyWithCheckoutAndClaimDTO;
6001
6326
  tenancyOrderNotes?: Array<TenancyOrderNoteDTO>;
6002
6327
  repositOfferId?: string;
6328
+ outstandingChargesTenantEmails?: Array<string>;
6003
6329
  createdAt: string;
6004
6330
  updatedAt: string;
6005
6331
  deletedAt: string;
@@ -6011,6 +6337,7 @@ export declare interface TenancyOrderWithTenancyDTO {
6011
6337
  id: string;
6012
6338
  order: OrderDTO;
6013
6339
  tenancy: TenancyWithCheckoutAndClaimDTO;
6340
+ outstandingChargesTenantEmails?: Array<string>;
6014
6341
  repositOfferId?: string;
6015
6342
  createdAt: string;
6016
6343
  updatedAt: string;
@@ -6095,6 +6422,7 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
6095
6422
  tenants: Array<TenantDTO>;
6096
6423
  letOnly: boolean;
6097
6424
  isNewTenancy?: boolean;
6425
+ termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
6098
6426
  checkout?: CheckoutWithClaimDTO;
6099
6427
  completedAt?: string;
6100
6428
  outcomeDeadline?: string;
@@ -6114,6 +6442,11 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
6114
6442
  hasIncompleteTransfers: boolean;
6115
6443
  }
6116
6444
 
6445
+ export declare enum TenancyWithCheckoutAndClaimDTOTermTypeEnum {
6446
+ FIXED = "FIXED",
6447
+ PERIODIC = "PERIODIC"
6448
+ }
6449
+
6117
6450
  export declare function tenantConfirmation(token: string, response: 'CONFIRMED' | 'UNCONFIRMED', tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
6118
6451
 
6119
6452
  export declare interface TenantDTO {
@@ -6306,6 +6639,10 @@ export declare interface UpdateClaimDTO {
6306
6639
 
6307
6640
  export declare function updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
6308
6641
 
6642
+ export declare interface UpdateClaimItemCorrectionDTO {
6643
+ newAmount: number;
6644
+ }
6645
+
6309
6646
  export declare interface UpdateClaimItemDTO {
6310
6647
  amount?: number;
6311
6648
  description?: string;
@@ -6446,6 +6783,12 @@ export declare interface UpdateTenancyRequestDTO {
6446
6783
  endDate?: string;
6447
6784
  letOnly?: boolean;
6448
6785
  isNewTenancy?: boolean;
6786
+ termType?: UpdateTenancyRequestDTOTermTypeEnum;
6787
+ }
6788
+
6789
+ export declare enum UpdateTenancyRequestDTOTermTypeEnum {
6790
+ FIXED = "FIXED",
6791
+ PERIODIC = "PERIODIC"
6449
6792
  }
6450
6793
 
6451
6794
  export declare function updateTenantDisputeMessage(claimId: string, updateTenantDisputeMessageDTO: UpdateTenantDisputeMessageDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;