@maxim_mazurok/gapi.client.calendar-v3 0.0.20240419 → 0.0.20240517
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.
- package/index.d.ts +3 -2
- package/package.json +1 -1
- package/readme.md +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://calendar-json.googleapis.com/$discovery/rest?version=v3
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240517
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -421,6 +421,7 @@ declare namespace gapi.client {
|
|
|
421
421
|
* - "outOfOffice" - An out-of-office event.
|
|
422
422
|
* - "focusTime" - A focus-time event.
|
|
423
423
|
* - "workingLocation" - A working location event.
|
|
424
|
+
* - "fromGmail" - An event from Gmail. This type of event cannot be created.
|
|
424
425
|
*/
|
|
425
426
|
eventType?: string;
|
|
426
427
|
/** Extended properties of the event. */
|
|
@@ -1892,7 +1893,7 @@ declare namespace gapi.client {
|
|
|
1892
1893
|
/** Deprecated. Please use quotaUser instead. */
|
|
1893
1894
|
userIp?: string;
|
|
1894
1895
|
}): Request<Events>;
|
|
1895
|
-
/** Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; outOfOffice, focusTime and
|
|
1896
|
+
/** Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; outOfOffice, focusTime, workingLocation and fromGmail events cannot be moved. */
|
|
1896
1897
|
move(request?: {
|
|
1897
1898
|
/** Data format for the response. */
|
|
1898
1899
|
alt?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -244,7 +244,7 @@ Returns events on the specified calendar.
|
|
|
244
244
|
await gapi.client.calendar.events.list({calendarId: 'calendarId'});
|
|
245
245
|
|
|
246
246
|
/*
|
|
247
|
-
Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; outOfOffice, focusTime and
|
|
247
|
+
Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; outOfOffice, focusTime, workingLocation and fromGmail events cannot be moved.
|
|
248
248
|
*/
|
|
249
249
|
await gapi.client.calendar.events.move({
|
|
250
250
|
calendarId: 'calendarId',
|