@mittwald/api-client 4.435.0 → 4.436.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,8 +92,6 @@ 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 asset. */
96
- getTemplateAsset: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateAsset, baseClient.container.getTemplateAsset).getApiResource,
97
95
  /** Get a Container Template by ID. */
98
96
  getTemplate: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplate, baseClient.container.getTemplate).getApiResource,
99
97
  /** List Stacks belonging to the executing user. */
@@ -162,8 +162,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
162
162
  getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
163
163
  /** Get a Service belonging to a Stack. */
164
164
  getService: this.requestFunctionFactory(descriptors.containerGetService),
165
- /** Get a Container Template asset. */
166
- getTemplateAsset: this.requestFunctionFactory(descriptors.containerGetTemplateAsset),
167
165
  /** Get a Container Template by ID. */
168
166
  getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
169
167
  /** List Stacks belonging to the executing user. */
@@ -430,12 +430,6 @@ export const containerGetService = {
430
430
  method: "GET",
431
431
  operationId: "container-get-service",
432
432
  };
433
- /** Get a Container Template asset. */
434
- export const containerGetTemplateAsset = {
435
- path: "/v2/container-templates/{templateId}/assets/{assetPath}",
436
- method: "GET",
437
- operationId: "container-get-template-asset",
438
- };
439
433
  /** Get a Container Template by ID. */
440
434
  export const containerGetTemplate = {
441
435
  path: "/v2/container-templates/{templateId}",
@@ -92,8 +92,6 @@ 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 asset. */
96
- getTemplateAsset: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateAsset, baseClient.container.getTemplateAsset).getApiResource,
97
95
  /** Get a Container Template by ID. */
98
96
  getTemplate: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplate, baseClient.container.getTemplate).getApiResource,
99
97
  /** List Stacks belonging to the executing user. */
@@ -162,8 +162,6 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
162
162
  getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
163
163
  /** Get a Service belonging to a Stack. */
164
164
  getService: this.requestFunctionFactory(descriptors.containerGetService),
165
- /** Get a Container Template asset. */
166
- getTemplateAsset: this.requestFunctionFactory(descriptors.containerGetTemplateAsset),
167
165
  /** Get a Container Template by ID. */
168
166
  getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
169
167
  /** List Stacks belonging to the executing user. */
@@ -430,12 +430,6 @@ export const containerGetService = {
430
430
  method: "GET",
431
431
  operationId: "container-get-service",
432
432
  };
433
- /** Get a Container Template asset. */
434
- export const containerGetTemplateAsset = {
435
- path: "/v3-next/container-templates/{templateId}/assets/{assetPath}",
436
- method: "GET",
437
- operationId: "container-get-template-asset",
438
- };
439
433
  /** Get a Container Template by ID. */
440
434
  export const containerGetTemplate = {
441
435
  path: "/v3-next/container-templates/{templateId}",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.434.0';
1
+ export const MittwaldAPIClientVersion = '4.435.0';
@@ -670,14 +670,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
670
670
  statusSetAt: string;
671
671
  templateId?: string | undefined;
672
672
  }>;
673
- /** Get a Container Template asset. */
674
- getTemplateAsset: (conf: {
675
- templateId: string;
676
- assetPath: string;
677
- headers?: {
678
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
679
- } | undefined;
680
- }) => import("@mittwald/react-use-promise").AsyncResource<string>;
681
673
  /** Get a Container Template by ID. */
