@finverse/sdk-typescript 0.0.174 → 0.0.176
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 +10 -4
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -4143,6 +4143,12 @@ export interface ManualPaymentConfirmationRequest {
|
|
|
4143
4143
|
* @memberof ManualPaymentConfirmationRequest
|
|
4144
4144
|
*/
|
|
4145
4145
|
account_number_last4: string;
|
|
4146
|
+
/**
|
|
4147
|
+
*
|
|
4148
|
+
* @type {string}
|
|
4149
|
+
* @memberof ManualPaymentConfirmationRequest
|
|
4150
|
+
*/
|
|
4151
|
+
accountholder_name?: string;
|
|
4146
4152
|
}
|
|
4147
4153
|
/**
|
|
4148
4154
|
*
|
|
@@ -6253,7 +6259,7 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
6253
6259
|
* @param {*} [options] Override http request option.
|
|
6254
6260
|
* @throws {RequiredError}
|
|
6255
6261
|
*/
|
|
6256
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6262
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMandateResponse>>;
|
|
6257
6263
|
/**
|
|
6258
6264
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6259
6265
|
* @param {string} payoutInstructionId payout instruction id
|
|
@@ -6447,7 +6453,7 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
6447
6453
|
* @param {*} [options] Override http request option.
|
|
6448
6454
|
* @throws {RequiredError}
|
|
6449
6455
|
*/
|
|
6450
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: any): AxiosPromise<
|
|
6456
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: any): AxiosPromise<GetMandateResponse>;
|
|
6451
6457
|
/**
|
|
6452
6458
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6453
6459
|
* @param {string} payoutInstructionId payout instruction id
|
|
@@ -6643,7 +6649,7 @@ export interface CustomerApiInterface {
|
|
|
6643
6649
|
* @throws {RequiredError}
|
|
6644
6650
|
* @memberof CustomerApiInterface
|
|
6645
6651
|
*/
|
|
6646
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
6652
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): AxiosPromise<GetMandateResponse>;
|
|
6647
6653
|
/**
|
|
6648
6654
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6649
6655
|
* @param {string} payoutInstructionId payout instruction id
|
|
@@ -6865,7 +6871,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
6865
6871
|
* @throws {RequiredError}
|
|
6866
6872
|
* @memberof CustomerApi
|
|
6867
6873
|
*/
|
|
6868
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6874
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateResponse>>;
|
|
6869
6875
|
/**
|
|
6870
6876
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6871
6877
|
* @param {string} payoutInstructionId payout instruction id
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.176",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@types/mocha": "^10.0.2",
|
|
26
26
|
"@types/node": "^12.11.5",
|
|
27
27
|
"axios-mock-adapter": "^1.21.2",
|
|
28
|
-
"chai": "^4.3.
|
|
28
|
+
"chai": "^4.3.10",
|
|
29
29
|
"mocha": "^10.2.0",
|
|
30
30
|
"ts-node": "^10.9.1",
|
|
31
31
|
"typescript": "^3.6.4"
|