@mittwald/api-client 4.242.3 → 4.244.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.js +6 -2
- package/dist/esm/generated/v2/descriptors.js +18 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +4 -3
- package/dist/types/generated/v2/client.d.ts +180 -79
- package/dist/types/generated/v2/descriptors.d.ts +6 -2
- package/dist/types/generated/v2/types.d.ts +147 -58
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -433,6 +433,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
433
433
|
};
|
|
434
434
|
/** The database API allows you to manage your databases, like MySQL and Redis databases. */
|
|
435
435
|
database = {
|
|
436
|
+
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
437
|
+
copyMysqlDatabase: this.requestFunctionFactory(descriptors.databaseCopyMysqlDatabase),
|
|
436
438
|
/** List MySQLDatabases belonging to a Project. */
|
|
437
439
|
listMysqlDatabases: this.requestFunctionFactory(descriptors.databaseListMysqlDatabases),
|
|
438
440
|
/** Create a MySQLDatabase with a MySQLUser. */
|
|
@@ -481,8 +483,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
481
483
|
updateRedisDatabaseConfiguration: this.requestFunctionFactory(descriptors.databaseUpdateRedisDatabaseConfiguration),
|
|
482
484
|
/** Update a RedisDatabase's description. */
|
|
483
485
|
updateRedisDatabaseDescription: this.requestFunctionFactory(descriptors.databaseUpdateRedisDatabaseDescription),
|
|
484
|
-
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
485
|
-
copyMysqlDatabase: this.requestFunctionFactory(descriptors.databaseCopyMysqlDatabase),
|
|
486
486
|
};
|
|
487
487
|
/** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
|
|
488
488
|
domain = {
|
|
@@ -510,6 +510,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
510
510
|
dnsUpdateRecordSet: this.requestFunctionFactory(descriptors.dnsUpdateRecordSet),
|
|
511
511
|
/** Abort a Domain declaration. */
|
|
512
512
|
abortDomainDeclaration: this.requestFunctionFactory(descriptors.domainAbortDomainDeclaration),
|
|
513
|
+
/** Create a scheduled deletion of a Domain. */
|
|
514
|
+
createScheduledDeletion: this.requestFunctionFactory(descriptors.domainCreateScheduledDeletion),
|
|
515
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
516
|
+
cancelScheduledDeletion: this.requestFunctionFactory(descriptors.domainCancelScheduledDeletion),
|
|
513
517
|
/** Check if a Domain is available to register. */
|
|
514
518
|
checkDomainRegistrability: this.requestFunctionFactory(descriptors.domainCheckDomainRegistrability),
|
|
515
519
|
/** Check if a Domain is available to transfer. */
|
|
@@ -856,6 +856,12 @@ export const customerResendCustomerInviteMail = {
|
|
|
856
856
|
method: "POST",
|
|
857
857
|
operationId: "customer-resend-customer-invite-mail",
|
|
858
858
|
};
|
|
859
|
+
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
860
|
+
export const databaseCopyMysqlDatabase = {
|
|
861
|
+
path: "/v2/mysql-databases/{mysqlDatabaseId}/actions/copy",
|
|
862
|
+
method: "POST",
|
|
863
|
+
operationId: "database-copy-mysql-database",
|
|
864
|
+
};
|
|
859
865
|
/** List MySQLDatabases belonging to a Project. */
|
|
860
866
|
export const databaseListMysqlDatabases = {
|
|
861
867
|
path: "/v2/projects/{projectId}/mysql-databases",
|
|
@@ -1114,6 +1120,18 @@ export const domainAbortDomainDeclaration = {
|
|
|
1114
1120
|
method: "DELETE",
|
|
1115
1121
|
operationId: "domain-abort-domain-declaration",
|
|
1116
1122
|
};
|
|
1123
|
+
/** Create a scheduled deletion of a Domain. */
|
|
1124
|
+
export const domainCreateScheduledDeletion = {
|
|
1125
|
+
path: "/v2/domains/{domainId}/scheduled-deletion",
|
|
1126
|
+
method: "POST",
|
|
1127
|
+
operationId: "domain-create-scheduled-deletion",
|
|
1128
|
+
};
|
|
1129
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
1130
|
+
export const domainCancelScheduledDeletion = {
|
|
1131
|
+
path: "/v2/domains/{domainId}/scheduled-deletion",
|
|
1132
|
+
method: "DELETE",
|
|
1133
|
+
operationId: "domain-cancel-scheduled-deletion",
|
|
1134
|
+
};
|
|
1117
1135
|
/** Check if a Domain is available to register. */
|
|
1118
1136
|
export const domainCheckDomainRegistrability = {
|
|
1119
1137
|
path: "/v2/domain-registrable",
|
|
@@ -2572,9 +2590,3 @@ export const verificationVerifyCompany = {
|
|
|
2572
2590
|
method: "POST",
|
|
2573
2591
|
operationId: "verification-verify-company",
|
|
2574
2592
|
};
|
|
2575
|
-
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
2576
|
-
export const databaseCopyMysqlDatabase = {
|
|
2577
|
-
path: "/v2/mysql-databases/{mysqlDatabaseId}/actions/copy",
|
|
2578
|
-
method: "POST",
|
|
2579
|
-
operationId: "database-copy-mysql-database",
|
|
2580
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.243.0';
|
|
@@ -1022,7 +1022,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1022
1022
|
domain: string;
|
|
1023
1023
|
id: string;
|
|
1024
1024
|
};
|
|
1025
|
-
chargeability
|
|
1025
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
1026
1026
|
consentedScopes: string[];
|
|
1027
1027
|
contributorId: string;
|
|
1028
1028
|
contributorName: string;
|
|
@@ -1129,7 +1129,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1129
1129
|
domain: string;
|
|
1130
1130
|
id: string;
|
|
1131
1131
|
};
|
|
1132
|
-
chargeability
|
|
1132
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
1133
1133
|
consentedScopes: string[];
|
|
1134
1134
|
contributorId: string;
|
|
1135
1135
|
contributorName: string;
|
|
@@ -1160,7 +1160,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1160
1160
|
domain: string;
|
|
1161
1161
|
id: string;
|
|
1162
1162
|
};
|
|
1163
|
-
chargeability
|
|
1163
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
1164
1164
|
consentedScopes: string[];
|
|
1165
1165
|
contributorId: string;
|
|
1166
1166
|
contributorName: string;
|
|
@@ -1860,6 +1860,7 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1860
1860
|
nameservers: string[];
|
|
1861
1861
|
processes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainProcess[] | undefined;
|
|
1862
1862
|
projectId: string;
|
|
1863
|
+
scheduledDeletionDate?: string | undefined;
|
|
1863
1864
|
transferInAuthCode?: string | undefined;
|
|
1864
1865
|
usesDefaultNameserver: boolean;
|
|
1865
1866
|
}>;
|
|
@@ -8024,7 +8024,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8024
8024
|
domain: string;
|
|
8025
8025
|
id: string;
|
|
8026
8026
|
};
|
|
8027
|
-
chargeability
|
|
8027
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
8028
8028
|
consentedScopes: string[];
|
|
8029
8029
|
contributorId: string;
|
|
8030
8030
|
contributorName: string;
|
|
@@ -8064,7 +8064,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8064
8064
|
domain: string;
|
|
8065
8065
|
id: string;
|
|
8066
8066
|
};
|
|
8067
|
-
chargeability
|
|
8067
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
8068
8068
|
consentedScopes: string[];
|
|
8069
8069
|
contributorId: string;
|
|
8070
8070
|
contributorName: string;
|
|
@@ -9053,7 +9053,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9053
9053
|
domain: string;
|
|
9054
9054
|
id: string;
|
|
9055
9055
|
};
|
|
9056
|
-
chargeability
|
|
9056
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
9057
9057
|
consentedScopes: string[];
|
|
9058
9058
|
contributorId: string;
|
|
9059
9059
|
contributorName: string;
|
|
@@ -9094,7 +9094,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9094
9094
|
domain: string;
|
|
9095
9095
|
id: string;
|
|
9096
9096
|
};
|
|
9097
|
-
chargeability
|
|
9097
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
9098
9098
|
consentedScopes: string[];
|
|
9099
9099
|
contributorId: string;
|
|
9100
9100
|
contributorName: string;
|
|
@@ -9144,7 +9144,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9144
9144
|
domain: string;
|
|
9145
9145
|
id: string;
|
|
9146
9146
|
};
|
|
9147
|
-
chargeability
|
|
9147
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
9148
9148
|
consentedScopes: string[];
|
|
9149
9149
|
contributorId: string;
|
|
9150
9150
|
contributorName: string;
|
|
@@ -9185,7 +9185,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9185
9185
|
domain: string;
|
|
9186
9186
|
id: string;
|
|
9187
9187
|
};
|
|
9188
|
-
chargeability
|
|
9188
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
9189
9189
|
consentedScopes: string[];
|
|
9190
9190
|
contributorId: string;
|
|
9191
9191
|
contributorName: string;
|
|
@@ -13533,6 +13533,79 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13533
13533
|
};
|
|
13534
13534
|
/** The database API allows you to manage your databases, like MySQL and Redis databases. */
|
|
13535
13535
|
readonly database: {
|
|
13536
|
+
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
13537
|
+
copyMysqlDatabase: (request: {
|
|
13538
|
+
data: {
|
|
13539
|
+
description: string;
|
|
13540
|
+
user: {
|
|
13541
|
+
accessLevel: "full" | "readonly";
|
|
13542
|
+
password: string;
|
|
13543
|
+
accessIpMask?: string | undefined;
|
|
13544
|
+
externalAccess?: boolean | undefined;
|
|
13545
|
+
};
|
|
13546
|
+
};
|
|
13547
|
+
mysqlDatabaseId: string;
|
|
13548
|
+
headers?: {
|
|
13549
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
13550
|
+
"x-access-token"?: string | undefined;
|
|
13551
|
+
} | undefined;
|
|
13552
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13553
|
+
data: {
|
|
13554
|
+
description: string;
|
|
13555
|
+
user: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
13556
|
+
};
|
|
13557
|
+
} & {
|
|
13558
|
+
pathParameters: {
|
|
13559
|
+
mysqlDatabaseId: string;
|
|
13560
|
+
};
|
|
13561
|
+
} & {
|
|
13562
|
+
headers?: Partial<{
|
|
13563
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13564
|
+
}>;
|
|
13565
|
+
} & {
|
|
13566
|
+
headers: {
|
|
13567
|
+
"x-access-token"?: string | undefined;
|
|
13568
|
+
} & Partial<{
|
|
13569
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13570
|
+
}>;
|
|
13571
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
13572
|
+
id: string;
|
|
13573
|
+
userId: string;
|
|
13574
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13575
|
+
[x: string]: unknown;
|
|
13576
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13577
|
+
[x: string]: unknown;
|
|
13578
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13579
|
+
[x: string]: unknown;
|
|
13580
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13581
|
+
data: {
|
|
13582
|
+
description: string;
|
|
13583
|
+
user: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
13584
|
+
};
|
|
13585
|
+
} & {
|
|
13586
|
+
pathParameters: {
|
|
13587
|
+
mysqlDatabaseId: string;
|
|
13588
|
+
};
|
|
13589
|
+
} & {
|
|
13590
|
+
headers?: Partial<{
|
|
13591
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13592
|
+
}>;
|
|
13593
|
+
} & {
|
|
13594
|
+
headers: {
|
|
13595
|
+
"x-access-token"?: string | undefined;
|
|
13596
|
+
} & Partial<{
|
|
13597
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13598
|
+
}>;
|
|
13599
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
13600
|
+
id: string;
|
|
13601
|
+
userId: string;
|
|
13602
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13603
|
+
[x: string]: unknown;
|
|
13604
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13605
|
+
[x: string]: unknown;
|
|
13606
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13607
|
+
[x: string]: unknown;
|
|
13608
|
+
}, 429, "application/json">>>;
|
|
13536
13609
|
/** List MySQLDatabases belonging to a Project. */
|
|
13537
13610
|
listMysqlDatabases: (request: {
|
|
13538
13611
|
projectId: string;
|
|
@@ -14993,79 +15066,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14993
15066
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14994
15067
|
[x: string]: unknown;
|
|
14995
15068
|
}, 429, "application/json">>>;
|
|
14996
|
-
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
14997
|
-
copyMysqlDatabase: (request: {
|
|
14998
|
-
data: {
|
|
14999
|
-
description: string;
|
|
15000
|
-
user: {
|
|
15001
|
-
accessLevel: "full" | "readonly";
|
|
15002
|
-
password: string;
|
|
15003
|
-
accessIpMask?: string | undefined;
|
|
15004
|
-
externalAccess?: boolean | undefined;
|
|
15005
|
-
};
|
|
15006
|
-
};
|
|
15007
|
-
mysqlDatabaseId: string;
|
|
15008
|
-
headers?: {
|
|
15009
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
15010
|
-
"x-access-token"?: string | undefined;
|
|
15011
|
-
} | undefined;
|
|
15012
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
15013
|
-
data: {
|
|
15014
|
-
description: string;
|
|
15015
|
-
user: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
15016
|
-
};
|
|
15017
|
-
} & {
|
|
15018
|
-
pathParameters: {
|
|
15019
|
-
mysqlDatabaseId: string;
|
|
15020
|
-
};
|
|
15021
|
-
} & {
|
|
15022
|
-
headers?: Partial<{
|
|
15023
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15024
|
-
}>;
|
|
15025
|
-
} & {
|
|
15026
|
-
headers: {
|
|
15027
|
-
"x-access-token"?: string | undefined;
|
|
15028
|
-
} & Partial<{
|
|
15029
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15030
|
-
}>;
|
|
15031
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
15032
|
-
id: string;
|
|
15033
|
-
userId: string;
|
|
15034
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15035
|
-
[x: string]: unknown;
|
|
15036
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15037
|
-
[x: string]: unknown;
|
|
15038
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15039
|
-
[x: string]: unknown;
|
|
15040
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
15041
|
-
data: {
|
|
15042
|
-
description: string;
|
|
15043
|
-
user: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
15044
|
-
};
|
|
15045
|
-
} & {
|
|
15046
|
-
pathParameters: {
|
|
15047
|
-
mysqlDatabaseId: string;
|
|
15048
|
-
};
|
|
15049
|
-
} & {
|
|
15050
|
-
headers?: Partial<{
|
|
15051
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15052
|
-
}>;
|
|
15053
|
-
} & {
|
|
15054
|
-
headers: {
|
|
15055
|
-
"x-access-token"?: string | undefined;
|
|
15056
|
-
} & Partial<{
|
|
15057
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15058
|
-
}>;
|
|
15059
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
15060
|
-
id: string;
|
|
15061
|
-
userId: string;
|
|
15062
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15063
|
-
[x: string]: unknown;
|
|
15064
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15065
|
-
[x: string]: unknown;
|
|
15066
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15067
|
-
[x: string]: unknown;
|
|
15068
|
-
}, 429, "application/json">>>;
|
|
15069
15069
|
};
|
|
15070
15070
|
/** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
|
|
15071
15071
|
readonly domain: {
|
|
@@ -15904,6 +15904,105 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15904
15904
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15905
15905
|
[x: string]: unknown;
|
|
15906
15906
|
}, 429, "application/json">>>;
|
|
15907
|
+
/** Create a scheduled deletion of a Domain. */
|
|
15908
|
+
createScheduledDeletion: (request: {
|
|
15909
|
+
data: {
|
|
15910
|
+
deletionDate: string;
|
|
15911
|
+
};
|
|
15912
|
+
domainId: string;
|
|
15913
|
+
headers?: {
|
|
15914
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
15915
|
+
"x-access-token"?: string | undefined;
|
|
15916
|
+
} | undefined;
|
|
15917
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
15918
|
+
data: {
|
|
15919
|
+
deletionDate: string;
|
|
15920
|
+
};
|
|
15921
|
+
} & {
|
|
15922
|
+
pathParameters: {
|
|
15923
|
+
domainId: string;
|
|
15924
|
+
};
|
|
15925
|
+
} & {
|
|
15926
|
+
headers?: Partial<{
|
|
15927
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15928
|
+
}>;
|
|
15929
|
+
} & {
|
|
15930
|
+
headers: {
|
|
15931
|
+
"x-access-token"?: string | undefined;
|
|
15932
|
+
} & Partial<{
|
|
15933
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15934
|
+
}>;
|
|
15935
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
15936
|
+
[x: string]: unknown;
|
|
15937
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15938
|
+
[x: string]: unknown;
|
|
15939
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
15940
|
+
data: {
|
|
15941
|
+
deletionDate: string;
|
|
15942
|
+
};
|
|
15943
|
+
} & {
|
|
15944
|
+
pathParameters: {
|
|
15945
|
+
domainId: string;
|
|
15946
|
+
};
|
|
15947
|
+
} & {
|
|
15948
|
+
headers?: Partial<{
|
|
15949
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15950
|
+
}>;
|
|
15951
|
+
} & {
|
|
15952
|
+
headers: {
|
|
15953
|
+
"x-access-token"?: string | undefined;
|
|
15954
|
+
} & Partial<{
|
|
15955
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15956
|
+
}>;
|
|
15957
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
15958
|
+
[x: string]: unknown;
|
|
15959
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15960
|
+
[x: string]: unknown;
|
|
15961
|
+
}, 429, "application/json">>>;
|
|
15962
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
15963
|
+
cancelScheduledDeletion: (request: {
|
|
15964
|
+
domainId: string;
|
|
15965
|
+
headers?: {
|
|
15966
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
15967
|
+
"x-access-token"?: string | undefined;
|
|
15968
|
+
} | undefined;
|
|
15969
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
15970
|
+
headers?: Partial<{
|
|
15971
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15972
|
+
}>;
|
|
15973
|
+
} & {
|
|
15974
|
+
pathParameters: {
|
|
15975
|
+
domainId: string;
|
|
15976
|
+
};
|
|
15977
|
+
} & {
|
|
15978
|
+
headers: {
|
|
15979
|
+
"x-access-token"?: string | undefined;
|
|
15980
|
+
} & Partial<{
|
|
15981
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15982
|
+
}>;
|
|
15983
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
15984
|
+
[x: string]: unknown;
|
|
15985
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15986
|
+
[x: string]: unknown;
|
|
15987
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
15988
|
+
headers?: Partial<{
|
|
15989
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15990
|
+
}>;
|
|
15991
|
+
} & {
|
|
15992
|
+
pathParameters: {
|
|
15993
|
+
domainId: string;
|
|
15994
|
+
};
|
|
15995
|
+
} & {
|
|
15996
|
+
headers: {
|
|
15997
|
+
"x-access-token"?: string | undefined;
|
|
15998
|
+
} & Partial<{
|
|
15999
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16000
|
+
}>;
|
|
16001
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
16002
|
+
[x: string]: unknown;
|
|
16003
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16004
|
+
[x: string]: unknown;
|
|
16005
|
+
}, 429, "application/json">>>;
|
|
15907
16006
|
/** Check if a Domain is available to register. */
|
|
15908
16007
|
checkDomainRegistrability: (request: {
|
|
15909
16008
|
data: {
|
|
@@ -16071,6 +16170,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16071
16170
|
nameservers: string[];
|
|
16072
16171
|
processes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainProcess[] | undefined;
|
|
16073
16172
|
projectId: string;
|
|
16173
|
+
scheduledDeletionDate?: string | undefined;
|
|
16074
16174
|
transferInAuthCode?: string | undefined;
|
|
16075
16175
|
usesDefaultNameserver: boolean;
|
|
16076
16176
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -16110,6 +16210,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16110
16210
|
nameservers: string[];
|
|
16111
16211
|
processes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainProcess[] | undefined;
|
|
16112
16212
|
projectId: string;
|
|
16213
|
+
scheduledDeletionDate?: string | undefined;
|
|
16113
16214
|
transferInAuthCode?: string | undefined;
|
|
16114
16215
|
usesDefaultNameserver: boolean;
|
|
16115
16216
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -289,6 +289,8 @@ export declare const customerRequestAvatarUpload: OpenAPIOperation<RequestType<S
|
|
|
289
289
|
export declare const customerRemoveAvatar: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json">>;
|
|
290
290
|
/** Resend the mail for a CustomerInvite. */
|
|
291
291
|
export declare const customerResendCustomerInviteMail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
292
|
+
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
293
|
+
export declare const databaseCopyMysqlDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
292
294
|
/** List MySQLDatabases belonging to a Project. */
|
|
293
295
|
export declare const databaseListMysqlDatabases: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
294
296
|
/** Create a MySQLDatabase with a MySQLUser. */
|
|
@@ -375,6 +377,10 @@ export declare const dnsSetRecordSetManaged: OpenAPIOperation<RequestType<Simpli
|
|
|
375
377
|
export declare const dnsUpdateRecordSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneIdRecordSetsRecordSet.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneIdRecordSetsRecordSet.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneIdRecordSetsRecordSet.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneIdRecordSetsRecordSet.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneIdRecordSetsRecordSet.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneIdRecordSetsRecordSet.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneIdRecordSetsRecordSet.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneIdRecordSetsRecordSet.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesDnsZoneIdRecordSetsRecordSet.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
376
378
|
/** Abort a Domain declaration. */
|
|
377
379
|
export declare const domainAbortDomainDeclaration: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclaration.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclaration.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclaration.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclaration.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclaration.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclaration.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclaration.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclaration.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
380
|
+
/** Create a scheduled deletion of a Domain. */
|
|
381
|
+
export declare const domainCreateScheduledDeletion: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
382
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
383
|
+
export declare const domainCancelScheduledDeletion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
378
384
|
/** Check if a Domain is available to register. */
|
|
379
385
|
export declare const domainCheckDomainRegistrability: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainRegistrable.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainRegistrable.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainRegistrable.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainRegistrable.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainRegistrable.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainRegistrable.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainRegistrable.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainRegistrable.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
380
386
|
/** Check if a Domain is available to transfer. */
|
|
@@ -861,5 +867,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
861
867
|
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">>;
|
|
862
868
|
/** Check if a company exists. */
|
|
863
869
|
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">>;
|
|
864
|
-
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
865
|
-
export declare const databaseCopyMysqlDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -574,6 +574,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
574
574
|
type RequestData = InferredRequestData<typeof descriptors.customerResendCustomerInviteMail>;
|
|
575
575
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerResendCustomerInviteMail, TStatus>;
|
|
576
576
|
}
|
|
577
|
+
namespace DatabaseCopyMysqlDatabase {
|
|
578
|
+
type RequestData = InferredRequestData<typeof descriptors.databaseCopyMysqlDatabase>;
|
|
579
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseCopyMysqlDatabase, TStatus>;
|
|
580
|
+
}
|
|
577
581
|
namespace DatabaseListMysqlDatabases {
|
|
578
582
|
type RequestData = InferredRequestData<typeof descriptors.databaseListMysqlDatabases>;
|
|
579
583
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseListMysqlDatabases, TStatus>;
|
|
@@ -746,6 +750,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
746
750
|
type RequestData = InferredRequestData<typeof descriptors.domainAbortDomainDeclaration>;
|
|
747
751
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainAbortDomainDeclaration, TStatus>;
|
|
748
752
|
}
|
|
753
|
+
namespace DomainCreateScheduledDeletion {
|
|
754
|
+
type RequestData = InferredRequestData<typeof descriptors.domainCreateScheduledDeletion>;
|
|
755
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainCreateScheduledDeletion, TStatus>;
|
|
756
|
+
}
|
|
757
|
+
namespace DomainCancelScheduledDeletion {
|
|
758
|
+
type RequestData = InferredRequestData<typeof descriptors.domainCancelScheduledDeletion>;
|
|
759
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainCancelScheduledDeletion, TStatus>;
|
|
760
|
+
}
|
|
749
761
|
namespace DomainCheckDomainRegistrability {
|
|
750
762
|
type RequestData = InferredRequestData<typeof descriptors.domainCheckDomainRegistrability>;
|
|
751
763
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainCheckDomainRegistrability, TStatus>;
|
|
@@ -1718,10 +1730,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1718
1730
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1719
1731
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1720
1732
|
}
|
|
1721
|
-
namespace DatabaseCopyMysqlDatabase {
|
|
1722
|
-
type RequestData = InferredRequestData<typeof descriptors.databaseCopyMysqlDatabase>;
|
|
1723
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseCopyMysqlDatabase, TStatus>;
|
|
1724
|
-
}
|
|
1725
1733
|
}
|
|
1726
1734
|
namespace Components {
|
|
1727
1735
|
namespace Schemas {
|
|
@@ -3060,6 +3068,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3060
3068
|
nameservers: string[];
|
|
3061
3069
|
processes?: MittwaldAPIV2.Components.Schemas.DomainProcess[];
|
|
3062
3070
|
projectId: string;
|
|
3071
|
+
scheduledDeletionDate?: string;
|
|
3063
3072
|
transferInAuthCode?: string;
|
|
3064
3073
|
usesDefaultNameserver: boolean;
|
|
3065
3074
|
}
|
|
@@ -3299,7 +3308,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3299
3308
|
domain: string;
|
|
3300
3309
|
id: string;
|
|
3301
3310
|
};
|
|
3302
|
-
chargeability
|
|
3311
|
+
chargeability: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
3303
3312
|
consentedScopes: string[];
|
|
3304
3313
|
contributorId: string;
|
|
3305
3314
|
contributorName: string;
|
|
@@ -3319,6 +3328,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3319
3328
|
interface MarketplaceExtensionInstanceChargeability {
|
|
3320
3329
|
isChargeable: boolean;
|
|
3321
3330
|
reasons: {
|
|
3331
|
+
isNonChargeableCustomer: boolean;
|
|
3322
3332
|
isOwnExtension: boolean;
|
|
3323
3333
|
};
|
|
3324
3334
|
}
|
|
@@ -12740,6 +12750,59 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12740
12750
|
}
|
|
12741
12751
|
}
|
|
12742
12752
|
}
|
|
12753
|
+
namespace V2MysqlDatabasesMysqlDatabaseIdActionsCopy {
|
|
12754
|
+
namespace Post {
|
|
12755
|
+
namespace Parameters {
|
|
12756
|
+
type Path = {
|
|
12757
|
+
mysqlDatabaseId: string;
|
|
12758
|
+
};
|
|
12759
|
+
interface RequestBody {
|
|
12760
|
+
description: string;
|
|
12761
|
+
user: MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
12762
|
+
}
|
|
12763
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12764
|
+
type Query = {};
|
|
12765
|
+
}
|
|
12766
|
+
namespace Responses {
|
|
12767
|
+
namespace $201 {
|
|
12768
|
+
namespace Content {
|
|
12769
|
+
interface ApplicationJson {
|
|
12770
|
+
id: string;
|
|
12771
|
+
userId: string;
|
|
12772
|
+
}
|
|
12773
|
+
}
|
|
12774
|
+
}
|
|
12775
|
+
namespace $400 {
|
|
12776
|
+
namespace Content {
|
|
12777
|
+
interface ApplicationJson {
|
|
12778
|
+
[k: string]: unknown;
|
|
12779
|
+
}
|
|
12780
|
+
}
|
|
12781
|
+
}
|
|
12782
|
+
namespace $404 {
|
|
12783
|
+
namespace Content {
|
|
12784
|
+
interface ApplicationJson {
|
|
12785
|
+
[k: string]: unknown;
|
|
12786
|
+
}
|
|
12787
|
+
}
|
|
12788
|
+
}
|
|
12789
|
+
namespace $429 {
|
|
12790
|
+
namespace Content {
|
|
12791
|
+
interface ApplicationJson {
|
|
12792
|
+
[k: string]: unknown;
|
|
12793
|
+
}
|
|
12794
|
+
}
|
|
12795
|
+
}
|
|
12796
|
+
namespace Default {
|
|
12797
|
+
namespace Content {
|
|
12798
|
+
interface ApplicationJson {
|
|
12799
|
+
[k: string]: unknown;
|
|
12800
|
+
}
|
|
12801
|
+
}
|
|
12802
|
+
}
|
|
12803
|
+
}
|
|
12804
|
+
}
|
|
12805
|
+
}
|
|
12743
12806
|
namespace V2ProjectsProjectIdMysqlDatabases {
|
|
12744
12807
|
namespace Get {
|
|
12745
12808
|
namespace Parameters {
|
|
@@ -14969,6 +15032,85 @@ export declare namespace MittwaldAPIV2 {
|
|
|
14969
15032
|
}
|
|
14970
15033
|
}
|
|
14971
15034
|
}
|
|
15035
|
+
namespace V2DomainsDomainIdScheduledDeletion {
|
|
15036
|
+
namespace Post {
|
|
15037
|
+
namespace Parameters {
|
|
15038
|
+
type Path = {
|
|
15039
|
+
domainId: string;
|
|
15040
|
+
};
|
|
15041
|
+
interface RequestBody {
|
|
15042
|
+
deletionDate: string;
|
|
15043
|
+
}
|
|
15044
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
15045
|
+
type Query = {};
|
|
15046
|
+
}
|
|
15047
|
+
namespace Responses {
|
|
15048
|
+
namespace $204 {
|
|
15049
|
+
namespace Content {
|
|
15050
|
+
type Empty = unknown;
|
|
15051
|
+
}
|
|
15052
|
+
}
|
|
15053
|
+
namespace $400 {
|
|
15054
|
+
namespace Content {
|
|
15055
|
+
interface ApplicationJson {
|
|
15056
|
+
[k: string]: unknown;
|
|
15057
|
+
}
|
|
15058
|
+
}
|
|
15059
|
+
}
|
|
15060
|
+
namespace $429 {
|
|
15061
|
+
namespace Content {
|
|
15062
|
+
interface ApplicationJson {
|
|
15063
|
+
[k: string]: unknown;
|
|
15064
|
+
}
|
|
15065
|
+
}
|
|
15066
|
+
}
|
|
15067
|
+
namespace Default {
|
|
15068
|
+
namespace Content {
|
|
15069
|
+
interface ApplicationJson {
|
|
15070
|
+
[k: string]: unknown;
|
|
15071
|
+
}
|
|
15072
|
+
}
|
|
15073
|
+
}
|
|
15074
|
+
}
|
|
15075
|
+
}
|
|
15076
|
+
namespace Delete {
|
|
15077
|
+
namespace Parameters {
|
|
15078
|
+
type Path = {
|
|
15079
|
+
domainId: string;
|
|
15080
|
+
};
|
|
15081
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
15082
|
+
type Query = {};
|
|
15083
|
+
}
|
|
15084
|
+
namespace Responses {
|
|
15085
|
+
namespace $204 {
|
|
15086
|
+
namespace Content {
|
|
15087
|
+
type Empty = unknown;
|
|
15088
|
+
}
|
|
15089
|
+
}
|
|
15090
|
+
namespace $400 {
|
|
15091
|
+
namespace Content {
|
|
15092
|
+
interface ApplicationJson {
|
|
15093
|
+
[k: string]: unknown;
|
|
15094
|
+
}
|
|
15095
|
+
}
|
|
15096
|
+
}
|
|
15097
|
+
namespace $429 {
|
|
15098
|
+
namespace Content {
|
|
15099
|
+
interface ApplicationJson {
|
|
15100
|
+
[k: string]: unknown;
|
|
15101
|
+
}
|
|
15102
|
+
}
|
|
15103
|
+
}
|
|
15104
|
+
namespace Default {
|
|
15105
|
+
namespace Content {
|
|
15106
|
+
interface ApplicationJson {
|
|
15107
|
+
[k: string]: unknown;
|
|
15108
|
+
}
|
|
15109
|
+
}
|
|
15110
|
+
}
|
|
15111
|
+
}
|
|
15112
|
+
}
|
|
15113
|
+
}
|
|
14972
15114
|
namespace V2DomainRegistrable {
|
|
14973
15115
|
namespace Post {
|
|
14974
15116
|
namespace Parameters {
|
|
@@ -27317,58 +27459,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27317
27459
|
}
|
|
27318
27460
|
}
|
|
27319
27461
|
}
|
|
27320
|
-
namespace V2MysqlDatabasesMysqlDatabaseIdActionsCopy {
|
|
27321
|
-
namespace Post {
|
|
27322
|
-
namespace Parameters {
|
|
27323
|
-
type Path = {
|
|
27324
|
-
mysqlDatabaseId: string;
|
|
27325
|
-
};
|
|
27326
|
-
interface RequestBody {
|
|
27327
|
-
description: string;
|
|
27328
|
-
user: MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
27329
|
-
}
|
|
27330
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27331
|
-
type Query = {};
|
|
27332
|
-
}
|
|
27333
|
-
namespace Responses {
|
|
27334
|
-
namespace $201 {
|
|
27335
|
-
namespace Content {
|
|
27336
|
-
interface ApplicationJson {
|
|
27337
|
-
id: string;
|
|
27338
|
-
userId: string;
|
|
27339
|
-
}
|
|
27340
|
-
}
|
|
27341
|
-
}
|
|
27342
|
-
namespace $400 {
|
|
27343
|
-
namespace Content {
|
|
27344
|
-
interface ApplicationJson {
|
|
27345
|
-
[k: string]: unknown;
|
|
27346
|
-
}
|
|
27347
|
-
}
|
|
27348
|
-
}
|
|
27349
|
-
namespace $404 {
|
|
27350
|
-
namespace Content {
|
|
27351
|
-
interface ApplicationJson {
|
|
27352
|
-
[k: string]: unknown;
|
|
27353
|
-
}
|
|
27354
|
-
}
|
|
27355
|
-
}
|
|
27356
|
-
namespace $429 {
|
|
27357
|
-
namespace Content {
|
|
27358
|
-
interface ApplicationJson {
|
|
27359
|
-
[k: string]: unknown;
|
|
27360
|
-
}
|
|
27361
|
-
}
|
|
27362
|
-
}
|
|
27363
|
-
namespace Default {
|
|
27364
|
-
namespace Content {
|
|
27365
|
-
interface ApplicationJson {
|
|
27366
|
-
[k: string]: unknown;
|
|
27367
|
-
}
|
|
27368
|
-
}
|
|
27369
|
-
}
|
|
27370
|
-
}
|
|
27371
|
-
}
|
|
27372
|
-
}
|
|
27373
27462
|
}
|
|
27374
27463
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.243.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.244.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",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.244.0",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.244.0",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "1088e07d560115000a33d9115a6c19088893a549"
|
|
84
84
|
}
|