recurly 4.64.0 → 4.65.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: a2b423c29b03e3ece31a18fa41ad5b52a6f1d23c68c2e9aa346dfde9f948a179
4
- data.tar.gz: 640b7806f97778059ef0d301616a00cd04a57e4140584348b4c21b734bc88c82
3
+ metadata.gz: b2eff66410b1aee2ef302ab1b35dbe355ef69e69d5c82ffb88e3e111b96ed589
4
+ data.tar.gz: a481d2e74e67ad8fcaa78a938bbdaaf6e86e6519f99350fffd3e245f54270f10
5
5
  SHA512:
6
- metadata.gz: 42ac8c24f569ec13bdc3b0689328a0fab71c800c4ba634d3784bb625d4f4ea60d85a38872569ef706d0741cdecd0ddc8a40dc499f8ec9213d7534930d2f0e326
7
- data.tar.gz: 1ef7f980560ef757d8b78a709e7a3920938f70bb75881a06fe3539b93cf3800fb731ddc28bdd1c2aaf606070cab753bacf0a689cfd936942171a9f53ee8c34a2
6
+ metadata.gz: 0a9d62924b675a5f8c417f3d2a5a622bbeb7bd6789781e8eb169b84c2ec6feb18f3068b388365626c6743b549af065a5b3c46b0004923d568766d5a667bf296c
7
+ data.tar.gz: 14f3346e00aa13044267a72752f6b9e1e880cac5c97b9a8b4330ec9160474dbe10a97df35bc60c31fc9b91a7175921485742138d37f89352b7a8ef06e6881e12
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.64.0
2
+ current_version = 4.65.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.65.0](https://github.com/recurly/recurly-client-ruby/tree/4.65.0) (2025-07-09)
4
+
5
+ [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.64.0...4.65.0)
6
+
7
+
8
+ **Merged Pull Requests**
9
+
10
+ - Generated Latest Changes for v2021-02-25 [#930](https://github.com/recurly/recurly-client-ruby/pull/930) ([recurly-integrations](https://github.com/recurly-integrations))
11
+
12
+
13
+
3
14
  ## [4.64.0](https://github.com/recurly/recurly-client-ruby/tree/4.64.0) (2025-06-11)
4
15
 
5
16
  [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.63.0...4.64.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.64'
8
+ gem 'recurly', '~> 4.65'
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.
@@ -6,6 +6,10 @@ module Recurly
6
6
  module Requests
7
7
  class AccountAcquisitionUpdate < Request
8
8
 
9
+ # @!attribute acquired_at
10
+ # @return [DateTime] Date the account was first created if different than the account.created_at. ie Importing accounts.
11
+ define_attribute :acquired_at, DateTime
12
+
9
13
  # @!attribute campaign
10
14
  # @return [String] An arbitrary identifier for the marketing campaign that led to the acquisition of this account.
11
15
  define_attribute :campaign, String
@@ -18,6 +18,10 @@ module Recurly
18
18
  # @return [Address]
19
19
  define_attribute :address, :Address
20
20
 
21
+ # @!attribute adyen_risk_profile_reference_id
22
+ # @return [String] The Adyen Risk Profile Reference ID is used to identify the risk profile for the payment method.
23
+ define_attribute :adyen_risk_profile_reference_id, String
24
+
21
25
  # @!attribute amazon_billing_agreement_id
22
26
  # @return [String] Only supported on Amazon V1. For Amazon V2, use token_id with Recurly.js.
23
27
  define_attribute :amazon_billing_agreement_id, String
@@ -7,8 +7,8 @@ module Recurly
7
7
  class ExternalProductReferenceBase < Request
8
8
 
9
9
  # @!attribute external_connection_type
10
- # @return [ExternalProductReferenceConnectionType] Represents the connection type. One of the connection types of your enabled App Connectors
11
- define_attribute :external_connection_type, :ExternalProductReferenceConnectionType
10
+ # @return [String] Represents the connection type. One of the connection types of your enabled App Connectors
11
+ define_attribute :external_connection_type, String
12
12
 
13
13
  # @!attribute reference_code
14
14
  # @return [String] A code which associates the external product to a corresponding object or resource in an external platform like the Apple App Store or Google Play Store.
@@ -7,8 +7,8 @@ module Recurly
7
7
  class ExternalProductReferenceCreate < Request
8
8
 
9
9
  # @!attribute external_connection_type
10
- # @return [ExternalProductReferenceConnectionType] Represents the connection type. One of the connection types of your enabled App Connectors
11
- define_attribute :external_connection_type, :ExternalProductReferenceConnectionType
10
+ # @return [String] Represents the connection type. One of the connection types of your enabled App Connectors
11
+ define_attribute :external_connection_type, String
12
12
 
13
13
  # @!attribute reference_code
14
14
  # @return [String] A code which associates the external product to a corresponding object or resource in an external platform like the Apple App Store or Google Play Store.
@@ -7,8 +7,8 @@ module Recurly
7
7
  class ExternalProductReferenceUpdate < Request
8
8
 
9
9
  # @!attribute external_connection_type
10
- # @return [ExternalProductReferenceConnectionType] Represents the connection type. One of the connection types of your enabled App Connectors
11
- define_attribute :external_connection_type, :ExternalProductReferenceConnectionType
10
+ # @return [String] Represents the connection type. One of the connection types of your enabled App Connectors
11
+ define_attribute :external_connection_type, String
12
12
 
13
13
  # @!attribute reference_code
14
14
  # @return [String] A code which associates the external product to a corresponding object or resource in an external platform like the Apple App Store or Google Play Store.
@@ -18,6 +18,10 @@ module Recurly
18
18
  # @return [Float] Assigns the subscription's shipping cost. If this is greater than zero then a `method_id` or `method_code` is required.
19
19
  define_attribute :amount, Float
20
20
 
21
+ # @!attribute expected_first_delivery_at
22
+ # @return [DateTime] The expected date of the first delivery for the subscription.
23
+ define_attribute :expected_first_delivery_at, DateTime
24
+
21
25
  # @!attribute method_code
22
26
  # @return [String] The code of the shipping method used to deliver the subscription. If `method_id` and `method_code` are both present, `method_id` will be used.
23
27
  define_attribute :method_code, String
@@ -10,6 +10,10 @@ module Recurly
10
10
  # @return [Float] Assigns the subscription's shipping cost. If this is greater than zero then a `method_id` or `method_code` is required.
11
11
  define_attribute :amount, Float
12
12
 
13
+ # @!attribute expected_first_delivery_at
14
+ # @return [DateTime] The expected date of the first delivery for the subscription.
15
+ define_attribute :expected_first_delivery_at, DateTime
16
+
13
17
  # @!attribute method_code
14
18
  # @return [String] The code of the shipping method used to deliver the subscription. If `method_id` and `method_code` are both present, `method_id` will be used.
15
19
  define_attribute :method_code, String
@@ -10,6 +10,10 @@ module Recurly
10
10
  # @return [AccountMini] Account mini details
11
11
  define_attribute :account, :AccountMini
12
12
 
13
+ # @!attribute acquired_at
14
+ # @return [DateTime] Date the account was first created if different than the account.created_at. ie Importing accounts.
15
+ define_attribute :acquired_at, DateTime
16
+
13
17
  # @!attribute campaign
14
18
  # @return [String] An arbitrary identifier for the marketing campaign that led to the acquisition of this account.
15
19
  define_attribute :campaign, String
@@ -1,3 +1,3 @@
1
1
  module Recurly
2
- VERSION = "4.64.0"
2
+ VERSION = "4.65.0"
3
3
  end
data/openapi/api.yaml CHANGED
@@ -17689,6 +17689,11 @@ components:
17689
17689
  type: string
17690
17690
  description: An arbitrary identifier for the marketing campaign that led
17691
17691
  to the acquisition of this account.
17692
+ acquired_at:
17693
+ type: string
17694
+ format: date-time
17695
+ description: Date the account was first created if different than the account.created_at.
17696
+ ie Importing accounts.
17692
17697
  AccountAcquisitionReadOnly:
17693
17698
  type: object
17694
17699
  properties:
@@ -18998,6 +19003,11 @@ components:
18998
19003
  fraud_session_id:
18999
19004
  type: string
19000
19005
  title: Fraud Session ID
19006
+ adyen_risk_profile_reference_id:
19007
+ type: string
19008
+ title: Adyen Risk Profile Reference ID
19009
+ description: The Adyen Risk Profile Reference ID is used to identify the
19010
+ risk profile for the payment method.
19001
19011
  transaction_type:
19002
19012
  description: An optional type designation for the payment gateway transaction
19003
19013
  created by this request. Supports 'moto' value, which is the acronym for
@@ -19943,6 +19953,12 @@ components:
19943
19953
  object:
19944
19954
  title: Object type
19945
19955
  type: string
19956
+ has_more:
19957
+ type: boolean
19958
+ description: Indicates there are more results on subsequent pages.
19959
+ next:
19960
+ type: string
19961
+ description: Path to subsequent page of results.
19946
19962
  data:
19947
19963
  title: Performance Obligation
19948
19964
  type: array
@@ -24218,6 +24234,11 @@ components:
24218
24234
  format: float
24219
24235
  title: Assigns the subscription's shipping cost. If this is greater than
24220
24236
  zero then a `method_id` or `method_code` is required.
24237
+ expected_first_delivery_at:
24238
+ type: string
24239
+ format: date-time
24240
+ title: Expected first delivery date
24241
+ description: The expected date of the first delivery for the subscription.
24221
24242
  SubscriptionShippingUpdate:
24222
24243
  type: object
24223
24244
  title: Subscription shipping details
@@ -24256,6 +24277,11 @@ components:
24256
24277
  format: float
24257
24278
  title: Assigns the subscription's shipping cost. If this is greater than
24258
24279
  zero then a `method_id` or `method_code` is required.
24280
+ expected_first_delivery_at:
24281
+ type: string
24282
+ format: date-time
24283
+ title: Expected first delivery date
24284
+ description: The expected date of the first delivery for the subscription.
24259
24285
  SubscriptionRampInterval:
24260
24286
  type: object
24261
24287
  title: Subscription Ramp Interval
@@ -25134,6 +25160,7 @@ components:
25134
25160
  format: date-time
25135
25161
  description: When the current settings were updated in Recurly.
25136
25162
  DunningInterval:
25163
+ type: object
25137
25164
  properties:
25138
25165
  days:
25139
25166
  type: integer
@@ -25158,6 +25185,7 @@ components:
25158
25185
  items:
25159
25186
  type: string
25160
25187
  DunningCampaignsBulkUpdateResponse:
25188
+ type: object
25161
25189
  properties:
25162
25190
  object:
25163
25191
  type: string
@@ -26011,6 +26039,7 @@ components:
26011
26039
  format: date-time
26012
26040
  description: When the invoice template was updated in Recurly.
26013
26041
  PaymentMethod:
26042
+ type: object
26014
26043
  properties:
26015
26044
  object:
26016
26045
  "$ref": "#/components/schemas/PaymentMethodEnum"
@@ -27161,6 +27190,7 @@ components:
27161
27190
  - amazon
27162
27191
  - amazon_billing_agreement
27163
27192
  - apple_pay
27193
+ - apple_pay_merchant_token
27164
27194
  - bank_account_info
27165
27195
  - braintree_apple_pay
27166
27196
  - check
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.64.0
4
+ version: 4.65.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-06-11 00:00:00.000000000 Z
11
+ date: 2025-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -381,7 +381,7 @@ metadata:
381
381
  changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
382
382
  documentation_uri: https://recurly.github.io/recurly-client-ruby/
383
383
  homepage_uri: https://github.com/recurly/recurly-client-ruby
384
- source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.64.0
384
+ source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.65.0
385
385
  post_install_message:
386
386
  rdoc_options: []
387
387
  require_paths: