recurly 4.59.0 → 4.61.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: aa01a46479316edc7d1659eee1bb644658ac1b98b226a828f700f4e4604300b8
4
- data.tar.gz: 9b940bfaaa7825fde720224a96206718612fd770edff7ce9b4a98a4b79ce3307
3
+ metadata.gz: 8a8df861361535389368703276de1922da24d7dc17c552b2edc543df637ef4c4
4
+ data.tar.gz: ce07391eb63826ee943db984fa24c39908781ac9d4211efdcfff9a49b2788d6a
5
5
  SHA512:
6
- metadata.gz: e3e62c1f06d5925e4ff0f729aa7c81e7753f221dacedc064da3fd18743219cd88b04d5550b64942355aa7c3bbe8309d163acfc78bca40638efc0ce1c9fc2c222
7
- data.tar.gz: 58aba19b4411cc33dd7d556dc03413c73df4440424c7d3fcbe1b9cb2c0f8f9f529be371d9995873b6daf8bfa081188c31999f3c9cc2cf2b739684a2afd9fbafd
6
+ metadata.gz: 6685a1d2f404014e8adce298cf3b600a9ff8c32b7c083a7eb2c487fec896be34383d6747ab7c9acb8cb27ad25da932e8d1ffb58529f7f1cc68e533ab4bd1294b
7
+ data.tar.gz: 357ed12ca060869d6830b4059f2c28472f3255a16f2fbc1ced135cfcb7608ef29e5e0bcc7523a61919a7d6c19975af0bd489e0667b0679a4b6517af1cfcc1e82
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.59.0
2
+ current_version = 4.61.0
3
3
  parse = (?P<major>\d+)
4
4
  \.(?P<minor>\d+)
