@mittwald/api-client 4.74.0 → 4.76.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.
@@ -204,8 +204,6 @@ const buildMarketplaceApi = (baseClient) => ({
204
204
  extensionListContributors: new ApiCallAsyncResourceFactory(descriptors.extensionListContributors, baseClient.marketplace.extensionListContributors).getApiResource,
205
205
  /** List Extensions. */
206
206
  extensionListExtensions: new ApiCallAsyncResourceFactory(descriptors.extensionListExtensions, baseClient.marketplace.extensionListExtensions).getApiResource,
207
- /** Get all extensions and instances health for the contributor. */
208
- getExtensionshealth: new ApiCallAsyncResourceFactory(descriptors.marketplaceGetExtensionshealth, baseClient.marketplace.getExtensionshealth).getApiResource,
209
207
  });
210
208
  const buildFileApi = (baseClient) => ({
211
209
  /** Get a File's meta. */
@@ -308,6 +306,10 @@ const buildProjectApi = (baseClient) => ({
308
306
  listProjects: new ApiCallAsyncResourceFactory(descriptors.projectListProjects, baseClient.project.listProjects).getApiResource,
309
307
  /** List Servers belonging to the executing user. */
310
308
  listServers: new ApiCallAsyncResourceFactory(descriptors.projectListServers, baseClient.project.listServers).getApiResource,
309
+ /** Get storage space Statistics belonging to a Server. */
310
+ storagespaceGetServerStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetServerStatistics, baseClient.project.storagespaceGetServerStatistics).getApiResource,
311
+ /** Get storage space Statistics belonging to a Project. */
312
+ storagespaceGetProjectStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetProjectStatistics, baseClient.project.storagespaceGetProjectStatistics).getApiResource,
311
313
  });
312
314
  const buildProjectFileSystemApi = (baseClient) => ({
313
315
  /** List directories belonging to a Project. */
@@ -180,8 +180,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
180
180
  extensionListContributors: this.requestFunctionFactory(descriptors.extensionListContributors),
181
181
  /** List Extensions. */
182
182
  extensionListExtensions: this.requestFunctionFactory(descriptors.extensionListExtensions),
183
- /** Get all extensions and instances health for the contributor. */
184
- getExtensionshealth: this.requestFunctionFactory(descriptors.marketplaceGetExtensionshealth),
185
183
  };
186
184
  /** The conversation API allows you to manage your support conversations. */
187
185
  conversation = {
@@ -681,6 +679,14 @@ export class MittwaldAPIV2Client extends ApiClientBase {
681
679
  updateProjectDescription: this.requestFunctionFactory(descriptors.projectUpdateProjectDescription),
682
680
  /** Update a Servers's description. */
683
681
  updateServerDescription: this.requestFunctionFactory(descriptors.projectUpdateServerDescription),
682
+ /** Update a Project's storage space notification threshold. */
683
+ storagespaceReplaceProjectNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceProjectNotificationThreshold),
684
+ /** Get storage space Statistics belonging to a Server. */
685
+ storagespaceGetServerStatistics: this.requestFunctionFactory(descriptors.storagespaceGetServerStatistics),
686
+ /** Update a Server's storage space notification threshold. */
687
+ storagespaceReplaceServerNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceServerNotificationThreshold),
688
+ /** Get storage space Statistics belonging to a Project. */
689
+ storagespaceGetProjectStatistics: this.requestFunctionFactory(descriptors.storagespaceGetProjectStatistics),
684
690
  };
685
691
  /** The filesystem API allows you to directly access the filesystem of your project. */
