revo-loans_api 0.0.41 → 0.0.46

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: b13b7c9dd8576cb5d46192c7af6d7b028ca677095fb960326db9c1a08be70989
4
+ data.tar.gz: 3d7c19de2361f080b31844ae4ff6da97e3173154fd1853b7ecedbbf8ed1a3afe
5
5
  SHA512:
6
- metadata.gz: 3ef738ba615f0d3e526399abe39ab10b50e57e6ff57ee13b7ba13e5500edee9e68749f8aae3bf6845a1c53b100cb6c92ee9d12bd2a7f57413025dd13f833d6eb
7
- data.tar.gz: cecd824f67e21dcb5626a9a978c56207e170fa7294ddb9f1d343f47713ef29f0a18ed42486f90d46a1e87e2bfde9dd4dd7166efa63aeb7dd636526932a271e9c
6
+ metadata.gz: af6aece0a331331af494291077b69c2ce10e014ec6249e8010874cd598c57e210eedba571eb640f49cc2186a260f87c2a14821c4698b6f96b2bcb24eeb9c3b9a
7
+ data.tar.gz: cd482417dd0cd2dedd049ec7b244eb43d15787f9c40fffd495035e1d09ead289e1b17739843a0b1f9b0d2c65a028da09933e257e3003c325e026b10d88a5d02b
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.46)
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)
@@ -38,7 +38,7 @@ GEM
38
38
  http-form_data (2.3.0)
39
39
  http-parser (1.2.3)
40
40
  ffi-compiler (>= 1.0, < 2.0)
41
- i18n (1.8.9)
41
+ i18n (1.8.10)
42
42
  concurrent-ruby (~> 1.0)
43
43
  minitest (5.14.4)
44
44
  public_suffix (4.0.1)
@@ -106,7 +106,8 @@ class Revo::LoansApi::Client
106
106
  make_request(
107
107
  :post,
108
108
  "loan_requests/#{token}/confirmation",
109
- params: { code: code }
109
+ params: { code: code },
110
+ headers: { 'Application-Source': application_source }
110
111
  )
111
112
  end
112
113
 
@@ -251,9 +252,13 @@ class Revo::LoansApi::Client
251
252
  make_request(:get, "clients/#{client_id}/billing_shift/info")
252
253
  end
253
254
 
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 })
255
+ def billing_shift_document(client_id:, billing_chain: nil, billing_shift_id: nil)
256
+ if billing_shift_id
257
+ make_request(:get, "clients/#{client_id}/billing_shift/#{billing_shift_id}")
258
+ else
259
+ make_request(:get, "clients/#{client_id}/billing_shift/agreement",
260
+ params: { billing_chain: billing_chain })
261
+ end
257
262
  end
258
263
 
259
264
  def send_restructuring_confirmation_code(client_id:, product:)
@@ -314,6 +319,15 @@ class Revo::LoansApi::Client
314
319
  )
315
320
  end
316
321
 
322
+ def certificate(loan_application_id:, kind:)
323
+ make_request(
324
+ :post,
325
+ "loan_applications/#{loan_application_id}/certificate",
326
+ params: { kind: kind }
327
+ )
328
+ end
329
+
330
+
317
331
  private
318
332
 
319
333
  API_CONTENT_TYPE = 'application/json'.freeze
@@ -1,5 +1,5 @@
1
1
  module Revo
2
2
  module LoansApi
3
- VERSION = '0.0.41'.freeze
3
+ VERSION = '0.0.46'.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.46
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-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http