python-gitlab 8.3.0__py3-none-any.whl → 8.4.0__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.
- gitlab/_version.py +1 -1
- gitlab/const.py +4 -1
- {python_gitlab-8.3.0.dist-info → python_gitlab-8.4.0.dist-info}/METADATA +1 -1
- {python_gitlab-8.3.0.dist-info → python_gitlab-8.4.0.dist-info}/RECORD +9 -9
- {python_gitlab-8.3.0.dist-info → python_gitlab-8.4.0.dist-info}/WHEEL +0 -0
- {python_gitlab-8.3.0.dist-info → python_gitlab-8.4.0.dist-info}/entry_points.txt +0 -0
- {python_gitlab-8.3.0.dist-info → python_gitlab-8.4.0.dist-info}/licenses/AUTHORS +0 -0
- {python_gitlab-8.3.0.dist-info → python_gitlab-8.4.0.dist-info}/licenses/COPYING +0 -0
- {python_gitlab-8.3.0.dist-info → python_gitlab-8.4.0.dist-info}/top_level.txt +0 -0
gitlab/_version.py
CHANGED
gitlab/const.py
CHANGED
|
@@ -7,13 +7,14 @@ class GitlabEnum(str, Enum):
|
|
|
7
7
|
"""An enum mixed in with str to make it JSON-serializable."""
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
# https://gitlab.com/gitlab-org/gitlab/-/blob/
|
|
10
|
+
# https://gitlab.com/gitlab-org/gitlab/-/blob/1fb8053d00f4085a8a99c3ab53dba46d2e765893/lib/gitlab/access.rb#L12-21
|
|
11
11
|
class AccessLevel(IntEnum):
|
|
12
12
|
NO_ACCESS = 0
|
|
13
13
|
MINIMAL_ACCESS = 5
|
|
14
14
|
GUEST = 10
|
|
15
15
|
PLANNER = 15
|
|
16
16
|
REPORTER = 20
|
|
17
|
+
SECURITY_MANAGER = 25
|
|
17
18
|
DEVELOPER = 30
|
|
18
19
|
MAINTAINER = 40
|
|
19
20
|
OWNER = 50
|
|
@@ -95,6 +96,7 @@ MINIMAL_ACCESS = AccessLevel.MINIMAL_ACCESS.value
|
|
|
95
96
|
GUEST_ACCESS = AccessLevel.GUEST.value
|
|
96
97
|
PLANNER_ACCESS = AccessLevel.PLANNER.value
|
|
97
98
|
REPORTER_ACCESS = AccessLevel.REPORTER.value
|
|
99
|
+
SECURITY_MANAGER_ACCESS = AccessLevel.SECURITY_MANAGER.value
|
|
98
100
|
DEVELOPER_ACCESS = AccessLevel.DEVELOPER.value
|
|
99
101
|
MAINTAINER_ACCESS = AccessLevel.MAINTAINER.value
|
|
100
102
|
OWNER_ACCESS = AccessLevel.OWNER.value
|
|
@@ -164,6 +166,7 @@ __all__ = [
|
|
|
164
166
|
"SEARCH_SCOPE_PROJECTS",
|
|
165
167
|
"SEARCH_SCOPE_USERS",
|
|
166
168
|
"SEARCH_SCOPE_WIKI_BLOBS",
|
|
169
|
+
"SECURITY_MANAGER_ACCESS",
|
|
167
170
|
"USER_AGENT",
|
|
168
171
|
"VISIBILITY_INTERNAL",
|
|
169
172
|
"VISIBILITY_PRIVATE",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-gitlab
|
|
3
|
-
Version: 8.
|
|
3
|
+
Version: 8.4.0
|
|
4
4
|
Summary: The python wrapper for the GitLab REST and GraphQL APIs.
|
|
5
5
|
Author-email: Gauvain Pocentek <gauvain@pocentek.net>
|
|
6
6
|
Maintainer-email: John Villalovos <john@sodarock.com>, Max Wittig <max.wittig@siemens.com>, Nejc Habjan <nejc.habjan@siemens.com>, Roger Meier <r.meier@siemens.com>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
gitlab/__init__.py,sha256=pdbvZNyXeXLn0fGXSTsBqi_ic7QLY7-9FL3uA6tvfdI,1416
|
|
2
2
|
gitlab/__main__.py,sha256=HTesNl0UAU6mPb9EXWkTKMy6Q6pAUxGi3iPnDHTE2uE,68
|
|
3
|
-
gitlab/_version.py,sha256=
|
|
3
|
+
gitlab/_version.py,sha256=4n9o7LTWOjsG7NaOuDXOxtIxg539aZYVaVpiOLOyNP0,249
|
|
4
4
|
gitlab/base.py,sha256=xynWUZcMIbxiWLO17nnvqCsbC-lBvsy0rvWtTJOpuug,13790
|
|
5
5
|
gitlab/cli.py,sha256=Bnu7T2RgDHUdxYiORBdwM4Qj9hYxoMNtmV9DtNYbWCI,12353
|
|
6
6
|
gitlab/client.py,sha256=afCv5MQFhZzC_Tqg7u5teecqa58-zOa7Cgo6vufHTNc,54521
|
|
7
7
|
gitlab/config.py,sha256=knMTQZSepMI9Z0_3CTgzqg5Wsrk_f3FNfxUM5RoeVx4,9022
|
|
8
|
-
gitlab/const.py,sha256=
|
|
8
|
+
gitlab/const.py,sha256=Ef-t2tym1OwE8tMFWxlqwRw9av_YmWmr5OcDldDxP60,5297
|
|
9
9
|
gitlab/exceptions.py,sha256=9Ql-z8qGQAmd_1rx1IAXzLRYmQThDeNq6vqOpCxXAjQ,8391
|
|
10
10
|
gitlab/mixins.py,sha256=YdE0YGlw9CnwylkKh8zarRC1uzWDRMyR_ZdcsGqTRkA,35764
|
|
11
11
|
gitlab/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -100,10 +100,10 @@ gitlab/v4/objects/triggers.py,sha256=1iYdlP8qpqwEctr6kKJSDanRulaKEHYnVwYwVGainI4
|
|
|
100
100
|
gitlab/v4/objects/users.py,sha256=0-aCUflt2Wzl338H_eIaTJ_ElsXwbkgoh_SEw38u6m0,20987
|
|
101
101
|
gitlab/v4/objects/variables.py,sha256=W0WlSn-al_MYJsbV-fv0pd4mwJiisq7T68H6DkHQMFs,2769
|
|
102
102
|
gitlab/v4/objects/wikis.py,sha256=fR4QG4WIBeG10eBNfCN3CG-w3qlEBJIBVsJFxVVVhEs,1364
|
|
103
|
-
python_gitlab-8.
|
|
104
|
-
python_gitlab-8.
|
|
105
|
-
python_gitlab-8.
|
|
106
|
-
python_gitlab-8.
|
|
107
|
-
python_gitlab-8.
|
|
108
|
-
python_gitlab-8.
|
|
109
|
-
python_gitlab-8.
|
|
103
|
+
python_gitlab-8.4.0.dist-info/licenses/AUTHORS,sha256=Z0P61GJSVnp7iFbRcMezhx3f4zMyPkVmG--TWaRo768,526
|
|
104
|
+
python_gitlab-8.4.0.dist-info/licenses/COPYING,sha256=2n6rt7r999OuXp8iOqW9we7ORaxWncIbOwN1ILRGR2g,7651
|
|
105
|
+
python_gitlab-8.4.0.dist-info/METADATA,sha256=slvDn7pkYoGrzwOCpOFx4ClHgWso7t7-oB4MskzQTHw,8503
|
|
106
|
+
python_gitlab-8.4.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
107
|
+
python_gitlab-8.4.0.dist-info/entry_points.txt,sha256=nhpKLLP_uQPFByn8UtE9zsvQQwa402t52o_Cw9IFXMo,43
|
|
108
|
+
python_gitlab-8.4.0.dist-info/top_level.txt,sha256=MvIaP8p_Oaf4gO_hXmHkX-5y2deHLp1pe6tJR3ukQ6o,7
|
|
109
|
+
python_gitlab-8.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|