recurly 4.59.0 → 4.60.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: eba1e494499b41ba8c1913b09f627369318b5daa55e5923faf82cfbbde4d0f28
4
+ data.tar.gz: da464a775040b1d5ea33b66feb1698f5aa68d18fc075f4218e2cf3d1b739d05c
5
5
  SHA512:
6
- metadata.gz: e3e62c1f06d5925e4ff0f729aa7c81e7753f221dacedc064da3fd18743219cd88b04d5550b64942355aa7c3bbe8309d163acfc78bca40638efc0ce1c9fc2c222
7
- data.tar.gz: 58aba19b4411cc33dd7d556dc03413c73df4440424c7d3fcbe1b9cb2c0f8f9f529be371d9995873b6daf8bfa081188c31999f3c9cc2cf2b739684a2afd9fbafd
6
+ metadata.gz: f25c9d51a4dbc24b1a1dc838737e9252ca85ef9193333d6d988cbeffa7421d5a6154a6dd5558c36b1d462f6c9064403a6ba04be6507590cebbf6e2019c63e96a
7
+ data.tar.gz: c9884672aa89ee2ba372f9397e829aca30c9308632a20211a6836cdf4f846160fca252a7f32e23c860c113290c94cfc9cfa41bc85326893cb98cf9d7bc48b0c2
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.59.0
2
+ current_version = 4.60.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.60.0](https://github.com/recurly/recurly-client-ruby/tree/4.60.0) (2025-03-14)
4
+
5
+ [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.59.0...4.60.0)
6
+
7
+
8
+ **Merged Pull Requests**
9
+
10
+ - Generated Latest Changes for v2021-02-25 [#923](https://github.com/recurly/recurly-client-ruby/pull/923) ([recurly-integrations](https://github.com/recurly-integrations))
11
+
12
+
13
+
3
14
  ## [4.59.0](https://github.com/recurly/recurly-client-ruby/tree/4.59.0) (2025-02-26)
4
15
 
5
16
  [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.60'
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.
@@ -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.60.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.60.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-14 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.60.0
381
382
  post_install_message:
382
383
  rdoc_options: []
383
384
  require_paths: