adyen-ruby-api-library 10.1.1 → 10.1.2

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: 28097dc756c9c1fb8eea3f0cf6097e0297435206cfa2d80f3ddb15894ef27792
4
- data.tar.gz: 7ee9e568febe00589ad68f1a7e7841f209257f0ad5ada921d7467e5440498edf
3
+ metadata.gz: c365b64ddb38cf735b8e56490bb4c392a0d78d7d1250df09b78a303eae5e25e0
4
+ data.tar.gz: 6652c1d479abf0193ad9fa7bdf58c8dfbf47bd713f54c6964f657d5115a5df63
5
5
  SHA512:
6
- metadata.gz: 6e2894ee9c7866b4d73a1cbebe57453589ac5a0cf4cdcb6e418630d4b63d1080e50847864050c84b68114e16091b5b66a8e7baa809caa1b694d0c1d43cb372a6
7
- data.tar.gz: ba9d13b85d92ba98941168bbdfd5321a3fb08f7e45cb6724417861d0970b17cc08304eeec7278f7ee1e6a314ca5b292d51ec6138f9d888a823274c78ec50fa6e
6
+ metadata.gz: 8ac3a03f3c60386082b9d6f35c5524af91e09daace138bbf457393a1f2fe119abae2f46c743f31dbd1f0f40406c1ad75edee92efc2a793c13a23a7a586105ee5
7
+ data.tar.gz: 748fb3f6cfbc34a33beff6b9cc25f40bf0dd392422491f1f8648a35fed7570bf48e708e902951ecaefbcaed2bb603dc1c0a5edc1e4f8efbecfd0620ce6ca5f22
data/VERSION CHANGED
@@ -1,2 +1,2 @@
1
- 10.1.1
1
+ 10.1.2
2
2
 
@@ -13,6 +13,9 @@ module Adyen
13
13
  end
14
14
 
15
15
  # Get a capital account
16
+ #
17
+ # Deprecated since Transfers API v4
18
+ # Use the `/grants` endpoint from the [Capital API](https://docs.adyen.com/api-explorer/capital/latest/get/grants) instead.
16
19
  def get_capital_account(headers: {}, query_params: {})
17
20
  endpoint = '/grants'.gsub(/{.+?}/, '%s')
18
21
  endpoint = endpoint.gsub(%r{^/}, '')
@@ -23,6 +26,9 @@ module Adyen
23
26
  end
24
27
 
25
28
  # Get grant reference details
29
+ #
30
+ # Deprecated since Transfers API v4
31
+ # Use the `/grants/{grantId}` endpoint from the [Capital API](https://docs.adyen.com/api-explorer/capital/latest/get/grants/(grantId)) instead.
26
32
  def get_grant_reference_details(id, headers: {})
27
33
  endpoint = '/grants/{id}'.gsub(/{.+?}/, '%s')
28
34
  endpoint = endpoint.gsub(%r{^/}, '')
@@ -33,6 +39,9 @@ module Adyen
33
39
  end
34
40
 
35
41
  # Request a grant payout
42
+ #
43
+ # Deprecated since Transfers API v4
44
+ # Use the `/grants` endpoint from the [Capital API](https://docs.adyen.com/api-explorer/capital/latest/post/grants) instead.
36
45
  def request_grant_payout(request, headers: {})
37
46
  endpoint = '/grants'.gsub(/{.+?}/, '%s')
38
47
  endpoint = endpoint.gsub(%r{^/}, '')
data/lib/adyen/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Adyen
2
2
  NAME = 'adyen-ruby-api-library'.freeze
3
- VERSION = '10.1.1'.freeze
3
+ VERSION = '10.1.2'.freeze
4
4
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adyen-ruby-api-library
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.1.1
4
+ version: 10.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adyen
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-14 00:00:00.000000000 Z
10
+ date: 2025-02-10 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: faraday