@finverse/sdk-typescript 0.0.173 → 0.0.175
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 +4 -10
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -4137,12 +4137,6 @@ export interface MandateSenderAccountRequest {
|
|
|
4137
4137
|
* @interface ManualPaymentConfirmationRequest
|
|
4138
4138
|
*/
|
|
4139
4139
|
export interface ManualPaymentConfirmationRequest {
|
|
4140
|
-
/**
|
|
4141
|
-
*
|
|
4142
|
-
* @type {string}
|
|
4143
|
-
* @memberof ManualPaymentConfirmationRequest
|
|
4144
|
-
*/
|
|
4145
|
-
accountholder_name: string;
|
|
4146
4140
|
/**
|
|
4147
4141
|
*
|
|
4148
4142
|
* @type {string}
|
|
@@ -6259,7 +6253,7 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
6259
6253
|
* @param {*} [options] Override http request option.
|
|
6260
6254
|
* @throws {RequiredError}
|
|
6261
6255
|
*/
|
|
6262
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6256
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMandateResponse>>;
|
|
6263
6257
|
/**
|
|
6264
6258
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6265
6259
|
* @param {string} payoutInstructionId payout instruction id
|
|
@@ -6453,7 +6447,7 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
6453
6447
|
* @param {*} [options] Override http request option.
|
|
6454
6448
|
* @throws {RequiredError}
|
|
6455
6449
|
*/
|
|
6456
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: any): AxiosPromise<
|
|
6450
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: any): AxiosPromise<GetMandateResponse>;
|
|
6457
6451
|
/**
|
|
6458
6452
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6459
6453
|
* @param {string} payoutInstructionId payout instruction id
|
|
@@ -6649,7 +6643,7 @@ export interface CustomerApiInterface {
|
|
|
6649
6643
|
* @throws {RequiredError}
|
|
6650
6644
|
* @memberof CustomerApiInterface
|
|
6651
6645
|
*/
|
|
6652
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
6646
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): AxiosPromise<GetMandateResponse>;
|
|
6653
6647
|
/**
|
|
6654
6648
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6655
6649
|
* @param {string} payoutInstructionId payout instruction id
|
|
@@ -6871,7 +6865,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
6871
6865
|
* @throws {RequiredError}
|
|
6872
6866
|
* @memberof CustomerApi
|
|
6873
6867
|
*/
|
|
6874
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6868
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateResponse>>;
|
|
6875
6869
|
/**
|
|
6876
6870
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6877
6871
|
* @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.175",
|
|
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"
|