@finverse/sdk-typescript 0.0.88 → 0.0.90
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/api.d.ts +5 -5
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -3873,7 +3873,7 @@ export interface RecipientAccount {
|
|
|
3873
3873
|
* @type {RecipientAccountNumber}
|
|
3874
3874
|
* @memberof RecipientAccount
|
|
3875
3875
|
*/
|
|
3876
|
-
account_number
|
|
3876
|
+
account_number: RecipientAccountNumber;
|
|
3877
3877
|
/**
|
|
3878
3878
|
* Type of recipient account.
|
|
3879
3879
|
* @type {string}
|
|
@@ -4765,7 +4765,7 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
4765
4765
|
* @param {*} [options] Override http request option.
|
|
4766
4766
|
* @throws {RequiredError}
|
|
4767
4767
|
*/
|
|
4768
|
-
cancelPayoutInstruction(payoutInstructionId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4768
|
+
cancelPayoutInstruction(payoutInstructionId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayoutInstructionResponse>>;
|
|
4769
4769
|
/**
|
|
4770
4770
|
* CREATE Mandate
|
|
4771
4771
|
* @param {CreateMandateRequest} createMandateRequest request body for creating mandate
|
|
@@ -4930,7 +4930,7 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
4930
4930
|
* @param {*} [options] Override http request option.
|
|
4931
4931
|
* @throws {RequiredError}
|
|
4932
4932
|
*/
|
|
4933
|
-
cancelPayoutInstruction(payoutInstructionId: string, options?: any): AxiosPromise<
|
|
4933
|
+
cancelPayoutInstruction(payoutInstructionId: string, options?: any): AxiosPromise<PayoutInstructionResponse>;
|
|
4934
4934
|
/**
|
|
4935
4935
|
* CREATE Mandate
|
|
4936
4936
|
* @param {CreateMandateRequest} createMandateRequest request body for creating mandate
|
|
@@ -5097,7 +5097,7 @@ export interface CustomerApiInterface {
|
|
|
5097
5097
|
* @throws {RequiredError}
|
|
5098
5098
|
* @memberof CustomerApiInterface
|
|
5099
5099
|
*/
|
|
5100
|
-
cancelPayoutInstruction(payoutInstructionId: string, options?: AxiosRequestConfig): AxiosPromise<
|
|
5100
|
+
cancelPayoutInstruction(payoutInstructionId: string, options?: AxiosRequestConfig): AxiosPromise<PayoutInstructionResponse>;
|
|
5101
5101
|
/**
|
|
5102
5102
|
* CREATE Mandate
|
|
5103
5103
|
* @param {CreateMandateRequest} createMandateRequest request body for creating mandate
|
|
@@ -5286,7 +5286,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
5286
5286
|
* @throws {RequiredError}
|
|
5287
5287
|
* @memberof CustomerApi
|
|
5288
5288
|
*/
|
|
5289
|
-
cancelPayoutInstruction(payoutInstructionId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
5289
|
+
cancelPayoutInstruction(payoutInstructionId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutInstructionResponse>>;
|
|
5290
5290
|
/**
|
|
5291
5291
|
* CREATE Mandate
|
|
5292
5292
|
* @param {CreateMandateRequest} createMandateRequest request body for creating mandate
|