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