recurly 4.51.0 → 4.52.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/requests/invoice_update.rb +4 -0
- data/lib/recurly/resources/external_subscription.rb +1 -1
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +8 -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: b8ed94722c42b2c452469cb19aac1d0d53dbe7c8eacb966ae787d8f9e2993c57
|
4
|
+
data.tar.gz: 91b26c40023195af59b78f62dc23543bd5dd6d694866cebb09bf37d24e76f0c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f5cb994e57d24b6f0e13c92f7127e67e5758b9ca5dafe6b9ef8d645f350c9325ed73b3431700cd5f897e26ca38236b9267de3b847a7888595b084e19f69c69f
|
7
|
+
data.tar.gz: 3bc0b86765f658d56bb3582254acc65dcad2bcaf4d325af83e17646cd07d6091ef3bcd9a331a81371da6198f9e2f0bad22a288b384382f6b10df86795445d2e5
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [4.52.0](https://github.com/recurly/recurly-client-ruby/tree/4.52.0) (2024-05-31)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.51.0...4.52.0)
|
6
|
+
|
7
|
+
|
8
|
+
**Merged Pull Requests**
|
9
|
+
|
10
|
+
- Generated Latest Changes for v2021-02-25 [#904](https://github.com/recurly/recurly-client-ruby/pull/904) ([recurly-integrations](https://github.com/recurly-integrations))
|
11
|
+
|
12
|
+
|
13
|
+
|
3
14
|
## [4.51.0](https://github.com/recurly/recurly-client-ruby/tree/4.51.0) (2024-05-24)
|
4
15
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.50.0...4.51.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.52'
|
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.
|
@@ -14,6 +14,10 @@ module Recurly
|
|
14
14
|
# @return [String] Customer notes are an optional note field.
|
15
15
|
define_attribute :customer_notes, String
|
16
16
|
|
17
|
+
# @!attribute gateway_code
|
18
|
+
# @return [String] An alphanumeric code shown per gateway on your site's payment gateways page. Set this code to ensure that a given invoice targets a given gateway.
|
19
|
+
define_attribute :gateway_code, String
|
20
|
+
|
17
21
|
# @!attribute net_terms
|
18
22
|
# @return [Integer] Integer representing the number of days after an invoice's creation that the invoice will become past due. Changing Net terms changes due_on, and the invoice could move between past due and pending.
|
19
23
|
define_attribute :net_terms, Integer
|
@@ -63,7 +63,7 @@ module Recurly
|
|
63
63
|
define_attribute :quantity, Integer
|
64
64
|
|
65
65
|
# @!attribute state
|
66
|
-
# @return [String] External subscriptions can be active, canceled, expired, or
|
66
|
+
# @return [String] External subscriptions can be active, canceled, expired, past_due, voided, revoked, or paused.
|
67
67
|
define_attribute :state, String
|
68
68
|
|
69
69
|
# @!attribute test
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
@@ -19877,6 +19877,11 @@ components:
|
|
19877
19877
|
maximum: 999
|
19878
19878
|
address:
|
19879
19879
|
"$ref": "#/components/schemas/InvoiceAddress"
|
19880
|
+
gateway_code:
|
19881
|
+
type: string
|
19882
|
+
description: An alphanumeric code shown per gateway on your site's payment
|
19883
|
+
gateways page. Set this code to ensure that a given invoice targets a
|
19884
|
+
given gateway.
|
19880
19885
|
InvoiceMini:
|
19881
19886
|
type: object
|
19882
19887
|
title: Invoice mini details
|
@@ -24309,8 +24314,8 @@ components:
|
|
24309
24314
|
minimum: 0
|
24310
24315
|
state:
|
24311
24316
|
type: string
|
24312
|
-
description: External subscriptions can be active, canceled, expired,
|
24313
|
-
|
24317
|
+
description: External subscriptions can be active, canceled, expired, past_due,
|
24318
|
+
voided, revoked, or paused.
|
24314
24319
|
default: active
|
24315
24320
|
activated_at:
|
24316
24321
|
type: string
|
@@ -25626,6 +25631,7 @@ components:
|
|
25626
25631
|
- wire_transfer
|
25627
25632
|
- braintree_v_zero
|
25628
25633
|
- boleto
|
25634
|
+
- cash_app
|
25629
25635
|
CardTypeEnum:
|
25630
25636
|
type: string
|
25631
25637
|
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.52.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Recurly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -351,7 +351,7 @@ metadata:
|
|
351
351
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
352
352
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
353
353
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
354
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
354
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.52.0
|
355
355
|
post_install_message:
|
356
356
|
rdoc_options: []
|
357
357
|
require_paths:
|