upd graph
ci-agent / build (push) Has started running

This commit is contained in:
d3m0k1d
2026-04-05 08:34:04 +03:00
parent 413e31c711
commit e9fdaf8711
5 changed files with 55 additions and 25 deletions
+6 -5
View File
@@ -1001,19 +1001,20 @@ const docTemplate = `{
"Bearer": []
}
],
"description": "Returns the service dependency graph as raw YAML text",
"description": "Returns the service dependency graph as JSON",
"produces": [
"text/plain"
"application/json"
],
"tags": [
"graph"
],
"summary": "Get dependency graph YAML",
"summary": "Get dependency graph",
"responses": {
"200": {
"description": "YAML content",
"description": "Dependency graph",
"schema": {
"type": "string"
"type": "object",
"additionalProperties": true
}
}
}
+6 -5
View File
@@ -990,19 +990,20 @@
"Bearer": []
}
],
"description": "Returns the service dependency graph as raw YAML text",
"description": "Returns the service dependency graph as JSON",
"produces": [
"text/plain"
"application/json"
],
"tags": [
"graph"
],
"summary": "Get dependency graph YAML",
"summary": "Get dependency graph",
"responses": {
"200": {
"description": "YAML content",
"description": "Dependency graph",
"schema": {
"type": "string"
"type": "object",
"additionalProperties": true
}
}
}
+6 -5
View File
@@ -1181,17 +1181,18 @@ paths:
- auth
/graph:
get:
description: Returns the service dependency graph as raw YAML text
description: Returns the service dependency graph as JSON
produces:
- text/plain
- application/json
responses:
"200":
description: YAML content
description: Dependency graph
schema:
type: string
additionalProperties: true
type: object
security:
- Bearer: []
summary: Get dependency graph YAML
summary: Get dependency graph
tags:
- graph
put: