gocardless_pro 2.52.0 → 2.53.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a756c78b49607a4ae5cb72705f7cc22ba22e95747300b0bf90a6eb5ca968167e
|
|
4
|
+
data.tar.gz: a2799c33e5170f82ee1e5ceb2f3822b22fd1883f0d59821cf6ce78d086fefb22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 651462b430bc83218c6ad299d241b4cba1dfbf66d66410e96e1a05a5a207e13ad93a521d3e572e2cd4053f1b53d3764533cb32b5cf7175041d218219ff98845c
|
|
7
|
+
data.tar.gz: c4aa1196ed99686d372b8e7e7d1eefc0e2d6fd0deedd0fe42a6b75801d441ee1c883e1512dd168c9ab5d6a4a3337557c9d073531e57c7c7f36487b13ad585c02
|
|
@@ -218,7 +218,7 @@ module GoCardlessPro
|
|
|
218
218
|
'User-Agent' => "#{user_agent}",
|
|
219
219
|
'Content-Type' => 'application/json',
|
|
220
220
|
'GoCardless-Client-Library' => 'gocardless-pro-ruby',
|
|
221
|
-
'GoCardless-Client-Version' => '2.
|
|
221
|
+
'GoCardless-Client-Version' => '2.53.0',
|
|
222
222
|
},
|
|
223
223
|
}
|
|
224
224
|
end
|
|
@@ -23,6 +23,7 @@ module GoCardlessPro
|
|
|
23
23
|
attr_reader :id
|
|
24
24
|
attr_reader :metadata
|
|
25
25
|
attr_reader :next_possible_charge_date
|
|
26
|
+
attr_reader :next_possible_standard_ach_charge_date
|
|
26
27
|
attr_reader :payments_require_approval
|
|
27
28
|
attr_reader :reference
|
|
28
29
|
attr_reader :scheme
|
|
@@ -42,6 +43,7 @@ module GoCardlessPro
|
|
|
42
43
|
@links = object['links']
|
|
43
44
|
@metadata = object['metadata']
|
|
44
45
|
@next_possible_charge_date = object['next_possible_charge_date']
|
|
46
|
+
@next_possible_standard_ach_charge_date = object['next_possible_standard_ach_charge_date']
|
|
45
47
|
@payments_require_approval = object['payments_require_approval']
|
|
46
48
|
@reference = object['reference']
|
|
47
49
|
@scheme = object['scheme']
|
|
@@ -24,6 +24,7 @@ module GoCardlessPro
|
|
|
24
24
|
attr_reader :created_at
|
|
25
25
|
attr_reader :currency
|
|
26
26
|
attr_reader :description
|
|
27
|
+
attr_reader :faster_ach
|
|
27
28
|
attr_reader :fx
|
|
28
29
|
attr_reader :id
|
|
29
30
|
attr_reader :metadata
|
|
@@ -42,6 +43,7 @@ module GoCardlessPro
|
|
|
42
43
|
@created_at = object['created_at']
|
|
43
44
|
@currency = object['currency']
|
|
44
45
|
@description = object['description']
|
|
46
|
+
@faster_ach = object['faster_ach']
|
|
45
47
|
@fx = object['fx']
|
|
46
48
|
@id = object['id']
|
|
47
49
|
@links = object['links']
|
|
@@ -13,6 +13,11 @@ module GoCardlessPro
|
|
|
13
13
|
# Performs a bank details lookup. As part of the lookup, a modulus check and
|
|
14
14
|
# reachability check are performed.
|
|
15
15
|
#
|
|
16
|
+
# In case an account holder name is provided (and an account number, a sort code
|
|
17
|
+
# or an iban
|
|
18
|
+
# are already present) an account holder name verification will also be
|
|
19
|
+
# performed.
|
|
20
|
+
#
|
|
16
21
|
# If your request returns an [error](#api-usage-errors) or the
|
|
17
22
|
# `available_debit_schemes`
|
|
18
23
|
# attribute is an empty array, you will not be able to collect payments from the
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gocardless_pro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.53.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GoCardless
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|