plaid 13.0.0 → 13.0.1
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/CHANGELOG.md +3 -0
- data/Gemfile.lock +3 -3
- data/README.md +2 -0
- data/lib/plaid/models.rb +10 -0
- data/lib/plaid/products/payment_initiation.rb +5 -3
- data/lib/plaid/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 889bbda3066333276dde988cc70df8d2b858685b9afa425ff18505073836b3a8
|
|
4
|
+
data.tar.gz: 563c58e930b00fa84d2ef79945139ce8267730433549964953cf26984ee30219
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47a70ded60dc17d5517f9df0699a66b61aac31f0d02110b0123d7eb4b11e9129aa2f3033eba6fb4a04ac37740f7f2bd4618e45092ab4762f7b9c9c64890718ab
|
|
7
|
+
data.tar.gz: 9864f80769148aa5a2ebce0d488bf1518d8e0ec7868daf31084ba53b97e376ea337f1817afe558f7a1863e60e1acd079846423983dd9a5db1f4f07104308103c
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
plaid (13.0.
|
|
4
|
+
plaid (13.0.1)
|
|
5
5
|
faraday
|
|
6
6
|
faraday_middleware
|
|
7
7
|
hashie (>= 3.4.3)
|
|
@@ -15,7 +15,7 @@ GEM
|
|
|
15
15
|
faraday-net_http (~> 1.0)
|
|
16
16
|
multipart-post (>= 1.2, < 3)
|
|
17
17
|
ruby2_keywords
|
|
18
|
-
faraday-net_http (1.0.
|
|
18
|
+
faraday-net_http (1.0.1)
|
|
19
19
|
faraday_middleware (1.0.0)
|
|
20
20
|
faraday (~> 1.0)
|
|
21
21
|
hashie (4.1.0)
|
|
@@ -38,7 +38,7 @@ GEM
|
|
|
38
38
|
ruby-progressbar (~> 1.7)
|
|
39
39
|
unicode-display_width (~> 1.0, >= 1.0.1)
|
|
40
40
|
ruby-progressbar (1.9.0)
|
|
41
|
-
ruby2_keywords (0.0.
|
|
41
|
+
ruby2_keywords (0.0.4)
|
|
42
42
|
sdoc (1.0.0)
|
|
43
43
|
rdoc (>= 5.0)
|
|
44
44
|
unicode-display_width (1.3.2)
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# plaid-ruby [](https://circleci.com/gh/plaid/plaid-ruby) [](http://badge.fury.io/rb/plaid)
|
|
2
2
|
|
|
3
|
+
:warning: This major version of the library will only receive critical security patches after 7/12/21. Please consider trying out our new [beta version](https://github.com/plaid/plaid-ruby/tree/14.0.0-beta-release).
|
|
4
|
+
|
|
3
5
|
The official Ruby bindings for the [Plaid API](https://plaid.com/docs).
|
|
4
6
|
|
|
5
7
|
## Installation
|
data/lib/plaid/models.rb
CHANGED
|
@@ -123,6 +123,11 @@ module Plaid
|
|
|
123
123
|
# Public: The String item ID.
|
|
124
124
|
property :item_id
|
|
125
125
|
|
|
126
|
+
##
|
|
127
|
+
# :attr_reader:
|
|
128
|
+
# Public: The String update type.
|
|
129
|
+
property :update_type
|
|
130
|
+
|
|
126
131
|
##
|
|
127
132
|
# :attr_reader:
|
|
128
133
|
# Public: The String webhook URL.
|
|
@@ -133,6 +138,11 @@ module Plaid
|
|
|
133
138
|
# Public: The String consent expiration timestamp (or nil)
|
|
134
139
|
# (e.g. "2019-04-22T00:00:00Z").
|
|
135
140
|
property :consent_expiration_time
|
|
141
|
+
|
|
142
|
+
##
|
|
143
|
+
# :attr_reader:
|
|
144
|
+
# Public: The String update type.
|
|
145
|
+
property :update_type
|
|
136
146
|
end
|
|
137
147
|
|
|
138
148
|
# Public: A representation of Item webhook status
|
|
@@ -4,9 +4,11 @@ module Plaid
|
|
|
4
4
|
# Public: Create a recipient.
|
|
5
5
|
#
|
|
6
6
|
# name - Recipient name.
|
|
7
|
-
# iban - Recipient IBAN.
|
|
8
|
-
# address - Recipient address
|
|
9
|
-
#
|
|
7
|
+
# iban - Recipient IBAN. Should be nil if using bacs.
|
|
8
|
+
# address - Recipient address (hash with "street", "city", "postal_code"
|
|
9
|
+
# and "country"). Best practice is to set it as nil.
|
|
10
|
+
# bacs - Recipient BACS (hash with "account" and "sort_code" keys).
|
|
11
|
+
# Should be nil if using iban.
|
|
10
12
|
#
|
|
11
13
|
# Returns a PaymentRecipientCreateResponse object.
|
|
12
14
|
def create_recipient(name, iban, address, bacs)
|
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: 13.0.
|
|
4
|
+
version: 13.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edmund Loo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-03-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|