Skip to content

Commit

Permalink
feat: update generated client
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-helmich committed Feb 6, 2025
1 parent 12549fb commit 699a507
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/mittwald/spec/openapi.json

Large diffs are not rendered by default.

42 changes: 41 additions & 1 deletion packages/mittwald/src/generated/v2/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4620,6 +4620,9 @@ export declare module MittwaldAPIV2 {
context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
contributorId: string;
deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
/**
* A short description of the capabilites of the Extension.
*/
description: string;
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
disabled: boolean;
Expand All @@ -4645,6 +4648,7 @@ export declare module MittwaldAPIV2 {
* deprecated
*/
state: "enabled" | "blocked" | "disabled";
subTitle: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
support: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
/**
* @minItems 0
Expand Down Expand Up @@ -4686,7 +4690,7 @@ export declare module MittwaldAPIV2 {
}

/**
* Supported languages. Format ISO-639-1.
* A detailed description of the capabilities of the extension.
*/
export interface MarketplaceDetailedDescriptions {
de: MittwaldAPIV2.Components.Schemas.MarketplaceDescriptionFormats;
Expand Down Expand Up @@ -4766,6 +4770,7 @@ export declare module MittwaldAPIV2 {
* deprecated
*/
state?: "enabled" | "blocked" | "disabled";
subTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
/**
* @minItems 0
Expand Down Expand Up @@ -6595,6 +6600,41 @@ export declare module MittwaldAPIV2 {
value: string;
}

/**
* A brief subtitle for the extension.
*/
export interface MarketplaceSubTitle {
de: string;
en?: string;
}

export interface ProjectScaling {
maximum: number;
minimum: number;
}

export interface ProjectServerInternal {
clusterName: string;
createdAt: string;
customerId: string;
description: string;
disabledReason?: MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason;
id: string;
imageRefId?: string;
/**
* @deprecated
* deprecated by property status
*/
isReady: boolean;
machineType: MittwaldAPIV2.Components.Schemas.ProjectMachineType;
readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedServerReadinessStatus;
scaling?: MittwaldAPIV2.Components.Schemas.ProjectScaling;
shortId: string;
statisticsBaseDomain?: string;
status: MittwaldAPIV2.Components.Schemas.ProjectServerStatus;
storage: string;
}

export interface CommonsAddress {
street: string;
houseNumber: string;
Expand Down

0 comments on commit 699a507

Please sign in to comment.