Files
hatchet/api-contracts/openapi/paths/info/version.yaml
Sean Reilly 9e961ac196 Feature add version info (#1154)
* adding a /version endpoint for the engine and a /api/v1/version endpoint for the API

* make the security optional so we don't get redirected for having auth

* lint

* upgrade protoc to the latest available version on brew

* use useQuery and clean up html
2025-01-06 10:50:04 -08:00

21 lines
553 B
YAML

version:
get:
description: Get the version of the server
summary: We return the version for the currently running server
operationId: info:get:version
security: []
x-security-optional: true
responses:
"200":
description: The version of the server
required: true
content:
application/json:
schema:
type: object
required: ["version"]
properties:
version:
type: string
example: 1.0.0