686
692
  projectFileSystem = {
@@ -1222,12 +1222,6 @@ export const mailUpdateProjectMailSetting = {
1222
1222
  method: "PATCH",
1223
1223
  operationId: "mail-update-project-mail-setting",
1224
1224
  };
1225
- /** Get all extensions and instances health for the contributor. */
1226
- export const marketplaceGetExtensionshealth = {
1227
- path: "/v2/marketplace/{contributorId}/extensionshealth",
1228
- method: "GET",
1229
- operationId: "marketplace-get-extensionshealth",
1230
- };
1231
1225
  /** Getting the subscription status of the subscription. */
1232
1226
  export const newsletterGetInfo = {
1233
1227
  path: "/v2/newsletter-subscriptions/self",
@@ -2008,3 +2002,27 @@ export const verificationVerifyCompany = {
2008
2002
  method: "POST",
2009
2003
  operationId: "verification-verify-company",
2010
2004
  };
2005
+ /** Update a Project's storage space notification threshold. */
2006
+ export const storagespaceReplaceProjectNotificationThreshold = {
2007
+ path: "/v2/projects/{projectId}/storage-space-notification-threshold",
2008
+ method: "PUT",
2009
+ operationId: "storagespace-replace-project-notification-threshold",
2010
+ };
2011
+ /** Get storage space Statistics belonging to a Server. */
2012
+ export const storagespaceGetServerStatistics = {
2013
+ path: "/v2/servers/{serverId}/storage-space-statistics",
2014
+ method: "GET",
2015
+ operationId: "storagespace-get-server-statistics",
2016
+ };
2017
+ /** Update a Server's storage space notification threshold. */
2018
+ export const storagespaceReplaceServerNotificationThreshold = {
2019
+ path: "/v2/servers/{serverId}/storage-space-notification-threshold",
2020
+ method: "PUT",
2021
+ operationId: "storagespace-replace-server-notification-threshold",
2022
+ };
2023
+ /** Get storage space Statistics belonging to a Project. */
2024
+ export const storagespaceGetProjectStatistics = {
2025
+ path: "/v2/projects/{projectId}/storage-space-statistics",
2026
+ method: "GET",
2027
+ operationId: "storagespace-get-project-statistics",
2028
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.73.0';
1
+ export const MittwaldAPIClientVersion = '4.75.0';
@@ -1422,6 +1422,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1422
1422
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
1423
1423
  } | undefined;
1424
1424
  id: string;
1425
+ logoRefId?: string | undefined;
1425
1426
  name: string;
1426
1427
  published: boolean;
1427
1428
  scopes: string[];
@@ -1465,16 +1466,6 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1465
1466
  page?: number | undefined;
1466
1467
  } | undefined;
1467
1468
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[]>;
1468
- /** Get all extensions and instances health for the contributor. */
1469
- getExtensionshealth: (conf: {
1470
- contributorId: string;
1471
- headers?: {
1472
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1473
- "x-access-token"?: string | undefined;
1474
- } | undefined;
1475
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1476
- extensionsHealth: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionHealth[];
1477
- }>;
1478
1469
  };
1479
1470
  declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1480
1471
  /** Get a File's meta. */
@@ -2238,6 +2229,40 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2238
2229
  skip?: number | undefined;
2239
2230
  } | undefined;
2240
2231
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServer[]>;
2232
+ /** Get storage space Statistics belonging to a Server. */
2233
+ storagespaceGetServerStatistics: (conf: {
2234
+ serverId: string;
2235
+ headers?: {
2236
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2237
+ "x-access-token"?: string | undefined;
2238
+ } | undefined;
2239
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2240
+ childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
2241
+ description?: string | undefined;
2242
+ id: string;
2243
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
2244
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
2245
+ name: string;
2246
+ notificationThresholdInBytes?: number | undefined;
2247
+ statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
2248
+ }>;
2249
+ /** Get storage space Statistics belonging to a Project. */
2250
+ storagespaceGetProjectStatistics: (conf: {
2251
+ projectId: string;
2252
+ headers?: {
2253
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2254
+ "x-access-token"?: string | undefined;
2255
+ } | undefined;
2256
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2257
+ childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
2258
+ description?: string | undefined;
2259
+ id: string;
2260
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
2261
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
2262
+ name: string;
2263
+ notificationThresholdInBytes?: number | undefined;
2264
+ statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
2265
+ }>;
2241
2266
  };
2242
2267
  declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
2243
2268
  /** List directories belonging to a Project. */
@@ -4954,6 +4954,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4954
4954
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
4955
4955
  } | undefined;
4956
4956
  id: string;
4957
+ logoRefId?: string | undefined;
4957
4958
  name: string;
4958
4959
  published: boolean;
4959
4960
  scopes: string[];
@@ -4987,6 +4988,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4987
4988
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
4988
4989
  } | undefined;
4989
4990
  id: string;
