revo-loans_api 0.0.41 → 0.0.42

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: b27b2c705c035679ef8114a747c37d630c69089f727555be1ca5eb499d2a3148
4
- data.tar.gz: 1dd87c734dc4afae9980b9459320a0ee735cfcd7e77c425aaa1937b0e630a2a9
3
+ metadata.gz: 232a5c7194010a4fc77beb6a0b4e72f4b8103cf162268a8c9e95c23bebc66b37
4
+ data.tar.gz: 3b1411102dcac72a65703a975ea4d506f43858b1f80b77bf33e9950beb5dcc9c
5
5
  SHA512:
6
- metadata.gz: 3ef738ba615f0d3e526399abe39ab10b50e57e6ff57ee13b7ba13e5500edee9e68749f8aae3bf6845a1c53b100cb6c92ee9d12bd2a7f57413025dd13f833d6eb
7
- data.tar.gz: cecd824f67e21dcb5626a9a978c56207e170fa7294ddb9f1d343f47713ef29f0a18ed42486f90d46a1e87e2bfde9dd4dd7166efa63aeb7dd636526932a271e9c
6
+ metadata.gz: 393db7601c7e9d5ddcc3b7acc8b042a934762afdf0dd800bd0e6d54a31f44134bfe8f7d8f6904cf4019e8707986aa3aee8eb3ff084255d8235961a290fff1ce0
7
+ data.tar.gz: b09e44ed4c5a51c0865693a4a026a213cb2a2d817e57314444b7a6b5037f9da439084479843d9a3a4ebf032641024e1c689f7abc59659399ca1e765c75830a35
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- revo-loans_api (0.0.41)
4
+ revo-loans_api (0.0.42)
5
5
  activesupport
6
6
  http
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (6.1.3)
11
+ activesupport (6.1.3.1)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 1.6, < 2)
14
14
  minitest (>= 5.1)
@@ -251,9 +251,13 @@ class Revo::LoansApi::Client
251
251
  make_request(:get, "clients/#{client_id}/billing_shift/info")
252
252
  end
253
253
 
254
- def billing_shift_document(client_id:, billing_chain:)
255
- make_request(:get, "clients/#{client_id}/billing_shift/agreement",
256
- params: { billing_chain: billing_chain })
254
+ def billing_shift_document(client_id:, billing_chain: nil, billing_shift_id: nil)
255
+ if billing_shift_id
256
+ make_request(:get, "clients/#{client_id}/billing_shift/#{billing_shift_id}")
257
+ else
258
+ make_request(:get, "clients/#{client_id}/billing_shift/agreement",
259
+ params: { billing_chain: billing_chain })
260
+ end
257
261
  end
258
262
 
259
263
  def send_restructuring_confirmation_code(client_id:, product:)
@@ -1,5 +1,5 @@
1
1
  module Revo
2
2
  module LoansApi
3
- VERSION = '0.0.41'.freeze
3
+ VERSION = '0.0.42'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: revo-loans_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.41
4
+ version: 0.0.42
5
5
  platform: ruby
6
6
  authors:
7
7
  - Revo Developers
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-03-29 00:00:00.000000000 Z
11
+ date: 2021-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http