recurly 4.72.0 → 4.73.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: 25fa7c5cd1876eaa642a719d75302975e397412c96b366f8b64464cf0df90db9
4
- data.tar.gz: 547b8eb4eb2b7dcea5168318c7b26e1e73e268cc2811800e448556acc370474e
3
+ metadata.gz: 6d67e16b9e2fb16358c1e8fba96f2dfb63e63a0ea5ef57543b83539b57391704
4
+ data.tar.gz: f6ec667d0d8d89698429de03d87bd45f11aded56edce3b8fe6b652e3bd031299
5
5
  SHA512:
6
- metadata.gz: d2930a35d7d93f30c2ab985e2f67b5e426515a114e4e1c4e2665e3ee32610e68ad87bef398b93a13091cd6fac9852e0a28333175cb8347a18fe9dbd8522912e5
7
- data.tar.gz: 072f25b4c994eaffbd7c0017de0e027096f520e3fd29da6fa13c3f3618636269470f9f55398623804a68cad626d9d9dd1c3263c508e93a3fed99d13ac7fe0819
6
+ metadata.gz: bc9e879c1373b37ff7484ec8b75ff8325d28e77251c0bee3dae35942d3eba613f26a3c82187b902e0277d878a45366b704623c53e5e85f2a6bade5d4e664c45d
7
+ data.tar.gz: 93d47f1cbb87eb15007e04e72cf594b68080f4e8c3837f922f56fe2ab3653ca7b3623b522256a50ec4adf082c2ab79c1eb0c0a300d08698d7410f0345defbbd1
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.72.0
2
+ current_version = 4.73.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.73.0](https://github.com/recurly/recurly-client-ruby/tree/4.73.0) (2025-12-12)
4
+
5
+ [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.72.0...4.73.0)
6
+
7
+
8
+ **Merged Pull Requests**
9
+
10
+ - Generated Latest Changes for v2021-02-25 [#946](https://github.com/recurly/recurly-client-ruby/pull/946) ([recurly-integrations](https://github.com/recurly-integrations))
11
+
12
+
13
+
3
14
  ## [4.72.0](https://github.com/recurly/recurly-client-ruby/tree/4.72.0) (2025-12-11)
4
15
 
5
16
  [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.71.0...4.72.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.72'
8
+ gem 'recurly', '~> 4.73'
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.
@@ -42,6 +42,10 @@ module Recurly
42
42
  # @return [String] Optionally supplied string that may be either `net` or `eom` (end-of-month). When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date. When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month.
43
43
  define_attribute :net_terms_type, String
44
44
 
45
+ # @!attribute next_bill_date
46
+ # @return [DateTime] If present, this sets the date the subscription's next billing period will start (`current_period_ends_at`). When combined with proration_settings, proration calculation should occur, only supported when timeframe is now.
47
+ define_attribute :next_bill_date, DateTime
48
+
45
49
  # @!attribute plan_code
46
50
  # @return [String] If you want to change to a new plan, you can provide the plan's code or id. If both are provided the `plan_id` will be used.
47
51
  define_attribute :plan_code, String
@@ -46,6 +46,10 @@ module Recurly
46
46
  # @return [InvoiceCollection] Invoice Collection
47
47
  define_attribute :invoice_collection, :InvoiceCollection
48
48
 
49
+ # @!attribute next_bill_date
50
+ # @return [DateTime] If present, this sets the date the subscription's next billing period will start (`current_period_ends_at`). When combined with proration_settings, proration calculation should occur, only supported when timeframe is now.
51
+ define_attribute :next_bill_date, DateTime
52
+
49
53
  # @!attribute object
50
54
  # @return [String] Object type
51
55
  define_attribute :object, String
@@ -1,3 +1,3 @@
1
1
  module Recurly
2
- VERSION = "4.72.0"
2
+ VERSION = "4.73.0"
3
3
  end
data/openapi/api.yaml CHANGED
@@ -23606,6 +23606,13 @@ components:
23606
23606
  subscription.
23607
23607
  items:
23608
23608
  "$ref": "#/components/schemas/SubscriptionRampIntervalResponse"
23609
+ next_bill_date:
23610
+ type: string
23611
+ format: date-time
23612
+ title: Next bill date
23613
+ description: If present, this sets the date the subscription's next billing
23614
+ period will start (`current_period_ends_at`). When combined with proration_settings,
23615
+ proration calculation should occur, only supported when timeframe is now.
23609
23616
  SubscriptionChangeBillingInfo:
23610
23617
  type: object
23611
23618
  description: Accept nested attributes for three_d_secure_action_result_token_id
@@ -23766,6 +23773,13 @@ components:
23766
23773
  "$ref": "#/components/schemas/SubscriptionRampInterval"
23767
23774
  proration_settings:
23768
23775
  "$ref": "#/components/schemas/ProrationSettings"
23776
+ next_bill_date:
23777
+ type: string
23778
+ format: date-time
23779
+ title: Next bill date
23780
+ description: If present, this sets the date the subscription's next billing
23781
+ period will start (`current_period_ends_at`). When combined with proration_settings,
23782
+ proration calculation should occur, only supported when timeframe is now.
23769
23783
  SubscriptionChangeShippingCreate:
23770
23784
  type: object
23771
23785
  title: Shipping details that will be changed on a subscription
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.72.0
4
+ version: 4.73.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recurly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-11 00:00:00.000000000 Z
11
+ date: 2025-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -389,7 +389,7 @@ metadata:
389
389
  changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
390
390
  documentation_uri: https://recurly.github.io/recurly-client-ruby/
391
391
  homepage_uri: https://github.com/recurly/recurly-client-ruby
392
- source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.72.0
392
+ source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.73.0
393
393
  post_install_message:
394
394
  rdoc_options: []
395
395
  require_paths: