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 +4 -4
- data/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +11 -0
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/resources/subscription.rb +4 -0
- data/lib/recurly/resources/transaction.rb +4 -0
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +15 -5
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebb084eec724666d1fb3bce7fcfa04e68e21a85ef1f50dc766eadf2f1da05408
|
|
4
|
+
data.tar.gz: e25e0b0796d550d456ab9de648b96a6e58737c0b5e027d43f34df542e7b39b9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5bb6459cfdcfe9432484408bbf113826cfbac8fbbbcc2c8ce8cc895a48a3801f9dfb98473f23b54d21a068b7e7de124b7e2e9f54451c6ca95ea673dd442667c6
|
|
7
|
+
data.tar.gz: c142fd5178d849d3c032b84be3415da0af44364791429e92a978fb23b1020e9987813ee5ba7337af18ddd4137ad02faa5c7b4cbdb3dff5bafeecf7b0301aae99
|
data/.bumpversion.cfg
CHANGED
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.
|
|
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
|
data/lib/recurly/version.rb
CHANGED
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
|
-
-
|
|
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.
|
|
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-
|
|
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.
|
|
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:
|