chore: generate server api

This commit is contained in:
Jacob Overgaard
2024-09-12 11:52:05 +02:00
parent 1a210b3e18
commit 1ef7a9d506
2 changed files with 25 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@@ -2149,6 +2149,7 @@ export type ServerConfigurationItemResponseModel = {
export type ServerConfigurationResponseModel = {
allowPasswordReset: boolean;
versionCheckPeriod: number;
};
export type ServerInformationResponseModel = {
@@ -2608,6 +2609,12 @@ export type UpdateWebhookRequestModel = {
events: Array<(string)>;
};
export type UpgradeCheckResponseModel = {
type: string;
comment: string;
url: string;
};
export type UpgradeSettingsResponseModel = {
currentState: string;
newState: string;
@@ -4667,6 +4674,8 @@ export type GetServerStatusResponse = ((ServerStatusResponseModel));
export type GetServerTroubleshootingResponse = ((ServerTroubleshootingResponseModel));
export type GetServerUpgradeCheckResponse = ((UpgradeCheckResponseModel));
export type GetItemStaticFileData = {
path?: Array<(string)>;
};