@mittwald/api-client 4.402.0 → 4.404.0

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.
@@ -92,6 +92,8 @@ const buildContainerApi = (baseClient) => ({
92
92
  getServiceLogs: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogs, baseClient.container.getServiceLogs).getApiResource,
93
93
  /** Get a Service belonging to a Stack. */
94
94
  getService: new ApiCallAsyncResourceFactory(descriptors.containerGetService, baseClient.container.getService).getApiResource,
95
+ /** Get a Container Template icon. */
96
+ getTemplateIcon: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateIcon, baseClient.container.getTemplateIcon).getApiResource,
95
97
  /** Get a Container Template by ID. */
96
98
  getTemplate: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplate, baseClient.container.getTemplate).getApiResource,
97
99
  /** List Stacks belonging to the executing user. */
@@ -168,6 +168,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
168
168
  getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
169
169
  /** Get a Service belonging to a Stack. */
170
170
  getService: this.requestFunctionFactory(descriptors.containerGetService),
171
+ /** Get a Container Template icon. */
172
+ getTemplateIcon: this.requestFunctionFactory(descriptors.containerGetTemplateIcon),
171
173
  /** Get a Container Template by ID. */
172
174
  getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
173
175
  /** List Stacks belonging to the executing user. */
@@ -448,6 +448,12 @@ export const containerGetService = {
448
448
  method: "GET",
449
449
  operationId: "container-get-service",
450
450
  };
451
+ /** Get a Container Template icon. */
452
+ export const containerGetTemplateIcon = {
453
+ path: "/v2/container-templates/{templateId}/icon",
454
+ method: "GET",
455
+ operationId: "container-get-template-icon",
456
+ };
451
457
  /** Get a Container Template by ID. */
452
458
  export const containerGetTemplate = {
453
459
  path: "/v2/container-templates/{templateId}",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.401.0';
1
+ export const MittwaldAPIClientVersion = '4.403.0';
@@ -668,6 +668,13 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
668
668
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
669
669
  statusSetAt: string;
670
670
  }>;
671
+ /** Get a Container Template icon. */
672
+ getTemplateIcon: (conf: {
673
+ templateId: string;
674
+ headers?: {
675
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
676
+ } | undefined;
677
+ }) => import("@mittwald/react-use-promise").AsyncResource<string>;
671
678
  /** Get a Container Template by ID. */
672
679
  getTemplate: (conf: {
673
680
  templateId: string;
@@ -697,7 +704,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
697
704
  value: string;
698
705
  }[];
699
706
  } | undefined;
700
- icon: string;
707
+ iconUrl: string;
701
708
  id: string;
702
709
  license?: {
703
710
  link?: string;
@@ -5087,6 +5087,53 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5087
5087
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5088
5088
  [x: string]: unknown;
5089
5089
  }, 500, "application/json">>>;
5090
+ /** Get a Container Template icon. */
5091
+ getTemplateIcon: (request: {
5092
+ templateId: string;
5093
+ headers?: {
5094
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5095
+ } | undefined;
5096
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5097
+ headers?: Partial<{
5098
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5099
+ }>;
5100
+ } & {
5101
+ pathParameters: {
5102
+ templateId: string;
5103
+ };
5104
+ }, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<{
5105
+ [x: string]: unknown;
5106
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5107
+ [x: string]: unknown;
5108
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5109
+ [x: string]: unknown;
5110
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5111
+ [x: string]: unknown;
5112
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5113
+ [x: string]: unknown;
5114
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
5115
+ [x: string]: unknown;
5116
+ }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5117
+ headers?: Partial<{
5118
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5119
+ }>;
5120
+ } & {
5121
+ pathParameters: {
5122
+ templateId: string;
5123
+ };
5124
+ }, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<{
5125
+ [x: string]: unknown;
5126
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5127
+ [x: string]: unknown;
5128
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5129
+ [x: string]: unknown;
5130
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5131
+ [x: string]: unknown;
5132
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5133
+ [x: string]: unknown;
5134
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
5135
+ [x: string]: unknown;
5136
+ }, 503, "application/json">>>;
5090
5137
  /** Get a Container Template by ID. */
5091
5138
  getTemplate: (request: {
5092
5139
  templateId: string;
@@ -5124,7 +5171,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5124
5171
  value: string;
5125
5172
  }[];
5126
5173
  } | undefined;
