recurly 4.77.0 → 4.78.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: 39f517bfc1451d42ff2d1b8b7bcf5b2f0c6deff2ddeaf36a28e60b433b7bf166
4
- data.tar.gz: 9fc9d18297e06fba3d530cd421e684ed601695beeb1bfb3865f9e9daf5b2f9ae
3
+ metadata.gz: ebb084eec724666d1fb3bce7fcfa04e68e21a85ef1f50dc766eadf2f1da05408
4
+ data.tar.gz: e25e0b0796d550d456ab9de648b96a6e58737c0b5e027d43f34df542e7b39b9d
5
5
  SHA512:
6
- metadata.gz: 193603f1ee150a01897ea7d40956874e4e0a208e6e6363a1cd5a89fdedb67e0f2f54a441dbdaaefe4b8444888cfaf50c1e7fa22be2c01a02931aade952d402c0
7
- data.tar.gz: ac3eb127e95472768420ba6bf751ab8bdc37b770be64475e7f476f5ac725ca72a57d6cb46973286e1f6e0f76cea95533254248d10d937d0bfcb5603f77087f7f
6
+ metadata.gz: 5bb6459cfdcfe9432484408bbf113826cfbac8fbbbcc2c8ce8cc895a48a3801f9dfb98473f23b54d21a068b7e7de124b7e2e9f54451c6ca95ea673dd442667c6
7
+ data.tar.gz: c142fd5178d849d3c032b84be3415da0af44364791429e92a978fb23b1020e9987813ee5ba7337af18ddd4137ad02faa5c7b4cbdb3dff5bafeecf7b0301aae99
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.77.0
2
+ current_version = 4.78.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.78.0](https://github.com/recurly/recurly-client-ruby/tree/4.78.0) (2026-06-16)
4
+
5
+ [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.77.0...4.78.0)
6
+
7
+
8
+ **Merged Pull Requests**
9
+
10
+ - Generated Latest Changes for v2021-02-25 [#959](https://github.com/recurly/recurly-client-ruby/pull/959) ([recurly-integrations](https://github.com/recurly-integrations))
11
+
12
+
13
+
3
14
  ## [4.77.0](https://github.com/recurly/recurly-client-ruby/tree/4.77.0) (2026-06-10)
4
15
 
5
16
  [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.76.0...4.77.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.77'
8
+ gem 'recurly', '~> 4.78'
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.
@@ -166,6 +166,10 @@ module Recurly
166
166
  # @return [Integer] If `auto_renew=true`, when a term completes, `total_billing_cycles` takes this value as the length of subsequent terms. Defaults to the plan's `total_billing_cycles`.
167
167
  define_attribute :renewal_billing_cycles, Integer
168
168
 
169
+ # @!attribute resume_at
170
+ # @return [DateTime] The date the subscription billing resumes following a pause. Null unless the subscription is paused or scheduled to be paused.
171
+ define_attribute :resume_at, DateTime
172
+
169
173
  # @!attribute revenue_schedule_type
170
174
  # @return [String] Revenue schedule type
171
175
  define_attribute :revenue_schedule_type, String
@@ -58,6 +58,10 @@ module Recurly
58
58
  # @return [String] When processed, result from checking the CVV/CVC value on the transaction.
59
59
  define_attribute :cvv_check, String
60
60
 
61
+ # @!attribute description
62
+ # @return [String] The description that gets sent to the gateway.
63
+ define_attribute :description, String
64
+
61
65
  # @!attribute fraud_info
62
66
  # @return [TransactionFraudInfo] Fraud information
63
67
  define_attribute :fraud_info, :TransactionFraudInfo
@@ -1,3 +1,3 @@
1
1
  module Recurly
2
- VERSION = "4.77.0"
2
+ VERSION = "4.78.0"
3
3
  end
data/openapi/api.yaml CHANGED
@@ -193,20 +193,20 @@ x-tagGroups:
193
193
  - account_acquisition
194
194
  - billing_info
195
195
  - billing_infos
196
+ - coupon_redemption
196
197
  - subscription
197
198
  - subscription_change
198
- - shipping_address
199
- - purchase
200
199
  - usage
201
- - automated_exports
202
- - gift_cards
200
+ - shipping_address
203
201
  - name: Invoices and Payments
204
202
  tags:
203
+ - purchase
205
204
  - invoice
206
205
  - line_item
207
206
  - credit_payment
208
207
  - transaction
209
208
  - revenue_recovery
209
+ - gift_cards
210
210
  - name: Products and Promotions
211
211
  tags:
212
212
  - item
@@ -214,7 +214,6 @@ x-tagGroups:
214
214
  - add-on
215
215
  - measured_unit
216
216
  - coupon
217
- - coupon_redemption
218
217
  - unique_coupon_code
219
218
  - price_segment
220
219
  - name: Configuration
@@ -224,6 +223,7 @@ x-tagGroups:
224
223
  - shipping_method
225
224
  - dunning_campaigns
226
225
  - business_entities
226
+ - automated_exports
227
227
  - general_ledger_account
228
228
  - performance_obligations
229
229
  - name: App Management
@@ -23711,6 +23711,12 @@ components:
23711
23711
  title: Remaining pause cycles
23712
23712
  description: Null unless subscription is paused or will pause at the end
23713
23713
  of the current billing period.
23714
+ resume_at:
23715
+ type: string
23716
+ format: date-time
23717
+ title: Resume at
23718
+ description: The date the subscription billing resumes following a pause.
23719
+ Null unless the subscription is paused or scheduled to be paused.
23714
23720
  currency:
23715
23721
  type: string
23716
23722
  title: Currency
@@ -25192,6 +25198,10 @@ components:
25192
25198
  title: Currency
25193
25199
  description: 3-letter ISO 4217 currency code.
25194
25200
  maxLength: 3
25201
+ description:
25202
+ type: string
25203
+ title: Description
25204
+ description: The description that gets sent to the gateway.
25195
25205
  amount:
25196
25206
  type: number
25197
25207
  format: float
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.77.0
4
+ version: 4.78.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recurly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-10 00:00:00.000000000 Z
11
+ date: 2026-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -398,7 +398,7 @@ metadata:
398
398
  changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
399
399
  documentation_uri: https://recurly.github.io/recurly-client-ruby/
400
400
  homepage_uri: https://github.com/recurly/recurly-client-ruby
401
- source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.77.0
401
+ source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.78.0
402
402
  post_install_message:
403
403
  rdoc_options: []
404
404
  require_paths: