plaid 8.6.0 → 8.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/plaid/models.rb +10 -0
- data/lib/plaid/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04f14c997c972388d16514cb7c88bd5022e47a9ed8289cbb0d75695b87f0eed1
|
4
|
+
data.tar.gz: 89b6df92ba4fa1c0241f237e2d292402a0a5d09edb680cf6794786843813c28b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf575969a8372c6f6eb7158949ea49022232d4ea71eb8b97380c837ef19a7d1c8a97a088cdb82e31253729f6be6ddd24eb9e5c18b1d3ed32d952c673707de31f
|
7
|
+
data.tar.gz: f0fdc9b0420ac3e663ac0112a6c7e0173a9a5643109367c58a4313655e09f5b4bce6b044ccae27d3d1de33150d4a6f19545d99e9feb5837183d8065d08e4ba78
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
# 8.7.0 05-Mar-2020
|
2
|
+
|
3
|
+
* Add transaction_code to Transaction class ([#264](https://github.com/plaid/plaid-ruby/pull/264))
|
4
|
+
* Add OAuth support to /institutions endpoints ([#261](https://github.com/plaid/plaid-ruby/pull/261))
|
5
|
+
|
1
6
|
# 8.6.0 20-Feb-2020
|
2
7
|
|
3
8
|
* Add support for transactions refresh product ([#258](https://github.com/plaid/plaid-ruby/pull/258))
|
data/lib/plaid/models.rb
CHANGED
@@ -813,6 +813,11 @@ module Plaid
|
|
813
813
|
# :attr_reader:
|
814
814
|
# Public: The array of routing numbers associated with this institution.
|
815
815
|
property :routing_numbers
|
816
|
+
|
817
|
+
##
|
818
|
+
# :attr_reader:
|
819
|
+
# Public: Indicates that the institution has an OAuth login flow.
|
820
|
+
property :oauth
|
816
821
|
end
|
817
822
|
|
818
823
|
module MFA
|
@@ -1024,6 +1029,11 @@ module Plaid
|
|
1024
1029
|
# Public: The String date that the transaction was authorized,
|
1025
1030
|
# e.g. "2017-01-01".
|
1026
1031
|
property :authorized_date
|
1032
|
+
|
1033
|
+
##
|
1034
|
+
# :attr_reader:
|
1035
|
+
# Public: The String transaction code, e.g. "direct debit".
|
1036
|
+
property :transaction_code
|
1027
1037
|
end
|
1028
1038
|
|
1029
1039
|
# Public: A representation of an InvestmentTransaction in an investment
|
data/lib/plaid/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plaid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.
|
4
|
+
version: 8.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Edmund Loo
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -231,7 +231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
231
231
|
- !ruby/object:Gem::Version
|
232
232
|
version: '0'
|
233
233
|
requirements: []
|
234
|
-
rubygems_version: 3.
|
234
|
+
rubygems_version: 3.0.3
|
235
235
|
signing_key:
|
236
236
|
specification_version: 4
|
237
237
|
summary: Ruby bindings for Plaid
|