google-apis-calendar_v3 0.21.0 → 0.23.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2378171e1ad8daf0ccc866f35fc3816287cf28bcd85be459cbb2215d21830c8
|
4
|
+
data.tar.gz: 551ccec8f00b3120795c8bdf54228cdee2c8bbc5a9d39f30986ef9563e822df7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4d328be55b918aee00c4c22f8b0bcad8c9b5e73277f6a9ad28c65d7352dd2b384cf090c0be9b3f2c30136183e220d29afbec61cf03039eab9af5aea744ec852
|
7
|
+
data.tar.gz: b705f43889ae909cb756b50e7a98fb31d060daef579b64cc6566439faa52f88ad7e14a6dc3db4f14a0f19b87ac538dd5a8620c846552cfaf6727c57927e06e08
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-calendar_v3
|
2
2
|
|
3
|
+
### v0.23.0 (2022-09-21)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.10.0
|
6
|
+
|
7
|
+
### v0.22.0 (2022-07-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220715
|
10
|
+
* Regenerated using generator version 0.9.0
|
11
|
+
|
3
12
|
### v0.21.0 (2022-07-01)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.8.0
|
@@ -1163,10 +1163,12 @@ module Google
|
|
1163
1163
|
# Event unique identifier as defined in RFC5545. It is used to uniquely identify
|
1164
1164
|
# events accross calendaring systems and must be supplied when importing events
|
1165
1165
|
# via the import method.
|
1166
|
-
# Note that the
|
1166
|
+
# Note that the iCalUID and the id are not identical and only one of them should
|
1167
1167
|
# be supplied at event creation time. One difference in their semantics is that
|
1168
1168
|
# in recurring events, all occurrences of one event have different ids while
|
1169
|
-
# they all share the same
|
1169
|
+
# they all share the same iCalUIDs. To retrieve an event using its iCalUID, call
|
1170
|
+
# the events.list method using the iCalUID parameter. To retrieve an event using
|
1171
|
+
# its id, call the events.get method.
|
1170
1172
|
# Corresponds to the JSON property `iCalUID`
|
1171
1173
|
# @return [String]
|
1172
1174
|
attr_accessor :i_cal_uid
|
@@ -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.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220715"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1025,7 +1025,8 @@ module Google
|
|
1025
1025
|
execute_or_queue_command(command, &block)
|
1026
1026
|
end
|
1027
1027
|
|
1028
|
-
# Returns an event.
|
1028
|
+
# Returns an event based on its Google Calendar ID. To retrieve an event using
|
1029
|
+
# its iCalendar ID, call the events.list method using the iCalUID parameter.
|
1029
1030
|
# @param [String] calendar_id
|
1030
1031
|
# Calendar identifier. To retrieve calendar IDs call the calendarList.list
|
1031
1032
|
# method. If you want to access the primary calendar of the currently logged in
|
@@ -1278,8 +1279,8 @@ module Google
|
|
1278
1279
|
# the organizer, creator and attendees, even if no real email address is
|
1279
1280
|
# available (i.e. a generated, non-working value will be provided).
|
1280
1281
|
# @param [String] i_cal_uid
|
1281
|
-
# Specifies event ID in the iCalendar format to be
|
1282
|
-
# Optional.
|
1282
|
+
# Specifies an event ID in the iCalendar format to be provided in the response.
|
1283
|
+
# Optional. Use this if you want to search for an event by its iCalendar ID.
|
1283
1284
|
# @param [Fixnum] max_attendees
|
1284
1285
|
# The maximum number of attendees to include in the response. If there are more
|
1285
1286
|
# than the specified number of attendees, only the participant is returned.
|
@@ -1660,8 +1661,8 @@ module Google
|
|
1660
1661
|
# the organizer, creator and attendees, even if no real email address is
|
1661
1662
|
# available (i.e. a generated, non-working value will be provided).
|
1662
1663
|
# @param [String] i_cal_uid
|
1663
|
-
# Specifies event ID in the iCalendar format to be
|
1664
|
-
# Optional.
|
1664
|
+
# Specifies an event ID in the iCalendar format to be provided in the response.
|
1665
|
+
# Optional. Use this if you want to search for an event by its iCalendar ID.
|
1665
1666
|
# @param [Fixnum] max_attendees
|
1666
1667
|
# The maximum number of attendees to include in the response. If there are more
|
1667
1668
|
# than the specified number of attendees, only the participant is returned.
|
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.23.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: 2022-
|
11
|
+
date: 2022-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.9.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 0.9.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.23.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: []
|