New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vezgo-sdk-js

Package Overview
Dependencies
Maintainers
3
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vezgo-sdk-js - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

8

CHANGELOG.md

@@ -7,2 +7,5 @@ # Changelog

## [1.0.1]
- Readme fix
## [1.0.0]

@@ -104,4 +107,5 @@ Note: Latest Vezgo Connect requires to be opened via `POST` request with `token` in the form data.

[Unreleased]: https://github.com/wealthica/vezgo-sdk-js/compare/v1.0.0...HEAD
[0.0.16]: https://github.com/wealthica/vezgo-sdk-js/compare/v0.0.16...v1.0.0
[Unreleased]: https://github.com/wealthica/vezgo-sdk-js/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/wealthica/vezgo-sdk-js/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/wealthica/vezgo-sdk-js/compare/v0.0.16...v1.0.0
[0.0.16]: https://github.com/wealthica/vezgo-sdk-js/compare/v0.0.15...v0.0.16

@@ -108,0 +112,0 @@ [0.0.15]: https://github.com/wealthica/vezgo-sdk-js/compare/v0.0.14...v0.0.15

{
"name": "vezgo-sdk-js",
"version": "1.0.0",
"version": "1.0.1",
"description": "Official Vezgo JS SDK for the Browser & NodeJS",

@@ -5,0 +5,0 @@ "author": "Wealthica Financial Technology Inc. <hello@wealthica.com> (https://wealthica.com/)",

@@ -159,3 +159,3 @@ # vezgo-sdk-js

```javascript
const url = await user.getConnectData({
const { url, token } = await user.getConnectData({
provider: 'coinbase', // optional

@@ -178,2 +178,17 @@ // required for server-side, optional for client (browser, ReactNative) or if already passed to `Vezgo.init()`.

// POST Vezgo Connect URL from client (browser/ReactNative) example:
const form = document.createElement("form");
form.method = "POST";
form.action = url;
const input = document.createElement("input");
input.type = "hidden";
input.name = "token";
input.value = token;
form.appendChild(input);
document.body.appendChild(form);
form.submit();
// Alternatively, pass redirectURI once to `Vezgo.init()`

@@ -188,6 +203,6 @@ const vezgo = Vezgo.init({

const user1 = vezgo.login('USER_ID_1');
const url1 = await user1.getConnectData();
const { url: url1, token } = await user1.getConnectData();
const user2 = vezgo.login('USER_ID_2');
const url2 = await user2.getConnectData();
const { url: url2, token } = await user2.getConnectData();
```

@@ -194,0 +209,0 @@

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