5
5
  \.(?P<patch>\d+)
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.61.0](https://github.com/recurly/recurly-client-ruby/tree/4.61.0) (2025-03-15)
4
+
5
+ [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.60.0...4.61.0)
6
+
7
+
8
+ **Merged Pull Requests**
9
+
10
+ - Add an option to override keep_alive_timeout [#922](https://github.com/recurly/recurly-client-ruby/pull/922) ([taltcher](https://github.com/taltcher))
11
+
12
+
13
+
14
+ ## [4.60.0](https://github.com/recurly/recurly-client-ruby/tree/4.60.0) (2025-03-14)
15
+
16
+ [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.59.0...4.60.0)
17
+
18
+
19
+ **Merged Pull Requests**
20
+
21
+ - Generated Latest Changes for v2021-02-25 [#923](https://github.com/recurly/recurly-client-ruby/pull/923) ([recurly-integrations](https://github.com/recurly-integrations))
22
+
23
+
24
+
3
25
  ## [4.59.0](https://github.com/recurly/recurly-client-ruby/tree/4.59.0) (2025-02-26)
4
26
 
5
27
  [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.58.0...4.59.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.59'
8
+ gem 'recurly', '~> 4.61'
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.
@@ -61,7 +61,7 @@ module Recurly
61
61
  # @param ca_file [String] The CA bundle to use when connecting to the API. Defaults to "data/ca-certificates.crt"
62
62
  # @param api_key [String] The private API key
63
63
  # @param logger [Logger] A logger to use. Defaults to creating a new STDOUT logger with level WARN.
64
- def initialize(region: REGION, base_url: API_HOSTS[:us], ca_file: CA_FILE, api_key:, logger: nil)
64
+ def initialize(region: REGION, base_url: API_HOSTS[:us], ca_file: CA_FILE, api_key:, logger: nil, keep_alive_timeout: 600)
65
65
  raise ArgumentError, "'api_key' must be set to a non-nil value" if api_key.nil?
66
66
 
67
67
  raise ArgumentError, "Invalid region type. Expected one of: #{API_HOSTS.keys.join(", ")}" if !API_HOSTS.key?(region)
@@ -69,7 +69,7 @@ module Recurly
69
69
  base_url = API_HOSTS[region] if base_url == API_HOSTS[:us] && API_HOSTS.key?(region)
70
70
 
71
71
  set_api_key(api_key)
72
- set_connection_options(base_url, ca_file)
72
+ set_connection_options(base_url, ca_file, keep_alive_timeout)
73
73
 
74
74
  if logger.nil?
75
75
  @logger = Logger.new(STDOUT).tap do |l|
@@ -172,7 +172,7 @@ module Recurly
172
172
  end
173
173
 
174
174
  def run_request(request, options = {})
175
- self.class.connection_pool.with_connection(uri: @base_uri, ca_file: @ca_file) do |http|
175
+ self.class.connection_pool.with_connection(uri: @base_uri, keep_alive_timeout: @keep_alive_timeout, ca_file: @ca_file) do |http|
176
176
  set_http_options(http, options)
177
177
 
178
178
  retries = 0
@@ -353,9 +353,10 @@ module Recurly
353
353
  @api_key = api_key.to_s
354
354
  end
355
355
 
356
- def set_connection_options(base_url, ca_file)
356
+ def set_connection_options(base_url, ca_file, keep_alive_timeout)
357
357
  @base_uri = URI.parse(base_url)
358
358
  @ca_file = ca_file
359
+ @keep_alive_timeout = keep_alive_timeout
359
360
  end
360
361
 
361
362
  def build_url(path, options)
@@ -9,14 +9,14 @@ module Recurly
9
9
  @pool = Hash.new { |h, k| h[k] = [] }
10
10
  end
11
11
 
12
- def with_connection(uri:, ca_file: nil)
12
+ def with_connection(uri:, keep_alive_timeout:, ca_file: nil)
13
13
  http = nil
14
14
  @mutex.synchronize do
15
15
  http = @pool[[uri.host, uri.port]].pop
16
16
  end
17
17
 
18
18
  # create connection if the pool was empty
19
- http ||= init_http_connection(uri, ca_file)
19
+ http ||= init_http_connection(uri, keep_alive_timeout, ca_file)
20
20
 
21
21
  response = yield http
22
22
 
@@ -29,12 +29,12 @@ module Recurly
29
29
  response
30
30
  end
31
31
 
32
- def init_http_connection(uri, ca_file)
32
+ def init_http_connection(uri, keep_alive_timeout, ca_file)
33
33
  http = Net::HTTP.new(uri.host, uri.port)
34
34
  http.use_ssl = uri.scheme == "https"
35
35
  http.ca_file = ca_file
36
36
  http.verify_mode = OpenSSL::SSL::VERIFY_PEER
37
- http.keep_alive_timeout = 600
37
+ http.keep_alive_timeout = keep_alive_timeout
38
38
 
39
39
  http
40
40
  end
@@ -114,6 +114,10 @@ module Recurly
114
114
  # @return [String] On refund invoices, this value will exist and show the invoice ID of the purchase invoice the refund was created from. This field is only populated for sites without the [Only Bill What Changed](https://docs.recurly.com/docs/only-bill-what-changed) feature enabled. Sites with Only Bill What Changed enabled should use the [related_invoices endpoint](https://recurly.com/developers/api/v2021-02-25/index.html#operation/list_related_invoices) to see purchase invoices refunded by this invoice.
115
115
  define_attribute :previous_invoice_id, String
116
116
 
117
+ # @!attribute reference_only_currency_conversion
118
+ # @return [ReferenceOnlyCurrencyConversion] Reference Only Currency Conversion
119
+ define_attribute :reference_only_currency_conversion, :ReferenceOnlyCurrencyConversion
120
+
117
121
  # @!attribute refundable_amount
118
122
  # @return [Float] The refundable amount on a charge invoice. It will be null for all other invoices.
119
123
  define_attribute :refundable_amount, Float
@@ -0,0 +1,22 @@
1
+ # This file is automatically created by Recurly's OpenAPI generation process
2
+ # and thus any edits you make by hand will be lost. If you wish to make a
3
+ # change to this file, please create a Github issue explaining the changes you
4
+ # need and we will usher them to the appropriate places.
5
+ module Recurly
6
+ module Resources
7
+ class ReferenceOnlyCurrencyConversion < Resource
8
+
9
+ # @!attribute currency
10
+ # @return [String] 3-letter ISO 4217 currency code.
11
+ define_attribute :currency, String
12
+
13
+ # @!attribute subtotal_in_cents
14
+ # @return [Float] The subtotal converted to the currency.
15
+ define_attribute :subtotal_in_cents, Float
16
+
17
+ # @!attribute tax_in_cents
18
+ # @return [Float] The tax converted to the currency.
19
+ define_attribute :tax_in_cents, Float
20
+ end
21
+ end
22
+ end
@@ -1,3 +1,3 @@
1
1
  module Recurly
2
- VERSION = "4.59.0"
2
+ VERSION = "4.61.0"
3
3
  end
data/openapi/api.yaml CHANGED
@@ -20276,6 +20276,8 @@ components:
20276
20276
  format: float
20277
20277
  title: Tax
20278
20278
  description: The total tax on this invoice.
20279
+ reference_only_currency_conversion:
20280
+ "$ref": "#/components/schemas/ReferenceOnlyCurrencyConversion"
20279
20281
  total:
20280
20282
  type: number
20281
20283
  format: float
@@ -22289,6 +22291,25 @@ components:
22289
22291
  title: Updated at
22290
22292
  format: date-time
22291
22293
  readOnly: true
22294
+ ReferenceOnlyCurrencyConversion:
22295
+ type: object
22296
+ title: Reference Only Currency Conversion
22297
+ properties:
22298
+ currency:
22299
+ type: string
22300
+ title: Currency
22301
+ description: 3-letter ISO 4217 currency code.
22302
+ maxLength: 3
22303
+ subtotal_in_cents:
22304
+ type: number
22305
+ format: float
22306
+ title: Subtotal In Cents
22307
+ description: The subtotal converted to the currency.
22308
+ tax_in_cents:
22309
+ type: number
22310
+ format: float
22311
+ title: Tax In Cents
22312
+ description: The tax converted to the currency.
22292
22313
  ShippingAddressCreate:
22293
22314
  type: object
22294
22315
  properties:
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.59.0
4
+ version: 4.61.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recurly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-26 00:00:00.000000000 Z
11
+ date: 2025-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -327,6 +327,7 @@ files:
327
327
  - lib/recurly/resources/plan_ramp_interval.rb
328
328
  - lib/recurly/resources/plan_ramp_pricing.rb
329
329
  - lib/recurly/resources/pricing.rb
330
+ - lib/recurly/resources/reference_only_currency_conversion.rb
330
331
  - lib/recurly/resources/settings.rb
331
332
  - lib/recurly/resources/shipping_address.rb
332
333
  - lib/recurly/resources/shipping_method.rb
@@ -377,7 +378,7 @@ metadata:
377
378
  changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
378
379
  documentation_uri: https://recurly.github.io/recurly-client-ruby/
379
380
  homepage_uri: https://github.com/recurly/recurly-client-ruby
380
- source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.59.0
381
+ source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.61.0
381
382
  post_install_message:
382
383
  rdoc_options: []
383
384
  require_paths: