@mittwald/api-client 4.75.0 → 4.77.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 +2 -2
- package/dist/esm/generated/v2/client.js +4 -4
- package/dist/esm/generated/v2/descriptors.js +24 -24
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +7 -6
- package/dist/types/generated/v2/client.d.ts +67 -65
- package/dist/types/generated/v2/descriptors.d.ts +8 -8
- package/dist/types/generated/v2/types.d.ts +349 -345
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -306,10 +306,10 @@ const buildProjectApi = (baseClient) => ({
|
|
|
306
306
|
listProjects: new ApiCallAsyncResourceFactory(descriptors.projectListProjects, baseClient.project.listProjects).getApiResource,
|
|
307
307
|
/** List Servers belonging to the executing user. */
|
|
308
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
309
|
/** Get storage space Statistics belonging to a Project. */
|
|
312
310
|
storagespaceGetProjectStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetProjectStatistics, baseClient.project.storagespaceGetProjectStatistics).getApiResource,
|
|
311
|
+
/** Get storage space Statistics belonging to a Server. */
|
|
312
|
+
storagespaceGetServerStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetServerStatistics, baseClient.project.storagespaceGetServerStatistics).getApiResource,
|
|
313
313
|
});
|
|
314
314
|
const buildProjectFileSystemApi = (baseClient) => ({
|
|
315
315
|
/** List directories belonging to a Project. */
|
|
@@ -679,14 +679,14 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
679
679
|
updateProjectDescription: this.requestFunctionFactory(descriptors.projectUpdateProjectDescription),
|
|
680
680
|
/** Update a Servers's description. */
|
|
681
681
|
updateServerDescription: this.requestFunctionFactory(descriptors.projectUpdateServerDescription),
|
|
682
|
-
/**
|
|
683
|
-
|
|
682
|
+
/** Get storage space Statistics belonging to a Project. */
|
|
683
|
+
storagespaceGetProjectStatistics: this.requestFunctionFactory(descriptors.storagespaceGetProjectStatistics),
|
|
684
684
|
/** Get storage space Statistics belonging to a Server. */
|
|
685
685
|
storagespaceGetServerStatistics: this.requestFunctionFactory(descriptors.storagespaceGetServerStatistics),
|
|
686
|
+
/** Update a Project's storage space notification threshold. */
|
|
687
|
+
storagespaceReplaceProjectNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceProjectNotificationThreshold),
|
|
686
688
|
/** Update a Server's storage space notification threshold. */
|
|
687
689
|
storagespaceReplaceServerNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceServerNotificationThreshold),
|
|
688
|
-
/** Get storage space Statistics belonging to a Project. */
|
|
689
|
-
storagespaceGetProjectStatistics: this.requestFunctionFactory(descriptors.storagespaceGetProjectStatistics),
|
|
690
690
|
};
|
|
691
691
|
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
692
692
|
projectFileSystem = {
|
|
@@ -1666,6 +1666,30 @@ export const sslListCertificates = {
|
|
|
1666
1666
|
method: "GET",
|
|
1667
1667
|
operationId: "ssl-list-certificates",
|
|
1668
1668
|
};
|
|
1669
|
+
/** Get storage space Statistics belonging to a Project. */
|
|
1670
|
+
export const storagespaceGetProjectStatistics = {
|
|
1671
|
+
path: "/v2/projects/{projectId}/storage-space-statistics",
|
|
1672
|
+
method: "GET",
|
|
1673
|
+
operationId: "storagespace-get-project-statistics",
|
|
1674
|
+
};
|
|
1675
|
+
/** Get storage space Statistics belonging to a Server. */
|
|
1676
|
+
export const storagespaceGetServerStatistics = {
|
|
1677
|
+
path: "/v2/servers/{serverId}/storage-space-statistics",
|
|
1678
|
+
method: "GET",
|
|
1679
|
+
operationId: "storagespace-get-server-statistics",
|
|
1680
|
+
};
|
|
1681
|
+
/** Update a Project's storage space notification threshold. */
|
|
1682
|
+
export const storagespaceReplaceProjectNotificationThreshold = {
|
|
1683
|
+
path: "/v2/projects/{projectId}/storage-space-notification-threshold",
|
|
1684
|
+
method: "PUT",
|
|
1685
|
+
operationId: "storagespace-replace-project-notification-threshold",
|
|
1686
|
+
};
|
|
1687
|
+
/** Update a Server's storage space notification threshold. */
|
|
1688
|
+
export const storagespaceReplaceServerNotificationThreshold = {
|
|
1689
|
+
path: "/v2/servers/{serverId}/storage-space-notification-threshold",
|
|
1690
|
+
method: "PUT",
|
|
1691
|
+
operationId: "storagespace-replace-server-notification-threshold",
|
|
1692
|
+
};
|
|
1669
1693
|
/** Add phone number and start verification process. */
|
|
1670
1694
|
export const userAddPhoneNumber = {
|
|
1671
1695
|
path: "/v2/users/{userId}/phone",
|
|
@@ -2002,27 +2026,3 @@ export const verificationVerifyCompany = {
|
|
|
2002
2026
|
method: "POST",
|
|
2003
2027
|
operationId: "verification-verify-company",
|
|
2004
2028
|
};
|
|
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.76.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[];
|
|
@@ -2228,9 +2229,9 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2228
2229
|
skip?: number | undefined;
|
|
2229
2230
|
} | undefined;
|
|
2230
2231
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServer[]>;
|
|
2231
|
-
/** Get storage space Statistics belonging to a
|
|
2232
|
-
|
|
2233
|
-
|
|
2232
|
+
/** Get storage space Statistics belonging to a Project. */
|
|
2233
|
+
storagespaceGetProjectStatistics: (conf: {
|
|
2234
|
+
projectId: string;
|
|
2234
2235
|
headers?: {
|
|
2235
2236
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2236
2237
|
"x-access-token"?: string | undefined;
|
|
@@ -2245,9 +2246,9 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2245
2246
|
notificationThresholdInBytes?: number | undefined;
|
|
2246
2247
|
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
2247
2248
|
}>;
|
|
2248
|
-
/** Get storage space Statistics belonging to a
|
|
2249
|
-
|
|
2250
|
-
|
|
2249
|
+
/** Get storage space Statistics belonging to a Server. */
|
|
2250
|
+
storagespaceGetServerStatistics: (conf: {
|
|
2251
|
+
serverId: string;
|
|
2251
2252
|
headers?: {
|
|
2252
2253
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2253
2254
|
"x-access-token"?: string | undefined;
|
|
@@ -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[];
|
|
@@ -19299,62 +19301,77 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19299
19301
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19300
19302
|
[x: string]: unknown;
|
|
19301
19303
|
}, 429, "application/json">>>;
|
|
19302
|
-
/**
|
|
19303
|
-
|
|
19304
|
+
/** Get storage space Statistics belonging to a Project. */
|
|
19305
|
+
storagespaceGetProjectStatistics: (request: {
|
|
19304
19306
|
projectId: string;
|
|
19305
|
-
data?: {
|
|
19306
|
-
notificationThresholdInBytes?: number | undefined;
|
|
19307
|
-
} | undefined;
|
|
19308
19307
|
headers?: {
|
|
19309
19308
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19310
19309
|
"x-access-token"?: string | undefined;
|
|
19311
19310
|
} | undefined;
|
|
19312
19311
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19313
|
-
|
|
19314
|
-
|
|
19315
|
-
};
|
|
19312
|
+
headers?: Partial<{
|
|
19313
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19314
|
+
}> | undefined;
|
|
19316
19315
|
} & {
|
|
19317
19316
|
pathParameters: {
|
|
19318
19317
|
projectId: string;
|
|
19319
19318
|
};
|
|
19320
|
-
} & {
|
|
19321
|
-
headers?: Partial<{
|
|
19322
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19323
|
-
}> | undefined;
|
|
19324
19319
|
} & {
|
|
19325
19320
|
headers: {
|
|
19326
19321
|
"x-access-token"?: string | undefined;
|
|
19327
19322
|
} & Partial<{
|
|
19328
19323
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19329
19324
|
}>;
|
|
19330
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
19325
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
19326
|
+
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
19327
|
+
description?: string | undefined;
|
|
19328
|
+
id: string;
|
|
19329
|
+
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
19330
|
+
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
19331
|
+
name: string;
|
|
19332
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19333
|
+
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
19334
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19335
|
+
[x: string]: unknown;
|
|
19336
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19331
19337
|
[x: string]: unknown;
|
|
19332
19338
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19333
19339
|
[x: string]: unknown;
|
|
19340
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19341
|
+
[x: string]: unknown;
|
|
19334
19342
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19335
19343
|
[x: string]: unknown;
|
|
19336
19344
|
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19337
|
-
|
|
19338
|
-
|
|
19339
|
-
};
|
|
19345
|
+
headers?: Partial<{
|
|
19346
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19347
|
+
}> | undefined;
|
|
19340
19348
|
} & {
|
|
19341
19349
|
pathParameters: {
|
|
19342
19350
|
projectId: string;
|
|
19343
19351
|
};
|
|
19344
|
-
} & {
|
|
19345
|
-
headers?: Partial<{
|
|
19346
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19347
|
-
}> | undefined;
|
|
19348
19352
|
} & {
|
|
19349
19353
|
headers: {
|
|
19350
19354
|
"x-access-token"?: string | undefined;
|
|
19351
19355
|
} & Partial<{
|
|
19352
19356
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19353
19357
|
}>;
|
|
19354
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
19358
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
19359
|
+
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
19360
|
+
description?: string | undefined;
|
|
19361
|
+
id: string;
|
|
19362
|
+
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
19363
|
+
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
19364
|
+
name: string;
|
|
19365
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19366
|
+
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
19367
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19368
|
+
[x: string]: unknown;
|
|
19369
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19355
19370
|
[x: string]: unknown;
|
|
19356
19371
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19357
19372
|
[x: string]: unknown;
|
|
19373
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19374
|
+
[x: string]: unknown;
|
|
19358
19375
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19359
19376
|
[x: string]: unknown;
|
|
19360
19377
|
}, 500, "application/json">>>;
|
|
@@ -19432,9 +19449,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19432
19449
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19433
19450
|
[x: string]: unknown;
|
|
19434
19451
|
}, 500, "application/json">>>;
|
|
19435
|
-
/** Update a
|
|
19436
|
-
|
|
19437
|
-
|
|
19452
|
+
/** Update a Project's storage space notification threshold. */
|
|
19453
|
+
storagespaceReplaceProjectNotificationThreshold: (request: {
|
|
19454
|
+
projectId: string;
|
|
19438
19455
|
data?: {
|
|
19439
19456
|
notificationThresholdInBytes?: number | undefined;
|
|
19440
19457
|
} | undefined;
|
|
@@ -19448,7 +19465,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19448
19465
|
};
|
|
19449
19466
|
} & {
|
|
19450
19467
|
pathParameters: {
|
|
19451
|
-
|
|
19468
|
+
projectId: string;
|
|
19452
19469
|
};
|
|
19453
19470
|
} & {
|
|
19454
19471
|
headers?: Partial<{
|
|
@@ -19472,7 +19489,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19472
19489
|
};
|
|
19473
19490
|
} & {
|
|
19474
19491
|
pathParameters: {
|
|
19475
|
-
|
|
19492
|
+
projectId: string;
|
|
19476
19493
|
};
|
|
19477
19494
|
} & {
|
|
19478
19495
|
headers?: Partial<{
|
|
@@ -19491,77 +19508,62 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19491
19508
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19492
19509
|
[x: string]: unknown;
|
|
19493
19510
|
}, 500, "application/json">>>;
|
|
19494
|
-
/**
|
|
19495
|
-
|
|
19496
|
-
|
|
19511
|
+
/** Update a Server's storage space notification threshold. */
|
|
19512
|
+
storagespaceReplaceServerNotificationThreshold: (request: {
|
|
19513
|
+
serverId: string;
|
|
19514
|
+
data?: {
|
|
19515
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19516
|
+
} | undefined;
|
|
19497
19517
|
headers?: {
|
|
19498
19518
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19499
19519
|
"x-access-token"?: string | undefined;
|
|
19500
19520
|
} | undefined;
|
|
19501
19521
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19502
|
-
|
|
19503
|
-
|
|
19504
|
-
}
|
|
19522
|
+
data: {
|
|
19523
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19524
|
+
};
|
|
19505
19525
|
} & {
|
|
19506
19526
|
pathParameters: {
|
|
19507
|
-
|
|
19527
|
+
serverId: string;
|
|
19508
19528
|
};
|
|
19529
|
+
} & {
|
|
19530
|
+
headers?: Partial<{
|
|
19531
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19532
|
+
}> | undefined;
|
|
19509
19533
|
} & {
|
|
19510
19534
|
headers: {
|
|
19511
19535
|
"x-access-token"?: string | undefined;
|
|
19512
19536
|
} & Partial<{
|
|
19513
19537
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19514
19538
|
}>;
|
|
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<{
|
|
19539
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19527
19540
|
[x: string]: unknown;
|
|
19528
19541
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19529
19542
|
[x: string]: unknown;
|
|
19530
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19531
|
-
[x: string]: unknown;
|
|
19532
19543
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19533
19544
|
[x: string]: unknown;
|
|
19534
19545
|
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19535
|
-
|
|
19536
|
-
|
|
19537
|
-
}
|
|
19546
|
+
data: {
|
|
19547
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19548
|
+
};
|
|
19538
19549
|
} & {
|
|
19539
19550
|
pathParameters: {
|
|
19540
|
-
|
|
19551
|
+
serverId: string;
|
|
19541
19552
|
};
|
|
19553
|
+
} & {
|
|
19554
|
+
headers?: Partial<{
|
|
19555
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19556
|
+
}> | undefined;
|
|
19542
19557
|
} & {
|
|
19543
19558
|
headers: {
|
|
19544
19559
|
"x-access-token"?: string | undefined;
|
|
19545
19560
|
} & Partial<{
|
|
19546
19561
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19547
19562
|
}>;
|
|
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<{
|
|
19563
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19560
19564
|
[x: string]: unknown;
|
|
19561
19565
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19562
19566
|
[x: string]: unknown;
|
|
19563
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19564
|
-
[x: string]: unknown;
|
|
19565
19567
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19566
19568
|
[x: string]: unknown;
|
|
19567
19569
|
}, 500, "application/json">>>;
|
|
@@ -559,6 +559,14 @@ export declare const sslGetCertificate: OpenAPIOperation<RequestType<Simplify<nu
|
|
|
559
559
|
export declare const sslReplaceCertificate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateId.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateId.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
560
560
|
/** List Certificates belonging to a Project or an Ingress. */
|
|
561
561
|
export declare const sslListCertificates: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
562
|
+
/** Get storage space Statistics belonging to a Project. */
|
|
563
|
+
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">>;
|
|
564
|
+
/** Get storage space Statistics belonging to a Server. */
|
|
565
|
+
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">>;
|
|
566
|
+
/** Update a Project's storage space notification threshold. */
|
|
567
|
+
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">>;
|
|
568
|
+
/** Update a Server's storage space notification threshold. */
|
|
569
|
+
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">>;
|
|
562
570
|
/** Add phone number and start verification process. */
|
|
563
571
|
export declare const userAddPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
564
572
|
/** Remove phone number. */
|
|
@@ -671,11 +679,3 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
|
|
|
671
679
|
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">>;
|
|
672
680
|
/** Check if a company exists. */
|
|
673
681
|
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">>;
|
|
@@ -1114,6 +1114,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1114
1114
|
type RequestData = InferredRequestData<typeof descriptors.sslListCertificates>;
|
|
1115
1115
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslListCertificates, TStatus>;
|
|
1116
1116
|
}
|
|
1117
|
+
namespace StoragespaceGetProjectStatistics {
|
|
1118
|
+
type RequestData = InferredRequestData<typeof descriptors.storagespaceGetProjectStatistics>;
|
|
1119
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetProjectStatistics, TStatus>;
|
|
1120
|
+
}
|
|
1121
|
+
namespace StoragespaceGetServerStatistics {
|
|
1122
|
+
type RequestData = InferredRequestData<typeof descriptors.storagespaceGetServerStatistics>;
|
|
1123
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetServerStatistics, TStatus>;
|
|
1124
|
+
}
|
|
1125
|
+
namespace StoragespaceReplaceProjectNotificationThreshold {
|
|
1126
|
+
type RequestData = InferredRequestData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold>;
|
|
1127
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold, TStatus>;
|
|
1128
|
+
}
|
|
1129
|
+
namespace StoragespaceReplaceServerNotificationThreshold {
|
|
1130
|
+
type RequestData = InferredRequestData<typeof descriptors.storagespaceReplaceServerNotificationThreshold>;
|
|
1131
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceReplaceServerNotificationThreshold, TStatus>;
|
|
1132
|
+
}
|
|
1117
1133
|
namespace UserAddPhoneNumber {
|
|
1118
1134
|
type RequestData = InferredRequestData<typeof descriptors.userAddPhoneNumber>;
|
|
1119
1135
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userAddPhoneNumber, TStatus>;
|
|
@@ -1338,22 +1354,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1338
1354
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1339
1355
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1340
1356
|
}
|
|
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
|
-
}
|
|
1357
1357
|
}
|
|
1358
1358
|
namespace Components {
|
|
1359
1359
|
namespace Schemas {
|
|
@@ -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.
|
|
@@ -3740,6 +3744,44 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3740
3744
|
organizationalUnit?: string;
|
|
3741
3745
|
state?: string;
|
|
3742
3746
|
}
|
|
3747
|
+
type StoragespaceStatisticsCategoryKind = "webspace" | "projectBackup" | "mailAddress" | "mysqlDatabase" | "redisDatabase" | "containerVolume";
|
|
3748
|
+
interface StoragespaceStatisticsCategory {
|
|
3749
|
+
kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategoryKind;
|
|
3750
|
+
resources?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsResource[];
|
|
3751
|
+
totalUsageInBytes: number;
|
|
3752
|
+
}
|
|
3753
|
+
type StoragespaceStatisticsKind = "server" | "project";
|
|
3754
|
+
interface StoragespaceStatisticsMeta {
|
|
3755
|
+
isExceeding?: boolean;
|
|
3756
|
+
limitInBytes?: number;
|
|
3757
|
+
/**
|
|
3758
|
+
* If true, set notification threshold is used as limit for meta calculations. E.g. for projects with a parent server.
|
|
3759
|
+
*/
|
|
3760
|
+
notificationThresholdUsedAsLimit?: boolean;
|
|
3761
|
+
totalExceedanceInBytes?: number;
|
|
3762
|
+
totalExceedanceInBytesSetAt?: string;
|
|
3763
|
+
totalFreeInBytes?: number;
|
|
3764
|
+
totalFreeInPercentage?: number;
|
|
3765
|
+
totalUsageInBytes: number;
|
|
3766
|
+
totalUsageInPercentage?: number;
|
|
3767
|
+
}
|
|
3768
|
+
interface StoragespaceStatisticsResource {
|
|
3769
|
+
description?: string;
|
|
3770
|
+
id: string;
|
|
3771
|
+
name: string;
|
|
3772
|
+
usageInBytes: number;
|
|
3773
|
+
usageInBytesSetAt: string;
|
|
3774
|
+
}
|
|
3775
|
+
interface StoragespaceStatistics {
|
|
3776
|
+
childStatistics?: MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[];
|
|
3777
|
+
description?: string;
|
|
3778
|
+
id: string;
|
|
3779
|
+
kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
3780
|
+
meta: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
3781
|
+
name: string;
|
|
3782
|
+
notificationThresholdInBytes?: number;
|
|
3783
|
+
statisticCategories?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[];
|
|
3784
|
+
}
|
|
3743
3785
|
interface SignupAccount {
|
|
3744
3786
|
email?: string;
|
|
3745
3787
|
/**
|
|
@@ -3968,44 +4010,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3968
4010
|
name: string;
|
|
3969
4011
|
value: string;
|
|
3970
4012
|
}
|
|
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";
|
|
4009
4013
|
interface CommonsAddress {
|
|
4010
4014
|
street: string;
|
|
4011
4015
|
houseNumber: string;
|
|
@@ -17709,22 +17713,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17709
17713
|
}
|
|
17710
17714
|
}
|
|
17711
17715
|
}
|
|
17712
|
-
namespace
|
|
17713
|
-
namespace
|
|
17716
|
+
namespace V2ProjectsProjectIdStorageSpaceStatistics {
|
|
17717
|
+
namespace Get {
|
|
17714
17718
|
namespace Parameters {
|
|
17715
17719
|
type Path = {
|
|
17716
|
-
|
|
17720
|
+
projectId: string;
|
|
17717
17721
|
};
|
|
17718
|
-
interface RequestBody {
|
|
17719
|
-
phoneNumber: string;
|
|
17720
|
-
}
|
|
17721
17722
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17722
17723
|
type Query = {};
|
|
17723
17724
|
}
|
|
17724
17725
|
namespace Responses {
|
|
17725
|
-
namespace $
|
|
17726
|
+
namespace $200 {
|
|
17726
17727
|
namespace Content {
|
|
17727
|
-
type
|
|
17728
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.StoragespaceStatistics;
|
|
17728
17729
|
}
|
|
17729
17730
|
}
|
|
17730
17731
|
namespace $400 {
|
|
@@ -17734,7 +17735,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17734
17735
|
}
|
|
17735
17736
|
}
|
|
17736
17737
|
}
|
|
17737
|
-
namespace $
|
|
17738
|
+
namespace $403 {
|
|
17739
|
+
namespace Content {
|
|
17740
|
+
interface ApplicationJson {
|
|
17741
|
+
[k: string]: unknown;
|
|
17742
|
+
}
|
|
17743
|
+
}
|
|
17744
|
+
}
|
|
17745
|
+
namespace $404 {
|
|
17738
17746
|
namespace Content {
|
|
17739
17747
|
interface ApplicationJson {
|
|
17740
17748
|
[k: string]: unknown;
|
|
@@ -17748,6 +17756,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17748
17756
|
}
|
|
17749
17757
|
}
|
|
17750
17758
|
}
|
|
17759
|
+
namespace $500 {
|
|
17760
|
+
namespace Content {
|
|
17761
|
+
interface ApplicationJson {
|
|
17762
|
+
[k: string]: unknown;
|
|
17763
|
+
}
|
|
17764
|
+
}
|
|
17765
|
+
}
|
|
17751
17766
|
namespace Default {
|
|
17752
17767
|
namespace Content {
|
|
17753
17768
|
interface ApplicationJson {
|
|
@@ -17757,18 +17772,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17757
17772
|
}
|
|
17758
17773
|
}
|
|
17759
17774
|
}
|
|
17760
|
-
|
|
17775
|
+
}
|
|
17776
|
+
namespace V2ServersServerIdStorageSpaceStatistics {
|
|
17777
|
+
namespace Get {
|
|
17761
17778
|
namespace Parameters {
|
|
17762
17779
|
type Path = {
|
|
17763
|
-
|
|
17780
|
+
serverId: string;
|
|
17764
17781
|
};
|
|
17765
17782
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17766
17783
|
type Query = {};
|
|
17767
17784
|
}
|
|
17768
17785
|
namespace Responses {
|
|
17769
|
-
namespace $
|
|
17786
|
+
namespace $200 {
|
|
17770
17787
|
namespace Content {
|
|
17771
|
-
type
|
|
17788
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.StoragespaceStatistics;
|
|
17772
17789
|
}
|
|
17773
17790
|
}
|
|
17774
17791
|
namespace $400 {
|
|
@@ -17778,7 +17795,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17778
17795
|
}
|
|
17779
17796
|
}
|
|
17780
17797
|
}
|
|
17781
|
-
namespace $
|
|
17798
|
+
namespace $403 {
|
|
17799
|
+
namespace Content {
|
|
17800
|
+
interface ApplicationJson {
|
|
17801
|
+
[k: string]: unknown;
|
|
17802
|
+
}
|
|
17803
|
+
}
|
|
17804
|
+
}
|
|
17805
|
+
namespace $404 {
|
|
17782
17806
|
namespace Content {
|
|
17783
17807
|
interface ApplicationJson {
|
|
17784
17808
|
[k: string]: unknown;
|
|
@@ -17792,6 +17816,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17792
17816
|
}
|
|
17793
17817
|
}
|
|
17794
17818
|
}
|
|
17819
|
+
namespace $500 {
|
|
17820
|
+
namespace Content {
|
|
17821
|
+
interface ApplicationJson {
|
|
17822
|
+
[k: string]: unknown;
|
|
17823
|
+
}
|
|
17824
|
+
}
|
|
17825
|
+
}
|
|
17795
17826
|
namespace Default {
|
|
17796
17827
|
namespace Content {
|
|
17797
17828
|
interface ApplicationJson {
|
|
@@ -17802,60 +17833,39 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17802
17833
|
}
|
|
17803
17834
|
}
|
|
17804
17835
|
}
|
|
17805
|
-
namespace
|
|
17806
|
-
|
|
17807
|
-
namespace Post {
|
|
17836
|
+
namespace V2ProjectsProjectIdStorageSpaceNotificationThreshold {
|
|
17837
|
+
namespace Put {
|
|
17808
17838
|
namespace Parameters {
|
|
17809
|
-
type Path = {
|
|
17839
|
+
type Path = {
|
|
17840
|
+
projectId: string;
|
|
17841
|
+
};
|
|
17810
17842
|
interface RequestBody {
|
|
17811
|
-
|
|
17812
|
-
* The email of the user.
|
|
17813
|
-
*/
|
|
17814
|
-
email: string;
|
|
17815
|
-
/**
|
|
17816
|
-
* The second factor - otp code or recovery code.
|
|
17817
|
-
*/
|
|
17818
|
-
multiFactorCode: string;
|
|
17819
|
-
/**
|
|
17820
|
-
* The password of the user.
|
|
17821
|
-
*/
|
|
17822
|
-
password: string;
|
|
17843
|
+
notificationThresholdInBytes?: number;
|
|
17823
17844
|
}
|
|
17824
|
-
type Header = {};
|
|
17845
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17825
17846
|
type Query = {};
|
|
17826
17847
|
}
|
|
17827
17848
|
namespace Responses {
|
|
17828
|
-
namespace $
|
|
17849
|
+
namespace $204 {
|
|
17829
17850
|
namespace Content {
|
|
17830
|
-
|
|
17831
|
-
/**
|
|
17832
|
-
* The expiration date of the token.
|
|
17833
|
-
*/
|
|
17834
|
-
expires: string;
|
|
17835
|
-
/**
|
|
17836
|
-
* Refresh token to refresh your access token even after it has expired.
|
|
17837
|
-
*/
|
|
17838
|
-
refreshToken: string;
|
|
17839
|
-
/**
|
|
17840
|
-
* Public token to identify yourself against the api gateway.
|
|
17841
|
-
*/
|
|
17842
|
-
token: string;
|
|
17843
|
-
}
|
|
17851
|
+
type Empty = unknown;
|
|
17844
17852
|
}
|
|
17845
17853
|
}
|
|
17846
|
-
namespace $
|
|
17854
|
+
namespace $403 {
|
|
17847
17855
|
namespace Content {
|
|
17848
|
-
|
|
17856
|
+
interface ApplicationJson {
|
|
17857
|
+
[k: string]: unknown;
|
|
17858
|
+
}
|
|
17849
17859
|
}
|
|
17850
17860
|
}
|
|
17851
|
-
namespace $
|
|
17861
|
+
namespace $429 {
|
|
17852
17862
|
namespace Content {
|
|
17853
|
-
|
|
17854
|
-
|
|
17855
|
-
}
|
|
17863
|
+
interface ApplicationJson {
|
|
17864
|
+
[k: string]: unknown;
|
|
17865
|
+
}
|
|
17856
17866
|
}
|
|
17857
17867
|
}
|
|
17858
|
-
namespace $
|
|
17868
|
+
namespace $500 {
|
|
17859
17869
|
namespace Content {
|
|
17860
17870
|
interface ApplicationJson {
|
|
17861
17871
|
[k: string]: unknown;
|
|
@@ -17872,34 +17882,246 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17872
17882
|
}
|
|
17873
17883
|
}
|
|
17874
17884
|
}
|
|
17875
|
-
namespace
|
|
17876
|
-
|
|
17877
|
-
namespace Post {
|
|
17885
|
+
namespace V2ServersServerIdStorageSpaceNotificationThreshold {
|
|
17886
|
+
namespace Put {
|
|
17878
17887
|
namespace Parameters {
|
|
17879
|
-
type Path = {
|
|
17888
|
+
type Path = {
|
|
17889
|
+
serverId: string;
|
|
17890
|
+
};
|
|
17880
17891
|
interface RequestBody {
|
|
17881
|
-
|
|
17882
|
-
* The users Email-Address.
|
|
17883
|
-
*/
|
|
17884
|
-
email: string;
|
|
17885
|
-
/**
|
|
17886
|
-
* Password of the User.
|
|
17887
|
-
*/
|
|
17888
|
-
password: string;
|
|
17892
|
+
notificationThresholdInBytes?: number;
|
|
17889
17893
|
}
|
|
17890
|
-
type Header = {};
|
|
17894
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17891
17895
|
type Query = {};
|
|
17892
17896
|
}
|
|
17893
17897
|
namespace Responses {
|
|
17894
|
-
namespace $
|
|
17898
|
+
namespace $204 {
|
|
17899
|
+
namespace Content {
|
|
17900
|
+
type Empty = unknown;
|
|
17901
|
+
}
|
|
17902
|
+
}
|
|
17903
|
+
namespace $403 {
|
|
17895
17904
|
namespace Content {
|
|
17896
17905
|
interface ApplicationJson {
|
|
17897
|
-
|
|
17898
|
-
|
|
17899
|
-
|
|
17900
|
-
|
|
17901
|
-
|
|
17902
|
-
|
|
17906
|
+
[k: string]: unknown;
|
|
17907
|
+
}
|
|
17908
|
+
}
|
|
17909
|
+
}
|
|
17910
|
+
namespace $429 {
|
|
17911
|
+
namespace Content {
|
|
17912
|
+
interface ApplicationJson {
|
|
17913
|
+
[k: string]: unknown;
|
|
17914
|
+
}
|
|
17915
|
+
}
|
|
17916
|
+
}
|
|
17917
|
+
namespace $500 {
|
|
17918
|
+
namespace Content {
|
|
17919
|
+
interface ApplicationJson {
|
|
17920
|
+
[k: string]: unknown;
|
|
17921
|
+
}
|
|
17922
|
+
}
|
|
17923
|
+
}
|
|
17924
|
+
namespace Default {
|
|
17925
|
+
namespace Content {
|
|
17926
|
+
interface ApplicationJson {
|
|
17927
|
+
[k: string]: unknown;
|
|
17928
|
+
}
|
|
17929
|
+
}
|
|
17930
|
+
}
|
|
17931
|
+
}
|
|
17932
|
+
}
|
|
17933
|
+
}
|
|
17934
|
+
namespace V2UsersUserIdPhone {
|
|
17935
|
+
namespace Post {
|
|
17936
|
+
namespace Parameters {
|
|
17937
|
+
type Path = {
|
|
17938
|
+
userId: string;
|
|
17939
|
+
};
|
|
17940
|
+
interface RequestBody {
|
|
17941
|
+
phoneNumber: string;
|
|
17942
|
+
}
|
|
17943
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17944
|
+
type Query = {};
|
|
17945
|
+
}
|
|
17946
|
+
namespace Responses {
|
|
17947
|
+
namespace $204 {
|
|
17948
|
+
namespace Content {
|
|
17949
|
+
type Empty = unknown;
|
|
17950
|
+
}
|
|
17951
|
+
}
|
|
17952
|
+
namespace $400 {
|
|
17953
|
+
namespace Content {
|
|
17954
|
+
interface ApplicationJson {
|
|
17955
|
+
[k: string]: unknown;
|
|
17956
|
+
}
|
|
17957
|
+
}
|
|
17958
|
+
}
|
|
17959
|
+
namespace $409 {
|
|
17960
|
+
namespace Content {
|
|
17961
|
+
interface ApplicationJson {
|
|
17962
|
+
[k: string]: unknown;
|
|
17963
|
+
}
|
|
17964
|
+
}
|
|
17965
|
+
}
|
|
17966
|
+
namespace $429 {
|
|
17967
|
+
namespace Content {
|
|
17968
|
+
interface ApplicationJson {
|
|
17969
|
+
[k: string]: unknown;
|
|
17970
|
+
}
|
|
17971
|
+
}
|
|
17972
|
+
}
|
|
17973
|
+
namespace Default {
|
|
17974
|
+
namespace Content {
|
|
17975
|
+
interface ApplicationJson {
|
|
17976
|
+
[k: string]: unknown;
|
|
17977
|
+
}
|
|
17978
|
+
}
|
|
17979
|
+
}
|
|
17980
|
+
}
|
|
17981
|
+
}
|
|
17982
|
+
namespace Delete {
|
|
17983
|
+
namespace Parameters {
|
|
17984
|
+
type Path = {
|
|
17985
|
+
userId: string;
|
|
17986
|
+
};
|
|
17987
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17988
|
+
type Query = {};
|
|
17989
|
+
}
|
|
17990
|
+
namespace Responses {
|
|
17991
|
+
namespace $204 {
|
|
17992
|
+
namespace Content {
|
|
17993
|
+
type Empty = unknown;
|
|
17994
|
+
}
|
|
17995
|
+
}
|
|
17996
|
+
namespace $400 {
|
|
17997
|
+
namespace Content {
|
|
17998
|
+
interface ApplicationJson {
|
|
17999
|
+
[k: string]: unknown;
|
|
18000
|
+
}
|
|
18001
|
+
}
|
|
18002
|
+
}
|
|
18003
|
+
namespace $412 {
|
|
18004
|
+
namespace Content {
|
|
18005
|
+
interface ApplicationJson {
|
|
18006
|
+
[k: string]: unknown;
|
|
18007
|
+
}
|
|
18008
|
+
}
|
|
18009
|
+
}
|
|
18010
|
+
namespace $429 {
|
|
18011
|
+
namespace Content {
|
|
18012
|
+
interface ApplicationJson {
|
|
18013
|
+
[k: string]: unknown;
|
|
18014
|
+
}
|
|
18015
|
+
}
|
|
18016
|
+
}
|
|
18017
|
+
namespace Default {
|
|
18018
|
+
namespace Content {
|
|
18019
|
+
interface ApplicationJson {
|
|
18020
|
+
[k: string]: unknown;
|
|
18021
|
+
}
|
|
18022
|
+
}
|
|
18023
|
+
}
|
|
18024
|
+
}
|
|
18025
|
+
}
|
|
18026
|
+
}
|
|
18027
|
+
namespace V2SignupAuthenticationMfa { }
|
|
18028
|
+
namespace V2AuthenticateMfa {
|
|
18029
|
+
namespace Post {
|
|
18030
|
+
namespace Parameters {
|
|
18031
|
+
type Path = {};
|
|
18032
|
+
interface RequestBody {
|
|
18033
|
+
/**
|
|
18034
|
+
* The email of the user.
|
|
18035
|
+
*/
|
|
18036
|
+
email: string;
|
|
18037
|
+
/**
|
|
18038
|
+
* The second factor - otp code or recovery code.
|
|
18039
|
+
*/
|
|
18040
|
+
multiFactorCode: string;
|
|
18041
|
+
/**
|
|
18042
|
+
* The password of the user.
|
|
18043
|
+
*/
|
|
18044
|
+
password: string;
|
|
18045
|
+
}
|
|
18046
|
+
type Header = {};
|
|
18047
|
+
type Query = {};
|
|
18048
|
+
}
|
|
18049
|
+
namespace Responses {
|
|
18050
|
+
namespace $200 {
|
|
18051
|
+
namespace Content {
|
|
18052
|
+
interface ApplicationJson {
|
|
18053
|
+
/**
|
|
18054
|
+
* The expiration date of the token.
|
|
18055
|
+
*/
|
|
18056
|
+
expires: string;
|
|
18057
|
+
/**
|
|
18058
|
+
* Refresh token to refresh your access token even after it has expired.
|
|
18059
|
+
*/
|
|
18060
|
+
refreshToken: string;
|
|
18061
|
+
/**
|
|
18062
|
+
* Public token to identify yourself against the api gateway.
|
|
18063
|
+
*/
|
|
18064
|
+
token: string;
|
|
18065
|
+
}
|
|
18066
|
+
}
|
|
18067
|
+
}
|
|
18068
|
+
namespace $400 {
|
|
18069
|
+
namespace Content {
|
|
18070
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
18071
|
+
}
|
|
18072
|
+
}
|
|
18073
|
+
namespace $408 {
|
|
18074
|
+
namespace Content {
|
|
18075
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SignupDomainError & {
|
|
18076
|
+
name?: "FirstAuthenticationFactorExpired";
|
|
18077
|
+
};
|
|
18078
|
+
}
|
|
18079
|
+
}
|
|
18080
|
+
namespace $429 {
|
|
18081
|
+
namespace Content {
|
|
18082
|
+
interface ApplicationJson {
|
|
18083
|
+
[k: string]: unknown;
|
|
18084
|
+
}
|
|
18085
|
+
}
|
|
18086
|
+
}
|
|
18087
|
+
namespace Default {
|
|
18088
|
+
namespace Content {
|
|
18089
|
+
interface ApplicationJson {
|
|
18090
|
+
[k: string]: unknown;
|
|
18091
|
+
}
|
|
18092
|
+
}
|
|
18093
|
+
}
|
|
18094
|
+
}
|
|
18095
|
+
}
|
|
18096
|
+
}
|
|
18097
|
+
namespace V2SignupAuthentication { }
|
|
18098
|
+
namespace V2Authenticate {
|
|
18099
|
+
namespace Post {
|
|
18100
|
+
namespace Parameters {
|
|
18101
|
+
type Path = {};
|
|
18102
|
+
interface RequestBody {
|
|
18103
|
+
/**
|
|
18104
|
+
* The users Email-Address.
|
|
18105
|
+
*/
|
|
18106
|
+
email: string;
|
|
18107
|
+
/**
|
|
18108
|
+
* Password of the User.
|
|
18109
|
+
*/
|
|
18110
|
+
password: string;
|
|
18111
|
+
}
|
|
18112
|
+
type Header = {};
|
|
18113
|
+
type Query = {};
|
|
18114
|
+
}
|
|
18115
|
+
namespace Responses {
|
|
18116
|
+
namespace $200 {
|
|
18117
|
+
namespace Content {
|
|
18118
|
+
interface ApplicationJson {
|
|
18119
|
+
/**
|
|
18120
|
+
* The expiration date of the token.
|
|
18121
|
+
*/
|
|
18122
|
+
expires: string;
|
|
18123
|
+
/**
|
|
18124
|
+
* Refresh token to refresh your access token even after it has expired.
|
|
17903
18125
|
*/
|
|
17904
18126
|
refreshToken: string;
|
|
17905
18127
|
/**
|
|
@@ -20271,223 +20493,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20271
20493
|
}
|
|
20272
20494
|
}
|
|
20273
20495
|
}
|
|
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
|
-
}
|
|
20492
20496
|
}
|
|
20493
20497
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.76.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.77.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": "b751d2938063075db946f1849fa145f106cd3afd"
|
|
84
84
|
}
|