4991
+ logoRefId?: string | undefined;
4990
4992
  name: string;
4991
4993
  published: boolean;
4992
4994
  scopes: string[];
@@ -5120,54 +5122,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5120
5122
  }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5121
5123
  [x: string]: unknown;
5122
5124
  }, 429, "application/json">>>;
5123
- /** Get all extensions and instances health for the contributor. */
5124
- getExtensionshealth: (request: {
5125
- contributorId: string;
5126
- headers?: {
5127
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5128
- "x-access-token"?: string | undefined;
5129
- } | undefined;
5130
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5131
- headers?: Partial<{
5132
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5133
- }> | undefined;
5134
- } & {
5135
- pathParameters: {
5136
- contributorId: string;
5137
- };
5138
- } & {
5139
- headers: {
5140
- "x-access-token"?: string | undefined;
5141
- } & Partial<{
5142
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5143
- }>;
5144
- }, import("@mittwald/api-client-commons").Response<{
5145
- extensionsHealth: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionHealth[];
5146
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5147
- [x: string]: unknown;
5148
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5149
- [x: string]: unknown;
5150
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5151
- headers?: Partial<{
5152
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5153
- }> | undefined;
5154
- } & {
5155
- pathParameters: {
5156
- contributorId: string;
5157
- };
5158
- } & {
5159
- headers: {
5160
- "x-access-token"?: string | undefined;
5161
- } & Partial<{
5162
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5163
- }>;
5164
- }, import("@mittwald/api-client-commons").Response<{
5165
- extensionsHealth: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionHealth[];
5166
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5167
- [x: string]: unknown;
5168
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5169
- [x: string]: unknown;
5170
- }, 429, "application/json">>>;
5171
5125
  };
5172
5126
  /** The conversation API allows you to manage your support conversations. */
5173
5127
  readonly conversation: {
@@ -19347,6 +19301,272 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
19347
19301
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19348
19302
  [x: string]: unknown;
19349
19303
  }, 429, "application/json">>>;
