belvo 1.6.1 → 1.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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/belvo/options.rb +0 -2
- data/lib/belvo/resources.rb +1 -8
- data/lib/belvo/utils.rb +0 -14
- data/lib/belvo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0fd340ed593283e4c1a3cecc0fa0d7f853c6becd6e7b7e287e5704656a8bac2
|
4
|
+
data.tar.gz: 53955ce40194359d65058a94471df2c2e07a54363646bb87bd33ca50f2fb0f44
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c7689eb36509a25dd3520815bf1a481d57d27025fed6fadcfbd2d60d4ee66b868f4c073d2f52feddf2a2a704ec7f1cf605c39dcb1ff29f2f45cebfa71a42ebe
|
7
|
+
data.tar.gz: 9e11e41d5046a2d5bc20cf360ce4b548ded50b5bf8f53c2b338045e40069d4665ed497f01a775664dfb5aedee9910cc51edd4b37b7a7e700f4e86ab4f1a4a06b
|
data/Gemfile.lock
CHANGED
data/lib/belvo/options.rb
CHANGED
data/lib/belvo/resources.rb
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
require 'date'
|
4
4
|
require 'belvo/options'
|
5
|
-
require 'belvo/utils'
|
6
5
|
require 'belvo/exceptions'
|
7
6
|
|
8
7
|
module Belvo
|
@@ -87,8 +86,6 @@ module Belvo
|
|
87
86
|
options: nil
|
88
87
|
)
|
89
88
|
options = LinkOptions.from(options)
|
90
|
-
options.certificate = Utils.read_file_to_b64(options.certificate)
|
91
|
-
options.private_key = Utils.read_file_to_b64(options.private_key)
|
92
89
|
body = {
|
93
90
|
institution: institution,
|
94
91
|
username: username,
|
@@ -108,15 +105,11 @@ module Belvo
|
|
108
105
|
# @raise [RequestError] If response code is different than 2XX
|
109
106
|
def update(id:, password: nil, password2: nil, options: nil)
|
110
107
|
options = LinkOptions.from(options)
|
111
|
-
options.certificate = Utils.read_file_to_b64(options.certificate)
|
112
|
-
options.private_key = Utils.read_file_to_b64(options.private_key)
|
113
108
|
body = {
|
114
109
|
password: password,
|
115
110
|
password2: password2,
|
116
111
|
token: options.token,
|
117
|
-
username_type: options.username_type
|
118
|
-
certificate: options.certificate,
|
119
|
-
private_key: options.private_key
|
112
|
+
username_type: options.username_type
|
120
113
|
}.merge(options)
|
121
114
|
body = clean body: body
|
122
115
|
@session.put(@endpoint, id, body)
|
data/lib/belvo/utils.rb
CHANGED
@@ -1,19 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require 'base64'
|
4
|
-
|
5
|
-
module Belvo
|
6
|
-
# Class with helper functions
|
7
|
-
class Utils
|
8
|
-
def self.read_file_to_b64(path)
|
9
|
-
return if path.nil? || !File.file?(path)
|
10
|
-
|
11
|
-
data = File.open(path).read
|
12
|
-
Base64.encode64(data)
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
3
|
# Class to get the api url given an environment name
|
18
4
|
class Environment
|
19
5
|
SANDBOX = 'https://sandbox.belvo.com'
|
data/lib/belvo/version.rb
CHANGED
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: 1.
|
4
|
+
version: 1.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: 2023-06-
|
11
|
+
date: 2023-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|