adyen-ruby-api-library 10.4.0 → 11.0.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.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CODEOWNERS +1 -1
  3. data/.github/workflows/codeql.yml +1 -1
  4. data/.github/workflows/release.yml +3 -2
  5. data/.github/workflows/ruby.yml +1 -1
  6. data/.github/workflows/rubygems_release.yml +1 -1
  7. data/README.md +4 -10
  8. data/VERSION +1 -1
  9. data/lib/adyen/client.rb +49 -14
  10. data/lib/adyen/errors.rb +8 -6
  11. data/lib/adyen/services/{balanceControlService.rb → balanceControl/balance_control_api.rb} +5 -4
  12. data/lib/adyen/services/balanceControl.rb +24 -0
  13. data/lib/adyen/services/balancePlatform/authorized_card_users_api.rb +2 -2
  14. data/lib/adyen/services/balancePlatform/balances_api.rb +2 -2
  15. data/lib/adyen/services/balancePlatform/transfer_limits_balance_account_level_api.rb +76 -0
  16. data/lib/adyen/services/balancePlatform/transfer_limits_balance_platform_level_api.rb +56 -0
  17. data/lib/adyen/services/balancePlatform.rb +10 -0
  18. data/lib/adyen/services/binLookup/bin_lookup_api.rb +36 -0
  19. data/lib/adyen/services/binLookup.rb +8 -21
  20. data/lib/adyen/services/checkout/donations_api.rb +1 -1
  21. data/lib/adyen/services/checkout/utility_api.rb +10 -0
  22. data/lib/adyen/services/dataProtection/data_protection_api.rb +26 -0
  23. data/lib/adyen/services/dataProtection.rb +8 -11
  24. data/lib/adyen/services/disputes/disputes_api.rb +66 -0
  25. data/lib/adyen/services/disputes.rb +8 -51
  26. data/lib/adyen/services/legalEntityManagement.rb +1 -1
  27. data/lib/adyen/services/management/split_configuration_merchant_level_api.rb +7 -7
  28. data/lib/adyen/services/openBanking/account_verification_api.rb +36 -0
  29. data/lib/adyen/services/openBanking.rb +24 -0
  30. data/lib/adyen/services/payment/modifications_api.rb +98 -0
  31. data/lib/adyen/services/payment/payments_api.rb +66 -0
  32. data/lib/adyen/services/payment.rb +11 -131
  33. data/lib/adyen/services/paymentsApp/payments_app_api.rb +66 -0
  34. data/lib/adyen/services/paymentsApp.rb +8 -51
  35. data/lib/adyen/services/posMobile/pos_mobile_api.rb +26 -0
  36. data/lib/adyen/services/posMobile.rb +8 -11
  37. data/lib/adyen/services/recurring/recurring_api.rb +80 -0
  38. data/lib/adyen/services/recurring.rb +8 -61
  39. data/lib/adyen/services/sessionAuthentication/session_authentication_api.rb +1 -1
  40. data/lib/adyen/services/storedValue/stored_value_api.rb +76 -0
  41. data/lib/adyen/services/storedValue.rb +8 -61
  42. data/lib/adyen/version.rb +1 -1
  43. data/lib/adyen-ruby-api-library.rb +4 -1
  44. data/spec/balance_control_spec.rb +7 -5
  45. data/spec/balance_platform_spec.rb +344 -63
  46. data/spec/bin_lookup_spec.rb +4 -3
  47. data/spec/client_spec.rb +101 -2
  48. data/spec/data_protection_spec.rb +1 -1
  49. data/spec/disputes_spec.rb +2 -1
  50. data/spec/mocks/requests/BalancePlatform/create_transfer_limit.json +14 -0
  51. data/spec/mocks/requests/BalancePlatform/create_webhook_setting.json +16 -0
  52. data/spec/mocks/requests/OpenBanking/create_account_verification_routes.json +6 -0
  53. data/spec/mocks/requests/SessionAuthentication/create_authentication_session.json +16 -0
  54. data/spec/mocks/responses/BalancePlatform/create_transfer_limit.json +16 -0
  55. data/spec/mocks/responses/BalancePlatform/create_webhook_setting.json +17 -0
  56. data/spec/mocks/responses/BalancePlatform/get_all_authorised_card_users.json +6 -0
  57. data/spec/mocks/responses/BalancePlatform/get_all_webhook_settings.json +38 -0
  58. data/spec/mocks/responses/BalancePlatform/get_specific_transfer_limit.json +17 -0
  59. data/spec/mocks/responses/BalancePlatform/get_transfer_limits.json +38 -0
  60. data/spec/mocks/responses/OpenBanking/create_account_verification_routes.json +11 -0
  61. data/spec/mocks/responses/OpenBanking/get_account_verification_report.json +30 -0
  62. data/spec/mocks/responses/SessionAuthentication/create_authentication_session.json +4 -0
  63. data/spec/open_banking_spec.rb +68 -0
  64. data/spec/payments_spec.rb +1 -1
  65. data/spec/recurring_spec.rb +1 -1
  66. data/spec/session_authentication_spec.rb +40 -0
  67. data/spec/stored_value_spec.rb +1 -1
  68. data/templates/api.mustache +1 -1
  69. metadata +31 -2
