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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -190,8 +190,6 @@ 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
-
195
193
  export declare function approveClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
196
194
 
197
195
  export declare interface ArbitrationDocumentDTO {
@@ -406,87 +404,6 @@ export declare interface BlockedTenantDTO {
406
404
  fullName?: string;
407
405
  }
408
406
 
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
-
490
407
  export declare interface CashDepositDetailsDTO {
491
408
  amount: number;
492
409
  PPM: number;
@@ -768,54 +685,6 @@ export declare enum ClaimDTOStatusEnum {
768
685
  INSURANCECLAIM = "INSURANCE_CLAIM"
769
686
  }
770
687
 
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
-
819
688
  export declare interface ClaimItemDocumentDTO {
820
689
  document: DocumentDTO;
821
690
  id: string;
@@ -1541,13 +1410,6 @@ export declare interface CreateBeneficiaryDTO {
1541
1410
  companyName?: string;
1542
1411
  }
1543
1412
 
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
-
1551
1413
  export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
1552
1414
 
1553
1415
  export declare function createClaim(createClaimDTO: CreateClaimDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
@@ -1842,19 +1704,12 @@ export declare enum CreateLandlordDTOLandlordTypeIdEnum {
1842
1704
  }
1843
1705
 
1844
1706
  export declare interface CreateLandlordForRepositDTO {
1845
- landlordTypeId?: CreateLandlordForRepositDTOLandlordTypeIdEnum;
1846
- firstName?: string;
1847
- lastName?: string;
1848
- companyName?: string;
1707
+ firstName: string;
1708
+ lastName: string;
1849
1709
  email: string;
1850
1710
  address?: CreateAddressForLandlordDTO;
1851
1711
  }
1852
1712
 
1853
- export declare enum CreateLandlordForRepositDTOLandlordTypeIdEnum {
1854
- COMPANY = "COMPANY",
1855
- SOLEPERSON = "SOLE_PERSON"
1856
- }
1857
-
1858
1713
  export declare interface CreateLandlordWithOrgDTO {
1859
1714
  firstName?: string;
1860
1715
  lastName?: string;
@@ -2062,14 +1917,6 @@ export declare interface CreateRepositDTO {
2062
1917
  draft?: boolean;
2063
1918
  }
2064
1919
 
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
-
2073
1920
  export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
2074
1921
 
2075
1922
  export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
@@ -2116,12 +1963,6 @@ export declare interface CreateTenancyRequestDTO {
2116
1963
  endDate?: string;
2117
1964
  organizationId: string;
2118
1965
  letOnly?: boolean;
2119
- termType?: CreateTenancyRequestDTOTermTypeEnum;
2120
- }
2121
-
2122
- export declare enum CreateTenancyRequestDTOTermTypeEnum {
2123
- FIXED = "FIXED",
2124
- PERIODIC = "PERIODIC"
2125
1966
  }
2126
1967
 
2127
1968
  export declare interface CreateTenantForRepositDTO {
@@ -2280,8 +2121,6 @@ export declare function disableTopUps(id: string, configuration?: Configuration,
2280
2121
 
2281
2122
  export declare function disableWarnings(id: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyInventoryDTO>;
2282
2123
 
2283
- export declare function disconnectMyDeposits(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
2284
-
2285
2124
  export declare function dismissNewProductUpdates(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
2286
2125
 
2287
2126
  export declare function dismissOrganizationMessage(messageId: 'featureBankAccounts' | 'warningBankAccounts', id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationDTO>;
@@ -2330,13 +2169,6 @@ export declare interface DocumentsApiInterface {
2330
2169
  getDocumentsByIds(ids: Array<string>, options?: any): AxiosPromise<Array<DocumentDTO>>;
2331
2170
  }
2332
2171
 
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
-
2340
2172
  export declare function duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<IsDuplicateResponse>;
2341
2173
 
2342
2174
  export declare interface DuplicatePaymentMethodCheckDTO {
@@ -2828,18 +2660,12 @@ export declare interface GeneratePlaidLinkTokenResponseDTO {
2828
2660
 
2829
2661
  export declare function getActive(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<string>;
2830
2662
 
2831
- export declare function getAllBulkImports(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<BulkImportDTO>>;
2832
-
2833
2663
  export declare function getAmountRemaining(id: string, includeInterest: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderAmountRemainingDTO>;
2834
2664
 
2835
2665
  export declare function getArbitrationById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ArbitrationDTO>;
2836
2666
 
2837
2667
  export declare function getBankAccounts(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationBankAccountDTO>>;
2838
2668
 
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
-
2843
2669
  export declare function getByTenancyId(tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<TenancyExpiryDTO>>;
2844
2670
 
2845
2671
  export declare function getCashDepositAmount(ppm: number, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CashDepositDTO>;
@@ -2860,10 +2686,6 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
2860
2686
 
2861
2687
  export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
2862
2688
 
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
-
2867
2689
  export declare function getInstalmentById(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentDTO>;
2868
2690
 
2869
2691
  export declare function getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentPayResponseDTO>;
@@ -2986,7 +2808,6 @@ export declare function healthCheck(configuration?: Configuration, axios?: Axios
2986
2808
  export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebhooksApiInterface {
2987
2809
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
2988
2810
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
2989
- processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
2990
2811
  processStripeWebhooks(options?: any): AxiosPromise<object>;
2991
2812
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
2992
2813
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
@@ -2996,7 +2817,6 @@ export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebh
2996
2817
  export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
2997
2818
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): RequestArgs;
2998
2819
  processSendGridWebhooks(requestBody: Array<string>, options?: any): RequestArgs;
2999
- processStripeOffSessionWebhooks(options?: any): RequestArgs;
3000
2820
  processStripeWebhooks(options?: any): RequestArgs;
3001
2821
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): RequestArgs;
3002
2822
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): RequestArgs;
@@ -3006,7 +2826,6 @@ export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Conf
3006
2826
  export declare const IncomingWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3007
2827
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
3008
2828
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
3009
- processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
3010
2829
  processStripeWebhooks(options?: any): AxiosPromise<object>;
3011
2830
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
3012
2831
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
@@ -3016,7 +2835,6 @@ export declare const IncomingWebhooksApiFactory: (configuration?: Configuration,
3016
2835
  export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
3017
2836
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
3018
2837
  processSendGridWebhooks(requestBody: Array<string>, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3019
- processStripeOffSessionWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
3020
2838
  processStripeWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3021
2839
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3022
2840
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
@@ -3026,7 +2844,6 @@ export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
3026
2844
  export declare interface IncomingWebhooksApiInterface {
3027
2845
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<{}>;
3028
2846
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
3029
- processStripeOffSessionWebhooks(options?: any): AxiosPromise<{}>;
3030
2847
  processStripeWebhooks(options?: any): AxiosPromise<object>;
3031
2848
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
3032
2849
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<{}>;
@@ -3339,7 +3156,6 @@ export declare interface MyDepositsExchangeTokenRequestDTO {
3339
3156
 
3340
3157
  export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAuthApiInterface {
3341
3158
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3342
- disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
3343
3159
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3344
3160
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3345
3161
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
@@ -3348,7 +3164,6 @@ export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAu
3348
3164
 
3349
3165
  export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Configuration) => {
3350
3166
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): RequestArgs;
3351
- disconnectMyDeposits(organizationId: string, options?: any): RequestArgs;
3352
3167
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): RequestArgs;
3353
3168
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): RequestArgs;
3354
3169
  getMyDepositsCompanyOffices(organizationId: string, options?: any): RequestArgs;
@@ -3357,7 +3172,6 @@ export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Confi
3357
3172
 
3358
3173
  export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3359
3174
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3360
- disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
3361
3175
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3362
3176
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3363
3177
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
@@ -3366,7 +3180,6 @@ export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration,
3366
3180
 
3367
3181
  export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
3368
3182
  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>;
3370
3183
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3371
3184
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3372
3185
  getMyDepositsCompanyOffices(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
@@ -3375,7 +3188,6 @@ export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
3375
3188
 
3376
3189
  export declare interface MyDepositsOAuthApiInterface {
3377
3190
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3378
- disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<{}>;
3379
3191
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3380
3192
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3381
3193
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
@@ -3384,16 +3196,6 @@ export declare interface MyDepositsOAuthApiInterface {
3384
3196
 
3385
3197
  export declare interface MyDepositsOnboardingStatusResponseDTO {
3386
3198
  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"
3397
3199
  }
3398
3200
 
3399
3201
  export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
@@ -3492,7 +3294,7 @@ export declare interface OneTimeSessionTokenDTO {
3492
3294
  updatedAt: string;
3493
3295
  }
3494
3296
 
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>;
3297
+ 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>;
3496
3298
 
3497
3299
  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>;
3498
3300
 
@@ -4619,12 +4421,7 @@ export declare interface PlaidWebhookDto {
4619
4421
 
4620
4422
  export declare enum PlaidWebhookDtoNewPaymentStatusEnum {
4621
4423
  EXECUTED = "PAYMENT_STATUS_EXECUTED",
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"
4424
+ INITIATED = "PAYMENT_STATUS_INITIATED"
4628
4425
  }
4629
4426
 
4630
4427
  export declare enum PlaidWebhookDtoStatusEnum {
@@ -4833,8 +4630,6 @@ export declare function processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, c
4833
4630
 
4834
4631
  export declare function processSendGridWebhooks(requestBody: Array<string>, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4835
4632
 
4836
- export declare function processStripeOffSessionWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
4837
-
4838
4633
  export declare function processStripeWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4839
4634
 
4840
4635
  export declare function processTwilioIvrWebhooks(ivrCallId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
@@ -4843,12 +4638,6 @@ export declare function processTwilioIvrWebhooksWithGatherAction(ivrCallId: stri
4843
4638
 
4844
4639
  export declare function processTwilioVoicemailWebhook(from: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4845
4640
 
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
-
4852
4641
  export declare interface ProductDTO {
4853
4642
  id: string;
4854
4643
  name: string;
@@ -4954,12 +4743,10 @@ export declare enum QueueMessageDTOCronNameEnum {
4954
4743
  DAILYEVIDENCECHASERSUPPLIERDRAFTREMINDER = "DAILY_EVIDENCE_CHASER_SUPPLIER_DRAFT_REMINDER",
4955
4744
  DAILYARBITRATIONSENTNOTIFICATION = "DAILY_ARBITRATION_SENT_NOTIFICATION",
4956
4745
  DAILYIVRCALLPROCESSING = "DAILY_IVR_CALL_PROCESSING",
4957
- DAILYALBMETRICSCOLLECTION = "DAILY_ALB_METRICS_COLLECTION",
4958
4746
  WEEKLYPENDINGREPOSITPASTSTARTDATEREMINDER = "WEEKLY_PENDING_REPOSIT_PAST_START_DATE_REMINDER",
4959
4747
  POLLPENDINGCASHDEPOSITS = "POLL_PENDING_CASH_DEPOSITS",
4960
4748
  REFRESHMYDEPOSITSACCESSTOKENS = "REFRESH_MY_DEPOSITS_ACCESS_TOKENS",
4961
- RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
4962
- PROCESSSQSWORKEROUTBOX = "PROCESS_SQS_WORKER_OUTBOX"
4749
+ RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS"
4963
4750
  }
4964
4751
 
4965
4752
  export declare enum QueueMessageDTOTypeEnum {
@@ -4972,9 +4759,6 @@ export declare enum QueueMessageDTOTypeEnum {
4972
4759
  AUTORESPONDTENANT = "AUTO_RESPOND_TENANT",
4973
4760
  AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
4974
4761
  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",
4978
4762
  PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
4979
4763
  PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
4980
4764
  PROCESSSTRIPEDISPUTECREATED = "PROCESS_STRIPE_DISPUTE_CREATED",
@@ -5019,9 +4803,7 @@ export declare enum QueueMessageDTOTypeEnum {
5019
4803
  HANDLEPENDINGCASHDEPOSIT = "HANDLE_PENDING_CASH_DEPOSIT",
5020
4804
  REFRESHMYDEPOSITSACCESSTOKEN = "REFRESH_MY_DEPOSITS_ACCESS_TOKEN",
5021
4805
  RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
5022
- MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY",
5023
- CREATEXEROCONTACTFORORGANIZATION = "CREATE_XERO_CONTACT_FOR_ORGANIZATION",
5024
- PROCESSBULKIMPORTFILE = "PROCESS_BULK_IMPORT_FILE"
4806
+ MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY"
5025
4807
  }
5026
4808
 
5027
4809
  export declare function readyForArbitrateClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
@@ -5281,18 +5063,11 @@ export declare interface RepositFeeDTO {
5281
5063
  }
5282
5064
 
5283
5065
  export declare interface RepositLandlordDTO {
5284
- landlordTypeId: RepositLandlordDTOLandlordTypeIdEnum;
5285
- firstName?: string;
5286
- lastName?: string;
5287
- companyName?: string;
5066
+ firstName: string;
5067
+ lastName: string;
5288
5068
  email: string;
5289
5069
  }
5290
5070
 
5291
- export declare enum RepositLandlordDTOLandlordTypeIdEnum {
5292
- COMPANY = "COMPANY",
5293
- SOLEPERSON = "SOLE_PERSON"
5294
- }
5295
-
5296
5071
  export declare interface RepositOfferDTO {
5297
5072
  id: string;
5298
5073
  PPM: number;
@@ -5736,42 +5511,6 @@ export declare interface SearchUserResultsDTO {
5736
5511
  results: Array<UserDTO>;
5737
5512
  }
5738
5513
 
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
-
5775
5514
  export declare function seedReposit(seedRepositDTO: SeedRepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
5776
5515
 
5777
5516
  export declare interface SeedRepositDTO {
@@ -5899,13 +5638,6 @@ export declare interface SuppliersApiInterface {
5899
5638
  getSupplierAgents(id: string, options?: any): AxiosPromise<Array<RepositAgentDTO>>;
5900
5639
  }
5901
5640
 
5902
- export declare interface TemporaryUploadUrlDTO {
5903
- bucket: string;
5904
- key: string;
5905
- uploadUrl: string;
5906
- expiresInSeconds: number;
5907
- }
5908
-
5909
5641
  export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterface {
5910
5642
  closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
5911
5643
  createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
@@ -6062,7 +5794,6 @@ export declare interface TenancyDTO {
6062
5794
  tenants: Array<TenantDTO>;
6063
5795
  letOnly: boolean;
6064
5796
  isNewTenancy?: boolean;
6065
- termType?: TenancyDTOTermTypeEnum;
6066
5797
  checkout?: CheckoutDTO;
6067
5798
  completedAt?: string;
6068
5799
  outcomeDeadline?: string;
@@ -6081,11 +5812,6 @@ export declare interface TenancyDTO {
6081
5812
  preTenancyDocuments?: Array<PreTenancyDocumentDTO>;
6082
5813
  }
6083
5814
 
6084
- export declare enum TenancyDTOTermTypeEnum {
6085
- FIXED = "FIXED",
6086
- PERIODIC = "PERIODIC"
6087
- }
6088
-
6089
5815
  export declare class TenancyExpiriesApi extends BaseAPI implements TenancyExpiriesApiInterface {
6090
5816
  createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, options?: any): AxiosPromise<TenancyExpiryDTO>;
6091
5817
  getByTenancyId(tenancyId: string, options?: any): AxiosPromise<TenancyExpiryDTO[]>;
@@ -6276,7 +6002,7 @@ export declare interface TenancyOrderNotesApiInterface {
6276
6002
 
6277
6003
  export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersApiInterface {
6278
6004
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
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>;
6005
+ 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>;
6280
6006
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6281
6007
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6282
6008
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
@@ -6285,7 +6011,7 @@ export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersAp
6285
6011
 
6286
6012
  export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configuration) => {
6287
6013
  getTenancyOrderById(id: string, includeDeleted?: 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;
6014
+ 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;
6289
6015
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): RequestArgs;
6290
6016
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): RequestArgs;
6291
6017
  sendOverdueChasers(id: string, options?: any): RequestArgs;
@@ -6294,7 +6020,7 @@ export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configu
6294
6020
 
6295
6021
  export declare const TenancyOrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6296
6022
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
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>;
6023
+ 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>;
6298
6024
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6299
6025
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6300
6026
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
@@ -6303,7 +6029,7 @@ export declare const TenancyOrdersApiFactory: (configuration?: Configuration, ba
6303
6029
 
6304
6030
  export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
6305
6031
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
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>;
6032
+ 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>;
6307
6033
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6308
6034
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6309
6035
  sendOverdueChasers(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
@@ -6312,7 +6038,7 @@ export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
6312
6038
 
6313
6039
  export declare interface TenancyOrdersApiInterface {
6314
6040
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
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>;
6041
+ 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>;
6316
6042
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6317
6043
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6318
6044
  sendOverdueChasers(id: string, options?: any): AxiosPromise<{}>;
@@ -6325,7 +6051,6 @@ export declare interface TenancyOrderWithTenancyAndOrderCustomersDTO {
6325
6051
  tenancy: TenancyWithCheckoutAndClaimDTO;
6326
6052
  tenancyOrderNotes?: Array<TenancyOrderNoteDTO>;
6327
6053
  repositOfferId?: string;
6328
- outstandingChargesTenantEmails?: Array<string>;
6329
6054
  createdAt: string;
6330
6055
  updatedAt: string;
6331
6056
  deletedAt: string;
@@ -6337,7 +6062,6 @@ export declare interface TenancyOrderWithTenancyDTO {
6337
6062
  id: string;
6338
6063
  order: OrderDTO;
6339
6064
  tenancy: TenancyWithCheckoutAndClaimDTO;
6340
- outstandingChargesTenantEmails?: Array<string>;
6341
6065
  repositOfferId?: string;
6342
6066
  createdAt: string;
6343
6067
  updatedAt: string;
@@ -6422,7 +6146,6 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
6422
6146
  tenants: Array<TenantDTO>;
6423
6147
  letOnly: boolean;
6424
6148
  isNewTenancy?: boolean;
6425
- termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
6426
6149
  checkout?: CheckoutWithClaimDTO;
6427
6150
  completedAt?: string;
6428
6151
  outcomeDeadline?: string;
@@ -6442,11 +6165,6 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
6442
6165
  hasIncompleteTransfers: boolean;
6443
6166
  }
6444
6167
 
6445
- export declare enum TenancyWithCheckoutAndClaimDTOTermTypeEnum {
6446
- FIXED = "FIXED",
6447
- PERIODIC = "PERIODIC"
6448
- }
6449
-
6450
6168
  export declare function tenantConfirmation(token: string, response: 'CONFIRMED' | 'UNCONFIRMED', tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
6451
6169
 
6452
6170
  export declare interface TenantDTO {
@@ -6639,10 +6357,6 @@ export declare interface UpdateClaimDTO {
6639
6357
 
6640
6358
  export declare function updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
6641
6359
 
6642
- export declare interface UpdateClaimItemCorrectionDTO {
6643
- newAmount: number;
6644
- }
6645
-
6646
6360
  export declare interface UpdateClaimItemDTO {
6647
6361
  amount?: number;
6648
6362
  description?: string;
@@ -6783,12 +6497,6 @@ export declare interface UpdateTenancyRequestDTO {
6783
6497
  endDate?: string;
6784
6498
  letOnly?: boolean;
6785
6499
  isNewTenancy?: boolean;
6786
- termType?: UpdateTenancyRequestDTOTermTypeEnum;
6787
- }
6788
-
6789
- export declare enum UpdateTenancyRequestDTOTermTypeEnum {
6790
- FIXED = "FIXED",
6791
- PERIODIC = "PERIODIC"
6792
6500
  }
6793
6501
 
6794
6502
  export declare function updateTenantDisputeMessage(claimId: string, updateTenantDisputeMessageDTO: UpdateTenantDisputeMessageDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;