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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 84747761025eb90c7de66e7da62fe6cce9fd058e278adf1d6038eb6fc492b5f3
4
- data.tar.gz: 441ffabcdcf6ae892d45d5074a44b56661a583701e543226bf8c2a70ccfce467
3
+ metadata.gz: 83a909b2f7399097843487765258bb382ccabe06c2f632d8d56a939451e8768a
4
+ data.tar.gz: 95526afe049b9a83bb167da58b41c04f818fb93936343125623cd1464814fb1c
5
5
  SHA512:
6
- metadata.gz: 4910840cf085df49e2209b71dfd623296a824dff3069711eccd8b2ccb50576d821b637fa4d6fd50341361a92d5d3d9a03af6d914b2dcd33266ccea38cb19a9cd
7
- data.tar.gz: bb57c2e12770d33591b37589d89f26bf75f56c89ee005f28a4c05bb5535d0a48b7d6b767c99fb2929a2b696ed9b14a5343177f3d08642f92d4fd37b8b8d9c240
6
+ metadata.gz: 75460a84c7a5fdc3b017a29e00595e0509a9b2e072d25dea98c087340fe0e7d387346f3820154fdd8060d683866dc51e6f2b82db0ddaa0637582ae0515df490e
7
+ data.tar.gz: 508658c6f25027f7af50bae75683f23160a991aad6610179f50000d610754ee54ebccfbca194e6f9d7b206413b7b19ba3429104e9495b10f4f074628385bd59d
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.31.0
2
+ current_version = 4.32.0
3
3
  parse = (?P<major>\d+)
4
4
  \.(?P<minor>\d+)
5
5
  \.(?P<patch>\d+)
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.31'
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 [Float] Unit Amount
43
- define_attribute :unit_amount, Float
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 [Float] Total
51
- define_attribute :total, Float
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.
@@ -1,3 +1,3 @@
1
1
  module Recurly
2
- VERSION = "4.31.0"
2
+ VERSION = "4.32.0"
3
3
  end
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: number
23093
- format: float
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: number
23154
- format: float
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.31.0
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-03-29 00:00:00.000000000 Z
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.31.0
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: