gocardless_pro 2.16.0 → 2.16.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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 263df5bc8bb7d70c4e68577409d97291a7ff2ae3
|
|
4
|
+
data.tar.gz: 8596829226287521436e502a460bb4bd33604dcd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac628b14e2e55f990a116f029c00c9087b96bb1a44dba695b3a1a4a43f99ae31ffcb16dd51d115719ef04a12dd7068d040edb97b47d761412de565dcf0e81ab0
|
|
7
|
+
data.tar.gz: c7ac8a78ee31d7e5da129efeb0ee800d1253ba17092c07705f50575fc8fcdc5cdb28d146b98d8c83baec866cb05d6b7f2b86b828a159eb0c5e181fb762247d68
|
|
@@ -143,7 +143,7 @@ module GoCardlessPro
|
|
|
143
143
|
'User-Agent' => user_agent.to_s,
|
|
144
144
|
'Content-Type' => 'application/json',
|
|
145
145
|
'GoCardless-Client-Library' => 'gocardless-pro-ruby',
|
|
146
|
-
'GoCardless-Client-Version' => '2.16.
|
|
146
|
+
'GoCardless-Client-Version' => '2.16.1',
|
|
147
147
|
},
|
|
148
148
|
}
|
|
149
149
|
end
|
|
@@ -28,9 +28,12 @@ module GoCardlessPro
|
|
|
28
28
|
attr_reader :city
|
|
29
29
|
attr_reader :country_code
|
|
30
30
|
attr_reader :created_at
|
|
31
|
+
attr_reader :custom_payment_pages_enabled
|
|
31
32
|
attr_reader :fx_payout_currency
|
|
32
33
|
attr_reader :id
|
|
33
34
|
attr_reader :logo_url
|
|
35
|
+
attr_reader :mandate_imports_enabled
|
|
36
|
+
attr_reader :merchant_responsible_for_notifications
|
|
34
37
|
attr_reader :name
|
|
35
38
|
attr_reader :postal_code
|
|
36
39
|
attr_reader :region
|
|
@@ -49,10 +52,13 @@ module GoCardlessPro
|
|
|
49
52
|
@city = object['city']
|
|
50
53
|
@country_code = object['country_code']
|
|
51
54
|
@created_at = object['created_at']
|
|
55
|
+
@custom_payment_pages_enabled = object['custom_payment_pages_enabled']
|
|
52
56
|
@fx_payout_currency = object['fx_payout_currency']
|
|
53
57
|
@id = object['id']
|
|
54
58
|
@links = object['links']
|
|
55
59
|
@logo_url = object['logo_url']
|
|
60
|
+
@mandate_imports_enabled = object['mandate_imports_enabled']
|
|
61
|
+
@merchant_responsible_for_notifications = object['merchant_responsible_for_notifications']
|
|
56
62
|
@name = object['name']
|
|
57
63
|
@postal_code = object['postal_code']
|
|
58
64
|
@region = object['region']
|
|
@@ -22,10 +22,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
22
22
|
'city' => 'city-input',
|
|
23
23
|
'country_code' => 'country_code-input',
|
|
24
24
|
'created_at' => 'created_at-input',
|
|
25
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
25
26
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
26
27
|
'id' => 'id-input',
|
|
27
28
|
'links' => 'links-input',
|
|
28
29
|
'logo_url' => 'logo_url-input',
|
|
30
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
31
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
29
32
|
'name' => 'name-input',
|
|
30
33
|
'postal_code' => 'postal_code-input',
|
|
31
34
|
'region' => 'region-input',
|
|
@@ -47,10 +50,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
47
50
|
'city' => 'city-input',
|
|
48
51
|
'country_code' => 'country_code-input',
|
|
49
52
|
'created_at' => 'created_at-input',
|
|
53
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
50
54
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
51
55
|
'id' => 'id-input',
|
|
52
56
|
'links' => 'links-input',
|
|
53
57
|
'logo_url' => 'logo_url-input',
|
|
58
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
59
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
54
60
|
'name' => 'name-input',
|
|
55
61
|
'postal_code' => 'postal_code-input',
|
|
56
62
|
'region' => 'region-input',
|
|
@@ -72,10 +78,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
72
78
|
'city' => 'city-input',
|
|
73
79
|
'country_code' => 'country_code-input',
|
|
74
80
|
'created_at' => 'created_at-input',
|
|
81
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
75
82
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
76
83
|
'id' => 'id-input',
|
|
77
84
|
'links' => 'links-input',
|
|
78
85
|
'logo_url' => 'logo_url-input',
|
|
86
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
87
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
79
88
|
'name' => 'name-input',
|
|
80
89
|
'postal_code' => 'postal_code-input',
|
|
81
90
|
'region' => 'region-input',
|
|
@@ -130,10 +139,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
130
139
|
'city' => 'city-input',
|
|
131
140
|
'country_code' => 'country_code-input',
|
|
132
141
|
'created_at' => 'created_at-input',
|
|
142
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
133
143
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
134
144
|
'id' => 'id-input',
|
|
135
145
|
'links' => 'links-input',
|
|
136
146
|
'logo_url' => 'logo_url-input',
|
|
147
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
148
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
137
149
|
'name' => 'name-input',
|
|
138
150
|
'postal_code' => 'postal_code-input',
|
|
139
151
|
'region' => 'region-input',
|
|
@@ -178,10 +190,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
178
190
|
'city' => 'city-input',
|
|
179
191
|
'country_code' => 'country_code-input',
|
|
180
192
|
'created_at' => 'created_at-input',
|
|
193
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
181
194
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
182
195
|
'id' => 'id-input',
|
|
183
196
|
'links' => 'links-input',
|
|
184
197
|
'logo_url' => 'logo_url-input',
|
|
198
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
199
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
185
200
|
'name' => 'name-input',
|
|
186
201
|
'postal_code' => 'postal_code-input',
|
|
187
202
|
'region' => 'region-input',
|
|
@@ -217,10 +232,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
217
232
|
'city' => 'city-input',
|
|
218
233
|
'country_code' => 'country_code-input',
|
|
219
234
|
'created_at' => 'created_at-input',
|
|
235
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
220
236
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
221
237
|
'id' => 'id-input',
|
|
222
238
|
'links' => 'links-input',
|
|
223
239
|
'logo_url' => 'logo_url-input',
|
|
240
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
241
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
224
242
|
'name' => 'name-input',
|
|
225
243
|
'postal_code' => 'postal_code-input',
|
|
226
244
|
'region' => 'region-input',
|
|
@@ -255,12 +273,18 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
255
273
|
|
|
256
274
|
expect(get_list_response.records.first.created_at).to eq('created_at-input')
|
|
257
275
|
|
|
276
|
+
expect(get_list_response.records.first.custom_payment_pages_enabled).to eq('custom_payment_pages_enabled-input')
|
|
277
|
+
|
|
258
278
|
expect(get_list_response.records.first.fx_payout_currency).to eq('fx_payout_currency-input')
|
|
259
279
|
|
|
260
280
|
expect(get_list_response.records.first.id).to eq('id-input')
|
|
261
281
|
|
|
262
282
|
expect(get_list_response.records.first.logo_url).to eq('logo_url-input')
|
|
263
283
|
|
|
284
|
+
expect(get_list_response.records.first.mandate_imports_enabled).to eq('mandate_imports_enabled-input')
|
|
285
|
+
|
|
286
|
+
expect(get_list_response.records.first.merchant_responsible_for_notifications).to eq('merchant_responsible_for_notifications-input')
|
|
287
|
+
|
|
264
288
|
expect(get_list_response.records.first.name).to eq('name-input')
|
|
265
289
|
|
|
266
290
|
expect(get_list_response.records.first.postal_code).to eq('postal_code-input')
|
|
@@ -294,10 +318,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
294
318
|
'city' => 'city-input',
|
|
295
319
|
'country_code' => 'country_code-input',
|
|
296
320
|
'created_at' => 'created_at-input',
|
|
321
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
297
322
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
298
323
|
'id' => 'id-input',
|
|
299
324
|
'links' => 'links-input',
|
|
300
325
|
'logo_url' => 'logo_url-input',
|
|
326
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
327
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
301
328
|
'name' => 'name-input',
|
|
302
329
|
'postal_code' => 'postal_code-input',
|
|
303
330
|
'region' => 'region-input',
|
|
@@ -325,10 +352,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
325
352
|
'city' => 'city-input',
|
|
326
353
|
'country_code' => 'country_code-input',
|
|
327
354
|
'created_at' => 'created_at-input',
|
|
355
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
328
356
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
329
357
|
'id' => 'id-input',
|
|
330
358
|
'links' => 'links-input',
|
|
331
359
|
'logo_url' => 'logo_url-input',
|
|
360
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
361
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
332
362
|
'name' => 'name-input',
|
|
333
363
|
'postal_code' => 'postal_code-input',
|
|
334
364
|
'region' => 'region-input',
|
|
@@ -372,10 +402,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
372
402
|
'city' => 'city-input',
|
|
373
403
|
'country_code' => 'country_code-input',
|
|
374
404
|
'created_at' => 'created_at-input',
|
|
405
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
375
406
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
376
407
|
'id' => 'id-input',
|
|
377
408
|
'links' => 'links-input',
|
|
378
409
|
'logo_url' => 'logo_url-input',
|
|
410
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
411
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
379
412
|
'name' => 'name-input',
|
|
380
413
|
'postal_code' => 'postal_code-input',
|
|
381
414
|
'region' => 'region-input',
|
|
@@ -413,10 +446,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
413
446
|
'city' => 'city-input',
|
|
414
447
|
'country_code' => 'country_code-input',
|
|
415
448
|
'created_at' => 'created_at-input',
|
|
449
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
416
450
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
417
451
|
'id' => 'id-input',
|
|
418
452
|
'links' => 'links-input',
|
|
419
453
|
'logo_url' => 'logo_url-input',
|
|
454
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
455
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
420
456
|
'name' => 'name-input',
|
|
421
457
|
'postal_code' => 'postal_code-input',
|
|
422
458
|
'region' => 'region-input',
|
|
@@ -476,10 +512,13 @@ describe GoCardlessPro::Resources::Creditor do
|
|
|
476
512
|
'city' => 'city-input',
|
|
477
513
|
'country_code' => 'country_code-input',
|
|
478
514
|
'created_at' => 'created_at-input',
|
|
515
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
479
516
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
480
517
|
'id' => 'id-input',
|
|
481
518
|
'links' => 'links-input',
|
|
482
519
|
'logo_url' => 'logo_url-input',
|
|
520
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
521
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
483
522
|
'name' => 'name-input',
|
|
484
523
|
'postal_code' => 'postal_code-input',
|
|
485
524
|
'region' => 'region-input',
|
|
@@ -22,10 +22,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
22
22
|
'city' => 'city-input',
|
|
23
23
|
'country_code' => 'country_code-input',
|
|
24
24
|
'created_at' => 'created_at-input',
|
|
25
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
25
26
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
26
27
|
'id' => 'id-input',
|
|
27
28
|
'links' => 'links-input',
|
|
28
29
|
'logo_url' => 'logo_url-input',
|
|
30
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
31
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
29
32
|
'name' => 'name-input',
|
|
30
33
|
'postal_code' => 'postal_code-input',
|
|
31
34
|
'region' => 'region-input',
|
|
@@ -47,10 +50,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
47
50
|
'city' => 'city-input',
|
|
48
51
|
'country_code' => 'country_code-input',
|
|
49
52
|
'created_at' => 'created_at-input',
|
|
53
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
50
54
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
51
55
|
'id' => 'id-input',
|
|
52
56
|
'links' => 'links-input',
|
|
53
57
|
'logo_url' => 'logo_url-input',
|
|
58
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
59
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
54
60
|
'name' => 'name-input',
|
|
55
61
|
'postal_code' => 'postal_code-input',
|
|
56
62
|
'region' => 'region-input',
|
|
@@ -72,10 +78,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
72
78
|
'city' => 'city-input',
|
|
73
79
|
'country_code' => 'country_code-input',
|
|
74
80
|
'created_at' => 'created_at-input',
|
|
81
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
75
82
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
76
83
|
'id' => 'id-input',
|
|
77
84
|
'links' => 'links-input',
|
|
78
85
|
'logo_url' => 'logo_url-input',
|
|
86
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
87
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
79
88
|
'name' => 'name-input',
|
|
80
89
|
'postal_code' => 'postal_code-input',
|
|
81
90
|
'region' => 'region-input',
|
|
@@ -153,10 +162,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
153
162
|
'city' => 'city-input',
|
|
154
163
|
'country_code' => 'country_code-input',
|
|
155
164
|
'created_at' => 'created_at-input',
|
|
165
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
156
166
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
157
167
|
'id' => 'id-input',
|
|
158
168
|
'links' => 'links-input',
|
|
159
169
|
'logo_url' => 'logo_url-input',
|
|
170
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
171
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
160
172
|
'name' => 'name-input',
|
|
161
173
|
'postal_code' => 'postal_code-input',
|
|
162
174
|
'region' => 'region-input',
|
|
@@ -201,10 +213,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
201
213
|
'city' => 'city-input',
|
|
202
214
|
'country_code' => 'country_code-input',
|
|
203
215
|
'created_at' => 'created_at-input',
|
|
216
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
204
217
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
205
218
|
'id' => 'id-input',
|
|
206
219
|
'links' => 'links-input',
|
|
207
220
|
'logo_url' => 'logo_url-input',
|
|
221
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
222
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
208
223
|
'name' => 'name-input',
|
|
209
224
|
'postal_code' => 'postal_code-input',
|
|
210
225
|
'region' => 'region-input',
|
|
@@ -268,10 +283,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
268
283
|
'city' => 'city-input',
|
|
269
284
|
'country_code' => 'country_code-input',
|
|
270
285
|
'created_at' => 'created_at-input',
|
|
286
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
271
287
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
272
288
|
'id' => 'id-input',
|
|
273
289
|
'links' => 'links-input',
|
|
274
290
|
'logo_url' => 'logo_url-input',
|
|
291
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
292
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
275
293
|
'name' => 'name-input',
|
|
276
294
|
'postal_code' => 'postal_code-input',
|
|
277
295
|
'region' => 'region-input',
|
|
@@ -311,12 +329,18 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
311
329
|
|
|
312
330
|
expect(get_list_response.records.first.created_at).to eq('created_at-input')
|
|
313
331
|
|
|
332
|
+
expect(get_list_response.records.first.custom_payment_pages_enabled).to eq('custom_payment_pages_enabled-input')
|
|
333
|
+
|
|
314
334
|
expect(get_list_response.records.first.fx_payout_currency).to eq('fx_payout_currency-input')
|
|
315
335
|
|
|
316
336
|
expect(get_list_response.records.first.id).to eq('id-input')
|
|
317
337
|
|
|
318
338
|
expect(get_list_response.records.first.logo_url).to eq('logo_url-input')
|
|
319
339
|
|
|
340
|
+
expect(get_list_response.records.first.mandate_imports_enabled).to eq('mandate_imports_enabled-input')
|
|
341
|
+
|
|
342
|
+
expect(get_list_response.records.first.merchant_responsible_for_notifications).to eq('merchant_responsible_for_notifications-input')
|
|
343
|
+
|
|
320
344
|
expect(get_list_response.records.first.name).to eq('name-input')
|
|
321
345
|
|
|
322
346
|
expect(get_list_response.records.first.postal_code).to eq('postal_code-input')
|
|
@@ -373,10 +397,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
373
397
|
'city' => 'city-input',
|
|
374
398
|
'country_code' => 'country_code-input',
|
|
375
399
|
'created_at' => 'created_at-input',
|
|
400
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
376
401
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
377
402
|
'id' => 'id-input',
|
|
378
403
|
'links' => 'links-input',
|
|
379
404
|
'logo_url' => 'logo_url-input',
|
|
405
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
406
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
380
407
|
'name' => 'name-input',
|
|
381
408
|
'postal_code' => 'postal_code-input',
|
|
382
409
|
'region' => 'region-input',
|
|
@@ -404,10 +431,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
404
431
|
'city' => 'city-input',
|
|
405
432
|
'country_code' => 'country_code-input',
|
|
406
433
|
'created_at' => 'created_at-input',
|
|
434
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
407
435
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
408
436
|
'id' => 'id-input',
|
|
409
437
|
'links' => 'links-input',
|
|
410
438
|
'logo_url' => 'logo_url-input',
|
|
439
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
440
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
411
441
|
'name' => 'name-input',
|
|
412
442
|
'postal_code' => 'postal_code-input',
|
|
413
443
|
'region' => 'region-input',
|
|
@@ -444,10 +474,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
444
474
|
'city' => 'city-input',
|
|
445
475
|
'country_code' => 'country_code-input',
|
|
446
476
|
'created_at' => 'created_at-input',
|
|
477
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
447
478
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
448
479
|
'id' => 'id-input',
|
|
449
480
|
'links' => 'links-input',
|
|
450
481
|
'logo_url' => 'logo_url-input',
|
|
482
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
483
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
451
484
|
'name' => 'name-input',
|
|
452
485
|
'postal_code' => 'postal_code-input',
|
|
453
486
|
'region' => 'region-input',
|
|
@@ -475,10 +508,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
475
508
|
'city' => 'city-input',
|
|
476
509
|
'country_code' => 'country_code-input',
|
|
477
510
|
'created_at' => 'created_at-input',
|
|
511
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
478
512
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
479
513
|
'id' => 'id-input',
|
|
480
514
|
'links' => 'links-input',
|
|
481
515
|
'logo_url' => 'logo_url-input',
|
|
516
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
517
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
482
518
|
'name' => 'name-input',
|
|
483
519
|
'postal_code' => 'postal_code-input',
|
|
484
520
|
'region' => 'region-input',
|
|
@@ -511,10 +547,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
511
547
|
'city' => 'city-input',
|
|
512
548
|
'country_code' => 'country_code-input',
|
|
513
549
|
'created_at' => 'created_at-input',
|
|
550
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
514
551
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
515
552
|
'id' => 'id-input',
|
|
516
553
|
'links' => 'links-input',
|
|
517
554
|
'logo_url' => 'logo_url-input',
|
|
555
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
556
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
518
557
|
'name' => 'name-input',
|
|
519
558
|
'postal_code' => 'postal_code-input',
|
|
520
559
|
'region' => 'region-input',
|
|
@@ -545,10 +584,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
545
584
|
'city' => 'city-input',
|
|
546
585
|
'country_code' => 'country_code-input',
|
|
547
586
|
'created_at' => 'created_at-input',
|
|
587
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
548
588
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
549
589
|
'id' => 'id-input',
|
|
550
590
|
'links' => 'links-input',
|
|
551
591
|
'logo_url' => 'logo_url-input',
|
|
592
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
593
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
552
594
|
'name' => 'name-input',
|
|
553
595
|
'postal_code' => 'postal_code-input',
|
|
554
596
|
'region' => 'region-input',
|
|
@@ -592,10 +634,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
592
634
|
'city' => 'city-input',
|
|
593
635
|
'country_code' => 'country_code-input',
|
|
594
636
|
'created_at' => 'created_at-input',
|
|
637
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
595
638
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
596
639
|
'id' => 'id-input',
|
|
597
640
|
'links' => 'links-input',
|
|
598
641
|
'logo_url' => 'logo_url-input',
|
|
642
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
643
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
599
644
|
'name' => 'name-input',
|
|
600
645
|
'postal_code' => 'postal_code-input',
|
|
601
646
|
'region' => 'region-input',
|
|
@@ -633,10 +678,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
633
678
|
'city' => 'city-input',
|
|
634
679
|
'country_code' => 'country_code-input',
|
|
635
680
|
'created_at' => 'created_at-input',
|
|
681
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
636
682
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
637
683
|
'id' => 'id-input',
|
|
638
684
|
'links' => 'links-input',
|
|
639
685
|
'logo_url' => 'logo_url-input',
|
|
686
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
687
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
640
688
|
'name' => 'name-input',
|
|
641
689
|
'postal_code' => 'postal_code-input',
|
|
642
690
|
'region' => 'region-input',
|
|
@@ -751,10 +799,13 @@ describe GoCardlessPro::Services::CreditorsService do
|
|
|
751
799
|
'city' => 'city-input',
|
|
752
800
|
'country_code' => 'country_code-input',
|
|
753
801
|
'created_at' => 'created_at-input',
|
|
802
|
+
'custom_payment_pages_enabled' => 'custom_payment_pages_enabled-input',
|
|
754
803
|
'fx_payout_currency' => 'fx_payout_currency-input',
|
|
755
804
|
'id' => 'id-input',
|
|
756
805
|
'links' => 'links-input',
|
|
757
806
|
'logo_url' => 'logo_url-input',
|
|
807
|
+
'mandate_imports_enabled' => 'mandate_imports_enabled-input',
|
|
808
|
+
'merchant_responsible_for_notifications' => 'merchant_responsible_for_notifications-input',
|
|
758
809
|
'name' => 'name-input',
|
|
759
810
|
'postal_code' => 'postal_code-input',
|
|
760
811
|
'region' => 'region-input',
|
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.16.
|
|
4
|
+
version: 2.16.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GoCardless
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -262,7 +262,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
262
262
|
- !ruby/object:Gem::Version
|
|
263
263
|
version: '0'
|
|
264
264
|
requirements: []
|
|
265
|
-
|
|
265
|
+
rubyforge_project:
|
|
266
|
+
rubygems_version: 2.5.2.3
|
|
266
267
|
signing_key:
|
|
267
268
|
specification_version: 4
|
|
268
269
|
summary: A gem for calling the GoCardless Pro API
|