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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37670f0323bda5789149a45daa009f4754b92ea72f9267e2f43d3a59c0abb42f
4
- data.tar.gz: 7cbbeda88d39250d5512098551605315628fd9304a14c713a31e0f23496d1f5e
3
+ metadata.gz: 1d58e029341b54321e97343bfaec205f5bc54ff3dc701dce3e14b61aab34be77
4
+ data.tar.gz: 0bf3d6ec35a4902fe4b70036287e65b146bfa541b2e6c0689e34180c663decf1
5
5
  SHA512:
6
- metadata.gz: 6c67616be142641fc0f45b694d8d52fa563f84e98181f9389923f3c1249d6b68700b53fd2e301c731cb31dcd50537c023e0f736592a75135bb4bd6f9fec80baa
7
- data.tar.gz: 4e605e1fb22679183778da14af2a4745991250f490839abcd606b510cc28722ab1fc4a0fa2a62c78de5d96cb7b9915a15c919e3a4e3b2aa2120b1e8f8a858c27
6
+ metadata.gz: 5e90264d1c835e0fab6a9c59346deb9833799e9d0366a9be770293a85e0a5f65cd86503c17adc684652374b9b78c31539f24cd6bf92d55096e446ad11a28657b
7
+ data.tar.gz: d3717f71919f049cb49bc0ad797d6a9d9d33a7c2214df50fcb3cd295195038f75422d21c019b0e2f52b1c9a1ab256edcfac355aefd17b9203a6b7a6be39d5f18
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.33.0
2
+ current_version = 4.34.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.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.33'
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
@@ -1,3 +1,3 @@
1
1
  module Recurly
2
- VERSION = "4.33.0"
2
+ VERSION = "4.34.0"
3
3
  end
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.33.0
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-13 00:00:00.000000000 Z
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.33.0
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: