@mittwald/api-client 4.74.0 → 4.75.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/generated/v2/client-react.js +4 -2
- package/dist/esm/generated/v2/client.js +8 -2
- package/dist/esm/generated/v2/descriptors.js +24 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +34 -10
- package/dist/types/generated/v2/client.d.ts +266 -48
- package/dist/types/generated/v2/descriptors.d.ts +8 -2
- package/dist/types/generated/v2/types.d.ts +280 -50
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -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
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.74.0';
|
|
@@ -1465,16 +1465,6 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1465
1465
|
page?: number | undefined;
|
|
1466
1466
|
} | undefined;
|
|
1467
1467
|
} | 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
1468
|
};
|
|
1479
1469
|
declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1480
1470
|
/** Get a File's meta. */
|
|
@@ -2238,6 +2228,40 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2238
2228
|
skip?: number | undefined;
|
|
2239
2229
|
} | undefined;
|
|
2240
2230
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServer[]>;
|
|
2231
|
+
/** Get storage space Statistics belonging to a Server. */
|
|
2232
|
+
storagespaceGetServerStatistics: (conf: {
|
|
2233
|
+
serverId: string;
|
|
2234
|
+
headers?: {
|
|
2235
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2236
|
+
"x-access-token"?: string | undefined;
|
|
2237
|
+
} | undefined;
|
|
2238
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2239
|
+
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
2240
|
+
description?: string | undefined;
|
|
2241
|
+
id: string;
|
|
2242
|
+
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
2243
|
+
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
2244
|
+
name: string;
|
|
2245
|
+
notificationThresholdInBytes?: number | undefined;
|
|
2246
|
+
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
2247
|
+
}>;
|
|
2248
|
+
/** Get storage space Statistics belonging to a Project. */
|
|
2249
|
+
storagespaceGetProjectStatistics: (conf: {
|
|
2250
|
+
projectId: string;
|
|
2251
|
+
headers?: {
|
|
2252
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2253
|
+
"x-access-token"?: string | undefined;
|
|
2254
|
+
} | undefined;
|
|
2255
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2256
|
+
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
2257
|
+
description?: string | undefined;
|
|
2258
|
+
id: string;
|
|
2259
|
+
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
2260
|
+
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
2261
|
+
name: string;
|
|
2262
|
+
notificationThresholdInBytes?: number | undefined;
|
|
2263
|
+
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
2264
|
+
}>;
|
|
2241
2265
|
};
|
|
2242
2266
|
declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
2243
2267
|
/** List directories belonging to a Project. */
|
|
@@ -5120,54 +5120,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5120
5120
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5121
5121
|
[x: string]: unknown;
|
|
5122
5122
|
}, 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
5123
|
};
|
|
5172
5124
|
/** The conversation API allows you to manage your support conversations. */
|
|
5173
5125
|
readonly conversation: {
|
|
@@ -19347,6 +19299,272 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19347
19299
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19348
19300
|
[x: string]: unknown;
|
|
19349
19301
|
}, 429, "application/json">>>;
|
|
19302
|
+
/** Update a Project's storage space notification threshold. */
|
|
19303
|
+
storagespaceReplaceProjectNotificationThreshold: (request: {
|
|
19304
|
+
projectId: string;
|
|
19305
|
+
data?: {
|
|
19306
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19307
|
+
} | undefined;
|
|
19308
|
+
headers?: {
|
|
19309
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19310
|
+
"x-access-token"?: string | undefined;
|
|
19311
|
+
} | undefined;
|
|
19312
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19313
|
+
data: {
|
|
19314
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19315
|
+
};
|
|
19316
|
+
} & {
|
|
19317
|
+
pathParameters: {
|
|
19318
|
+
projectId: string;
|
|
19319
|
+
};
|
|
19320
|
+
} & {
|
|
19321
|
+
headers?: Partial<{
|
|
19322
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19323
|
+
}> | undefined;
|
|
19324
|
+
} & {
|
|
19325
|
+
headers: {
|
|
19326
|
+
"x-access-token"?: string | undefined;
|
|
19327
|
+
} & Partial<{
|
|
19328
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19329
|
+
}>;
|
|
19330
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19331
|
+
[x: string]: unknown;
|
|
19332
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19333
|
+
[x: string]: unknown;
|
|
19334
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19335
|
+
[x: string]: unknown;
|
|
19336
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19337
|
+
data: {
|
|
19338
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19339
|
+
};
|
|
19340
|
+
} & {
|
|
19341
|
+
pathParameters: {
|
|
19342
|
+
projectId: string;
|
|
19343
|
+
};
|
|
19344
|
+
} & {
|
|
19345
|
+
headers?: Partial<{
|
|
19346
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19347
|
+
}> | undefined;
|
|
19348
|
+
} & {
|
|
19349
|
+
headers: {
|
|
19350
|
+
"x-access-token"?: string | undefined;
|
|
19351
|
+
} & Partial<{
|
|
19352
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19353
|
+
}>;
|
|
19354
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19355
|
+
[x: string]: unknown;
|
|
19356
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19357
|
+
[x: string]: unknown;
|
|
19358
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19359
|
+
[x: string]: unknown;
|
|
19360
|
+
}, 500, "application/json">>>;
|
|
19361
|
+
/** Get storage space Statistics belonging to a Server. */
|
|
19362
|
+
storagespaceGetServerStatistics: (request: {
|
|
19363
|
+
serverId: string;
|
|
19364
|
+
headers?: {
|
|
19365
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19366
|
+
"x-access-token"?: string | undefined;
|
|
19367
|
+
} | undefined;
|
|
19368
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19369
|
+
headers?: Partial<{
|
|
19370
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19371
|
+
}> | undefined;
|
|
19372
|
+
} & {
|
|
19373
|
+
pathParameters: {
|
|
19374
|
+
serverId: string;
|
|
19375
|
+
};
|
|
19376
|
+
} & {
|
|
19377
|
+
headers: {
|
|
19378
|
+
"x-access-token"?: string | undefined;
|
|
19379
|
+
} & Partial<{
|
|
19380
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19381
|
+
}>;
|
|
19382
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
19383
|
+
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
19384
|
+
description?: string | undefined;
|
|
19385
|
+
id: string;
|
|
19386
|
+
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
19387
|
+
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
19388
|
+
name: string;
|
|
19389
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19390
|
+
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
19391
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19392
|
+
[x: string]: unknown;
|
|
19393
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19394
|
+
[x: string]: unknown;
|
|
19395
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19396
|
+
[x: string]: unknown;
|
|
19397
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19398
|
+
[x: string]: unknown;
|
|
19399
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19400
|
+
[x: string]: unknown;
|
|
19401
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19402
|
+
headers?: Partial<{
|
|
19403
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19404
|
+
}> | undefined;
|
|
19405
|
+
} & {
|
|
19406
|
+
pathParameters: {
|
|
19407
|
+
serverId: string;
|
|
19408
|
+
};
|
|
19409
|
+
} & {
|
|
19410
|
+
headers: {
|
|
19411
|
+
"x-access-token"?: string | undefined;
|
|
19412
|
+
} & Partial<{
|
|
19413
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19414
|
+
}>;
|
|
19415
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
19416
|
+
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
19417
|
+
description?: string | undefined;
|
|
19418
|
+
id: string;
|
|
19419
|
+
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
19420
|
+
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
19421
|
+
name: string;
|
|
19422
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19423
|
+
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
19424
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19425
|
+
[x: string]: unknown;
|
|
19426
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19427
|
+
[x: string]: unknown;
|
|
19428
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19429
|
+
[x: string]: unknown;
|
|
19430
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19431
|
+
[x: string]: unknown;
|
|
19432
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19433
|
+
[x: string]: unknown;
|
|
19434
|
+
}, 500, "application/json">>>;
|
|
19435
|
+
/** Update a Server's storage space notification threshold. */
|
|
19436
|
+
storagespaceReplaceServerNotificationThreshold: (request: {
|
|
19437
|
+
serverId: string;
|
|
19438
|
+
data?: {
|
|
19439
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19440
|
+
} | undefined;
|
|
19441
|
+
headers?: {
|
|
19442
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19443
|
+
"x-access-token"?: string | undefined;
|
|
19444
|
+
} | undefined;
|
|
19445
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19446
|
+
data: {
|
|
19447
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19448
|
+
};
|
|
19449
|
+
} & {
|
|
19450
|
+
pathParameters: {
|
|
19451
|
+
serverId: string;
|
|
19452
|
+
};
|
|
19453
|
+
} & {
|
|
19454
|
+
headers?: Partial<{
|
|
19455
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19456
|
+
}> | undefined;
|
|
19457
|
+
} & {
|
|
19458
|
+
headers: {
|
|
19459
|
+
"x-access-token"?: string | undefined;
|
|
19460
|
+
} & Partial<{
|
|
19461
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19462
|
+
}>;
|
|
19463
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19464
|
+
[x: string]: unknown;
|
|
19465
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19466
|
+
[x: string]: unknown;
|
|
19467
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19468
|
+
[x: string]: unknown;
|
|
19469
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19470
|
+
data: {
|
|
19471
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19472
|
+
};
|
|
19473
|
+
} & {
|
|
19474
|
+
pathParameters: {
|
|
19475
|
+
serverId: string;
|
|
19476
|
+
};
|
|
19477
|
+
} & {
|
|
19478
|
+
headers?: Partial<{
|
|
19479
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19480
|
+
}> | undefined;
|
|
19481
|
+
} & {
|
|
19482
|
+
headers: {
|
|
19483
|
+
"x-access-token"?: string | undefined;
|
|
19484
|
+
} & Partial<{
|
|
19485
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19486
|
+
}>;
|
|
19487
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19488
|
+
[x: string]: unknown;
|
|
19489
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19490
|
+
[x: string]: unknown;
|
|
19491
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19492
|
+
[x: string]: unknown;
|
|
19493
|
+
}, 500, "application/json">>>;
|
|
19494
|
+
/** Get storage space Statistics belonging to a Project. */
|
|
19495
|
+
storagespaceGetProjectStatistics: (request: {
|
|
19496
|
+
projectId: string;
|
|
19497
|
+
headers?: {
|
|
19498
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19499
|
+
"x-access-token"?: string | undefined;
|
|
19500
|
+
} | undefined;
|
|
19501
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19502
|
+
headers?: Partial<{
|
|
19503
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19504
|
+
}> | undefined;
|
|
19505
|
+
} & {
|
|
19506
|
+
pathParameters: {
|
|
19507
|
+
projectId: string;
|
|
19508
|
+
};
|
|
19509
|
+
} & {
|
|
19510
|
+
headers: {
|
|
19511
|
+
"x-access-token"?: string | undefined;
|
|
19512
|
+
} & Partial<{
|
|
19513
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19514
|
+
}>;
|
|
19515
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
19516
|
+
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
19517
|
+
description?: string | undefined;
|
|
19518
|
+
id: string;
|
|
19519
|
+
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
19520
|
+
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
19521
|
+
name: string;
|
|
19522
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19523
|
+
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
19524
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19525
|
+
[x: string]: unknown;
|
|
19526
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19527
|
+
[x: string]: unknown;
|
|
19528
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19529
|
+
[x: string]: unknown;
|
|
19530
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19531
|
+
[x: string]: unknown;
|
|
19532
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19533
|
+
[x: string]: unknown;
|
|
19534
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19535
|
+
headers?: Partial<{
|
|
19536
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19537
|
+
}> | undefined;
|
|
19538
|
+
} & {
|
|
19539
|
+
pathParameters: {
|
|
19540
|
+
projectId: string;
|
|
19541
|
+
};
|
|
19542
|
+
} & {
|
|
19543
|
+
headers: {
|
|
19544
|
+
"x-access-token"?: string | undefined;
|
|
19545
|
+
} & Partial<{
|
|
19546
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19547
|
+
}>;
|
|
19548
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
19549
|
+
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
19550
|
+
description?: string | undefined;
|
|
19551
|
+
id: string;
|
|
19552
|
+
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
19553
|
+
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
19554
|
+
name: string;
|
|
19555
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19556
|
+
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
19557
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19558
|
+
[x: string]: unknown;
|
|
19559
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19560
|
+
[x: string]: unknown;
|
|
19561
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19562
|
+
[x: string]: unknown;
|
|
19563
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19564
|
+
[x: string]: unknown;
|
|
19565
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19566
|
+
[x: string]: unknown;
|
|
19567
|
+
}, 500, "application/json">>>;
|
|
19350
19568
|
};
|
|
19351
19569
|
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
19352
19570
|
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 {
|
|
@@ -2401,9 +2413,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2401
2413
|
en?: MittwaldAPIV2.Components.Schemas.MarketplaceDescriptionFormats;
|
|
2402
2414
|
}
|
|
2403
2415
|
interface MarketplaceExtensionHealth {
|
|
2404
|
-
|
|
2416
|
+
disfunctionalReason?: string;
|
|
2417
|
+
extensionInstancesHealth: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
|
|
2405
2418
|
functional: boolean;
|
|
2406
2419
|
id: string;
|
|
2420
|
+
published: boolean;
|
|
2421
|
+
withdrawalReason?: string;
|
|
2407
2422
|
}
|
|
2408
2423
|
interface MarketplaceExtensionInstance {
|
|
2409
2424
|
aggregateReference: {
|
|
@@ -2421,10 +2436,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2421
2436
|
}
|
|
2422
2437
|
interface MarketplaceExtensionInstanceHealth {
|
|
2423
2438
|
id: string;
|
|
2424
|
-
pendingInstallation
|
|
2425
|
-
|
|
2426
|
-
pendingWebhooks
|
|
2427
|
-
webhooksHalted
|
|
2439
|
+
pendingInstallation: boolean;
|
|
2440
|
+
pendingRemoval: boolean;
|
|
2441
|
+
pendingWebhooks: number;
|
|
2442
|
+
webhooksHalted: boolean;
|
|
2428
2443
|
}
|
|
2429
2444
|
interface MarketplaceExternalComponent {
|
|
2430
2445
|
name: string;
|
|
@@ -3953,6 +3968,44 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3953
3968
|
name: string;
|
|
3954
3969
|
value: string;
|
|
3955
3970
|
}
|
|
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
|
+
interface StoragespaceStatisticsMeta {
|
|
3982
|
+
isExceeding?: boolean;
|
|
3983
|
+
limitInBytes?: number;
|
|
3984
|
+
/**
|
|
3985
|
+
* If true, set notification threshold is used as limit for meta calculations. E.g. for projects with a parent server.
|
|
3986
|
+
*/
|
|
3987
|
+
notificationThresholdUsedAsLimit?: boolean;
|
|
3988
|
+
totalExceedanceInBytes?: number;
|
|
3989
|
+
totalExceedanceInBytesSetAt?: string;
|
|
3990
|
+
totalFreeInBytes?: number;
|
|
3991
|
+
totalFreeInPercentage?: number;
|
|
3992
|
+
totalUsageInBytes: number;
|
|
3993
|
+
totalUsageInPercentage?: number;
|
|
3994
|
+
}
|
|
3995
|
+
interface StoragespaceStatisticsResource {
|
|
3996
|
+
description?: string;
|
|
3997
|
+
id: string;
|
|
3998
|
+
name: string;
|
|
3999
|
+
usageInBytes: number;
|
|
4000
|
+
usageInBytesSetAt: string;
|
|
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
|
+
type StoragespaceStatisticsKind = "server" | "project";
|
|
3956
4009
|
interface CommonsAddress {
|
|
3957
4010
|
street: string;
|
|
3958
4011
|
houseNumber: string;
|
|
@@ -14243,47 +14296,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
14243
14296
|
}
|
|
14244
14297
|
}
|
|
14245
14298
|
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
14299
|
namespace V2NewsletterSubscriptionsSelf {
|
|
14288
14300
|
namespace Get {
|
|
14289
14301
|
namespace Parameters {
|
|
@@ -20259,5 +20271,223 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20259
20271
|
}
|
|
20260
20272
|
}
|
|
20261
20273
|
}
|
|
20274
|
+
namespace V2ProjectsProjectIdStorageSpaceNotificationThreshold {
|
|
20275
|
+
namespace Put {
|
|
20276
|
+
namespace Parameters {
|
|
20277
|
+
type Path = {
|
|
20278
|
+
projectId: string;
|
|
20279
|
+
};
|
|
20280
|
+
interface RequestBody {
|
|
20281
|
+
notificationThresholdInBytes?: number;
|
|
20282
|
+
}
|
|
20283
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20284
|
+
type Query = {};
|
|
20285
|
+
}
|
|
20286
|
+
namespace Responses {
|
|
20287
|
+
namespace $204 {
|
|
20288
|
+
namespace Content {
|
|
20289
|
+
type Empty = unknown;
|
|
20290
|
+
}
|
|
20291
|
+
}
|
|
20292
|
+
namespace $403 {
|
|
20293
|
+
namespace Content {
|
|
20294
|
+
interface ApplicationJson {
|
|
20295
|
+
[k: string]: unknown;
|
|
20296
|
+
}
|
|
20297
|
+
}
|
|
20298
|
+
}
|
|
20299
|
+
namespace $429 {
|
|
20300
|
+
namespace Content {
|
|
20301
|
+
interface ApplicationJson {
|
|
20302
|
+
[k: string]: unknown;
|
|
20303
|
+
}
|
|
20304
|
+
}
|
|
20305
|
+
}
|
|
20306
|
+
namespace $500 {
|
|
20307
|
+
namespace Content {
|
|
20308
|
+
interface ApplicationJson {
|
|
20309
|
+
[k: string]: unknown;
|
|
20310
|
+
}
|
|
20311
|
+
}
|
|
20312
|
+
}
|
|
20313
|
+
namespace Default {
|
|
20314
|
+
namespace Content {
|
|
20315
|
+
interface ApplicationJson {
|
|
20316
|
+
[k: string]: unknown;
|
|
20317
|
+
}
|
|
20318
|
+
}
|
|
20319
|
+
}
|
|
20320
|
+
}
|
|
20321
|
+
}
|
|
20322
|
+
}
|
|
20323
|
+
namespace V2ServersServerIdStorageSpaceStatistics {
|
|
20324
|
+
namespace Get {
|
|
20325
|
+
namespace Parameters {
|
|
20326
|
+
type Path = {
|
|
20327
|
+
serverId: string;
|
|
20328
|
+
};
|
|
20329
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20330
|
+
type Query = {};
|
|
20331
|
+
}
|
|
20332
|
+
namespace Responses {
|
|
20333
|
+
namespace $200 {
|
|
20334
|
+
namespace Content {
|
|
20335
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.StoragespaceStatistics;
|
|
20336
|
+
}
|
|
20337
|
+
}
|
|
20338
|
+
namespace $400 {
|
|
20339
|
+
namespace Content {
|
|
20340
|
+
interface ApplicationJson {
|
|
20341
|
+
[k: string]: unknown;
|
|
20342
|
+
}
|
|
20343
|
+
}
|
|
20344
|
+
}
|
|
20345
|
+
namespace $403 {
|
|
20346
|
+
namespace Content {
|
|
20347
|
+
interface ApplicationJson {
|
|
20348
|
+
[k: string]: unknown;
|
|
20349
|
+
}
|
|
20350
|
+
}
|
|
20351
|
+
}
|
|
20352
|
+
namespace $404 {
|
|
20353
|
+
namespace Content {
|
|
20354
|
+
interface ApplicationJson {
|
|
20355
|
+
[k: string]: unknown;
|
|
20356
|
+
}
|
|
20357
|
+
}
|
|
20358
|
+
}
|
|
20359
|
+
namespace $429 {
|
|
20360
|
+
namespace Content {
|
|
20361
|
+
interface ApplicationJson {
|
|
20362
|
+
[k: string]: unknown;
|
|
20363
|
+
}
|
|
20364
|
+
}
|
|
20365
|
+
}
|
|
20366
|
+
namespace $500 {
|
|
20367
|
+
namespace Content {
|
|
20368
|
+
interface ApplicationJson {
|
|
20369
|
+
[k: string]: unknown;
|
|
20370
|
+
}
|
|
20371
|
+
}
|
|
20372
|
+
}
|
|
20373
|
+
namespace Default {
|
|
20374
|
+
namespace Content {
|
|
20375
|
+
interface ApplicationJson {
|
|
20376
|
+
[k: string]: unknown;
|
|
20377
|
+
}
|
|
20378
|
+
}
|
|
20379
|
+
}
|
|
20380
|
+
}
|
|
20381
|
+
}
|
|
20382
|
+
}
|
|
20383
|
+
namespace V2ServersServerIdStorageSpaceNotificationThreshold {
|
|
20384
|
+
namespace Put {
|
|
20385
|
+
namespace Parameters {
|
|
20386
|
+
type Path = {
|
|
20387
|
+
serverId: string;
|
|
20388
|
+
};
|
|
20389
|
+
interface RequestBody {
|
|
20390
|
+
notificationThresholdInBytes?: number;
|
|
20391
|
+
}
|
|
20392
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20393
|
+
type Query = {};
|
|
20394
|
+
}
|
|
20395
|
+
namespace Responses {
|
|
20396
|
+
namespace $204 {
|
|
20397
|
+
namespace Content {
|
|
20398
|
+
type Empty = unknown;
|
|
20399
|
+
}
|
|
20400
|
+
}
|
|
20401
|
+
namespace $403 {
|
|
20402
|
+
namespace Content {
|
|
20403
|
+
interface ApplicationJson {
|
|
20404
|
+
[k: string]: unknown;
|
|
20405
|
+
}
|
|
20406
|
+
}
|
|
20407
|
+
}
|
|
20408
|
+
namespace $429 {
|
|
20409
|
+
namespace Content {
|
|
20410
|
+
interface ApplicationJson {
|
|
20411
|
+
[k: string]: unknown;
|
|
20412
|
+
}
|
|
20413
|
+
}
|
|
20414
|
+
}
|
|
20415
|
+
namespace $500 {
|
|
20416
|
+
namespace Content {
|
|
20417
|
+
interface ApplicationJson {
|
|
20418
|
+
[k: string]: unknown;
|
|
20419
|
+
}
|
|
20420
|
+
}
|
|
20421
|
+
}
|
|
20422
|
+
namespace Default {
|
|
20423
|
+
namespace Content {
|
|
20424
|
+
interface ApplicationJson {
|
|
20425
|
+
[k: string]: unknown;
|
|
20426
|
+
}
|
|
20427
|
+
}
|
|
20428
|
+
}
|
|
20429
|
+
}
|
|
20430
|
+
}
|
|
20431
|
+
}
|
|
20432
|
+
namespace V2ProjectsProjectIdStorageSpaceStatistics {
|
|
20433
|
+
namespace Get {
|
|
20434
|
+
namespace Parameters {
|
|
20435
|
+
type Path = {
|
|
20436
|
+
projectId: string;
|
|
20437
|
+
};
|
|
20438
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20439
|
+
type Query = {};
|
|
20440
|
+
}
|
|
20441
|
+
namespace Responses {
|
|
20442
|
+
namespace $200 {
|
|
20443
|
+
namespace Content {
|
|
20444
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.StoragespaceStatistics;
|
|
20445
|
+
}
|
|
20446
|
+
}
|
|
20447
|
+
namespace $400 {
|
|
20448
|
+
namespace Content {
|
|
20449
|
+
interface ApplicationJson {
|
|
20450
|
+
[k: string]: unknown;
|
|
20451
|
+
}
|
|
20452
|
+
}
|
|
20453
|
+
}
|
|
20454
|
+
namespace $403 {
|
|
20455
|
+
namespace Content {
|
|
20456
|
+
interface ApplicationJson {
|
|
20457
|
+
[k: string]: unknown;
|
|
20458
|
+
}
|
|
20459
|
+
}
|
|
20460
|
+
}
|
|
20461
|
+
namespace $404 {
|
|
20462
|
+
namespace Content {
|
|
20463
|
+
interface ApplicationJson {
|
|
20464
|
+
[k: string]: unknown;
|
|
20465
|
+
}
|
|
20466
|
+
}
|
|
20467
|
+
}
|
|
20468
|
+
namespace $429 {
|
|
20469
|
+
namespace Content {
|
|
20470
|
+
interface ApplicationJson {
|
|
20471
|
+
[k: string]: unknown;
|
|
20472
|
+
}
|
|
20473
|
+
}
|
|
20474
|
+
}
|
|
20475
|
+
namespace $500 {
|
|
20476
|
+
namespace Content {
|
|
20477
|
+
interface ApplicationJson {
|
|
20478
|
+
[k: string]: unknown;
|
|
20479
|
+
}
|
|
20480
|
+
}
|
|
20481
|
+
}
|
|
20482
|
+
namespace Default {
|
|
20483
|
+
namespace Content {
|
|
20484
|
+
interface ApplicationJson {
|
|
20485
|
+
[k: string]: unknown;
|
|
20486
|
+
}
|
|
20487
|
+
}
|
|
20488
|
+
}
|
|
20489
|
+
}
|
|
20490
|
+
}
|
|
20491
|
+
}
|
|
20262
20492
|
}
|
|
20263
20493
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.74.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.75.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": "25e1dd6394b6b2307360382861c65f42b14aeafc"
|
|
84
84
|
}
|