Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/graphql/packages/package_details.json')
-rw-r--r--spec/fixtures/api/schemas/graphql/packages/package_details.json9
1 files changed, 8 insertions, 1 deletions
diff --git a/spec/fixtures/api/schemas/graphql/packages/package_details.json b/spec/fixtures/api/schemas/graphql/packages/package_details.json
index 87b173eefc7..ca08e005e9d 100644
--- a/spec/fixtures/api/schemas/graphql/packages/package_details.json
+++ b/spec/fixtures/api/schemas/graphql/packages/package_details.json
@@ -12,7 +12,8 @@
"tags",
"pipelines",
"versions",
- "metadata"
+ "metadata",
+ "status"
],
"properties": {
"id": {
@@ -80,6 +81,8 @@
"anyOf": [
{ "$ref": "./package_composer_metadata.json" },
{ "$ref": "./package_conan_metadata.json" },
+ { "$ref": "./package_maven_metadata.json" },
+ { "$ref": "./package_nuget_metadata.json" },
{ "type": "null" }
]
},
@@ -91,6 +94,10 @@
"edges": { "type": "array" },
"nodes": { "type": "array" }
}
+ },
+ "status": {
+ "type": ["string"],
+ "enum": ["DEFAULT", "HIDDEN", "PROCESSING", "ERROR"]
}
}
}