recurly 4.5.0 → 4.6.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_change_billing_info_create.rb +14 -0
- data/lib/recurly/requests/subscription_change_create.rb +4 -0
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +5 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b355c5446a85f7911c3f383a4c4a5f54ab5153fc2764680c4bd739aba9b3bc9
|
|
4
|
+
data.tar.gz: 1fa2e60c2bf6970b0d6187ae18130c0813551ccec839b9ee4e80e6e4a5e1a77c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a71c147eb618bd49ef0350bf6492f1c8d0d0cafedfd6aebaf6a3ac35b9e13f11fa3ad7133baae2ec11b8e5ac7994e77ea768eceeaf90d2681e6c189e3723ced
|
|
7
|
+
data.tar.gz: 7dba56f22aacea3aad801bd5a5fd3d7f26a72b2d0a5aab7f1418865cbaf8d56da51d6682514a2752989b49b7e3bf04cb06d75aecd00f13fc3880317aee2f1915
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.6.0](https://github.com/recurly/recurly-client-ruby/tree/4.6.0) (2021-08-11)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.5.0...4.6.0)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
**Merged Pull Requests**
|
|
9
|
+
|
|
10
|
+
- Generated Latest Changes for v2021-02-25 [#720](https://github.com/recurly/recurly-client-ruby/pull/720) ([recurly-integrations](https://github.com/recurly-integrations))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
3
14
|
## [4.5.0](https://github.com/recurly/recurly-client-ruby/tree/4.5.0) (2021-08-02)
|
|
4
15
|
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.4.0...4.5.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.6'
|
|
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.
|
|
@@ -0,0 +1,14 @@
|
|
|
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 Requests
|
|
7
|
+
class SubscriptionChangeBillingInfoCreate < Request
|
|
8
|
+
|
|
9
|
+
# @!attribute three_d_secure_action_result_token_id
|
|
10
|
+
# @return [String] A token generated by Recurly.js after completing a 3-D Secure device fingerprinting or authentication challenge.
|
|
11
|
+
define_attribute :three_d_secure_action_result_token_id, String
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
@@ -10,6 +10,10 @@ module Recurly
|
|
|
10
10
|
# @return [Array[SubscriptionAddOnUpdate]] If you provide a value for this field it will replace any existing add-ons. So, when adding or modifying an add-on, you need to include the existing subscription add-ons. Unchanged add-ons can be included just using the subscription add-on''s ID: `{"id": "abc123"}`. If this value is omitted your existing add-ons will be unaffected. To remove all existing add-ons, this value should be an empty array.' If a subscription add-on's `code` is supplied without the `id`, `{"code": "def456"}`, the subscription add-on attributes will be set to the current values of the plan add-on unless provided in the request. - If an `id` is passed, any attributes not passed in will pull from the existing subscription add-on - If a `code` is passed, any attributes not passed in will pull from the current values of the plan add-on - Attributes passed in as part of the request will override either of the above scenarios
|
|
11
11
|
define_attribute :add_ons, Array, { :item_type => :SubscriptionAddOnUpdate }
|
|
12
12
|
|
|
13
|
+
# @!attribute billing_info
|
|
14
|
+
# @return [SubscriptionChangeBillingInfoCreate]
|
|
15
|
+
define_attribute :billing_info, :SubscriptionChangeBillingInfoCreate
|
|
16
|
+
|
|
13
17
|
# @!attribute collection_method
|
|
14
18
|
# @return [String] Collection method
|
|
15
19
|
define_attribute :collection_method, String
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
|
@@ -19618,6 +19618,9 @@ components:
|
|
|
19618
19618
|
description: A token generated by Recurly.js after completing a 3-D Secure
|
|
19619
19619
|
device fingerprinting or authentication challenge.
|
|
19620
19620
|
maxLength: 22
|
|
19621
|
+
SubscriptionChangeBillingInfoCreate:
|
|
19622
|
+
allOf:
|
|
19623
|
+
- "$ref": "#/components/schemas/SubscriptionChangeBillingInfo"
|
|
19621
19624
|
SubscriptionChangeCreate:
|
|
19622
19625
|
type: object
|
|
19623
19626
|
properties:
|
|
@@ -19722,6 +19725,8 @@ components:
|
|
|
19722
19725
|
created by this request. Supports 'moto' value, which is the acronym for
|
|
19723
19726
|
mail order and telephone transactions.
|
|
19724
19727
|
"$ref": "#/components/schemas/GatewayTransactionTypeEnum"
|
|
19728
|
+
billing_info:
|
|
19729
|
+
"$ref": "#/components/schemas/SubscriptionChangeBillingInfoCreate"
|
|
19725
19730
|
SubscriptionChangeShippingCreate:
|
|
19726
19731
|
type: object
|
|
19727
19732
|
title: Shipping details that will be changed on a subscription
|
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.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Recurly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-08-
|
|
11
|
+
date: 2021-08-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -191,6 +191,7 @@ files:
|
|
|
191
191
|
- lib/recurly/requests/subscription_add_on_tier.rb
|
|
192
192
|
- lib/recurly/requests/subscription_add_on_update.rb
|
|
193
193
|
- lib/recurly/requests/subscription_cancel.rb
|
|
194
|
+
- lib/recurly/requests/subscription_change_billing_info_create.rb
|
|
194
195
|
- lib/recurly/requests/subscription_change_create.rb
|
|
195
196
|
- lib/recurly/requests/subscription_change_shipping_create.rb
|
|
196
197
|
- lib/recurly/requests/subscription_create.rb
|
|
@@ -296,7 +297,7 @@ metadata:
|
|
|
296
297
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
|
297
298
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
|
298
299
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
|
299
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
|
300
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.6.0
|
|
300
301
|
post_install_message:
|
|
301
302
|
rdoc_options: []
|
|
302
303
|
require_paths:
|