@mittwald/api-client 4.442.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. */
@@ -106,8 +108,6 @@ const buildContainerApi = (baseClient) => ({
106
108
  listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
107
109
  /** List Volumes belonging to a Project. */
108
110
  listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
109
- /** List Services the executing user has access to. */
110
- listAccessibleServices: new ApiCallAsyncResourceFactory(descriptors.containerListAccessibleServices, baseClient.container.listAccessibleServices).getApiResource,
111
111
  });
112
112
  const buildContractApi = (baseClient) => ({
113
113
  /** Return the BaseItem of the Contract with the given ID. */
@@ -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. */
@@ -188,8 +190,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
188
190
  startService: this.requestFunctionFactory(descriptors.containerStartService),
189
191
  /** Stop a started Service. */
190
192
  stopService: this.requestFunctionFactory(descriptors.containerStopService),
191
- /** List Services the executing user has access to. */
192
- listAccessibleServices: this.requestFunctionFactory(descriptors.containerListAccessibleServices),
193
193
  };
194
194
  /** The contract API allows you to manage your contracts and orders */
195
195
  contract = {
@@ -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",
@@ -2794,9 +2800,3 @@ export const verificationVerifyCompany = {
2794
2800
  method: "POST",
2795
2801
  operationId: "verification-verify-company",
2796
2802
  };
2797
- /** List Services the executing user has access to. */
2798
- export const containerListAccessibleServices = {
2799
- path: "/v2/services",
2800
- method: "GET",
2801
- operationId: "container-list-accessible-services",
2802
- };
@@ -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. */
@@ -106,8 +108,6 @@ const buildContainerApi = (baseClient) => ({
106
108
  listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
107
109
  /** List Volumes belonging to a Project. */
108
110
  listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
109
- /** List Services the executing user has access to. */
110
- listAccessibleServices: new ApiCallAsyncResourceFactory(descriptors.containerListAccessibleServices, baseClient.container.listAccessibleServices).getApiResource,
111
111
  });
112
112
  const buildContractApi = (baseClient) => ({
113
113
  /** Return the BaseItem of the Contract with the given ID. */
@@ -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. */
@@ -188,8 +190,6 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
188
190
  startService: this.requestFunctionFactory(descriptors.containerStartService),
189
191
  /** Stop a started Service. */
190
192
  stopService: this.requestFunctionFactory(descriptors.containerStopService),
191
- /** List Services the executing user has access to. */
192
- listAccessibleServices: this.requestFunctionFactory(descriptors.containerListAccessibleServices),
193
193
  };
194
194
  /** The contract API allows you to manage your contracts and orders */
195
195
  contract = {
@@ -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",
@@ -2794,9 +2800,3 @@ export const verificationVerifyCompany = {
2794
2800
  method: "POST",
2795
2801
  operationId: "verification-verify-company",
2796
2802
  };
2797
- /** List Services the executing user has access to. */
2798
- export const containerListAccessibleServices = {
2799
- path: "/v3-next/services",
2800
- method: "GET",
2801
- operationId: "container-list-accessible-services",
2802
- };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.441.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?: {
@@ -822,21 +837,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
822
837
  page?: number | undefined;
823
838
  } | undefined;
824
839
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
825
- /** List Services the executing user has access to. */
826
- listAccessibleServices: (conf?: {
827
- headers?: {
828
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
829
- "x-access-token"?: string | undefined;
830
- } | undefined;
831
- queryParameters?: {
832
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
833
- searchTerm?: string | undefined;
834
- sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
835
- limit?: number | undefined;
836
- skip?: number | undefined;
837
- page?: number | undefined;
838
- } | undefined;
839
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[]>;
840
840
  };
841
841
  declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
842
842
  /** Return the BaseItem of the Contract with the given ID. */
@@ -1354,6 +1354,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1354
1354
  extensionId?: string | undefined;
1355
1355
  searchTerm?: string | undefined;
1356
1356
  anchor?: string | undefined;
1357
+ hasAcceptedAllScopes?: boolean | undefined;
1357
1358
  limit?: number | undefined;
1358
1359
  skip?: number | undefined;
1359
1360
  page?: number | undefined;
@@ -1391,6 +1392,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1391
1392
  nextScheduledWebhookExecution?: string | undefined;
1392
1393
  pendingInstallation: boolean;
1393
1394
  pendingRemoval: boolean;
1395
+ scopeChangeAcceptanceDeadline?: string | undefined;
1394
1396
  variantKey?: string | undefined;
1395
1397
  webhookExecutionHalted: boolean;
1396
1398
  }>;
@@ -1511,6 +1513,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1511
1513
  nextScheduledWebhookExecution?: string | undefined;
1512
1514
  pendingInstallation: boolean;
1513
1515
  pendingRemoval: boolean;
1516
+ scopeChangeAcceptanceDeadline?: string | undefined;
1514
1517
  variantKey?: string | undefined;
1515
1518
  webhookExecutionHalted: boolean;
1516
1519
  }>;
@@ -1545,6 +1548,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1545
1548
  nextScheduledWebhookExecution?: string | undefined;
1546
1549
  pendingInstallation: boolean;
1547
1550
  pendingRemoval: boolean;
1551
+ scopeChangeAcceptanceDeadline?: string | undefined;
1548
1552
  variantKey?: string | undefined;
1549
1553
  webhookExecutionHalted: boolean;
1550
1554
  }>;
@@ -1786,6 +1790,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1786
1790
  queryParameters?: {
1787
1791
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1788
1792
  includeServiceCronjobs?: boolean | undefined;
1793
+ stackId?: string | undefined;
1789
1794
  limit?: number | undefined;
1790
1795
  skip?: number | undefined;
1791
1796
  page?: number | undefined;
@@ -3745,6 +3750,7 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
3745
3750
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3746
3751
  limit?: number | undefined;
3747
3752
  skip?: number | undefined;
3753
+ page?: number | undefined;
3748
3754
  } | undefined;
3749
3755
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSftpUser[]>;
3750
3756
  /** Get an SFTPUser. */
@@ -3780,6 +3786,7 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
3780
3786
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3781
3787
  limit?: number | undefined;
3782
3788
  skip?: number | undefined;
3789
+ page?: number | undefined;
3783
3790
  } | undefined;
3784
3791
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSshUser[]>;
3785
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?: {
@@ -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;
@@ -30326,6 +30338,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30326
30338
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
30327
30339
  limit?: number | undefined;
30328
30340
  skip?: number | undefined;
30341
+ page?: number | undefined;
30329
30342
  } | undefined;
30330
30343
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
30331
30344
  headers?: Partial<{
@@ -30339,6 +30352,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30339
30352
  queryParameters: {
30340
30353
  limit?: number | undefined;
30341
30354
  skip?: number | undefined;
30355
+ page?: number | undefined;
30342
30356
  } & Partial<{
30343
30357
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30344
30358
  }>;
@@ -30366,6 +30380,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30366
30380
  queryParameters: {
30367
30381
  limit?: number | undefined;
30368
30382
  skip?: number | undefined;
30383
+ page?: number | undefined;
30369
30384
  } & Partial<{
30370
30385
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30371
30386
  }>;
@@ -30693,6 +30708,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30693
30708
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
30694
30709
  limit?: number | undefined;
30695
30710
  skip?: number | undefined;
30711
+ page?: number | undefined;
30696
30712
  } | undefined;
30697
30713
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
30698
30714
  headers?: Partial<{
@@ -30706,6 +30722,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30706
30722
  queryParameters: {
30707
30723
  limit?: number | undefined;
30708
30724
  skip?: number | undefined;
30725
+ page?: number | undefined;
30709
30726
  } & Partial<{
30710
30727
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30711
30728
  }>;
@@ -30733,6 +30750,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30733
30750
  queryParameters: {
30734
30751
  limit?: number | undefined;
30735
30752
  skip?: number | undefined;
30753
+ page?: number | undefined;
30736
30754
  } & Partial<{
30737
30755
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30738
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. */
@@ -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">>;