Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@eld0ud/fintecture-client

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eld0ud/fintecture-client - npm Package Compare versions

Comparing version 1.0.29 to 1.0.30

2

lib/package.json
{
"name": "@eld0ud/fintecture-client",
"version": "1.0.29",
"version": "1.0.30",
"description": "Fintecture Open Banking API Gateway enabling secure bank connections and payments",

@@ -5,0 +5,0 @@ "main": "lib/fintecture-client.js",

@@ -25,3 +25,7 @@ import { IFintectureConfig } from './interfaces/ConfigInterface';

*/
connect(accessToken: string, payload: object, state: string): Promise<IPisV2Connect>;
connect(accessToken: string, payload: object, connectConfig: {
state: string;
redirect_uri?: string;
origin_uri?: string;
}): Promise<IPisV2Connect>;
/**

@@ -28,0 +32,0 @@ * This endpoint returns the details of all transfers or of a specific transfer

@@ -48,5 +48,5 @@ "use strict";

*/
connect(accessToken, payload, state) {
connect(accessToken, payload, connectConfig) {
return __awaiter(this, void 0, void 0, function* () {
const url = `${Endpoints_1.Endpoints.PISV2}/connect?state=${state}`;
const url = `${Endpoints_1.Endpoints.PISV2}/connect?state=${connectConfig.state}${connectConfig.redirect_uri ? `&redirect_uri=${encodeURIComponent(connectConfig.redirect_uri)}` : ''}${connectConfig.origin_uri ? `&origin_uri=${encodeURIComponent(connectConfig.origin_uri)}` : ''}`;
const headers = apiService.getHeaders('post', url, accessToken, this.config, payload);

@@ -53,0 +53,0 @@ const response = yield this.axiosInstance.post(url, payload, { headers });

{
"name": "@eld0ud/fintecture-client",
"version": "1.0.29",
"version": "1.0.30",
"description": "Fintecture Open Banking API Gateway enabling secure bank connections and payments",

@@ -5,0 +5,0 @@ "main": "lib/fintecture-client.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc