diff --git a/src/GamCommands.txt b/src/GamCommands.txt index 66db1e19..ccb337d5 100644 --- a/src/GamCommands.txt +++ b/src/GamCommands.txt @@ -1665,11 +1665,15 @@ gam show analyticdatastreams ::= | | | | - ::= editor|freebusy|freebusyreader|owner|reader|writer|none - ::= |user:|group:|domain:|domain|default - ::= "(,)*" - ::= - | | | | + ::= + editor|freebusy|freebusyreader|owner|reader|writer|writerwithoutprivateaccess|none + ::= + |user:|group:| + domain:|domain|default + ::= + "(,)*" +::= + | | | gam calendars create|add acls|calendaracls [sendnotifications ] gam calendars update acls|calendaracls [sendnotifications ] @@ -4894,10 +4898,15 @@ gam print resources [todrive *] [allfields| [formatjson [quotechar ]] [showitemcountonly] - ::= editor|freebusy|freebusyreader|owner|reader|writer|none - ::= |user:|group:|domain:|domain|default - ::= "(,)*" - ::= | | | | + ::= + editor|freebusy|freebusyreader|owner|reader|writer|writerwithoutprivateaccess|none + ::= + |user:|group:| + domain:|domain|default + ::= + "(,)*" +::= + | | | gam resource create|add acls|calendaracls [sendnotifications ] gam resource update acls|calendaracls [sendnotifications ] @@ -6126,7 +6135,8 @@ gam print businessprofileaccounts [todrive *] # Users - Calendars - ::= editor|freebusy|freebusyreader|owner|reader|writer + ::= + editor|freebusy|freebusyreader|owner|reader|writer|writerwithoutprivateaccess|none ::= (minaccessrole )| diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index 46bda99f..c2eb2934 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,8 @@ +7.44.03 + +Added `writerwithoutprivateaccess` to ``; this will become effective 2026-06-29. +* See: https://developers.google.com/workspace/calendar/release-notes#June_01_2026 + 7.44.02 Added fields `bluetoothadapterinfo` and `osversioncompliance` to `` for use diff --git a/src/gam/__init__.py b/src/gam/__init__.py index fe2fb88b..a3f1fec0 100755 --- a/src/gam/__init__.py +++ b/src/gam/__init__.py @@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki """ __author__ = 'GAM Team ' -__version__ = '7.44.02' +__version__ = '7.44.03' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' # pylint: disable=wrong-import-position @@ -40994,6 +40994,7 @@ CALENDAR_ACL_ROLES_MAP = { 'read': 'reader', 'reader': 'reader', 'writer': 'writer', + 'writerwithoutprivateaccess': 'writerWithoutPrivateAccess', 'none': 'none', }