zaikio-hub 0.11.0 → 0.11.1
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/CHANGELOG.md +6 -1
- data/lib/zaikio/hub/subscription.rb +1 -1
- data/lib/zaikio/hub/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a47f0490eda39c0fd1650ea60e0e46f88d4867a40448613f7665bb41b2677ce
|
|
4
|
+
data.tar.gz: 7f9b32bb341193d459e77b694d75152bd2026248661de28155683578f5e72fe2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9840f132efc25c081a7576aac95dd64f6a6c433f346cf10e8345540f7593a7aec2540905aac201d1868e7f14cc3c8445fb63e116d07cc8e1fabb4801f1964aec
|
|
7
|
+
data.tar.gz: ed6060c8af4aaf2b8899f0a76d70a4eec176b320d359c253e8a6cd0a17d02a573a97181ed0bed158026850e4e6c76f0694ccec357f2c2f2dfcea57a00ec2a825
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.11.1] - 2022-10-13
|
|
11
|
+
|
|
12
|
+
* Added `subscription_url` attribute in `Subscription`
|
|
13
|
+
|
|
10
14
|
## [0.11.0] - 2022-08-30
|
|
11
15
|
|
|
12
16
|
* Extract token data logic into its own `Zaikio::Hub::TokenData` class
|
|
@@ -96,7 +100,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
96
100
|
### Added
|
|
97
101
|
- Added subscriptions (migration required)
|
|
98
102
|
|
|
99
|
-
[Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.
|
|
103
|
+
[Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.1..HEAD
|
|
104
|
+
[0.11.1]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.0..v0.11.1
|
|
100
105
|
[0.11.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.10.0..v0.11.0
|
|
101
106
|
[0.10.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.9.0..v0.10.0
|
|
102
107
|
[0.9.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.8.0..v0.9.0
|
|
@@ -9,7 +9,7 @@ module Zaikio
|
|
|
9
9
|
attributes :updated_at, :created_at, :subscriber_type, :subscriber_id,
|
|
10
10
|
:status, :app_name, :activated_at, :last_billed_at,
|
|
11
11
|
:last_paid_at, :trial_ended_at, :plan, :plan_name, :preceding_plan,
|
|
12
|
-
:changed_plan_at, :usages_in_current_billing_period
|
|
12
|
+
:changed_plan_at, :subscripton_url, :usages_in_current_billing_period
|
|
13
13
|
|
|
14
14
|
def initialize(attributes = {})
|
|
15
15
|
if attributes["subscriber_id"]
|
data/lib/zaikio/hub/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zaikio-hub
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- crispymtn
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-
|
|
13
|
+
date: 2022-10-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: concurrent-ruby
|