🚀New lib version [CI SKIP]

This commit is contained in:
2023-02-02 09:42:58 +00:00
parent b3676087f2
commit fa42e1085f
220 changed files with 551 additions and 554 deletions

View File

@@ -9,11 +9,11 @@ class StatusService {
/**
* Get
* A very basic status/health endpoint that just checks if the database connection is available. <br> The available information depth will be expanded later.
* @returns any Successful response
* @result any Successful response
* @throws ApiError
*/
static async statusControllerGet() {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'GET',
path: `/api/status`,
});
@@ -22,11 +22,11 @@ class StatusService {
/**
* Get version
* A very basic endpoint that just returns the curent package version.
* @returns any Successful response
* @result any Successful response
* @throws ApiError
*/
static async statusControllerGetVersion() {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'GET',
path: `/api/version`,
});