gocardless_pro 3.4.0 → 3.5.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 +4 -4
- data/lib/gocardless_pro/client.rb +6 -1
- data/lib/gocardless_pro/resources/bank_account_detail.rb +40 -0
- data/lib/gocardless_pro/services/bank_account_details_service.rb +48 -0
- data/lib/gocardless_pro/services/billing_requests_service.rb +2 -73
- data/lib/gocardless_pro/version.rb +1 -1
- data/lib/gocardless_pro.rb +3 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b6c3812f06f80708ae87c97ddaadcd761072a851345b9ef5cf8334a41440f16
|
4
|
+
data.tar.gz: 4b8de1ec177c357bf1ff19714318edd61b87a9da9241d3fed8861c3e9a4bc37c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f53d81b4695e0a720a12f5f1b57ab4c0c94d6fbb5997bf42f73a6285b15abad69b7199d5f6fd6845e724e2552d66220f1946290f3ac93b2cad772714cba7a97f
|
7
|
+
data.tar.gz: af724b976c328d768ac04c64303bf1c9c36aa6a8e916564e4ffef23303eaf884e9a067d994f2ea51553dd7a04aba1ca70ae79cad904edb3f18aa19429f21b0c8
|
@@ -8,6 +8,11 @@ module GoCardlessPro
|
|
8
8
|
@balances ||= Services::BalancesService.new(@api_service)
|
9
9
|
end
|
10
10
|
|
11
|
+
# Access to the service for bank_account_detail to make API calls
|
12
|
+
def bank_account_details
|
13
|
+
@bank_account_details ||= Services::BankAccountDetailsService.new(@api_service)
|
14
|
+
end
|
15
|
+
|
11
16
|
# Access to the service for bank_authorisation to make API calls
|
12
17
|
def bank_authorisations
|
13
18
|
@bank_authorisations ||= Services::BankAuthorisationsService.new(@api_service)
|
@@ -238,7 +243,7 @@ module GoCardlessPro
|
|
238
243
|
'User-Agent' => "#{user_agent}",
|
239
244
|
'Content-Type' => 'application/json',
|
240
245
|
'GoCardless-Client-Library' => 'gocardless-pro-ruby',
|
241
|
-
'GoCardless-Client-Version' => '3.
|
246
|
+
'GoCardless-Client-Version' => '3.5.0'
|
242
247
|
}
|
243
248
|
}
|
244
249
|
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
#
|
2
|
+
# This client is automatically generated from a template and JSON schema definition.
|
3
|
+
# See https://github.com/gocardless/gocardless-pro-ruby#contributing before editing.
|
4
|
+
#
|
5
|
+
|
6
|
+
require 'uri'
|
7
|
+
|
8
|
+
module GoCardlessPro
|
9
|
+
# A module containing classes for each of the resources in the GC Api
|
10
|
+
module Resources
|
11
|
+
# Represents an instance of a bank_account_detail resource returned from the API
|
12
|
+
|
13
|
+
# Retrieve bank account details in JWE encrypted format
|
14
|
+
class BankAccountDetail
|
15
|
+
attr_reader :ciphertext, :encrypted_key, :iv, :protected, :tag
|
16
|
+
|
17
|
+
# Initialize a bank_account_detail resource instance
|
18
|
+
# @param object [Hash] an object returned from the API
|
19
|
+
def initialize(object, response = nil)
|
20
|
+
@object = object
|
21
|
+
|
22
|
+
@ciphertext = object['ciphertext']
|
23
|
+
@encrypted_key = object['encrypted_key']
|
24
|
+
@iv = object['iv']
|
25
|
+
@protected = object['protected']
|
26
|
+
@tag = object['tag']
|
27
|
+
@response = response
|
28
|
+
end
|
29
|
+
|
30
|
+
def api_response
|
31
|
+
ApiResponse.new(@response)
|
32
|
+
end
|
33
|
+
|
34
|
+
# Provides the bank_account_detail resource as a hash of all its readable attributes
|
35
|
+
def to_h
|
36
|
+
@object
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require_relative './base_service'
|
2
|
+
|
3
|
+
# encoding: utf-8
|
4
|
+
#
|
5
|
+
# This client is automatically generated from a template and JSON schema definition.
|
6
|
+
# See https://github.com/gocardless/gocardless-pro-ruby#contributing before editing.
|
7
|
+
#
|
8
|
+
|
9
|
+
module GoCardlessPro
|
10
|
+
module Services
|
11
|
+
# Service for making requests to the BankAccountDetail endpoints
|
12
|
+
class BankAccountDetailsService < BaseService
|
13
|
+
# Returns bank account details in the flattened JSON Web Encryption format
|
14
|
+
# described in RFC 7516
|
15
|
+
# Example URL: /bank_account_details/:identity
|
16
|
+
#
|
17
|
+
# @param identity # Unique identifier, beginning with "BA".
|
18
|
+
# @param options [Hash] parameters as a hash, under a params key.
|
19
|
+
def get(identity, options = {})
|
20
|
+
path = sub_url('/bank_account_details/:identity', {
|
21
|
+
'identity' => identity
|
22
|
+
})
|
23
|
+
|
24
|
+
options[:retry_failures] = true
|
25
|
+
|
26
|
+
response = make_request(:get, path, options)
|
27
|
+
|
28
|
+
return if response.body.nil?
|
29
|
+
|
30
|
+
Resources::BankAccountDetail.new(unenvelope_body(response.body), response)
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
# Unenvelope the response of the body using the service's `envelope_key`
|
36
|
+
#
|
37
|
+
# @param body [Hash]
|
38
|
+
def unenvelope_body(body)
|
39
|
+
body[envelope_key] || body['data']
|
40
|
+
end
|
41
|
+
|
42
|
+
# return the key which API responses will envelope data under
|
43
|
+
def envelope_key
|
44
|
+
'bank_account_details'
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -11,7 +11,8 @@ module GoCardlessPro
|
|
11
11
|
# Service for making requests to the BillingRequest endpoints
|
12
12
|
class BillingRequestsService < BaseService
|
13
13
|
# <p class="notice"><strong>Important</strong>: All properties associated with
|
14
|
-
# `subscription_request` are only supported
|
14
|
+
# `subscription_request` and `instalment_schedule_request` are only supported
|
15
|
+
# for ACH and PAD schemes.</p>
|
15
16
|
# Example URL: /billing_requests
|
16
17
|
# @param options [Hash] parameters as a hash, under a params key.
|
17
18
|
def create(options = {})
|
@@ -46,78 +47,6 @@ module GoCardlessPro
|
|
46
47
|
Resources::BillingRequest.new(unenvelope_body(response.body), response)
|
47
48
|
end
|
48
49
|
|
49
|
-
# <p class="notice"><strong>Important</strong>: All properties associated with
|
50
|
-
# `instalment_schedule_request` are only supported for ACH and PAD schemes.</p>
|
51
|
-
# Example URL: /billing_requests
|
52
|
-
# @param options [Hash] parameters as a hash, under a params key.
|
53
|
-
def create_with_instalments_with_dates(options = {})
|
54
|
-
path = '/billing_requests'
|
55
|
-
|
56
|
-
params = options.delete(:params) || {}
|
57
|
-
options[:params] = {}
|
58
|
-
options[:params][envelope_key] = params
|
59
|
-
|
60
|
-
options[:retry_failures] = true
|
61
|
-
|
62
|
-
begin
|
63
|
-
response = make_request(:post, path, options)
|
64
|
-
|
65
|
-
# Response doesn't raise any errors until #body is called
|
66
|
-
response.tap(&:body)
|
67
|
-
rescue InvalidStateError => e
|
68
|
-
if e.idempotent_creation_conflict?
|
69
|
-
case @api_service.on_idempotency_conflict
|
70
|
-
when :raise
|
71
|
-
raise IdempotencyConflict, e.error
|
72
|
-
when :fetch
|
73
|
-
return get(e.conflicting_resource_id)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
raise e
|
78
|
-
end
|
79
|
-
|
80
|
-
return if response.body.nil?
|
81
|
-
|
82
|
-
Resources::BillingRequest.new(unenvelope_body(response.body), response)
|
83
|
-
end
|
84
|
-
|
85
|
-
# <p class="notice"><strong>Important</strong>: All properties associated with
|
86
|
-
# `instalment_schedule_request` are only supported for ACH and PAD schemes.</p>
|
87
|
-
# Example URL: /billing_requests
|
88
|
-
# @param options [Hash] parameters as a hash, under a params key.
|
89
|
-
def create_with_instalments_with_schedule(options = {})
|
90
|
-
path = '/billing_requests'
|
91
|
-
|
92
|
-
params = options.delete(:params) || {}
|
93
|
-
options[:params] = {}
|
94
|
-
options[:params][envelope_key] = params
|
95
|
-
|
96
|
-
options[:retry_failures] = true
|
97
|
-
|
98
|
-
begin
|
99
|
-
response = make_request(:post, path, options)
|
100
|
-
|
101
|
-
# Response doesn't raise any errors until #body is called
|
102
|
-
response.tap(&:body)
|
103
|
-
rescue InvalidStateError => e
|
104
|
-
if e.idempotent_creation_conflict?
|
105
|
-
case @api_service.on_idempotency_conflict
|
106
|
-
when :raise
|
107
|
-
raise IdempotencyConflict, e.error
|
108
|
-
when :fetch
|
109
|
-
return get(e.conflicting_resource_id)
|
110
|
-
end
|
111
|
-
end
|
112
|
-
|
113
|
-
raise e
|
114
|
-
end
|
115
|
-
|
116
|
-
return if response.body.nil?
|
117
|
-
|
118
|
-
Resources::BillingRequest.new(unenvelope_body(response.body), response)
|
119
|
-
end
|
120
|
-
|
121
50
|
# If the billing request has a pending <code>collect_customer_details</code>
|
122
51
|
# action, this endpoint can be used to collect the details in order to
|
123
52
|
# complete it.
|
data/lib/gocardless_pro.rb
CHANGED
@@ -42,6 +42,9 @@ require_relative 'gocardless_pro/webhook'
|
|
42
42
|
require_relative 'gocardless_pro/resources/balance'
|
43
43
|
require_relative 'gocardless_pro/services/balances_service'
|
44
44
|
|
45
|
+
require_relative 'gocardless_pro/resources/bank_account_detail'
|
46
|
+
require_relative 'gocardless_pro/services/bank_account_details_service'
|
47
|
+
|
45
48
|
require_relative 'gocardless_pro/resources/bank_authorisation'
|
46
49
|
require_relative 'gocardless_pro/services/bank_authorisations_service'
|
47
50
|
|
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: 3.
|
4
|
+
version: 3.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GoCardless
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -113,6 +113,7 @@ files:
|
|
113
113
|
- lib/gocardless_pro/paginator.rb
|
114
114
|
- lib/gocardless_pro/request.rb
|
115
115
|
- lib/gocardless_pro/resources/balance.rb
|
116
|
+
- lib/gocardless_pro/resources/bank_account_detail.rb
|
116
117
|
- lib/gocardless_pro/resources/bank_authorisation.rb
|
117
118
|
- lib/gocardless_pro/resources/bank_details_lookup.rb
|
118
119
|
- lib/gocardless_pro/resources/billing_request.rb
|
@@ -151,6 +152,7 @@ files:
|
|
151
152
|
- lib/gocardless_pro/resources/webhook.rb
|
152
153
|
- lib/gocardless_pro/response.rb
|
153
154
|
- lib/gocardless_pro/services/balances_service.rb
|
155
|
+
- lib/gocardless_pro/services/bank_account_details_service.rb
|
154
156
|
- lib/gocardless_pro/services/bank_authorisations_service.rb
|
155
157
|
- lib/gocardless_pro/services/bank_details_lookups_service.rb
|
156
158
|
- lib/gocardless_pro/services/base_service.rb
|