nordigen-ruby 2.1.0 → 2.1.1
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/CHANGELOG.md +5 -0
- data/lib/nordigen_ruby/api/requisitions.rb +2 -1
- data/lib/nordigen_ruby/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: da14c07f1879ab720a319c6370c3b800355c955d5f7b07201565a2fd71eb4ac4
|
4
|
+
data.tar.gz: 026517f99f4059a3e25336c7b7b743595cf1e59d0a18cc0bbd2b3df605985985
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8ec5f76a1e98dae6937a5b52cab3f28fb5ca4a501b720e1ad070807543ba68f34c7174939bd4852cbd6d3e0f1e1b5aa8b00dbcf8be37e796d3744df4ea22a53
|
7
|
+
data.tar.gz: 764bb5d85ca91eb66a9f04b4687bfe6eef0e635adf5913e4cc9db250267590eff07486f1478125a6dc5ea10983560c7c508be9742df27c16599bb1a6f39b0dc3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [2.1.1] - 2022-12-19
|
4
|
+
|
5
|
+
- [add redirect_immediate param #20](https://github.com/nordigen/nordigen-ruby/pull/20)
|
6
|
+
|
7
|
+
|
3
8
|
## [2.1.0] - 2022-12-15
|
4
9
|
|
5
10
|
- [Add user_language and account_selection params for requisition #18](https://github.com/nordigen/nordigen-ruby/pull/18)
|
@@ -9,7 +9,7 @@ module Nordigen
|
|
9
9
|
@client = client
|
10
10
|
end
|
11
11
|
|
12
|
-
def create_requisition(redirect_url:, reference:, institution_id:, user_language: "en", agreement: nil, account_selection: false)
|
12
|
+
def create_requisition(redirect_url:, reference:, institution_id:, user_language: "en", agreement: nil, account_selection: false, redirect_immediate: false)
|
13
13
|
# Create requisition. For creating links and retrieving accounts.
|
14
14
|
payload = {
|
15
15
|
"redirect": redirect_url,
|
@@ -17,6 +17,7 @@ module Nordigen
|
|
17
17
|
"institution_id": institution_id,
|
18
18
|
"user_language": user_language,
|
19
19
|
"account_selection": account_selection,
|
20
|
+
"redirect_immediate" redirect_immediate
|
20
21
|
}
|
21
22
|
|
22
23
|
if agreement
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nordigen-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nordigen Solutions
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|