@maxim_mazurok/gapi.client.calendar-v3 0.0.20230324 → 0.0.20230406
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 +28 -7
- 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: 20230406
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1989,8 +1989,15 @@ declare namespace gapi.client {
|
|
|
1989
1989
|
*/
|
|
1990
1990
|
calendarId: string;
|
|
1991
1991
|
/**
|
|
1992
|
-
* Event types to return. Optional.
|
|
1993
|
-
*
|
|
1992
|
+
* Event types to return. Optional. Possible values are:
|
|
1993
|
+
* - "default"
|
|
1994
|
+
* - "focusTime"
|
|
1995
|
+
* - "outOfOffice"This parameter can be repeated multiple times to return events of different types. Currently, this is the only allowed value for this field:
|
|
1996
|
+
* - ["default", "focusTime", "outOfOffice"] This value will be the default.
|
|
1997
|
+
*
|
|
1998
|
+
* If you're enrolled in the Working Location developer preview program, in addition to the default value above you can also set the "workingLocation" event type:
|
|
1999
|
+
* - ["default", "focusTime", "outOfOffice", "workingLocation"]
|
|
2000
|
+
* - ["workingLocation"] Additional combinations of these 4 event types will be made available in later releases. Developer Preview.
|
|
1994
2001
|
*/
|
|
1995
2002
|
eventTypes?: string | string[];
|
|
1996
2003
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2351,8 +2358,15 @@ declare namespace gapi.client {
|
|
|
2351
2358
|
*/
|
|
2352
2359
|
calendarId: string;
|
|
2353
2360
|
/**
|
|
2354
|
-
* Event types to return. Optional.
|
|
2355
|
-
*
|
|
2361
|
+
* Event types to return. Optional. Possible values are:
|
|
2362
|
+
* - "default"
|
|
2363
|
+
* - "focusTime"
|
|
2364
|
+
* - "outOfOffice"This parameter can be repeated multiple times to return events of different types. Currently, this is the only allowed value for this field:
|
|
2365
|
+
* - ["default", "focusTime", "outOfOffice"] This value will be the default.
|
|
2366
|
+
*
|
|
2367
|
+
* If you're enrolled in the Working Location developer preview program, in addition to the default value above you can also set the "workingLocation" event type:
|
|
2368
|
+
* - ["default", "focusTime", "outOfOffice", "workingLocation"]
|
|
2369
|
+
* - ["workingLocation"] Additional combinations of these 4 event types will be made available in later releases. Developer Preview.
|
|
2356
2370
|
*/
|
|
2357
2371
|
eventTypes?: string | string[];
|
|
2358
2372
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2459,8 +2473,15 @@ declare namespace gapi.client {
|
|
|
2459
2473
|
*/
|
|
2460
2474
|
calendarId: string;
|
|
2461
2475
|
/**
|
|
2462
|
-
* Event types to return. Optional.
|
|
2463
|
-
*
|
|
2476
|
+
* Event types to return. Optional. Possible values are:
|
|
2477
|
+
* - "default"
|
|
2478
|
+
* - "focusTime"
|
|
2479
|
+
* - "outOfOffice"This parameter can be repeated multiple times to return events of different types. Currently, this is the only allowed value for this field:
|
|
2480
|
+
* - ["default", "focusTime", "outOfOffice"] This value will be the default.
|
|
2481
|
+
*
|
|
2482
|
+
* If you're enrolled in the Working Location developer preview program, in addition to the default value above you can also set the "workingLocation" event type:
|
|
2483
|
+
* - ["default", "focusTime", "outOfOffice", "workingLocation"]
|
|
2484
|
+
* - ["workingLocation"] Additional combinations of these 4 event types will be made available in later releases. Developer Preview.
|
|
2464
2485
|
*/
|
|
2465
2486
|
eventTypes?: string | string[];
|
|
2466
2487
|
/** 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: 20230406
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|