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 +4 -4
- data/VERSION +1 -1
- data/lib/adyen/services/transfers/capital_api.rb +9 -0
- data/lib/adyen/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c365b64ddb38cf735b8e56490bb4c392a0d78d7d1250df09b78a303eae5e25e0
|
4
|
+
data.tar.gz: 6652c1d479abf0193ad9fa7bdf58c8dfbf47bd713f54c6964f657d5115a5df63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ac3a03f3c60386082b9d6f35c5524af91e09daace138bbf457393a1f2fe119abae2f46c743f31dbd1f0f40406c1ad75edee92efc2a793c13a23a7a586105ee5
|
7
|
+
data.tar.gz: 748fb3f6cfbc34a33beff6b9cc25f40bf0dd392422491f1f8648a35fed7570bf48e708e902951ecaefbcaed2bb603dc1c0a5edc1e4f8efbecfd0620ce6ca5f22
|
data/VERSION
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
10.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
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.
|
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-
|
10
|
+
date: 2025-02-10 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: faraday
|