@mittwald/api-client 4.242.2 → 4.243.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 +4 -0
- package/dist/esm/generated/v2/descriptors.js +12 -0
- 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 +107 -6
- package/dist/types/generated/v2/descriptors.d.ts +4 -0
- package/dist/types/generated/v2/types.d.ts +90 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -568,6 +568,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
568
568
|
sslReplaceCertificate: this.requestFunctionFactory(descriptors.sslReplaceCertificate),
|
|
569
569
|
/** List Certificates belonging to a Project or an Ingress. */
|
|
570
570
|
sslListCertificates: this.requestFunctionFactory(descriptors.sslListCertificates),
|
|
571
|
+
/** Create a scheduled deletion of a Domain. */
|
|
572
|
+
createScheduledDeletion: this.requestFunctionFactory(descriptors.domainCreateScheduledDeletion),
|
|
573
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
574
|
+
cancelScheduledDeletion: this.requestFunctionFactory(descriptors.domainCancelScheduledDeletion),
|
|
571
575
|
};
|
|
572
576
|
/** The mail API allows you to manage your mail accounts. */
|
|
573
577
|
mail = {
|
|
@@ -2578,3 +2578,15 @@ export const databaseCopyMysqlDatabase = {
|
|
|
2578
2578
|
method: "POST",
|
|
2579
2579
|
operationId: "database-copy-mysql-database",
|
|
2580
2580
|
};
|
|
2581
|
+
/** Create a scheduled deletion of a Domain. */
|
|
2582
|
+
export const domainCreateScheduledDeletion = {
|
|
2583
|
+
path: "/v2/domains/{domainId}/scheduled-deletion",
|
|
2584
|
+
method: "POST",
|
|
2585
|
+
operationId: "domain-create-scheduled-deletion",
|
|
2586
|
+
};
|
|
2587
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
2588
|
+
export const domainCancelScheduledDeletion = {
|
|
2589
|
+
path: "/v2/domains/{domainId}/scheduled-deletion",
|
|
2590
|
+
method: "DELETE",
|
|
2591
|
+
operationId: "domain-cancel-scheduled-deletion",
|
|
2592
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.242.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.242.3';
|
|
@@ -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;
|
|
@@ -16071,6 +16071,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16071
16071
|
nameservers: string[];
|
|
16072
16072
|
processes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainProcess[] | undefined;
|
|
16073
16073
|
projectId: string;
|
|
16074
|
+
scheduledDeletionDate?: string | undefined;
|
|
16074
16075
|
transferInAuthCode?: string | undefined;
|
|
16075
16076
|
usesDefaultNameserver: boolean;
|
|
16076
16077
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -16110,6 +16111,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16110
16111
|
nameservers: string[];
|
|
16111
16112
|
processes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainProcess[] | undefined;
|
|
16112
16113
|
projectId: string;
|
|
16114
|
+
scheduledDeletionDate?: string | undefined;
|
|
16113
16115
|
transferInAuthCode?: string | undefined;
|
|
16114
16116
|
usesDefaultNameserver: boolean;
|
|
16115
16117
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -17576,6 +17578,105 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17576
17578
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17577
17579
|
[x: string]: unknown;
|
|
17578
17580
|
}, 429, "application/json">>>;
|
|
17581
|
+
/** Create a scheduled deletion of a Domain. */
|
|
17582
|
+
createScheduledDeletion: (request: {
|
|
17583
|
+
data: {
|
|
17584
|
+
deletionDate: string;
|
|
17585
|
+
};
|
|
17586
|
+
domainId: string;
|
|
17587
|
+
headers?: {
|
|
17588
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17589
|
+
"x-access-token"?: string | undefined;
|
|
17590
|
+
} | undefined;
|
|
17591
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17592
|
+
data: {
|
|
17593
|
+
deletionDate: string;
|
|
17594
|
+
};
|
|
17595
|
+
} & {
|
|
17596
|
+
pathParameters: {
|
|
17597
|
+
domainId: string;
|
|
17598
|
+
};
|
|
17599
|
+
} & {
|
|
17600
|
+
headers?: Partial<{
|
|
17601
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17602
|
+
}>;
|
|
17603
|
+
} & {
|
|
17604
|
+
headers: {
|
|
17605
|
+
"x-access-token"?: string | undefined;
|
|
17606
|
+
} & Partial<{
|
|
17607
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17608
|
+
}>;
|
|
17609
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17610
|
+
[x: string]: unknown;
|
|
17611
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17612
|
+
[x: string]: unknown;
|
|
17613
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17614
|
+
data: {
|
|
17615
|
+
deletionDate: string;
|
|
17616
|
+
};
|
|
17617
|
+
} & {
|
|
17618
|
+
pathParameters: {
|
|
17619
|
+
domainId: string;
|
|
17620
|
+
};
|
|
17621
|
+
} & {
|
|
17622
|
+
headers?: Partial<{
|
|
17623
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17624
|
+
}>;
|
|
17625
|
+
} & {
|
|
17626
|
+
headers: {
|
|
17627
|
+
"x-access-token"?: string | undefined;
|
|
17628
|
+
} & Partial<{
|
|
17629
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17630
|
+
}>;
|
|
17631
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17632
|
+
[x: string]: unknown;
|
|
17633
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17634
|
+
[x: string]: unknown;
|
|
17635
|
+
}, 429, "application/json">>>;
|
|
17636
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
17637
|
+
cancelScheduledDeletion: (request: {
|
|
17638
|
+
domainId: string;
|
|
17639
|
+
headers?: {
|
|
17640
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17641
|
+
"x-access-token"?: string | undefined;
|
|
17642
|
+
} | undefined;
|
|
17643
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17644
|
+
headers?: Partial<{
|
|
17645
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17646
|
+
}>;
|
|
17647
|
+
} & {
|
|
17648
|
+
pathParameters: {
|
|
17649
|
+
domainId: string;
|
|
17650
|
+
};
|
|
17651
|
+
} & {
|
|
17652
|
+
headers: {
|
|
17653
|
+
"x-access-token"?: string | undefined;
|
|
17654
|
+
} & Partial<{
|
|
17655
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17656
|
+
}>;
|
|
17657
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17658
|
+
[x: string]: unknown;
|
|
17659
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17660
|
+
[x: string]: unknown;
|
|
17661
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17662
|
+
headers?: Partial<{
|
|
17663
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17664
|
+
}>;
|
|
17665
|
+
} & {
|
|
17666
|
+
pathParameters: {
|
|
17667
|
+
domainId: string;
|
|
17668
|
+
};
|
|
17669
|
+
} & {
|
|
17670
|
+
headers: {
|
|
17671
|
+
"x-access-token"?: string | undefined;
|
|
17672
|
+
} & Partial<{
|
|
17673
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17674
|
+
}>;
|
|
17675
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17676
|
+
[x: string]: unknown;
|
|
17677
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17678
|
+
[x: string]: unknown;
|
|
17679
|
+
}, 429, "application/json">>>;
|
|
17579
17680
|
};
|
|
17580
17681
|
/** The mail API allows you to manage your mail accounts. */
|
|
17581
17682
|
readonly mail: {
|
|
@@ -863,3 +863,7 @@ export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Sim
|
|
|
863
863
|
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
864
|
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
865
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">>;
|
|
866
|
+
/** Create a scheduled deletion of a Domain. */
|
|
867
|
+
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">>;
|
|
868
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
869
|
+
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">>;
|
|
@@ -1722,6 +1722,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1722
1722
|
type RequestData = InferredRequestData<typeof descriptors.databaseCopyMysqlDatabase>;
|
|
1723
1723
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseCopyMysqlDatabase, TStatus>;
|
|
1724
1724
|
}
|
|
1725
|
+
namespace DomainCreateScheduledDeletion {
|
|
1726
|
+
type RequestData = InferredRequestData<typeof descriptors.domainCreateScheduledDeletion>;
|
|
1727
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainCreateScheduledDeletion, TStatus>;
|
|
1728
|
+
}
|
|
1729
|
+
namespace DomainCancelScheduledDeletion {
|
|
1730
|
+
type RequestData = InferredRequestData<typeof descriptors.domainCancelScheduledDeletion>;
|
|
1731
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainCancelScheduledDeletion, TStatus>;
|
|
1732
|
+
}
|
|
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
|
}
|
|
@@ -27370,5 +27380,84 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27370
27380
|
}
|
|
27371
27381
|
}
|
|
27372
27382
|
}
|
|
27383
|
+
namespace V2DomainsDomainIdScheduledDeletion {
|
|
27384
|
+
namespace Post {
|
|
27385
|
+
namespace Parameters {
|
|
27386
|
+
type Path = {
|
|
27387
|
+
domainId: string;
|
|
27388
|
+
};
|
|
27389
|
+
interface RequestBody {
|
|
27390
|
+
deletionDate: string;
|
|
27391
|
+
}
|
|
27392
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27393
|
+
type Query = {};
|
|
27394
|
+
}
|
|
27395
|
+
namespace Responses {
|
|
27396
|
+
namespace $204 {
|
|
27397
|
+
namespace Content {
|
|
27398
|
+
type Empty = unknown;
|
|
27399
|
+
}
|
|
27400
|
+
}
|
|
27401
|
+
namespace $400 {
|
|
27402
|
+
namespace Content {
|
|
27403
|
+
interface ApplicationJson {
|
|
27404
|
+
[k: string]: unknown;
|
|
27405
|
+
}
|
|
27406
|
+
}
|
|
27407
|
+
}
|
|
27408
|
+
namespace $429 {
|
|
27409
|
+
namespace Content {
|
|
27410
|
+
interface ApplicationJson {
|
|
27411
|
+
[k: string]: unknown;
|
|
27412
|
+
}
|
|
27413
|
+
}
|
|
27414
|
+
}
|
|
27415
|
+
namespace Default {
|
|
27416
|
+
namespace Content {
|
|
27417
|
+
interface ApplicationJson {
|
|
27418
|
+
[k: string]: unknown;
|
|
27419
|
+
}
|
|
27420
|
+
}
|
|
27421
|
+
}
|
|
27422
|
+
}
|
|
27423
|
+
}
|
|
27424
|
+
namespace Delete {
|
|
27425
|
+
namespace Parameters {
|
|
27426
|
+
type Path = {
|
|
27427
|
+
domainId: string;
|
|
27428
|
+
};
|
|
27429
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27430
|
+
type Query = {};
|
|
27431
|
+
}
|
|
27432
|
+
namespace Responses {
|
|
27433
|
+
namespace $204 {
|
|
27434
|
+
namespace Content {
|
|
27435
|
+
type Empty = unknown;
|
|
27436
|
+
}
|
|
27437
|
+
}
|
|
27438
|
+
namespace $400 {
|
|
27439
|
+
namespace Content {
|
|
27440
|
+
interface ApplicationJson {
|
|
27441
|
+
[k: string]: unknown;
|
|
27442
|
+
}
|
|
27443
|
+
}
|
|
27444
|
+
}
|
|
27445
|
+
namespace $429 {
|
|
27446
|
+
namespace Content {
|
|
27447
|
+
interface ApplicationJson {
|
|
27448
|
+
[k: string]: unknown;
|
|
27449
|
+
}
|
|
27450
|
+
}
|
|
27451
|
+
}
|
|
27452
|
+
namespace Default {
|
|
27453
|
+
namespace Content {
|
|
27454
|
+
interface ApplicationJson {
|
|
27455
|
+
[k: string]: unknown;
|
|
27456
|
+
}
|
|
27457
|
+
}
|
|
27458
|
+
}
|
|
27459
|
+
}
|
|
27460
|
+
}
|
|
27461
|
+
}
|
|
27373
27462
|
}
|
|
27374
27463
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.242.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.242.3';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.243.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.243.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.243.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": "1449b850b13bd601c65dba93e21b84af30e285f6"
|
|
84
84
|
}
|