cirro-ruby-client 2.2.2 → 2.3.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/.gitignore +3 -0
- data/lib/cirro_io/client/version.rb +1 -1
- data/lib/cirro_io_v2/client.rb +5 -0
- data/lib/cirro_io_v2/resources/space_invitation.rb +10 -0
- data/lib/cirro_io_v2/responses/responses.rb +4 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37a801e39bc51be2fec1f38fcdf9367a7f73dc82b21afc8cbd884ed47b61a173
|
4
|
+
data.tar.gz: 37a1366f9778231e64e8e2a7e14ec0a106bcf20288de3b4e44c8fb5735af04bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f90bd6e90a05f549e1b097b02a42ac1938855b59430981de07a41a659d65db4c525f971daa173ebca3898fb27a621e2611bba8f92cb0c482bbcd55f28d8d055
|
7
|
+
data.tar.gz: 7df252852f06b247ee9bc33495e9af16de7ab3d3a405b3dc3cb0a4c67097cf95a5134360f322ed3cc28bfb8c7e8c6b6a26fca22293b3b8a9b582c5514696571a
|
data/.gitignore
CHANGED
data/lib/cirro_io_v2/client.rb
CHANGED
@@ -12,6 +12,7 @@ require 'cirro_io_v2/resources/gig_time_activity'
|
|
12
12
|
require 'cirro_io_v2/resources/payout'
|
13
13
|
require 'cirro_io_v2/resources/gig_invitation'
|
14
14
|
require 'cirro_io_v2/resources/user'
|
15
|
+
require 'cirro_io_v2/resources/space_invitation'
|
15
16
|
|
16
17
|
require 'cirro_io_v2/responses/base'
|
17
18
|
require 'cirro_io_v2/responses/responses'
|
@@ -64,6 +65,10 @@ module CirroIOV2
|
|
64
65
|
Resources::User.new(self)
|
65
66
|
end
|
66
67
|
|
68
|
+
def SpaceInvitation
|
69
|
+
Resources::SpaceInvitation.new(self)
|
70
|
+
end
|
71
|
+
|
67
72
|
def GigInvitation
|
68
73
|
Resources::GigInvitation.new(self)
|
69
74
|
end
|
@@ -24,6 +24,10 @@ module CirroIOV2
|
|
24
24
|
include Base
|
25
25
|
end
|
26
26
|
|
27
|
+
SpaceInvitationResponse = Struct.new(:id, :object, :token, :subject, :email, :name, :inviter_name, :skip_background_check, :expires_at) do
|
28
|
+
include Base
|
29
|
+
end
|
30
|
+
|
27
31
|
GigResponse = Struct.new(:id,
|
28
32
|
:object,
|
29
33
|
:title,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cirro-ruby-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cirro Dev Team
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -140,6 +140,7 @@ files:
|
|
140
140
|
- lib/cirro_io_v2/resources/notification_topic.rb
|
141
141
|
- lib/cirro_io_v2/resources/notification_topic_preference.rb
|
142
142
|
- lib/cirro_io_v2/resources/payout.rb
|
143
|
+
- lib/cirro_io_v2/resources/space_invitation.rb
|
143
144
|
- lib/cirro_io_v2/resources/user.rb
|
144
145
|
- lib/cirro_io_v2/responses/base.rb
|
145
146
|
- lib/cirro_io_v2/responses/responses.rb
|