google-apis-calendar_v3 0.49.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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-calendar_v3
|
|
2
2
|
|
|
3
|
+
### v0.51.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251207
|
|
6
|
+
|
|
7
|
+
### v0.50.0 (2025-12-07)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251123
|
|
10
|
+
|
|
3
11
|
### v0.49.0 (2025-11-09)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251028
|
|
@@ -158,6 +158,13 @@ module Google
|
|
|
158
158
|
class Calendar
|
|
159
159
|
include Google::Apis::Core::Hashable
|
|
160
160
|
|
|
161
|
+
# Whether this calendar automatically accepts invitations. Only valid for
|
|
162
|
+
# resource calendars.
|
|
163
|
+
# Corresponds to the JSON property `autoAcceptInvitations`
|
|
164
|
+
# @return [Boolean]
|
|
165
|
+
attr_accessor :auto_accept_invitations
|
|
166
|
+
alias_method :auto_accept_invitations?, :auto_accept_invitations
|
|
167
|
+
|
|
161
168
|
# Conferencing properties for this calendar, for example what types of
|
|
162
169
|
# conferences are allowed.
|
|
163
170
|
# Corresponds to the JSON property `conferenceProperties`
|
|
@@ -213,6 +220,7 @@ module Google
|
|
|
213
220
|
|
|
214
221
|
# Update properties of this object
|
|
215
222
|
def update!(**args)
|
|
223
|
+
@auto_accept_invitations = args[:auto_accept_invitations] if args.key?(:auto_accept_invitations)
|
|
216
224
|
@conference_properties = args[:conference_properties] if args.key?(:conference_properties)
|
|
217
225
|
@data_owner = args[:data_owner] if args.key?(:data_owner)
|
|
218
226
|
@description = args[:description] if args.key?(:description)
|
|
@@ -291,6 +299,13 @@ module Google
|
|
|
291
299
|
# @return [String]
|
|
292
300
|
attr_accessor :access_role
|
|
293
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
|
+
|
|
294
309
|
# The main color of the calendar in the hexadecimal format "#0088aa". This
|
|
295
310
|
# property supersedes the index-based colorId property. To set or change this
|
|
296
311
|
# property, you need to specify colorRgbFormat=true in the parameters of the
|
|
@@ -412,6 +427,7 @@ module Google
|
|
|
412
427
|
# Update properties of this object
|
|
413
428
|
def update!(**args)
|
|
414
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)
|
|
415
431
|
@background_color = args[:background_color] if args.key?(:background_color)
|
|
416
432
|
@color_id = args[:color_id] if args.key?(:color_id)
|
|
417
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
|
|
@@ -339,6 +339,7 @@ module Google
|
|
|
339
339
|
class Calendar
|
|
340
340
|
# @private
|
|
341
341
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
342
|
+
property :auto_accept_invitations, as: 'autoAcceptInvitations'
|
|
342
343
|
property :conference_properties, as: 'conferenceProperties', class: Google::Apis::CalendarV3::ConferenceProperties, decorator: Google::Apis::CalendarV3::ConferenceProperties::Representation
|
|
343
344
|
|
|
344
345
|
property :data_owner, as: 'dataOwner'
|
|
@@ -368,6 +369,7 @@ module Google
|
|
|
368
369
|
# @private
|
|
369
370
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
370
371
|
property :access_role, as: 'accessRole'
|
|
372
|
+
property :auto_accept_invitations, as: 'autoAcceptInvitations'
|
|
371
373
|
property :background_color, as: 'backgroundColor'
|
|
372
374
|
property :color_id, as: 'colorId'
|
|
373
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:
|