Skip to content

Commit

Permalink
gen ts types
Browse files Browse the repository at this point in the history
  • Loading branch information
mbecker20 committed Oct 30, 2024
1 parent 17d7ecb commit 54ba31d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions client/core/ts/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6656,7 +6656,7 @@ export interface SearchStackServiceLog {
/** Configuration for a Komodo Server Builder. */
export interface ServerBuilderConfig {
/** The server id of the builder */
server_id: string;
server_id?: string;
}

/** The health of a part of the server. */
Expand Down Expand Up @@ -7183,10 +7183,10 @@ export interface UpdateVariableValue {

/** Configuration for a Komodo Url Builder. */
export interface UrlBuilderConfig {
/** The address of Periphery */
/** The address of the Periphery agent */
address: string;
/** A custom passkey to use. Otherwise, use the default passkey. */
passkey: string;
passkey?: string;
}

/** Update file contents in Files on Server or Git Repo mode. Response: [Update]. */
Expand Down
6 changes: 3 additions & 3 deletions frontend/public/client/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6221,7 +6221,7 @@ export interface SearchStackServiceLog {
/** Configuration for a Komodo Server Builder. */
export interface ServerBuilderConfig {
/** The server id of the builder */
server_id: string;
server_id?: string;
}
/** The health of a part of the server. */
export interface ServerHealthState {
Expand Down Expand Up @@ -6702,10 +6702,10 @@ export interface UpdateVariableValue {
}
/** Configuration for a Komodo Url Builder. */
export interface UrlBuilderConfig {
/** The address of Periphery */
/** The address of the Periphery agent */
address: string;
/** A custom passkey to use. Otherwise, use the default passkey. */
passkey: string;
passkey?: string;
}
/** Update file contents in Files on Server or Git Repo mode. Response: [Update]. */
export interface WriteStackFileContents {
Expand Down

0 comments on commit 54ba31d

Please sign in to comment.