@@ -0,0 +1,16 @@
1
+ {
2
+ "allowOrigin": "https://www.your-website.com",
3
+ "product": "platform",
4
+ "policy": {
5
+ "resources": [
6
+ {
7
+ "type": "accountHolder",
8
+ "accountHolderId": "AH00000000000000000000001"
9
+ }
10
+ ],
11
+ "roles": [
12
+ "Transactions Overview Component: View",
13
+ "Payouts Overview Component: View"
14
+ ]
15
+ }
16
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "amount": {
3
+ "value": 10000,
4
+ "currency": "EUR"
5
+ },
6
+ "id": "TRLI00000000000000000000000001",
7
+ "scope": "perTransaction",
8
+ "reference": "Your reference for the transfer limit",
9
+ "scaInformation": {
10
+ "status": "pending"
11
+ },
12
+ "startsAt": "2025-08-15T06:36:20+01:00",
13
+ "endsAt": "2026-08-13T23:00:00+01:00",
14
+ "limitStatus": "pendingSCA",
15
+ "transferType": "all"
16
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "id": "BWHS00000000000000000000000001",
3
+ "type": "balance",
4
+ "target": {
5
+ "type": "balanceAccount",
6
+ "id": "BA00000000000000000LIABLE"
7
+ },
8
+ "currency": "USD",
9
+ "status": "active",
10
+ "conditions": [
11
+ {
12
+ "balanceType": "available",
13
+ "conditionType": "lessThan",
14
+ "value": 500000
15
+ }
16
+ ]
17
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "legalEntityIds": [
3
+ "LE328V522322685LV3KTNF35M",
4
+ "LE328SW223226B5LWVWNQ8THN"
5
+ ]
6
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "webhookSettings": [
3
+ {
4
+ "id": "BWHS00000000000000000000000001",
5
+ "type": "balance",
6
+ "target": {
7
+ "type": "balancePlatform",
8
+ "id": "YOUR_BALANCE_PLATFORM"
9
+ },
10
+ "currency": "USD",
11
+ "status": "active",
12
+ "conditions": [
13
+ {
14
+ "balanceType": "available",
15
+ "conditionType": "lessThan",
16
+ "value": 500000
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "id": "BWHS00000000000000000000000002",
22
+ "type": "balance",
23
+ "target": {
24
+ "type": "balanceAccount",
25
+ "id": "BA00000000000000000LIABLE"
26
+ },
27
+ "currency": "USD",
28
+ "status": "active",
29
+ "conditions": [
30
+ {
31
+ "balanceType": "available",
32
+ "conditionType": "greaterThan",
33
+ "value": 1000000
34
+ }
35
+ ]
36
+ }
37
+ ]
38
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "amount": {
3
+ "value": 10000,
4
+ "currency": "EUR"
5
+ },
6
+ "id": "TRLI00000000000000000000000001",
7
+ "endsAt": "2026-08-13T23:00:00+01:00",
8
+ "scope": "perTransaction",
9
+ "reference": "Your reference for the transfer limit",
10
+ "scaInformation": {
11
+ "exemption": "initialLimit",
12
+ "status": "notPerformed"
13
+ },
14
+ "startsAt": "2025-08-13T23:00:00+01:00",
15
+ "limitStatus": "active",
16
+ "transferType": "all"
17
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "transferLimits": [
3
+ {
4
+ "amount": {
5
+ "value": 10000,
6
+ "currency": "EUR"
7
+ },
8
+ "id": "TRLI00000000000000000000000001",
9
+ "endsAt": "2026-08-13T23:00:00+01:00",
10
+ "scope": "perTransaction",
11
+ "reference": "Your reference for the transfer limit",
12
+ "scaInformation": {
13
+ "exemption": "initialLimit",
14
+ "status": "notPerformed"
15
+ },
16
+ "startsAt": "2025-08-13T23:00:00+01:00",
17
+ "limitStatus": "active",
18
+ "transferType": "instant"
19
+ },
20
+ {
21
+ "amount": {
22
+ "value": 20000,
23
+ "currency": "EUR"
24
+ },
25
+ "id": "TRLI00000000000000000000000002",
26
+ "endsAt": "2026-08-13T23:00:00+01:00",
27
+ "scope": "perTransaction",
28
+ "reference": "Your reference for the transfer limit",
29
+ "scaInformation": {
30
+ "exemption": "initialLimit",
31
+ "status": "notPerformed"
32
+ },
33
+ "startsAt": "2025-08-13T23:00:00+01:00",
34
+ "limitStatus": "active",
35
+ "transferType": "all"
36
+ }
37
+ ]
38
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "routes": [
3
+ {
4
+ "provider": {
5
+ "name": "Tink",
6
+ "logoURL": "https://obgateway.adyen.com/obgateway/static/provider/images/tink-logo.svg"
7
+ },
8
+ "link": "https://obgateway.adyen.com/obgateway/provider/outgoing/tink/redirect/13ec4802-c987-4f8c-8909-9a75ff567256"
9
+ }
10
+ ]
11
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "id": "69ee9452ef824fe092f1417f37535755",
3
+ "country": "ES",
4
+ "accounts": [
5
+ {
6
+ "accountId": "ed5080e4f485430290475d246534c8fd",
7
+ "accountType": "CURRENT",
8
+ "accountName": "Checking Account 1",
9
+ "accountNumber": "ES1376230223254275408743",
10
+ "currency": "EUR",
11
+ "identifiers": {
12
+ "iban": {
13
+ "iban": "ES1376230223254275408743",
14
+ "bban": "76230223254275408743",
15
+ "bic": "BIC001"
16
+ }
17
+ },
18
+ "parties": [
19
+ {
20
+ "identity": {
21
+ "fullLegalName": "Alberta Bobbeth Charleson",
22
+ "name": "Alberta Bobbeth Charleson"
23
+ },
24
+ "role": "HOLDER"
25
+ }
26
+ ],
27
+ "bankName": "Tink Demo Bank"
28
+ }
29
+ ]
30
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "sessionToken": "long_session_token_string",
3
+ "expiresAt": "2025-10-07T12:00:00Z"
4
+ }
@@ -0,0 +1,68 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+
4
+ RSpec.describe Adyen::OpenBanking, service: 'OpenBanking' do
5
+ before(:all) do
6
+ @shared_values = {
7
+ client: create_client(:api_key),
8
+ service: 'OpenBanking'
9
+ }
10
+ end
11
+
12
+ it 'makes a create_account_verification_routes POST call' do
13
+ request_body = JSON.parse(json_from_file('mocks/requests/OpenBanking/create_account_verification_routes.json'))
14
+ response_body = json_from_file('mocks/responses/OpenBanking/create_account_verification_routes.json')
15
+
16
+ url = @shared_values[:client].service_url(
17
+ @shared_values[:service],
18
+ 'accountVerification/routes',
19
+ @shared_values[:client].open_banking.version
20
+ )
21
+ WebMock.stub_request(:post, url)
22
+ .with(
23
+ body: request_body,
24
+ headers: {
25
+ 'x-api-key' => @shared_values[:client].api_key
26
+ }
27
+ )
28
+ .to_return(
29
+ body: response_body
30
+ )
31
+
32
+ result = @shared_values[:client].open_banking.account_verification_api.create_account_verification_routes(request_body)
33
+ response_hash = result.response
34
+
35
+ expect(result.status).to eq(200)
36
+ expect(response_hash).to eq(JSON.parse(response_body))
37
+ expect(response_hash).to be_a Adyen::HashWithAccessors
38
+ expect(response_hash).to be_a_kind_of Hash
39
+ end
40
+
41
+ it 'makes a get_account_verification_report GET call' do
42
+ response_body = json_from_file('mocks/responses/OpenBanking/get_account_verification_report.json')
43
+ code = 'some-verification-code'
44
+
45
+ url = @shared_values[:client].service_url(
46
+ @shared_values[:service],
47
+ "accountVerification/reports/#{code}",
48
+ @shared_values[:client].open_banking.version
49
+ )
50
+ WebMock.stub_request(:get, url)
51
+ .with(
52
+ headers: {
53
+ 'x-api-key' => @shared_values[:client].api_key
54
+ }
55
+ )
56
+ .to_return(
57
+ body: response_body
58
+ )
59
+
60
+ result = @shared_values[:client].open_banking.account_verification_api.get_account_verification_report(code)
61
+ response_hash = result.response
62
+
63
+ expect(result.status).to eq(200)
64
+ expect(response_hash).to eq(JSON.parse(response_body))
65
+ expect(response_hash).to be_a Adyen::HashWithAccessors
66
+ expect(response_hash).to be_a_kind_of Hash
67
+ end
68
+ end
@@ -28,7 +28,7 @@ RSpec.describe Adyen::Payment, service: 'Payment' do
28
28
  body: response_body
29
29
  )
30
30
 
31
- result = @shared_values[:client].payment.adjust_authorisation(request_body)
31
+ result = @shared_values[:client].payment.modifications_api.adjust_authorisation(request_body)
32
32
  response_hash = result.response
33
33
 
34
34
  expect(result.status)
@@ -14,5 +14,5 @@ RSpec.describe Adyen::Payment, service: 'recurring service' do
14
14
  ['schedule_account_updater', 'result', 'Success']
15
15
  ]
