@mittwald/api-client 4.75.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.
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
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[];
|
|
@@ -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[];
|
|
@@ -2371,6 +2371,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2371
2371
|
[k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
2372
2372
|
};
|
|
2373
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;
|
|
2374
2378
|
name: string;
|
|
2375
2379
|
/**
|
|
2376
2380
|
* Whether the extension has been published by the contributor.
|
|
@@ -3968,16 +3972,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3968
3972
|
name: string;
|
|
3969
3973
|
value: string;
|
|
3970
3974
|
}
|
|
3971
|
-
interface StoragespaceStatistics {
|
|
3972
|
-
childStatistics?: MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[];
|
|
3973
|
-
description?: string;
|
|
3974
|
-
id: string;
|
|
3975
|
-
kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
3976
|
-
meta: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
3977
|
-
name: string;
|
|
3978
|
-
notificationThresholdInBytes?: number;
|
|
3979
|
-
statisticCategories?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[];
|
|
3980
|
-
}
|
|
3981
3975
|
interface StoragespaceStatisticsMeta {
|
|
3982
3976
|
isExceeding?: boolean;
|
|
3983
3977
|
limitInBytes?: number;
|
|
@@ -3992,6 +3986,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3992
3986
|
totalUsageInBytes: number;
|
|
3993
3987
|
totalUsageInPercentage?: number;
|
|
3994
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
3995
|
interface StoragespaceStatisticsResource {
|
|
3996
3996
|
description?: string;
|
|
3997
3997
|
id: string;
|
|
@@ -3999,13 +3999,17 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3999
3999
|
usageInBytes: number;
|
|
4000
4000
|
usageInBytesSetAt: string;
|
|
4001
4001
|
}
|
|
4002
|
-
type StoragespaceStatisticsCategoryKind = "webspace" | "projectBackup" | "mailAddress" | "mysqlDatabase" | "redisDatabase" | "containerVolume";
|
|
4003
|
-
interface StoragespaceStatisticsCategory {
|
|
4004
|
-
kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategoryKind;
|
|
4005
|
-
resources?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsResource[];
|
|
4006
|
-
totalUsageInBytes: number;
|
|
4007
|
-
}
|
|
4008
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
|
+
}
|
|
4009
4013
|
interface CommonsAddress {
|
|
4010
4014
|
street: string;
|
|
4011
4015
|
houseNumber: string;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
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.
|
|
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": "
|
|
83
|
+
"gitHead": "9437dfba20112f8d487db4d6219db1097d5f728e"
|
|
84
84
|
}
|