calendly 0.8.1 → 0.8.2
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 +4 -0
- data/lib/calendly/models/event.rb +9 -3
- data/lib/calendly/models/invitee_cancellation.rb +3 -0
- data/lib/calendly/version.rb +1 -1
- 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: c72f1c342babfaaadb025cafe9738afd5883312c08b00cc1d2631152539c3a5c
|
4
|
+
data.tar.gz: c1e14541f08bfa9f3aaf77cb6a9a6cfb063141775329f1f5dd3acdbe0058dd67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 766d16471b9810138706a85cb964341ce8763a3cb79d0e30506221501d61208655fb5ab594d7793b65bb67fbe3a5d2c44759aae8d245ecfb0563f0d24858ad14
|
7
|
+
data.tar.gz: 705a7fd917f0502640092c10f8776a572e68cda2824c4fa3ab3df9e2664ea410486ccb6a12db5eeaee08e6c6dc85f7852a7d81ab34a849589f683c436799674d
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,7 @@ require 'calendly/client'
|
|
4
4
|
require 'calendly/models/model_utils'
|
5
5
|
require 'calendly/models/event_type'
|
6
6
|
require 'calendly/models/guest'
|
7
|
+
require 'calendly/models/invitee_cancellation'
|
7
8
|
require 'calendly/models/invitees_counter'
|
8
9
|
require 'calendly/models/location'
|
9
10
|
|
@@ -17,6 +18,7 @@ module Calendly
|
|
17
18
|
ASSOCIATION = {
|
18
19
|
event_type: EventType,
|
19
20
|
event_guests: Guest,
|
21
|
+
cancellation: InviteeCancellation,
|
20
22
|
invitees_counter: InviteesCounter,
|
21
23
|
location: Location
|
22
24
|
}.freeze
|
@@ -57,14 +59,18 @@ module Calendly
|
|
57
59
|
# Reference to Event Type associated with this event.
|
58
60
|
attr_accessor :event_type
|
59
61
|
|
60
|
-
# @return [
|
61
|
-
#
|
62
|
-
attr_accessor :
|
62
|
+
# @return [InviteeCancellation]
|
63
|
+
# Provides data pertaining to the cancellation of the Invitee.
|
64
|
+
attr_accessor :cancellation
|
63
65
|
|
64
66
|
# @return [InviteesCounter]
|
65
67
|
# invitees counter.
|
66
68
|
attr_accessor :invitees_counter
|
67
69
|
|
70
|
+
# @return [Calendly::Location]
|
71
|
+
# location in this event.
|
72
|
+
attr_accessor :location
|
73
|
+
|
68
74
|
# @return [Array<User>]
|
69
75
|
# Event membership list.
|
70
76
|
attr_accessor :event_memberships
|
data/lib/calendly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: calendly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kenji Koshikawa
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oauth2
|
@@ -161,7 +161,7 @@ metadata:
|
|
161
161
|
homepage_uri: https://github.com/koshilife/calendly-api-ruby-client
|
162
162
|
source_code_uri: https://github.com/koshilife/calendly-api-ruby-client
|
163
163
|
changelog_uri: https://github.com/koshilife/calendly-api-ruby-client/blob/master/CHANGELOG.md
|
164
|
-
documentation_uri: https://www.rubydoc.info/gems/calendly/0.8.
|
164
|
+
documentation_uri: https://www.rubydoc.info/gems/calendly/0.8.2
|
165
165
|
post_install_message:
|
166
166
|
rdoc_options: []
|
167
167
|
require_paths:
|