recurly 4.41.0 → 4.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +11 -0
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/resources/transaction.rb +4 -0
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +8 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7802ac249c077300036dea6ac4488f55df9c12d1483c6a9f56183cb85b49af66
|
4
|
+
data.tar.gz: 69689a9e956ca294bbadc961b9980f075a84ca1fd0d96afffbc6dfde773a8e70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94c751bb78e2d1a3f67eabfcee1b9b61ec0d27465d7f05e1ba7e720e9991545867087fa6f18318e4f4dc96db1b0906644de4e9034ed752369f541672c4e983a6
|
7
|
+
data.tar.gz: 91fad41e3162d3e16770ca2d46aea058e51c115e606be885e1905160207379b9b5058246895a88dd457aeee04763790254339116cd43b805570a2fb646373dcc
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [4.42.0](https://github.com/recurly/recurly-client-ruby/tree/4.42.0) (2023-08-29)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.41.0...4.42.0)
|
6
|
+
|
7
|
+
|
8
|
+
**Merged Pull Requests**
|
9
|
+
|
10
|
+
- Generated Latest Changes for v2021-02-25 (`VATNumber`, `LifecycleDecline`) [#865](https://github.com/recurly/recurly-client-ruby/pull/865) ([recurly-integrations](https://github.com/recurly-integrations))
|
11
|
+
|
12
|
+
|
13
|
+
|
3
14
|
## [4.41.0](https://github.com/recurly/recurly-client-ruby/tree/4.41.0) (2023-08-10)
|
4
15
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.40.0...4.41.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.
|
8
|
+
gem 'recurly', '~> 4.42'
|
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.
|
@@ -154,6 +154,10 @@ module Recurly
|
|
154
154
|
# @return [String] The UUID is useful for matching data with the CSV exports and building URLs into Recurly's UI.
|
155
155
|
define_attribute :uuid, String
|
156
156
|
|
157
|
+
# @!attribute vat_number
|
158
|
+
# @return [String] VAT number for the customer on this transaction. If the customer's Billing Info country is BR or AR, then this will be their Tax Identifier. For all other countries this will come from the VAT Number field in the Billing Info.
|
159
|
+
define_attribute :vat_number, String
|
160
|
+
|
157
161
|
# @!attribute voided_at
|
158
162
|
# @return [DateTime] Voided at
|
159
163
|
define_attribute :voided_at, DateTime
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
@@ -23040,6 +23040,13 @@ components:
|
|
23040
23040
|
payment when using asynchronous payment methods, e.g., Boleto, iDEAL and
|
23041
23041
|
Sofort.
|
23042
23042
|
title: Action result
|
23043
|
+
vat_number:
|
23044
|
+
type: string
|
23045
|
+
description: VAT number for the customer on this transaction. If the customer's
|
23046
|
+
Billing Info country is BR or AR, then this will be their Tax Identifier.
|
23047
|
+
For all other countries this will come from the VAT Number field in the
|
23048
|
+
Billing Info.
|
23049
|
+
title: VAT Number
|
23043
23050
|
ExternalTransaction:
|
23044
23051
|
type: object
|
23045
23052
|
properties:
|
@@ -25336,6 +25343,7 @@ components:
|
|
25336
25343
|
- invalid_payment_method_hard
|
25337
25344
|
- invalid_transaction
|
25338
25345
|
- issuer_unavailable
|
25346
|
+
- lifecycle_decline
|
25339
25347
|
- merch_max_transaction_limit_exceeded
|
25340
25348
|
- moneybot_disconnect
|
25341
25349
|
- moneybot_unavailable
|
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.
|
4
|
+
version: 4.42.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-08-
|
11
|
+
date: 2023-08-29 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.
|
348
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.42.0
|
349
349
|
post_install_message:
|
350
350
|
rdoc_options: []
|
351
351
|
require_paths:
|