belvo 0.6.3 → 0.7.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b549a9348810743f778ef07fb248f62c4aba55dbc95635c8696f9db4d0cf6f81
4
- data.tar.gz: 817209595c82f407f57ddc8e8f7e22ecd356f83537245d2d8e4ac880095924c1
3
+ metadata.gz: 8eec099b22dbcb9dbac55982ac84c447bdae2f69c5f06bb310ea8a1be8889b1d
4
+ data.tar.gz: dfe77adac6722c395f8b31c867a2a803dabd226fcbda6452ffb29dbe6310e412
5
5
  SHA512:
6
- metadata.gz: a4b73cdfdb9881f883bf7a916295558ef84adcaf9cce3dd6179cf2275494b8d0f3e87a31319493112a50ce474fa6358de4a759d52437bdb4fdcbf26edeefa3b9
7
- data.tar.gz: ec2c9e7bbb340a53d6424c1f37c4e81d5b4dbc3b526903ef2d1b0c481f4887f9f7363e361e764cb6a5b03dd40c1290ef8b6416c43ebe06b32d91415b2a5dfd8d
6
+ metadata.gz: 71f7405acc9de362147b1182644c0af7bfe358160d070eaaae59b41d95caec18800d9bb589e61ef7dd0ae6ef2c22418cda0dfcd636d1f5165ae430d01b5dd0be
7
+ data.tar.gz: 90c3ce711c21df50880301629d3555f8dff981441e1dc30e1065e5182550dfd1e1bf43e282d47e58da05cd8131669eb00974f48aa7879ca22c06cf11b94d46a7
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- belvo (0.6.3)
4
+ belvo (0.7.0)
5
5
  faraday
6
6
  faraday_middleware
7
7
  typhoeus
data/README.md CHANGED
@@ -5,8 +5,17 @@
5
5
  <a href="https://coveralls.io/github/belvo-finance/belvo-ruby"><img alt="Coveralls github" src="https://img.shields.io/coveralls/github/belvo-finance/belvo-ruby?style=for-the-badge"></a>
6
6
  <a href="https://codeclimate.com/github/belvo-finance/belvo-ruby"><img alt="CodeClimate maintainability" src="https://img.shields.io/codeclimate/maintainability/belvo-finance/belvo-ruby?style=for-the-badge"></a>
7
7
  </p>
8
- <p align="center"><a href="https://developers.belvo.co">Developers portal</a> | <a href="https://belvo-finance.github.io/belvo-ruby">Documentation</a></p>
9
8
 
9
+ ## 📕 Documentation
10
+ How to use `belvo-ruby`: https://belvo-finance.github.io/belvo-ruby/
11
+
12
+ If you want to check the full documentation about Belvo API: https://docs.belvo.co
13
+
14
+ Or if you want to more information about:
15
+ * [Getting Belvo API keys](https://developers.belvo.com/docs/get-your-belvo-api-keys)
16
+ * [Using Connect Widget](https://developers.belvo.com/docs/connect-widget)
17
+ * [Testing in sandbox](https://developers.belvo.com/docs/test-in-sandbox)
18
+ * [Using webhooks and recurrent links](https://developers.belvo.com/docs/webhooks)
10
19
 
11
20
  ## Installation
12
21
 
@@ -39,7 +48,8 @@ begin
39
48
  new_link = belvo.links.register(
40
49
  institution: 'banamex_mx_retail',
41
50
  username: 'janedoe',
42
- password: 'super-secret'
51
+ password: 'super-secret',
52
+ options: { access_mode: Belvo::Link::AccessMode::SINGLE }
43
53
  )
44
54
 
45
55
  belvo.accounts.retrieve(link: new_link['id'])
@@ -8,6 +8,7 @@ module Belvo
8
8
  # @!attribute access_mode [rw] Link access mode (SINGLE or RECURRENT)
9
9
  # @!attribute token [rw] OTP token required by the institution
10
10
  # @!attribute username2 [rw] End-user secondary username, if any
11
+ # @!attribute username3 [rw] End-user tertiary username, if any
11
12
  # @!attribute password2 [rw] End-user secondary password, if any
12
13
  # @!attribute encryption_key [rw] Custom encryption key
13
14
  # @!attribute username_type [rw] Type of the username provided
@@ -15,6 +16,7 @@ module Belvo
15
16
  :access_mode,
16
17
  :token,
17
18
  :username2,
19
+ :username3,
18
20
  :password2,
19
21
  :encryption_key,
20
22
  :username_type,
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Belvo
4
4
  # belvo-ruby current version
5
- VERSION = '0.6.3'
5
+ VERSION = '0.7.0'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: belvo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Belvo Finance S.L.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-09 00:00:00.000000000 Z
11
+ date: 2020-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday