@mittwald/api-client 4.441.0 → 4.443.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.
@@ -96,6 +96,8 @@ const buildContainerApi = (baseClient) => ({
96
96
  getTemplateAsset: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateAsset, baseClient.container.getTemplateAsset).getApiResource,
97
97
  /** Get a Container Template by ID. */
98
98
  getTemplate: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplate, baseClient.container.getTemplate).getApiResource,
99
+ /** List Services the executing user has access to. */
100
+ listAccessibleServices: new ApiCallAsyncResourceFactory(descriptors.containerListAccessibleServices, baseClient.container.listAccessibleServices).getApiResource,
99
101
  /** List Stacks belonging to the executing user. */
100
102
  listSelfStacks: new ApiCallAsyncResourceFactory(descriptors.containerListSelfStacks, baseClient.container.listSelfStacks).getApiResource,
101
103
  /** List Services belonging to a Project. */
@@ -166,6 +166,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
166
166
  getTemplateAsset: this.requestFunctionFactory(descriptors.containerGetTemplateAsset),
167
167
  /** Get a Container Template by ID. */
168
168
  getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
169
+ /** List Services the executing user has access to. */
170
+ listAccessibleServices: this.requestFunctionFactory(descriptors.containerListAccessibleServices),
169
171
  /** List Stacks belonging to the executing user. */
170
172
  listSelfStacks: this.requestFunctionFactory(descriptors.containerListSelfStacks),
171
173
  /** List Services belonging to a Project. */
@@ -442,6 +442,12 @@ export const containerGetTemplate = {
442
442
  method: "GET",
443
443
  operationId: "container-get-template",
444
444
  };
445
+ /** List Services the executing user has access to. */
446
+ export const containerListAccessibleServices = {
447
+ path: "/v2/services",
448
+ method: "GET",
449
+ operationId: "container-list-accessible-services",
450
+ };
445
451
  /** List Stacks belonging to the executing user. */
446
452
  export const containerListSelfStacks = {
447
453
  path: "/v2/stacks",
@@ -96,6 +96,8 @@ const buildContainerApi = (baseClient) => ({
96
96
  getTemplateAsset: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateAsset, baseClient.container.getTemplateAsset).getApiResource,
97
97
  /** Get a Container Template by ID. */
98
98
  getTemplate: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplate, baseClient.container.getTemplate).getApiResource,
99
+ /** List Services the executing user has access to. */
100
+ listAccessibleServices: new ApiCallAsyncResourceFactory(descriptors.containerListAccessibleServices, baseClient.container.listAccessibleServices).getApiResource,
99
101
  /** List Stacks belonging to the executing user. */
100
102
  listSelfStacks: new ApiCallAsyncResourceFactory(descriptors.containerListSelfStacks, baseClient.container.listSelfStacks).getApiResource,
101
103
  /** List Services belonging to a Project. */
@@ -166,6 +166,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
166
166
  getTemplateAsset: this.requestFunctionFactory(descriptors.containerGetTemplateAsset),
167
167
  /** Get a Container Template by ID. */
168
168
  getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
169
+ /** List Services the executing user has access to. */
170
+ listAccessibleServices: this.requestFunctionFactory(descriptors.containerListAccessibleServices),
169
171
  /** List Stacks belonging to the executing user. */
170
172
  listSelfStacks: this.requestFunctionFactory(descriptors.containerListSelfStacks),
171
173
  /** List Services belonging to a Project. */
@@ -442,6 +442,12 @@ export const containerGetTemplate = {
442
442
  method: "GET",
443
443
  operationId: "container-get-template",
444
444
  };
445
+ /** List Services the executing user has access to. */
446
+ export const containerListAccessibleServices = {
447
+ path: "/v3-next/services",
448
+ method: "GET",
449
+ operationId: "container-list-accessible-services",
450
+ };
445
451
  /** List Stacks belonging to the executing user. */
446
452
  export const containerListSelfStacks = {
447
453
  path: "/v3-next/stacks",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.440.0';
1
+ export const MittwaldAPIClientVersion = '4.442.0';
@@ -740,6 +740,21 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
740
740
  version: string;
741
741
  website?: string | undefined;
742
742
  }>;
743
+ /** List Services the executing user has access to. */
744
+ listAccessibleServices: (conf?: {
745
+ headers?: {
746
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
747
+ "x-access-token"?: string | undefined;
748
+ } | undefined;
749
+ queryParameters?: {
750
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
751
+ searchTerm?: string | undefined;
752
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
753
+ limit?: number | undefined;
754
+ skip?: number | undefined;
755
+ page?: number | undefined;
756
+ } | undefined;
757
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[]>;
743
758
  /** List Stacks belonging to the executing user. */
744
759
  listSelfStacks: (conf?: {
745
760
  headers?: {
@@ -1339,6 +1354,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1339
1354
  extensionId?: string | undefined;
1340
1355
  searchTerm?: string | undefined;
1341
1356
  anchor?: string | undefined;
1357
+ hasAcceptedAllScopes?: boolean | undefined;
1342
1358
  limit?: number | undefined;
1343
1359
  skip?: number | undefined;
1344
1360
  page?: number | undefined;
@@ -1376,6 +1392,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1376
1392
  nextScheduledWebhookExecution?: string | undefined;
1377
1393
  pendingInstallation: boolean;
1378
1394
  pendingRemoval: boolean;
1395
+ scopeChangeAcceptanceDeadline?: string | undefined;
1379
1396
  variantKey?: string | undefined;
1380
1397
  webhookExecutionHalted: boolean;
1381
1398
  }>;
@@ -1496,6 +1513,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1496
1513
  nextScheduledWebhookExecution?: string | undefined;
1497
1514
  pendingInstallation: boolean;
1498
1515
  pendingRemoval: boolean;
1516
+ scopeChangeAcceptanceDeadline?: string | undefined;
1499
1517
  variantKey?: string | undefined;
1500
1518
  webhookExecutionHalted: boolean;
1501
1519
  }>;
@@ -1530,6 +1548,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1530
1548
  nextScheduledWebhookExecution?: string | undefined;
1531
1549
  pendingInstallation: boolean;
1532
1550
  pendingRemoval: boolean;
1551
+ scopeChangeAcceptanceDeadline?: string | undefined;
1533
1552
  variantKey?: string | undefined;
1534
1553
  webhookExecutionHalted: boolean;
1535
1554
  }>;
@@ -1771,6 +1790,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1771
1790
  queryParameters?: {
1772
1791
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1773
1792
  includeServiceCronjobs?: boolean | undefined;
1793
+ stackId?: string | undefined;
1774
1794
  limit?: number | undefined;
1775
1795
  skip?: number | undefined;
1776
1796
  page?: number | undefined;
@@ -3730,6 +3750,7 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
3730
3750
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3731
3751
  limit?: number | undefined;
3732
3752
  skip?: number | undefined;
3753
+ page?: number | undefined;
3733
3754
  } | undefined;
3734
3755
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSftpUser[]>;
3735
3756
  /** Get an SFTPUser. */
@@ -3765,6 +3786,7 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
3765
3786
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3766
3787
  limit?: number | undefined;
3767
3788
  skip?: number | undefined;
3789
+ page?: number | undefined;
3768
3790
  } | undefined;
3769
3791
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSshUser[]>;
3770
3792
  /** Get an SSHUser. */
@@ -5149,6 +5149,77 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5149
5149
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5150
5150
  [x: string]: unknown;
5151
5151
  }, 500, "application/json">>>;
5152
+ /** List Services the executing user has access to. */
5153
+ listAccessibleServices: (request?: {
5154
+ headers?: {
5155
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5156
+ "x-access-token"?: string | undefined;
5157
+ } | undefined;
5158
+ queryParameters?: {
5159
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5160
+ searchTerm?: string | undefined;
5161
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
5162
+ limit?: number | undefined;
5163
+ skip?: number | undefined;
5164
+ page?: number | undefined;
5165
+ } | undefined;
5166
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5167
+ headers?: Partial<{
5168
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5169
+ }>;
5170
+ } & {
5171
+ queryParameters: {
5172
+ searchTerm?: string | undefined;
5173
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
5174
+ limit?: number | undefined;
5175
+ skip?: number | undefined;
5176
+ page?: number | undefined;
5177
+ } & Partial<{
5178
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5179
+ }>;
5180
+ } & {
5181
+ headers: {
5182
+ "x-access-token"?: string | undefined;
5183
+ } & Partial<{
5184
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5185
+ }>;
5186
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5187
+ [x: string]: unknown;
5188
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5189
+ [x: string]: unknown;
5190
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5191
+ [x: string]: unknown;
5192
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5193
+ [x: string]: unknown;
5194
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5195
+ headers?: Partial<{
5196
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5197
+ }>;
5198
+ } & {
5199
+ queryParameters: {
5200
+ searchTerm?: string | undefined;
5201
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
5202
+ limit?: number | undefined;
5203
+ skip?: number | undefined;
5204
+ page?: number | undefined;
5205
+ } & Partial<{
5206
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5207
+ }>;
5208
+ } & {
5209
+ headers: {
5210
+ "x-access-token"?: string | undefined;
5211
+ } & Partial<{
5212
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5213
+ }>;
5214
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5215
+ [x: string]: unknown;
5216
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5217
+ [x: string]: unknown;
5218
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5219
+ [x: string]: unknown;
5220
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5221
+ [x: string]: unknown;
5222
+ }, 500, "application/json">>>;
5152
5223
  /** List Stacks belonging to the executing user. */
5153
5224
  listSelfStacks: (request?: {
5154
5225
  headers?: {
@@ -9896,6 +9967,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9896
9967
  extensionId?: string | undefined;
9897
9968
  searchTerm?: string | undefined;
9898
9969
  anchor?: string | undefined;
9970
+ hasAcceptedAllScopes?: boolean | undefined;
9899
9971
  limit?: number | undefined;
9900
9972
  skip?: number | undefined;
9901
9973
  page?: number | undefined;
@@ -9913,6 +9985,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9913
9985
  extensionId?: string | undefined;
9914
9986
  searchTerm?: string | undefined;
9915
9987
  anchor?: string | undefined;
9988
+ hasAcceptedAllScopes?: boolean | undefined;
9916
9989
  limit?: number | undefined;
9917
9990
  skip?: number | undefined;
9918
9991
  page?: number | undefined;
@@ -9942,6 +10015,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9942
10015
  extensionId?: string | undefined;
9943
10016
  searchTerm?: string | undefined;
9944
10017
  anchor?: string | undefined;
10018
+ hasAcceptedAllScopes?: boolean | undefined;
9945
10019
  limit?: number | undefined;
9946
10020
  skip?: number | undefined;
9947
10021
  page?: number | undefined;
@@ -10131,6 +10205,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10131
10205
  nextScheduledWebhookExecution?: string | undefined;
10132
10206
  pendingInstallation: boolean;
10133
10207
  pendingRemoval: boolean;
10208
+ scopeChangeAcceptanceDeadline?: string | undefined;
10134
10209
  variantKey?: string | undefined;
10135
10210
  webhookExecutionHalted: boolean;
10136
10211
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -10176,6 +10251,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10176
10251
  nextScheduledWebhookExecution?: string | undefined;
10177
10252
  pendingInstallation: boolean;
10178
10253
  pendingRemoval: boolean;
10254
+ scopeChangeAcceptanceDeadline?: string | undefined;
10179
10255
  variantKey?: string | undefined;
10180
10256
  webhookExecutionHalted: boolean;
10181
10257
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11200,6 +11276,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11200
11276
  nextScheduledWebhookExecution?: string | undefined;
11201
11277
  pendingInstallation: boolean;
11202
11278
  pendingRemoval: boolean;
11279
+ scopeChangeAcceptanceDeadline?: string | undefined;
11203
11280
  variantKey?: string | undefined;
11204
11281
  webhookExecutionHalted: boolean;
11205
11282
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11244,6 +11321,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11244
11321
  nextScheduledWebhookExecution?: string | undefined;
11245
11322
  pendingInstallation: boolean;
11246
11323
  pendingRemoval: boolean;
11324
+ scopeChangeAcceptanceDeadline?: string | undefined;
11247
11325
  variantKey?: string | undefined;
11248
11326
  webhookExecutionHalted: boolean;
11249
11327
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11297,6 +11375,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11297
11375
  nextScheduledWebhookExecution?: string | undefined;
11298
11376
  pendingInstallation: boolean;
11299
11377
  pendingRemoval: boolean;
11378
+ scopeChangeAcceptanceDeadline?: string | undefined;
11300
11379
  variantKey?: string | undefined;
11301
11380
  webhookExecutionHalted: boolean;
11302
11381
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11341,6 +11420,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11341
11420
  nextScheduledWebhookExecution?: string | undefined;
11342
11421
  pendingInstallation: boolean;
11343
11422
  pendingRemoval: boolean;
11423
+ scopeChangeAcceptanceDeadline?: string | undefined;
11344
11424
  variantKey?: string | undefined;
11345
11425
  webhookExecutionHalted: boolean;
11346
11426
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -13524,6 +13604,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13524
13604
  queryParameters?: {
13525
13605
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
13526
13606
  includeServiceCronjobs?: boolean | undefined;
13607
+ stackId?: string | undefined;
13527
13608
  limit?: number | undefined;
13528
13609
  skip?: number | undefined;
13529
13610
  page?: number | undefined;
@@ -13539,6 +13620,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13539
13620
  } & {
13540
13621
  queryParameters: {
13541
13622
  includeServiceCronjobs?: boolean | undefined;
13623
+ stackId?: string | undefined;
13542
13624
  limit?: number | undefined;
13543
13625
  skip?: number | undefined;
13544
13626
  page?: number | undefined;
@@ -13564,6 +13646,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13564
13646
  } & {
13565
13647
  queryParameters: {
13566
13648
  includeServiceCronjobs?: boolean | undefined;
13649
+ stackId?: string | undefined;
13567
13650
  limit?: number | undefined;
13568
13651
  skip?: number | undefined;
13569
13652
  page?: number | undefined;
@@ -30255,6 +30338,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30255
30338
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
30256
30339
  limit?: number | undefined;
30257
30340
  skip?: number | undefined;
30341
+ page?: number | undefined;
30258
30342
  } | undefined;
30259
30343
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
30260
30344
  headers?: Partial<{
@@ -30268,6 +30352,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30268
30352
  queryParameters: {
30269
30353
  limit?: number | undefined;
30270
30354
  skip?: number | undefined;
30355
+ page?: number | undefined;
30271
30356
  } & Partial<{
30272
30357
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30273
30358
  }>;
@@ -30295,6 +30380,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30295
30380
  queryParameters: {
30296
30381
  limit?: number | undefined;
30297
30382
  skip?: number | undefined;
30383
+ page?: number | undefined;
30298
30384
  } & Partial<{
30299
30385
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30300
30386
  }>;
@@ -30622,6 +30708,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30622
30708
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
30623
30709
  limit?: number | undefined;
30624
30710
  skip?: number | undefined;
30711
+ page?: number | undefined;
30625
30712
  } | undefined;
30626
30713
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
30627
30714
  headers?: Partial<{
@@ -30635,6 +30722,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30635
30722
  queryParameters: {
30636
30723
  limit?: number | undefined;
30637
30724
  skip?: number | undefined;
30725
+ page?: number | undefined;
30638
30726
  } & Partial<{
30639
30727
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30640
30728
  }>;
@@ -30662,6 +30750,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30662
30750
  queryParameters: {
30663
30751
  limit?: number | undefined;
30664
30752
  skip?: number | undefined;
30753
+ page?: number | undefined;
30665
30754
  } & Partial<{
30666
30755
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30667
30756
  }>;
@@ -151,6 +151,8 @@ export declare const containerGetService: OpenAPIOperation<RequestType<Simplify<
151
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.$304.Content.Empty>, 304, "empty"> | 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
152
  /** Get a Container Template by ID. */
153
153
  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
+ /** List Services the executing user has access to. */
155
+ export declare const containerListAccessibleServices: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Services.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Services.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Services.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Services.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Services.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Services.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Services.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Services.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Services.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
154
156
  /** List Stacks belonging to the executing user. */
155
157
  export declare const containerListSelfStacks: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
156
158
  /** List Services belonging to a Project. */