recurly 4.51.0 → 4.52.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e01ae5745985762bbcaec95acc2017a36a6c83e90fca9a3ba16e95af80fc2cd4
4
- data.tar.gz: 4732478ca9efe1f41eadc5df91e5e86a26b4e6eb5debd462b7b1182a00bcd43d
3
+ metadata.gz: b8ed94722c42b2c452469cb19aac1d0d53dbe7c8eacb966ae787d8f9e2993c57
4
+ data.tar.gz: 91b26c40023195af59b78f62dc23543bd5dd6d694866cebb09bf37d24e76f0c6
5
5
  SHA512:
6
- metadata.gz: a92f69c06f531741e9e0276a8533315c0a058a9340a90d0d07baa4c2f5b6bc8e12606c58429849afccdcd63d6ec29e76e6ed0743f0530b53183e4113d22072b1
7
- data.tar.gz: 1971bb23e736482d5c77b948a54126ac8ca5dbc0fb6fbc31cd54f50b302a99b5a538ac1323bc169f572fcd0cec806a797204d7931602fce4c1f5dceaa192b10a
6
+ metadata.gz: 0f5cb994e57d24b6f0e13c92f7127e67e5758b9ca5dafe6b9ef8d645f350c9325ed73b3431700cd5f897e26ca38236b9267de3b847a7888595b084e19f69c69f
7
+ data.tar.gz: 3bc0b86765f658d56bb3582254acc65dcad2bcaf4d325af83e17646cd07d6091ef3bcd9a331a81371da6198f9e2f0bad22a288b384382f6b10df86795445d2e5
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.51.0
2
+ current_version = 4.52.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.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.51'
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 past_due.
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
@@ -1,3 +1,3 @@
1
1
  module Recurly
2
- VERSION = "4.51.0"
2
+ VERSION = "4.52.0"
3
3
  end
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, or
24313
- past_due.
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.51.0
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-24 00:00:00.000000000 Z
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.51.0
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: