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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e1b3a6dd1a43a81dec93cc841fa8272f94fd53e604d6f2826035c221ac0cd1e
4
- data.tar.gz: 920032b3617aae75fecbe0e0288e0279ad99ca215103e4e5825322d198560e4f
3
+ metadata.gz: 889bbda3066333276dde988cc70df8d2b858685b9afa425ff18505073836b3a8
4
+ data.tar.gz: 563c58e930b00fa84d2ef79945139ce8267730433549964953cf26984ee30219
5
5
  SHA512:
6
- metadata.gz: 1ed91a6d2994ea510d2830e2b002f839098328ef7ece3fe1ed84458e2554f1a5138f5e51b009c32b7367f691b16e3ed94ce0d33497e9adb8eb9d868d2fa278d9
7
- data.tar.gz: c2cef50ce789faf7a22d97e0d381f07b3b029ad5406613b3df6bb41cd8402c4552fcf6b852146a8a0c7bf10eceed8460aadc722e292da4cab915ef1af4fd8df5
6
+ metadata.gz: 47a70ded60dc17d5517f9df0699a66b61aac31f0d02110b0123d7eb4b11e9129aa2f3033eba6fb4a04ac37740f7f2bd4618e45092ab4762f7b9c9c64890718ab
7
+ data.tar.gz: 9864f80769148aa5a2ebce0d488bf1518d8e0ec7868daf31084ba53b97e376ea337f1817afe558f7a1863e60e1acd079846423983dd9a5db1f4f07104308103c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # 13.0.1
2
+ - Add `update_type` to `Item` model.
3
+
1
4
  # 13.0.0
2
5
  - Add support for providing a payment initiation schedule
3
6
  - Add back the (now deprecated) `/item/public_token/create` endpoint
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- plaid (13.0.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.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.2)
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 [![Circle CI](https://circleci.com/gh/plaid/plaid-ruby.svg?style=svg&circle-token=30ee002ac2021da5b5b5a701d45fe2888af124a5)](https://circleci.com/gh/plaid/plaid-ruby) [![Gem Version](https://badge.fury.io/rb/plaid.svg)](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
- # bacs - Recipient BACS (hash with "account" and "sort_code" keys)
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
@@ -1,4 +1,4 @@
1
1
  module Plaid
2
- VERSION = '13.0.0'.freeze
2
+ VERSION = '13.0.1'.freeze
3
3
  API_VERSION = '2020-09-14'.freeze
4
4
  end
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.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-01-07 00:00:00.000000000 Z
11
+ date: 2021-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday