google-apis-calendar_v3 0.32.0 → 0.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/calendar_v3/classes.rb +19 -10
- data/lib/google/apis/calendar_v3/gem_version.rb +2 -2
- data/lib/google/apis/calendar_v3/service.rb +16 -16
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc314415ed813cac04a7a8998a9938d72c04257aac4114179e398e285c26eb9e
|
4
|
+
data.tar.gz: 911d47d0c9903c7b1cf6b95c3ee1f57029ba2c676547ad263629172a8168c986
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2352f06385c0c608e635f3e87cc742af45c73cdfb75796cfa9f83ee3e1eff945205122c8059be74aa5903144ce8ecf5ed0dbc5d7f2173dded4000fee841ed73d
|
7
|
+
data.tar.gz: c21422b1305eb092e26c4a9f30c88030b65f13b3500f5e484264cf058ae171ccbeb337863223372d486c28dc1ef7331286c38d8888dc0a556dc35b904fba741e
|
data/CHANGELOG.md
CHANGED
@@ -1110,11 +1110,14 @@ module Google
|
|
1110
1110
|
# @return [String]
|
1111
1111
|
attr_accessor :etag
|
1112
1112
|
|
1113
|
-
# Specific type of the event.
|
1113
|
+
# Specific type of the event. This cannot be modified after the event is created.
|
1114
|
+
# Possible values are:
|
1114
1115
|
# - "default" - A regular event or not further specified.
|
1115
1116
|
# - "outOfOffice" - An out-of-office event.
|
1116
1117
|
# - "focusTime" - A focus-time event.
|
1117
|
-
# - "workingLocation" - A working location event.
|
1118
|
+
# - "workingLocation" - A working location event. Currently, only "default "
|
1119
|
+
# and "workingLocation" events can be created using the API. Extended support
|
1120
|
+
# for other event types will be made available in later releases.
|
1118
1121
|
# Corresponds to the JSON property `eventType`
|
1119
1122
|
# @return [String]
|
1120
1123
|
attr_accessor :event_type
|
@@ -1334,7 +1337,7 @@ module Google
|
|
1334
1337
|
# @return [String]
|
1335
1338
|
attr_accessor :visibility
|
1336
1339
|
|
1337
|
-
# Working
|
1340
|
+
# Working location event data.
|
1338
1341
|
# Corresponds to the JSON property `workingLocationProperties`
|
1339
1342
|
# @return [Google::Apis::CalendarV3::EventWorkingLocationProperties]
|
1340
1343
|
attr_accessor :working_location_properties
|
@@ -1845,9 +1848,13 @@ module Google
|
|
1845
1848
|
# @return [Google::Apis::CalendarV3::EventWorkingLocationProperties::OfficeLocation]
|
1846
1849
|
attr_accessor :office_location
|
1847
1850
|
|
1848
|
-
#
|
1849
|
-
#
|
1850
|
-
#
|
1851
|
+
# Type of the working location. Possible values are:
|
1852
|
+
# - "homeOffice" - The user is working at home.
|
1853
|
+
# - "officeLocation" - The user is working from an office.
|
1854
|
+
# - "customLocation" - The user is working from a custom location. Any details
|
1855
|
+
# are specified in a sub-field of the specified name, but this field may be
|
1856
|
+
# missing if empty. Any other fields are ignored.
|
1857
|
+
# Required when adding working location properties.
|
1851
1858
|
# Corresponds to the JSON property `type`
|
1852
1859
|
# @return [String]
|
1853
1860
|
attr_accessor :type
|
@@ -1893,22 +1900,24 @@ module Google
|
|
1893
1900
|
# @return [String]
|
1894
1901
|
attr_accessor :building_id
|
1895
1902
|
|
1896
|
-
# An optional
|
1903
|
+
# An optional desk identifier.
|
1897
1904
|
# Corresponds to the JSON property `deskId`
|
1898
1905
|
# @return [String]
|
1899
1906
|
attr_accessor :desk_id
|
1900
1907
|
|
1901
|
-
# An optional
|
1908
|
+
# An optional floor identifier.
|
1902
1909
|
# Corresponds to the JSON property `floorId`
|
1903
1910
|
# @return [String]
|
1904
1911
|
attr_accessor :floor_id
|
1905
1912
|
|
1906
|
-
# An optional
|
1913
|
+
# An optional floor section identifier.
|
1907
1914
|
# Corresponds to the JSON property `floorSectionId`
|
1908
1915
|
# @return [String]
|
1909
1916
|
attr_accessor :floor_section_id
|
1910
1917
|
|
1911
|
-
#
|
1918
|
+
# The office name that's displayed in Calendar Web and Mobile clients. We
|
1919
|
+
# recommend you reference a building name in the organization's Resources
|
1920
|
+
# database.
|
1912
1921
|
# Corresponds to the JSON property `label`
|
1913
1922
|
# @return [String]
|
1914
1923
|
attr_accessor :label
|
@@ -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.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230825"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1282,15 +1282,15 @@ module Google
|
|
1282
1282
|
# Event types to return. Optional. Possible values are:
|
1283
1283
|
# - "default"
|
1284
1284
|
# - "focusTime"
|
1285
|
-
# - "outOfOffice"
|
1286
|
-
#
|
1287
|
-
#
|
1288
|
-
#
|
1289
|
-
#
|
1290
|
-
# event type:
|
1285
|
+
# - "outOfOffice"
|
1286
|
+
# - "workingLocation"This parameter can be repeated multiple times to return
|
1287
|
+
# events of different types. Currently, these are the only allowed values for
|
1288
|
+
# this field:
|
1289
|
+
# - ["default", "focusTime", "outOfOffice"]
|
1291
1290
|
# - ["default", "focusTime", "outOfOffice", "workingLocation"]
|
1292
|
-
# - ["workingLocation"]
|
1293
|
-
# be made available in
|
1291
|
+
# - ["workingLocation"] The default is ["default", "focusTime", "outOfOffice"].
|
1292
|
+
# Additional combinations of these four event types will be made available in
|
1293
|
+
# later releases.
|
1294
1294
|
# @param [String] i_cal_uid
|
1295
1295
|
# Specifies an event ID in the iCalendar format to be provided in the response.
|
1296
1296
|
# Optional. Use this if you want to search for an event by its iCalendar ID.
|
@@ -1679,15 +1679,15 @@ module Google
|
|
1679
1679
|
# Event types to return. Optional. Possible values are:
|
1680
1680
|
# - "default"
|
1681
1681
|
# - "focusTime"
|
1682
|
-
# - "outOfOffice"
|
1683
|
-
#
|
1684
|
-
#
|
1685
|
-
#
|
1686
|
-
#
|
1687
|
-
# event type:
|
1682
|
+
# - "outOfOffice"
|
1683
|
+
# - "workingLocation"This parameter can be repeated multiple times to return
|
1684
|
+
# events of different types. Currently, these are the only allowed values for
|
1685
|
+
# this field:
|
1686
|
+
# - ["default", "focusTime", "outOfOffice"]
|
1688
1687
|
# - ["default", "focusTime", "outOfOffice", "workingLocation"]
|
1689
|
-
# - ["workingLocation"]
|
1690
|
-
# be made available in
|
1688
|
+
# - ["workingLocation"] The default is ["default", "focusTime", "outOfOffice"].
|
1689
|
+
# Additional combinations of these four event types will be made available in
|
1690
|
+
# later releases.
|
1691
1691
|
# @param [String] i_cal_uid
|
1692
1692
|
# Specifies an event ID in the iCalendar format to be provided in the response.
|
1693
1693
|
# Optional. Use this if you want to search for an event by its iCalendar ID.
|
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.33.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: 2023-
|
11
|
+
date: 2023-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-calendar_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-calendar_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-calendar_v3/v0.33.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-calendar_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Calendar API V3
|