diff --git a/src/GamCommands.txt b/src/GamCommands.txt index 0b057985..3cafb138 100644 --- a/src/GamCommands.txt +++ b/src/GamCommands.txt @@ -5693,6 +5693,7 @@ gam download storagefile fullname| gender| givenname|firstname| + guestaccountinfo| id| ims|im| includeinglobaladdresslist|gal| @@ -5700,6 +5701,7 @@ gam download storagefile isdelegatedadmin|admin|isadmin| isenforcedin2sv|is2svenforced| isenrolledin2sv|is2svenrolled| + isguestuser| ismailboxsetup| keyword|keywords| language|languages| diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index 282acf57..8360fb1d 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,9 @@ +7.34.07 + +Added the following items to ``: +* `guestaccountinfo` - Additional guest-related metadata fields +* `isguestuser` - Indicates if the inserted user is a guest + 7.34.06 Added option `copyfolderpermissions []` to `gam copy|move drivefile`. diff --git a/src/gam/__init__.py b/src/gam/__init__.py index 5ad13f01..4de7d3f9 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.34.06' +__version__ = '7.34.07' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' # pylint: disable=wrong-import-position @@ -46624,8 +46624,9 @@ USER_FIELDS_CHOICE_MAP = { 'firstname': 'name.givenName', 'fullname': 'name.fullName', 'gal': 'includeInGlobalAddressList', - 'givenname': 'name.givenName', 'gender': ['gender.type', 'gender.customGender', 'gender.addressMeAs'], + 'givenname': 'name.givenName', + 'guestaccountinfo': 'guestAccountInfo', 'id': 'id', 'im': 'ims', 'ims': 'ims', @@ -46635,6 +46636,7 @@ USER_FIELDS_CHOICE_MAP = { 'isdelegatedadmin': ['isAdmin', 'isDelegatedAdmin'], 'isenforcedin2sv': 'isEnforcedIn2Sv', 'isenrolledin2sv': 'isEnrolledIn2Sv', + 'isguestuser': 'isGuestUser', 'is2svenforced': 'isEnforcedIn2Sv', 'is2svenrolled': 'isEnrolledIn2Sv', 'ismailboxsetup': 'isMailboxSetup',