19304
+ /** Update a Project's storage space notification threshold. */
19305
+ storagespaceReplaceProjectNotificationThreshold: (request: {
19306
+ projectId: string;
19307
+ data?: {
19308
+ notificationThresholdInBytes?: number | undefined;
19309
+ } | undefined;
19310
+ headers?: {
19311
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
19312
+ "x-access-token"?: string | undefined;
19313
+ } | undefined;
19314
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
19315
+ data: {
19316
+ notificationThresholdInBytes?: number | undefined;
19317
+ };
19318
+ } & {
19319
+ pathParameters: {
19320
+ projectId: string;
19321
+ };
19322
+ } & {
19323
+ headers?: Partial<{
19324
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19325
+ }> | undefined;
19326
+ } & {
19327
+ headers: {
19328
+ "x-access-token"?: string | undefined;
19329
+ } & Partial<{
19330
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19331
+ }>;
19332
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
19333
+ [x: string]: unknown;
19334
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19335
+ [x: string]: unknown;
19336
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19337
+ [x: string]: unknown;
19338
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
19339
+ data: {
19340
+ notificationThresholdInBytes?: number | undefined;
19341
+ };
19342
+ } & {
19343
+ pathParameters: {
19344
+ projectId: string;
19345
+ };
19346
+ } & {
19347
+ headers?: Partial<{
19348
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19349
+ }> | undefined;
19350
+ } & {
19351
+ headers: {
19352
+ "x-access-token"?: string | undefined;
19353
+ } & Partial<{
19354
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19355
+ }>;
19356
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
19357
+ [x: string]: unknown;
19358
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19359
+ [x: string]: unknown;
19360
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19361
+ [x: string]: unknown;
19362
+ }, 500, "application/json">>>;
19363
+ /** Get storage space Statistics belonging to a Server. */
19364
+ storagespaceGetServerStatistics: (request: {
19365
+ serverId: string;
19366
+ headers?: {
19367
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
19368
+ "x-access-token"?: string | undefined;
19369
+ } | undefined;
19370
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
19371
+ headers?: Partial<{
19372
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19373
+ }> | undefined;
19374
+ } & {
19375
+ pathParameters: {
19376
+ serverId: string;
19377
+ };
19378
+ } & {
19379
+ headers: {
19380
+ "x-access-token"?: string | undefined;
19381
+ } & Partial<{
19382
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19383
+ }>;
19384
+ }, import("@mittwald/api-client-commons").Response<{
19385
+ childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
19386
+ description?: string | undefined;
19387
+ id: string;
19388
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
19389
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
19390
+ name: string;
19391
+ notificationThresholdInBytes?: number | undefined;
19392
+ statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
19393
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
19394
+ [x: string]: unknown;
19395
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19396
+ [x: string]: unknown;
19397
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19398
+ [x: string]: unknown;
19399
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
19400
+ [x: string]: unknown;
19401
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19402
+ [x: string]: unknown;
19403
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
19404
+ headers?: Partial<{
19405
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19406
+ }> | undefined;
19407
+ } & {
19408
+ pathParameters: {
19409
+ serverId: string;
19410
+ };
19411
+ } & {
19412
+ headers: {
19413
+ "x-access-token"?: string | undefined;
19414
+ } & Partial<{
19415
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19416
+ }>;
19417
+ }, import("@mittwald/api-client-commons").Response<{
19418
+ childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
19419
+ description?: string | undefined;
19420
+ id: string;
19421
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
19422
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
19423
+ name: string;
19424
+ notificationThresholdInBytes?: number | undefined;
19425
+ statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
19426
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
19427
+ [x: string]: unknown;
19428
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19429
+ [x: string]: unknown;
19430
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19431
+ [x: string]: unknown;
19432
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
19433
+ [x: string]: unknown;
19434
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19435
+ [x: string]: unknown;
19436
+ }, 500, "application/json">>>;
19437
+ /** Update a Server's storage space notification threshold. */
19438
+ storagespaceReplaceServerNotificationThreshold: (request: {
19439
+ serverId: string;
19440
+ data?: {
19441
+ notificationThresholdInBytes?: number | undefined;
19442
+ } | undefined;
19443
+ headers?: {
19444
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
19445
+ "x-access-token"?: string | undefined;
19446
+ } | undefined;
19447
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
19448
+ data: {
19449
+ notificationThresholdInBytes?: number | undefined;
19450
+ };
19451
+ } & {
19452
+ pathParameters: {
19453
+ serverId: string;
19454
+ };
19455
+ } & {
19456
+ headers?: Partial<{
19457
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19458
+ }> | undefined;
19459
+ } & {
19460
+ headers: {
19461
+ "x-access-token"?: string | undefined;
19462
+ } & Partial<{
19463
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19464
+ }>;
19465
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
19466
+ [x: string]: unknown;
19467
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19468
+ [x: string]: unknown;
19469
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19470
+ [x: string]: unknown;
19471
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
19472
+ data: {
19473
+ notificationThresholdInBytes?: number | undefined;
19474
+ };
19475
+ } & {
19476
+ pathParameters: {
19477
+ serverId: string;
19478
+ };
19479
+ } & {
19480
+ headers?: Partial<{
19481
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19482
+ }> | undefined;
19483
+ } & {
19484
+ headers: {
19485
+ "x-access-token"?: string | undefined;
19486
+ } & Partial<{
19487
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19488
+ }>;
19489
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
19490
+ [x: string]: unknown;
19491
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19492
+ [x: string]: unknown;
19493
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19494
+ [x: string]: unknown;
19495
+ }, 500, "application/json">>>;
19496
+ /** Get storage space Statistics belonging to a Project. */
19497
+ storagespaceGetProjectStatistics: (request: {
19498
+ projectId: string;
19499
+ headers?: {
19500
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
19501
+ "x-access-token"?: string | undefined;
19502
+ } | undefined;
19503
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
19504
+ headers?: Partial<{
19505
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19506
+ }> | undefined;
19507
+ } & {
19508
+ pathParameters: {
19509
+ projectId: string;
19510
+ };
19511
+ } & {
19512
+ headers: {
19513
+ "x-access-token"?: string | undefined;
19514
+ } & Partial<{
19515
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19516
+ }>;
19517
+ }, import("@mittwald/api-client-commons").Response<{
19518
+ childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
19519
+ description?: string | undefined;
19520
+ id: string;
19521
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
19522
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
19523
+ name: string;
19524
+ notificationThresholdInBytes?: number | undefined;
19525
+ statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
19526
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
19527
+ [x: string]: unknown;
19528
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19529
+ [x: string]: unknown;
19530
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19531
+ [x: string]: unknown;
19532
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
19533
+ [x: string]: unknown;
19534
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19535
+ [x: string]: unknown;
19536
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
19537
+ headers?: Partial<{
19538
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19539
+ }> | undefined;
19540
+ } & {
19541
+ pathParameters: {
19542
+ projectId: string;
19543
+ };
19544
+ } & {
19545
+ headers: {
19546
+ "x-access-token"?: string | undefined;
19547
+ } & Partial<{
19548
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19549
+ }>;
19550
+ }, import("@mittwald/api-client-commons").Response<{
19551
+ childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
19552
+ description?: string | undefined;
19553
+ id: string;
19554
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
19555
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
19556
+ name: string;
19557
+ notificationThresholdInBytes?: number | undefined;
19558
+ statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
19559
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
19560
+ [x: string]: unknown;
19561
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19562
+ [x: string]: unknown;
19563
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19564
+ [x: string]: unknown;
19565
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
19566
+ [x: string]: unknown;
19567
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19568
+ [x: string]: unknown;
19569
+ }, 500, "application/json">>>;
19350
19570
  };
19351
19571
  /** The filesystem API allows you to directly access the filesystem of your project. */
19352
19572
  readonly projectFileSystem: {
@@ -411,8 +411,6 @@ export declare const mailUpdateMailAddressQuota: OpenAPIOperation<RequestType<Si
411
411
  export declare const mailUpdateMailAddressSpamProtection: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
412
412
  /** Update a mail setting of a Project. */
413
413
  export declare const mailUpdateProjectMailSetting: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
414
- /** Get all extensions and instances health for the contributor. */
415
- export declare const marketplaceGetExtensionshealth: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MarketplaceContributorIdExtensionshealth.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
416
414
  /** Getting the subscription status of the subscription. */
417
415
  export declare const newsletterGetInfo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
418
416
  /** Unsubscribe a user from the mStudio newsletter. */
@@ -673,3 +671,11 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
673
671
  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.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
674
672
  /** Check if a company exists. */
675
673
  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.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
674
+ /** Update a Project's storage space notification threshold. */
675
+ export declare const storagespaceReplaceProjectNotificationThreshold: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
676
+ /** Get storage space Statistics belonging to a Server. */
677
+ export declare const storagespaceGetServerStatistics: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
678
+ /** Update a Server's storage space notification threshold. */
679
+ export declare const storagespaceReplaceServerNotificationThreshold: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceNotificationThreshold.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceNotificationThreshold.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceNotificationThreshold.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceNotificationThreshold.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceNotificationThreshold.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceNotificationThreshold.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceNotificationThreshold.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceNotificationThreshold.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceNotificationThreshold.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
680
+ /** Get storage space Statistics belonging to a Project. */
681
+ export declare const storagespaceGetProjectStatistics: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -818,10 +818,6 @@ export declare namespace MittwaldAPIV2 {
818
818
  type RequestData = InferredRequestData<typeof descriptors.mailUpdateProjectMailSetting>;
819
819
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateProjectMailSetting, TStatus>;
820
820
  }
821
- namespace MarketplaceGetExtensionshealth {
822
- type RequestData = InferredRequestData<typeof descriptors.marketplaceGetExtensionshealth>;
823
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.marketplaceGetExtensionshealth, TStatus>;
824
- }
825
821
  namespace NewsletterGetInfo {
826
822
  type RequestData = InferredRequestData<typeof descriptors.newsletterGetInfo>;
827
823
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.newsletterGetInfo, TStatus>;
@@ -1342,6 +1338,22 @@ export declare namespace MittwaldAPIV2 {
1342
1338
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1343
1339
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1344
1340
  }
1341
+ namespace StoragespaceReplaceProjectNotificationThreshold {
1342
+ type RequestData = InferredRequestData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold>;
1343
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold, TStatus>;
1344
+ }
1345
+ namespace StoragespaceGetServerStatistics {
1346
+ type RequestData = InferredRequestData<typeof descriptors.storagespaceGetServerStatistics>;
1347
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetServerStatistics, TStatus>;
1348
+ }
1349
+ namespace StoragespaceReplaceServerNotificationThreshold {
1350
+ type RequestData = InferredRequestData<typeof descriptors.storagespaceReplaceServerNotificationThreshold>;
1351
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceReplaceServerNotificationThreshold, TStatus>;
1352
+ }
1353
+ namespace StoragespaceGetProjectStatistics {
1354
+ type RequestData = InferredRequestData<typeof descriptors.storagespaceGetProjectStatistics>;
1355
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetProjectStatistics, TStatus>;
1356
+ }
1345
1357
  }
1346
1358
  namespace Components {
1347
1359
  namespace Schemas {
@@ -2359,6 +2371,10 @@ export declare namespace MittwaldAPIV2 {
2359
2371
  [k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
2360
2372
  };
2361
2373
  id: string;
2374
+ /**
2375
+ * This is the FileId of the Logo. Retrieve the file with this id on `/v2/files/{logoRefId}`.
2376
+ */
2377
+ logoRefId?: string;
2362
2378
  name: string;
2363
2379
  /**
2364
2380
  * Whether the extension has been published by the contributor.
@@ -2401,9 +2417,12 @@ export declare namespace MittwaldAPIV2 {
2401
2417
  en?: MittwaldAPIV2.Components.Schemas.MarketplaceDescriptionFormats;
2402
2418
  }
2403
2419
  interface MarketplaceExtensionHealth {
2404
- extensionInstancesHealth?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
2420
+ disfunctionalReason?: string;
2421
+ extensionInstancesHealth: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
2405
2422
  functional: boolean;
2406
2423
  id: string;
2424
+ published: boolean;
2425
+ withdrawalReason?: string;
2407
2426
  }
2408
2427
  interface MarketplaceExtensionInstance {
2409
2428
  aggregateReference: {
@@ -2421,10 +2440,10 @@ export declare namespace MittwaldAPIV2 {
2421
2440
  }
2422
2441
  interface MarketplaceExtensionInstanceHealth {
2423
2442
  id: string;
2424
- pendingInstallation?: boolean;
2425
- pendingRemval?: boolean;
2426
- pendingWebhooks?: number;
2427
- webhooksHalted?: boolean;
2443
+ pendingInstallation: boolean;
2444
+ pendingRemoval: boolean;
2445
+ pendingWebhooks: number;
2446
+ webhooksHalted: boolean;
2428
2447
  }
2429
2448
  interface MarketplaceExternalComponent {
2430
2449
  name: string;
@@ -3953,6 +3972,44 @@ export declare namespace MittwaldAPIV2 {
3953
3972
  name: string;
3954
3973
  value: string;
3955
3974
  }
3975
+ interface StoragespaceStatisticsMeta {
3976
+ isExceeding?: boolean;
3977
+ limitInBytes?: number;
3978
+ /**
3979
+ * If true, set notification threshold is used as limit for meta calculations. E.g. for projects with a parent server.
3980
+ */
3981
+ notificationThresholdUsedAsLimit?: boolean;
3982
+ totalExceedanceInBytes?: number;
3983
+ totalExceedanceInBytesSetAt?: string;
3984
+ totalFreeInBytes?: number;
3985
+ totalFreeInPercentage?: number;
3986
+ totalUsageInBytes: number;
3987
+ totalUsageInPercentage?: number;
3988
+ }
3989
+ type StoragespaceStatisticsCategoryKind = "webspace" | "projectBackup" | "mailAddress" | "mysqlDatabase" | "redisDatabase" | "containerVolume";
3990
+ interface StoragespaceStatisticsCategory {
3991
+ kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategoryKind;
3992
+ resources?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsResource[];
3993
+ totalUsageInBytes: number;
3994
+ }
3995
+ interface StoragespaceStatisticsResource {
3996
+ description?: string;
3997
+ id: string;
3998
+ name: string;
3999
+ usageInBytes: number;
4000
+ usageInBytesSetAt: string;
4001
+ }
4002
+ type StoragespaceStatisticsKind = "server" | "project";
4003
+ interface StoragespaceStatistics {
4004
+ childStatistics?: MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[];
4005
+ description?: string;
4006
+ id: string;
4007
+ kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
4008
+ meta: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
4009
+ name: string;
4010
+ notificationThresholdInBytes?: number;
4011
+ statisticCategories?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[];
4012
+ }
3956
4013
  interface CommonsAddress {
3957
4014
  street: string;
3958
4015
  houseNumber: string;
@@ -14243,47 +14300,6 @@ export declare namespace MittwaldAPIV2 {
14243
14300
  }
14244
14301
  }
14245
14302
  namespace V2ProjectsProjectIdMailSettingsSetting { }
14246
- namespace V2MarketplaceContributorIdExtensionshealth {
14247
- namespace Get {
14248
- namespace Parameters {
14249
- type Path = {
14250
- contributorId: string;
14251
- };
14252
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14253
- type Query = {};
14254
- }
14255
- namespace Responses {
14256
- namespace $200 {
14257
- namespace Content {
14258
- interface ApplicationJson {
14259
- extensionsHealth: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionHealth[];
14260
- }
14261
- }
14262
- }
14263
- namespace $404 {
14264
- namespace Content {
14265
- interface ApplicationJson {
14266
- [k: string]: unknown;
14267
- }
14268
- }
14269
- }
14270
- namespace $429 {
14271
- namespace Content {
14272
- interface ApplicationJson {
14273
- [k: string]: unknown;
14274
- }
14275
- }
14276
- }
14277
- namespace Default {
14278
- namespace Content {
14279
- interface ApplicationJson {
14280
- [k: string]: unknown;
14281
- }
14282
- }
14283
- }
14284
- }
14285
- }
14286
- }
14287
14303
  namespace V2NewsletterSubscriptionsSelf {
14288
14304
  namespace Get {
14289
14305
  namespace Parameters {
@@ -20259,5 +20275,223 @@ export declare namespace MittwaldAPIV2 {
20259
20275
  }
20260
20276
  }
20261
20277
  }
20278
+ namespace V2ProjectsProjectIdStorageSpaceNotificationThreshold {
20279
+ namespace Put {
20280
+ namespace Parameters {
20281
+ type Path = {
20282
+ projectId: string;
20283
+ };
20284
+ interface RequestBody {
20285
+ notificationThresholdInBytes?: number;
20286
+ }
20287
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20288
+ type Query = {};
20289
+ }
20290
+ namespace Responses {
20291
+ namespace $204 {
20292
+ namespace Content {
20293
+ type Empty = unknown;
20294
+ }
20295
+ }
20296
+ namespace $403 {
20297
+ namespace Content {
20298
+ interface ApplicationJson {
20299
+ [k: string]: unknown;
20300
+ }
20301
+ }
20302
+ }
20303
+ namespace $429 {
20304
+ namespace Content {
20305
+ interface ApplicationJson {
20306
+ [k: string]: unknown;
20307
+ }
20308
+ }
20309
+ }
20310
+ namespace $500 {
20311
+ namespace Content {
20312
+ interface ApplicationJson {
20313
+ [k: string]: unknown;
20314
+ }
20315
+ }
20316
+ }
20317
+ namespace Default {
20318
+ namespace Content {
20319
+ interface ApplicationJson {
20320
+ [k: string]: unknown;
20321
+ }
20322
+ }
20323
+ }
20324
+ }
20325
+ }
20326
+ }
20327
+ namespace V2ServersServerIdStorageSpaceStatistics {
20328
+ namespace Get {
20329
+ namespace Parameters {
20330
+ type Path = {
20331
+ serverId: string;
20332
+ };
20333
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20334
+ type Query = {};
20335
+ }
20336
+ namespace Responses {
20337
+ namespace $200 {
20338
+ namespace Content {
20339
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.StoragespaceStatistics;
20340
+ }
20341
+ }
20342
+ namespace $400 {
20343
+ namespace Content {
20344
+ interface ApplicationJson {
20345
+ [k: string]: unknown;
20346
+ }
20347
+ }
20348
+ }
20349
+ namespace $403 {
20350
+ namespace Content {
20351
+ interface ApplicationJson {
20352
+ [k: string]: unknown;
20353
+ }
20354
+ }
20355
+ }
20356
+ namespace $404 {
20357
+ namespace Content {
20358
+ interface ApplicationJson {
20359
+ [k: string]: unknown;
20360
+ }
20361
+ }
20362
+ }
20363
+ namespace $429 {
20364
+ namespace Content {
20365
+ interface ApplicationJson {
20366
+ [k: string]: unknown;
20367
+ }
20368
+ }
20369
+ }
20370
+ namespace $500 {
20371
+ namespace Content {
20372
+ interface ApplicationJson {
20373
+ [k: string]: unknown;
20374
+ }
20375
+ }
20376
+ }
20377
+ namespace Default {
20378
+ namespace Content {
20379
+ interface ApplicationJson {
20380
+ [k: string]: unknown;
20381
+ }
20382
+ }
20383
+ }
20384
+ }
20385
+ }
20386
+ }
20387
+ namespace V2ServersServerIdStorageSpaceNotificationThreshold {
20388
+ namespace Put {
20389
+ namespace Parameters {
20390
+ type Path = {
20391
+ serverId: string;
20392
+ };
20393
+ interface RequestBody {
20394
+ notificationThresholdInBytes?: number;
20395
+ }
20396
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20397
+ type Query = {};
20398
+ }
20399
+ namespace Responses {
20400
+ namespace $204 {
20401
+ namespace Content {
20402
+ type Empty = unknown;
20403
+ }
20404
+ }
20405
+ namespace $403 {
20406
+ namespace Content {
20407
+ interface ApplicationJson {
20408
+ [k: string]: unknown;
20409
+ }
20410
+ }
20411
+ }
20412
+ namespace $429 {
20413
+ namespace Content {
20414
+ interface ApplicationJson {
20415
+ [k: string]: unknown;
20416
+ }
20417
+ }
20418
+ }
20419
+ namespace $500 {
20420
+ namespace Content {
20421
+ interface ApplicationJson {
20422
+ [k: string]: unknown;
20423
+ }
20424
+ }
20425
+ }
20426
+ namespace Default {
20427
+ namespace Content {
20428
+ interface ApplicationJson {
20429
+ [k: string]: unknown;
20430
+ }
20431
+ }
20432
+ }
20433
+ }
20434
+ }
20435
+ }
20436
+ namespace V2ProjectsProjectIdStorageSpaceStatistics {
20437
+ namespace Get {
20438
+ namespace Parameters {
20439
+ type Path = {
20440
+ projectId: string;
20441
+ };
20442
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20443
+ type Query = {};
20444
+ }
20445
+ namespace Responses {
20446
+ namespace $200 {
20447
+ namespace Content {
20448
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.StoragespaceStatistics;
20449
+ }
20450
+ }
20451
+ namespace $400 {
20452
+ namespace Content {
20453
+ interface ApplicationJson {
20454
+ [k: string]: unknown;
20455
+ }
20456
+ }
20457
+ }
20458
+ namespace $403 {
20459
+ namespace Content {
20460
+ interface ApplicationJson {
20461
+ [k: string]: unknown;
20462
+ }
20463
+ }
20464
+ }
20465
+ namespace $404 {
20466
+ namespace Content {
20467
+ interface ApplicationJson {
20468
+ [k: string]: unknown;
20469
+ }
20470
+ }
20471
+ }
20472
+ namespace $429 {
20473
+ namespace Content {
20474
+ interface ApplicationJson {
20475
+ [k: string]: unknown;
20476
+ }
20477
+ }
20478
+ }
20479
+ namespace $500 {
20480
+ namespace Content {
20481
+ interface ApplicationJson {
20482
+ [k: string]: unknown;
20483
+ }
20484
+ }
20485
+ }
20486
+ namespace Default {
20487
+ namespace Content {
20488
+ interface ApplicationJson {
20489
+ [k: string]: unknown;
20490
+ }
20491
+ }
20492
+ }
20493
+ }
20494
+ }
20495
+ }
20262
20496
  }
20263
20497
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.73.0';
1
+ export declare const MittwaldAPIClientVersion = '4.75.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.74.0",
3
+ "version": "4.76.0",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "9221523c7d65a9f9b60439179c4e3536c808292c"
83
+ "gitHead": "9437dfba20112f8d487db4d6219db1097d5f728e"
84
84
  }