recurly 4.62.0 → 4.63.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/requests/subscription_create.rb +1 -1
- data/lib/recurly/requests/subscription_purchase.rb +1 -1
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +5 -2
- 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: bb49608ae75d7232218279a89c1f8c054696b2704054b7f0d5606338724ed327
|
4
|
+
data.tar.gz: b2b433901e9f01228213da877bd363b2314b126c14d41b937d6facbf675d0353
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6394559860aa49980037f205757265106c52cff92a756e75935f5a6432f0c945357428095bf90b10a573c2bf1362060df2ab778df6bb62a9bb6a5667bc7c7aac
|
7
|
+
data.tar.gz: a2d1e9375579ba500a0d68beb4499b9471a5da9acdc325f2d417f88bc4e49cfed900a00f61bf7854fb007f05746a9dfe0703b36228767bfaebe3323e119bcd17
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [4.63.0](https://github.com/recurly/recurly-client-ruby/tree/4.63.0) (2025-04-16)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.62.0...4.63.0)
|
6
|
+
|
7
|
+
|
8
|
+
**Merged Pull Requests**
|
9
|
+
|
10
|
+
- Generated Latest Changes for v2021-02-25 [#927](https://github.com/recurly/recurly-client-ruby/pull/927) ([recurly-integrations](https://github.com/recurly-integrations))
|
11
|
+
|
12
|
+
|
13
|
+
|
3
14
|
## [4.62.0](https://github.com/recurly/recurly-client-ruby/tree/4.62.0) (2025-04-10)
|
4
15
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.61.0...4.62.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.63'
|
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.
|
@@ -111,7 +111,7 @@ module Recurly
|
|
111
111
|
define_attribute :shipping, :SubscriptionShippingCreate
|
112
112
|
|
113
113
|
# @!attribute starts_at
|
114
|
-
# @return [DateTime] If set, the subscription will begin on this specified date. The subscription will apply the setup fee and trial period, unless the plan has no trial.
|
114
|
+
# @return [DateTime] If set, the subscription will begin on this specified date. The subscription will apply the setup fee and trial period, unless the plan has no trial. Omit this field if the subscription should be started immediately.
|
115
115
|
define_attribute :starts_at, DateTime
|
116
116
|
|
117
117
|
# @!attribute tax_inclusive
|
@@ -55,7 +55,7 @@ module Recurly
|
|
55
55
|
define_attribute :shipping, :SubscriptionShippingPurchase
|
56
56
|
|
57
57
|
# @!attribute starts_at
|
58
|
-
# @return [DateTime] If set, the subscription will begin on this specified date. The subscription will apply the setup fee and trial period, unless the plan has no trial.
|
58
|
+
# @return [DateTime] If set, the subscription will begin on this specified date. The subscription will apply the setup fee and trial period, unless the plan has no trial. Omit this field if the subscription should be started immediately.
|
59
59
|
define_attribute :starts_at, DateTime
|
60
60
|
|
61
61
|
# @!attribute tax_inclusive
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
@@ -23728,7 +23728,8 @@ components:
|
|
23728
23728
|
title: Start date
|
23729
23729
|
description: If set, the subscription will begin on this specified date.
|
23730
23730
|
The subscription will apply the setup fee and trial period, unless the
|
23731
|
-
plan has no trial.
|
23731
|
+
plan has no trial. Omit this field if the subscription should be started
|
23732
|
+
immediately.
|
23732
23733
|
next_bill_date:
|
23733
23734
|
type: string
|
23734
23735
|
format: date-time
|
@@ -23901,7 +23902,8 @@ components:
|
|
23901
23902
|
title: Start date
|
23902
23903
|
description: If set, the subscription will begin on this specified date.
|
23903
23904
|
The subscription will apply the setup fee and trial period, unless the
|
23904
|
-
plan has no trial.
|
23905
|
+
plan has no trial. Omit this field if the subscription should be started
|
23906
|
+
immediately.
|
23905
23907
|
next_bill_date:
|
23906
23908
|
type: string
|
23907
23909
|
format: date-time
|
@@ -27060,6 +27062,7 @@ components:
|
|
27060
27062
|
- braintree_v_zero
|
27061
27063
|
- boleto
|
27062
27064
|
- cash_app
|
27065
|
+
- upi_autopay
|
27063
27066
|
CardTypeEnum:
|
27064
27067
|
type: string
|
27065
27068
|
enum:
|
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.63.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-04-
|
11
|
+
date: 2025-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: base64
|
@@ -381,7 +381,7 @@ metadata:
|
|
381
381
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
382
382
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
383
383
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
384
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
384
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.63.0
|
385
385
|
post_install_message:
|
386
386
|
rdoc_options: []
|
387
387
|
require_paths:
|