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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17eb0e953a7008d324ff2cb96bf8eda218e2850820cf0c3bdb26c447af241475
4
- data.tar.gz: e00b83c675d89256540bdaa4871415583f7a92db420047ae3dccb90aff8706a9
3
+ metadata.gz: da14c07f1879ab720a319c6370c3b800355c955d5f7b07201565a2fd71eb4ac4
4
+ data.tar.gz: 026517f99f4059a3e25336c7b7b743595cf1e59d0a18cc0bbd2b3df605985985
5
5
  SHA512:
6
- metadata.gz: 3dc4521ffefdc1d2f927db335345a647737b19339c5b26d42fccaee7d52ccddd467abf9f6db4ff5cea3068ce843e1f3e9e688ef1cf9c11807dc81f916ff6d17c
7
- data.tar.gz: '09ce3ce0cf5dca4d3457ab1d2b2dfde3b6fd508ea383a7dfb3c0a8408bd7903cb1a28480532e5b564094cb39388240c6fa131ac5df66774928b00f307a5ad40a'
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nordigen
4
- VERSION = "2.1.0"
4
+ VERSION = "2.1.1"
5
5
  end
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.0
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-15 00:00:00.000000000 Z
11
+ date: 2022-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday