gocardless_pro 4.6.5 → 4.7.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: 30329c372597f700d9930858f195ef82db4c1a944682f4ff166b3d9f480cb846
|
|
4
|
+
data.tar.gz: 32fdcbc1234ff612c4cadc282b1d234f56f6e9d7a6ec8fd9a0a291d98d5c7d39
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb6fd0a93489b541d33cb92ddac75ab5e852c11ba6422a39558b0246990c16340038f5c82cb7c8aa174d96ee09361a18c8a4934ccbac261f788db02ee8c27ee8
|
|
7
|
+
data.tar.gz: 0ec4552f8d45b9ac3dd048428f6b83a1a455bfc3178e5b78016b5ada843bf6bdc04eaaad36dfe7fc48616a4b7d843667698fcbd323b372b58c8b34664ecf6116
|
|
@@ -283,7 +283,7 @@ module GoCardlessPro
|
|
|
283
283
|
'User-Agent' => "#{user_agent}",
|
|
284
284
|
'Content-Type' => 'application/json',
|
|
285
285
|
'GoCardless-Client-Library' => 'gocardless-pro-ruby',
|
|
286
|
-
'GoCardless-Client-Version' => '4.
|
|
286
|
+
'GoCardless-Client-Version' => '4.7.0',
|
|
287
287
|
},
|
|
288
288
|
}
|
|
289
289
|
end
|
|
@@ -29,10 +29,10 @@ module GoCardlessPro
|
|
|
29
29
|
# to the created payments, or the status `error` and detailed information about
|
|
30
30
|
# the
|
|
31
31
|
# failures.
|
|
32
|
-
# Example URL: /instalment_schedules
|
|
32
|
+
# Example URL: /instalment_schedules/create_with_dates
|
|
33
33
|
# @param options [Hash] parameters as a hash, under a params key.
|
|
34
34
|
def create_with_dates(options = {})
|
|
35
|
-
path = '/instalment_schedules'
|
|
35
|
+
path = '/instalment_schedules/create_with_dates'
|
|
36
36
|
|
|
37
37
|
params = options.delete(:params) || {}
|
|
38
38
|
options[:params] = {}
|
|
@@ -78,10 +78,10 @@ module GoCardlessPro
|
|
|
78
78
|
# and link to
|
|
79
79
|
# the created payments, or the status `error` and detailed information about the
|
|
80
80
|
# failures.
|
|
81
|
-
# Example URL: /instalment_schedules
|
|
81
|
+
# Example URL: /instalment_schedules/create_with_schedule
|
|
82
82
|
# @param options [Hash] parameters as a hash, under a params key.
|
|
83
83
|
def create_with_schedule(options = {})
|
|
84
|
-
path = '/instalment_schedules'
|
|
84
|
+
path = '/instalment_schedules/create_with_schedule'
|
|
85
85
|
|
|
86
86
|
params = options.delete(:params) || {}
|
|
87
87
|
options[:params] = {}
|