16
16
 
17
- generate_tests(client, 'Recurring', test_sets, client.recurring)
17
+ generate_tests(client, 'Recurring', test_sets, client.recurring.recurring_api)
18
18
  end
@@ -0,0 +1,40 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+
4
+ RSpec.describe Adyen::SessionAuthentication, service: 'SessionAuthentication' do
5
+ before(:all) do
6
+ @shared_values = {
7
+ client: create_client(:api_key),
8
+ service: 'SessionAuthentication'
9
+ }
10
+ end
11
+
12
+ it 'makes a create_authentication_session POST call' do
13
+ request_body = JSON.parse(json_from_file('mocks/requests/SessionAuthentication/create_authentication_session.json'))
14
+ response_body = json_from_file('mocks/responses/SessionAuthentication/create_authentication_session.json')
15
+
16
+ url = @shared_values[:client].service_url(
17
+ @shared_values[:service],
18
+ 'sessions',
19
+ @shared_values[:client].session_authentication.version
20
+ )
21
+ WebMock.stub_request(:post, url)
22
+ .with(
23
+ body: request_body,
24
+ headers: {
25
+ 'x-api-key' => @shared_values[:client].api_key
26
+ }
27
+ )
28
+ .to_return(
29
+ body: response_body
30
+ )
31
+
32
+ result = @shared_values[:client].session_authentication.session_authentication_api.create_authentication_session(request_body)
33
+ response_hash = result.response
34
+
35
+ expect(result.status).to eq(200)
36
+ expect(response_hash).to eq(JSON.parse(response_body))
37
+ expect(response_hash).to be_a Adyen::HashWithAccessors
38
+ expect(response_hash).to be_a_kind_of Hash
39
+ end
40
+ end
@@ -28,7 +28,7 @@ RSpec.describe Adyen::BalancePlatform, service: 'balancePlatform' do
28
28
  body: response_body
