@reposit/api-client 6.62.0 → 6.63.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
@@ -404,6 +404,87 @@ export declare interface BlockedTenantDTO {
404
404
  fullName?: string;
405
405
  }
406
406
 
407
+ export declare interface BulkImportDTO {
408
+ id: string;
409
+ name: string;
410
+ organizationId: string;
411
+ organizationName?: string;
412
+ filePath?: string;
413
+ status: BulkImportDTOStatusEnum;
414
+ totalRecords: number;
415
+ processedRecords: number;
416
+ failedRecords: number;
417
+ createdByUserId: string;
418
+ createdByUser?: UserDTO;
419
+ startedAt?: string;
420
+ completedAt?: string;
421
+ createdAt: string;
422
+ updatedAt: string;
423
+ }
424
+
425
+ export declare enum BulkImportDTOStatusEnum {
426
+ DRAFT = "DRAFT",
427
+ IMPORTING = "IMPORTING",
428
+ PROCESSING = "PROCESSING",
429
+ COMPLETED = "COMPLETED",
430
+ FAILED = "FAILED"
431
+ }
432
+
433
+ export declare class BulkImportsApi extends BaseAPI implements BulkImportsApiInterface {
434
+ createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
435
+ createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
436
+ getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
437
+ getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
438
+ getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
439
+ getExampleCsv(options?: any): AxiosPromise<Response>;
440
+ getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
441
+ processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
442
+ }
443
+
444
+ export declare const BulkImportsApiAxiosParamCreator: (configuration?: Configuration) => {
445
+ createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): RequestArgs;
446
+ createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): RequestArgs;
447
+ getAllBulkImports(options?: any): RequestArgs;
448
+ getBulkImportById(id: string, options?: any): RequestArgs;
449
+ getBulkImportDownloadUrl(id: string, options?: any): RequestArgs;
450
+ getExampleCsv(options?: any): RequestArgs;
451
+ getFailedRowsCsv(id: string, options?: any): RequestArgs;
452
+ processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): RequestArgs;
453
+ };
454
+
455
+ export declare const BulkImportsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
456
+ createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
457
+ createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
458
+ getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
459
+ getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
460
+ getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
461
+ getExampleCsv(options?: any): AxiosPromise<Response>;
462
+ getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
463
+ processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
464
+ };
465
+
466
+ export declare const BulkImportsApiFp: (configuration?: Configuration) => {
467
+ createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
468
+ createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemporaryUploadUrlDTO>;
469
+ getAllBulkImports(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkImportDTO>>;
470
+ getBulkImportById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
471
+ getBulkImportDownloadUrl(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadUrlDTO>;
472
+ getExampleCsv(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
473
+ getFailedRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
474
+ processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
475
+ };
476
+
477
+ export declare interface BulkImportsApiInterface {
478
+ createBulkImport(createBulkImportDTO: CreateBulkImportDTO, options?: any): AxiosPromise<BulkImportDTO>;
479
+ createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, options?: any): AxiosPromise<TemporaryUploadUrlDTO>;
480
+ getAllBulkImports(options?: any): AxiosPromise<Array<BulkImportDTO>>;
481
+ getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
482
+ getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
483
+ getExampleCsv(options?: any): AxiosPromise<{}>;
484
+ getFailedRowsCsv(id: string, options?: any): AxiosPromise<{}>;
485
+ processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
486
+ }
487
+
407
488
  export declare interface CashDepositDetailsDTO {
408
489
  amount: number;
409
490
  PPM: number;
@@ -1410,6 +1491,13 @@ export declare interface CreateBeneficiaryDTO {
1410
1491
  companyName?: string;
1411
1492
  }
1412
1493
 
1494
+ export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
1495
+
1496
+ export declare interface CreateBulkImportDTO {
1497
+ name: string;
1498
+ organizationId: string;
1499
+ }
1500
+
1413
1501
  export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
1414
1502
 
1415
1503
  export declare function createClaim(createClaimDTO: CreateClaimDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
@@ -1704,12 +1792,19 @@ export declare enum CreateLandlordDTOLandlordTypeIdEnum {
1704
1792
  }
1705
1793
 
1706
1794
  export declare interface CreateLandlordForRepositDTO {
1707
- firstName: string;
1708
- lastName: string;
1795
+ landlordTypeId?: CreateLandlordForRepositDTOLandlordTypeIdEnum;
1796
+ firstName?: string;
1797
+ lastName?: string;
1798
+ companyName?: string;
1709
1799
  email: string;
1710
1800
  address?: CreateAddressForLandlordDTO;
1711
1801
  }
1712
1802
 
1803
+ export declare enum CreateLandlordForRepositDTOLandlordTypeIdEnum {
1804
+ COMPANY = "COMPANY",
1805
+ SOLEPERSON = "SOLE_PERSON"
1806
+ }
1807
+
1713
1808
  export declare interface CreateLandlordWithOrgDTO {
1714
1809
  firstName?: string;
1715
1810
  lastName?: string;
@@ -1917,6 +2012,14 @@ export declare interface CreateRepositDTO {
1917
2012
  draft?: boolean;
1918
2013
  }
1919
2014
 
2015
+ export declare function createTemporaryUploadUrl(createTemporaryUploadUrlDTO: CreateTemporaryUploadUrlDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TemporaryUploadUrlDTO>;
2016
+
2017
+ export declare interface CreateTemporaryUploadUrlDTO {
2018
+ fileName: string;
2019
+ contentType?: string;
2020
+ expiresInSeconds?: number;
2021
+ }
2022
+
1920
2023
  export declare function createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyDTO>;
1921
2024
 
1922
2025
  export declare function createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyExpiryDTO>;
@@ -1963,6 +2066,12 @@ export declare interface CreateTenancyRequestDTO {
1963
2066
  endDate?: string;
1964
2067
  organizationId: string;
1965
2068
  letOnly?: boolean;
2069
+ termType?: CreateTenancyRequestDTOTermTypeEnum;
2070
+ }
2071
+
2072
+ export declare enum CreateTenancyRequestDTOTermTypeEnum {
2073
+ FIXED = "FIXED",
2074
+ PERIODIC = "PERIODIC"
1966
2075
  }
1967
2076
 
1968
2077
  export declare interface CreateTenantForRepositDTO {
@@ -2121,6 +2230,8 @@ export declare function disableTopUps(id: string, configuration?: Configuration,
2121
2230
 
2122
2231
  export declare function disableWarnings(id: string, tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<TenancyInventoryDTO>;
2123
2232
 
2233
+ export declare function disconnectMyDeposits(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
2234
+
2124
2235
  export declare function dismissNewProductUpdates(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
2125
2236
 
2126
2237
  export declare function dismissOrganizationMessage(messageId: 'featureBankAccounts' | 'warningBankAccounts', id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationDTO>;
@@ -2169,6 +2280,11 @@ export declare interface DocumentsApiInterface {
2169
2280
  getDocumentsByIds(ids: Array<string>, options?: any): AxiosPromise<Array<DocumentDTO>>;
2170
2281
  }
2171
2282
 
2283
+ export declare interface DownloadUrlDTO {
2284
+ downloadUrl: string;
2285
+ expiresInSeconds: number;
2286
+ }
2287
+
2172
2288
  export declare function duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<IsDuplicateResponse>;
2173
2289
 
2174
2290
  export declare interface DuplicatePaymentMethodCheckDTO {
@@ -2660,12 +2776,18 @@ export declare interface GeneratePlaidLinkTokenResponseDTO {
2660
2776
 
2661
2777
  export declare function getActive(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<string>;
2662
2778
 
2779
+ export declare function getAllBulkImports(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<BulkImportDTO>>;
2780
+
2663
2781
  export declare function getAmountRemaining(id: string, includeInterest: boolean, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderAmountRemainingDTO>;
2664
2782
 
2665
2783
  export declare function getArbitrationById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ArbitrationDTO>;
2666
2784
 
2667
2785
  export declare function getBankAccounts(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationBankAccountDTO>>;
2668
2786
 
2787
+ export declare function getBulkImportById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
2788
+
2789
+ export declare function getBulkImportDownloadUrl(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<DownloadUrlDTO>;
2790
+
2669
2791
  export declare function getByTenancyId(tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<TenancyExpiryDTO>>;
2670
2792
 
2671
2793
  export declare function getCashDepositAmount(ppm: number, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CashDepositDTO>;
@@ -2686,6 +2808,10 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
2686
2808
 
2687
2809
  export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
2688
2810
 
2811
+ export declare function getExampleCsv(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
2812
+
2813
+ export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
2814
+
2689
2815
  export declare function getInstalmentById(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentDTO>;
2690
2816
 
2691
2817
  export declare function getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<PaymentPlanInstalmentPayResponseDTO>;
@@ -2808,6 +2934,7 @@ export declare function healthCheck(configuration?: Configuration, axios?: Axios
2808
2934
  export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebhooksApiInterface {
2809
2935
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
2810
2936
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
2937
+ processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
2811
2938
  processStripeWebhooks(options?: any): AxiosPromise<object>;
2812
2939
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
2813
2940
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
@@ -2817,6 +2944,7 @@ export declare class IncomingWebhooksApi extends BaseAPI implements IncomingWebh
2817
2944
  export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
2818
2945
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): RequestArgs;
2819
2946
  processSendGridWebhooks(requestBody: Array<string>, options?: any): RequestArgs;
2947
+ processStripeOffSessionWebhooks(options?: any): RequestArgs;
2820
2948
  processStripeWebhooks(options?: any): RequestArgs;
2821
2949
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): RequestArgs;
2822
2950
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): RequestArgs;
@@ -2826,6 +2954,7 @@ export declare const IncomingWebhooksApiAxiosParamCreator: (configuration?: Conf
2826
2954
  export declare const IncomingWebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2827
2955
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<Response>;
2828
2956
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
2957
+ processStripeOffSessionWebhooks(options?: any): AxiosPromise<Response>;
2829
2958
  processStripeWebhooks(options?: any): AxiosPromise<object>;
2830
2959
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
2831
2960
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<Response>;
@@ -2835,6 +2964,7 @@ export declare const IncomingWebhooksApiFactory: (configuration?: Configuration,
2835
2964
  export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
2836
2965
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
2837
2966
  processSendGridWebhooks(requestBody: Array<string>, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
2967
+ processStripeOffSessionWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
2838
2968
  processStripeWebhooks(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
2839
2969
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
2840
2970
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
@@ -2844,6 +2974,7 @@ export declare const IncomingWebhooksApiFp: (configuration?: Configuration) => {
2844
2974
  export declare interface IncomingWebhooksApiInterface {
2845
2975
  processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, options?: any): AxiosPromise<{}>;
2846
2976
  processSendGridWebhooks(requestBody: Array<string>, options?: any): AxiosPromise<object>;
2977
+ processStripeOffSessionWebhooks(options?: any): AxiosPromise<{}>;
2847
2978
  processStripeWebhooks(options?: any): AxiosPromise<object>;
2848
2979
  processTwilioIvrWebhooks(ivrCallId: string, options?: any): AxiosPromise<object>;
2849
2980
  processTwilioIvrWebhooksWithGatherAction(ivrCallId: string, gatherAction: string, options?: any): AxiosPromise<{}>;
@@ -3156,6 +3287,7 @@ export declare interface MyDepositsExchangeTokenRequestDTO {
3156
3287
 
3157
3288
  export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAuthApiInterface {
3158
3289
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3290
+ disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
3159
3291
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3160
3292
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3161
3293
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
@@ -3164,6 +3296,7 @@ export declare class MyDepositsOAuthApi extends BaseAPI implements MyDepositsOAu
3164
3296
 
3165
3297
  export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Configuration) => {
3166
3298
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): RequestArgs;
3299
+ disconnectMyDeposits(organizationId: string, options?: any): RequestArgs;
3167
3300
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): RequestArgs;
3168
3301
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): RequestArgs;
3169
3302
  getMyDepositsCompanyOffices(organizationId: string, options?: any): RequestArgs;
@@ -3172,6 +3305,7 @@ export declare const MyDepositsOAuthApiAxiosParamCreator: (configuration?: Confi
3172
3305
 
3173
3306
  export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3174
3307
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3308
+ disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<Response>;
3175
3309
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3176
3310
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3177
3311
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<MyDepositsCompanyOfficeResponseDTO[]>;
@@ -3180,6 +3314,7 @@ export declare const MyDepositsOAuthApiFactory: (configuration?: Configuration,
3180
3314
 
3181
3315
  export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
3182
3316
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3317
+ disconnectMyDeposits(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
3183
3318
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
3184
3319
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3185
3320
  getMyDepositsCompanyOffices(organizationId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
@@ -3188,6 +3323,7 @@ export declare const MyDepositsOAuthApiFp: (configuration?: Configuration) => {
3188
3323
 
3189
3324
  export declare interface MyDepositsOAuthApiInterface {
3190
3325
  completeMyDepositsSetup(organizationId: string, myDepositsCompleteSetupRequestDTO: MyDepositsCompleteSetupRequestDTO, options?: any): AxiosPromise<object>;
3326
+ disconnectMyDeposits(organizationId: string, options?: any): AxiosPromise<{}>;
3191
3327
  exchangeMyDepositsToken(myDepositsExchangeTokenRequestDTO: MyDepositsExchangeTokenRequestDTO, options?: any): AxiosPromise<object>;
3192
3328
  getMyDepositsAuthorizeUrl(organizationId: string, options?: any): AxiosPromise<MyDepositsAuthorizeResponseDTO>;
3193
3329
  getMyDepositsCompanyOffices(organizationId: string, options?: any): AxiosPromise<Array<MyDepositsCompanyOfficeResponseDTO>>;
@@ -3196,6 +3332,16 @@ export declare interface MyDepositsOAuthApiInterface {
3196
3332
 
3197
3333
  export declare interface MyDepositsOnboardingStatusResponseDTO {
3198
3334
  onboardingStatus: MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum;
3335
+ connectedUserName?: string;
3336
+ companyName?: string;
3337
+ officeName?: string;
3338
+ accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
3339
+ }
3340
+
3341
+ export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
3342
+ AGENT = "AGENT",
3343
+ LANDLORD = "LANDLORD",
3344
+ CORPORATELANDLORD = "CORPORATE_LANDLORD"
3199
3345
  }
3200
3346
 
3201
3347
  export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
@@ -3294,7 +3440,7 @@ export declare interface OneTimeSessionTokenDTO {
3294
3440
  updatedAt: string;
3295
3441
  }
3296
3442
 
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>;
3443
+ 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>;
3298
3444
 
3299
3445
  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>;
3300
3446
 
@@ -4421,7 +4567,12 @@ export declare interface PlaidWebhookDto {
4421
4567
 
4422
4568
  export declare enum PlaidWebhookDtoNewPaymentStatusEnum {
4423
4569
  EXECUTED = "PAYMENT_STATUS_EXECUTED",
4424
- INITIATED = "PAYMENT_STATUS_INITIATED"
4570
+ INITIATED = "PAYMENT_STATUS_INITIATED",
4571
+ INSUFFICIENTFUNDS = "PAYMENT_STATUS_INSUFFICIENT_FUNDS",
4572
+ FAILED = "PAYMENT_STATUS_FAILED",
4573
+ BLOCKED = "PAYMENT_STATUS_BLOCKED",
4574
+ REJECTED = "PAYMENT_STATUS_REJECTED",
4575
+ CANCELLED = "PAYMENT_STATUS_CANCELLED"
4425
4576
  }
4426
4577
 
4427
4578
  export declare enum PlaidWebhookDtoStatusEnum {
@@ -4630,6 +4781,8 @@ export declare function processPlaidWebhooks(plaidWebhookDto: PlaidWebhookDto, c
4630
4781
 
4631
4782
  export declare function processSendGridWebhooks(requestBody: Array<string>, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4632
4783
 
4784
+ export declare function processStripeOffSessionWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
4785
+
4633
4786
  export declare function processStripeWebhooks(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4634
4787
 
4635
4788
  export declare function processTwilioIvrWebhooks(ivrCallId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
@@ -4638,6 +4791,12 @@ export declare function processTwilioIvrWebhooksWithGatherAction(ivrCallId: stri
4638
4791
 
4639
4792
  export declare function processTwilioVoicemailWebhook(from: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
4640
4793
 
4794
+ export declare function processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<BulkImportDTO>;
4795
+
4796
+ export declare interface ProcessUploadFileDTO {
4797
+ sourceKey: string;
4798
+ }
4799
+
4641
4800
  export declare interface ProductDTO {
4642
4801
  id: string;
4643
4802
  name: string;
@@ -4743,10 +4902,12 @@ export declare enum QueueMessageDTOCronNameEnum {
4743
4902
  DAILYEVIDENCECHASERSUPPLIERDRAFTREMINDER = "DAILY_EVIDENCE_CHASER_SUPPLIER_DRAFT_REMINDER",
4744
4903
  DAILYARBITRATIONSENTNOTIFICATION = "DAILY_ARBITRATION_SENT_NOTIFICATION",
4745
4904
  DAILYIVRCALLPROCESSING = "DAILY_IVR_CALL_PROCESSING",
4905
+ DAILYALBMETRICSCOLLECTION = "DAILY_ALB_METRICS_COLLECTION",
4746
4906
  WEEKLYPENDINGREPOSITPASTSTARTDATEREMINDER = "WEEKLY_PENDING_REPOSIT_PAST_START_DATE_REMINDER",
4747
4907
  POLLPENDINGCASHDEPOSITS = "POLL_PENDING_CASH_DEPOSITS",
4748
4908
  REFRESHMYDEPOSITSACCESSTOKENS = "REFRESH_MY_DEPOSITS_ACCESS_TOKENS",
4749
- RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS"
4909
+ RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
4910
+ PROCESSSQSWORKEROUTBOX = "PROCESS_SQS_WORKER_OUTBOX"
4750
4911
  }
4751
4912
 
4752
4913
  export declare enum QueueMessageDTOTypeEnum {
@@ -4759,6 +4920,9 @@ export declare enum QueueMessageDTOTypeEnum {
4759
4920
  AUTORESPONDTENANT = "AUTO_RESPOND_TENANT",
4760
4921
  AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
4761
4922
  PROCESSSTRIPECHARGESUCCEEDED = "PROCESS_STRIPE_CHARGE_SUCCEEDED",
4923
+ PROCESSOFFSESSIONPAYMENTATTEMPTFAILED = "PROCESS_OFF_SESSION_PAYMENT_ATTEMPT_FAILED",
4924
+ PROCESSOFFSESSIONPAYMENTSUCCEEDED = "PROCESS_OFF_SESSION_PAYMENT_SUCCEEDED",
4925
+ PROCESSOFFSESSIONPAYMENTFAILED = "PROCESS_OFF_SESSION_PAYMENT_FAILED",
4762
4926
  PROCESSSTRIPECHARGEFAILED = "PROCESS_STRIPE_CHARGE_FAILED",
4763
4927
  PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
4764
4928
  PROCESSSTRIPEDISPUTECREATED = "PROCESS_STRIPE_DISPUTE_CREATED",
@@ -4803,7 +4967,10 @@ export declare enum QueueMessageDTOTypeEnum {
4803
4967
  HANDLEPENDINGCASHDEPOSIT = "HANDLE_PENDING_CASH_DEPOSIT",
4804
4968
  REFRESHMYDEPOSITSACCESSTOKEN = "REFRESH_MY_DEPOSITS_ACCESS_TOKEN",
4805
4969
  RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
4806
- MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY"
4970
+ MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY",
4971
+ CREATEXEROCONTACTFORORGANIZATION = "CREATE_XERO_CONTACT_FOR_ORGANIZATION",
4972
+ PROCESSBULKIMPORTFILE = "PROCESS_BULK_IMPORT_FILE",
4973
+ PROCESSBULKIMPORTROW = "PROCESS_BULK_IMPORT_ROW"
4807
4974
  }
4808
4975
 
4809
4976
  export declare function readyForArbitrateClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
@@ -5063,11 +5230,18 @@ export declare interface RepositFeeDTO {
5063
5230
  }
5064
5231
 
5065
5232
  export declare interface RepositLandlordDTO {
5066
- firstName: string;
5067
- lastName: string;
5233
+ landlordTypeId: RepositLandlordDTOLandlordTypeIdEnum;
5234
+ firstName?: string;
5235
+ lastName?: string;
5236
+ companyName?: string;
5068
5237
  email: string;
5069
5238
  }
5070
5239
 
5240
+ export declare enum RepositLandlordDTOLandlordTypeIdEnum {
5241
+ COMPANY = "COMPANY",
5242
+ SOLEPERSON = "SOLE_PERSON"
5243
+ }
5244
+
5071
5245
  export declare interface RepositOfferDTO {
5072
5246
  id: string;
5073
5247
  PPM: number;
@@ -5511,6 +5685,42 @@ export declare interface SearchUserResultsDTO {
5511
5685
  results: Array<UserDTO>;
5512
5686
  }
5513
5687
 
5688
+ export declare function seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
5689
+
5690
+ export declare interface SeedCashDepositDTO {
5691
+ organizationId: string;
5692
+ userId: string;
5693
+ propertyId: string;
5694
+ ppm: number;
5695
+ amount: number;
5696
+ startDate: string;
5697
+ letOnly: boolean;
5698
+ tenantFirstName: string;
5699
+ tenantLastName: string;
5700
+ tenantEmail: string;
5701
+ tenantMobileNumber: string;
5702
+ }
5703
+
5704
+ export declare class SeedCashDepositsApi extends BaseAPI implements SeedCashDepositsApiInterface {
5705
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<Response>;
5706
+ }
5707
+
5708
+ export declare const SeedCashDepositsApiAxiosParamCreator: (configuration?: Configuration) => {
5709
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): RequestArgs;
5710
+ };
5711
+
5712
+ export declare const SeedCashDepositsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5713
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<Response>;
5714
+ };
5715
+
5716
+ export declare const SeedCashDepositsApiFp: (configuration?: Configuration) => {
5717
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
5718
+ };
5719
+
5720
+ export declare interface SeedCashDepositsApiInterface {
5721
+ seedCashDeposit(seedCashDepositDTO: SeedCashDepositDTO, options?: any): AxiosPromise<{}>;
5722
+ }
5723
+
5514
5724
  export declare function seedReposit(seedRepositDTO: SeedRepositDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
5515
5725
 
5516
5726
  export declare interface SeedRepositDTO {
@@ -5638,6 +5848,13 @@ export declare interface SuppliersApiInterface {
5638
5848
  getSupplierAgents(id: string, options?: any): AxiosPromise<Array<RepositAgentDTO>>;
5639
5849
  }
5640
5850
 
5851
+ export declare interface TemporaryUploadUrlDTO {
5852
+ bucket: string;
5853
+ key: string;
5854
+ uploadUrl: string;
5855
+ expiresInSeconds: number;
5856
+ }
5857
+
5641
5858
  export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterface {
5642
5859
  closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
5643
5860
  createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
@@ -5794,6 +6011,7 @@ export declare interface TenancyDTO {
5794
6011
  tenants: Array<TenantDTO>;
5795
6012
  letOnly: boolean;
5796
6013
  isNewTenancy?: boolean;
6014
+ termType?: TenancyDTOTermTypeEnum;
5797
6015
  checkout?: CheckoutDTO;
5798
6016
  completedAt?: string;
5799
6017
  outcomeDeadline?: string;
@@ -5812,6 +6030,11 @@ export declare interface TenancyDTO {
5812
6030
  preTenancyDocuments?: Array<PreTenancyDocumentDTO>;
5813
6031
  }
5814
6032
 
6033
+ export declare enum TenancyDTOTermTypeEnum {
6034
+ FIXED = "FIXED",
6035
+ PERIODIC = "PERIODIC"
6036
+ }
6037
+
5815
6038
  export declare class TenancyExpiriesApi extends BaseAPI implements TenancyExpiriesApiInterface {
5816
6039
  createTenancyExpiry(tenancyId: string, createTenancyExpiryRequestDTO: CreateTenancyExpiryRequestDTO, options?: any): AxiosPromise<TenancyExpiryDTO>;
5817
6040
  getByTenancyId(tenancyId: string, options?: any): AxiosPromise<TenancyExpiryDTO[]>;
@@ -6002,7 +6225,7 @@ export declare interface TenancyOrderNotesApiInterface {
6002
6225
 
6003
6226
  export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersApiInterface {
6004
6227
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
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>;
6228
+ 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>;
6006
6229
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6007
6230
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6008
6231
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
@@ -6011,7 +6234,7 @@ export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersAp
6011
6234
 
6012
6235
  export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configuration) => {
6013
6236
  getTenancyOrderById(id: string, includeDeleted?: 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;
6237
+ 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;
6015
6238
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): RequestArgs;
6016
6239
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): RequestArgs;
6017
6240
  sendOverdueChasers(id: string, options?: any): RequestArgs;
@@ -6020,7 +6243,7 @@ export declare const TenancyOrdersApiAxiosParamCreator: (configuration?: Configu
6020
6243
 
6021
6244
  export declare const TenancyOrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6022
6245
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
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>;
6246
+ 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>;
6024
6247
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6025
6248
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6026
6249
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
@@ -6029,7 +6252,7 @@ export declare const TenancyOrdersApiFactory: (configuration?: Configuration, ba
6029
6252
 
6030
6253
  export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
6031
6254
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
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>;
6255
+ 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>;
6033
6256
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6034
6257
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6035
6258
  sendOverdueChasers(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
@@ -6038,7 +6261,7 @@ export declare const TenancyOrdersApiFp: (configuration?: Configuration) => {
6038
6261
 
6039
6262
  export declare interface TenancyOrdersApiInterface {
6040
6263
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
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>;
6264
+ 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>;
6042
6265
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6043
6266
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
6044
6267
  sendOverdueChasers(id: string, options?: any): AxiosPromise<{}>;
@@ -6051,6 +6274,7 @@ export declare interface TenancyOrderWithTenancyAndOrderCustomersDTO {
6051
6274
  tenancy: TenancyWithCheckoutAndClaimDTO;
6052
6275
  tenancyOrderNotes?: Array<TenancyOrderNoteDTO>;
6053
6276
  repositOfferId?: string;
6277
+ outstandingChargesTenantEmails?: Array<string>;
6054
6278
  createdAt: string;
6055
6279
  updatedAt: string;
6056
6280
  deletedAt: string;
@@ -6062,6 +6286,7 @@ export declare interface TenancyOrderWithTenancyDTO {
6062
6286
  id: string;
6063
6287
  order: OrderDTO;
6064
6288
  tenancy: TenancyWithCheckoutAndClaimDTO;
6289
+ outstandingChargesTenantEmails?: Array<string>;
6065
6290
  repositOfferId?: string;
6066
6291
  createdAt: string;
6067
6292
  updatedAt: string;
@@ -6146,6 +6371,7 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
6146
6371
  tenants: Array<TenantDTO>;
6147
6372
  letOnly: boolean;
6148
6373
  isNewTenancy?: boolean;
6374
+ termType?: TenancyWithCheckoutAndClaimDTOTermTypeEnum;
6149
6375
  checkout?: CheckoutWithClaimDTO;
6150
6376
  completedAt?: string;
6151
6377
  outcomeDeadline?: string;
@@ -6165,6 +6391,11 @@ export declare interface TenancyWithCheckoutAndClaimDTO {
6165
6391
  hasIncompleteTransfers: boolean;
6166
6392
  }
6167
6393
 
6394
+ export declare enum TenancyWithCheckoutAndClaimDTOTermTypeEnum {
6395
+ FIXED = "FIXED",
6396
+ PERIODIC = "PERIODIC"
6397
+ }
6398
+
6168
6399
  export declare function tenantConfirmation(token: string, response: 'CONFIRMED' | 'UNCONFIRMED', tenancyId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
6169
6400
 
6170
6401
  export declare interface TenantDTO {
@@ -6497,6 +6728,12 @@ export declare interface UpdateTenancyRequestDTO {
6497
6728
  endDate?: string;
6498
6729
  letOnly?: boolean;
6499
6730
  isNewTenancy?: boolean;
6731
+ termType?: UpdateTenancyRequestDTOTermTypeEnum;
6732
+ }
6733
+
6734
+ export declare enum UpdateTenancyRequestDTOTermTypeEnum {
6735
+ FIXED = "FIXED",
6736
+ PERIODIC = "PERIODIC"
6500
6737
  }
6501
6738
 
6502
6739
  export declare function updateTenantDisputeMessage(claimId: string, updateTenantDisputeMessageDTO: UpdateTenantDisputeMessageDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
@@ -6590,7 +6827,8 @@ export declare enum UserDTOInternalRolesEnum {
6590
6827
  PAYMENTPLANCREATE = "PAYMENT_PLAN_CREATE",
6591
6828
  PAYMENTPLANDELETE = "PAYMENT_PLAN_DELETE",
6592
6829
  INTERNALREPORTSALES = "INTERNAL_REPORT_SALES",
6593
- MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES"
6830
+ MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
6831
+ BULKIMPORT = "BULK_IMPORT"
6594
6832
  }
6595
6833
 
6596
6834
  export declare enum UserDTOUserTypeIdEnum {