682
674
  getTemplate: (conf: {
683
675
  templateId: string;
@@ -4950,56 +4950,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4950
4950
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4951
4951
  [x: string]: unknown;
4952
4952
  }, 500, "application/json">>>;
4953
- /** Get a Container Template asset. */
4954
- getTemplateAsset: (request: {
4955
- templateId: string;
4956
- assetPath: string;
4957
- headers?: {
4958
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4959
- } | undefined;
4960
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4961
- headers?: Partial<{
4962
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4963
- }>;
4964
- } & {
4965
- pathParameters: {
4966
- templateId: string;
4967
- assetPath: string;
4968
- };
4969
- }, 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<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
4970
- [x: string]: unknown;
4971
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4972
- [x: string]: unknown;
4973
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4974
- [x: string]: unknown;
4975
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4976
- [x: string]: unknown;
4977
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4978
- [x: string]: unknown;
4979
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
4980
- [x: string]: unknown;
4981
- }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4982
- headers?: Partial<{
4983
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4984
- }>;
4985
- } & {
4986
- pathParameters: {
4987
- templateId: string;
4988
- assetPath: string;
4989
- };
4990
- }, 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<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
4991
- [x: string]: unknown;
4992
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4993
- [x: string]: unknown;
4994
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4995
- [x: string]: unknown;
4996
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4997
- [x: string]: unknown;
4998
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4999
- [x: string]: unknown;
5000
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
5001
- [x: string]: unknown;
5002
- }, 503, "application/json">>>;
5003
4953
  /** Get a Container Template by ID. */
