From be0dcbc8d479b5e9e1da7adcea0d2e73387248c1 Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Tue, 18 Mar 2025 12:24:31 -0700 Subject: [PATCH] Added new GWSE licenses --- src/GamCommands.txt | 4 ++++ src/GamUpdate.txt | 10 ++++++++++ src/gam/__init__.py | 2 +- src/gam/gamlib/glskus.py | 5 ++--- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/src/GamCommands.txt b/src/GamCommands.txt index 7e31a065..87cd8ee1 100644 --- a/src/GamCommands.txt +++ b/src/GamCommands.txt @@ -281,11 +281,15 @@ If an item contains spaces, it should be surrounded by ". gsuitebasic | gafb | gafw | basic | Google-Apps-For-Business | gsuitebusiness | gau | gsb | unlimited | Google-Apps-Unlimited | gsuitebusinessarchived | gsbau | businessarchived | 1010340002 | Google Workspace Business - Archived User | + gsuiteedu | gafe | gsuiteeducation | Google-Apps-For-Education | gsuiteenterprisearchived | gseau | enterprisearchived | 1010340001 | Google Workspace Enterprise Plus - Archived User | gsuiteenterpriseeducation | gsefe | e4e | 1010310002 | Google Workspace for Education Plus - Legacy | gsuiteenterpriseeducationstudent | gsefes | e4es | 1010310003 | Google Workspace for Education Plus - Legacy (Student) | gsuitegov | gafg | gsuitegovernment | Google-Apps-For-Government | gsuitelite | gal | gsl | lite | Google-Apps-Lite | + gwef | workspaceeducationfundamentals | 1010070001 | Google Workspace for Education Fundamentals | + gwefau | gwefarchived | workspaceeducationfundamentalsarchived | 1010340007 | Google Workspace for Education Fundamentals - Archived User | + gwegmo | workspaceeducationgmailonly | 1010070004 | Google Workspace for Education Gmail Only | gwep | workspaceeducationplus | 1010310008 | Google Workspace for Education Plus | gwepstaff | workspaceeducationplusstaff | 1010310009 | Google Workspace for Education Plus (Staff) | gwepstudent | workspaceeducationplusstudent | 1010310010 | Google Workspace for Education Plus (Extra Student)| diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index 57adc309..6ee88cb0 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,13 @@ +7.05.11 + +Added the following License SKUs: +``` +ProductId SKUId Display Name +Google-Apps 1010070001 Google Workspace for Education Fundamentals +Google-Apps 1010070004 Google Workspace for Education Gmail Only +101034 1010340007 Google Workspace for Education Fundamentals - Archived User +``` + 7.05.10 Updated various chat space commands to handle the following error: diff --git a/src/gam/__init__.py b/src/gam/__init__.py index 9966ebd9..97da30fa 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.10' +__version__ = '7.05.11' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' #pylint: disable=wrong-import-position diff --git a/src/gam/gamlib/glskus.py b/src/gam/gamlib/glskus.py index fb10be7b..3099cabd 100644 --- a/src/gam/gamlib/glskus.py +++ b/src/gam/gamlib/glskus.py @@ -24,7 +24,6 @@ _PRODUCTS = { '101001': 'Cloud Identity Free', '101005': 'Cloud Identity Premium', - '101007': 'Google Workspace for Education', '101031': 'Google Workspace for Education', '101033': 'Google Voice', '101034': 'Google Workspace Archived User', @@ -49,9 +48,9 @@ _SKUS = { '1010050001': { 'product': '101005', 'aliases': ['identitypremium', 'cloudidentitypremium'], 'displayName': 'Cloud Identity Premium'}, '1010070001': { - 'product': '101007', 'aliases': ['gwef', 'workspaceeducationfundamentals'], 'displayName': 'Google Workspace for Education Fundamentals'}, + 'product': 'Google-Apps', 'aliases': ['gwef', 'workspaceeducationfundamentals'], 'displayName': 'Google Workspace for Education Fundamentals'}, '1010070004': { - 'product': '101007', 'aliases': ['gwegmo', 'workspaceeducationgmailonly'], 'displayName': 'Google Workspace for Education Gmail Only'}, + 'product': 'Google-Apps', 'aliases': ['gwegmo', 'workspaceeducationgmailonly'], 'displayName': 'Google Workspace for Education Gmail Only'}, '1010310002': { 'product': '101031', 'aliases': ['gsefe', 'e4e', 'gsuiteenterpriseeducation'], 'displayName': 'Google Workspace for Education Plus - Legacy'}, '1010310003': {