recurly 4.33.0 → 4.34.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 +4 -4
- data/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +11 -0
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/resources/invoice.rb +4 -0
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +9 -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: 1d58e029341b54321e97343bfaec205f5bc54ff3dc701dce3e14b61aab34be77
|
|
4
|
+
data.tar.gz: 0bf3d6ec35a4902fe4b70036287e65b146bfa541b2e6c0689e34180c663decf1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e90264d1c835e0fab6a9c59346deb9833799e9d0366a9be770293a85e0a5f65cd86503c17adc684652374b9b78c31539f24cd6bf92d55096e446ad11a28657b
|
|
7
|
+
data.tar.gz: d3717f71919f049cb49bc0ad797d6a9d9d33a7c2214df50fcb3cd295195038f75422d21c019b0e2f52b1c9a1ab256edcfac355aefd17b9203a6b7a6be39d5f18
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.34.0](https://github.com/recurly/recurly-client-ruby/tree/4.34.0) (2023-04-26)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.33.0...4.34.0)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
**Merged Pull Requests**
|
|
9
|
+
|
|
10
|
+
- Generated Latest Changes for v2021-02-25 (used_tax_service on Invoice) [#839](https://github.com/recurly/recurly-client-ruby/pull/839) ([recurly-integrations](https://github.com/recurly-integrations))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
3
14
|
## [4.33.0](https://github.com/recurly/recurly-client-ruby/tree/4.33.0) (2023-04-13)
|
|
4
15
|
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.32.0...4.33.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.34'
|
|
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 [DateTime] Last updated at
|
|
155
155
|
define_attribute :updated_at, DateTime
|
|
156
156
|
|
|
157
|
+
# @!attribute used_tax_service
|
|
158
|
+
# @return [Boolean] Will be `true` when the invoice had a successful response from the tax service and `false` when the invoice was not sent to tax service due to a lack of address or enabled jurisdiction or was processed without tax due to a non-blocking error returned from the tax service.
|
|
159
|
+
define_attribute :used_tax_service, :Boolean
|
|
160
|
+
|
|
157
161
|
# @!attribute uuid
|
|
158
162
|
# @return [String] Invoice UUID
|
|
159
163
|
define_attribute :uuid, String
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
|
@@ -19032,6 +19032,13 @@ components:
|
|
|
19032
19032
|
description: The outstanding balance remaining on this invoice.
|
|
19033
19033
|
tax_info:
|
|
19034
19034
|
"$ref": "#/components/schemas/TaxInfo"
|
|
19035
|
+
used_tax_service:
|
|
19036
|
+
type: boolean
|
|
19037
|
+
title: Used Tax Service?
|
|
19038
|
+
description: Will be `true` when the invoice had a successful response from
|
|
19039
|
+
the tax service and `false` when the invoice was not sent to tax service
|
|
19040
|
+
due to a lack of address or enabled jurisdiction or was processed without
|
|
19041
|
+
tax due to a non-blocking error returned from the tax service.
|
|
19035
19042
|
vat_number:
|
|
19036
19043
|
type: string
|
|
19037
19044
|
title: VAT number
|
|
@@ -24043,7 +24050,9 @@ components:
|
|
|
24043
24050
|
- es-MX
|
|
24044
24051
|
- es-US
|
|
24045
24052
|
- fi-FI
|
|
24053
|
+
- fr-BE
|
|
24046
24054
|
- fr-CA
|
|
24055
|
+
- fr-CH
|
|
24047
24056
|
- fr-FR
|
|
24048
24057
|
- hi-IN
|
|
24049
24058
|
- it-IT
|
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.34.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-04-
|
|
11
|
+
date: 2023-04-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -336,7 +336,7 @@ metadata:
|
|
|
336
336
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
|
337
337
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
|
338
338
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
|
339
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
|
339
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.34.0
|
|
340
340
|
post_install_message:
|
|
341
341
|
rdoc_options: []
|
|
342
342
|
require_paths:
|