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 +4 -4
- data/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +11 -0
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/requests/account_acquisition_update.rb +4 -0
- data/lib/recurly/requests/billing_info_create.rb +4 -0
- data/lib/recurly/requests/external_product_reference_base.rb +2 -2
- data/lib/recurly/requests/external_product_reference_create.rb +2 -2
- data/lib/recurly/requests/external_product_reference_update.rb +2 -2
- data/lib/recurly/requests/subscription_shipping_create.rb +4 -0
- data/lib/recurly/requests/subscription_shipping_purchase.rb +4 -0
- data/lib/recurly/resources/account_acquisition.rb +4 -0
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +30 -0
- 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: b2eff66410b1aee2ef302ab1b35dbe355ef69e69d5c82ffb88e3e111b96ed589
|
4
|
+
data.tar.gz: a481d2e74e67ad8fcaa78a938bbdaaf6e86e6519f99350fffd3e245f54270f10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a9d62924b675a5f8c417f3d2a5a622bbeb7bd6789781e8eb169b84c2ec6feb18f3068b388365626c6743b549af065a5b3c46b0004923d568766d5a667bf296c
|
7
|
+
data.tar.gz: 14f3346e00aa13044267a72752f6b9e1e880cac5c97b9a8b4330ec9160474dbe10a97df35bc60c31fc9b91a7175921485742138d37f89352b7a8ef06e6881e12
|
data/.bumpversion.cfg
CHANGED
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.
|
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 [
|
11
|
-
define_attribute :external_connection_type,
|
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 [
|
11
|
-
define_attribute :external_connection_type,
|
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 [
|
11
|
-
define_attribute :external_connection_type,
|
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
|
data/lib/recurly/version.rb
CHANGED
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.
|
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-
|
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.
|
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:
|