recurly 4.31.0 → 4.32.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/billing_info_create.rb +4 -0
- data/lib/recurly/resources/external_charge.rb +2 -2
- data/lib/recurly/resources/external_invoice.rb +2 -2
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +7 -4
- 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: 83a909b2f7399097843487765258bb382ccabe06c2f632d8d56a939451e8768a
|
4
|
+
data.tar.gz: 95526afe049b9a83bb167da58b41c04f818fb93936343125623cd1464814fb1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75460a84c7a5fdc3b017a29e00595e0509a9b2e072d25dea98c087340fe0e7d387346f3820154fdd8060d683866dc51e6f2b82db0ddaa0637582ae0515df490e
|
7
|
+
data.tar.gz: 508658c6f25027f7af50bae75683f23160a991aad6610179f50000d610754ee54ebccfbca194e6f9d7b206413b7b19ba3429104e9495b10f4f074628385bd59d
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [4.32.0](https://github.com/recurly/recurly-client-ruby/tree/4.32.0) (2023-04-05)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.31.0...4.32.0)
|
6
|
+
|
7
|
+
|
8
|
+
**Merged Pull Requests**
|
9
|
+
|
10
|
+
- Generated Latest Changes for v2021-02-25 [#833](https://github.com/recurly/recurly-client-ruby/pull/833) ([recurly-integrations](https://github.com/recurly-integrations))
|
11
|
+
|
12
|
+
|
13
|
+
|
3
14
|
## [4.31.0](https://github.com/recurly/recurly-client-ruby/tree/4.31.0) (2023-03-29)
|
4
15
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.30.0...4.31.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.32'
|
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.
|
@@ -34,6 +34,10 @@ module Recurly
|
|
34
34
|
# @return [String] Company name
|
35
35
|
define_attribute :company, String
|
36
36
|
|
37
|
+
# @!attribute currency
|
38
|
+
# @return [String] 3-letter ISO 4217 currency code.
|
39
|
+
define_attribute :currency, String
|
40
|
+
|
37
41
|
# @!attribute cvv
|
38
42
|
# @return [String] *STRONGLY RECOMMENDED*
|
39
43
|
define_attribute :cvv, String
|
@@ -39,8 +39,8 @@ module Recurly
|
|
39
39
|
define_attribute :quantity, Integer
|
40
40
|
|
41
41
|
# @!attribute unit_amount
|
42
|
-
# @return [
|
43
|
-
define_attribute :unit_amount,
|
42
|
+
# @return [String] Unit Amount
|
43
|
+
define_attribute :unit_amount, String
|
44
44
|
|
45
45
|
# @!attribute updated_at
|
46
46
|
# @return [DateTime] When the external charge was updated in Recurly.
|
@@ -47,8 +47,8 @@ module Recurly
|
|
47
47
|
define_attribute :state, String
|
48
48
|
|
49
49
|
# @!attribute total
|
50
|
-
# @return [
|
51
|
-
define_attribute :total,
|
50
|
+
# @return [String] Total
|
51
|
+
define_attribute :total, String
|
52
52
|
|
53
53
|
# @!attribute updated_at
|
54
54
|
# @return [DateTime] When the external invoice was updated in Recurly.
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
@@ -17604,6 +17604,9 @@ components:
|
|
17604
17604
|
title: Security code or CVV
|
17605
17605
|
description: "*STRONGLY RECOMMENDED*"
|
17606
17606
|
maxLength: 4
|
17607
|
+
currency:
|
17608
|
+
type: string
|
17609
|
+
description: 3-letter ISO 4217 currency code.
|
17607
17610
|
vat_number:
|
17608
17611
|
type: string
|
17609
17612
|
title: VAT number
|
@@ -23089,8 +23092,8 @@ components:
|
|
23089
23092
|
state:
|
23090
23093
|
"$ref": "#/components/schemas/ExternalInvoiceStateEnum"
|
23091
23094
|
total:
|
23092
|
-
type:
|
23093
|
-
format:
|
23095
|
+
type: string
|
23096
|
+
format: decimal
|
23094
23097
|
title: Total
|
23095
23098
|
currency:
|
23096
23099
|
type: string
|
@@ -23150,8 +23153,8 @@ components:
|
|
23150
23153
|
title: Currency
|
23151
23154
|
description: 3-letter ISO 4217 currency code.
|
23152
23155
|
unit_amount:
|
23153
|
-
type:
|
23154
|
-
format:
|
23156
|
+
type: string
|
23157
|
+
format: decimal
|
23155
23158
|
title: Unit Amount
|
23156
23159
|
quantity:
|
23157
23160
|
type: integer
|
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.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Recurly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -333,7 +333,7 @@ metadata:
|
|
333
333
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
334
334
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
335
335
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
336
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
336
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.32.0
|
337
337
|
post_install_message:
|
338
338
|
rdoc_options: []
|
339
339
|
require_paths:
|