@maxim_mazurok/gapi.client.calendar-v3 0.0.20230313 → 0.0.20230317
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 +9 -9
- package/package.json +1 -1
- package/tests.ts +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: 20230317
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -449,7 +449,7 @@ declare namespace gapi.client {
|
|
|
449
449
|
* - "default" - A regular event or not further specified.
|
|
450
450
|
* - "outOfOffice" - An out-of-office event.
|
|
451
451
|
* - "focusTime" - A focus-time event.
|
|
452
|
-
* - "workingLocation" - A working location event.
|
|
452
|
+
* - "workingLocation" - A working location event. Developer Preview.
|
|
453
453
|
*/
|
|
454
454
|
eventType?: string;
|
|
455
455
|
/** Extended properties of the event. */
|
|
@@ -608,7 +608,7 @@ declare namespace gapi.client {
|
|
|
608
608
|
* - "confidential" - The event is private. This value is provided for compatibility reasons.
|
|
609
609
|
*/
|
|
610
610
|
visibility?: string;
|
|
611
|
-
/** Working Location event data. Read-only. */
|
|
611
|
+
/** Developer Preview: Working Location event data. Read-only. */
|
|
612
612
|
workingLocationProperties?: EventWorkingLocationProperties;
|
|
613
613
|
}
|
|
614
614
|
interface EventAttachment {
|
|
@@ -1989,8 +1989,8 @@ declare namespace gapi.client {
|
|
|
1989
1989
|
*/
|
|
1990
1990
|
calendarId: string;
|
|
1991
1991
|
/**
|
|
1992
|
-
* Event types to return. Optional. The default is ["default", "outOfOffice", "focusTime"].
|
|
1993
|
-
*
|
|
1992
|
+
* Event types to return. Optional. The default is ["default", "outOfOffice", "focusTime"]. Only the default value is available, unless you're enrolled in the Working Locations
|
|
1993
|
+
* developer preview. Developer Preview.
|
|
1994
1994
|
*/
|
|
1995
1995
|
eventTypes?: string | string[];
|
|
1996
1996
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2351,8 +2351,8 @@ declare namespace gapi.client {
|
|
|
2351
2351
|
*/
|
|
2352
2352
|
calendarId: string;
|
|
2353
2353
|
/**
|
|
2354
|
-
* Event types to return. Optional. The default is ["default", "outOfOffice", "focusTime"].
|
|
2355
|
-
*
|
|
2354
|
+
* Event types to return. Optional. The default is ["default", "outOfOffice", "focusTime"]. Only the default value is available, unless you're enrolled in the Working Locations
|
|
2355
|
+
* developer preview. Developer Preview.
|
|
2356
2356
|
*/
|
|
2357
2357
|
eventTypes?: string | string[];
|
|
2358
2358
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2459,8 +2459,8 @@ declare namespace gapi.client {
|
|
|
2459
2459
|
*/
|
|
2460
2460
|
calendarId: string;
|
|
2461
2461
|
/**
|
|
2462
|
-
* Event types to return. Optional. The default is ["default", "outOfOffice", "focusTime"].
|
|
2463
|
-
*
|
|
2462
|
+
* Event types to return. Optional. The default is ["default", "outOfOffice", "focusTime"]. Only the default value is available, unless you're enrolled in the Working Locations
|
|
2463
|
+
* developer preview. Developer Preview.
|
|
2464
2464
|
*/
|
|
2465
2465
|
eventTypes?: string | string[];
|
|
2466
2466
|
/** Selector specifying which fields to include in a partial response. */
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230317
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|