synapseruby 1.0.9 → 1.0.10
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/lib/synapse_api/client.rb +14 -1
- data/lib/synapse_api/version.rb +1 -1
- data/synapseruby-1.0.9.gem +0 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a945d19e956eaf502f386e0532af6b7c9d4eee6c
|
4
|
+
data.tar.gz: ae5f2d1d26cdb8d1bfaf83bc186291fe266e9b7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8fc130b3d3b6e9e346b2d6340bca851e8abc6b3ebc197b5863156defdcac1a01e665628736b363f4c1bdb33b46fec1978156031c1d1a6b3e79d9a9aee9a8a836
|
7
|
+
data.tar.gz: 87bcef48533edc66db0a8e2a8c01e27dffad93c890ec4931fc0968c0117eb10f978a896dfc23a2049d46c9c60590e5ac8917e12a8946d986311d4648aad25c65
|
data/lib/synapse_api/client.rb
CHANGED
@@ -315,13 +315,26 @@ module Synapse
|
|
315
315
|
market_data
|
316
316
|
end
|
317
317
|
|
318
|
-
|
318
|
+
# Queries Synapse API for Routing Verification
|
319
|
+
# @param payload [Hash]
|
320
|
+
# @return API response [Hash]
|
321
|
+
def routing_number_verification(payload:)
|
319
322
|
path = '/routing-number-verification'
|
320
323
|
|
321
324
|
response = client.post(path,payload)
|
322
325
|
response
|
323
326
|
end
|
324
327
|
|
328
|
+
# Queries Synapse API for Address Verification
|
329
|
+
# @param payload [Hash]
|
330
|
+
# @return API response [Hash]
|
331
|
+
def address_verification(payload:)
|
332
|
+
path = '/address-verification'
|
333
|
+
|
334
|
+
response = client.post(path,payload)
|
335
|
+
response
|
336
|
+
end
|
337
|
+
|
325
338
|
private
|
326
339
|
def user_path(user_id: nil, **options)
|
327
340
|
path = "/users"
|
data/lib/synapse_api/version.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: synapseruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Emmanuel Mawutor
|
@@ -124,6 +124,7 @@ files:
|
|
124
124
|
- lib/synapse_fi.rb
|
125
125
|
- samples.md
|
126
126
|
- synapse_fi.gemspec
|
127
|
+
- synapseruby-1.0.9.gem
|
127
128
|
- yarn.lock
|
128
129
|
homepage: https://rubygems.org/gems/synapseruby
|
129
130
|
licenses:
|