@reposit/api-client 6.70.0 → 6.71.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 +8 -8
- package/dist/index.js +1 -1
- package/dist/index.mjs +461 -455
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2374,6 +2374,8 @@ export declare function deleteOrganizationRecipient(id: string, organizationId:
|
|
|
2374
2374
|
|
|
2375
2375
|
export declare function deletePaymentPlanById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2376
2376
|
|
|
2377
|
+
export declare function deletePaymentPlanInstalment(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2378
|
+
|
|
2377
2379
|
export declare function deletePolicyDocument(policyId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2378
2380
|
|
|
2379
2381
|
export declare function deletePreTenancyDocument(tenancyId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
@@ -2938,8 +2940,6 @@ export declare function findReferenceById(id: string, configuration?: Configurat
|
|
|
2938
2940
|
|
|
2939
2941
|
export declare function findReferenceDocumentById(referenceId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ReferenceDocumentDTO>;
|
|
2940
2942
|
|
|
2941
|
-
export declare function forceDeletePaymentPlanById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2942
|
-
|
|
2943
2943
|
export declare function generateADRForm(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2944
2944
|
|
|
2945
2945
|
export declare function generateCashDepositPlaidLinkToken(verifyPostcodeRequestDTO: VerifyPostcodeRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<GeneratePlaidLinkTokenResponseDTO>;
|
|
@@ -4847,30 +4847,35 @@ export declare interface PaymentPlanInstalmentPayResponseDTO {
|
|
|
4847
4847
|
|
|
4848
4848
|
export declare class PaymentPlanInstalmentsApi extends BaseAPI implements PaymentPlanInstalmentsApiInterface {
|
|
4849
4849
|
deferPaymentPlanInstalment(id: string, paymentPlanId: string, deferPaymentPlanInstalmentDTO: DeferPaymentPlanInstalmentDTO, options?: any): AxiosPromise<object>;
|
|
4850
|
+
deletePaymentPlanInstalment(id: string, paymentPlanId: string, options?: any): AxiosPromise<object>;
|
|
4850
4851
|
getInstalmentById(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentDTO>;
|
|
4851
4852
|
getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentPayResponseDTO>;
|
|
4852
4853
|
}
|
|
4853
4854
|
|
|
4854
4855
|
export declare const PaymentPlanInstalmentsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4855
4856
|
deferPaymentPlanInstalment(id: string, paymentPlanId: string, deferPaymentPlanInstalmentDTO: DeferPaymentPlanInstalmentDTO, options?: any): RequestArgs;
|
|
4857
|
+
deletePaymentPlanInstalment(id: string, paymentPlanId: string, options?: any): RequestArgs;
|
|
4856
4858
|
getInstalmentById(id: string, paymentPlanId: string, options?: any): RequestArgs;
|
|
4857
4859
|
getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, options?: any): RequestArgs;
|
|
4858
4860
|
};
|
|
4859
4861
|
|
|
4860
4862
|
export declare const PaymentPlanInstalmentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4861
4863
|
deferPaymentPlanInstalment(id: string, paymentPlanId: string, deferPaymentPlanInstalmentDTO: DeferPaymentPlanInstalmentDTO, options?: any): AxiosPromise<object>;
|
|
4864
|
+
deletePaymentPlanInstalment(id: string, paymentPlanId: string, options?: any): AxiosPromise<object>;
|
|
4862
4865
|
getInstalmentById(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentDTO>;
|
|
4863
4866
|
getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentPayResponseDTO>;
|
|
4864
4867
|
};
|
|
4865
4868
|
|
|
4866
4869
|
export declare const PaymentPlanInstalmentsApiFp: (configuration?: Configuration) => {
|
|
4867
4870
|
deferPaymentPlanInstalment(id: string, paymentPlanId: string, deferPaymentPlanInstalmentDTO: DeferPaymentPlanInstalmentDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
4871
|
+
deletePaymentPlanInstalment(id: string, paymentPlanId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
4868
4872
|
getInstalmentById(id: string, paymentPlanId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanInstalmentDTO>;
|
|
4869
4873
|
getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanInstalmentPayResponseDTO>;
|
|
4870
4874
|
};
|
|
4871
4875
|
|
|
4872
4876
|
export declare interface PaymentPlanInstalmentsApiInterface {
|
|
4873
4877
|
deferPaymentPlanInstalment(id: string, paymentPlanId: string, deferPaymentPlanInstalmentDTO: DeferPaymentPlanInstalmentDTO, options?: any): AxiosPromise<object>;
|
|
4878
|
+
deletePaymentPlanInstalment(id: string, paymentPlanId: string, options?: any): AxiosPromise<object>;
|
|
4874
4879
|
getInstalmentById(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentDTO>;
|
|
4875
4880
|
getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentPayResponseDTO>;
|
|
4876
4881
|
}
|
|
@@ -4879,7 +4884,6 @@ export declare class PaymentPlansApi extends BaseAPI implements PaymentPlansApiI
|
|
|
4879
4884
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
|
|
4880
4885
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4881
4886
|
deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4882
|
-
forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4883
4887
|
getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4884
4888
|
getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
|
|
4885
4889
|
getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -4889,7 +4893,6 @@ export declare const PaymentPlansApiAxiosParamCreator: (configuration?: Configur
|
|
|
4889
4893
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): RequestArgs;
|
|
4890
4894
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): RequestArgs;
|
|
4891
4895
|
deletePaymentPlanById(id: string, options?: any): RequestArgs;
|
|
4892
|
-
forceDeletePaymentPlanById(id: string, options?: any): RequestArgs;
|
|
4893
4896
|
getPaymentPlanById(id: string, options?: any): RequestArgs;
|
|
4894
4897
|
getPaymentPlanPropertyAddressById(id: string, options?: any): RequestArgs;
|
|
4895
4898
|
getSetupIntentSecret(id: string, options?: any): RequestArgs;
|
|
@@ -4899,7 +4902,6 @@ export declare const PaymentPlansApiFactory: (configuration?: Configuration, bas
|
|
|
4899
4902
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
|
|
4900
4903
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4901
4904
|
deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4902
|
-
forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4903
4905
|
getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4904
4906
|
getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
|
|
4905
4907
|
getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -4909,7 +4911,6 @@ export declare const PaymentPlansApiFp: (configuration?: Configuration) => {
|
|
|
4909
4911
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
4910
4912
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
|
|
4911
4913
|
deletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
4912
|
-
forceDeletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
4913
4914
|
getPaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
|
|
4914
4915
|
getPaymentPlanPropertyAddressById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressDTO>;
|
|
4915
4916
|
getSetupIntentSecret(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -4919,7 +4920,6 @@ export declare interface PaymentPlansApiInterface {
|
|
|
4919
4920
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<{}>;
|
|
4920
4921
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4921
4922
|
deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4922
|
-
forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4923
4923
|
getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4924
4924
|
getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
|
|
4925
4925
|
getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -7273,7 +7273,7 @@ export declare enum UserDTOInternalRolesEnum {
|
|
|
7273
7273
|
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE",
|
|
7274
7274
|
CLAIMDELETE = "CLAIM_DELETE",
|
|
7275
7275
|
BANKTRANSACTIONIMPORT = "BANK_TRANSACTION_IMPORT",
|
|
7276
|
-
|
|
7276
|
+
PAYMENTPLANINSTALMENTDELETE = "PAYMENT_PLAN_INSTALMENT_DELETE"
|
|
7277
7277
|
}
|
|
7278
7278
|
|
|
7279
7279
|
export declare enum UserDTOUserTypeIdEnum {
|