@maxim_mazurok/gapi.client.calendar-v3 0.0.20240816 → 0.0.20240906
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 +5 -4
- 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: 20240906
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -417,11 +417,12 @@ declare namespace gapi.client {
|
|
|
417
417
|
etag?: string;
|
|
418
418
|
/**
|
|
419
419
|
* Specific type of the event. This cannot be modified after the event is created. Possible values are:
|
|
420
|
+
* - "birthday" - A special all-day event with an annual recurrence.
|
|
420
421
|
* - "default" - A regular event or not further specified.
|
|
421
|
-
* - "outOfOffice" - An out-of-office event.
|
|
422
422
|
* - "focusTime" - A focus-time event.
|
|
423
|
-
* - "workingLocation" - A working location event.
|
|
424
423
|
* - "fromGmail" - An event from Gmail. This type of event cannot be created.
|
|
424
|
+
* - "outOfOffice" - An out-of-office event.
|
|
425
|
+
* - "workingLocation" - A working location event.
|
|
425
426
|
*/
|
|
426
427
|
eventType?: string;
|
|
427
428
|
/** Extended properties of the event. */
|
|
@@ -1893,7 +1894,7 @@ declare namespace gapi.client {
|
|
|
1893
1894
|
/** Deprecated. Please use quotaUser instead. */
|
|
1894
1895
|
userIp?: string;
|
|
1895
1896
|
}): Request<Events>;
|
|
1896
|
-
/** Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved;
|
|
1897
|
+
/** Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; birthday, focusTime, fromGmail, outOfOffice and workingLocation events cannot be moved. */
|
|
1897
1898
|
move(request?: {
|
|
1898
1899
|
/** Data format for the response. */
|
|
1899
1900
|
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;
|
|
247
|
+
Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; birthday, focusTime, fromGmail, outOfOffice and workingLocation events cannot be moved.
|
|
248
248
|
*/
|
|
249
249
|
await gapi.client.calendar.events.move({
|
|
250
250
|
calendarId: 'calendarId',
|