@mittwald/api-client 4.406.0 → 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 +8 -0
- package/dist/esm/generated/v3-next/descriptors.js +24 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +37 -0
- package/dist/types/generated/v2/client.d.ts +218 -0
- package/dist/types/generated/v2/descriptors.d.ts +8 -0
- package/dist/types/generated/v2/types.d.ts +275 -12
- package/dist/types/generated/v3-next/client-react.d.ts +37 -0
- package/dist/types/generated/v3-next/client.d.ts +218 -0
- package/dist/types/generated/v3-next/descriptors.d.ts +8 -0
- package/dist/types/generated/v3-next/types.d.ts +275 -12
- 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. */
|
|
@@ -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 = {
|
|
@@ -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: "/v3-next/container-template-statistics",
|
|
2842
|
+
method: "GET",
|
|
2843
|
+
operationId: "container-list-template-statistics",
|
|
2844
|
+
};
|
|
2845
|
+
/** Get a Mail RateLimit. */
|
|
2846
|
+
export const mailGetMailRateLimit = {
|
|
2847
|
+
path: "/v3-next/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: "/v3-next/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: "/v3-next/mail-addresses/{mailAddressId}/actions/request-rate-limit-change",
|
|
2860
|
+
method: "POST",
|
|
2861
|
+
operationId: "mail-request-mail-address-rate-limit-change",
|
|
2862
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.406.0';
|
|
@@ -547,6 +547,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
547
547
|
} | undefined;
|
|
548
548
|
queryParameters?: {
|
|
549
549
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
550
|
+
searchTerm?: string | undefined;
|
|
550
551
|
limit?: number | undefined;
|
|
551
552
|
skip?: number | undefined;
|
|
552
553
|
page?: number | undefined;
|
|
@@ -807,6 +808,20 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
807
808
|
page?: number | undefined;
|
|
808
809
|
} | undefined;
|
|
809
810
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
|
|
811
|
+
/** List Container Template statistics. */
|
|
812
|
+
listTemplateStatistics: (conf?: {
|
|
813
|
+
headers?: {
|
|
814
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
815
|
+
} | undefined;
|
|
816
|
+
queryParameters?: {
|
|
817
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
818
|
+
templateId?: string | undefined;
|
|
819
|
+
category?: string | undefined;
|
|
820
|
+
} | undefined;
|
|
821
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
822
|
+
category?: string | undefined;
|
|
823
|
+
templates?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsResponse[] | undefined;
|
|
824
|
+
}>;
|
|
810
825
|
};
|
|
811
826
|
declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
812
827
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -2858,6 +2873,7 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2858
2873
|
isBackupInProgress: boolean;
|
|
2859
2874
|
isCatchAll: boolean;
|
|
2860
2875
|
mailbox?: {
|
|
2876
|
+
mailsystemSettings: import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailsystemSettings;
|
|
2861
2877
|
name: string;
|
|
2862
2878
|
passwordUpdatedAt: string;
|
|
2863
2879
|
sendingEnabled: boolean;
|
|
@@ -2876,6 +2892,9 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2876
2892
|
};
|
|
2877
2893
|
} | undefined;
|
|
2878
2894
|
projectId: string;
|
|
2895
|
+
rateLimitChangeRequest?: {
|
|
2896
|
+
rateLimitId: string;
|
|
2897
|
+
} | undefined;
|
|
2879
2898
|
receivingDisabled: boolean;
|
|
2880
2899
|
updatedAt: string;
|
|
2881
2900
|
}>;
|
|
@@ -2920,6 +2939,24 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2920
2939
|
projectId: string;
|
|
2921
2940
|
whitelist: string[];
|
|
2922
2941
|
}>;
|
|
2942
|
+
/** Get a Mail RateLimit. */
|
|
2943
|
+
getMailRateLimit: (conf: {
|
|
2944
|
+
mailRateLimitId: string;
|
|
2945
|
+
headers?: {
|
|
2946
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2947
|
+
"x-access-token"?: string | undefined;
|
|
2948
|
+
} | undefined;
|
|
2949
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2950
|
+
id: string;
|
|
2951
|
+
rateLimit: number;
|
|
2952
|
+
}>;
|
|
2953
|
+
/** List Mail RateLimits. */
|
|
2954
|
+
listMailRateLimits: (conf?: {
|
|
2955
|
+
headers?: {
|
|
2956
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2957
|
+
"x-access-token"?: string | undefined;
|
|
2958
|
+
} | undefined;
|
|
2959
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[]>;
|
|
2923
2960
|
};
|
|
2924
2961
|
declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
|
|
2925
2962
|
/** List valid time zones. */
|
|
@@ -3883,6 +3883,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3883
3883
|
} | undefined;
|
|
3884
3884
|
queryParameters?: {
|
|
3885
3885
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3886
|
+
searchTerm?: string | undefined;
|
|
3886
3887
|
limit?: number | undefined;
|
|
3887
3888
|
skip?: number | undefined;
|
|
3888
3889
|
page?: number | undefined;
|
|
@@ -3897,6 +3898,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3897
3898
|
};
|
|
3898
3899
|
} & {
|
|
3899
3900
|
queryParameters: {
|
|
3901
|
+
searchTerm?: string | undefined;
|
|
3900
3902
|
limit?: number | undefined;
|
|
3901
3903
|
skip?: number | undefined;
|
|
3902
3904
|
page?: number | undefined;
|
|
@@ -3927,6 +3929,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3927
3929
|
};
|
|
3928
3930
|
} & {
|
|
3929
3931
|
queryParameters: {
|
|
3932
|
+
searchTerm?: string | undefined;
|
|
3930
3933
|
limit?: number | undefined;
|
|
3931
3934
|
skip?: number | undefined;
|
|
3932
3935
|
page?: number | undefined;
|
|
@@ -6122,6 +6125,61 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6122
6125
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6123
6126
|
[x: string]: unknown;
|
|
6124
6127
|
}, 500, "application/json">>>;
|
|
6128
|
+
/** List Container Template statistics. */
|
|
6129
|
+
listTemplateStatistics: (request?: {
|
|
6130
|
+
headers?: {
|
|
6131
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6132
|
+
} | undefined;
|
|
6133
|
+
queryParameters?: {
|
|
6134
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6135
|
+
templateId?: string | undefined;
|
|
6136
|
+
category?: string | undefined;
|
|
6137
|
+
} | undefined;
|
|
6138
|
+
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6139
|
+
headers?: Partial<{
|
|
6140
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6141
|
+
}>;
|
|
6142
|
+
} & {
|
|
6143
|
+
queryParameters: {
|
|
6144
|
+
templateId?: string | undefined;
|
|
6145
|
+
category?: string | undefined;
|
|
6146
|
+
} & Partial<{
|
|
6147
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6148
|
+
}>;
|
|
6149
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6150
|
+
category?: string | undefined;
|
|
6151
|
+
templates?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsResponse[] | undefined;
|
|
6152
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6153
|
+
[x: string]: unknown;
|
|
6154
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6155
|
+
[x: string]: unknown;
|
|
6156
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6157
|
+
[x: string]: unknown;
|
|
6158
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6159
|
+
[x: string]: unknown;
|
|
6160
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6161
|
+
headers?: Partial<{
|
|
6162
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6163
|
+
}>;
|
|
6164
|
+
} & {
|
|
6165
|
+
queryParameters: {
|
|
6166
|
+
templateId?: string | undefined;
|
|
6167
|
+
category?: string | undefined;
|
|
6168
|
+
} & Partial<{
|
|
6169
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6170
|
+
}>;
|
|
6171
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6172
|
+
category?: string | undefined;
|
|
6173
|
+
templates?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsResponse[] | undefined;
|
|
6174
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6175
|
+
[x: string]: unknown;
|
|
6176
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6177
|
+
[x: string]: unknown;
|
|
6178
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6179
|
+
[x: string]: unknown;
|
|
6180
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6181
|
+
[x: string]: unknown;
|
|
6182
|
+
}, 500, "application/json">>>;
|
|
6125
6183
|
};
|
|
6126
6184
|
/** The contract API allows you to manage your contracts and orders */
|
|
6127
6185
|
readonly contract: {
|
|
@@ -21652,6 +21710,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21652
21710
|
isBackupInProgress: boolean;
|
|
21653
21711
|
isCatchAll: boolean;
|
|
21654
21712
|
mailbox?: {
|
|
21713
|
+
mailsystemSettings: import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailsystemSettings;
|
|
21655
21714
|
name: string;
|
|
21656
21715
|
passwordUpdatedAt: string;
|
|
21657
21716
|
sendingEnabled: boolean;
|
|
@@ -21670,6 +21729,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21670
21729
|
};
|
|
21671
21730
|
} | undefined;
|
|
21672
21731
|
projectId: string;
|
|
21732
|
+
rateLimitChangeRequest?: {
|
|
21733
|
+
rateLimitId: string;
|
|
21734
|
+
} | undefined;
|
|
21673
21735
|
receivingDisabled: boolean;
|
|
21674
21736
|
updatedAt: string;
|
|
21675
21737
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -21717,6 +21779,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21717
21779
|
isBackupInProgress: boolean;
|
|
21718
21780
|
isCatchAll: boolean;
|
|
21719
21781
|
mailbox?: {
|
|
21782
|
+
mailsystemSettings: import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailsystemSettings;
|
|
21720
21783
|
name: string;
|
|
21721
21784
|
passwordUpdatedAt: string;
|
|
21722
21785
|
sendingEnabled: boolean;
|
|
@@ -21735,6 +21798,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21735
21798
|
};
|
|
21736
21799
|
} | undefined;
|
|
21737
21800
|
projectId: string;
|
|
21801
|
+
rateLimitChangeRequest?: {
|
|
21802
|
+
rateLimitId: string;
|
|
21803
|
+
} | undefined;
|
|
21738
21804
|
receivingDisabled: boolean;
|
|
21739
21805
|
updatedAt: string;
|
|
21740
21806
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -22426,6 +22492,158 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22426
22492
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22427
22493
|
[x: string]: unknown;
|
|
22428
22494
|
}, 503, "application/json">>>;
|
|
22495
|
+
/** Get a Mail RateLimit. */
|
|
22496
|
+
getMailRateLimit: (request: {
|
|
22497
|
+
mailRateLimitId: string;
|
|
22498
|
+
headers?: {
|
|
22499
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22500
|
+
"x-access-token"?: string | undefined;
|
|
22501
|
+
} | undefined;
|
|
22502
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22503
|
+
headers?: Partial<{
|
|
22504
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22505
|
+
}>;
|
|
22506
|
+
} & {
|
|
22507
|
+
pathParameters: {
|
|
22508
|
+
mailRateLimitId: string;
|
|
22509
|
+
};
|
|
22510
|
+
} & {
|
|
22511
|
+
headers: {
|
|
22512
|
+
"x-access-token"?: string | undefined;
|
|
22513
|
+
} & Partial<{
|
|
22514
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22515
|
+
}>;
|
|
22516
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
22517
|
+
id: string;
|
|
22518
|
+
rateLimit: number;
|
|
22519
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22520
|
+
[x: string]: unknown;
|
|
22521
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22522
|
+
[x: string]: unknown;
|
|
22523
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22524
|
+
headers?: Partial<{
|
|
22525
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22526
|
+
}>;
|
|
22527
|
+
} & {
|
|
22528
|
+
pathParameters: {
|
|
22529
|
+
mailRateLimitId: string;
|
|
22530
|
+
};
|
|
22531
|
+
} & {
|
|
22532
|
+
headers: {
|
|
22533
|
+
"x-access-token"?: string | undefined;
|
|
22534
|
+
} & Partial<{
|
|
22535
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22536
|
+
}>;
|
|
22537
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
22538
|
+
id: string;
|
|
22539
|
+
rateLimit: number;
|
|
22540
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22541
|
+
[x: string]: unknown;
|
|
22542
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22543
|
+
[x: string]: unknown;
|
|
22544
|
+
}, 429, "application/json">>>;
|
|
22545
|
+
/** List Mail RateLimits. */
|
|
22546
|
+
listMailRateLimits: (request?: {
|
|
22547
|
+
headers?: {
|
|
22548
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22549
|
+
"x-access-token"?: string | undefined;
|
|
22550
|
+
} | undefined;
|
|
22551
|
+
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22552
|
+
headers?: Partial<{
|
|
22553
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22554
|
+
}>;
|
|
22555
|
+
} & {
|
|
22556
|
+
headers: {
|
|
22557
|
+
"x-access-token"?: string | undefined;
|
|
22558
|
+
} & Partial<{
|
|
22559
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22560
|
+
}>;
|
|
22561
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22562
|
+
[x: string]: unknown;
|
|
22563
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22564
|
+
headers?: Partial<{
|
|
22565
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22566
|
+
}>;
|
|
22567
|
+
} & {
|
|
22568
|
+
headers: {
|
|
22569
|
+
"x-access-token"?: string | undefined;
|
|
22570
|
+
} & Partial<{
|
|
22571
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22572
|
+
}>;
|
|
22573
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22574
|
+
[x: string]: unknown;
|
|
22575
|
+
}, 429, "application/json">>>;
|
|
22576
|
+
/** Request a rate limit change for a MailAddress. */
|
|
22577
|
+
requestMailAddressRateLimitChange: (request: {
|
|
22578
|
+
data: {
|
|
22579
|
+
rateLimitId: string;
|
|
22580
|
+
};
|
|
22581
|
+
mailAddressId: string;
|
|
22582
|
+
headers?: {
|
|
22583
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22584
|
+
"x-access-token"?: string | undefined;
|
|
22585
|
+
} | undefined;
|
|
22586
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22587
|
+
data: {
|
|
22588
|
+
rateLimitId: string;
|
|
22589
|
+
};
|
|
22590
|
+
} & {
|
|
22591
|
+
pathParameters: {
|
|
22592
|
+
mailAddressId: string;
|
|
22593
|
+
};
|
|
22594
|
+
} & {
|
|
22595
|
+
headers?: Partial<{
|
|
22596
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22597
|
+
}>;
|
|
22598
|
+
} & {
|
|
22599
|
+
headers: {
|
|
22600
|
+
"x-access-token"?: string | undefined;
|
|
22601
|
+
} & Partial<{
|
|
22602
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22603
|
+
}>;
|
|
22604
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
22605
|
+
[x: string]: unknown;
|
|
22606
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22607
|
+
[x: string]: unknown;
|
|
22608
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22609
|
+
[x: string]: unknown;
|
|
22610
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22611
|
+
[x: string]: unknown;
|
|
22612
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22613
|
+
[x: string]: unknown;
|
|
22614
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22615
|
+
[x: string]: unknown;
|
|
22616
|
+
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22617
|
+
data: {
|
|
22618
|
+
rateLimitId: string;
|
|
22619
|
+
};
|
|
22620
|
+
} & {
|
|
22621
|
+
pathParameters: {
|
|
22622
|
+
mailAddressId: string;
|
|
22623
|
+
};
|
|
22624
|
+
} & {
|
|
22625
|
+
headers?: Partial<{
|
|
22626
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22627
|
+
}>;
|
|
22628
|
+
} & {
|
|
22629
|
+
headers: {
|
|
22630
|
+
"x-access-token"?: string | undefined;
|
|
22631
|
+
} & Partial<{
|
|
22632
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22633
|
+
}>;
|
|
22634
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
22635
|
+
[x: string]: unknown;
|
|
22636
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22637
|
+
[x: string]: unknown;
|
|
22638
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22639
|
+
[x: string]: unknown;
|
|
22640
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22641
|
+
[x: string]: unknown;
|
|
22642
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22643
|
+
[x: string]: unknown;
|
|
22644
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22645
|
+
[x: string]: unknown;
|
|
22646
|
+
}, 503, "application/json">>>;
|
|
22429
22647
|
};
|
|
22430
22648
|
/** The notification API allows you to manage your notifications. */
|
|
22431
22649
|
readonly notification: {
|
|
@@ -949,3 +949,11 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
949
949
|
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.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
950
950
|
/** Check if a company exists. */
|
|
951
951
|
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.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
952
|
+
/** List Container Template statistics. */
|
|
953
|
+
export declare const containerListTemplateStatistics: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplateStatistics.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplateStatistics.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplateStatistics.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplateStatistics.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplateStatistics.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplateStatistics.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplateStatistics.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplateStatistics.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplateStatistics.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
954
|
+
/** Get a Mail RateLimit. */
|
|
955
|
+
export declare const mailGetMailRateLimit: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
956
|
+
/** List Mail RateLimits. */
|
|
957
|
+
export declare const mailListMailRateLimits: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
958
|
+
/** Request a rate limit change for a MailAddress. */
|
|
959
|
+
export declare const mailRequestMailAddressRateLimitChange: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdActionsRequestRateLimitChange.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|