29
29
  )
30
30
 
31
- result = @shared_values[:client].stored_value.issue(request_body)
31
+ result = @shared_values[:client].stored_value.stored_value_api.issue(request_body)
32
32
  response_hash = result.response
33
33
 
34
34
  expect(result.status)
@@ -18,7 +18,7 @@ module Adyen
18
18
  #
19
19
  # Deprecated {{#vendorExtensions.x-deprecatedInVersion}}since {{#appName}}{{{.}}}{{/appName}} v{{.}}{{/vendorExtensions.x-deprecatedInVersion}}{{#vendorExtensions.x-deprecatedMessage}}
20
20
  # {{{.}}}{{/vendorExtensions.x-deprecatedMessage}}{{/isDeprecated}}
21
- def {{#lambda.snakecase}}{{#vendorExtensions.x-methodName}}{{.}}{{/vendorExtensions.x-methodName}}{{^vendorExtensions.x-methodName}}{{nickname}}{{/vendorExtensions.x-methodName}}{{/lambda.snakecase}}({{#bodyParams}}request, {{/bodyParams}}{{#requiredParams}}{{^isQueryParam}}{{#lambda.snakecase}}{{paramName}}{{/lambda.snakecase}}, {{/isQueryParam}}{{/requiredParams}}headers: {}{{#queryParams}}{{#-first}}, query_params: {}{{/-first}}{{/queryParams}})
21
+ def {{#lambda.snakecase}}{{#vendorExtensions.x-methodName}}{{.}}{{/vendorExtensions.x-methodName}}{{^vendorExtensions.x-methodName}}{{nickname}}{{/vendorExtensions.x-methodName}}{{/lambda.snakecase}}({{#bodyParams}}request, {{/bodyParams}}{{#pathParams}}{{#lambda.snakecase}}{{paramName}}{{/lambda.snakecase}}, {{/pathParams}}headers: {}{{#queryParams}}{{#-first}}, query_params: {}{{/-first}}{{/queryParams}})
22
22
  endpoint = '{{path}}'.gsub(/{.+?}/, '%s')
23
23
  endpoint = endpoint.gsub(%r{^/}, '')
24
24
  endpoint = format(endpoint{{#pathParams}}, {{#lambda.snakecase}}{{paramName}}{{/lambda.snakecase}}{{/pathParams}})
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adyen-ruby-api-library
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.4.0
4
+ version: 11.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adyen
@@ -106,7 +106,8 @@ files:
106
106
  - lib/adyen/errors.rb
107
107
  - lib/adyen/hash_with_accessors.rb
108
108
  - lib/adyen/result.rb
109
- - lib/adyen/services/balanceControlService.rb
109
+ - lib/adyen/services/balanceControl.rb
110
+ - lib/adyen/services/balanceControl/balance_control_api.rb
110
111
  - lib/adyen/services/balancePlatform.rb
111
112
  - lib/adyen/services/balancePlatform/account_holders_api.rb
112
113
  - lib/adyen/services/balancePlatform/authorized_card_users_api.rb
@@ -123,8 +124,11 @@ files:
123
124
  - lib/adyen/services/balancePlatform/payment_instruments_api.rb
124
125
  - lib/adyen/services/balancePlatform/platform_api.rb
125
126
  - lib/adyen/services/balancePlatform/transaction_rules_api.rb
127
+ - lib/adyen/services/balancePlatform/transfer_limits_balance_account_level_api.rb
128
+ - lib/adyen/services/balancePlatform/transfer_limits_balance_platform_level_api.rb
126
129
  - lib/adyen/services/balancePlatform/transfer_routes_api.rb
127
130
  - lib/adyen/services/binLookup.rb
131
+ - lib/adyen/services/binLookup/bin_lookup_api.rb
128
132
  - lib/adyen/services/checkout.rb
129
133
  - lib/adyen/services/checkout/donations_api.rb
130
134
  - lib/adyen/services/checkout/modifications_api.rb
@@ -134,7 +138,9 @@ files:
134
138
  - lib/adyen/services/checkout/recurring_api.rb
135
139
  - lib/adyen/services/checkout/utility_api.rb
136
140
  - lib/adyen/services/dataProtection.rb
141
+ - lib/adyen/services/dataProtection/data_protection_api.rb
137
142
  - lib/adyen/services/disputes.rb
143
+ - lib/adyen/services/disputes/disputes_api.rb
138
144
  - lib/adyen/services/legalEntityManagement.rb
139
145
  - lib/adyen/services/legalEntityManagement/business_lines_api.rb
140
146
  - lib/adyen/services/legalEntityManagement/documents_api.rb
@@ -175,19 +181,27 @@ files:
175
181
  - lib/adyen/services/management/webhooks_company_level_api.rb
176
182
  - lib/adyen/services/management/webhooks_merchant_level_api.rb
177
183
  - lib/adyen/services/marketpay.rb
184
+ - lib/adyen/services/openBanking.rb
185
+ - lib/adyen/services/openBanking/account_verification_api.rb
178
186
  - lib/adyen/services/payment.rb
187
+ - lib/adyen/services/payment/modifications_api.rb
188
+ - lib/adyen/services/payment/payments_api.rb
179
189
  - lib/adyen/services/paymentsApp.rb
190
+ - lib/adyen/services/paymentsApp/payments_app_api.rb
180
191
  - lib/adyen/services/payout.rb
181
192
  - lib/adyen/services/payout/initialization_api.rb
182
193
  - lib/adyen/services/payout/instant_payouts_api.rb
183
194
  - lib/adyen/services/payout/reviewing_api.rb
184
195
  - lib/adyen/services/posMobile.rb
196
+ - lib/adyen/services/posMobile/pos_mobile_api.rb
185
197
  - lib/adyen/services/posTerminalManagement.rb
186
198
  - lib/adyen/services/recurring.rb
199
+ - lib/adyen/services/recurring/recurring_api.rb
187
200
  - lib/adyen/services/service.rb
188
201
  - lib/adyen/services/sessionAuthentication.rb
189
202
  - lib/adyen/services/sessionAuthentication/session_authentication_api.rb
190
203
  - lib/adyen/services/storedValue.rb
204
+ - lib/adyen/services/storedValue/stored_value_api.rb
191
205
  - lib/adyen/services/terminalCloudAPI.rb
192
206
  - lib/adyen/services/transfers.rb
193
207
  - lib/adyen/services/transfers/capital_api.rb
@@ -231,6 +245,8 @@ files:
231
245
  - spec/mocks/requests/Account/upload_document.json
232
246
  - spec/mocks/requests/BalanceControl/balance_transfer.json
233
247
  - spec/mocks/requests/BalancePlatform/create_account_holder.json
248
+ - spec/mocks/requests/BalancePlatform/create_transfer_limit.json
249
+ - spec/mocks/requests/BalancePlatform/create_webhook_setting.json
234
250
  - spec/mocks/requests/BalancePlatform/update_account_holder.json
235
251
  - spec/mocks/requests/BinLookup/get_3ds_availability.json
236
252
  - spec/mocks/requests/BinLookup/get_cost_estimate.json
@@ -271,6 +287,7 @@ files:
271
287
  - spec/mocks/requests/Notification/get_notification_configuration_list.json
272
288
  - spec/mocks/requests/Notification/test_notification_configuration.json
273
289
  - spec/mocks/requests/Notification/update_notification_configuration.json
290
+ - spec/mocks/requests/OpenBanking/create_account_verification_routes.json
274
291
  - spec/mocks/requests/Payment/adjust_authorisation.json
275
292
  - spec/mocks/requests/Payment/authorise.json
276
293
  - spec/mocks/requests/Payment/authorise3d.json
@@ -294,6 +311,7 @@ files:
294
311
  - spec/mocks/requests/Recurring/disable.json
295
312
  - spec/mocks/requests/Recurring/list_recurring_details.json
296
313
  - spec/mocks/requests/Recurring/schedule_account_updater.json
314
+ - spec/mocks/requests/SessionAuthentication/create_authentication_session.json
297
315
  - spec/mocks/requests/StoredValue/issue_giftcard.json
298
316
  - spec/mocks/requests/Terminal/assign_terminals.json
299
317
  - spec/mocks/requests/Terminal/find_terminal.json
@@ -321,7 +339,13 @@ files:
321
339
  - spec/mocks/responses/Account/upload_document.json
322
340
  - spec/mocks/responses/BalanceControl/balance_transfer.json
323
341
  - spec/mocks/responses/BalancePlatform/create_account_holder.json
342
+ - spec/mocks/responses/BalancePlatform/create_transfer_limit.json
343
+ - spec/mocks/responses/BalancePlatform/create_webhook_setting.json
344
+ - spec/mocks/responses/BalancePlatform/get_all_authorised_card_users.json
345
+ - spec/mocks/responses/BalancePlatform/get_all_webhook_settings.json
324
346
  - spec/mocks/responses/BalancePlatform/get_balance_account.json
347
+ - spec/mocks/responses/BalancePlatform/get_specific_transfer_limit.json
348
+ - spec/mocks/responses/BalancePlatform/get_transfer_limits.json
325
349
  - spec/mocks/responses/BalancePlatform/update_account_holder.json
326
350
  - spec/mocks/responses/BinLookup/get_3ds_availability.json
327
351
  - spec/mocks/responses/BinLookup/get_cost_estimate.json
@@ -366,6 +390,8 @@ files:
366
390
  - spec/mocks/responses/Notification/get_notification_configuration_list.json
367
391
  - spec/mocks/responses/Notification/test_notification_configuration.json
368
392
  - spec/mocks/responses/Notification/update_notification_configuration.json
393
+ - spec/mocks/responses/OpenBanking/create_account_verification_routes.json
394
+ - spec/mocks/responses/OpenBanking/get_account_verification_report.json
369
395
  - spec/mocks/responses/Payment/adjust_authorisation.json
370
396
  - spec/mocks/responses/Payment/authorise.json
371
397
  - spec/mocks/responses/Payment/authorise3d.json
@@ -389,6 +415,7 @@ files:
389
415
  - spec/mocks/responses/Recurring/disable.json
390
416
  - spec/mocks/responses/Recurring/list_recurring_details.json
391
417
  - spec/mocks/responses/Recurring/schedule_account_updater.json
418
+ - spec/mocks/responses/SessionAuthentication/create_authentication_session.json
392
419
  - spec/mocks/responses/StoredValue/issue_giftcard.json
393
420
  - spec/mocks/responses/Terminal/assign_terminals.json
394
421
  - spec/mocks/responses/Terminal/find_terminal.json
@@ -402,11 +429,13 @@ files:
402
429
  - spec/mocks/responses/Webhooks/forwardslash_webhook.json
403
430
  - spec/mocks/responses/Webhooks/mixed_webhook.json
404
431
  - spec/notification_spec.rb
432
+ - spec/open_banking_spec.rb
405
433
  - spec/payments_spec.rb
406
434
  - spec/payouts_spec.rb
407
435
  - spec/pos_terminal_management_spec.rb
408
436
  - spec/recurring_spec.rb
409
437
  - spec/service_spec.rb
438
+ - spec/session_authentication_spec.rb
410
439
  - spec/spec_helper.rb
411
440
  - spec/stored_value_spec.rb
412
441
  - spec/terminal_cloud_api_spec.rb