🚀New lib version v0.0.12 [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2021-01-13 19:36:10 +00:00
parent 2f554700a7
commit f2b867cd04
55 changed files with 431 additions and 27 deletions

View File

@@ -19,5 +19,18 @@ class StatusService {
});
return result.body;
}
/**
* Get version
* A very basic endpoint that just returns the curent package version.
* @returns any Successful response
* @throws ApiError
*/
static async statusControllerGetVersion() {
const result = await request_1.request({
method: 'GET',
path: `/api/version`,
});
return result.body;
}
}
exports.StatusService = StatusService;