recurly 4.40.0 → 4.41.0

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: 516898930f6b60b8f1a395185faef9f1202df9b635708656ffa68cd83dd1fb1e
4
- data.tar.gz: 2c8e9afc6c23e0998b38911c4c46845a9d0d10c008cbc65e666889dc3ada67d5
3
+ metadata.gz: 843ef045e84fa504d343018c8ffe5a603ff38f7f2fe7506a4fc6c49b335ede21
4
+ data.tar.gz: 7ef23498bd6f64129e6ee0381530a3ce68bc280f8814948ee2dbcccee4be8429
5
5
  SHA512:
6
- metadata.gz: 56f7cbbc66edb19a6a3702dd2402c93acea4d42a18862c4c97dc475f6f21cdc06bbdc12d3147b1338e49c6b10a334d83688a00de069bfeb576f6ab58ad017244
7
- data.tar.gz: d414f601498ca69ccd18e703e36426d52bcfc427ce14f6fee1b2efc41f9f6ef63b34ed526e0960d339e6bd61980b82aee3a0d7e69b2c1768ba29f2ecb4c49d3f
6
+ metadata.gz: 0de429f909022b74b0e9e533aa768e3a990b9cef8a7cc9649ebb1c31621b67b83cad24588091c313f2b02b42e45a881771ce54283516a1cd8dc9efb43aee3c8f
7
+ data.tar.gz: 696b8c39a4d0234878700454d4ff83da034ef2beaed761e09344fd4851dfac563e9cac76341f3089860c40b4cf9e565c6dfef0642085359cba899937f87b6113
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.40.0
2
+ current_version = 4.41.0
3
3
  parse = (?P<major>\d+)
4
4
  \.(?P<minor>\d+)
