recurly 4.70.0 → 4.71.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: d950b44d41224b0a017d4944546e8ccca616dea524f4e24771184b630e808a8b
4
- data.tar.gz: 063dd94b1e6ebb8a30e3478cebb510e4399152e89739da24c76d68db6206fe19
3
+ metadata.gz: 42e8b8e3547704b809680999049a5d3e7d66ff9f0859abdec410dee69011441c
4
+ data.tar.gz: 5fe92e11806fa71bf3e154ec695e8dd6b7940330a674a212c613860eda117d31
5
5
  SHA512:
6
- metadata.gz: b27cb89020eefb28136ecd6e5605d2018f2cff9bc95e4611dba23eaf3321fd6be19bca4badd8010a39a94868051df9acb9463d3c66e32fe61f426693c35d2d50
7
- data.tar.gz: 393e3894357f366f73df6c9a8477beb0ce7915ff8fd02f8772f0dcbf76f10ee213d0502c8eb211199338b81c23ab2b4abefbd7591746d86ab3e4b95b9f2cc40f
6
+ metadata.gz: dbea3904c94356bd7b6829d0efec530e50068bd4395627f385a3afdba673dabd96f14617e4e77767cb99d4965ed8776a95c07915538f543eea947d447ae13483
7
+ data.tar.gz: 23131949b9eaa434268afd9e55dec326f9aa53a03822371221337e193ba5047c8f3439fa1f1142039f960c74be2f7b2b61296278ea71ca54f75e03d4ac5bdf05
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.70.0
2
+ current_version = 4.71.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.71.0](https://github.com/recurly/recurly-client-ruby/tree/4.71.0) (2025-11-05)
4
+
5
+ [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.70.0...4.71.0)
6
+
7
+
8
+ **Merged Pull Requests**
9
+
10
+ - Generated Latest Changes for v2021-02-25 [#940](https://github.com/recurly/recurly-client-ruby/pull/940) ([recurly-integrations](https://github.com/recurly-integrations))
11
+
12
+
13
+
3
14
  ## [4.70.0](https://github.com/recurly/recurly-client-ruby/tree/4.70.0) (2025-11-05)
4
15
 
5
16
  [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.69.0...4.70.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.70'
8
+ gem 'recurly', '~> 4.71'
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,15 +7,15 @@ module Recurly
7
7
  class TaxDetail < Resource
8
8
 
9
9
  # @!attribute billable
10
- # @return [Boolean] Whether or not the line item is taxable. Only populated for a single LineItem fetch when Avalara for Communications is enabled.
10
+ # @return [Boolean] Whether or not the line item is taxable. Only populated for a single LineItem fetch when Avalara for Communications or Vertex is enabled.
11
11
  define_attribute :billable, :Boolean
12
12
 
13
13
  # @!attribute level
14
- # @return [String] Provides the jurisdiction level for the Communications tax applied. Example values include city, state and federal. Present only when Avalara for Communications is enabled.
14
+ # @return [String] Provides the jurisdiction level for the Communications tax applied. Example values include city, state and federal. Present only when Avalara for Communications or Vertex is enabled.
15
15
  define_attribute :level, String
16
16
 
17
17
  # @!attribute name
18
- # @return [String] Provides the name of the Communications tax applied. Present only when Avalara for Communications is enabled.
18
+ # @return [String] Provides the name of the Communications tax applied. Present only when Avalara for Communications or Vertex is enabled.
19
19
  define_attribute :name, String
20
20
 
21
21
  # @!attribute rate
@@ -31,7 +31,7 @@ module Recurly
31
31
  define_attribute :tax, Float
32
32
 
33
33
  # @!attribute type
34
- # @return [String] Provides the tax type for the region or type of Comminications tax when Avalara for Communications is enabled. For Canadian Sales Tax, this will be GST, HST, QST or PST.
34
+ # @return [String] Provides the tax type for the region or type of Comminications tax when Avalara for Communications or Vertex is enabled. For Canadian Sales Tax, this will be GST, HST, QST or PST.
35
35
  define_attribute :type, String
36
36
  end
37
37
  end
@@ -15,7 +15,7 @@ module Recurly
15
15
  define_attribute :region, String
16
16
 
17
17
  # @!attribute tax_details
18
- # @return [Array[TaxDetail]] Provides additional tax details for Communications taxes when Avalara for Communications is enabled or Canadian Sales Tax when there is tax applied at both the country and province levels. This will only be populated for the Invoice response when fetching a single invoice and not for the InvoiceList or LineItemList. Only populated for a single LineItem fetch when Avalara for Communications is enabled.
18
+ # @return [Array[TaxDetail]] Provides additional tax details for Communications taxes when Avalara for Communications or Vertex Tax Breakdown is enabled or Canadian Sales Tax. Tax details will only be populated for the Invoice response when fetching a single invoice and not for the InvoiceList or LineItemList. Only populated for a single LineItem fetch when Avalara for Communications is enabled.
19
19
  define_attribute :tax_details, Array, { :item_type => :TaxDetail }
20
20
 
21
21
  # @!attribute type
@@ -1,3 +1,3 @@
1
1
  module Recurly
2
- VERSION = "4.70.0"
2
+ VERSION = "4.71.0"
3
3
  end
data/openapi/api.yaml CHANGED
@@ -24392,11 +24392,11 @@ components:
24392
24392
  tax_details:
24393
24393
  type: array
24394
24394
  description: Provides additional tax details for Communications taxes when
24395
- Avalara for Communications is enabled or Canadian Sales Tax when there
24396
- is tax applied at both the country and province levels. This will only
24397
- be populated for the Invoice response when fetching a single invoice and
24398
- not for the InvoiceList or LineItemList. Only populated for a single LineItem
24399
- fetch when Avalara for Communications is enabled.
24395
+ Avalara for Communications or Vertex Tax Breakdown is enabled or Canadian
24396
+ Sales Tax. Tax details will only be populated for the Invoice response
24397
+ when fetching a single invoice and not for the InvoiceList or LineItemList.
24398
+ Only populated for a single LineItem fetch when Avalara for Communications
24399
+ is enabled.
24400
24400
  items:
24401
24401
  "$ref": "#/components/schemas/TaxDetail"
24402
24402
  TaxDetail:
@@ -24407,8 +24407,8 @@ components:
24407
24407
  type: string
24408
24408
  title: Type
24409
24409
  description: Provides the tax type for the region or type of Comminications
24410
- tax when Avalara for Communications is enabled. For Canadian Sales Tax,
24411
- this will be GST, HST, QST or PST.
24410
+ tax when Avalara for Communications or Vertex is enabled. For Canadian
24411
+ Sales Tax, this will be GST, HST, QST or PST.
24412
24412
  region:
24413
24413
  type: string
24414
24414
  title: Region
@@ -24429,18 +24429,18 @@ components:
24429
24429
  type: string
24430
24430
  title: Name
24431
24431
  description: Provides the name of the Communications tax applied. Present
24432
- only when Avalara for Communications is enabled.
24432
+ only when Avalara for Communications or Vertex is enabled.
24433
24433
  level:
24434
24434
  type: string
24435
24435
  title: Level
24436
24436
  description: Provides the jurisdiction level for the Communications tax
24437
24437
  applied. Example values include city, state and federal. Present only
24438
- when Avalara for Communications is enabled.
24438
+ when Avalara for Communications or Vertex is enabled.
24439
24439
  billable:
24440
24440
  type: boolean
24441
24441
  title: Billable
24442
24442
  description: Whether or not the line item is taxable. Only populated for
24443
- a single LineItem fetch when Avalara for Communications is enabled.
24443
+ a single LineItem fetch when Avalara for Communications or Vertex is enabled.
24444
24444
  Transaction:
24445
24445
  type: object
24446
24446
  properties:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: recurly
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.70.0
4
+ version: 4.71.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recurly
@@ -387,7 +387,7 @@ metadata:
387
387
  changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
388
388
  documentation_uri: https://recurly.github.io/recurly-client-ruby/
389
389
  homepage_uri: https://github.com/recurly/recurly-client-ruby
390
- source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.70.0
390
+ source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.71.0
391
391
  post_install_message:
392
392
  rdoc_options: []
393
393
  require_paths: