google-apis-calendar_v3 0.1.0 → 0.2.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ef75e8e6885c3d40b34380df74926cf19f3408d137262668422b8a53d08fe60
|
|
4
|
+
data.tar.gz: 2a38653ca025c3147b3350740af7f4a0dc416d4015cdd203fdb61595e4b4e7d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd1e37d104055661b6517c7060f8e6f19d9cc38d261851549fe4e3783c8484203295fa1be2c95a34ea68a6c476f938eb2025f05573341a64c47965be86f31a60
|
|
7
|
+
data.tar.gz: 23231868586d2909ed0efacb715bf5bdf5660d2b49f7ed824f89889708864143a31d39b4cfc4050de09f10c2a832a78b2422b7e5632f21fc3ea0b23ab8ebe479
|
data/CHANGELOG.md
CHANGED
|
@@ -38,7 +38,7 @@ module Google
|
|
|
38
38
|
# View events on all your calendars
|
|
39
39
|
AUTH_CALENDAR_EVENTS_READONLY = 'https://www.googleapis.com/auth/calendar.events.readonly'
|
|
40
40
|
|
|
41
|
-
#
|
|
41
|
+
# See and download any calendar you can access using your Google Calendar
|
|
42
42
|
AUTH_CALENDAR_READONLY = 'https://www.googleapis.com/auth/calendar.readonly'
|
|
43
43
|
|
|
44
44
|
# View your Calendar settings
|
|
@@ -1107,6 +1107,13 @@ module Google
|
|
|
1107
1107
|
# @return [String]
|
|
1108
1108
|
attr_accessor :etag
|
|
1109
1109
|
|
|
1110
|
+
# Specific type of the event. Read-only. Possible values are:
|
|
1111
|
+
# - "default" - A regular event or not further specified.
|
|
1112
|
+
# - "outOfOffice" - An out-of-office event.
|
|
1113
|
+
# Corresponds to the JSON property `eventType`
|
|
1114
|
+
# @return [String]
|
|
1115
|
+
attr_accessor :event_type
|
|
1116
|
+
|
|
1110
1117
|
# Extended properties of the event.
|
|
1111
1118
|
# Corresponds to the JSON property `extendedProperties`
|
|
1112
1119
|
# @return [Google::Apis::CalendarV3::Event::ExtendedProperties]
|
|
@@ -1338,6 +1345,7 @@ module Google
|
|
|
1338
1345
|
@end = args[:end] if args.key?(:end)
|
|
1339
1346
|
@end_time_unspecified = args[:end_time_unspecified] if args.key?(:end_time_unspecified)
|
|
1340
1347
|
@etag = args[:etag] if args.key?(:etag)
|
|
1348
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
|
1341
1349
|
@extended_properties = args[:extended_properties] if args.key?(:extended_properties)
|
|
1342
1350
|
@gadget = args[:gadget] if args.key?(:gadget)
|
|
1343
1351
|
@guests_can_invite_others = args[:guests_can_invite_others] if args.key?(:guests_can_invite_others)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CalendarV3
|
|
18
18
|
# Version of the google-apis-calendar_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.2.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.1.
|
|
22
|
+
GENERATOR_VERSION = "0.1.2"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210128"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -527,6 +527,7 @@ module Google
|
|
|
527
527
|
|
|
528
528
|
property :end_time_unspecified, as: 'endTimeUnspecified'
|
|
529
529
|
property :etag, as: 'etag'
|
|
530
|
+
property :event_type, as: 'eventType'
|
|
530
531
|
property :extended_properties, as: 'extendedProperties', class: Google::Apis::CalendarV3::Event::ExtendedProperties, decorator: Google::Apis::CalendarV3::Event::ExtendedProperties::Representation
|
|
531
532
|
|
|
532
533
|
property :gadget, as: 'gadget', class: Google::Apis::CalendarV3::Event::Gadget, decorator: Google::Apis::CalendarV3::Event::Gadget::Representation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-calendar_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -52,7 +52,7 @@ licenses:
|
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-calendar_v3/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-calendar_v3/v0.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-calendar_v3/v0.2.0
|
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-calendar_v3
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.
|
|
72
|
+
rubygems_version: 3.2.6
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Simple REST client for Calendar API V3
|