@@ -4620,6 +4620,9 @@ export declare module MittwaldAPIV2 {
46204620 context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
46214621 contributorId: string;
46224622 deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
4623+ /**
4624+ * A short description of the capabilites of the Extension.
4625+ */
46234626 description: string;
46244627 detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
46254628 disabled: boolean;
@@ -4645,6 +4648,7 @@ export declare module MittwaldAPIV2 {
46454648 * deprecated
46464649 */
46474650 state: "enabled" | "blocked" | "disabled";
4651+ subTitle: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
46484652 support: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
46494653 /**
46504654 * @minItems 0
@@ -4686,7 +4690,7 @@ export declare module MittwaldAPIV2 {
46864690 }
46874691
46884692 /**
4689- * Supported languages. Format ISO-639-1 .
4693+ * A detailed description of the capabilities of the extension .
46904694 */
46914695 export interface MarketplaceDetailedDescriptions {
46924696 de: MittwaldAPIV2.Components.Schemas.MarketplaceDescriptionFormats;
@@ -4766,6 +4770,7 @@ export declare module MittwaldAPIV2 {
47664770 * deprecated
47674771 */
47684772 state?: "enabled" | "blocked" | "disabled";
4773+ subTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
47694774 support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
47704775 /**
47714776 * @minItems 0
@@ -6595,6 +6600,41 @@ export declare module MittwaldAPIV2 {
65956600 value: string;
65966601 }
65976602
6603+ /**
6604+ * A brief subtitle for the extension.
6605+ */
6606+ export interface MarketplaceSubTitle {
6607+ de: string;
6608+ en?: string;
6609+ }
6610+
6611+ export interface ProjectScaling {
6612+ maximum: number;
6613+ minimum: number;
6614+ }
6615+
6616+ export interface ProjectServerInternal {
6617+ clusterName: string;
6618+ createdAt: string;
6619+ customerId: string;
6620+ description: string;
6621+ disabledReason?: MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason;
6622+ id: string;
6623+ imageRefId?: string;
6624+ /**
6625+ * @deprecated
6626+ * deprecated by property status
6627+ */
6628+ isReady: boolean;
6629+ machineType: MittwaldAPIV2.Components.Schemas.ProjectMachineType;
6630+ readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedServerReadinessStatus;
6631+ scaling?: MittwaldAPIV2.Components.Schemas.ProjectScaling;
6632+ shortId: string;
6633+ statisticsBaseDomain?: string;
6634+ status: MittwaldAPIV2.Components.Schemas.ProjectServerStatus;
6635+ storage: string;
6636+ }
6637+
65986638 export interface CommonsAddress {
65996639 street: string;
66006640 houseNumber: string;
0 commit comments