@finverse/sdk-typescript 0.0.174 → 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 -4
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -6253,7 +6253,7 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
6253
6253
|
* @param {*} [options] Override http request option.
|
|
6254
6254
|
* @throws {RequiredError}
|
|
6255
6255
|
*/
|
|
6256
|
-
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>>;
|
|
6257
6257
|
/**
|
|
6258
6258
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6259
6259
|
* @param {string} payoutInstructionId payout instruction id
|
|
@@ -6447,7 +6447,7 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
6447
6447
|
* @param {*} [options] Override http request option.
|
|
6448
6448
|
* @throws {RequiredError}
|
|
6449
6449
|
*/
|
|
6450
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: any): AxiosPromise<
|
|
6450
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: any): AxiosPromise<GetMandateResponse>;
|
|
6451
6451
|
/**
|
|
6452
6452
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6453
6453
|
* @param {string} payoutInstructionId payout instruction id
|
|
@@ -6643,7 +6643,7 @@ export interface CustomerApiInterface {
|
|
|
6643
6643
|
* @throws {RequiredError}
|
|
6644
6644
|
* @memberof CustomerApiInterface
|
|
6645
6645
|
*/
|
|
6646
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
6646
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): AxiosPromise<GetMandateResponse>;
|
|
6647
6647
|
/**
|
|
6648
6648
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6649
6649
|
* @param {string} payoutInstructionId payout instruction id
|
|
@@ -6865,7 +6865,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
6865
6865
|
* @throws {RequiredError}
|
|
6866
6866
|
* @memberof CustomerApi
|
|
6867
6867
|
*/
|
|
6868
|
-
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6868
|
+
authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateResponse>>;
|
|
6869
6869
|
/**
|
|
6870
6870
|
* Cancel Payout Instruction by payout_instruction_id
|
|
6871
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"
|