@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
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. */
|
|
@@ -2333,6 +2348,7 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2333
2348
|
certificateId?: string | undefined;
|
|
2334
2349
|
hostnameSubstring?: string | undefined;
|
|
2335
2350
|
appInstallationId?: string | undefined;
|
|
2351
|
+
containerId?: string | undefined;
|
|
2336
2352
|
limit?: number | undefined;
|
|
2337
2353
|
skip?: number | undefined;
|
|
2338
2354
|
page?: number | undefined;
|
|
@@ -2857,6 +2873,7 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2857
2873
|
isBackupInProgress: boolean;
|
|
2858
2874
|
isCatchAll: boolean;
|
|
2859
2875
|
mailbox?: {
|
|
2876
|
+
mailsystemSettings: import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailsystemSettings;
|
|
2860
2877
|
name: string;
|
|
2861
2878
|
passwordUpdatedAt: string;
|
|
2862
2879
|
sendingEnabled: boolean;
|
|
@@ -2875,6 +2892,9 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2875
2892
|
};
|
|
2876
2893
|
} | undefined;
|
|
2877
2894
|
projectId: string;
|
|
2895
|
+
rateLimitChangeRequest?: {
|
|
2896
|
+
rateLimitId: string;
|
|
2897
|
+
} | undefined;
|
|
2878
2898
|
receivingDisabled: boolean;
|
|
2879
2899
|
updatedAt: string;
|
|
2880
2900
|
}>;
|
|
@@ -2919,6 +2939,24 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2919
2939
|
projectId: string;
|
|
2920
2940
|
whitelist: string[];
|
|
2921
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[]>;
|
|
2922
2960
|
};
|
|
2923
2961
|
declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
|
|
2924
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: {
|
|
@@ -19564,6 +19622,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19564
19622
|
certificateId?: string | undefined;
|
|
19565
19623
|
hostnameSubstring?: string | undefined;
|
|
19566
19624
|
appInstallationId?: string | undefined;
|
|
19625
|
+
containerId?: string | undefined;
|
|
19567
19626
|
limit?: number | undefined;
|
|
19568
19627
|
skip?: number | undefined;
|
|
19569
19628
|
page?: number | undefined;
|
|
@@ -19578,6 +19637,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19578
19637
|
certificateId?: string | undefined;
|
|
19579
19638
|
hostnameSubstring?: string | undefined;
|
|
19580
19639
|
appInstallationId?: string | undefined;
|
|
19640
|
+
containerId?: string | undefined;
|
|
19581
19641
|
limit?: number | undefined;
|
|
19582
19642
|
skip?: number | undefined;
|
|
19583
19643
|
page?: number | undefined;
|
|
@@ -19604,6 +19664,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19604
19664
|
certificateId?: string | undefined;
|
|
19605
19665
|
hostnameSubstring?: string | undefined;
|
|
19606
19666
|
appInstallationId?: string | undefined;
|
|
19667
|
+
containerId?: string | undefined;
|
|
19607
19668
|
limit?: number | undefined;
|
|
19608
19669
|
skip?: number | undefined;
|
|
19609
19670
|
page?: number | undefined;
|
|
@@ -21649,6 +21710,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21649
21710
|
isBackupInProgress: boolean;
|
|
21650
21711
|
isCatchAll: boolean;
|
|
21651
21712
|
mailbox?: {
|
|
21713
|
+
mailsystemSettings: import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailsystemSettings;
|
|
21652
21714
|
name: string;
|
|
21653
21715
|
passwordUpdatedAt: string;
|
|
21654
21716
|
sendingEnabled: boolean;
|
|
@@ -21667,6 +21729,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21667
21729
|
};
|
|
21668
21730
|
} | undefined;
|
|
21669
21731
|
projectId: string;
|
|
21732
|
+
rateLimitChangeRequest?: {
|
|
21733
|
+
rateLimitId: string;
|
|
21734
|
+
} | undefined;
|
|
21670
21735
|
receivingDisabled: boolean;
|
|
21671
21736
|
updatedAt: string;
|
|
21672
21737
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -21714,6 +21779,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21714
21779
|
isBackupInProgress: boolean;
|
|
21715
21780
|
isCatchAll: boolean;
|
|
21716
21781
|
mailbox?: {
|
|
21782
|
+
mailsystemSettings: import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailsystemSettings;
|
|
21717
21783
|
name: string;
|
|
21718
21784
|
passwordUpdatedAt: string;
|
|
21719
21785
|
sendingEnabled: boolean;
|
|
@@ -21732,6 +21798,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21732
21798
|
};
|
|
21733
21799
|
} | undefined;
|
|
21734
21800
|
projectId: string;
|
|
21801
|
+
rateLimitChangeRequest?: {
|
|
21802
|
+
rateLimitId: string;
|
|
21803
|
+
} | undefined;
|
|
21735
21804
|
receivingDisabled: boolean;
|
|
21736
21805
|
updatedAt: string;
|
|
21737
21806
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -22423,6 +22492,158 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22423
22492
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22424
22493
|
[x: string]: unknown;
|
|
22425
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">>>;
|
|
22426
22647
|
};
|
|
22427
22648
|
/** The notification API allows you to manage your notifications. */
|
|
22428
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">>;
|