gam7 7.10.2__py3-none-any.whl → 7.10.3__py3-none-any.whl

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.

Potentially problematic release.


This version of gam7 might be problematic. Click here for more details.

gam/__init__.py CHANGED
@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
25
25
  """
26
26
 
27
27
  __author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
28
- __version__ = '7.10.02'
28
+ __version__ = '7.10.03'
29
29
  __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
30
30
 
31
31
  #pylint: disable=wrong-import-position
@@ -70267,7 +70267,8 @@ def archiveMessages(users):
70267
70267
  listResult = callGAPIpages(service, 'list', parameters['listType'],
70268
70268
  pageMessage=getPageMessageForWhom(), maxItems=parameters['maxItems'],
70269
70269
  throwReasons=GAPI.GMAIL_THROW_REASONS+GAPI.GMAIL_LIST_THROW_REASONS,
70270
- userId='me', q=parameters['query'], fields=parameters['fields'],
70270
+ userId='me', q=parameters['query'], labelIds=parameters['labelIds'],
70271
+ fields=parameters['fields'],
70271
70272
  maxResults=GC.Values[GC.MESSAGE_MAX_RESULTS])
70272
70273
  messageIds = [message['id'] for message in listResult]
70273
70274
  except (GAPI.failedPrecondition, GAPI.permissionDenied, GAPI.invalid, GAPI.invalidArgument) as e:
@@ -70456,7 +70457,8 @@ def _processMessagesThreads(users, entityType):
70456
70457
  listResult = callGAPIpages(service, 'list', parameters['listType'],
70457
70458
  pageMessage=getPageMessageForWhom(), maxItems=parameters['maxItems'],
70458
70459
  throwReasons=GAPI.GMAIL_THROW_REASONS+GAPI.GMAIL_LIST_THROW_REASONS,
70459
- userId='me', q=parameters['query'], fields=parameters['fields'], includeSpamTrash=includeSpamTrash,
70460
+ userId='me', q=parameters['query'], labelIds=parameters['labelIds'],
70461
+ fields=parameters['fields'], includeSpamTrash=includeSpamTrash,
70460
70462
  maxResults=GC.Values[GC.MESSAGE_MAX_RESULTS])
70461
70463
  messageIds = [message['id'] for message in listResult]
70462
70464
  else:
@@ -70572,7 +70574,8 @@ def exportMessagesThreads(users, entityType):
70572
70574
  listResult = callGAPIpages(service, 'list', parameters['listType'],
70573
70575
  pageMessage=getPageMessageForWhom(), maxItems=parameters['maxItems'],
70574
70576
  throwReasons=GAPI.GMAIL_THROW_REASONS+GAPI.GMAIL_LIST_THROW_REASONS,
70575
- userId='me', q=parameters['query'], fields=parameters['fields'], includeSpamTrash=includeSpamTrash,
70577
+ userId='me', q=parameters['query'], labelIds=parameters['labelIds'],
70578
+ fields=parameters['fields'], includeSpamTrash=includeSpamTrash,
70576
70579
  maxResults=GC.Values[GC.MESSAGE_MAX_RESULTS])
70577
70580
  entityIds = [entity['id'] for entity in listResult]
70578
70581
  except (GAPI.failedPrecondition, GAPI.permissionDenied, GAPI.invalid, GAPI.invalidArgument) as e:
@@ -70707,7 +70710,8 @@ def forwardMessagesThreads(users, entityType):
70707
70710
  listResult = callGAPIpages(service, 'list', parameters['listType'],
70708
70711
  pageMessage=getPageMessageForWhom(), maxItems=parameters['maxItems'],
70709
70712
  throwReasons=GAPI.GMAIL_THROW_REASONS+GAPI.GMAIL_LIST_THROW_REASONS,
70710
- userId='me', q=parameters['query'], fields=parameters['fields'], includeSpamTrash=includeSpamTrash,
70713
+ userId='me', q=parameters['query'], labelIds=parameters['labelIds'],
70714
+ fields=parameters['fields'], includeSpamTrash=includeSpamTrash,
70711
70715
  maxResults=GC.Values[GC.MESSAGE_MAX_RESULTS])
70712
70716
  entityIds = [entity['id'] for entity in listResult]
70713
70717
  except (GAPI.failedPrecondition, GAPI.permissionDenied, GAPI.invalid, GAPI.invalidArgument) as e:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gam7
3
- Version: 7.10.2
3
+ Version: 7.10.3
4
4
  Summary: CLI tool to manage Google Workspace
5
5
  Project-URL: Homepage, https://github.com/GAM-team/GAM
6
6
  Project-URL: Issues, https://github.com/GAM-team/GAM/issues
@@ -1,4 +1,4 @@
1
- gam/__init__.py,sha256=0tfJVNeH1l47v2sr8o2Pbji48zIKWeuOG3Tw71RedRs,3532028
1
+ gam/__init__.py,sha256=JzySfzYuzMeCm1P16rv9PgAlftWL4GJrCRyWK-bAc0U,3532300
2
2
  gam/__main__.py,sha256=amz0-959ph6zkZKqjaar4n60yho-T37w6qWI36qx0CA,1049
3
3
  gam/cacerts.pem,sha256=82Ak7btW_2XvocLUvAwPmpx8Chi0oqtZUG1gseLK_t4,50235
4
4
  gam/cbcm-v1.1beta1.json,sha256=xO5XloCQQULmPbFBx5bckdqmbLFQ7sJ2TImhE1ysDIY,19439
@@ -65,8 +65,8 @@ gam/googleapiclient/discovery_cache/base.py,sha256=yCDPtxnbNN-p5_9fzBacC6P3wcUPl
65
65
  gam/googleapiclient/discovery_cache/file_cache.py,sha256=sim3Mg4HgRYo3vX75jvcKy_aV568EvIrtBfvfbw-044,4774
66
66
  gam/iso8601/__init__.py,sha256=Z2PsYbXgAH5a5xzUvgczCboPzqWpm65kRcIngCnhViU,1218
67
67
  gam/iso8601/iso8601.py,sha256=Li2FHZ4sBTWuthuQhyCvmvj0j6At8JbGzkSv2fc2RHU,4384
68
- gam7-7.10.2.dist-info/METADATA,sha256=HWD4kRxt5a3KpGcPRUv3XlFABH_RP4OlazSgrReISEk,2978
69
- gam7-7.10.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
70
- gam7-7.10.2.dist-info/entry_points.txt,sha256=HVUM5J7dA8YwvJfG30jiLefR19ExMs387TWugWd9sf4,42
71
- gam7-7.10.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
72
- gam7-7.10.2.dist-info/RECORD,,
68
+ gam7-7.10.3.dist-info/METADATA,sha256=uS18Csl28kbbMa1NlMs6rWeBhzrf616tpHHQxDRr0KE,2978
69
+ gam7-7.10.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
70
+ gam7-7.10.3.dist-info/entry_points.txt,sha256=HVUM5J7dA8YwvJfG30jiLefR19ExMs387TWugWd9sf4,42
71
+ gam7-7.10.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
72
+ gam7-7.10.3.dist-info/RECORD,,
File without changes