diff --git a/src/GamCommands.txt b/src/GamCommands.txt index afc05f6d..7a67511b 100644 --- a/src/GamCommands.txt +++ b/src/GamCommands.txt @@ -4475,6 +4475,7 @@ gam report [todrive *] app_maker| apps_scripts| calendar| + chat| classroom| cros| device_management| @@ -4495,6 +4496,7 @@ gam report customers|customer|domain [todrive *] ::= accounts| + chat| classroom| docs| drive| diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index 1a7aa7df..019908a7 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,10 @@ +7.05.02 + +Chat usage reports are now available. Added `chat` to `` and `` +for use in `gam report customer|user`. + +* https://workspaceupdates.googleblog.com/2025/02/chat-usage-analytics-updates.html + 7.05.01 Updated from `v1beta1` to `v1` for `Cloud Identity - Policy`. diff --git a/src/gam/__init__.py b/src/gam/__init__.py index 02cf85b6..a9152437 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.05.01' +__version__ = '7.05.02' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' #pylint: disable=wrong-import-position @@ -13109,6 +13109,7 @@ CUSTOMER_REPORT_SERVICES = { 'app_maker', 'apps_scripts', 'calendar', + 'chat', 'classroom', 'cros', 'device_management', @@ -13122,6 +13123,7 @@ CUSTOMER_REPORT_SERVICES = { USER_REPORT_SERVICES = { 'accounts', + 'chat', 'classroom', 'docs', 'drive',