@reposit/api-client 6.64.0 → 6.65.0-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -418,6 +418,7 @@ export declare interface BulkImportDTO {
418
418
  failedRecords: number;
419
419
  createdByUserId: string;
420
420
  createdByUser?: UserDTO;
421
+ failureReason?: string;
421
422
  startedAt?: string;
422
423
  completedAt?: string;
423
424
  createdAt: string;
@@ -2115,10 +2116,10 @@ export declare interface CreateTenancyRequestDTO {
2115
2116
  PPM?: number;
2116
2117
  isNewTenancy?: boolean;
2117
2118
  startDate?: string;
2119
+ termType?: CreateTenancyRequestDTOTermTypeEnum;
2118
2120
  endDate?: string;
2119
2121
  organizationId: string;
2120
2122
  letOnly?: boolean;
2121
- termType?: CreateTenancyRequestDTOTermTypeEnum;
2122
2123
  }
2123
2124
 
2124
2125
  export declare enum CreateTenancyRequestDTOTermTypeEnum {
@@ -2816,6 +2817,8 @@ export declare function findReferenceById(id: string, configuration?: Configurat
2816
2817
 
2817
2818
  export declare function findReferenceDocumentById(referenceId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ReferenceDocumentDTO>;
2818
2819
 
2820
+ export declare function forceDeletePaymentPlanById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
2821
+
2819
2822
  export declare function generateADRForm(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
2820
2823
 
2821
2824
  export declare function generateCashDepositPlaidLinkToken(verifyPostcodeRequestDTO: VerifyPostcodeRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<GeneratePlaidLinkTokenResponseDTO>;
@@ -3391,6 +3394,7 @@ export declare interface MyDepositsOnboardingStatusResponseDTO {
3391
3394
  companyName?: string;
3392
3395
  officeName?: string;
3393
3396
  accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
3397
+ failureReason?: string;
3394
3398
  }
3395
3399
 
3396
3400
  export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
@@ -3402,7 +3406,8 @@ export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
3402
3406
  export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
3403
3407
  NOTCONNECTED = "NOT_CONNECTED",
3404
3408
  CONNECTED = "CONNECTED",
3405
- COMPLETE = "COMPLETE"
3409
+ COMPLETE = "COMPLETE",
3410
+ FAILED = "FAILED"
3406
3411
  }
3407
3412
 
3408
3413
  export declare class NetPromoterScoreApi extends BaseAPI implements NetPromoterScoreApiInterface {
@@ -3826,6 +3831,7 @@ export declare interface OrganizationDTO {
3826
3831
  name: string;
3827
3832
  attributes?: OrganizationAttributesDTO;
3828
3833
  settings?: OrganizationSettingsDTO;
3834
+ canUseAllTenancyTypes?: boolean;
3829
3835
  organizationTypeId: OrganizationDTOOrganizationTypeIdEnum;
3830
3836
  organizationRecipients?: Array<OrganizationRecipientDTO>;
3831
3837
  createdAt: string;
@@ -4141,6 +4147,12 @@ export declare interface OrganizationSettingsDTO {
4141
4147
  inventoryChaserDisabled?: boolean;
4142
4148
  minimumFeeDisabled?: boolean;
4143
4149
  pendingSwitchRemindersDisabled?: boolean;
4150
+ allowedTenancyTermTypes?: Array<OrganizationSettingsDTOAllowedTenancyTermTypesEnum>;
4151
+ }
4152
+
4153
+ export declare enum OrganizationSettingsDTOAllowedTenancyTermTypesEnum {
4154
+ FIXED = "FIXED",
4155
+ PERIODIC = "PERIODIC"
4144
4156
  }
4145
4157
 
4146
4158
  export declare enum OrganizationSettingsDTOCommissionRuleEnum {
@@ -4258,6 +4270,7 @@ export declare interface OrganizationWithCashDepositDTO {
4258
4270
  name: string;
4259
4271
  attributes?: OrganizationAttributesDTO;
4260
4272
  settings?: OrganizationSettingsDTO;
4273
+ canUseAllTenancyTypes?: boolean;
4261
4274
  organizationTypeId: OrganizationWithCashDepositDTOOrganizationTypeIdEnum;
4262
4275
  organizationRecipients?: Array<OrganizationRecipientDTO>;
4263
4276
  createdAt: string;
@@ -4279,6 +4292,7 @@ export declare interface OrganizationWithRepositsAndRoles {
4279
4292
  name: string;
4280
4293
  attributes?: OrganizationAttributesDTO;
4281
4294
  settings?: OrganizationSettingsDTO;
4295
+ canUseAllTenancyTypes?: boolean;
4282
4296
  organizationTypeId: OrganizationWithRepositsAndRolesOrganizationTypeIdEnum;
4283
4297
  organizationRecipients?: Array<OrganizationRecipientDTO>;
4284
4298
  createdAt: string;
@@ -4310,6 +4324,7 @@ export declare interface OrganizationWithRoles {
4310
4324
  name: string;
4311
4325
  attributes?: OrganizationAttributesDTO;
4312
4326
  settings?: OrganizationSettingsDTO;
4327
+ canUseAllTenancyTypes?: boolean;
4313
4328
  organizationTypeId: OrganizationWithRolesOrganizationTypeIdEnum;
4314
4329
  organizationRecipients?: Array<OrganizationRecipientDTO>;
4315
4330
  createdAt: string;
@@ -4561,6 +4576,7 @@ export declare class PaymentPlansApi extends BaseAPI implements PaymentPlansApiI
4561
4576
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
4562
4577
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
4563
4578
  deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4579
+ forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4564
4580
  getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
4565
4581
  getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
4566
4582
  getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
@@ -4570,6 +4586,7 @@ export declare const PaymentPlansApiAxiosParamCreator: (configuration?: Configur
4570
4586
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): RequestArgs;
4571
4587
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): RequestArgs;
4572
4588
  deletePaymentPlanById(id: string, options?: any): RequestArgs;
4589
+ forceDeletePaymentPlanById(id: string, options?: any): RequestArgs;
4573
4590
  getPaymentPlanById(id: string, options?: any): RequestArgs;
4574
4591
  getPaymentPlanPropertyAddressById(id: string, options?: any): RequestArgs;
4575
4592
  getSetupIntentSecret(id: string, options?: any): RequestArgs;
@@ -4579,6 +4596,7 @@ export declare const PaymentPlansApiFactory: (configuration?: Configuration, bas
4579
4596
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
4580
4597
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
4581
4598
  deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4599
+ forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4582
4600
  getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
4583
4601
  getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
4584
4602
  getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
@@ -4588,6 +4606,7 @@ export declare const PaymentPlansApiFp: (configuration?: Configuration) => {
4588
4606
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
4589
4607
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
4590
4608
  deletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
4609
+ forceDeletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
4591
4610
  getPaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
4592
4611
  getPaymentPlanPropertyAddressById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressDTO>;
4593
4612
  getSetupIntentSecret(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SetupIntentSecretDTO>;
@@ -4597,6 +4616,7 @@ export declare interface PaymentPlansApiInterface {
4597
4616
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<{}>;
4598
4617
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
4599
4618
  deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4619
+ forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4600
4620
  getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
4601
4621
  getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
4602
4622
  getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
@@ -4927,6 +4947,7 @@ export declare enum QueueMessageDTOCronNameEnum {
4927
4947
  DAILYCLAIMAUTORESPONDSUPPLIER = "DAILY_CLAIM_AUTO_RESPOND_SUPPLIER",
4928
4948
  SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
4929
4949
  DAILYFINALSCHEDULEDAUTOCHARGE = "DAILY_FINAL_SCHEDULED_AUTO_CHARGE",
4950
+ DAILYSCHEDULEDRETRYABLEPAYMENT = "DAILY_SCHEDULED_RETRYABLE_PAYMENT",
4930
4951
  DAILYORDERSCHEDULEDCHARGE = "DAILY_ORDER_SCHEDULED_CHARGE",
4931
4952
  MONTHLYDIRECTCOMMISSION = "MONTHLY_DIRECT_COMMISSION",
4932
4953
  WEEKLYLANDLORDTRANSFERREMINDER = "WEEKLY_LANDLORD_TRANSFER_REMINDER",
@@ -4971,6 +4992,7 @@ export declare enum QueueMessageDTOTypeEnum {
4971
4992
  TOPUPUPCOMING = "TOP_UP_UPCOMING",
4972
4993
  AUTOCHARGE = "AUTO_CHARGE",
4973
4994
  SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
4995
+ PROCESSSCHEDULEDRETRYABLEPAYMENT = "PROCESS_SCHEDULED_RETRYABLE_PAYMENT",
4974
4996
  CHARGEORDERSCHEDULEDCHARGE = "CHARGE_ORDER_SCHEDULED_CHARGE",
4975
4997
  AUTORESPONDTENANT = "AUTO_RESPOND_TENANT",
4976
4998
  AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
@@ -6886,9 +6908,12 @@ export declare enum UserDTOInternalRolesEnum {
6886
6908
  FINANCEINDIVIDUAL = "FINANCE_INDIVIDUAL",
6887
6909
  PAYMENTPLANCREATE = "PAYMENT_PLAN_CREATE",
6888
6910
  PAYMENTPLANDELETE = "PAYMENT_PLAN_DELETE",
6911
+ PAYMENTPLANDELETEFORCE = "PAYMENT_PLAN_DELETE_FORCE",
6889
6912
  INTERNALREPORTSALES = "INTERNAL_REPORT_SALES",
6890
6913
  MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
6891
- BULKIMPORT = "BULK_IMPORT"
6914
+ BULKIMPORT = "BULK_IMPORT",
6915
+ CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
6916
+ CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE"
6892
6917
  }
6893
6918
 
6894
6919
  export declare enum UserDTOUserTypeIdEnum {