Skip to content

Commit

Permalink
chore: update API client
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 31, 2024
1 parent a102ca4 commit 65f2a03
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions webapp/src/app/core/modules/openapi/api/hello.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<Hello>;

/**
*
*
* Retrieves all {@link Hello Hello} entities.
* Retrieves all {@link Hello Hello} entities.
*/
getAllHellos(extraHttpRequestParams?: any): Observable<Array<Hello>>;

Expand Down
6 changes: 6 additions & 0 deletions webapp/src/app/core/modules/openapi/model/hello.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 65f2a03

Please sign in to comment.