5127
- icon: string;
5174
+ iconUrl: string;
5128
5175
  id: string;
5129
5176
  license?: {
5130
5177
  link?: string;
@@ -5183,7 +5230,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5183
5230
  value: string;
5184
5231
  }[];
5185
5232
  } | undefined;
5186
- icon: string;
5233
+ iconUrl: string;
5187
5234
  id: string;
5188
5235
  license?: {
5189
5236
  link?: string;
@@ -25609,6 +25656,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25609
25656
  [x: string]: unknown;
25610
25657
  }, 406, "application/json"> | import("@mittwald/api-client-commons").Response<{
25611
25658
  [x: string]: unknown;
25659
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
25660
+ [x: string]: unknown;
25612
25661
  }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
25613
25662
  [x: string]: unknown;
25614
25663
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -25643,6 +25692,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25643
25692
  [x: string]: unknown;
25644
25693
  }, 406, "application/json"> | import("@mittwald/api-client-commons").Response<{
25645
25694
  [x: string]: unknown;
25695
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
25696
+ [x: string]: unknown;
25646
25697
  }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
25647
25698
  [x: string]: unknown;
25648
25699
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -153,6 +153,8 @@ export declare const containerGetContainerImageConfig: OpenAPIOperation<RequestT
153
153
  export declare const containerGetServiceLogs: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$200.Content.TextPlain>, 200, "text/plain"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
154
154
  /** Get a Service belonging to a Stack. */
155
155
  export declare const containerGetService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
156
+ /** Get a Container Template icon. */
157
+ export declare const containerGetTemplateIcon: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ApplicationOctetStream>, 200, "application/octet-stream"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImageJpeg>, 200, "image/jpeg"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImagePng>, 200, "image/png"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImageSvgXml>, 200, "image/svg+xml"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
156
158
  /** Get a Container Template by ID. */
157
159
  export declare const containerGetTemplate: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
158
160
  /** List Stacks belonging to the executing user. */
@@ -570,7 +572,7 @@ export declare const extensionSetExtensionPublishedState: OpenAPIOperation<Reque
570
572
  /** Creates or Updates Pricing for an Extension. */
571
573
  export declare const extensionUpdateExtensionPricing: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
572
574
  /** Create a File. */
573
- export declare const fileCreateFile: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$406.Content.ApplicationJson>, 406, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
575
+ export declare const fileCreateFile: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$406.Content.ApplicationJson>, 406, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
574
576
  /** Get a File's meta. */
575
577
  export declare const fileGetFileMeta: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
576
578
  /** Get a FileUploadToken's rules. */
@@ -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>;
@@ -2166,6 +2170,13 @@ export declare namespace MittwaldAPIV2 {
2166
2170
  timeout: number;
2167
2171
  urlTemplate?: string;
2168
2172
  }
2173
+ /**
2174
+ * DesiredSystemSoftware describes the desired SystemSoftwareVersion and update policy to apply for a SystemSoftware of an AppInstallation.
2175
+ */
2176
+ interface AppDesiredSystemSoftware {
2177
+ systemSoftwareVersion?: string;
2178
+ updatePolicy?: MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy;
2179
+ }
2169
2180
  interface AppError {
2170
2181
  message: string;
2171
2182
  type: string;
@@ -2891,7 +2902,7 @@ export declare namespace MittwaldAPIV2 {
2891
2902
  value: string;
2892
2903
  }[];
2893
2904
  };
2894
- icon: string;
2905
+ iconUrl: string;
2895
2906
  id: string;
