@mittwald/api-client 4.76.0 → 4.78.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 +6 -6
- package/dist/types/generated/v2/client.d.ts +73 -65
- package/dist/types/generated/v2/descriptors.d.ts +10 -10
- package/dist/types/generated/v2/types.d.ts +353 -339
- 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.77.0';
|
|
@@ -2229,9 +2229,9 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2229
2229
|
skip?: number | undefined;
|
|
2230
2230
|
} | undefined;
|
|
2231
2231
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServer[]>;
|
|
2232
|
-
/** Get storage space Statistics belonging to a
|
|
2233
|
-
|
|
2234
|
-
|
|
2232
|
+
/** Get storage space Statistics belonging to a Project. */
|
|
2233
|
+
storagespaceGetProjectStatistics: (conf: {
|
|
2234
|
+
projectId: string;
|
|
2235
2235
|
headers?: {
|
|
2236
2236
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2237
2237
|
"x-access-token"?: string | undefined;
|
|
@@ -2246,9 +2246,9 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2246
2246
|
notificationThresholdInBytes?: number | undefined;
|
|
2247
2247
|
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
2248
2248
|
}>;
|
|
2249
|
-
/** Get storage space Statistics belonging to a
|
|
2250
|
-
|
|
2251
|
-
|
|
2249
|
+
/** Get storage space Statistics belonging to a Server. */
|
|
2250
|
+
storagespaceGetServerStatistics: (conf: {
|
|
2251
|
+
serverId: string;
|
|
2252
2252
|
headers?: {
|
|
2253
2253
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2254
2254
|
"x-access-token"?: string | undefined;
|
|
@@ -10910,6 +10910,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10910
10910
|
[x: string]: unknown;
|
|
10911
10911
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10912
10912
|
[x: string]: unknown;
|
|
10913
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10914
|
+
[x: string]: unknown;
|
|
10913
10915
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
10914
10916
|
headers?: Partial<{
|
|
10915
10917
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -10938,6 +10940,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10938
10940
|
[x: string]: unknown;
|
|
10939
10941
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10940
10942
|
[x: string]: unknown;
|
|
10943
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10944
|
+
[x: string]: unknown;
|
|
10941
10945
|
}, 429, "application/json">>>;
|
|
10942
10946
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
10943
10947
|
getLatestScreenshot: (request: {
|
|
@@ -11079,6 +11083,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11079
11083
|
[x: string]: unknown;
|
|
11080
11084
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11081
11085
|
[x: string]: unknown;
|
|
11086
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11087
|
+
[x: string]: unknown;
|
|
11082
11088
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
11083
11089
|
headers?: Partial<{
|
|
11084
11090
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -11099,6 +11105,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11099
11105
|
[x: string]: unknown;
|
|
11100
11106
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11101
11107
|
[x: string]: unknown;
|
|
11108
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11109
|
+
[x: string]: unknown;
|
|
11102
11110
|
}, 429, "application/json">>>;
|
|
11103
11111
|
/** Suggest a list of domains based on a prompt using AI. */
|
|
11104
11112
|
suggest: (request: {
|
|
@@ -19301,62 +19309,77 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19301
19309
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19302
19310
|
[x: string]: unknown;
|
|
19303
19311
|
}, 429, "application/json">>>;
|
|
19304
|
-
/**
|
|
19305
|
-
|
|
19312
|
+
/** Get storage space Statistics belonging to a Project. */
|
|
19313
|
+
storagespaceGetProjectStatistics: (request: {
|
|
19306
19314
|
projectId: string;
|
|
19307
|
-
data?: {
|
|
19308
|
-
notificationThresholdInBytes?: number | undefined;
|
|
19309
|
-
} | undefined;
|
|
19310
19315
|
headers?: {
|
|
19311
19316
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19312
19317
|
"x-access-token"?: string | undefined;
|
|
19313
19318
|
} | undefined;
|
|
19314
19319
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19315
|
-
|
|
19316
|
-
|
|
19317
|
-
};
|
|
19320
|
+
headers?: Partial<{
|
|
19321
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19322
|
+
}> | undefined;
|
|
19318
19323
|
} & {
|
|
19319
19324
|
pathParameters: {
|
|
19320
19325
|
projectId: string;
|
|
19321
19326
|
};
|
|
19322
|
-
} & {
|
|
19323
|
-
headers?: Partial<{
|
|
19324
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19325
|
-
}> | undefined;
|
|
19326
19327
|
} & {
|
|
19327
19328
|
headers: {
|
|
19328
19329
|
"x-access-token"?: string | undefined;
|
|
19329
19330
|
} & Partial<{
|
|
19330
19331
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19331
19332
|
}>;
|
|
19332
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
19333
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
19334
|
+
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
19335
|
+
description?: string | undefined;
|
|
19336
|
+
id: string;
|
|
19337
|
+
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
19338
|
+
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
19339
|
+
name: string;
|
|
19340
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19341
|
+
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
19342
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19343
|
+
[x: string]: unknown;
|
|
19344
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19333
19345
|
[x: string]: unknown;
|
|
19334
19346
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19335
19347
|
[x: string]: unknown;
|
|
19348
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19349
|
+
[x: string]: unknown;
|
|
19336
19350
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19337
19351
|
[x: string]: unknown;
|
|
19338
19352
|
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19339
|
-
|
|
19340
|
-
|
|
19341
|
-
};
|
|
19353
|
+
headers?: Partial<{
|
|
19354
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19355
|
+
}> | undefined;
|
|
19342
19356
|
} & {
|
|
19343
19357
|
pathParameters: {
|
|
19344
19358
|
projectId: string;
|
|
19345
19359
|
};
|
|
19346
|
-
} & {
|
|
19347
|
-
headers?: Partial<{
|
|
19348
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19349
|
-
}> | undefined;
|
|
19350
19360
|
} & {
|
|
19351
19361
|
headers: {
|
|
19352
19362
|
"x-access-token"?: string | undefined;
|
|
19353
19363
|
} & Partial<{
|
|
19354
19364
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19355
19365
|
}>;
|
|
19356
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
19366
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
19367
|
+
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
19368
|
+
description?: string | undefined;
|
|
19369
|
+
id: string;
|
|
19370
|
+
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
19371
|
+
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
19372
|
+
name: string;
|
|
19373
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19374
|
+
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
19375
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19376
|
+
[x: string]: unknown;
|
|
19377
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19357
19378
|
[x: string]: unknown;
|
|
19358
19379
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19359
19380
|
[x: string]: unknown;
|
|
19381
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19382
|
+
[x: string]: unknown;
|
|
19360
19383
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19361
19384
|
[x: string]: unknown;
|
|
19362
19385
|
}, 500, "application/json">>>;
|
|
@@ -19434,9 +19457,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19434
19457
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19435
19458
|
[x: string]: unknown;
|
|
19436
19459
|
}, 500, "application/json">>>;
|
|
19437
|
-
/** Update a
|
|
19438
|
-
|
|
19439
|
-
|
|
19460
|
+
/** Update a Project's storage space notification threshold. */
|
|
19461
|
+
storagespaceReplaceProjectNotificationThreshold: (request: {
|
|
19462
|
+
projectId: string;
|
|
19440
19463
|
data?: {
|
|
19441
19464
|
notificationThresholdInBytes?: number | undefined;
|
|
19442
19465
|
} | undefined;
|
|
@@ -19450,7 +19473,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19450
19473
|
};
|
|
19451
19474
|
} & {
|
|
19452
19475
|
pathParameters: {
|
|
19453
|
-
|
|
19476
|
+
projectId: string;
|
|
19454
19477
|
};
|
|
19455
19478
|
} & {
|
|
19456
19479
|
headers?: Partial<{
|
|
@@ -19474,7 +19497,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19474
19497
|
};
|
|
19475
19498
|
} & {
|
|
19476
19499
|
pathParameters: {
|
|
19477
|
-
|
|
19500
|
+
projectId: string;
|
|
19478
19501
|
};
|
|
19479
19502
|
} & {
|
|
19480
19503
|
headers?: Partial<{
|
|
@@ -19493,77 +19516,62 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19493
19516
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19494
19517
|
[x: string]: unknown;
|
|
19495
19518
|
}, 500, "application/json">>>;
|
|
19496
|
-
/**
|
|
19497
|
-
|
|
19498
|
-
|
|
19519
|
+
/** Update a Server's storage space notification threshold. */
|
|
19520
|
+
storagespaceReplaceServerNotificationThreshold: (request: {
|
|
19521
|
+
serverId: string;
|
|
19522
|
+
data?: {
|
|
19523
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19524
|
+
} | undefined;
|
|
19499
19525
|
headers?: {
|
|
19500
19526
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19501
19527
|
"x-access-token"?: string | undefined;
|
|
19502
19528
|
} | undefined;
|
|
19503
19529
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19504
|
-
|
|
19505
|
-
|
|
19506
|
-
}
|
|
19530
|
+
data: {
|
|
19531
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19532
|
+
};
|
|
19507
19533
|
} & {
|
|
19508
19534
|
pathParameters: {
|
|
19509
|
-
|
|
19535
|
+
serverId: string;
|
|
19510
19536
|
};
|
|
19537
|
+
} & {
|
|
19538
|
+
headers?: Partial<{
|
|
19539
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19540
|
+
}> | undefined;
|
|
19511
19541
|
} & {
|
|
19512
19542
|
headers: {
|
|
19513
19543
|
"x-access-token"?: string | undefined;
|
|
19514
19544
|
} & Partial<{
|
|
19515
19545
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19516
19546
|
}>;
|
|
19517
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
19518
|
-
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
19519
|
-
description?: string | undefined;
|
|
19520
|
-
id: string;
|
|
19521
|
-
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
19522
|
-
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
19523
|
-
name: string;
|
|
19524
|
-
notificationThresholdInBytes?: number | undefined;
|
|
19525
|
-
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
19526
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19527
|
-
[x: string]: unknown;
|
|
19528
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19547
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19529
19548
|
[x: string]: unknown;
|
|
19530
19549
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19531
19550
|
[x: string]: unknown;
|
|
19532
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19533
|
-
[x: string]: unknown;
|
|
19534
19551
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19535
19552
|
[x: string]: unknown;
|
|
19536
19553
|
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19537
|
-
|
|
19538
|
-
|
|
19539
|
-
}
|
|
19554
|
+
data: {
|
|
19555
|
+
notificationThresholdInBytes?: number | undefined;
|
|
19556
|
+
};
|
|
19540
19557
|
} & {
|
|
19541
19558
|
pathParameters: {
|
|
19542
|
-
|
|
19559
|
+
serverId: string;
|
|
19543
19560
|
};
|
|
19561
|
+
} & {
|
|
19562
|
+
headers?: Partial<{
|
|
19563
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19564
|
+
}> | undefined;
|
|
19544
19565
|
} & {
|
|
19545
19566
|
headers: {
|
|
19546
19567
|
"x-access-token"?: string | undefined;
|
|
19547
19568
|
} & Partial<{
|
|
19548
19569
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19549
19570
|
}>;
|
|
19550
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
19551
|
-
childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
|
|
19552
|
-
description?: string | undefined;
|
|
19553
|
-
id: string;
|
|
19554
|
-
kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
19555
|
-
meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
19556
|
-
name: string;
|
|
19557
|
-
notificationThresholdInBytes?: number | undefined;
|
|
19558
|
-
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
19559
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19560
|
-
[x: string]: unknown;
|
|
19561
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19571
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19562
19572
|
[x: string]: unknown;
|
|
19563
19573
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19564
19574
|
[x: string]: unknown;
|
|
19565
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19566
|
-
[x: string]: unknown;
|
|
19567
19575
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19568
19576
|
[x: string]: unknown;
|
|
19569
19577
|
}, 500, "application/json">>>;
|
|
@@ -286,7 +286,7 @@ export declare const domainUpdateDomainNameservers: OpenAPIOperation<RequestType
|
|
|
286
286
|
/** Get a Domain. */
|
|
287
287
|
export declare const domainGetDomain: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
288
288
|
/** Delete a Domain. */
|
|
289
|
-
export declare const domainDeleteDomain: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
289
|
+
export declare const domainDeleteDomain: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
290
290
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
291
291
|
export declare const domainGetLatestScreenshot: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
292
292
|
/** List the contact schemas for a TLD. */
|
|
@@ -294,7 +294,7 @@ export declare const domainListTldContactSchemas: OpenAPIOperation<RequestType<S
|
|
|
294
294
|
/** List TLDs. */
|
|
295
295
|
export declare const domainListTlds: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainTlds.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainTlds.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainTlds.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainTlds.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainTlds.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainTlds.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
296
296
|
/** Resend a Domain email. */
|
|
297
|
-
export declare const domainResendDomainEmail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
297
|
+
export declare const domainResendDomainEmail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
298
298
|
/** Suggest a list of domains based on a prompt using AI. */
|
|
299
299
|
export declare const domainSuggest: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainSuggestions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainSuggestions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainSuggestions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainSuggestions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainSuggestions.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainSuggestions.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainSuggestions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainSuggestions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
300
300
|
/** Update the auth code of a Domain. */
|
|
@@ -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">>;
|