We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3c6678 commit b1696beCopy full SHA for b1696be
gitlab/v4/objects/packages.py
@@ -220,6 +220,9 @@ class GroupPackageManager(ListMixin[GroupPackage]):
220
"sort",
221
"package_type",
222
"package_name",
223
+ "package_version",
224
+ "include_versionless",
225
+ "status",
226
)
227
228
@@ -234,7 +237,15 @@ class ProjectPackageManager(
234
237
_path = "/projects/{project_id}/packages"
235
238
_obj_cls = ProjectPackage
236
239
_from_parent_attrs = {"project_id": "id"}
- _list_filters = ("order_by", "sort", "package_type", "package_name")
240
+ _list_filters = (
241
+ "order_by",
242
+ "sort",
243
+ "package_type",
244
+ "package_name",
245
246
247
248
+ )
249
250
251
class ProjectPackageFile(ObjectDeleteMixin, RESTObject):
0 commit comments