recurly 4.3.0 → 4.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +11 -0
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/resources/invoice.rb +1 -1
- data/lib/recurly/resources/subscription_change.rb +4 -0
- data/lib/recurly/resources/subscription_change_billing_info.rb +14 -0
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +14 -1
- 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: 78ae5aced00577f6e7c354c710b0624e439ac0cc036f28248ea3f3d4e648fe9f
|
4
|
+
data.tar.gz: 82616234dcb6b27a02ae189cfd114e0efcbd568f23935c1c3fa9a2a4485616f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d19bd177df130213c78cc8789fbe235ac836140eceaea7e62e4d4511ab99206f948e91ce4c60de0d133a959a301ce1428cdc4aea17273dc3dcb9761a9ca31605
|
7
|
+
data.tar.gz: 6ec907716dd89c09698714e2959511e11c461d1414b821e027e2b28616b9bb7b64043fb0d8f301a87971eab5bdea249f0e3b0b987bc83e841ba1e6e706321802
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [4.4.0](https://github.com/recurly/recurly-client-ruby/tree/4.4.0) (2021-06-15)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.3.0...4.4.0)
|
6
|
+
|
7
|
+
|
8
|
+
**Merged Pull Requests**
|
9
|
+
|
10
|
+
- Generated Latest Changes for v2021-02-25 [#705](https://github.com/recurly/recurly-client-ruby/pull/705) ([recurly-integrations](https://github.com/recurly-integrations))
|
11
|
+
|
12
|
+
|
13
|
+
|
3
14
|
## [4.3.0](https://github.com/recurly/recurly-client-ruby/tree/4.3.0) (2021-06-04)
|
4
15
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.2.0...4.3.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.4'
|
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 :subscription_ids, Array, { :item_type => String }
|
112
112
|
|
113
113
|
# @!attribute subtotal
|
114
|
-
# @return [Float] The summation of charges
|
114
|
+
# @return [Float] The summation of charges and credits, before discounts and taxes.
|
115
115
|
define_attribute :subtotal, Float
|
116
116
|
|
117
117
|
# @!attribute tax
|
@@ -18,6 +18,10 @@ module Recurly
|
|
18
18
|
# @return [Array[SubscriptionAddOn]] These add-ons will be used when the subscription renews.
|
19
19
|
define_attribute :add_ons, Array, { :item_type => :SubscriptionAddOn }
|
20
20
|
|
21
|
+
# @!attribute billing_info
|
22
|
+
# @return [SubscriptionChangeBillingInfo] Accept nested attributes for three_d_secure_action_result_token_id
|
23
|
+
define_attribute :billing_info, :SubscriptionChangeBillingInfo
|
24
|
+
|
21
25
|
# @!attribute created_at
|
22
26
|
# @return [DateTime] Created at
|
23
27
|
define_attribute :created_at, DateTime
|
@@ -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 Resources
|
7
|
+
class SubscriptionChangeBillingInfo < Resource
|
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
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
@@ -17229,7 +17229,8 @@ components:
|
|
17229
17229
|
type: number
|
17230
17230
|
format: float
|
17231
17231
|
title: Subtotal
|
17232
|
-
description: The summation of charges
|
17232
|
+
description: The summation of charges and credits, before discounts and
|
17233
|
+
taxes.
|
17233
17234
|
tax:
|
17234
17235
|
type: number
|
17235
17236
|
format: float
|
@@ -19596,6 +19597,18 @@ components:
|
|
19596
19597
|
format: date-time
|
19597
19598
|
title: Deleted at
|
19598
19599
|
readOnly: true
|
19600
|
+
billing_info:
|
19601
|
+
"$ref": "#/components/schemas/SubscriptionChangeBillingInfo"
|
19602
|
+
SubscriptionChangeBillingInfo:
|
19603
|
+
type: object
|
19604
|
+
description: Accept nested attributes for three_d_secure_action_result_token_id
|
19605
|
+
properties:
|
19606
|
+
three_d_secure_action_result_token_id:
|
19607
|
+
type: string
|
19608
|
+
title: 3-D Secure action result token ID
|
19609
|
+
description: A token generated by Recurly.js after completing a 3-D Secure
|
19610
|
+
device fingerprinting or authentication challenge.
|
19611
|
+
maxLength: 22
|
19599
19612
|
SubscriptionChangeCreate:
|
19600
19613
|
type: object
|
19601
19614
|
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.
|
4
|
+
version: 4.4.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-06-
|
11
|
+
date: 2021-06-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -259,6 +259,7 @@ files:
|
|
259
259
|
- lib/recurly/resources/subscription_add_on.rb
|
260
260
|
- lib/recurly/resources/subscription_add_on_tier.rb
|
261
261
|
- lib/recurly/resources/subscription_change.rb
|
262
|
+
- lib/recurly/resources/subscription_change_billing_info.rb
|
262
263
|
- lib/recurly/resources/subscription_shipping.rb
|
263
264
|
- lib/recurly/resources/tax_detail.rb
|
264
265
|
- lib/recurly/resources/tax_info.rb
|
@@ -295,7 +296,7 @@ metadata:
|
|
295
296
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
296
297
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
297
298
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
298
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
299
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.4.0
|
299
300
|
post_install_message:
|
300
301
|
rdoc_options: []
|
301
302
|
require_paths:
|