@mittwald/api-client 4.442.0 → 4.445.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.
@@ -3484,7 +3484,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3484
3484
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3485
3485
  [x: string]: unknown;
3486
3486
  }, 500, "application/json">>>;
3487
- /** Call pull-image webhook */
3487
+ /** Call a Service pull-image webhook. */
3488
3488
  callPullImageWebhookForService: (request: {
3489
3489
  queryParameters: {
3490
3490
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -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?: {
@@ -5533,7 +5604,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5533
5604
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5534
5605
  [x: string]: unknown;
5535
5606
  }, 500, "application/json">>>;
5536
- /** Pull image and recreate */
5607
+ /** Pull a Service image and recreate. */
5537
5608
  pullImageForService: (request: {
5538
5609
  stackId: string;
5539
5610
  serviceId: string;
@@ -5738,7 +5809,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5738
5809
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5739
5810
  [x: string]: unknown;
5740
5811
  }, 500, "application/json">>>;
5741
- /** Create or rotate pull-image webhook token */
5812
+ /** Create or rotate a Service pull-image webhook token. */
5742
5813
  rotatePullImageWebhookForService: (request: {
5743
5814
  stackId: string;
5744
5815
  serviceId: string;
@@ -5933,77 +6004,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5933
6004
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5934
6005
  [x: string]: unknown;
5935
6006
  }, 500, "application/json">>>;
5936
- /** List Services the executing user has access to. */
5937
- listAccessibleServices: (request?: {
5938
- headers?: {
5939
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5940
- "x-access-token"?: string | undefined;
5941
- } | undefined;
5942
- queryParameters?: {
5943
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5944
- searchTerm?: string | undefined;
5945
- sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
5946
- limit?: number | undefined;
5947
- skip?: number | undefined;
5948
- page?: number | undefined;
5949
- } | undefined;
5950
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5951
- headers?: Partial<{
5952
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5953
- }>;
5954
- } & {
5955
- queryParameters: {
5956
- searchTerm?: string | undefined;
5957
- sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
5958
- limit?: number | undefined;
5959
- skip?: number | undefined;
5960
- page?: number | undefined;
5961
- } & Partial<{
5962
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5963
- }>;
5964
- } & {
5965
- headers: {
5966
- "x-access-token"?: string | undefined;
5967
- } & Partial<{
5968
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5969
- }>;
5970
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5971
- [x: string]: unknown;
5972
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5973
- [x: string]: unknown;
5974
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5975
- [x: string]: unknown;
5976
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5977
- [x: string]: unknown;
5978
- }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5979
- headers?: Partial<{
5980
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5981
- }>;
5982
- } & {
5983
- queryParameters: {
5984
- searchTerm?: string | undefined;
5985
- sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
5986
- limit?: number | undefined;
5987
- skip?: number | undefined;
5988
- page?: number | undefined;
5989
- } & Partial<{
5990
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5991
- }>;
5992
- } & {
5993
- headers: {
5994
- "x-access-token"?: string | undefined;
5995
- } & Partial<{
5996
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5997
- }>;
5998
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5999
- [x: string]: unknown;
6000
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6001
- [x: string]: unknown;
6002
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6003
- [x: string]: unknown;
6004
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6005
- [x: string]: unknown;
6006
- }, 500, "application/json">>>;
6007
6007
  };
6008
6008
  /** The contract API allows you to manage your contracts and orders */
6009
6009
  readonly contract: {
@@ -9967,6 +9967,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9967
9967
  extensionId?: string | undefined;
9968
9968
  searchTerm?: string | undefined;
9969
9969
  anchor?: string | undefined;
9970
+ hasAcceptedAllScopes?: boolean | undefined;
9970
9971
  limit?: number | undefined;
9971
9972
  skip?: number | undefined;
9972
9973
  page?: number | undefined;
@@ -9984,6 +9985,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9984
9985
  extensionId?: string | undefined;
9985
9986
  searchTerm?: string | undefined;
9986
9987
  anchor?: string | undefined;
9988
+ hasAcceptedAllScopes?: boolean | undefined;
9987
9989
  limit?: number | undefined;
9988
9990
  skip?: number | undefined;
9989
9991
  page?: number | undefined;
@@ -10013,6 +10015,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10013
10015
  extensionId?: string | undefined;
10014
10016
  searchTerm?: string | undefined;
10015
10017
  anchor?: string | undefined;
10018
+ hasAcceptedAllScopes?: boolean | undefined;
10016
10019
  limit?: number | undefined;
10017
10020
  skip?: number | undefined;
10018
10021
  page?: number | undefined;
@@ -10202,6 +10205,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10202
10205
  nextScheduledWebhookExecution?: string | undefined;
10203
10206
  pendingInstallation: boolean;
10204
10207
  pendingRemoval: boolean;
10208
+ scopeChangeAcceptanceDeadline?: string | undefined;
10205
10209
  variantKey?: string | undefined;
10206
10210
  webhookExecutionHalted: boolean;
10207
10211
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -10247,6 +10251,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10247
10251
  nextScheduledWebhookExecution?: string | undefined;
10248
10252
  pendingInstallation: boolean;
10249
10253
  pendingRemoval: boolean;
10254
+ scopeChangeAcceptanceDeadline?: string | undefined;
10250
10255
  variantKey?: string | undefined;
10251
10256
  webhookExecutionHalted: boolean;
10252
10257
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11271,6 +11276,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11271
11276
  nextScheduledWebhookExecution?: string | undefined;
11272
11277
  pendingInstallation: boolean;
11273
11278
  pendingRemoval: boolean;
11279
+ scopeChangeAcceptanceDeadline?: string | undefined;
11274
11280
  variantKey?: string | undefined;
11275
11281
  webhookExecutionHalted: boolean;
11276
11282
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11315,6 +11321,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11315
11321
  nextScheduledWebhookExecution?: string | undefined;
11316
11322
  pendingInstallation: boolean;
11317
11323
  pendingRemoval: boolean;
11324
+ scopeChangeAcceptanceDeadline?: string | undefined;
11318
11325
  variantKey?: string | undefined;
11319
11326
  webhookExecutionHalted: boolean;
11320
11327
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11368,6 +11375,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11368
11375
  nextScheduledWebhookExecution?: string | undefined;
11369
11376
  pendingInstallation: boolean;
11370
11377
  pendingRemoval: boolean;
11378
+ scopeChangeAcceptanceDeadline?: string | undefined;
11371
11379
  variantKey?: string | undefined;
11372
11380
  webhookExecutionHalted: boolean;
11373
11381
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11412,6 +11420,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11412
11420
  nextScheduledWebhookExecution?: string | undefined;
11413
11421
  pendingInstallation: boolean;
11414
11422
  pendingRemoval: boolean;
11423
+ scopeChangeAcceptanceDeadline?: string | undefined;
11415
11424
  variantKey?: string | undefined;
11416
11425
  webhookExecutionHalted: boolean;
11417
11426
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -13595,6 +13604,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13595
13604
  queryParameters?: {
13596
13605
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
13597
13606
  includeServiceCronjobs?: boolean | undefined;
13607
+ stackId?: string | undefined;
13598
13608
  limit?: number | undefined;
13599
13609
  skip?: number | undefined;
13600
13610
  page?: number | undefined;
@@ -13610,6 +13620,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13610
13620
  } & {
13611
13621
  queryParameters: {
13612
13622
  includeServiceCronjobs?: boolean | undefined;
13623
+ stackId?: string | undefined;
13613
13624
  limit?: number | undefined;
13614
13625
  skip?: number | undefined;
13615
13626
  page?: number | undefined;
@@ -13635,6 +13646,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13635
13646
  } & {
13636
13647
  queryParameters: {
13637
13648
  includeServiceCronjobs?: boolean | undefined;
13649
+ stackId?: string | undefined;
13638
13650
  limit?: number | undefined;
13639
13651
  skip?: number | undefined;
13640
13652
  page?: number | undefined;
@@ -14593,6 +14605,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14593
14605
  emailAddress?: string | undefined;
14594
14606
  firstName?: string | undefined;
14595
14607
  lastName?: string | undefined;
14608
+ leitwegId?: string | undefined;
14596
14609
  phoneNumbers?: string[] | undefined;
14597
14610
  title?: string | undefined;
14598
14611
  useFormalTerm?: boolean | undefined;
@@ -15274,6 +15287,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
15274
15287
  emailAddress?: string | undefined;
15275
15288
  firstName?: string | undefined;
15276
15289
  lastName?: string | undefined;
15290
+ leitwegId?: string | undefined;
15277
15291
  phoneNumbers?: string[] | undefined;
15278
15292
  title?: string | undefined;
15279
15293
  useFormalTerm?: boolean | undefined;
@@ -26967,7 +26981,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26967
26981
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
26968
26982
  [x: string]: unknown;
26969
26983
  }, 500, "application/json">>>;
26970
- /** rotate a License's key, i.e. revoke the old and generate a new one. */
26984
+ /** Rotate a License's key, i.e. revoke the old and generate a new one. */
26971
26985
  rotateLicenseKey: (request: {
26972
26986
  licenseId: string;
26973
26987
  data?: {
@@ -28117,7 +28131,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28117
28131
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
28118
28132
  [x: string]: unknown;
28119
28133
  }, 429, "application/json">>>;
28120
- /** Get a ProjectMembership */
28134
+ /** Get a ProjectMembership. */
28121
28135
  getProjectMembership: (request: {
28122
28136
  projectMembershipId: string;
28123
28137
  headers?: {
@@ -30326,6 +30340,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30326
30340
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
30327
30341
  limit?: number | undefined;
30328
30342
  skip?: number | undefined;
30343
+ page?: number | undefined;
30329
30344
  } | undefined;
30330
30345
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
30331
30346
  headers?: Partial<{
@@ -30339,6 +30354,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30339
30354
  queryParameters: {
30340
30355
  limit?: number | undefined;
30341
30356
  skip?: number | undefined;
30357
+ page?: number | undefined;
30342
30358
  } & Partial<{
30343
30359
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30344
30360
  }>;
@@ -30366,6 +30382,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30366
30382
  queryParameters: {
30367
30383
  limit?: number | undefined;
30368
30384
  skip?: number | undefined;
30385
+ page?: number | undefined;
30369
30386
  } & Partial<{
30370
30387
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30371
30388
  }>;
@@ -30693,6 +30710,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30693
30710
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
30694
30711
  limit?: number | undefined;
30695
30712
  skip?: number | undefined;
30713
+ page?: number | undefined;
30696
30714
  } | undefined;
30697
30715
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
30698
30716
  headers?: Partial<{
@@ -30706,6 +30724,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30706
30724
  queryParameters: {
30707
30725
  limit?: number | undefined;
30708
30726
  skip?: number | undefined;
30727
+ page?: number | undefined;
30709
30728
  } & Partial<{
30710
30729
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30711
30730
  }>;
@@ -30733,6 +30752,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30733
30752
  queryParameters: {
30734
30753
  limit?: number | undefined;
30735
30754
  skip?: number | undefined;
30755
+ page?: number | undefined;
30736
30756
  } & Partial<{
30737
30757
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30738
30758
  }>;
@@ -113,7 +113,7 @@ export declare const backupGetProjectBackupDirectories: OpenAPIOperation<Request
113
113
  export declare const backupRequestProjectBackupRestore: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
114
114
  /** Add a template component to a Stack. */
115
115
  export declare const containerAddTemplateComponent: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
116
- /** Call pull-image webhook */
116
+ /** Call a Service pull-image webhook. */
117
117
  export declare const containerCallPullImageWebhookForService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdWebhooksPullImage.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
118
118
  /** List Registries belonging to a Project. */
119
119
  export declare const containerListRegistries: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -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. */
@@ -161,13 +163,13 @@ export declare const containerListStackVolumes: OpenAPIOperation<RequestType<Sim
161
163
  export declare const containerListTemplates: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplates.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplates.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplates.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplates.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplates.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplates.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplates.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplates.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
162
164
  /** List Volumes belonging to a Project. */
163
165
  export declare const containerListVolumes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
164
- /** Pull image and recreate */
166
+ /** Pull a Service image and recreate. */
165
167
  export declare const containerPullImageForService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsPull.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
166
168
  /** Recreate a Service. */
167
169
  export declare const containerRecreateService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
168
170
  /** Restart a started Service. */
169
171
  export declare const containerRestartService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
170
- /** Create or rotate pull-image webhook token */
172
+ /** Create or rotate a Service pull-image webhook token. */
171
173
  export declare const containerRotatePullImageWebhookForService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdWebhookToken.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
172
174
  /** Start a stopped Service. */
173
175
  export declare const containerStartService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -619,7 +621,7 @@ export declare const leadfyndrRemoveUnlockedLeadReservation: OpenAPIOperation<Re
619
621
  export declare const licenseGetLicense: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
620
622
  /** List Licenses belonging to a Project. */
621
623
  export declare const licenseListLicensesForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
622
- /** rotate a License's key, i.e. revoke the old and generate a new one. */
624
+ /** Rotate a License's key, i.e. revoke the old and generate a new one. */
623
625
  export declare const licenseRotateLicenseKey: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateKey.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
624
626
  /** Validate a License's key for a project. */
625
627
  export declare const licenseValidateLicenseKeyForProject: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -725,7 +727,7 @@ export declare const projectDeleteProjectAvatar: OpenAPIOperation<RequestType<Si
725
727
  export declare const projectGetProjectInvite: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
726
728
  /** Delete a ProjectInvite. */
727
729
  export declare const projectDeleteProjectInvite: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
728
- /** Get a ProjectMembership */
730
+ /** Get a ProjectMembership. */
729
731
  export declare const projectGetProjectMembership: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
730
732
  /** Delete a ProjectMembership. */
731
733
  export declare const projectDeleteProjectMembership: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsProjectMembershipId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -935,5 +937,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
935
937
  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">>;
936
938
  /** Check if a company exists. */
937
939
  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">>;
938
- /** List Services the executing user has access to. */
939
- 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">>;