@mittwald/api-client 4.403.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. */
@@ -104,8 +106,6 @@ const buildContainerApi = (baseClient) => ({
104
106
  listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
105
107
  /** List Volumes belonging to a Project. */
106
108
  listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
107
- /** Get a Container Template icon. */
108
- getTemplateIcon: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateIcon, baseClient.container.getTemplateIcon).getApiResource,
109
109
  });
110
110
  const buildContractApi = (baseClient) => ({
111
111
  /** Return the BaseItem of the Contract with the given ID. */
@@ -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. */
@@ -194,8 +196,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
194
196
  startService: this.requestFunctionFactory(descriptors.containerStartService),
195
197
  /** Stop a started Service. */
196
198
  stopService: this.requestFunctionFactory(descriptors.containerStopService),
197
- /** Get a Container Template icon. */
198
- getTemplateIcon: this.requestFunctionFactory(descriptors.containerGetTemplateIcon),
199
199
  };
200
200
  /** The contract API allows you to manage your contracts and orders */
201
201
  contract = {
@@ -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}",
@@ -2830,9 +2836,3 @@ export const verificationVerifyCompany = {
2830
2836
  method: "POST",
2831
2837
  operationId: "verification-verify-company",
2832
2838
  };
2833
- /** Get a Container Template icon. */
2834
- export const containerGetTemplateIcon = {
2835
- path: "/v2/container-templates/{templateId}/icon",
2836
- method: "GET",
2837
- operationId: "container-get-template-icon",
2838
- };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.402.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;
@@ -799,13 +806,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
799
806
  page?: number | undefined;
800
807
  } | undefined;
801
808
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
802
- /** Get a Container Template icon. */
803
- getTemplateIcon: (conf: {
804
- templateId: string;
805
- headers?: {
806
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
807
- } | undefined;
808
- }) => import("@mittwald/react-use-promise").AsyncResource<string>;
809
809
  };
810
810
  declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
811
811
  /** Return the BaseItem of the Contract with the given ID. */
@@ -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;
@@ -6073,53 +6120,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6073
6120
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6074
6121
  [x: string]: unknown;
6075
6122
  }, 500, "application/json">>>;
6076
- /** Get a Container Template icon. */
6077
- getTemplateIcon: (request: {
6078
- templateId: string;
6079
- headers?: {
6080
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6081
- } | undefined;
6082
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6083
- headers?: Partial<{
6084
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6085
- }>;
6086
- } & {
6087
- pathParameters: {
6088
- templateId: string;
6089
- };
6090
- }, 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<{
6091
- [x: string]: unknown;
6092
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6093
- [x: string]: unknown;
6094
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6095
- [x: string]: unknown;
6096
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6097
- [x: string]: unknown;
6098
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6099
- [x: string]: unknown;
6100
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6101
- [x: string]: unknown;
6102
- }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6103
- headers?: Partial<{
6104
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6105
- }>;
6106
- } & {
6107
- pathParameters: {
6108
- templateId: string;
6109
- };
6110
- }, 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<{
6111
- [x: string]: unknown;
6112
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6113
- [x: string]: unknown;
6114
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6115
- [x: string]: unknown;
6116
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6117
- [x: string]: unknown;
6118
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6119
- [x: string]: unknown;
6120
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6121
- [x: string]: unknown;
6122
- }, 503, "application/json">>>;
6123
6123
  };
6124
6124
  /** The contract API allows you to manage your contracts and orders */
6125
6125
  readonly contract: {
@@ -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. */
@@ -947,5 +949,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
947
949
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
948
950
  /** Check if a company exists. */
949
951
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
950
- /** Get a Container Template icon. */
951
- 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">>;
@@ -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>;
@@ -1890,10 +1894,6 @@ export declare namespace MittwaldAPIV2 {
1890
1894
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1891
1895
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1892
1896
  }
1893
- namespace ContainerGetTemplateIcon {
1894
- type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateIcon>;
1895
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateIcon, TStatus>;
1896
- }
1897
1897
  }