2896
2907
  license?: {
2897
2908
  link?: string;
@@ -2918,6 +2929,10 @@ export declare namespace MittwaldAPIV2 {
2918
2929
  version: string;
2919
2930
  website?: string;
2920
2931
  }
2932
+ interface ContainerTemplateTranslatedString {
2933
+ de: string;
2934
+ en: string;
2935
+ }
2921
2936
  interface ContainerUpdateRegistry {
2922
2937
  credentials?: MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | null;
2923
2938
  description?: string;
@@ -3929,6 +3944,25 @@ export declare namespace MittwaldAPIV2 {
3929
3944
  value: string;
3930
3945
  }
3931
3946
  type DomainmigrationDNSRecordType = "A" | "AAAA" | "TXT" | "MX" | "CNAME" | "SRV" | "CAA" | "NS";
3947
+ /**
3948
+ * A non-blocking finding on an otherwise migratable domain: the domain migrates, but the named subject is skipped.
3949
+ */
3950
+ interface DomainmigrationDomainMigrationWarning {
3951
+ reason: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarningReason;
3952
+ /**
3953
+ * The affected COAB entity, e.g. the skipped wildcard subdomain hostname.
3954
+ */
3955
+ subject: string;
3956
+ }
3957
+ /**
3958
+ * Typed non-blocking migration warning: the domain migrates, but the named subject (`warnings[].subject`) needs attention during migration.
3959
+ *
3960
+ * * `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.
3961
+ * * `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.
3962
+ * * `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).
3963
+ * * `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.
3964
+ */
3965
+ type DomainmigrationDomainMigrationWarningReason = "subdomainInvalidIngressHostname" | "subdomainInvalidDnsName" | "subdomainNsRecordsOverridden" | "registrantPhoneNeedsEpp";
3932
3966
  /**
3933
3967
  * Typed reason a domain cannot be migrated:
3934
3968
  *
@@ -4269,6 +4303,7 @@ export declare namespace MittwaldAPIV2 {
4269
4303
  nextScheduledExecution?: string;
4270
4304
  state: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecutionState;
4271
4305
  }
4306
+ type MarketplaceExtensionInstanceWebhookExecutionState = "running" | "queued" | "halted" | "failed" | "successful";
4272
4307
  interface MarketplaceExtensionSecret {
4273
4308
  secretId: string;
4274
4309
  usableUntil?: string;
@@ -5892,6 +5927,21 @@ export declare namespace MittwaldAPIV2 {
5892
5927
  sourceAppInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
5893
5928
  };
5894
5929
  }
5930
+ interface ActivitylogAppInstallationDesiredSystemSoftwareDeleted {
5931
+ changes: {
5932
+ after?: {
5933
+ softwareVersion?: string;
5934
+ } | null;
5935
+ before?: {
5936
+ softwareVersion?: string;
5937
+ } | null;
5938
+ };
5939
+ name: "app.systemsoftware-deleted";
5940
+ parameters: {
5941
+ software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5942
+ version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5943
+ };
5944
+ }
5895
5945
  interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
5896
5946
  changes: {
5897
5947
  after?: {
@@ -5907,6 +5957,13 @@ export declare namespace MittwaldAPIV2 {
5907
5957
  version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5908
5958
  };
5909
5959
  }
5960
+ interface ActivitylogAppInstallationRequested {
5961
+ name: "app.installation-requested";
5962
+ parameters: {
5963
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
5964
+ version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5965
+ };
5966
+ }
5910
5967
  interface ActivitylogAppInstallationAppVersionSet {
5911
5968
  changes: {
5912
5969
  after?: {
@@ -6860,59 +6917,6 @@ export declare namespace MittwaldAPIV2 {
6860
6917
  }
6861
6918
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6862
6919
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6863
- type MarketplaceExtensionInstanceWebhookExecutionState = "running" | "queued" | "halted" | "failed" | "successful";
6864
- /**
6865
- * A non-blocking finding on an otherwise migratable domain: the domain migrates, but the named subject is skipped.
6866
- */
6867
- interface DomainmigrationDomainMigrationWarning {
6868
- reason: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarningReason;
6869
- /**
6870
- * The affected COAB entity, e.g. the skipped wildcard subdomain hostname.
6871
- */
6872
- subject: string;
6873
- }
6874
- /**
6875
- * Typed non-blocking migration warning: the domain migrates, but the named subject (`warnings[].subject`) needs attention during migration.
6876
- *
6877
- * * `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.
6878
- * * `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.
6879
- * * `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).
6880
- * * `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.
6881
- */
6882
- type DomainmigrationDomainMigrationWarningReason = "subdomainInvalidIngressHostname" | "subdomainInvalidDnsName" | "subdomainNsRecordsOverridden" | "registrantPhoneNeedsEpp";
6883
- interface ActivitylogAppInstallationDesiredSystemSoftwareDeleted {
6884
- changes: {
6885
- after?: {
6886
- softwareVersion?: string;
6887
- } | null;
6888
- before?: {
6889
- softwareVersion?: string;
6890
- } | null;
6891
- };
6892
- name: "app.systemsoftware-deleted";
6893
- parameters: {
6894
- software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6895
- version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6896
- };
6897
- }
6898
- interface ActivitylogAppInstallationRequested {
6899
- name: "app.installation-requested";
6900
- parameters: {
6901
- appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6902
- version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6903
- };
6904
- }
6905
- /**
6906
- * DesiredSystemSoftware describes the desired SystemSoftwareVersion and update policy to apply for a SystemSoftware of an AppInstallation.
6907
- */
6908
- interface AppDesiredSystemSoftware {
6909
- systemSoftwareVersion?: string;
6910
- updatePolicy?: MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy;
6911
- }
6912
- interface ContainerTemplateTranslatedString {
6913
- de: string;
6914
- en: string;
6915
- }
6916
6920
  interface CommonsAddress {
6917
6921
  street: string;
6918
6922
  houseNumber: string;
@@ -11113,6 +11117,76 @@ export declare namespace MittwaldAPIV2 {
11113
11117
  }
11114
11118
  }
11115
11119
  }
11120
+ namespace V2ContainerTemplatesTemplateIdIcon {
11121
+ namespace Get {
11122
+ namespace Parameters {
11123
+ type Path = {
11124
+ templateId: string;
11125
+ };
11126
+ type Header = {};
11127
+ type Query = {};
11128
+ }
11129
+ namespace Responses {
11130
+ namespace $200 {
11131
+ namespace Content {
11132
+ type ApplicationOctetStream = string;
11133
+ type ImageJpeg = string;
11134
+ type ImagePng = string;
11135
+ type ImageSvgXml = string;
11136
+ }
11137
+ }
11138
+ namespace $400 {
11139
+ namespace Content {
11140
+ interface ApplicationJson {
11141
+ [k: string]: unknown;
11142
+ }
11143
+ }
11144
+ }
11145
+ namespace $403 {
11146
+ namespace Content {
11147
+ interface ApplicationJson {
11148
+ [k: string]: unknown;
11149
+ }
11150
+ }
11151
+ }
11152
+ namespace $404 {
11153
+ namespace Content {
11154
+ interface ApplicationJson {
11155
+ [k: string]: unknown;
11156
+ }
11157
+ }
11158
+ }
11159
+ namespace $429 {
11160
+ namespace Content {
11161
+ interface ApplicationJson {
11162
+ [k: string]: unknown;
11163
+ }
11164
+ }
11165
+ }
11166
+ namespace $500 {
11167
+ namespace Content {
11168
+ interface ApplicationJson {
11169
+ [k: string]: unknown;
11170
+ }
11171
+ }
11172
+ }
11173
+ namespace $503 {
11174
+ namespace Content {
11175
+ interface ApplicationJson {
11176
+ [k: string]: unknown;
11177
+ }
11178
+ }
11179
+ }
11180
+ namespace Default {
11181
+ namespace Content {
11182
+ interface ApplicationJson {
11183
+ [k: string]: unknown;
11184
+ }
11185
+ }
11186
+ }
11187
+ }
11188
+ }
11189
+ }
11116
11190
  namespace V2ContainerTemplatesTemplateId {
11117
11191
  namespace Get {
11118
11192
  namespace Parameters {
@@ -21690,6 +21764,13 @@ export declare namespace MittwaldAPIV2 {
21690
21764
  }
21691
21765
  }
21692
21766
  }
21767
+ namespace $409 {
21768
+ namespace Content {
21769
+ interface ApplicationJson {
21770
+ [k: string]: unknown;
21771
+ }
21772
+ }
21773
+ }
21693
21774
  namespace $422 {
21694
21775
  namespace Content {
21695
21776
  interface ApplicationJson {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.401.0';
1
+ export declare const MittwaldAPIClientVersion = '4.403.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.402.0",
3
+ "version": "4.404.0",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -46,11 +46,11 @@
46
46
  "test:compile": "run tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@mittwald/api-client-commons": "^4.402.0",
49
+ "@mittwald/api-client-commons": "^4.404.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.402.0",
53
+ "@mittwald/api-code-generator": "^4.404.0",
54
54
  "@mittwald/react-use-promise": "^2.6.2",
55
55
  "@types/node": "^22.18.11",
56
56
  "@types/react": "^18.3.26",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "464f50a655726a08086e59d8c23f55374258e389"
83
+ "gitHead": "e7d51e730ce06f622877449d89aeb8cd9244afea"
84
84
  }