@mittwald/api-client 4.405.1 → 4.407.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 +6 -0
- package/dist/esm/generated/v2/client.js +8 -0
- package/dist/esm/generated/v2/descriptors.js +24 -0
- package/dist/esm/generated/v3-next/client-react.js +6 -0
- package/dist/esm/generated/v3-next/client.js +10 -2
- package/dist/esm/generated/v3-next/descriptors.js +502 -478
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +38 -0
- package/dist/types/generated/v2/client.d.ts +221 -0
- package/dist/types/generated/v2/descriptors.d.ts +8 -0
- package/dist/types/generated/v2/types.d.ts +276 -12
- package/dist/types/generated/v3-next/client-react.d.ts +388 -350
- package/dist/types/generated/v3-next/client.d.ts +1389 -1168
- package/dist/types/generated/v3-next/descriptors.d.ts +482 -474
- package/dist/types/generated/v3-next/types.d.ts +2483 -2295
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -106,6 +106,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
106
106
|
listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
|
|
107
107
|
/** List Volumes belonging to a Project. */
|
|
108
108
|
listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
|
|
109
|
+
/** List Container Template statistics. */
|
|
110
|
+
listTemplateStatistics: new ApiCallAsyncResourceFactory(descriptors.containerListTemplateStatistics, baseClient.container.listTemplateStatistics).getApiResource,
|
|
109
111
|
});
|
|
110
112
|
const buildContractApi = (baseClient) => ({
|
|
111
113
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -368,6 +370,10 @@ const buildMailApi = (baseClient) => ({
|
|
|
368
370
|
listMailAddressesForUser: new ApiCallAsyncResourceFactory(descriptors.mailListMailAddressesForUser, baseClient.mail.listMailAddressesForUser).getApiResource,
|
|
369
371
|
/** List mail settings of a Project. */
|
|
370
372
|
listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
|
|
373
|
+
/** Get a Mail RateLimit. */
|
|
374
|
+
getMailRateLimit: new ApiCallAsyncResourceFactory(descriptors.mailGetMailRateLimit, baseClient.mail.getMailRateLimit).getApiResource,
|
|
375
|
+
/** List Mail RateLimits. */
|
|
376
|
+
listMailRateLimits: new ApiCallAsyncResourceFactory(descriptors.mailListMailRateLimits, baseClient.mail.listMailRateLimits).getApiResource,
|
|
371
377
|
});
|
|
372
378
|
const buildMiscApi = (baseClient) => ({
|
|
373
379
|
/** List valid time zones. */
|
|
@@ -196,6 +196,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
196
196
|
startService: this.requestFunctionFactory(descriptors.containerStartService),
|
|
197
197
|
/** Stop a started Service. */
|
|
198
198
|
stopService: this.requestFunctionFactory(descriptors.containerStopService),
|
|
199
|
+
/** List Container Template statistics. */
|
|
200
|
+
listTemplateStatistics: this.requestFunctionFactory(descriptors.containerListTemplateStatistics),
|
|
199
201
|
};
|
|
200
202
|
/** The contract API allows you to manage your contracts and orders */
|
|
201
203
|
contract = {
|
|
@@ -702,6 +704,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
702
704
|
updateMailAddressAddress: this.requestFunctionFactory(descriptors.mailUpdateMailAddressAddress),
|
|
703
705
|
/** Update the catch-all of a MailAddress. */
|
|
704
706
|
updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
|
|
707
|
+
/** Get a Mail RateLimit. */
|
|
708
|
+
getMailRateLimit: this.requestFunctionFactory(descriptors.mailGetMailRateLimit),
|
|
709
|
+
/** List Mail RateLimits. */
|
|
710
|
+
listMailRateLimits: this.requestFunctionFactory(descriptors.mailListMailRateLimits),
|
|
711
|
+
/** Request a rate limit change for a MailAddress. */
|
|
712
|
+
requestMailAddressRateLimitChange: this.requestFunctionFactory(descriptors.mailRequestMailAddressRateLimitChange),
|
|
705
713
|
};
|
|
706
714
|
/** The notification API allows you to manage your notifications. */
|
|
707
715
|
notification = {
|
|
@@ -2836,3 +2836,27 @@ export const verificationVerifyCompany = {
|
|
|
2836
2836
|
method: "POST",
|
|
2837
2837
|
operationId: "verification-verify-company",
|
|
2838
2838
|
};
|
|
2839
|
+
/** List Container Template statistics. */
|
|
2840
|
+
export const containerListTemplateStatistics = {
|
|
2841
|
+
path: "/v2/container-template-statistics",
|
|
2842
|
+
method: "GET",
|
|
2843
|
+
operationId: "container-list-template-statistics",
|
|
2844
|
+
};
|
|
2845
|
+
/** Get a Mail RateLimit. */
|
|
2846
|
+
export const mailGetMailRateLimit = {
|
|
2847
|
+
path: "/v2/mail-rate-limits/{mailRateLimitId}",
|
|
2848
|
+
method: "GET",
|
|
2849
|
+
operationId: "mail-get-mail-rate-limit",
|
|
2850
|
+
};
|
|
2851
|
+
/** List Mail RateLimits. */
|
|
2852
|
+
export const mailListMailRateLimits = {
|
|
2853
|
+
path: "/v2/mail-rate-limits",
|
|
2854
|
+
method: "GET",
|
|
2855
|
+
operationId: "mail-list-mail-rate-limits",
|
|
2856
|
+
};
|
|
2857
|
+
/** Request a rate limit change for a MailAddress. */
|
|
2858
|
+
export const mailRequestMailAddressRateLimitChange = {
|
|
2859
|
+
path: "/v2/mail-addresses/{mailAddressId}/actions/request-rate-limit-change",
|
|
2860
|
+
method: "POST",
|
|
2861
|
+
operationId: "mail-request-mail-address-rate-limit-change",
|
|
2862
|
+
};
|
|
@@ -106,6 +106,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
106
106
|
listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
|
|
107
107
|
/** List Volumes belonging to a Project. */
|
|
108
108
|
listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
|
|
109
|
+
/** List Container Template statistics. */
|
|
110
|
+
listTemplateStatistics: new ApiCallAsyncResourceFactory(descriptors.containerListTemplateStatistics, baseClient.container.listTemplateStatistics).getApiResource,
|
|
109
111
|
});
|
|
110
112
|
const buildContractApi = (baseClient) => ({
|
|
111
113
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -368,6 +370,10 @@ const buildMailApi = (baseClient) => ({
|
|
|
368
370
|
listMailAddressesForUser: new ApiCallAsyncResourceFactory(descriptors.mailListMailAddressesForUser, baseClient.mail.listMailAddressesForUser).getApiResource,
|
|
369
371
|
/** List mail settings of a Project. */
|
|
370
372
|
listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
|
|
373
|
+
/** Get a Mail RateLimit. */
|
|
374
|
+
getMailRateLimit: new ApiCallAsyncResourceFactory(descriptors.mailGetMailRateLimit, baseClient.mail.getMailRateLimit).getApiResource,
|
|
375
|
+
/** List Mail RateLimits. */
|
|
376
|
+
listMailRateLimits: new ApiCallAsyncResourceFactory(descriptors.mailListMailRateLimits, baseClient.mail.listMailRateLimits).getApiResource,
|
|
371
377
|
});
|
|
372
378
|
const buildMiscApi = (baseClient) => ({
|
|
373
379
|
/** List valid time zones. */
|
|
@@ -85,10 +85,10 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
85
85
|
requestAppinstallationCopy: this.requestFunctionFactory(descriptors.appRequestAppinstallationCopy),
|
|
86
86
|
/** Get runtime status belonging to an AppInstallation. */
|
|
87
87
|
retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
|
|
88
|
-
/** Remove linkage between an AppInstallation and a Database. */
|
|
89
|
-
unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
|
|
90
88
|
/** Create linkage between an AppInstallation and DatabaseUsers. */
|
|
91
89
|
setDatabaseUsers: this.requestFunctionFactory(descriptors.appSetDatabaseUsers),
|
|
90
|
+
/** Remove linkage between an AppInstallation and a Database. */
|
|
91
|
+
unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
|
|
92
92
|
};
|
|
93
93
|
/** The article API allows you to read article information. */
|
|
94
94
|
article = {
|
|
@@ -196,6 +196,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
196
196
|
startService: this.requestFunctionFactory(descriptors.containerStartService),
|
|
197
197
|
/** Stop a started Service. */
|
|
198
198
|
stopService: this.requestFunctionFactory(descriptors.containerStopService),
|
|
199
|
+
/** List Container Template statistics. */
|
|
200
|
+
listTemplateStatistics: this.requestFunctionFactory(descriptors.containerListTemplateStatistics),
|
|
199
201
|
};
|
|
200
202
|
/** The contract API allows you to manage your contracts and orders */
|
|
201
203
|
contract = {
|
|
@@ -702,6 +704,12 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
702
704
|
updateMailAddressAddress: this.requestFunctionFactory(descriptors.mailUpdateMailAddressAddress),
|
|
703
705
|
/** Update the catch-all of a MailAddress. */
|
|
704
706
|
updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
|
|
707
|
+
/** Get a Mail RateLimit. */
|
|
708
|
+
getMailRateLimit: this.requestFunctionFactory(descriptors.mailGetMailRateLimit),
|
|
709
|
+
/** List Mail RateLimits. */
|
|
710
|
+
listMailRateLimits: this.requestFunctionFactory(descriptors.mailListMailRateLimits),
|
|
711
|
+
/** Request a rate limit change for a MailAddress. */
|
|
712
|
+
requestMailAddressRateLimitChange: this.requestFunctionFactory(descriptors.mailRequestMailAddressRateLimitChange),
|
|
705
713
|
};
|
|
706
714
|
/** The notification API allows you to manage your notifications. */
|
|
707
715
|
notification = {
|