gen types

This commit is contained in:
mbecker20
2025-09-27 14:33:14 -07:00
parent 78be913541
commit 37aea7605e
2 changed files with 32 additions and 0 deletions

View File

@@ -2027,6 +2027,13 @@ export interface ServerConfig {
* If this is empty, falls back to 'periphery_public_key'
*/
periphery_public_key?: string;
/**
* Deprecated. Use private / public keys instead.
* An optional override passkey to use
* to authenticate with periphery agent.
* If this is empty, will use passkey in core config.
*/
passkey?: string;
/**
* Sometimes the system stats reports a mount path that is not desired.
* Use this field to filter it out from the report.
@@ -2407,6 +2414,8 @@ export interface SystemInformation {
container_exec_disabled: boolean;
/** The public key of the Periphery agent */
public_key: string;
/** The version of the Periphery agent */
version: string;
}
export type GetSystemInformationResponse = SystemInformation;
@@ -8461,6 +8470,13 @@ export interface UrlBuilderConfig {
* If empty, doesn't validate Periphery public key.
*/
periphery_public_key?: string;
/**
* Deprecated. Use private / public keys instead.
* An optional override passkey to use
* to authenticate with periphery agent.
* If this is empty, will use passkey in core config.
*/
passkey?: string;
}
/** Update dockerfile contents in Files on Server or Git Repo mode. Response: [Update]. */

View File

@@ -2159,6 +2159,13 @@ export interface ServerConfig {
* If this is empty, falls back to 'periphery_public_key'
*/
periphery_public_key?: string;
/**
* Deprecated. Use private / public keys instead.
* An optional override passkey to use
* to authenticate with periphery agent.
* If this is empty, will use passkey in core config.
*/
passkey?: string;
/**
* Sometimes the system stats reports a mount path that is not desired.
* Use this field to filter it out from the report.
@@ -2524,6 +2531,8 @@ export interface SystemInformation {
container_exec_disabled: boolean;
/** The public key of the Periphery agent */
public_key: string;
/** The version of the Periphery agent */
version: string;
}
export type GetSystemInformationResponse = SystemInformation;
export interface SystemLoadAverage {
@@ -7998,6 +8007,13 @@ export interface UrlBuilderConfig {
* If empty, doesn't validate Periphery public key.
*/
periphery_public_key?: string;
/**
* Deprecated. Use private / public keys instead.
* An optional override passkey to use
* to authenticate with periphery agent.
* If this is empty, will use passkey in core config.
*/
passkey?: string;
}
/** Update dockerfile contents in Files on Server or Git Repo mode. Response: [Update]. */
export interface WriteBuildFileContents {