1898
1898
  namespace Components {
1899
1899
  namespace Schemas {
@@ -2170,6 +2170,13 @@ export declare namespace MittwaldAPIV2 {
2170
2170
  timeout: number;
2171
2171
  urlTemplate?: string;
2172
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
+ }
2173
2180
  interface AppError {
2174
2181
  message: string;
2175
2182
  type: string;
@@ -2922,6 +2929,10 @@ export declare namespace MittwaldAPIV2 {
2922
2929
  version: string;
2923
2930
  website?: string;
2924
2931
  }
2932
+ interface ContainerTemplateTranslatedString {
2933
+ de: string;
2934
+ en: string;
2935
+ }
2925
2936
  interface ContainerUpdateRegistry {
2926
2937
  credentials?: MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | null;
2927
2938
  description?: string;
@@ -3933,6 +3944,25 @@ export declare namespace MittwaldAPIV2 {
3933
3944
  value: string;
3934
3945
  }
3935
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";
3936
3966
  /**
3937
3967
  * Typed reason a domain cannot be migrated:
3938
3968
  *
@@ -4273,6 +4303,7 @@ export declare namespace MittwaldAPIV2 {
4273
4303
  nextScheduledExecution?: string;
4274
4304
  state: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecutionState;
4275
4305
  }
4306
+ type MarketplaceExtensionInstanceWebhookExecutionState = "running" | "queued" | "halted" | "failed" | "successful";
4276
4307
  interface MarketplaceExtensionSecret {
4277
4308
  secretId: string;
4278
4309
  usableUntil?: string;
@@ -5896,6 +5927,21 @@ export declare namespace MittwaldAPIV2 {
5896
5927
  sourceAppInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
5897
5928
  };
5898
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
+ }
5899
5945
  interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
5900
5946
  changes: {
5901
5947
  after?: {
@@ -5911,6 +5957,13 @@ export declare namespace MittwaldAPIV2 {
5911
5957
  version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5912
5958
  };
5913
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
+ }
5914
5967
  interface ActivitylogAppInstallationAppVersionSet {
5915
5968
  changes: {
5916
5969
  after?: {
@@ -6864,59 +6917,6 @@ export declare namespace MittwaldAPIV2 {
6864
6917
  }
6865
6918
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6866
6919
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6867
- type MarketplaceExtensionInstanceWebhookExecutionState = "running" | "queued" | "halted" | "failed" | "successful";
6868
- /**
6869
- * A non-blocking finding on an otherwise migratable domain: the domain migrates, but the named subject is skipped.
6870
- */
6871
- interface DomainmigrationDomainMigrationWarning {
6872
- reason: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarningReason;
6873
- /**
6874
- * The affected COAB entity, e.g. the skipped wildcard subdomain hostname.
6875
- */
6876
- subject: string;
6877
- }
6878
- /**
6879
- * Typed non-blocking migration warning: the domain migrates, but the named subject (`warnings[].subject`) needs attention during migration.
6880
- *
6881
- * * `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.
6882
- * * `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.
6883
- * * `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).
6884
- * * `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.
6885
- */
6886
- type DomainmigrationDomainMigrationWarningReason = "subdomainInvalidIngressHostname" | "subdomainInvalidDnsName" | "subdomainNsRecordsOverridden" | "registrantPhoneNeedsEpp";
6887
- interface ActivitylogAppInstallationDesiredSystemSoftwareDeleted {
6888
- changes: {
6889
- after?: {
6890
- softwareVersion?: string;
6891
- } | null;
6892
- before?: {
6893
- softwareVersion?: string;
6894
- } | null;
6895
- };
6896
- name: "app.systemsoftware-deleted";
6897
- parameters: {
6898
- software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6899
- version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6900
- };
6901
- }
6902
- interface ActivitylogAppInstallationRequested {
6903
- name: "app.installation-requested";
6904
- parameters: {
6905
- appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6906
- version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6907
- };
6908
- }
6909
- /**
6910
- * DesiredSystemSoftware describes the desired SystemSoftwareVersion and update policy to apply for a SystemSoftware of an AppInstallation.
6911
- */
6912
- interface AppDesiredSystemSoftware {
6913
- systemSoftwareVersion?: string;
6914
- updatePolicy?: MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy;
6915
- }
6916
- interface ContainerTemplateTranslatedString {
6917
- de: string;
6918
- en: string;
6919
- }
6920
6920
  interface CommonsAddress {
6921
6921
  street: string;
6922
6922
  houseNumber: string;
@@ -11117,6 +11117,76 @@ export declare namespace MittwaldAPIV2 {
11117
11117
  }
11118
11118
  }
11119
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
+ }
11120
11190
  namespace V2ContainerTemplatesTemplateId {
11121
11191
  namespace Get {
11122
11192
  namespace Parameters {
@@ -31391,75 +31461,5 @@ export declare namespace MittwaldAPIV2 {
31391
31461
  }
31392
31462
  }
31393
31463
  }
31394
- namespace V2ContainerTemplatesTemplateIdIcon {
31395
- namespace Get {
31396
- namespace Parameters {
31397
- type Path = {
31398
- templateId: string;
31399
- };
31400
- type Header = {};
31401
- type Query = {};
31402
- }
31403
- namespace Responses {
31404
- namespace $200 {
31405
- namespace Content {
31406
- type ApplicationOctetStream = string;
31407
- type ImageJpeg = string;
31408
- type ImagePng = string;
31409
- type ImageSvgXml = string;
31410
- }
31411
- }
31412
- namespace $400 {
31413
- namespace Content {
31414
- interface ApplicationJson {
31415
- [k: string]: unknown;
31416
- }
31417
- }
31418
- }
31419
- namespace $403 {
31420
- namespace Content {
31421
- interface ApplicationJson {
31422
- [k: string]: unknown;
31423
- }
31424
- }
31425
- }
31426
- namespace $404 {
31427
- namespace Content {
31428
- interface ApplicationJson {
31429
- [k: string]: unknown;
31430
- }
31431
- }
31432
- }
31433
- namespace $429 {
31434
- namespace Content {
31435
- interface ApplicationJson {
31436
- [k: string]: unknown;
31437
- }
31438
- }
31439
- }
31440
- namespace $500 {
31441
- namespace Content {
31442
- interface ApplicationJson {
31443
- [k: string]: unknown;
31444
- }
31445
- }
31446
- }
31447
- namespace $503 {
31448
- namespace Content {
31449
- interface ApplicationJson {
31450
- [k: string]: unknown;
31451
- }
31452
- }
31453
- }
31454
- namespace Default {
31455
- namespace Content {
31456
- interface ApplicationJson {
31457
- [k: string]: unknown;
31458
- }
31459
- }
31460
- }
31461
- }
31462
- }
31463
- }
31464
31464
  }
31465
31465
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.402.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.403.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.403.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.403.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": "3955acf2402dfb1d79193c174cd99b94a6b5a723"
83
+ "gitHead": "e7d51e730ce06f622877449d89aeb8cd9244afea"
84
84
  }