5004
4954
  getTemplate: (request: {
5005
4955
  templateId: string;
@@ -147,8 +147,6 @@ export declare const containerGetContainerImageConfig: OpenAPIOperation<RequestT
147
147
  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">>;
148
148
  /** Get a Service belonging to a Stack. */
149
149
  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">>;
150
- /** Get a Container Template asset. */
151
- export declare const containerGetTemplateAsset: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageJpeg>, 200, "image/jpeg"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImagePng>, 200, "image/png"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageSvgXml>, 200, "image/svg+xml"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageWebp>, 200, "image/webp"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
152
150
  /** Get a Container Template by ID. */
153
151
  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">>;
154
152
  /** List Stacks belonging to the executing user. */
@@ -290,10 +290,6 @@ export declare namespace MittwaldAPIV2 {
290
290
  type RequestData = InferredRequestData<typeof descriptors.containerGetService>;
291
291
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetService, TStatus>;
292
292
  }
293
- namespace ContainerGetTemplateAsset {
294
- type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateAsset>;
295
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateAsset, TStatus>;
296
- }
297
293
  namespace ContainerGetTemplate {
298
294
  type RequestData = InferredRequestData<typeof descriptors.containerGetTemplate>;
299
295
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplate, TStatus>;
@@ -11120,77 +11116,6 @@ export declare namespace MittwaldAPIV2 {
11120
11116
  }
11121
11117
  }
11122
11118
  }
11123
- namespace V2ContainerTemplatesTemplateIdAssetsAssetPath {
11124
- namespace Get {
11125
- namespace Parameters {
11126
- type Path = {
11127
- templateId: string;
11128
- assetPath: string;
11129
- };
11130
- type Header = {};
11131
- type Query = {};
11132
- }
11133
- namespace Responses {
11134
- namespace $200 {
11135
- namespace Content {
11136
- type ImageJpeg = string;
11137
- type ImagePng = string;
11138
- type ImageSvgXml = string;
11139
- type ImageWebp = string;
11140
- }
11141
- }
11142
- namespace $400 {
11143
- namespace Content {
11144
- interface ApplicationJson {
11145
- [k: string]: unknown;
11146
- }
11147
- }
11148
- }
11149
- namespace $403 {
11150
- namespace Content {
11151
- interface ApplicationJson {
11152
- [k: string]: unknown;
11153
- }
11154
- }
11155
- }
11156
- namespace $404 {
11157
- namespace Content {
11158
- interface ApplicationJson {
11159
- [k: string]: unknown;
11160
- }
11161
- }
11162
- }
11163
- namespace $429 {
11164
- namespace Content {
11165
- interface ApplicationJson {
11166
- [k: string]: unknown;
11167
- }
11168
- }
11169
- }
11170
- namespace $500 {
11171
- namespace Content {
11172
- interface ApplicationJson {
11173
- [k: string]: unknown;
11174
- }
11175
- }
11176
- }
11177
- namespace $503 {
11178
- namespace Content {
11179
- interface ApplicationJson {
11180
- [k: string]: unknown;
11181
- }
11182
- }
11183
- }
11184
- namespace Default {
11185
- namespace Content {
11186
- interface ApplicationJson {
11187
- [k: string]: unknown;
11188
- }
11189
- }
11190
- }
11191
- }
11192
- }
11193
- }
11194
11119
  namespace V2ContainerTemplatesTemplateId {
11195
11120
  namespace Get {
11196
11121
  namespace Parameters {
@@ -17046,6 +16971,7 @@ export declare namespace MittwaldAPIV2 {
17046
16971
  namespace V2AppInstallationsAppInstallationIdDatabaseReplace { }
17047
16972
  namespace V2ProjectBackupsProjectBackupIdExpirationTime { }
17048
16973
  namespace V2ProjectBackupsProjectBackupIdDescription { }
16974
+ namespace V2ContainerTemplatesTemplateIdAssetsAssetPath { }
17049
16975
  namespace V2ContainerTemplatesTemplateIdIcon { }
17050
16976
  namespace V2StacksStackIdUpdateSchedule { }
17051
16977
  namespace V2ActionsValidateContainerRegistryUri { }
@@ -670,14 +670,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
670
670
  statusSetAt: string;
671
671
  templateId?: string | undefined;
672
672
  }>;
673
- /** Get a Container Template asset. */
674
- getTemplateAsset: (conf: {
675
- templateId: string;
676
- assetPath: string;
677
- headers?: {
678
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
679
- } | undefined;
680
- }) => import("@mittwald/react-use-promise").AsyncResource<string>;
681
673
  /** Get a Container Template by ID. */
682
674
  getTemplate: (conf: {
683
675
  templateId: string;
@@ -4950,56 +4950,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
4950
4950
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4951
4951
  [x: string]: unknown;
4952
4952
  }, 500, "application/json">>>;
4953
- /** Get a Container Template asset. */
4954
- getTemplateAsset: (request: {
4955
- templateId: string;
4956
- assetPath: string;
4957
- headers?: {
4958
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4959
- } | undefined;
4960
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4961
- headers?: Partial<{
4962
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4963
- }>;
4964
- } & {
4965
- pathParameters: {
4966
- templateId: string;
4967
- assetPath: string;
4968
- };
4969
- }, 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<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
4970
- [x: string]: unknown;
4971
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4972
- [x: string]: unknown;
4973
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4974
- [x: string]: unknown;
4975
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4976
- [x: string]: unknown;
4977
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4978
- [x: string]: unknown;
4979
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
4980
- [x: string]: unknown;
4981
- }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4982
- headers?: Partial<{
4983
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4984
- }>;
4985
- } & {
4986
- pathParameters: {
4987
- templateId: string;
4988
- assetPath: string;
4989
- };
4990
- }, 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<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
4991
- [x: string]: unknown;
4992
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4993
- [x: string]: unknown;
4994
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4995
- [x: string]: unknown;
4996
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4997
- [x: string]: unknown;
4998
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4999
- [x: string]: unknown;
5000
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
5001
- [x: string]: unknown;
5002
- }, 503, "application/json">>>;
5003
4953
  /** Get a Container Template by ID. */
5004
4954
  getTemplate: (request: {
5005
4955
  templateId: string;
@@ -147,8 +147,6 @@ export declare const containerGetContainerImageConfig: OpenAPIOperation<RequestT
147
147
  export declare const containerGetServiceLogs: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$200.Content.TextPlain>, 200, "text/plain"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
148
148
  /** Get a Service belonging to a Stack. */
149
149
  export declare const containerGetService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
150
- /** Get a Container Template asset. */
151
- export declare const containerGetTemplateAsset: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageJpeg>, 200, "image/jpeg"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImagePng>, 200, "image/png"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageSvgXml>, 200, "image/svg+xml"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageWebp>, 200, "image/webp"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
152
150
  /** Get a Container Template by ID. */
153
151
  export declare const containerGetTemplate: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
154
152
  /** List Stacks belonging to the executing user. */
@@ -290,10 +290,6 @@ export declare namespace MittwaldAPIV3Next {
290
290
  type RequestData = InferredRequestData<typeof descriptors.containerGetService>;
291
291
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetService, TStatus>;
292
292
  }
293
- namespace ContainerGetTemplateAsset {
294
- type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateAsset>;
295
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateAsset, TStatus>;
296
- }
297
293
  namespace ContainerGetTemplate {
298
294
  type RequestData = InferredRequestData<typeof descriptors.containerGetTemplate>;
299
295
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplate, TStatus>;
@@ -11112,77 +11108,6 @@ export declare namespace MittwaldAPIV3Next {
11112
11108
  }
11113
11109
  }
11114
11110
  }
11115
- namespace V3NextContainerTemplatesTemplateIdAssetsAssetPath {
11116
- namespace Get {
11117
- namespace Parameters {
11118
- type Path = {
11119
- templateId: string;
11120
- assetPath: string;
11121
- };
11122
- type Header = {};
11123
- type Query = {};
11124
- }
11125
- namespace Responses {
11126
- namespace $200 {
11127
- namespace Content {
11128
- type ImageJpeg = string;
11129
- type ImagePng = string;
11130
- type ImageSvgXml = string;
11131
- type ImageWebp = string;
11132
- }
11133
- }
11134
- namespace $400 {
11135
- namespace Content {
11136
- interface ApplicationJson {
11137
- [k: string]: unknown;
11138
- }
11139
- }
11140
- }
11141
- namespace $403 {
11142
- namespace Content {
11143
- interface ApplicationJson {
11144
- [k: string]: unknown;
11145
- }
11146
- }
11147
- }
11148
- namespace $404 {
11149
- namespace Content {
11150
- interface ApplicationJson {
11151
- [k: string]: unknown;
11152
- }
11153
- }
11154
- }
11155
- namespace $429 {
11156
- namespace Content {
11157
- interface ApplicationJson {
11158
- [k: string]: unknown;
11159
- }
11160
- }
11161
- }
11162
- namespace $500 {
11163
- namespace Content {
11164
- interface ApplicationJson {
11165
- [k: string]: unknown;
11166
- }
11167
- }
11168
- }
11169
- namespace $503 {
11170
- namespace Content {
11171
- interface ApplicationJson {
11172
- [k: string]: unknown;
11173
- }
11174
- }
11175
- }
11176
- namespace Default {
11177
- namespace Content {
11178
- interface ApplicationJson {
11179
- [k: string]: unknown;
11180
- }
11181
- }
11182
- }
11183
- }
11184
- }
11185
- }
11186
11111
  namespace V3NextContainerTemplatesTemplateId {
11187
11112
  namespace Get {
11188
11113
  namespace Parameters {
@@ -17036,6 +16961,7 @@ export declare namespace MittwaldAPIV3Next {
17036
16961
  namespace V3NextAppInstallationsAppInstallationIdDatabaseReplace { }
17037
16962
  namespace V3NextProjectBackupsProjectBackupIdExpirationTime { }
17038
16963
  namespace V3NextProjectBackupsProjectBackupIdDescription { }
16964
+ namespace V3NextContainerTemplatesTemplateIdAssetsAssetPath { }
17039
16965
  namespace V3NextContainerTemplatesTemplateIdIcon { }
17040
16966
  namespace V3NextStacksStackIdUpdateSchedule { }
17041
16967
  namespace V3NextActionsValidateContainerRegistryUri { }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.434.0';
1
+ export declare const MittwaldAPIClientVersion = '4.435.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.435.0",
3
+ "version": "4.436.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",
@@ -72,11 +72,11 @@
72
72
  "test:compile": "run tsc --noEmit"
73
73
  },
74
74
  "dependencies": {
75
- "@mittwald/api-client-commons": "^4.435.0",
75
+ "@mittwald/api-client-commons": "^4.436.0",
76
76
  "browser-or-node": "^3.0.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@mittwald/api-code-generator": "^4.435.0",
79
+ "@mittwald/api-code-generator": "^4.436.0",
80
80
  "@mittwald/react-use-promise": "^2.6.2",
81
81
  "@types/node": "^22.18.11",
82
82
  "@types/react": "^18.3.26",
@@ -106,5 +106,5 @@
106
106
  "optional": true
107
107
  }
108
108
  },
109
- "gitHead": "f008dee46679466a6f2c334029de708596d9157d"
109
+ "gitHead": "3085760fb68513cf4e2f5b031dd53312b6e5295a"
110
110
  }