@reposit/api-client 6.64.0-1 → 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
@@ -2817,6 +2817,8 @@ export declare function findReferenceById(id: string, configuration?: Configurat
2817
2817
 
2818
2818
  export declare function findReferenceDocumentById(referenceId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ReferenceDocumentDTO>;
2819
2819
 
2820
+ export declare function forceDeletePaymentPlanById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
2821
+
2820
2822
  export declare function generateADRForm(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
2821
2823
 
2822
2824
  export declare function generateCashDepositPlaidLinkToken(verifyPostcodeRequestDTO: VerifyPostcodeRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<GeneratePlaidLinkTokenResponseDTO>;
@@ -3392,6 +3394,7 @@ export declare interface MyDepositsOnboardingStatusResponseDTO {
3392
3394
  companyName?: string;
3393
3395
  officeName?: string;
3394
3396
  accountType?: MyDepositsOnboardingStatusResponseDTOAccountTypeEnum;
3397
+ failureReason?: string;
3395
3398
  }
3396
3399
 
3397
3400
  export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
@@ -3403,7 +3406,8 @@ export declare enum MyDepositsOnboardingStatusResponseDTOAccountTypeEnum {
3403
3406
  export declare enum MyDepositsOnboardingStatusResponseDTOOnboardingStatusEnum {
3404
3407
  NOTCONNECTED = "NOT_CONNECTED",
3405
3408
  CONNECTED = "CONNECTED",
3406
- COMPLETE = "COMPLETE"
3409
+ COMPLETE = "COMPLETE",
3410
+ FAILED = "FAILED"
3407
3411
  }
3408
3412
 
3409
3413
  export declare class NetPromoterScoreApi extends BaseAPI implements NetPromoterScoreApiInterface {
@@ -4572,6 +4576,7 @@ export declare class PaymentPlansApi extends BaseAPI implements PaymentPlansApiI
4572
4576
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
4573
4577
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
4574
4578
  deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4579
+ forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4575
4580
  getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
4576
4581
  getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
4577
4582
  getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
@@ -4581,6 +4586,7 @@ export declare const PaymentPlansApiAxiosParamCreator: (configuration?: Configur
4581
4586
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): RequestArgs;
4582
4587
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): RequestArgs;
4583
4588
  deletePaymentPlanById(id: string, options?: any): RequestArgs;
4589
+ forceDeletePaymentPlanById(id: string, options?: any): RequestArgs;
4584
4590
  getPaymentPlanById(id: string, options?: any): RequestArgs;
4585
4591
  getPaymentPlanPropertyAddressById(id: string, options?: any): RequestArgs;
4586
4592
  getSetupIntentSecret(id: string, options?: any): RequestArgs;
@@ -4590,6 +4596,7 @@ export declare const PaymentPlansApiFactory: (configuration?: Configuration, bas
4590
4596
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
4591
4597
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
4592
4598
  deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4599
+ forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4593
4600
  getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
4594
4601
  getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
4595
4602
  getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
@@ -4599,6 +4606,7 @@ export declare const PaymentPlansApiFp: (configuration?: Configuration) => {
4599
4606
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
4600
4607
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
4601
4608
  deletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
4609
+ forceDeletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
4602
4610
  getPaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
4603
4611
  getPaymentPlanPropertyAddressById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressDTO>;
4604
4612
  getSetupIntentSecret(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SetupIntentSecretDTO>;
@@ -4608,6 +4616,7 @@ export declare interface PaymentPlansApiInterface {
4608
4616
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<{}>;
4609
4617
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
4610
4618
  deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4619
+ forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4611
4620
  getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
4612
4621
  getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
4613
4622
  getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
@@ -6899,6 +6908,7 @@ export declare enum UserDTOInternalRolesEnum {
6899
6908
  FINANCEINDIVIDUAL = "FINANCE_INDIVIDUAL",
6900
6909
  PAYMENTPLANCREATE = "PAYMENT_PLAN_CREATE",
6901
6910
  PAYMENTPLANDELETE = "PAYMENT_PLAN_DELETE",
6911
+ PAYMENTPLANDELETEFORCE = "PAYMENT_PLAN_DELETE_FORCE",
6902
6912
  INTERNALREPORTSALES = "INTERNAL_REPORT_SALES",
6903
6913
  MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
6904
6914
  BULKIMPORT = "BULK_IMPORT",