@maxim_mazurok/gapi.client.calendar-v3 0.2.20260702 → 0.2.20260708
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 +14 -4
- package/package.json +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: 20260708
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -48,6 +48,7 @@ declare namespace gapi.client {
|
|
|
48
48
|
* - "none" - Provides no access.
|
|
49
49
|
* - "freeBusyReader" - Provides read access to free/busy information.
|
|
50
50
|
* - "reader" - Provides read access to the calendar. Private events will appear to users with reader access, but event details will be hidden.
|
|
51
|
+
* - "writerWithoutPrivateAccess" - Provides read and write access to the calendar. Private events will appear to users with writerWithoutPrivateAccess access, but event details will be hidden.
|
|
51
52
|
* - "writer" - Provides read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible. Provides read access to the calendar's ACLs.
|
|
52
53
|
* - "owner" - Provides manager access to the calendar. This role has all of the permissions of the writer role with the additional ability to modify access levels of other users.
|
|
53
54
|
* Important: the owner role is different from the calendar's data owner. A calendar has a single data owner, but can have multiple users with owner role.
|
|
@@ -108,6 +109,7 @@ declare namespace gapi.client {
|
|
|
108
109
|
* The effective access role that the authenticated user has on the calendar. Read-only. Possible values are:
|
|
109
110
|
* - "freeBusyReader" - Provides read access to free/busy information.
|
|
110
111
|
* - "reader" - Provides read access to the calendar. Private events will appear to users with reader access, but event details will be hidden.
|
|
112
|
+
* - "writerWithoutPrivateAccess" - Provides read and write access to the calendar. Private events will appear to users with writerWithoutPrivateAccess access, but event details will be hidden.
|
|
111
113
|
* - "writer" - Provides read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible.
|
|
112
114
|
* - "owner" - Provides manager access to the calendar. This role has all of the permissions of the writer role with the additional ability to see and modify access levels of other users.
|
|
113
115
|
* Important: the owner role is different from the calendar's data owner. A calendar has a single data owner, but can have multiple users with owner role.
|
|
@@ -575,6 +577,7 @@ declare namespace gapi.client {
|
|
|
575
577
|
* - "public" - The event is public and event details are visible to all readers of the calendar.
|
|
576
578
|
* - "private" - The event is private and only event attendees may view event details.
|
|
577
579
|
* - "confidential" - The event is private. This value is provided for compatibility reasons.
|
|
580
|
+
* Note on recurring events: Changing the visibility of a single instance of a recurring event can affect all instances of the series. If the new setting is more restrictive (e.g. from public to private), it is applied to all instances. If the new setting is less restrictive (e.g. from private to public), the change is ignored. To make a recurring event less restrictive, you must update the parent recurring event.
|
|
578
581
|
*/
|
|
579
582
|
visibility?: string;
|
|
580
583
|
/** Working location event data. */
|
|
@@ -708,6 +711,7 @@ declare namespace gapi.client {
|
|
|
708
711
|
* - "none" - The user has no access.
|
|
709
712
|
* - "freeBusyReader" - The user has read access to free/busy information.
|
|
710
713
|
* - "reader" - The user has read access to the calendar. Private events will appear to users with reader access, but event details will be hidden.
|
|
714
|
+
* - "writerWithoutPrivateAccess" - The user has read and write access to the calendar. Private events will appear to users with writerWithoutPrivateAccess access, but event details will be hidden.
|
|
711
715
|
* - "writer" - The user has read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible.
|
|
712
716
|
* - "owner" - The user has manager access to the calendar. This role has all of the permissions of the writer role with the additional ability to see and modify access levels of other users.
|
|
713
717
|
* Important: the owner role is different from the calendar's data owner. A calendar has a single data owner, but can have multiple users with owner role.
|
|
@@ -1242,9 +1246,11 @@ declare namespace gapi.client {
|
|
|
1242
1246
|
showDeleted?: boolean;
|
|
1243
1247
|
/** Whether to show hidden entries. Optional. The default is False. */
|
|
1244
1248
|
showHidden?: boolean;
|
|
1249
|
+
/** Whether to show only entries for calendars from the organization. This parameter is only applicable to Google Workspace users. Optional. The default is False. */
|
|
1250
|
+
showOwnOrganizationOnly?: boolean;
|
|
1245
1251
|
/**
|
|
1246
1252
|
* Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. If only read-only fields such as calendar properties or ACLs have changed, the entry won't be returned. All entries deleted and hidden since the previous list request will always be in the result set and it is not allowed to set showDeleted neither showHidden to False.
|
|
1247
|
-
* To ensure client state consistency minAccessRole query
|
|
1253
|
+
* To ensure client state consistency minAccessRole and showOwnOrganizationOnly query parameters cannot be specified together with nextSyncToken.
|
|
1248
1254
|
* If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken.
|
|
1249
1255
|
* Learn more about incremental synchronization.
|
|
1250
1256
|
* Optional. The default is to return all entries.
|
|
@@ -1374,9 +1380,11 @@ declare namespace gapi.client {
|
|
|
1374
1380
|
showDeleted?: boolean;
|
|
1375
1381
|
/** Whether to show hidden entries. Optional. The default is False. */
|
|
1376
1382
|
showHidden?: boolean;
|
|
1383
|
+
/** Whether to show only entries for calendars from the organization. This parameter is only applicable to Google Workspace users. Optional. The default is False. */
|
|
1384
|
+
showOwnOrganizationOnly?: boolean;
|
|
1377
1385
|
/**
|
|
1378
1386
|
* Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. If only read-only fields such as calendar properties or ACLs have changed, the entry won't be returned. All entries deleted and hidden since the previous list request will always be in the result set and it is not allowed to set showDeleted neither showHidden to False.
|
|
1379
|
-
* To ensure client state consistency minAccessRole query
|
|
1387
|
+
* To ensure client state consistency minAccessRole and showOwnOrganizationOnly query parameters cannot be specified together with nextSyncToken.
|
|
1380
1388
|
* If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken.
|
|
1381
1389
|
* Learn more about incremental synchronization.
|
|
1382
1390
|
* Optional. The default is to return all entries.
|
|
@@ -1416,9 +1424,11 @@ declare namespace gapi.client {
|
|
|
1416
1424
|
showDeleted?: boolean;
|
|
1417
1425
|
/** Whether to show hidden entries. Optional. The default is False. */
|
|
1418
1426
|
showHidden?: boolean;
|
|
1427
|
+
/** Whether to show only entries for calendars from the organization. This parameter is only applicable to Google Workspace users. Optional. The default is False. */
|
|
1428
|
+
showOwnOrganizationOnly?: boolean;
|
|
1419
1429
|
/**
|
|
1420
1430
|
* Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. If only read-only fields such as calendar properties or ACLs have changed, the entry won't be returned. All entries deleted and hidden since the previous list request will always be in the result set and it is not allowed to set showDeleted neither showHidden to False.
|
|
1421
|
-
* To ensure client state consistency minAccessRole query
|
|
1431
|
+
* To ensure client state consistency minAccessRole and showOwnOrganizationOnly query parameters cannot be specified together with nextSyncToken.
|
|
1422
1432
|
* If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken.
|
|
1423
1433
|
* Learn more about incremental synchronization.
|
|
1424
1434
|
* Optional. The default is to return all entries.
|