google-apis-calendar_v3 0.50.0 → 0.51.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: 1fe91430931cc46dd45d8990a6ee8c77149b577132f9d01872f938ef55b43674
|
|
4
|
+
data.tar.gz: 2db5b2fb40258f38377f74f86e1741c03122a5dd75acb59af125360026240519
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24a538e8b49d29973db62241019307e1a6c6bd5abf8f637f0d333575696a86f0709f6cdd63ac47aa58210c8cad4b3d2c1688e45ab157bc03089afc08a66a2138
|
|
7
|
+
data.tar.gz: 4f646d798355e51a11c5abf3cd480b8732ec1baf1baac3426f50d4b3c150de127035c458c59cdf1aebf77ba60d28f740ee4a992e6f4dfd6d2533a91f2da90cee
|
data/CHANGELOG.md
CHANGED
|
@@ -299,6 +299,13 @@ module Google
|
|
|
299
299
|
# @return [String]
|
|
300
300
|
attr_accessor :access_role
|
|
301
301
|
|
|
302
|
+
# Whether this calendar automatically accepts invitations. Only valid for
|
|
303
|
+
# resource calendars. Read-only.
|
|
304
|
+
# Corresponds to the JSON property `autoAcceptInvitations`
|
|
305
|
+
# @return [Boolean]
|
|
306
|
+
attr_accessor :auto_accept_invitations
|
|
307
|
+
alias_method :auto_accept_invitations?, :auto_accept_invitations
|
|
308
|
+
|
|
302
309
|
# The main color of the calendar in the hexadecimal format "#0088aa". This
|
|
303
310
|
# property supersedes the index-based colorId property. To set or change this
|
|
304
311
|
# property, you need to specify colorRgbFormat=true in the parameters of the
|
|
@@ -420,6 +427,7 @@ module Google
|
|
|
420
427
|
# Update properties of this object
|
|
421
428
|
def update!(**args)
|
|
422
429
|
@access_role = args[:access_role] if args.key?(:access_role)
|
|
430
|
+
@auto_accept_invitations = args[:auto_accept_invitations] if args.key?(:auto_accept_invitations)
|
|
423
431
|
@background_color = args[:background_color] if args.key?(:background_color)
|
|
424
432
|
@color_id = args[:color_id] if args.key?(:color_id)
|
|
425
433
|
@conference_properties = args[:conference_properties] if args.key?(:conference_properties)
|
|
@@ -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.51.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251207"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -369,6 +369,7 @@ module Google
|
|
|
369
369
|
# @private
|
|
370
370
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
371
371
|
property :access_role, as: 'accessRole'
|
|
372
|
+
property :auto_accept_invitations, as: 'autoAcceptInvitations'
|
|
372
373
|
property :background_color, as: 'backgroundColor'
|
|
373
374
|
property :color_id, as: 'colorId'
|
|
374
375
|
property :conference_properties, as: 'conferenceProperties', class: Google::Apis::CalendarV3::ConferenceProperties, decorator: Google::Apis::CalendarV3::ConferenceProperties::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.51.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-calendar_v3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-calendar_v3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-calendar_v3/v0.51.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-calendar_v3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|