recurly 4.54.0 → 4.55.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +11 -0
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/client/operations.rb +1 -1
- data/lib/recurly/resources/external_subscription.rb +4 -0
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +7 -2
- 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: bec052486664e86016dba2616e73688fc2d084b14de08c705ef5e89d9af4a920
|
4
|
+
data.tar.gz: 030cf089953c619d3000279186b9944849064094b24c9614a10cfa75e878633b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a692def551661809413225984acb0c946b692dc2ab51d5bf246e40b056b68043c47578742275726489eb702fda44a54ea2f3172ce3606b52af7ed9a160987983
|
7
|
+
data.tar.gz: 3448a1ec74b6e710c07241afdae2f6081a6645b41a5f79c3b014b41174491bdb7768570ca8eb2a4c13d1084e69b60f05fb139930d591321277bf579b92e7045d
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [4.55.0](https://github.com/recurly/recurly-client-ruby/tree/4.55.0) (2024-08-28)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.54.0...4.55.0)
|
6
|
+
|
7
|
+
|
8
|
+
**Merged Pull Requests**
|
9
|
+
|
10
|
+
- Generated Latest Changes for v2021-02-25 (add UUID to external subscriptions) [#914](https://github.com/recurly/recurly-client-ruby/pull/914) ([recurly-integrations](https://github.com/recurly-integrations))
|
11
|
+
|
12
|
+
|
13
|
+
|
3
14
|
## [4.54.0](https://github.com/recurly/recurly-client-ruby/tree/4.54.0) (2024-08-21)
|
4
15
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.53.0...4.54.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.55'
|
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.
|
@@ -2403,7 +2403,7 @@ module Recurly
|
|
2403
2403
|
#
|
2404
2404
|
# {https://developers.recurly.com/api/v2021-02-25#operation/get_external_subscription get_external_subscription api documentation}
|
2405
2405
|
#
|
2406
|
-
# @param external_subscription_id [String] External subscription ID or
|
2406
|
+
# @param external_subscription_id [String] External subscription ID, external_id or uuid. For ID no prefix is used e.g. +e28zov4fw0v2+. For external_id use prefix +external-id-+, e.g. +external-id-123456+ and for uuid use prefix +uuid-+ e.g. +uuid-7293239bae62777d8c1ae044a9843633+.
|
2407
2407
|
# @param params [Hash] Optional query string parameters:
|
2408
2408
|
#
|
2409
2409
|
# @return [Resources::ExternalSubscription] Settings for an external subscription.
|
@@ -89,6 +89,10 @@ module Recurly
|
|
89
89
|
# @!attribute updated_at
|
90
90
|
# @return [DateTime] When the external subscription was updated in Recurly.
|
91
91
|
define_attribute :updated_at, DateTime
|
92
|
+
|
93
|
+
# @!attribute uuid
|
94
|
+
# @return [String] Universally Unique Identifier created automatically.
|
95
|
+
define_attribute :uuid, String
|
92
96
|
end
|
93
97
|
end
|
94
98
|
end
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
@@ -16743,8 +16743,9 @@ components:
|
|
16743
16743
|
external_subscription_id_fetch:
|
16744
16744
|
name: external_subscription_id
|
16745
16745
|
in: path
|
16746
|
-
description: External subscription ID or
|
16747
|
-
e.g. `e28zov4fw0v2`. For external_id use prefix `external-id-`, e.g.
|
16746
|
+
description: External subscription ID, external_id or uuid. For ID no prefix
|
16747
|
+
is used e.g. `e28zov4fw0v2`. For external_id use prefix `external-id-`, e.g.
|
16748
|
+
`external-id-123456` and for uuid use prefix `uuid-` e.g. `uuid-7293239bae62777d8c1ae044a9843633`.
|
16748
16749
|
required: true
|
16749
16750
|
schema:
|
16750
16751
|
type: string
|
@@ -25100,6 +25101,10 @@ components:
|
|
25100
25101
|
title: External Id
|
25101
25102
|
description: The id of the subscription in the external systems., I.e. Apple
|
25102
25103
|
App Store or Google Play Store.
|
25104
|
+
uuid:
|
25105
|
+
type: string
|
25106
|
+
title: Uuid
|
25107
|
+
description: Universally Unique Identifier created automatically.
|
25103
25108
|
last_purchased:
|
25104
25109
|
type: string
|
25105
25110
|
format: date-time
|
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.55.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-08-
|
11
|
+
date: 2024-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -355,7 +355,7 @@ metadata:
|
|
355
355
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
356
356
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
357
357
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
358
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
358
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.55.0
|
359
359
|
post_install_message:
|
360
360
|
rdoc_options: []
|
361
361
|
require_paths:
|