adyen-ruby-api-library 9.4.0 → 9.5.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: 2bf587eb5a52ec919b8350e31713947a7054d6b4a04ba498cd022ef34c4b1d37
4
- data.tar.gz: 8a87040a48a4c56185bb3d845f8e773d733ade4fedb698a1d9304bf57ede34b6
3
+ metadata.gz: 3cc53bf5f369e14c157b891bdf7bae1a1d31d5044e0fc1f982d77a295eac8ce1
4
+ data.tar.gz: e2b54affbaa09674a1dded7f27a5eb1edfdc6d050c8950bae1dc2c6261076d8f
5
5
  SHA512:
6
- metadata.gz: 32837f501c49e01d69692e9bbb25c384a202f3867aec1c858dc1e4317729cd30496adaf798c4d78837dedcfd6fe8f139eb85990a5ba124c4fe284bbb60de3753
7
- data.tar.gz: 1eba0cde36d9a7b3fe352fbdd2927875bbdfa239caf757d72348a3d4e7d8a32cbe2eb1cbe6df5fd45464c0de9fd2c0c704477839838025b4bb1de6985a6a1fba
6
+ metadata.gz: 634257fab7e168b36f446c69c165afe03bcaf24e8ae4fe741782bb523af8d97f886edfe59f393befe22fcb665926384d66ecda6507abfc44dee90ec581f6e37b
7
+ data.tar.gz: a8608fc1b33fa60a8507eedaad9a7662083288ef0df4f54fe13774467282fa6dc56b66228dffbee6cbc039b03e6f3fae680c9b4192b7e1856615aa02c682ff47
data/VERSION CHANGED
@@ -1,2 +1,2 @@
1
- 9.4.0
1
+ 9.5.0
2
2
 
@@ -34,6 +34,15 @@ module Adyen
34
34
  @client.call_adyen_api(@service, action, {}, headers, @version)
35
35
  end
36
36
 
37
+ def reprocess_android_app(company_id, id, headers: {})
38
+ endpoint = '/companies/{companyId}/androidApps/{id}'.gsub(/{.+?}/, '%s')
39
+ endpoint = endpoint.gsub(%r{^/}, '')
40
+ endpoint = format(endpoint, company_id, id)
41
+
42
+ action = { method: 'patch', url: endpoint }
43
+ @client.call_adyen_api(@service, action, {}, headers, @version)
44
+ end
45
+
37
46
  def upload_android_app(company_id, headers: {})
38
47
  endpoint = '/companies/{companyId}/androidApps'.gsub(/{.+?}/, '%s')
39
48
  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 = '9.4.0'.freeze
3
+ VERSION = '9.5.0'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adyen-ruby-api-library
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.4.0
4
+ version: 9.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adyen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-16 00:00:00.000000000 Z
11
+ date: 2024-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday