revo-loans_api 0.0.29 → 0.0.34

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08e37406c628d00a46d97199f935acb571bbac877c1f333cc79afbe2d4aca4d8'
4
- data.tar.gz: de12784c23fd7ff1adf5d356ffb9eb79a803cf07d5fb7d53b62fd65c2b89ff7f
3
+ metadata.gz: 84a8a0c12e729c8efe69812e123924e2ac642bacc75a2ef5f68e182dfff2b079
4
+ data.tar.gz: fceb3f975a0b2991ca86589340c7c2f435144f2a5974299e92f4f15f79d91e7f
5
5
  SHA512:
6
- metadata.gz: db2a438fc108433e9e30b42b8cda1f485b46b550438c7c347d134dc33c5a37781b0777419655192d11f84df58ed955a07d514c264eca1f6e91efa07b9b33b903
7
- data.tar.gz: 93eaa92d94a2b61a49b8a6d7e12370bd7e05b673f046e6795b27979e89d326fe1d32b7bc228d47ddbc96cd69118ecf8a13795fb0ab97eaf8c88a8d9eccb30dd0
6
+ metadata.gz: 7f0328a23cb1997864e1690fdd96c229f15afa1c26e68f947f445356e5280ff51f249248667e21b767b6fc3436a2fd5cd1e5c87c9ba21e280e2660ec03f123e3
7
+ data.tar.gz: 9673429ef4f381e1e1a6a274f867f374cdd81ae8166da6f8f477b8e1efb8c78ba5755b2571837b08e8caddab7f85dbeebb35c9d4c861160dfd880e1fff341f5e
@@ -1,34 +1,34 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- revo-loans_api (0.0.29)
4
+ revo-loans_api (0.0.34)
5
5
  activesupport
6
6
  http
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (6.0.2.2)
11
+ activesupport (6.0.3.2)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 0.7, < 2)
14
14
  minitest (~> 5.1)
15
15
  tzinfo (~> 1.1)
16
- zeitwerk (~> 2.2)
16
+ zeitwerk (~> 2.2, >= 2.2.2)
17
17
  addressable (2.7.0)
18
18
  public_suffix (>= 2.0.2, < 5.0)
19
19
  byebug (11.0.1)
20
- concurrent-ruby (1.1.6)
20
+ concurrent-ruby (1.1.7)
21
21
  crack (0.4.3)
22
22
  safe_yaml (~> 1.0.0)
23
23
  diff-lcs (1.3)
24
24
  domain_name (0.5.20190701)
25
25
  unf (>= 0.0.5, < 1.0.0)
26
- ffi (1.12.2)
26
+ ffi (1.13.1)
27
27
  ffi-compiler (1.0.1)
28
28
  ffi (>= 1.0.0)
29
29
  rake
30
30
  hashdiff (1.0.0)
31
- http (4.3.0)
31
+ http (4.4.1)
32
32
  addressable (~> 2.3)
33
33
  http-cookie (~> 1.0)
34
34
  http-form_data (~> 2.2)
@@ -38,9 +38,9 @@ GEM
38
38
  http-form_data (2.3.0)
39
39
  http-parser (1.2.1)
40
40
  ffi-compiler (>= 1.0, < 2.0)
41
- i18n (1.8.2)
41
+ i18n (1.8.5)
42
42
  concurrent-ruby (~> 1.0)
43
- minitest (5.14.0)
43
+ minitest (5.14.2)
44
44
  public_suffix (4.0.1)
45
45
  rake (10.5.0)
46
46
  rspec (3.9.0)
@@ -58,17 +58,17 @@ GEM
58
58
  rspec-support (3.9.0)
59
59
  safe_yaml (1.0.5)
60
60
  thread_safe (0.3.6)
61
- tzinfo (1.2.6)
61
+ tzinfo (1.2.7)
62
62
  thread_safe (~> 0.1)
63
63
  unf (0.1.4)
64
64
  unf_ext
65
- unf_ext (0.0.7.6)
65
+ unf_ext (0.0.7.7)
66
66
  vcr (5.0.0)
67
67
  webmock (3.7.6)
68
68
  addressable (>= 2.3.6)
69
69
  crack (>= 0.3.2)
70
70
  hashdiff (>= 0.4.0, < 2.0.0)
71
- zeitwerk (2.3.0)
71
+ zeitwerk (2.4.0)
72
72
 
73
73
  PLATFORMS
74
74
  ruby
@@ -204,7 +204,8 @@ class Revo::LoansApi::Client
204
204
  :post,
205
205
  "loan_requests/#{token}/client",
206
206
  params: { client: client_params, provider_data: provider_data,
207
- skip_email_confirmation: skip_email_confirmation }
207
+ skip_email_confirmation: skip_email_confirmation },
208
+ headers: { 'Application-Source': application_source }
208
209
  )
209
210
  end
210
211
 
@@ -216,6 +217,10 @@ class Revo::LoansApi::Client
216
217
  make_request(:get, "clients/#{guid}")
217
218
  end
218
219
 
220
+ def get_client_info(guid:)
221
+ make_request(:get, "clients/#{guid}/informers")
222
+ end
223
+
219
224
  def create_virtual_card(token:, term_id:, force_approve: false)
220
225
  make_request(
221
226
  :post,
@@ -228,7 +233,7 @@ class Revo::LoansApi::Client
228
233
  def create_card_loan(token:, term_id:, force_approve: false)
229
234
  make_request(
230
235
  :post,
231
- "loan_requests/#{token}/card_loan",
236
+ "loan_requests/#{token}/virtual_card_loan",
232
237
  params: { term_id: term_id, force_approve: force_approve },
233
238
  headers: { 'Application-Source': application_source }
234
239
  )
@@ -266,6 +271,13 @@ class Revo::LoansApi::Client
266
271
  )
267
272
  end
268
273
 
274
+ def restructuring_document(client_id:, product:, format: 'pdf')
275
+ make_request(
276
+ :get,
277
+ "clients/#{client_id}/restructuring/#{product}/document.#{format}"
278
+ )
279
+ end
280
+
269
281
  def increase_client_limit(client_id:, amount:)
270
282
  make_request(
271
283
  :patch,
@@ -360,7 +372,10 @@ class Revo::LoansApi::Client
360
372
  if response.content_type.mime_type == API_CONTENT_TYPE
361
373
  parse(response)
362
374
  else
363
- { errors: { base: [:unexpected_response] } }
375
+ {
376
+ errors: { base: [:unexpected_response] },
377
+ raw_response: response.to_s.presence
378
+ }
364
379
  end
365
380
  end
366
381
 
@@ -1,5 +1,5 @@
1
1
  module Revo
2
2
  module LoansApi
3
- VERSION = '0.0.29'.freeze
3
+ VERSION = '0.0.34'.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.29
4
+ version: 0.0.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - Revo Developers
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-21 00:00:00.000000000 Z
11
+ date: 2020-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http