@mittwald/api-client 0.0.0-development-8335166-20260625 → 0.0.0-development-38105fd-20260708

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -302,6 +302,10 @@ export declare namespace MittwaldAPIV2 {
302
302
  type RequestData = InferredRequestData<typeof descriptors.containerGetService>;
303
303
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetService, TStatus>;
304
304
  }
305
+ namespace ContainerGetTemplateIcon {
306
+ type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateIcon>;
307
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateIcon, TStatus>;
308
+ }
305
309
  namespace ContainerGetTemplate {
306
310
  type RequestData = InferredRequestData<typeof descriptors.containerGetTemplate>;
307
311
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplate, TStatus>;
@@ -1366,10 +1370,6 @@ export declare namespace MittwaldAPIV2 {
1366
1370
  type RequestData = InferredRequestData<typeof descriptors.mailRecoverMailAddressEmails>;
1367
1371
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRecoverMailAddressEmails, TStatus>;
1368
1372
  }
1369
- namespace MailRequestMailAddressRateLimitChange {
1370
- type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
1371
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
1372
- }
1373
1373
  namespace MailUpdateDeliveryBoxDescription {
1374
1374
  type RequestData = InferredRequestData<typeof descriptors.mailUpdateDeliveryBoxDescription>;
1375
1375
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateDeliveryBoxDescription, TStatus>;
@@ -1934,6 +1934,26 @@ export declare namespace MittwaldAPIV2 {
1934
1934
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1935
1935
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1936
1936
  }
1937
+ namespace ContainerGetTemplateStatistics {
1938
+ type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateStatistics>;
1939
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateStatistics, TStatus>;
1940
+ }
1941
+ namespace ContainerGetTemplateStatisticsByCategory {
1942
+ type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateStatisticsByCategory>;
1943
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateStatisticsByCategory, TStatus>;
1944
+ }
1945
+ namespace AiHostingCustomerGetPlan {
1946
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerGetPlan>;
1947
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerGetPlan, TStatus>;
1948
+ }
1949
+ namespace AiHostingCustomerGetPlans {
1950
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerGetPlans>;
1951
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerGetPlans, TStatus>;
1952
+ }
1953
+ namespace MailRequestMailAddressRateLimitChange {
1954
+ type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
1955
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
1956
+ }
1937
1957
  }
1938
1958
  namespace Components {
1939
1959
  namespace Schemas {
@@ -1990,6 +2010,7 @@ export declare namespace MittwaldAPIV2 {
1990
2010
  */
1991
2011
  models: string[];
1992
2012
  name: string;
2013
+ planId?: string;
1993
2014
  projectId?: string;
1994
2015
  rateLimit: MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
1995
2016
  tokenUsage: MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
@@ -2008,6 +2029,7 @@ export declare namespace MittwaldAPIV2 {
2008
2029
  keys: MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
2009
2030
  modelTermsApprovalRequired: boolean;
2010
2031
  nextTokenReset: string;
2032
+ planId?: string;
2011
2033
  rateLimit: MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
2012
2034
  tokens: MittwaldAPIV2.Components.Schemas.AihostingPlanUsageBig;
2013
2035
  topUsages?: {
@@ -2210,6 +2232,13 @@ export declare namespace MittwaldAPIV2 {
2210
2232
  timeout: number;
2211
2233
  urlTemplate?: string;
2212
2234
  }
2235
+ /**
2236
+ * DesiredSystemSoftware describes the desired SystemSoftwareVersion and update policy to apply for a SystemSoftware of an AppInstallation.
2237
+ */
2238
+ interface AppDesiredSystemSoftware {
2239
+ systemSoftwareVersion?: string;
2240
+ updatePolicy?: MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy;
2241
+ }
2213
2242
  interface AppError {
2214
2243
  message: string;
2215
2244
  type: string;
@@ -2914,32 +2943,45 @@ export declare namespace MittwaldAPIV2 {
2914
2943
  }
2915
2944
  interface ContainerTemplate {
2916
2945
  categories: string[];
2917
- description: {
2918
- de: string;
2919
- en: string;
2920
- };
2946
+ description: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
2921
2947
  developer: string;
2922
2948
  domains?: {
2923
2949
  port: string;
2950
+ purpose?: string;
2924
2951
  service: string;
2925
2952
  userInput: string;
2926
2953
  }[];
2927
- icon: string;
2954
+ help?: {
2955
+ alerts?: {
2956
+ content: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
2957
+ heading: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
2958
+ link?: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
2959
+ linkText?: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
2960
+ status: string;
2961
+ }[];
2962
+ technicalDetails?: {
2963
+ key: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
2964
+ value: string;
2965
+ }[];
2966
+ };
2967
+ iconUrl: string;
2928
2968
  id: string;
2929
- license?: string;
2969
+ license?: {
2970
+ link?: string;
2971
+ name: string;
2972
+ };
2930
2973
  /**
2931
2974
  * Version of the manifest for this template, e.g. '1.0'
2932
2975
  */
2933
2976
  manifestVersion: string;
2934
- name: string;
2977
+ name: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
2935
2978
  repository?: string;
2936
- tagline: {
2937
- de: string;
2938
- en: string;
2939
- };
2979
+ supportLink?: string;
2980
+ tagline: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
2940
2981
  userInputs?: {
2941
2982
  dataSource?: string;
2942
2983
  defaultValue?: string;
2984
+ label?: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
2943
2985
  name: string;
2944
2986
  required: boolean;
2945
2987
  validationSchema?: string;
@@ -2950,6 +2992,10 @@ export declare namespace MittwaldAPIV2 {
2950
2992
  version: string;
2951
2993
  website?: string;
2952
2994
  }
2995
+ interface ContainerTemplateTranslatedString {
2996
+ de: string;
2997
+ en: string;
2998
+ }
2953
2999
  interface ContainerUpdateRegistry {
2954
3000
  credentials?: MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | null;
2955
3001
  description?: string;
@@ -3972,13 +4018,14 @@ export declare namespace MittwaldAPIV2 {
3972
4018
  subject: string;
3973
4019
  }
3974
4020
  /**
3975
- * Typed non-blocking migration warning: the domain migrates, but the named subject (`warnings[].subject`, the affected subdomain hostname) cannot be carried over as-is.
4021
+ * Typed non-blocking migration warning: the domain migrates, but the named subject (`warnings[].subject`) needs attention during migration.
3976
4022
  *
3977
4023
  * * `subdomainInvalidIngressHostname`: a non-CNAME subdomain (provisioned as an ingress) does not match the `idn-hostname` format (e.g. a wildcard `*.example.de`); it is skipped and the rest of the domain migrates.
3978
4024
  * * `subdomainInvalidDnsName`: a CNAME subdomain (provisioned as a DNS subzone) does not match the `idn-dnsname` format; it is skipped and the rest of the domain migrates.
3979
4025
  * * `subdomainNsRecordsOverridden`: a subdomain carries its own NS records that differ from the domain's nameservers; per-subdomain delegation is not supported, so those NS records are dropped and the subdomain is served from the domain's nameservers (the rest of the subdomain still migrates).
4026
+ * * `registrantPhoneNeedsEpp`: the registry owner (registrant) phone is not EPP-conformant; a reformat-to-EPP heal will be attempted during migration. Non-blocking — the read path cannot tell whether the heal will ultimately succeed, so it only warns; the create path is the actual gate.
3980
4027
  */
3981
- type DomainmigrationDomainMigrationWarningReason = "subdomainInvalidIngressHostname" | "subdomainInvalidDnsName" | "subdomainNsRecordsOverridden";
4028
+ type DomainmigrationDomainMigrationWarningReason = "subdomainInvalidIngressHostname" | "subdomainInvalidDnsName" | "subdomainNsRecordsOverridden" | "registrantPhoneNeedsEpp";
3982
4029
  /**
3983
4030
  * Typed reason a domain cannot be migrated:
3984
4031
  *
@@ -4053,6 +4100,175 @@ export declare namespace MittwaldAPIV2 {
4053
4100
  type DomainProcessState = "UNSPECIFIED" | "REQUESTED" | "FAILED";
4054
4101
  type DomainProcessType = "UNSPECIFIED" | "REGISTER" | "TRANSFER" | "DELETE" | "TRANSIT" | "RESTORE" | "UPDATE" | "TRANSFER_OUT" | "OWNER_CHANGE" | "DECLARE_REQUESTED" | "CONTACT_VERIFICATION";
4055
4102
  type DomainRegistrar = "INTERNETX" | "DENIC" | "HEXONET";
4103
+ interface DeMittwaldDomainNextAuthCode {
4104
+ cipher?: string;
4105
+ expires?: number;
4106
+ value?: string;
4107
+ }
4108
+ interface DeMittwaldDomainNextCaaRecord {
4109
+ flags?: number;
4110
+ tag?: string;
4111
+ value?: string;
4112
+ }
4113
+ interface DeMittwaldDomainNextCaaRecords {
4114
+ records?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextCaaRecord[];
4115
+ settings?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextRecordSettings;
4116
+ }
4117
+ interface DeMittwaldDomainNextCnameRecord {
4118
+ fqdn?: string;
4119
+ settings?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextRecordSettings;
4120
+ }
4121
+ interface DeMittwaldDomainNextCombinedARecordsCustom {
4122
+ a?: string[];
4123
+ aaaa?: string[];
4124
+ settings?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextRecordSettings;
4125
+ }
4126
+ interface DeMittwaldDomainNextCombinedARecordsManaged {
4127
+ ingressId?: string;
4128
+ }
4129
+ type DeMittwaldDomainNextCombinedARecords = {
4130
+ managedBy: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextCombinedARecordsManaged;
4131
+ } | {
4132
+ custom: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextCombinedARecordsCustom;
4133
+ };
4134
+ interface DeMittwaldDomainNextContainer {
4135
+ id?: string;
4136
+ portProtocol?: string;
4137
+ }
4138
+ interface DeMittwaldDomainNextDns {
4139
+ recordSet?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextRecordSet;
4140
+ }
4141
+ interface DeMittwaldDomainNextDomain {
4142
+ dns: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextDns;
4143
+ dnsValidationErrors: string[];
4144
+ /**
4145
+ * The hostname this domain represents.
4146
+ */
4147
+ hostname: string;
4148
+ /**
4149
+ * ID of the underlying ingress. Absent for a registrable domain that has no ingress; such a domain is identified via registrarData.id.
4150
+ */
4151
+ id?: string;
4152
+ ips: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextIps;
4153
+ isDefault: boolean;
4154
+ isEnabled: boolean;
4155
+ ownership: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextOwnership;
4156
+ paths: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextPath[];
4157
+ /**
4158
+ * ID of the project this domain belongs to.
4159
+ */
4160
+ projectId: string;
4161
+ registrarData: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextRegistrarData;
4162
+ tls: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextTls;
4163
+ type: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextDomainType;
4164
+ }
4165
+ interface DeMittwaldDomainNextHandleData {
4166
+ fields?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextHandleField[];
4167
+ ref?: string;
4168
+ }
4169
+ interface DeMittwaldDomainNextHandleField {
4170
+ name?: string;
4171
+ value?: string;
4172
+ }
4173
+ interface DeMittwaldDomainNextHandles {
4174
+ ownerC?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextHandleData;
4175
+ }
4176
+ interface DeMittwaldDomainNextIps {
4177
+ v4?: string[];
4178
+ v6?: string[];
4179
+ }
4180
+ interface DeMittwaldDomainNextMxRecord {
4181
+ fqdn?: string;
4182
+ priority?: number;
4183
+ }
4184
+ interface DeMittwaldDomainNextMxRecordsCustom {
4185
+ records?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextMxRecord[];
4186
+ settings?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextRecordSettings;
4187
+ }
4188
+ type DeMittwaldDomainNextMxRecords = {
4189
+ managed: boolean;
4190
+ } | {
4191
+ custom: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextMxRecordsCustom;
4192
+ };
4193
+ interface DeMittwaldDomainNextOwnership {
4194
+ cause?: string;
4195
+ txtRecord?: string;
4196
+ verified?: boolean;
4197
+ }
4198
+ interface DeMittwaldDomainNextPath {
4199
+ container?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextContainer;
4200
+ directory?: string;
4201
+ installationId?: string;
4202
+ path?: string;
4203
+ targetType?: string;
4204
+ url?: string;
4205
+ useDefaultPage?: boolean;
4206
+ }
4207
+ interface DeMittwaldDomainNextProcessError {
4208
+ props?: {
4209
+ [k: string]: string;
4210
+ };
4211
+ reason?: string;
4212
+ }
4213
+ interface DeMittwaldDomainNextProcess {
4214
+ code?: string;
4215
+ error?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextProcessError;
4216
+ lastUpdate?: string;
4217
+ registrar?: string;
4218
+ state?: string;
4219
+ status?: string;
4220
+ type?: string;
4221
+ }
4222
+ interface DeMittwaldDomainNextRecordSet {
4223
+ aCombined?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextCombinedARecords;
4224
+ caa?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextCaaRecords;
4225
+ cname?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextCnameRecord;
4226
+ mx?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextMxRecords;
4227
+ srv?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextSrvRecords;
4228
+ txt?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextTxtRecords;
4229
+ }
4230
+ interface DeMittwaldDomainNextRecordSettingTtl {
4231
+ auto?: boolean;
4232
+ seconds?: number;
4233
+ }
4234
+ interface DeMittwaldDomainNextRecordSettings {
4235
+ ttl?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextRecordSettingTtl;
4236
+ }
4237
+ interface DeMittwaldDomainNextRegistrarData {
4238
+ authCode?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextAuthCode;
4239
+ connected?: boolean;
4240
+ deleted?: boolean;
4241
+ domain?: string;
4242
+ handles?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextHandles;
4243
+ id?: string;
4244
+ nameservers?: string[];
4245
+ processes?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextProcess[];
4246
+ registrar?: string;
4247
+ scheduledDeletionDate?: string;
4248
+ transferInAuthCode?: string;
4249
+ usesDefaultNameservers?: boolean;
4250
+ }
4251
+ interface DeMittwaldDomainNextSrvRecord {
4252
+ fqdn?: string;
4253
+ port?: number;
4254
+ priority?: number;
4255
+ weight?: number;
4256
+ }
4257
+ interface DeMittwaldDomainNextSrvRecords {
4258
+ records?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextSrvRecord[];
4259
+ settings?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextRecordSettings;
4260
+ }
4261
+ interface DeMittwaldDomainNextTls {
4262
+ acme?: boolean;
4263
+ certificateId?: string;
4264
+ isCreated?: boolean;
4265
+ mode?: string;
4266
+ requestDeadline?: string;
4267
+ }
4268
+ interface DeMittwaldDomainNextTxtRecords {
4269
+ entries?: string[];
4270
+ settings?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextRecordSettings;
4271
+ }
4056
4272
  interface DomainSuggestedDomains {
4057
4273
  domains: string[];
4058
4274
  }
@@ -4319,6 +4535,7 @@ export declare namespace MittwaldAPIV2 {
4319
4535
  nextScheduledExecution?: string;
4320
4536
  state: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecutionState;
4321
4537
  }
4538
+ type MarketplaceExtensionInstanceWebhookExecutionState = "running" | "queued" | "halted" | "failed" | "successful";
4322
4539
  interface MarketplaceExtensionSecret {
4323
4540
  secretId: string;
4324
4541
  usableUntil?: string;
@@ -4863,7 +5080,7 @@ export declare namespace MittwaldAPIV2 {
4863
5080
  interface InvoiceInvoiceSettingsStatus {
4864
5081
  message: string;
4865
5082
  severity: "success" | "info" | "warning" | "error";
4866
- type: "returnDebitNote" | "returnDebitNoteWaitingForPayment" | "debtWrittenOff" | "bankrupt";
5083
+ type: "returnDebitNote" | "returnDebitNoteWaitingForPayment" | "debtWrittenOff" | "bankrupt" | "notReachable";
4867
5084
  }
4868
5085
  interface InvoicePaymentSettingsDebit {
4869
5086
  accountHolder: string;
@@ -5945,53 +6162,59 @@ export declare namespace MittwaldAPIV2 {
5945
6162
  }
5946
6163
  type PolicyPolicy = string;
5947
6164
  interface ActivitylogAppInstallationCopyRequested {
6165
+ name: "app.copy-requested";
6166
+ parameters: {
6167
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6168
+ sourceAppInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6169
+ };
6170
+ }
6171
+ interface ActivitylogAppInstallationDesiredSystemSoftwareDeleted {
5948
6172
  changes: {
5949
6173
  after?: {
5950
- appId: string;
5951
- appName: string;
5952
- sourceAppInstallationId: string;
5953
- sourceAppName: string;
5954
- };
6174
+ softwareVersion?: string;
6175
+ } | null;
5955
6176
  before?: {
5956
- appId?: string | null;
5957
- appName?: string | null;
5958
- sourceAppInstallationId?: string | null;
5959
- sourceAppName?: string | null;
5960
- };
6177
+ softwareVersion?: string;
6178
+ } | null;
6179
+ };
6180
+ name: "app.systemsoftware-deleted";
6181
+ parameters: {
6182
+ software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6183
+ version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5961
6184
  };
5962
- name: "app.copy-requested";
5963
6185
  }
5964
6186
  interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
5965
6187
  changes: {
5966
6188
  after?: {
5967
- software: string;
5968
- softwareVersion: string;
5969
- updatePolicy: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
5970
- };
6189
+ softwareVersion?: string;
6190
+ } | null;
5971
6191
  before?: {
5972
- software?: string;
5973
6192
  softwareVersion?: string;
5974
- updatePolicy?: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
5975
- };
6193
+ } | null;
5976
6194
  };
5977
- name: "app.systemsoftware-set" | "app.systemsoftware-deleted";
5978
- parameters?: {
6195
+ name: "app.systemsoftware-set";
6196
+ parameters: {
5979
6197
  software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5980
6198
  version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5981
6199
  };
5982
6200
  }
6201
+ interface ActivitylogAppInstallationRequested {
6202
+ name: "app.installation-requested";
6203
+ parameters: {
6204
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6205
+ version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6206
+ };
6207
+ }
5983
6208
  interface ActivitylogAppInstallationAppVersionSet {
5984
6209
  changes: {
5985
6210
  after?: {
5986
- appId: string;
5987
- appVersionId: string;
6211
+ version: string;
5988
6212
  };
5989
6213
  before?: {
5990
- appId?: string | null;
5991
- appVersionId?: string | null;
6214
+ version?: string | null;
5992
6215
  };
5993
6216
  };
5994
- name: "app.version-set";
6217
+ name: "app.version-set" | "app.version-updated";
5995
6218
  parameters: {
5996
6219
  appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
5997
6220
  };
@@ -6020,6 +6243,7 @@ export declare namespace MittwaldAPIV2 {
6020
6243
  changes: {};
6021
6244
  name: "database.mysql-deleted" | "database.redis-deleted";
6022
6245
  parameters: {
6246
+ description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6023
6247
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6024
6248
  };
6025
6249
  }
@@ -6034,6 +6258,7 @@ export declare namespace MittwaldAPIV2 {
6034
6258
  };
6035
6259
  name: "database.mysql-description-set" | "database.redis-description-set";
6036
6260
  parameters: {
6261
+ description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6037
6262
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6038
6263
  };
6039
6264
  }
@@ -6048,6 +6273,7 @@ export declare namespace MittwaldAPIV2 {
6048
6273
  };
6049
6274
  name: "database.mysql-name-set";
6050
6275
  parameters: {
6276
+ description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6051
6277
  name: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6052
6278
  };
6053
6279
  }
@@ -6070,7 +6296,9 @@ export declare namespace MittwaldAPIV2 {
6070
6296
  };
6071
6297
  name: "database.mysql-user-created";
6072
6298
  parameters: {
6299
+ databaseDescription: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6073
6300
  databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6301
+ description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6074
6302
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6075
6303
  };
6076
6304
  }
@@ -6078,7 +6306,9 @@ export declare namespace MittwaldAPIV2 {
6078
6306
  changes: {};
6079
6307
  name: "database.mysql-user-deleted";
6080
6308
  parameters: {
6309
+ databaseDescription: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6081
6310
  databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6311
+ description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6082
6312
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6083
6313
  };
6084
6314
  }
@@ -6099,7 +6329,9 @@ export declare namespace MittwaldAPIV2 {
6099
6329
  };
6100
6330
  name: "database.mysql-user-updated";
6101
6331
  parameters: {
6332
+ databaseDescription: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6102
6333
  databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6334
+ description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6103
6335
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6104
6336
  };
6105
6337
  }
@@ -6114,6 +6346,7 @@ export declare namespace MittwaldAPIV2 {
6114
6346
  };
6115
6347
  name: "database.mysql-version-set" | "database.redis-version-set";
6116
6348
  parameters: {
6349
+ description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6117
6350
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6118
6351
  version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6119
6352
  };
@@ -6205,14 +6438,7 @@ export declare namespace MittwaldAPIV2 {
6205
6438
  };
6206
6439
  }
6207
6440
  interface ActivitylogDnsZoneCreated {
6208
- changes: {
6209
- after?: {
6210
- domain: string;
6211
- };
6212
- before?: {
6213
- domain: string | null;
6214
- };
6215
- };
6441
+ changes: {};
6216
6442
  name: "dns.zone-created";
6217
6443
  parameters: {
6218
6444
  domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
@@ -6307,7 +6533,7 @@ export declare namespace MittwaldAPIV2 {
6307
6533
  name: string;
6308
6534
  }
6309
6535
  interface ActivitylogLogEntry {
6310
- action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
6536
+ action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsDomainDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsIngressDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
6311
6537
  aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
6312
6538
  dateTime: string;
6313
6539
  /**
@@ -6338,6 +6564,7 @@ export declare namespace MittwaldAPIV2 {
6338
6564
  customerMeta: {
6339
6565
  id: string;
6340
6566
  };
6567
+ deletionRequested: boolean;
6341
6568
  description: string;
6342
6569
  disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
6343
6570
  disabledAt?: string;
@@ -6358,6 +6585,7 @@ export declare namespace MittwaldAPIV2 {
6358
6585
  readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
6359
6586
  serverGroupId: string;
6360
6587
  serverId?: string;
6588
+ serverShortId?: string;
6361
6589
  shortId: string;
6362
6590
  status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
6363
6591
  statusSetAt: string;
@@ -6923,7 +7151,107 @@ export declare namespace MittwaldAPIV2 {
6923
7151
  }
6924
7152
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6925
7153
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6926
- type MarketplaceExtensionInstanceWebhookExecutionState = "running" | "queued" | "halted" | "failed" | "successful";
7154
+ /**
7155
+ * Classifies a result:
7156
+ *
7157
+ * * `domain`: a registrable domain (carries registrarData).
7158
+ * * `subdomain`: a subdomain of a registrable domain.
7159
+ * * `vhost`: a plain vHost without a registrable domain.
7160
+ */
7161
+ type DeMittwaldDomainNextDomainType = "domain" | "subdomain" | "vhost";
7162
+ /**
7163
+ * Ordering of the domain list:
7164
+ *
7165
+ * * `hostnameGrouped` (default): group by registrable (public-suffix) domain, the main domain before its subdomains, then by full hostname.
7166
+ * * `hostnameAsc`: full hostname ascending.
7167
+ * * `hostnameDesc`: full hostname descending.
7168
+ */
7169
+ type DeMittwaldDomainNextSortOrder = "hostnameGrouped" | "hostnameAsc" | "hostnameDesc";
7170
+ interface DeMittwaldDomainNextDomainListItem {
7171
+ dnsValidationErrors: string[];
7172
+ /**
7173
+ * The hostname this domain represents.
7174
+ */
7175
+ hostname: string;
7176
+ /**
7177
+ * ID of the underlying ingress. Absent for a registrable domain that has no ingress; such a domain is identified via registrarData.id.
7178
+ */
7179
+ id?: string;
7180
+ isDefault: boolean;
7181
+ ownership: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextOwnership;
7182
+ paths: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextPath[];
7183
+ /**
7184
+ * ID of the project this domain belongs to.
7185
+ */
7186
+ projectId: string;
7187
+ registrarData: {
7188
+ handles?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextHandles;
7189
+ id?: string;
7190
+ processes?: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextProcess[];
7191
+ scheduledDeletionDate?: string;
7192
+ transferInAuthCode?: string;
7193
+ };
7194
+ tls: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextTls;
7195
+ type: MittwaldAPIV2.Components.Schemas.DeMittwaldDomainNextDomainType;
7196
+ }
7197
+ interface AihostingProfile {
7198
+ planIds: string[];
7199
+ }
7200
+ interface ActivitylogDnsARecordSetManaged {
7201
+ changes: {
7202
+ after?: {
7203
+ aRecords: {
7204
+ managedByIngressId: string;
7205
+ };
7206
+ };
7207
+ before?: {};
7208
+ };
7209
+ name: "dns.a-record-set-managed";
7210
+ parameters: {
7211
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7212
+ };
7213
+ }
7214
+ interface ActivitylogDnsDomainDeleted {
7215
+ changes: {};
7216
+ name: "dns.domain-deleted";
7217
+ parameters: {
7218
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7219
+ };
7220
+ }
7221
+ interface ActivitylogDnsMxRecordSetManaged {
7222
+ changes: {
7223
+ after?: {
7224
+ mx: {
7225
+ managed: boolean;
7226
+ };
7227
+ };
7228
+ before?: {};
7229
+ };
7230
+ name: "dns.mx-record-set-managed";
7231
+ parameters: {
7232
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7233
+ };
7234
+ }
7235
+ interface ActivitylogDnsIngressDeleted {
7236
+ changes: {};
7237
+ name: "dns.ingress-deleted";
7238
+ parameters: {
7239
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7240
+ };
7241
+ }
7242
+ interface ContainerTemplateStatsResponse {
7243
+ id: string;
7244
+ installations: number;
7245
+ installations30Days: number;
7246
+ }
7247
+ interface ContainerTemplateStatsByCategoryResponse {
7248
+ category: string;
7249
+ templates: MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsResponse[];
7250
+ }
7251
+ interface AihostingCustomerPlans {
7252
+ modelTermsApprovalRequired: boolean;
7253
+ plans: MittwaldAPIV2.Components.Schemas.AihostingPlanOptions[];
7254
+ }
6927
7255
  interface CommonsAddress {
6928
7256
  street: string;
6929
7257
  houseNumber: string;
@@ -7161,7 +7489,9 @@ export declare namespace MittwaldAPIV2 {
7161
7489
  customerId: string;
7162
7490
  };
7163
7491
  type Header = {};
7164
- type Query = {};
7492
+ type Query = {
7493
+ planId?: string;
7494
+ };
7165
7495
  }
7166
7496
  namespace Responses {
7167
7497
  namespace $200 {
@@ -7214,6 +7544,7 @@ export declare namespace MittwaldAPIV2 {
7214
7544
  interface RequestBody {
7215
7545
  createWebuiContainer?: boolean;
7216
7546
  name: string;
7547
+ planId?: string;
7217
7548
  projectId?: string;
7218
7549
  }
7219
7550
  type Header = {};
@@ -7634,7 +7965,9 @@ export declare namespace MittwaldAPIV2 {
7634
7965
  projectId: string;
7635
7966
  };
7636
7967
  type Header = {};
7637
- type Query = {};
7968
+ type Query = {
7969
+ planId?: string;
7970
+ };
7638
7971
  }
7639
7972
  namespace Responses {
7640
7973
  namespace $200 {
@@ -7687,6 +8020,7 @@ export declare namespace MittwaldAPIV2 {
7687
8020
  interface RequestBody {
7688
8021
  createWebuiContainer?: boolean;
7689
8022
  name: string;
8023
+ planId?: string;
7690
8024
  }
7691
8025
  type Header = {};
7692
8026
  type Query = {};
@@ -7999,7 +8333,9 @@ export declare namespace MittwaldAPIV2 {
7999
8333
  projectId: string;
8000
8334
  };
8001
8335
  type Header = {};
8002
- type Query = {};
8336
+ type Query = {
8337
+ planId?: string;
8338
+ };
8003
8339
  }
8004
8340
  namespace Responses {
8005
8341
  namespace $200 {
@@ -8247,10 +8583,7 @@ export declare namespace MittwaldAPIV2 {
8247
8583
  customDocumentRoot?: string;
8248
8584
  description?: string;
8249
8585
  systemSoftware?: {
8250
- [k: string]: {
8251
- systemSoftwareVersion?: string;
8252
- updatePolicy?: MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy;
8253
- };
8586
+ [k: string]: MittwaldAPIV2.Components.Schemas.AppDesiredSystemSoftware;
8254
8587
  };
8255
8588
  updatePolicy?: MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
8256
8589
  userInputs?: MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
@@ -8629,6 +8962,9 @@ export declare namespace MittwaldAPIV2 {
8629
8962
  appVersionId: string;
8630
8963
  description: string;
8631
8964
  installationPath?: string;
8965
+ systemSoftware?: {
8966
+ [k: string]: MittwaldAPIV2.Components.Schemas.AppDesiredSystemSoftware;
8967
+ };
8632
8968
  updatePolicy: MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
8633
8969
  userInputs: MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
8634
8970
  }
@@ -11114,7 +11450,7 @@ export declare namespace MittwaldAPIV2 {
11114
11450
  }
11115
11451
  }
11116
11452
  }
11117
- namespace V2ContainerTemplatesTemplateId {
11453
+ namespace V2ContainerTemplatesTemplateIdIcon {
11118
11454
  namespace Get {
11119
11455
  namespace Parameters {
11120
11456
  type Path = {
@@ -11126,7 +11462,10 @@ export declare namespace MittwaldAPIV2 {
11126
11462
  namespace Responses {
11127
11463
  namespace $200 {
11128
11464
  namespace Content {
11129
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerTemplate;
11465
+ type ApplicationOctetStream = string;
11466
+ type ImageJpeg = string;
11467
+ type ImagePng = string;
11468
+ type ImageSvgXml = string;
11130
11469
  }
11131
11470
  }
11132
11471
  namespace $400 {
@@ -11136,6 +11475,13 @@ export declare namespace MittwaldAPIV2 {
11136
11475
  }
11137
11476
  }
11138
11477
  }
11478
+ namespace $403 {
11479
+ namespace Content {
11480
+ interface ApplicationJson {
11481
+ [k: string]: unknown;
11482
+ }
11483
+ }
11484
+ }
11139
11485
  namespace $404 {
11140
11486
  namespace Content {
11141
11487
  interface ApplicationJson {
@@ -11157,6 +11503,13 @@ export declare namespace MittwaldAPIV2 {
11157
11503
  }
11158
11504
  }
11159
11505
  }
11506
+ namespace $503 {
11507
+ namespace Content {
11508
+ interface ApplicationJson {
11509
+ [k: string]: unknown;
11510
+ }
11511
+ }
11512
+ }
11160
11513
  namespace Default {
11161
11514
  namespace Content {
11162
11515
  interface ApplicationJson {
@@ -11167,22 +11520,19 @@ export declare namespace MittwaldAPIV2 {
11167
11520
  }
11168
11521
  }
11169
11522
  }
11170
- namespace V2Stacks {
11523
+ namespace V2ContainerTemplatesTemplateId {
11171
11524
  namespace Get {
11172
11525
  namespace Parameters {
11173
- type Path = {};
11174
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11175
- type Query = {
11176
- searchTerm?: string;
11177
- limit?: number;
11178
- skip?: number;
11179
- page?: number;
11526
+ type Path = {
11527
+ templateId: string;
11180
11528
  };
11529
+ type Header = {};
11530
+ type Query = {};
11181
11531
  }
11182
11532
  namespace Responses {
11183
11533
  namespace $200 {
11184
11534
  namespace Content {
11185
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse[];
11535
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerTemplate;
11186
11536
  }
11187
11537
  }
11188
11538
  namespace $400 {
@@ -11192,7 +11542,7 @@ export declare namespace MittwaldAPIV2 {
11192
11542
  }
11193
11543
  }
11194
11544
  }
11195
- namespace $403 {
11545
+ namespace $404 {
11196
11546
  namespace Content {
11197
11547
  interface ApplicationJson {
11198
11548
  [k: string]: unknown;
@@ -11223,19 +11573,13 @@ export declare namespace MittwaldAPIV2 {
11223
11573
  }
11224
11574
  }
11225
11575
  }
11226
- namespace V2ProjectsProjectIdServices {
11576
+ namespace V2Stacks {
11227
11577
  namespace Get {
11228
11578
  namespace Parameters {
11229
- type Path = {
11230
- projectId: string;
11231
- };
11579
+ type Path = {};
11232
11580
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11233
11581
  type Query = {
11234
- stackId?: string;
11235
- status?: MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
11236
- requiresRecreate?: boolean;
11237
11582
  searchTerm?: string;
11238
- sortOrder?: MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder;
11239
11583
  limit?: number;
11240
11584
  skip?: number;
11241
11585
  page?: number;
@@ -11244,7 +11588,7 @@ export declare namespace MittwaldAPIV2 {
11244
11588
  namespace Responses {
11245
11589
  namespace $200 {
11246
11590
  namespace Content {
11247
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[];
11591
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse[];
11248
11592
  }
11249
11593
  }
11250
11594
  namespace $400 {
@@ -11261,13 +11605,6 @@ export declare namespace MittwaldAPIV2 {
11261
11605
  }
11262
11606
  }
11263
11607
  }
11264
- namespace $412 {
11265
- namespace Content {
11266
- interface ApplicationJson {
11267
- [k: string]: unknown;
11268
- }
11269
- }
11270
- }
11271
11608
  namespace $429 {
11272
11609
  namespace Content {
11273
11610
  interface ApplicationJson {
@@ -11292,7 +11629,76 @@ export declare namespace MittwaldAPIV2 {
11292
11629
  }
11293
11630
  }
11294
11631
  }
11295
- namespace V2StacksStackIdVolumes {
11632
+ namespace V2ProjectsProjectIdServices {
11633
+ namespace Get {
11634
+ namespace Parameters {
11635
+ type Path = {
11636
+ projectId: string;
11637
+ };
11638
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11639
+ type Query = {
11640
+ stackId?: string;
11641
+ status?: MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
11642
+ requiresRecreate?: boolean;
11643
+ searchTerm?: string;
11644
+ sortOrder?: MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder;
11645
+ limit?: number;
11646
+ skip?: number;
11647
+ page?: number;
11648
+ };
11649
+ }
11650
+ namespace Responses {
11651
+ namespace $200 {
11652
+ namespace Content {
11653
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[];
11654
+ }
11655
+ }
11656
+ namespace $400 {
11657
+ namespace Content {
11658
+ interface ApplicationJson {
11659
+ [k: string]: unknown;
11660
+ }
11661
+ }
11662
+ }
11663
+ namespace $403 {
11664
+ namespace Content {
11665
+ interface ApplicationJson {
11666
+ [k: string]: unknown;
11667
+ }
11668
+ }
11669
+ }
11670
+ namespace $412 {
11671
+ namespace Content {
11672
+ interface ApplicationJson {
11673
+ [k: string]: unknown;
11674
+ }
11675
+ }
11676
+ }
11677
+ namespace $429 {
11678
+ namespace Content {
11679
+ interface ApplicationJson {
11680
+ [k: string]: unknown;
11681
+ }
11682
+ }
11683
+ }
11684
+ namespace $500 {
11685
+ namespace Content {
11686
+ interface ApplicationJson {
11687
+ [k: string]: unknown;
11688
+ }
11689
+ }
11690
+ }
11691
+ namespace Default {
11692
+ namespace Content {
11693
+ interface ApplicationJson {
11694
+ [k: string]: unknown;
11695
+ }
11696
+ }
11697
+ }
11698
+ }
11699
+ }
11700
+ }
11701
+ namespace V2StacksStackIdVolumes {
11296
11702
  namespace Get {
11297
11703
  namespace Parameters {
11298
11704
  type Path = {
@@ -11359,6 +11765,7 @@ export declare namespace MittwaldAPIV2 {
11359
11765
  type Query = {
11360
11766
  category?: string;
11361
11767
  searchTerm?: string;
11768
+ type?: "component" | "standalone";
11362
11769
  limit?: number;
11363
11770
  skip?: number;
11364
11771
  page?: number;
@@ -13261,6 +13668,11 @@ export declare namespace MittwaldAPIV2 {
13261
13668
  type Query = {
13262
13669
  extensionId?: string;
13263
13670
  extensionInstanceId?: string;
13671
+ limit?: number;
13672
+ skip?: number;
13673
+ page?: number;
13674
+ sort?: ("createdAt" | "extensionId" | "parentCustomerId" | "contractPartner.company")[];
13675
+ order?: ("asc" | "desc")[];
13264
13676
  };
13265
13677
  }
13266
13678
  namespace Responses {
@@ -21835,6 +22247,13 @@ export declare namespace MittwaldAPIV2 {
21835
22247
  }
21836
22248
  }
21837
22249
  }
22250
+ namespace $409 {
22251
+ namespace Content {
22252
+ interface ApplicationJson {
22253
+ [k: string]: unknown;
22254
+ }
22255
+ }
22256
+ }
21838
22257
  namespace $422 {
21839
22258
  namespace Content {
21840
22259
  interface ApplicationJson {
@@ -22220,6 +22639,7 @@ export declare namespace MittwaldAPIV2 {
22220
22639
  certificateId?: string;
22221
22640
  hostnameSubstring?: string;
22222
22641
  appInstallationId?: string;
22642
+ containerId?: string;
22223
22643
  limit?: number;
22224
22644
  skip?: number;
22225
22645
  page?: number;
@@ -25022,76 +25442,6 @@ export declare namespace MittwaldAPIV2 {
25022
25442
  }
25023
25443
  }
25024
25444
  }
25025
- namespace V2MailAddressesMailAddressIdRequestRateLimitChange {
25026
- namespace Post {
25027
- namespace Parameters {
25028
- type Path = {
25029
- mailAddressId: string;
25030
- };
25031
- interface RequestBody {
25032
- rateLimitId: string;
25033
- }
25034
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
25035
- type Query = {};
25036
- }
25037
- namespace Responses {
25038
- namespace $204 {
25039
- namespace Content {
25040
- type Empty = unknown;
25041
- }
25042
- }
25043
- namespace $400 {
25044
- namespace Content {
25045
- interface ApplicationJson {
25046
- [k: string]: unknown;
25047
- }
25048
- }
25049
- }
25050
- namespace $403 {
25051
- namespace Content {
25052
- interface ApplicationJson {
25053
- [k: string]: unknown;
25054
- }
25055
- }
25056
- }
25057
- namespace $404 {
25058
- namespace Content {
25059
- interface ApplicationJson {
25060
- [k: string]: unknown;
25061
- }
25062
- }
25063
- }
25064
- namespace $429 {
25065
- namespace Content {
25066
- interface ApplicationJson {
25067
- [k: string]: unknown;
25068
- }
25069
- }
25070
- }
25071
- namespace $500 {
25072
- namespace Content {
25073
- interface ApplicationJson {
25074
- [k: string]: unknown;
25075
- }
25076
- }
25077
- }
25078
- namespace $503 {
25079
- namespace Content {
25080
- interface ApplicationJson {
25081
- [k: string]: unknown;
25082
- }
25083
- }
25084
- }
25085
- namespace Default {
25086
- namespace Content {
25087
- interface ApplicationJson {
25088
- [k: string]: unknown;
25089
- }
25090
- }
25091
- }
25092
- }
25093
- }
25094
- }
25095
25445
  namespace V2DeliveryBoxesDeliveryBoxIdDescription {
25096
25446
  namespace Patch {
25097
25447
  namespace Parameters {
@@ -31839,5 +32189,285 @@ export declare namespace MittwaldAPIV2 {
31839
32189
  }
31840
32190
  }
31841
32191
  }
32192
+ namespace V2ContainerTemplatesTemplateIdStatistics {
32193
+ namespace Get {
32194
+ namespace Parameters {
32195
+ type Path = {
32196
+ templateId: string;
32197
+ };
32198
+ type Header = {};
32199
+ type Query = {};
32200
+ }
32201
+ namespace Responses {
32202
+ namespace $200 {
32203
+ namespace Content {
32204
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsResponse;
32205
+ }
32206
+ }
32207
+ namespace $400 {
32208
+ namespace Content {
32209
+ interface ApplicationJson {
32210
+ [k: string]: unknown;
32211
+ }
32212
+ }
32213
+ }
32214
+ namespace $404 {
32215
+ namespace Content {
32216
+ interface ApplicationJson {
32217
+ [k: string]: unknown;
32218
+ }
32219
+ }
32220
+ }
32221
+ namespace $429 {
32222
+ namespace Content {
32223
+ interface ApplicationJson {
32224
+ [k: string]: unknown;
32225
+ }
32226
+ }
32227
+ }
32228
+ namespace $500 {
32229
+ namespace Content {
32230
+ interface ApplicationJson {
32231
+ [k: string]: unknown;
32232
+ }
32233
+ }
32234
+ }
32235
+ namespace Default {
32236
+ namespace Content {
32237
+ interface ApplicationJson {
32238
+ [k: string]: unknown;
32239
+ }
32240
+ }
32241
+ }
32242
+ }
32243
+ }
32244
+ }
32245
+ namespace V2ContainerTemplateCategoriesCategoryStatistics {
32246
+ namespace Get {
32247
+ namespace Parameters {
32248
+ type Path = {
32249
+ category: string;
32250
+ };
32251
+ type Header = {};
32252
+ type Query = {};
32253
+ }
32254
+ namespace Responses {
32255
+ namespace $200 {
32256
+ namespace Content {
32257
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsByCategoryResponse;
32258
+ }
32259
+ }
32260
+ namespace $400 {
32261
+ namespace Content {
32262
+ interface ApplicationJson {
32263
+ [k: string]: unknown;
32264
+ }
32265
+ }
32266
+ }
32267
+ namespace $429 {
32268
+ namespace Content {
32269
+ interface ApplicationJson {
32270
+ [k: string]: unknown;
32271
+ }
32272
+ }
32273
+ }
32274
+ namespace $500 {
32275
+ namespace Content {
32276
+ interface ApplicationJson {
32277
+ [k: string]: unknown;
32278
+ }
32279
+ }
32280
+ }
32281
+ namespace Default {
32282
+ namespace Content {
32283
+ interface ApplicationJson {
32284
+ [k: string]: unknown;
32285
+ }
32286
+ }
32287
+ }
32288
+ }
32289
+ }
32290
+ }
32291
+ namespace V2CustomersCustomerIdAiHostingsPlanId {
32292
+ namespace Get {
32293
+ namespace Parameters {
32294
+ type Path = {
32295
+ customerId: string;
32296
+ planId: string;
32297
+ };
32298
+ type Header = {};
32299
+ type Query = {
32300
+ topUsageCount?: number;
32301
+ };
32302
+ }
32303
+ namespace Responses {
32304
+ namespace $200 {
32305
+ namespace Content {
32306
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingPlanOptions;
32307
+ }
32308
+ }
32309
+ namespace $400 {
32310
+ namespace Content {
32311
+ interface ApplicationJson {
32312
+ [k: string]: unknown;
32313
+ }
32314
+ }
32315
+ }
32316
+ namespace $403 {
32317
+ namespace Content {
32318
+ interface ApplicationJson {
32319
+ [k: string]: unknown;
32320
+ }
32321
+ }
32322
+ }
32323
+ namespace $404 {
32324
+ namespace Content {
32325
+ interface ApplicationJson {
32326
+ [k: string]: unknown;
32327
+ }
32328
+ }
32329
+ }
32330
+ namespace $429 {
32331
+ namespace Content {
32332
+ interface ApplicationJson {
32333
+ [k: string]: unknown;
32334
+ }
32335
+ }
32336
+ }
32337
+ namespace Default {
32338
+ namespace Content {
32339
+ interface ApplicationJson {
32340
+ [k: string]: unknown;
32341
+ }
32342
+ }
32343
+ }
32344
+ }
32345
+ }
32346
+ }
32347
+ namespace V2CustomersCustomerIdAiHostings {
32348
+ namespace Get {
32349
+ namespace Parameters {
32350
+ type Path = {
32351
+ customerId: string;
32352
+ };
32353
+ type Header = {};
32354
+ type Query = {
32355
+ topUsageCount?: number;
32356
+ };
32357
+ }
32358
+ namespace Responses {
32359
+ namespace $200 {
32360
+ namespace Content {
32361
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingCustomerPlans;
32362
+ }
32363
+ }
32364
+ namespace $400 {
32365
+ namespace Content {
32366
+ interface ApplicationJson {
32367
+ [k: string]: unknown;
32368
+ }
32369
+ }
32370
+ }
32371
+ namespace $403 {
32372
+ namespace Content {
32373
+ interface ApplicationJson {
32374
+ [k: string]: unknown;
32375
+ }
32376
+ }
32377
+ }
32378
+ namespace $404 {
32379
+ namespace Content {
32380
+ interface ApplicationJson {
32381
+ [k: string]: unknown;
32382
+ }
32383
+ }
32384
+ }
32385
+ namespace $429 {
32386
+ namespace Content {
32387
+ interface ApplicationJson {
32388
+ [k: string]: unknown;
32389
+ }
32390
+ }
32391
+ }
32392
+ namespace Default {
32393
+ namespace Content {
32394
+ interface ApplicationJson {
32395
+ [k: string]: unknown;
32396
+ }
32397
+ }
32398
+ }
32399
+ }
32400
+ }
32401
+ }
32402
+ namespace V2MailAddressesMailAddressIdRequestRateLimitChange {
32403
+ namespace Post {
32404
+ namespace Parameters {
32405
+ type Path = {
32406
+ mailAddressId: string;
32407
+ };
32408
+ interface RequestBody {
32409
+ rateLimitId: string;
32410
+ }
32411
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
32412
+ type Query = {};
32413
+ }
32414
+ namespace Responses {
32415
+ namespace $204 {
32416
+ namespace Content {
32417
+ type Empty = unknown;
32418
+ }
32419
+ }
32420
+ namespace $400 {
32421
+ namespace Content {
32422
+ interface ApplicationJson {
32423
+ [k: string]: unknown;
32424
+ }
32425
+ }
32426
+ }
32427
+ namespace $403 {
32428
+ namespace Content {
32429
+ interface ApplicationJson {
32430
+ [k: string]: unknown;
32431
+ }
32432
+ }
32433
+ }
32434
+ namespace $404 {
32435
+ namespace Content {
32436
+ interface ApplicationJson {
32437
+ [k: string]: unknown;
32438
+ }
32439
+ }
32440
+ }
32441
+ namespace $429 {
32442
+ namespace Content {
32443
+ interface ApplicationJson {
32444
+ [k: string]: unknown;
32445
+ }
32446
+ }
32447
+ }
32448
+ namespace $500 {
32449
+ namespace Content {
32450
+ interface ApplicationJson {
32451
+ [k: string]: unknown;
32452
+ }
32453
+ }
32454
+ }
32455
+ namespace $503 {
32456
+ namespace Content {
32457
+ interface ApplicationJson {
32458
+ [k: string]: unknown;
32459
+ }
32460
+ }
32461
+ }
32462
+ namespace Default {
32463
+ namespace Content {
32464
+ interface ApplicationJson {
32465
+ [k: string]: unknown;
32466
+ }
32467
+ }
32468
+ }
32469
+ }
32470
+ }
32471
+ }
31842
32472
  }
31843
32473
  }