5
5
  \.(?P<patch>\d+)
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.41.0](https://github.com/recurly/recurly-client-ruby/tree/4.41.0) (2023-08-10)
4
+
5
+ [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.40.0...4.41.0)
6
+
7
+
8
+ **Merged Pull Requests**
9
+
10
+ - Generated Latest Changes for v2021-02-25 (action_result) [#864](https://github.com/recurly/recurly-client-ruby/pull/864) ([recurly-integrations](https://github.com/recurly-integrations))
11
+
12
+
13
+
3
14
  ## [4.40.0](https://github.com/recurly/recurly-client-ruby/tree/4.40.0) (2023-07-27)
4
15
 
5
16
  [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.38.0...4.40.0)
data/GETTING_STARTED.md CHANGED
@@ -5,7 +5,7 @@ This repository houses the official ruby client for Recurly's V3 API.
5
5
  In your Gemfile, add `recurly` as a dependency.
6
6
 
7
7
  ```ruby
8
- gem 'recurly', '~> 4.40'
8
+ gem 'recurly', '~> 4.41'
9
9
  ```
10
10
 
11
11
  > *Note*: We try to follow [semantic versioning](https://semver.org/) and will only apply breaking changes to major versions.
@@ -7,7 +7,7 @@ module Recurly
7
7
  class GatewayAttributes < Request
8
8
 
9
9
  # @!attribute account_reference
10
- # @return [String] Used by Adyen gateways. The Shopper Reference value used when the external token was created. Must be used in conjunction with gateway_token and gateway_code.
10
+ # @return [String] Used by Adyen and Braintree gateways. For Adyen the Shopper Reference value used when the external token was created. Must be used in conjunction with gateway_token and gateway_code. For Braintree the PayPal PayerID is populated in the response.
11
11
  define_attribute :account_reference, String
12
12
  end
13
13
  end
@@ -7,7 +7,7 @@ module Recurly
7
7
  class GatewayAttributes < Resource
8
8
 
9
9
  # @!attribute account_reference
10
- # @return [String] Used by Adyen gateways. The Shopper Reference value used when the external token was created.
10
+ # @return [String] Used by Adyen and Braintree gateways. For Adyen the Shopper Reference value used when the external token was created. For Braintree the PayPal PayerID is populated in the response.
11
11
  define_attribute :account_reference, String
12
12
  end
13
13
  end
@@ -10,6 +10,10 @@ module Recurly
10
10
  # @return [AccountMini] Account mini details
11
11
  define_attribute :account, :AccountMini
12
12
 
13
+ # @!attribute action_result
14
+ # @return [Hash] Action result params to be used in Recurly-JS to complete a payment when using asynchronous payment methods, e.g., Boleto, iDEAL and Sofort.
15
+ define_attribute :action_result, Hash
16
+
13
17
  # @!attribute activated_at
14
18
  # @return [DateTime] Activated at
15
19
  define_attribute :activated_at, DateTime
@@ -10,6 +10,10 @@ module Recurly
10
10
  # @return [AccountMini] Account mini details
11
11
  define_attribute :account, :AccountMini
12
12
 
13
+ # @!attribute action_result
14
+ # @return [Hash] Action result params to be used in Recurly-JS to complete a payment when using asynchronous payment methods, e.g., Boleto, iDEAL and Sofort.
15
+ define_attribute :action_result, Hash
16
+
13
17
  # @!attribute amount
14
18
  # @return [Float] Total transaction amount sent to the payment gateway.
15
19
  define_attribute :amount, Float
@@ -1,3 +1,3 @@
1
1
  module Recurly
2
- VERSION = "4.40.0"
2
+ VERSION = "4.41.0"
3
3
  end
data/openapi/api.yaml CHANGED
@@ -18204,9 +18204,10 @@ components:
18204
18204
  properties:
18205
18205
  account_reference:
18206
18206
  type: string
18207
- description: Used by Adyen gateways. The Shopper Reference value used
18208
- when the external token was created. Must be used in conjunction with
18209
- gateway_token and gateway_code.
18207
+ description: Used by Adyen and Braintree gateways. For Adyen the Shopper
18208
+ Reference value used when the external token was created. Must be
18209
+ used in conjunction with gateway_token and gateway_code. For Braintree
18210
+ the PayPal PayerID is populated in the response.
18210
18211
  maxLength: 264
18211
18212
  amazon_billing_agreement_id:
18212
18213
  type: string
@@ -21712,6 +21713,12 @@ components:
21712
21713
  format: date-time
21713
21714
  description: When the subscription was converted from a gift card.
21714
21715
  title: Converted at
21716
+ action_result:
21717
+ type: object
21718
+ description: Action result params to be used in Recurly-JS to complete a
21719
+ payment when using asynchronous payment methods, e.g., Boleto, iDEAL and
21720
+ Sofort.
21721
+ title: Action result
21715
21722
  SubscriptionAddOn:
21716
21723
  type: object
21717
21724
  title: Subscription Add-on
@@ -23027,6 +23034,12 @@ components:
23027
23034
  format: date-time
23028
23035
  title: Collected at, or if not collected yet, the time the transaction was
23029
23036
  created.
23037
+ action_result:
23038
+ type: object
23039
+ description: Action result params to be used in Recurly-JS to complete a
23040
+ payment when using asynchronous payment methods, e.g., Boleto, iDEAL and
23041
+ Sofort.
23042
+ title: Action result
23030
23043
  ExternalTransaction:
23031
23044
  type: object
23032
23045
  properties:
@@ -24149,8 +24162,9 @@ components:
24149
24162
  properties:
24150
24163
  account_reference:
24151
24164
  type: string
24152
- description: Used by Adyen gateways. The Shopper Reference value used
24153
- when the external token was created.
24165
+ description: Used by Adyen and Braintree gateways. For Adyen the Shopper
24166
+ Reference value used when the external token was created. For Braintree
24167
+ the PayPal PayerID is populated in the response.
24154
24168
  maxLength: 264
24155
24169
  billing_agreement_id:
24156
24170
  type: string
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: recurly
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.40.0
4
+ version: 4.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recurly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-27 00:00:00.000000000 Z
11
+ date: 2023-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -345,7 +345,7 @@ metadata:
345
345
  changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
346
346
  documentation_uri: https://recurly.github.io/recurly-client-ruby/
347
347
  homepage_uri: https://github.com/recurly/recurly-client-ruby
348
- source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.40.0
348
+ source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.41.0
349
349
  post_install_message:
350
350
  rdoc_options: []
351
351
  require_paths:
@@ -361,7 +361,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
361
361
  - !ruby/object:Gem::Version
362
362
  version: '0'
363
363
  requirements: []
364
- rubygems_version: 3.0.3
364
+ rubygems_version: 3.0.3.1
365
365
  signing_key:
366
366
  specification_version: 4
367
367
  summary: The ruby client for Recurly's V3 API