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

This commit is contained in:
2023-02-02 09:47:35 +00:00
parent 068c27f3ff
commit f9aa86b553
199 changed files with 299 additions and 295 deletions

View File

@@ -10,7 +10,7 @@ class StatsClientService {
* @throws ApiError
*/
static async statsClientControllerGetAll() {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'GET',
path: `/api/statsclients`,
});
@@ -24,7 +24,7 @@ class StatsClientService {
* @throws ApiError
*/
static async statsClientControllerPost(requestBody) {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'POST',
path: `/api/statsclients`,
body: requestBody,
@@ -39,7 +39,7 @@ class StatsClientService {
* @throws ApiError
*/
static async statsClientControllerGetOne(id) {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'GET',
path: `/api/statsclients/${id}`,
});
@@ -55,7 +55,7 @@ class StatsClientService {
* @throws ApiError
*/
static async statsClientControllerRemove(id, force) {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'DELETE',
path: `/api/statsclients/${id}`,
query: {