adyen-ruby-api-library 9.4.0 → 9.5.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af1994e49d9fa9313d9c84dc83632faf93529fa98893d88feb814605f15fb42e
|
4
|
+
data.tar.gz: 1d386322dfc11e2a32e6cd6f1f5d9d40225b73043b3f97775a422804cef02218
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3924efc133f62cebe660db6043113790d0f3524253bb357aa6e15850a2792aa57a19b360152e3e1c801fd4db335c05f312904c7fa4dcade5d9f3ad07e4d60e5f
|
7
|
+
data.tar.gz: 70793376c78920520c98db9fc408d2a56f35dfb098376c3e05b68e59f78650c20d752fb818021254de0f3fb46b119183632eb26c8813c40f8d91e651441d54eb
|
@@ -0,0 +1,15 @@
|
|
1
|
+
name: Label New Issues
|
2
|
+
on:
|
3
|
+
issues:
|
4
|
+
types: [opened]
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
add-label:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
steps:
|
10
|
+
- name: Add 'needs response' label to new issues
|
11
|
+
uses: actions-ecosystem/action-add-labels@v1
|
12
|
+
with:
|
13
|
+
github_token: ${{ secrets.GITHUB_TOKEN }}
|
14
|
+
labels: 'needs response'
|
15
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
name: Close Stale Issues
|
2
|
+
on:
|
3
|
+
schedule:
|
4
|
+
- cron: '30 8 * * *'
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
stale:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
steps:
|
10
|
+
- uses: actions/stale@v9
|
11
|
+
with:
|
12
|
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
13
|
+
stale-issue-message: 'This issue has been automatically marked as stale due to inactivity and will be closed in 7 days if no further activity occurs.'
|
14
|
+
close-issue-message: 'This issue was closed due to inactivity. Please reopen if you still encounter this problem or have more information to add.'
|
15
|
+
days-before-stale: 14
|
16
|
+
days-before-close: 7
|
17
|
+
stale-issue-label: 'stale'
|
18
|
+
exempt-issue-labels: 'do not stale, needs response'
|
19
|
+
|
data/VERSION
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
9.
|
1
|
+
9.5.1
|
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
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
|
+
version: 9.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adyen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -83,9 +83,11 @@ files:
|
|
83
83
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
84
84
|
- ".github/release.yml"
|
85
85
|
- ".github/workflows/codeql.yml"
|
86
|
+
- ".github/workflows/label_new_issues.yml"
|
86
87
|
- ".github/workflows/release.yml"
|
87
88
|
- ".github/workflows/ruby.yml"
|
88
89
|
- ".github/workflows/rubygems_release.yml"
|
90
|
+
- ".github/workflows/stale.yml"
|
89
91
|
- ".gitignore"
|
90
92
|
- ".rubocop.yml"
|
91
93
|
- CODE_OF_CONDUCT.md
|
@@ -445,7 +447,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
445
447
|
- !ruby/object:Gem::Version
|
446
448
|
version: '0'
|
447
449
|
requirements: []
|
448
|
-
rubygems_version: 3.5.
|
450
|
+
rubygems_version: 3.5.11
|
449
451
|
signing_key:
|
450
452
|
specification_version: 4
|
451
453
|
summary: Official Adyen Ruby API Library
|