@mittwald/api-client 0.0.0-development-585bae3-20250905 → 0.0.0-development-a7ffc6b-20250910
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 +2 -0
- package/dist/esm/generated/v2/descriptors.js +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +16 -0
- package/dist/types/generated/v2/client.d.ts +89 -0
- package/dist/types/generated/v2/descriptors.d.ts +2 -0
- package/dist/types/generated/v2/types.d.ts +77 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -595,6 +595,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
595
595
|
getMailAddress: this.requestFunctionFactory(descriptors.mailGetMailAddress),
|
|
596
596
|
/** Delete a MailAddress. */
|
|
597
597
|
deleteMailAddress: this.requestFunctionFactory(descriptors.mailDeleteMailAddress),
|
|
598
|
+
/** Disable a MailAddress Archive. */
|
|
599
|
+
disableMailArchive: this.requestFunctionFactory(descriptors.mailDisableMailArchive),
|
|
598
600
|
/** List backups belonging to a MailAddress. */
|
|
599
601
|
listBackupsForMailAddress: this.requestFunctionFactory(descriptors.mailListBackupsForMailAddress),
|
|
600
602
|
/** List mail settings of a Project. */
|
|
@@ -1666,6 +1666,12 @@ export const mailDeleteMailAddress = {
|
|
|
1666
1666
|
method: "DELETE",
|
|
1667
1667
|
operationId: "mail-delete-mail-address",
|
|
1668
1668
|
};
|
|
1669
|
+
/** Disable a MailAddress Archive. */
|
|
1670
|
+
export const mailDisableMailArchive = {
|
|
1671
|
+
path: "/v2/mail-archive/{mailArchiveId}",
|
|
1672
|
+
method: "DELETE",
|
|
1673
|
+
operationId: "mail-disable-mail-archive",
|
|
1674
|
+
};
|
|
1669
1675
|
/** List backups belonging to a MailAddress. */
|
|
1670
1676
|
export const mailListBackupsForMailAddress = {
|
|
1671
1677
|
path: "/v2/mail-addresses/{mailAddressId}/backups",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.220.0';
|
|
@@ -1004,6 +1004,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1004
1004
|
contextId?: string | undefined;
|
|
1005
1005
|
extensionId?: string | undefined;
|
|
1006
1006
|
searchTerm?: string | undefined;
|
|
1007
|
+
anchor?: string | undefined;
|
|
1007
1008
|
limit?: number | undefined;
|
|
1008
1009
|
skip?: number | undefined;
|
|
1009
1010
|
page?: number | undefined;
|
|
@@ -1033,6 +1034,9 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1033
1034
|
extensionId: string;
|
|
1034
1035
|
extensionName: string;
|
|
1035
1036
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
1037
|
+
frontendFragments?: {
|
|
1038
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
1039
|
+
} | undefined;
|
|
1036
1040
|
id: string;
|
|
1037
1041
|
pendingInstallation: boolean;
|
|
1038
1042
|
pendingRemoval: boolean;
|
|
@@ -1133,6 +1137,9 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1133
1137
|
extensionId: string;
|
|
1134
1138
|
extensionName: string;
|
|
1135
1139
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
1140
|
+
frontendFragments?: {
|
|
1141
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
1142
|
+
} | undefined;
|
|
1136
1143
|
id: string;
|
|
1137
1144
|
pendingInstallation: boolean;
|
|
1138
1145
|
pendingRemoval: boolean;
|
|
@@ -1160,6 +1167,9 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1160
1167
|
extensionId: string;
|
|
1161
1168
|
extensionName: string;
|
|
1162
1169
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
1170
|
+
frontendFragments?: {
|
|
1171
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
1172
|
+
} | undefined;
|
|
1163
1173
|
id: string;
|
|
1164
1174
|
pendingInstallation: boolean;
|
|
1165
1175
|
pendingRemoval: boolean;
|
|
@@ -2319,6 +2329,7 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2319
2329
|
forwardAddress?: boolean | undefined;
|
|
2320
2330
|
catchAll?: boolean | undefined;
|
|
2321
2331
|
autoResponder?: boolean | undefined;
|
|
2332
|
+
mailArchive?: boolean | undefined;
|
|
2322
2333
|
limit?: number | undefined;
|
|
2323
2334
|
skip?: number | undefined;
|
|
2324
2335
|
page?: number | undefined;
|
|
@@ -2352,6 +2363,11 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2352
2363
|
} | undefined;
|
|
2353
2364
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2354
2365
|
address: string;
|
|
2366
|
+
archive: {
|
|
2367
|
+
active: boolean;
|
|
2368
|
+
quota: number;
|
|
2369
|
+
usedBytes: number;
|
|
2370
|
+
};
|
|
2355
2371
|
autoResponder: {
|
|
2356
2372
|
active: boolean;
|
|
2357
2373
|
expiresAt?: string;
|
|
@@ -7773,6 +7773,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7773
7773
|
contextId?: string | undefined;
|
|
7774
7774
|
extensionId?: string | undefined;
|
|
7775
7775
|
searchTerm?: string | undefined;
|
|
7776
|
+
anchor?: string | undefined;
|
|
7776
7777
|
limit?: number | undefined;
|
|
7777
7778
|
skip?: number | undefined;
|
|
7778
7779
|
page?: number | undefined;
|
|
@@ -7789,6 +7790,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7789
7790
|
contextId?: string | undefined;
|
|
7790
7791
|
extensionId?: string | undefined;
|
|
7791
7792
|
searchTerm?: string | undefined;
|
|
7793
|
+
anchor?: string | undefined;
|
|
7792
7794
|
limit?: number | undefined;
|
|
7793
7795
|
skip?: number | undefined;
|
|
7794
7796
|
page?: number | undefined;
|
|
@@ -7817,6 +7819,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7817
7819
|
contextId?: string | undefined;
|
|
7818
7820
|
extensionId?: string | undefined;
|
|
7819
7821
|
searchTerm?: string | undefined;
|
|
7822
|
+
anchor?: string | undefined;
|
|
7820
7823
|
limit?: number | undefined;
|
|
7821
7824
|
skip?: number | undefined;
|
|
7822
7825
|
page?: number | undefined;
|
|
@@ -7995,6 +7998,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7995
7998
|
extensionId: string;
|
|
7996
7999
|
extensionName: string;
|
|
7997
8000
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
8001
|
+
frontendFragments?: {
|
|
8002
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
8003
|
+
} | undefined;
|
|
7998
8004
|
id: string;
|
|
7999
8005
|
pendingInstallation: boolean;
|
|
8000
8006
|
pendingRemoval: boolean;
|
|
@@ -8031,6 +8037,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8031
8037
|
extensionId: string;
|
|
8032
8038
|
extensionName: string;
|
|
8033
8039
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
8040
|
+
frontendFragments?: {
|
|
8041
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
8042
|
+
} | undefined;
|
|
8034
8043
|
id: string;
|
|
8035
8044
|
pendingInstallation: boolean;
|
|
8036
8045
|
pendingRemoval: boolean;
|
|
@@ -8999,6 +9008,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8999
9008
|
extensionId: string;
|
|
9000
9009
|
extensionName: string;
|
|
9001
9010
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
9011
|
+
frontendFragments?: {
|
|
9012
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
9013
|
+
} | undefined;
|
|
9002
9014
|
id: string;
|
|
9003
9015
|
pendingInstallation: boolean;
|
|
9004
9016
|
pendingRemoval: boolean;
|
|
@@ -9036,6 +9048,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9036
9048
|
extensionId: string;
|
|
9037
9049
|
extensionName: string;
|
|
9038
9050
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
9051
|
+
frontendFragments?: {
|
|
9052
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
9053
|
+
} | undefined;
|
|
9039
9054
|
id: string;
|
|
9040
9055
|
pendingInstallation: boolean;
|
|
9041
9056
|
pendingRemoval: boolean;
|
|
@@ -9082,6 +9097,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9082
9097
|
extensionId: string;
|
|
9083
9098
|
extensionName: string;
|
|
9084
9099
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
9100
|
+
frontendFragments?: {
|
|
9101
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
9102
|
+
} | undefined;
|
|
9085
9103
|
id: string;
|
|
9086
9104
|
pendingInstallation: boolean;
|
|
9087
9105
|
pendingRemoval: boolean;
|
|
@@ -9119,6 +9137,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9119
9137
|
extensionId: string;
|
|
9120
9138
|
extensionName: string;
|
|
9121
9139
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
9140
|
+
frontendFragments?: {
|
|
9141
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
9142
|
+
} | undefined;
|
|
9122
9143
|
id: string;
|
|
9123
9144
|
pendingInstallation: boolean;
|
|
9124
9145
|
pendingRemoval: boolean;
|
|
@@ -17994,6 +18015,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17994
18015
|
forwardAddress?: boolean | undefined;
|
|
17995
18016
|
catchAll?: boolean | undefined;
|
|
17996
18017
|
autoResponder?: boolean | undefined;
|
|
18018
|
+
mailArchive?: boolean | undefined;
|
|
17997
18019
|
limit?: number | undefined;
|
|
17998
18020
|
skip?: number | undefined;
|
|
17999
18021
|
page?: number | undefined;
|
|
@@ -18014,6 +18036,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18014
18036
|
forwardAddress?: boolean | undefined;
|
|
18015
18037
|
catchAll?: boolean | undefined;
|
|
18016
18038
|
autoResponder?: boolean | undefined;
|
|
18039
|
+
mailArchive?: boolean | undefined;
|
|
18017
18040
|
limit?: number | undefined;
|
|
18018
18041
|
skip?: number | undefined;
|
|
18019
18042
|
page?: number | undefined;
|
|
@@ -18054,6 +18077,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18054
18077
|
forwardAddress?: boolean | undefined;
|
|
18055
18078
|
catchAll?: boolean | undefined;
|
|
18056
18079
|
autoResponder?: boolean | undefined;
|
|
18080
|
+
mailArchive?: boolean | undefined;
|
|
18057
18081
|
limit?: number | undefined;
|
|
18058
18082
|
skip?: number | undefined;
|
|
18059
18083
|
page?: number | undefined;
|
|
@@ -18358,6 +18382,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18358
18382
|
}>;
|
|
18359
18383
|
}, import("@mittwald/api-client-commons").Response<{
|
|
18360
18384
|
address: string;
|
|
18385
|
+
archive: {
|
|
18386
|
+
active: boolean;
|
|
18387
|
+
quota: number;
|
|
18388
|
+
usedBytes: number;
|
|
18389
|
+
};
|
|
18361
18390
|
autoResponder: {
|
|
18362
18391
|
active: boolean;
|
|
18363
18392
|
expiresAt?: string;
|
|
@@ -18418,6 +18447,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18418
18447
|
}>;
|
|
18419
18448
|
}, import("@mittwald/api-client-commons").Response<{
|
|
18420
18449
|
address: string;
|
|
18450
|
+
archive: {
|
|
18451
|
+
active: boolean;
|
|
18452
|
+
quota: number;
|
|
18453
|
+
usedBytes: number;
|
|
18454
|
+
};
|
|
18421
18455
|
autoResponder: {
|
|
18422
18456
|
active: boolean;
|
|
18423
18457
|
expiresAt?: string;
|
|
@@ -18523,6 +18557,58 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18523
18557
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18524
18558
|
[x: string]: unknown;
|
|
18525
18559
|
}, 503, "application/json">>>;
|
|
18560
|
+
/** Disable a MailAddress Archive. */
|
|
18561
|
+
disableMailArchive: (request: {
|
|
18562
|
+
mailArchiveId: string;
|
|
18563
|
+
headers?: {
|
|
18564
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18565
|
+
"x-access-token"?: string | undefined;
|
|
18566
|
+
} | undefined;
|
|
18567
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18568
|
+
headers?: Partial<{
|
|
18569
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18570
|
+
}>;
|
|
18571
|
+
} & {
|
|
18572
|
+
pathParameters: {
|
|
18573
|
+
mailArchiveId: string;
|
|
18574
|
+
};
|
|
18575
|
+
} & {
|
|
18576
|
+
headers: {
|
|
18577
|
+
"x-access-token"?: string | undefined;
|
|
18578
|
+
} & Partial<{
|
|
18579
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18580
|
+
}>;
|
|
18581
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18582
|
+
[x: string]: unknown;
|
|
18583
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18584
|
+
[x: string]: unknown;
|
|
18585
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18586
|
+
[x: string]: unknown;
|
|
18587
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18588
|
+
[x: string]: unknown;
|
|
18589
|
+
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18590
|
+
headers?: Partial<{
|
|
18591
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18592
|
+
}>;
|
|
18593
|
+
} & {
|
|
18594
|
+
pathParameters: {
|
|
18595
|
+
mailArchiveId: string;
|
|
18596
|
+
};
|
|
18597
|
+
} & {
|
|
18598
|
+
headers: {
|
|
18599
|
+
"x-access-token"?: string | undefined;
|
|
18600
|
+
} & Partial<{
|
|
18601
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18602
|
+
}>;
|
|
18603
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18604
|
+
[x: string]: unknown;
|
|
18605
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18606
|
+
[x: string]: unknown;
|
|
18607
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18608
|
+
[x: string]: unknown;
|
|
18609
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18610
|
+
[x: string]: unknown;
|
|
18611
|
+
}, 503, "application/json">>>;
|
|
18526
18612
|
/** List backups belonging to a MailAddress. */
|
|
18527
18613
|
listBackupsForMailAddress: (request: {
|
|
18528
18614
|
mailAddressId: string;
|
|
@@ -27012,6 +27098,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
27012
27098
|
};
|
|
27013
27099
|
allDomains?: boolean | undefined;
|
|
27014
27100
|
domains?: import("./types.js").MittwaldAPIV2.Components.Schemas.DirectusDomain[] | undefined;
|
|
27101
|
+
emailInboxes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DirectusEmailInbox[] | undefined;
|
|
27015
27102
|
notes?: string | undefined;
|
|
27016
27103
|
userId?: string | undefined;
|
|
27017
27104
|
};
|
|
@@ -27033,6 +27120,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
27033
27120
|
phoneNumber?: string;
|
|
27034
27121
|
};
|
|
27035
27122
|
domains?: import("./types.js").MittwaldAPIV2.Components.Schemas.DirectusDomain[] | undefined;
|
|
27123
|
+
emailInboxes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DirectusEmailInbox[] | undefined;
|
|
27036
27124
|
notes?: string | undefined;
|
|
27037
27125
|
prices: {
|
|
27038
27126
|
positions: {
|
|
@@ -27079,6 +27167,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
27079
27167
|
phoneNumber?: string;
|
|
27080
27168
|
};
|
|
27081
27169
|
domains?: import("./types.js").MittwaldAPIV2.Components.Schemas.DirectusDomain[] | undefined;
|
|
27170
|
+
emailInboxes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DirectusEmailInbox[] | undefined;
|
|
27082
27171
|
notes?: string | undefined;
|
|
27083
27172
|
prices: {
|
|
27084
27173
|
positions: {
|
|
@@ -559,6 +559,8 @@ export declare const mailDeleteDeliveryBox: OpenAPIOperation<RequestType<Simplif
|
|
|
559
559
|
export declare const mailGetMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
560
560
|
/** Delete a MailAddress. */
|
|
561
561
|
export declare const mailDeleteMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
562
|
+
/** Disable a MailAddress Archive. */
|
|
563
|
+
export declare const mailDisableMailArchive: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
562
564
|
/** List backups belonging to a MailAddress. */
|
|
563
565
|
export declare const mailListBackupsForMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
564
566
|
/** List mail settings of a Project. */
|
|
@@ -1114,6 +1114,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1114
1114
|
type RequestData = InferredRequestData<typeof descriptors.mailDeleteMailAddress>;
|
|
1115
1115
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDeleteMailAddress, TStatus>;
|
|
1116
1116
|
}
|
|
1117
|
+
namespace MailDisableMailArchive {
|
|
1118
|
+
type RequestData = InferredRequestData<typeof descriptors.mailDisableMailArchive>;
|
|
1119
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDisableMailArchive, TStatus>;
|
|
1120
|
+
}
|
|
1117
1121
|
namespace MailListBackupsForMailAddress {
|
|
1118
1122
|
type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
|
|
1119
1123
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
|
|
@@ -2562,7 +2566,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2562
2566
|
* @maxItems 0
|
|
2563
2567
|
*/
|
|
2564
2568
|
files?: [];
|
|
2565
|
-
internal
|
|
2569
|
+
internal?: boolean;
|
|
2566
2570
|
messageContent: "relocation" | "call";
|
|
2567
2571
|
messageId: string;
|
|
2568
2572
|
meta: MittwaldAPIV2.Components.Schemas.ConversationServiceRequestRelocationPayload;
|
|
@@ -3279,6 +3283,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3279
3283
|
extensionId: string;
|
|
3280
3284
|
extensionName: string;
|
|
3281
3285
|
extensionSubTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
|
|
3286
|
+
frontendFragments?: {
|
|
3287
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
3288
|
+
};
|
|
3282
3289
|
id: string;
|
|
3283
3290
|
pendingInstallation: boolean;
|
|
3284
3291
|
pendingRemoval: boolean;
|
|
@@ -3862,6 +3869,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3862
3869
|
companyType: string[];
|
|
3863
3870
|
coreProduct: string[];
|
|
3864
3871
|
name?: string;
|
|
3872
|
+
phoneNumbers: string[];
|
|
3865
3873
|
targetGroup: string[];
|
|
3866
3874
|
websiteType: string[];
|
|
3867
3875
|
};
|
|
@@ -4011,6 +4019,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4011
4019
|
}
|
|
4012
4020
|
interface MailMailAddress {
|
|
4013
4021
|
address: string;
|
|
4022
|
+
archive: {
|
|
4023
|
+
active: boolean;
|
|
4024
|
+
quota: number;
|
|
4025
|
+
usedBytes: number;
|
|
4026
|
+
};
|
|
4014
4027
|
autoResponder: {
|
|
4015
4028
|
active: boolean;
|
|
4016
4029
|
expiresAt?: string;
|
|
@@ -4859,6 +4872,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4859
4872
|
domainOwnerData?: string;
|
|
4860
4873
|
name: string;
|
|
4861
4874
|
}
|
|
4875
|
+
interface DirectusEmailInbox {
|
|
4876
|
+
email: string;
|
|
4877
|
+
password: string;
|
|
4878
|
+
}
|
|
4862
4879
|
interface ScreenshotTarget {
|
|
4863
4880
|
domain: string;
|
|
4864
4881
|
path?: string;
|
|
@@ -15780,6 +15797,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15780
15797
|
contextId?: string;
|
|
15781
15798
|
extensionId?: string;
|
|
15782
15799
|
searchTerm?: string;
|
|
15800
|
+
anchor?: string;
|
|
15783
15801
|
limit?: number;
|
|
15784
15802
|
skip?: number;
|
|
15785
15803
|
page?: number;
|
|
@@ -19357,6 +19375,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19357
19375
|
forwardAddress?: boolean;
|
|
19358
19376
|
catchAll?: boolean;
|
|
19359
19377
|
autoResponder?: boolean;
|
|
19378
|
+
mailArchive?: boolean;
|
|
19360
19379
|
limit?: number;
|
|
19361
19380
|
skip?: number;
|
|
19362
19381
|
page?: number;
|
|
@@ -19754,6 +19773,59 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19754
19773
|
}
|
|
19755
19774
|
}
|
|
19756
19775
|
}
|
|
19776
|
+
namespace V2MailArchiveMailArchiveId {
|
|
19777
|
+
namespace Delete {
|
|
19778
|
+
namespace Parameters {
|
|
19779
|
+
type Path = {
|
|
19780
|
+
mailArchiveId: string;
|
|
19781
|
+
};
|
|
19782
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
19783
|
+
type Query = {};
|
|
19784
|
+
}
|
|
19785
|
+
namespace Responses {
|
|
19786
|
+
namespace $204 {
|
|
19787
|
+
namespace Content {
|
|
19788
|
+
type Empty = unknown;
|
|
19789
|
+
}
|
|
19790
|
+
}
|
|
19791
|
+
namespace $403 {
|
|
19792
|
+
namespace Content {
|
|
19793
|
+
interface ApplicationJson {
|
|
19794
|
+
[k: string]: unknown;
|
|
19795
|
+
}
|
|
19796
|
+
}
|
|
19797
|
+
}
|
|
19798
|
+
namespace $429 {
|
|
19799
|
+
namespace Content {
|
|
19800
|
+
interface ApplicationJson {
|
|
19801
|
+
[k: string]: unknown;
|
|
19802
|
+
}
|
|
19803
|
+
}
|
|
19804
|
+
}
|
|
19805
|
+
namespace $500 {
|
|
19806
|
+
namespace Content {
|
|
19807
|
+
interface ApplicationJson {
|
|
19808
|
+
[k: string]: unknown;
|
|
19809
|
+
}
|
|
19810
|
+
}
|
|
19811
|
+
}
|
|
19812
|
+
namespace $503 {
|
|
19813
|
+
namespace Content {
|
|
19814
|
+
interface ApplicationJson {
|
|
19815
|
+
[k: string]: unknown;
|
|
19816
|
+
}
|
|
19817
|
+
}
|
|
19818
|
+
}
|
|
19819
|
+
namespace Default {
|
|
19820
|
+
namespace Content {
|
|
19821
|
+
interface ApplicationJson {
|
|
19822
|
+
[k: string]: unknown;
|
|
19823
|
+
}
|
|
19824
|
+
}
|
|
19825
|
+
}
|
|
19826
|
+
}
|
|
19827
|
+
}
|
|
19828
|
+
}
|
|
19757
19829
|
namespace V2MailAddressesMailAddressIdBackups {
|
|
19758
19830
|
namespace Get {
|
|
19759
19831
|
namespace Parameters {
|
|
@@ -23296,6 +23368,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23296
23368
|
* List of domains which should be transferred (when allDomains is not checked).
|
|
23297
23369
|
*/
|
|
23298
23370
|
domains?: MittwaldAPIV2.Components.Schemas.DirectusDomain[];
|
|
23371
|
+
/**
|
|
23372
|
+
* List of email inboxes which should be transferred.
|
|
23373
|
+
*/
|
|
23374
|
+
emailInboxes?: MittwaldAPIV2.Components.Schemas.DirectusEmailInbox[];
|
|
23299
23375
|
/**
|
|
23300
23376
|
* Anything our customer service needs to know for the relocation process.
|
|
23301
23377
|
*/
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.220.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "0.0.0-development-
|
|
3
|
+
"version": "0.0.0-development-a7ffc6b-20250910",
|
|
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": "^0.0.0-development-
|
|
49
|
+
"@mittwald/api-client-commons": "^0.0.0-development-a7ffc6b-20250910",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^0.0.0-development-
|
|
53
|
+
"@mittwald/api-code-generator": "^0.0.0-development-a7ffc6b-20250910",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.0",
|
|
55
55
|
"@types/node": "^22.10.1",
|
|
56
56
|
"@types/react": "^18.3.14",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "3726c6f6bfba866fe83e3ec5b760584ed37c5b4e"
|
|
84
84
|
}
|