From 65f2a03884a91ebc27bc4a565bb462147ae2f3fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 31 Jul 2024 23:54:31 +0000 Subject: [PATCH] chore: update API client --- webapp/src/app/core/modules/openapi/api/hello.service.ts | 4 ++++ .../core/modules/openapi/api/hello.serviceInterface.ts | 8 ++++---- webapp/src/app/core/modules/openapi/model/hello.ts | 6 ++++++ 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/webapp/src/app/core/modules/openapi/api/hello.service.ts b/webapp/src/app/core/modules/openapi/api/hello.service.ts index 1f1eac8d..66ccbac5 100644 --- a/webapp/src/app/core/modules/openapi/api/hello.service.ts +++ b/webapp/src/app/core/modules/openapi/api/hello.service.ts @@ -96,6 +96,8 @@ export class HelloService implements HelloServiceInterface { } /** + * Creates a new {@link Hello Hello} entity with the current timestamp. + * Creates a new {@link Hello Hello} entity with the current timestamp. * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ @@ -155,6 +157,8 @@ export class HelloService implements HelloServiceInterface { } /** + * Retrieves all {@link Hello Hello} entities. + * Retrieves all {@link Hello Hello} entities. * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ diff --git a/webapp/src/app/core/modules/openapi/api/hello.serviceInterface.ts b/webapp/src/app/core/modules/openapi/api/hello.serviceInterface.ts index db41b0f6..d14de82c 100644 --- a/webapp/src/app/core/modules/openapi/api/hello.serviceInterface.ts +++ b/webapp/src/app/core/modules/openapi/api/hello.serviceInterface.ts @@ -25,14 +25,14 @@ export interface HelloServiceInterface { configuration: Configuration; /** - * - * + * Creates a new {@link Hello Hello} entity with the current timestamp. + * Creates a new {@link Hello Hello} entity with the current timestamp. */ addHello(extraHttpRequestParams?: any): Observable; /** - * - * + * Retrieves all {@link Hello Hello} entities. + * Retrieves all {@link Hello Hello} entities. */ getAllHellos(extraHttpRequestParams?: any): Observable>; diff --git a/webapp/src/app/core/modules/openapi/model/hello.ts b/webapp/src/app/core/modules/openapi/model/hello.ts index c5c6db5c..2cef118f 100644 --- a/webapp/src/app/core/modules/openapi/model/hello.ts +++ b/webapp/src/app/core/modules/openapi/model/hello.ts @@ -12,7 +12,13 @@ export interface Hello { + /** + * The unique identifier for a Hello entity. + */ id?: number; + /** + * The timestamp of when the Hello entity was created. This field is mandatory. + */ timestamp?: string; }