zaikio-hub 0.12.0 → 0.13.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: 3af7cc3326e84ad917b843cfd280dcbe73c771987f2e578c502b2aee9ac7e577
4
- data.tar.gz: 500105cb6254ea8aaae1264458950204aa48017c9906395811948bc6b84389a2
3
+ metadata.gz: 8871384444312b780a66e1756657180cec59ab6e07150ae9e3e9a0fa2bd436bf
4
+ data.tar.gz: 3cdc2b2b8a67f04435739afde96fd7d24d3b800c3168d16d6a6fa3f350661211
5
5
  SHA512:
6
- metadata.gz: 2cc38dcbd294cefa9f8286c3df5ffa4059d64861b93b3840bdae4f7a05a88a533c7f9c0dcc76aaaa905ecb8d7a2ead9c46c88e3ad54a04a217135efc3f386fb2
7
- data.tar.gz: 0376f5cafebe36260aa962b8f398ddb707d5e49b6d8a4fd48a66f28abb4e076464e660aeaf30ae58636871c109857dffaab851769a763870ac51a16e1a263a17
6
+ metadata.gz: 2bad5d02cdd35556265e045d104beaaa1cd2c9e57e69584ae5379dca4516611b004bec8b4763658c93d8f8e045b0d66091a94cd0cd3f227d94294cfd92bc5559
7
+ data.tar.gz: 8749c277f88ff0df4fd68420db575806e034740f4b7fe20e7587d6b1766b218ff0d51d1de0091e46c2e85759674b2849e42838a9b0ed3d951bb46c12d290e950
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.13.0] - 2023-03-24
11
+
12
+ * Add `Zaikio::Hub::SubscriptionInvitation`
13
+
10
14
  ## [0.12.0] - 2023-02-09
11
15
 
12
16
  * Update client-helpers and introduce default timeouts
@@ -108,8 +112,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
108
112
  ### Added
109
113
  - Added subscriptions (migration required)
110
114
 
111
- [Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.12.0..HEAD
112
- [0.11.2]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.2..v0.12.0
115
+ [Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.13.0..HEAD
116
+ [0.13.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.12.0..v0.13.0
117
+ [0.12.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.2..v0.12.0
113
118
  [0.11.2]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.1..v0.11.2
114
119
  [0.11.1]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.0..v0.11.1
115
120
  [0.11.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.10.0..v0.11.0
@@ -0,0 +1,14 @@
1
+ module Zaikio
2
+ module Hub
3
+ class SubscriptionInvitation < Base
4
+ uri "subscription_invitations(/:id)"
5
+
6
+ include_root_in_json :subscription_invitation
7
+
8
+ # Attributes
9
+ attributes :updated_at, :created_at, :app_name, :plan, :organization_name,
10
+ :contact_person, :starting_at, :expires_at, :invitation_url, :created_at,
11
+ :updated_at
12
+ end
13
+ end
14
+ end
@@ -1,5 +1,5 @@
1
1
  module Zaikio
2
2
  module Hub
3
- VERSION = "0.12.0".freeze
3
+ VERSION = "0.13.0".freeze
4
4
  end
5
5
  end
data/lib/zaikio/hub.rb CHANGED
@@ -26,6 +26,7 @@ require "zaikio/hub/revoked_access_token"
26
26
  require "zaikio/hub/connection"
27
27
  require "zaikio/hub/app"
28
28
  require "zaikio/hub/subscription"
29
+ require "zaikio/hub/subscription_invitation"
29
30
  require "zaikio/hub/test_account"
30
31
  require "zaikio/hub/token_data"
31
32
 
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.12.0
4
+ version: 0.13.0
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: 2023-02-09 00:00:00.000000000 Z
13
+ date: 2023-03-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: concurrent-ruby
@@ -156,6 +156,7 @@ files:
156
156
  - lib/zaikio/hub/software.rb
157
157
  - lib/zaikio/hub/specialist.rb
158
158
  - lib/zaikio/hub/subscription.rb
159
+ - lib/zaikio/hub/subscription_invitation.rb
159
160
  - lib/zaikio/hub/test_account.rb
160
161
  - lib/zaikio/hub/token_data.rb
161
162
  - lib/zaikio/hub/version.rb