@mittwald/api-client 4.225.0 → 4.227.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client.js +2 -2
- package/dist/esm/generated/v2/descriptors.js +6 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +3 -0
- package/dist/types/generated/v2/client.d.ts +68 -60
- package/dist/types/generated/v2/descriptors.d.ts +2 -2
- package/dist/types/generated/v2/types.d.ts +100 -84
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -589,6 +589,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
589
589
|
getMailAddress: this.requestFunctionFactory(descriptors.mailGetMailAddress),
|
|
590
590
|
/** Delete a MailAddress. */
|
|
591
591
|
deleteMailAddress: this.requestFunctionFactory(descriptors.mailDeleteMailAddress),
|
|
592
|
+
/** Disable the mail-archive of a MailAddress. */
|
|
593
|
+
disableMailArchive: this.requestFunctionFactory(descriptors.mailDisableMailArchive),
|
|
592
594
|
/** List backups belonging to a MailAddress. */
|
|
593
595
|
listBackupsForMailAddress: this.requestFunctionFactory(descriptors.mailListBackupsForMailAddress),
|
|
594
596
|
/** List mail settings of a Project. */
|
|
@@ -605,8 +607,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
605
607
|
updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
|
|
606
608
|
/** Update a mail setting of a Project. */
|
|
607
609
|
updateProjectMailSetting: this.requestFunctionFactory(descriptors.mailUpdateProjectMailSetting),
|
|
608
|
-
/** Disable the mail-archive of a MailAddress. */
|
|
609
|
-
disableMailArchive: this.requestFunctionFactory(descriptors.mailDisableMailArchive),
|
|
610
610
|
};
|
|
611
611
|
/** The notification API allows you to manage your notifications. */
|
|
612
612
|
notification = {
|
|
@@ -1654,6 +1654,12 @@ export const mailDeleteMailAddress = {
|
|
|
1654
1654
|
method: "DELETE",
|
|
1655
1655
|
operationId: "mail-delete-mail-address",
|
|
1656
1656
|
};
|
|
1657
|
+
/** Disable the mail-archive of a MailAddress. */
|
|
1658
|
+
export const mailDisableMailArchive = {
|
|
1659
|
+
path: "/v2/mail-addresses/{mailAddressId}/mail-archive",
|
|
1660
|
+
method: "DELETE",
|
|
1661
|
+
operationId: "mail-disable-mail-archive",
|
|
1662
|
+
};
|
|
1657
1663
|
/** List backups belonging to a MailAddress. */
|
|
1658
1664
|
export const mailListBackupsForMailAddress = {
|
|
1659
1665
|
path: "/v2/mail-addresses/{mailAddressId}/backups",
|
|
@@ -2536,9 +2542,3 @@ export const verificationVerifyCompany = {
|
|
|
2536
2542
|
method: "POST",
|
|
2537
2543
|
operationId: "verification-verify-company",
|
|
2538
2544
|
};
|
|
2539
|
-
/** Disable the mail-archive of a MailAddress. */
|
|
2540
|
-
export const mailDisableMailArchive = {
|
|
2541
|
-
path: "/v2/mail-addresses/{mailAddressId}/mail-archive",
|
|
2542
|
-
method: "DELETE",
|
|
2543
|
-
operationId: "mail-disable-mail-archive",
|
|
2544
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.226.0';
|
|
@@ -56,6 +56,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
56
56
|
backendPathTemplate?: string | undefined;
|
|
57
57
|
breakingNote?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppBreakingNote | undefined;
|
|
58
58
|
databases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDatabaseDependency[] | undefined;
|
|
59
|
+
defaultCronjobs?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDefaultCronjob[] | undefined;
|
|
59
60
|
docRoot: string;
|
|
60
61
|
docRootUserEditable: boolean;
|
|
61
62
|
externalVersion: string;
|
|
@@ -1200,6 +1201,8 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1200
1201
|
limit?: number | undefined;
|
|
1201
1202
|
skip?: number | undefined;
|
|
1202
1203
|
page?: number | undefined;
|
|
1204
|
+
sort?: "name" | undefined;
|
|
1205
|
+
order?: "asc" | "desc" | undefined;
|
|
1203
1206
|
} | undefined;
|
|
1204
1207
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[]>;
|
|
1205
1208
|
/** List Extensions. */
|
|
@@ -324,6 +324,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
324
324
|
backendPathTemplate?: string | undefined;
|
|
325
325
|
breakingNote?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppBreakingNote | undefined;
|
|
326
326
|
databases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDatabaseDependency[] | undefined;
|
|
327
|
+
defaultCronjobs?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDefaultCronjob[] | undefined;
|
|
327
328
|
docRoot: string;
|
|
328
329
|
docRootUserEditable: boolean;
|
|
329
330
|
externalVersion: string;
|
|
@@ -357,6 +358,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
357
358
|
backendPathTemplate?: string | undefined;
|
|
358
359
|
breakingNote?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppBreakingNote | undefined;
|
|
359
360
|
databases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDatabaseDependency[] | undefined;
|
|
361
|
+
defaultCronjobs?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDefaultCronjob[] | undefined;
|
|
360
362
|
docRoot: string;
|
|
361
363
|
docRootUserEditable: boolean;
|
|
362
364
|
externalVersion: string;
|
|
@@ -9207,6 +9209,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9207
9209
|
limit?: number | undefined;
|
|
9208
9210
|
skip?: number | undefined;
|
|
9209
9211
|
page?: number | undefined;
|
|
9212
|
+
sort?: "name" | undefined;
|
|
9213
|
+
order?: "asc" | "desc" | undefined;
|
|
9210
9214
|
} | undefined;
|
|
9211
9215
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9212
9216
|
headers?: Partial<{
|
|
@@ -9217,6 +9221,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9217
9221
|
limit?: number | undefined;
|
|
9218
9222
|
skip?: number | undefined;
|
|
9219
9223
|
page?: number | undefined;
|
|
9224
|
+
sort?: "name" | undefined;
|
|
9225
|
+
order?: "asc" | "desc" | undefined;
|
|
9220
9226
|
} & Partial<{
|
|
9221
9227
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9222
9228
|
}>;
|
|
@@ -9231,6 +9237,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9231
9237
|
limit?: number | undefined;
|
|
9232
9238
|
skip?: number | undefined;
|
|
9233
9239
|
page?: number | undefined;
|
|
9240
|
+
sort?: "name" | undefined;
|
|
9241
|
+
order?: "asc" | "desc" | undefined;
|
|
9234
9242
|
} & Partial<{
|
|
9235
9243
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9236
9244
|
}>;
|
|
@@ -18346,6 +18354,66 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18346
18354
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18347
18355
|
[x: string]: unknown;
|
|
18348
18356
|
}, 503, "application/json">>>;
|
|
18357
|
+
/** Disable the mail-archive of a MailAddress. */
|
|
18358
|
+
disableMailArchive: (request: {
|
|
18359
|
+
mailAddressId: string;
|
|
18360
|
+
headers?: {
|
|
18361
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18362
|
+
"x-access-token"?: string | undefined;
|
|
18363
|
+
} | undefined;
|
|
18364
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18365
|
+
headers?: Partial<{
|
|
18366
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18367
|
+
}>;
|
|
18368
|
+
} & {
|
|
18369
|
+
pathParameters: {
|
|
18370
|
+
mailAddressId: string;
|
|
18371
|
+
};
|
|
18372
|
+
} & {
|
|
18373
|
+
headers: {
|
|
18374
|
+
"x-access-token"?: string | undefined;
|
|
18375
|
+
} & Partial<{
|
|
18376
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18377
|
+
}>;
|
|
18378
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18379
|
+
[x: string]: unknown;
|
|
18380
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18381
|
+
[x: string]: unknown;
|
|
18382
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18383
|
+
[x: string]: unknown;
|
|
18384
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18385
|
+
[x: string]: unknown;
|
|
18386
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18387
|
+
[x: string]: unknown;
|
|
18388
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18389
|
+
[x: string]: unknown;
|
|
18390
|
+
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18391
|
+
headers?: Partial<{
|
|
18392
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18393
|
+
}>;
|
|
18394
|
+
} & {
|
|
18395
|
+
pathParameters: {
|
|
18396
|
+
mailAddressId: string;
|
|
18397
|
+
};
|
|
18398
|
+
} & {
|
|
18399
|
+
headers: {
|
|
18400
|
+
"x-access-token"?: string | undefined;
|
|
18401
|
+
} & Partial<{
|
|
18402
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18403
|
+
}>;
|
|
18404
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18405
|
+
[x: string]: unknown;
|
|
18406
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18407
|
+
[x: string]: unknown;
|
|
18408
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18409
|
+
[x: string]: unknown;
|
|
18410
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18411
|
+
[x: string]: unknown;
|
|
18412
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18413
|
+
[x: string]: unknown;
|
|
18414
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18415
|
+
[x: string]: unknown;
|
|
18416
|
+
}, 503, "application/json">>>;
|
|
18349
18417
|
/** List backups belonging to a MailAddress. */
|
|
18350
18418
|
listBackupsForMailAddress: (request: {
|
|
18351
18419
|
mailAddressId: string;
|
|
@@ -18897,66 +18965,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18897
18965
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18898
18966
|
[x: string]: unknown;
|
|
18899
18967
|
}, 503, "application/json">>>;
|
|
18900
|
-
/** Disable the mail-archive of a MailAddress. */
|
|
18901
|
-
disableMailArchive: (request: {
|
|
18902
|
-
mailAddressId: string;
|
|
18903
|
-
headers?: {
|
|
18904
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18905
|
-
"x-access-token"?: string | undefined;
|
|
18906
|
-
} | undefined;
|
|
18907
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18908
|
-
headers?: Partial<{
|
|
18909
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18910
|
-
}>;
|
|
18911
|
-
} & {
|
|
18912
|
-
pathParameters: {
|
|
18913
|
-
mailAddressId: string;
|
|
18914
|
-
};
|
|
18915
|
-
} & {
|
|
18916
|
-
headers: {
|
|
18917
|
-
"x-access-token"?: string | undefined;
|
|
18918
|
-
} & Partial<{
|
|
18919
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18920
|
-
}>;
|
|
18921
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18922
|
-
[x: string]: unknown;
|
|
18923
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18924
|
-
[x: string]: unknown;
|
|
18925
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18926
|
-
[x: string]: unknown;
|
|
18927
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18928
|
-
[x: string]: unknown;
|
|
18929
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18930
|
-
[x: string]: unknown;
|
|
18931
|
-
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18932
|
-
[x: string]: unknown;
|
|
18933
|
-
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18934
|
-
headers?: Partial<{
|
|
18935
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18936
|
-
}>;
|
|
18937
|
-
} & {
|
|
18938
|
-
pathParameters: {
|
|
18939
|
-
mailAddressId: string;
|
|
18940
|
-
};
|
|
18941
|
-
} & {
|
|
18942
|
-
headers: {
|
|
18943
|
-
"x-access-token"?: string | undefined;
|
|
18944
|
-
} & Partial<{
|
|
18945
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18946
|
-
}>;
|
|
18947
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18948
|
-
[x: string]: unknown;
|
|
18949
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18950
|
-
[x: string]: unknown;
|
|
18951
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18952
|
-
[x: string]: unknown;
|
|
18953
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18954
|
-
[x: string]: unknown;
|
|
18955
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18956
|
-
[x: string]: unknown;
|
|
18957
|
-
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18958
|
-
[x: string]: unknown;
|
|
18959
|
-
}, 503, "application/json">>>;
|
|
18960
18968
|
};
|
|
18961
18969
|
/** The notification API allows you to manage your notifications. */
|
|
18962
18970
|
readonly notification: {
|
|
@@ -555,6 +555,8 @@ export declare const mailDeleteDeliveryBox: OpenAPIOperation<RequestType<Simplif
|
|
|
555
555
|
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">>;
|
|
556
556
|
/** Delete a MailAddress. */
|
|
557
557
|
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">>;
|
|
558
|
+
/** Disable the mail-archive of a MailAddress. */
|
|
559
|
+
export declare const mailDisableMailArchive: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
558
560
|
/** List backups belonging to a MailAddress. */
|
|
559
561
|
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">>;
|
|
560
562
|
/** List mail settings of a Project. */
|
|
@@ -849,5 +851,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
849
851
|
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.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
850
852
|
/** Check if a company exists. */
|
|
851
853
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
852
|
-
/** Disable the mail-archive of a MailAddress. */
|
|
853
|
-
export declare const mailDisableMailArchive: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1106,6 +1106,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1106
1106
|
type RequestData = InferredRequestData<typeof descriptors.mailDeleteMailAddress>;
|
|
1107
1107
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDeleteMailAddress, TStatus>;
|
|
1108
1108
|
}
|
|
1109
|
+
namespace MailDisableMailArchive {
|
|
1110
|
+
type RequestData = InferredRequestData<typeof descriptors.mailDisableMailArchive>;
|
|
1111
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDisableMailArchive, TStatus>;
|
|
1112
|
+
}
|
|
1109
1113
|
namespace MailListBackupsForMailAddress {
|
|
1110
1114
|
type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
|
|
1111
1115
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
|
|
@@ -1694,10 +1698,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1694
1698
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1695
1699
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1696
1700
|
}
|
|
1697
|
-
namespace MailDisableMailArchive {
|
|
1698
|
-
type RequestData = InferredRequestData<typeof descriptors.mailDisableMailArchive>;
|
|
1699
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDisableMailArchive, TStatus>;
|
|
1700
|
-
}
|
|
1701
1701
|
}
|
|
1702
1702
|
namespace Components {
|
|
1703
1703
|
namespace Schemas {
|
|
@@ -1793,6 +1793,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1793
1793
|
backendPathTemplate?: string;
|
|
1794
1794
|
breakingNote?: MittwaldAPIV2.Components.Schemas.AppBreakingNote;
|
|
1795
1795
|
databases?: MittwaldAPIV2.Components.Schemas.AppDatabaseDependency[];
|
|
1796
|
+
defaultCronjobs?: MittwaldAPIV2.Components.Schemas.AppDefaultCronjob[];
|
|
1796
1797
|
docRoot: string;
|
|
1797
1798
|
docRootUserEditable: boolean;
|
|
1798
1799
|
externalVersion: string;
|
|
@@ -1809,6 +1810,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1809
1810
|
interface AppBreakingNote {
|
|
1810
1811
|
faqLink: string;
|
|
1811
1812
|
}
|
|
1813
|
+
interface AppCronjobCommand {
|
|
1814
|
+
interpreterTemplate?: string;
|
|
1815
|
+
parametersTemplate?: string;
|
|
1816
|
+
pathTemplate?: string;
|
|
1817
|
+
}
|
|
1812
1818
|
/**
|
|
1813
1819
|
* A DatabaseDependency is a generic description of need for a database, used by AppVersions.
|
|
1814
1820
|
*/
|
|
@@ -1820,6 +1826,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1820
1826
|
};
|
|
1821
1827
|
version: string;
|
|
1822
1828
|
}
|
|
1829
|
+
interface AppDefaultCronjob {
|
|
1830
|
+
active: boolean;
|
|
1831
|
+
command?: MittwaldAPIV2.Components.Schemas.AppCronjobCommand;
|
|
1832
|
+
description: string;
|
|
1833
|
+
interval: string;
|
|
1834
|
+
timeout: number;
|
|
1835
|
+
urlTemplate?: string;
|
|
1836
|
+
}
|
|
1823
1837
|
interface AppError {
|
|
1824
1838
|
message: string;
|
|
1825
1839
|
type: string;
|
|
@@ -4457,6 +4471,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4457
4471
|
interface OrderMachineTypeSpec {
|
|
4458
4472
|
machineType?: string;
|
|
4459
4473
|
}
|
|
4474
|
+
interface OrderMailArchiveOrderPreviewResponse {
|
|
4475
|
+
feePrice: number;
|
|
4476
|
+
recurringPrice: number;
|
|
4477
|
+
totalPrice: number;
|
|
4478
|
+
}
|
|
4479
|
+
interface OrderMailArchiveOrderPreview {
|
|
4480
|
+
mailAddressId: string;
|
|
4481
|
+
syncExistingMails?: boolean;
|
|
4482
|
+
}
|
|
4483
|
+
interface OrderMailArchiveOrder {
|
|
4484
|
+
mailAddressId: string;
|
|
4485
|
+
syncExistingMails?: boolean;
|
|
4486
|
+
}
|
|
4460
4487
|
interface OrderOrderItem {
|
|
4461
4488
|
addons?: MittwaldAPIV2.Components.Schemas.OrderAddons[];
|
|
4462
4489
|
articleId: string;
|
|
@@ -5280,19 +5307,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5280
5307
|
}
|
|
5281
5308
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5282
5309
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5283
|
-
interface OrderMailArchiveOrder {
|
|
5284
|
-
mailAddressId: string;
|
|
5285
|
-
syncExistingMails?: boolean;
|
|
5286
|
-
}
|
|
5287
|
-
interface OrderMailArchiveOrderPreview {
|
|
5288
|
-
mailAddressId: string;
|
|
5289
|
-
syncExistingMails?: boolean;
|
|
5290
|
-
}
|
|
5291
|
-
interface OrderMailArchiveOrderPreviewResponse {
|
|
5292
|
-
feePrice: number;
|
|
5293
|
-
recurringPrice: number;
|
|
5294
|
-
totalPrice: number;
|
|
5295
|
-
}
|
|
5296
5310
|
interface CommonsAddress {
|
|
5297
5311
|
street: string;
|
|
5298
5312
|
houseNumber: string;
|
|
@@ -16734,6 +16748,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16734
16748
|
limit?: number;
|
|
16735
16749
|
skip?: number;
|
|
16736
16750
|
page?: number;
|
|
16751
|
+
sort?: "name";
|
|
16752
|
+
order?: "asc" | "desc";
|
|
16737
16753
|
};
|
|
16738
16754
|
}
|
|
16739
16755
|
namespace Responses {
|
|
@@ -19691,6 +19707,73 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19691
19707
|
}
|
|
19692
19708
|
}
|
|
19693
19709
|
}
|
|
19710
|
+
namespace V2MailAddressesMailAddressIdMailArchive {
|
|
19711
|
+
namespace Delete {
|
|
19712
|
+
namespace Parameters {
|
|
19713
|
+
type Path = {
|
|
19714
|
+
mailAddressId: string;
|
|
19715
|
+
};
|
|
19716
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
19717
|
+
type Query = {};
|
|
19718
|
+
}
|
|
19719
|
+
namespace Responses {
|
|
19720
|
+
namespace $204 {
|
|
19721
|
+
namespace Content {
|
|
19722
|
+
type Empty = unknown;
|
|
19723
|
+
}
|
|
19724
|
+
}
|
|
19725
|
+
namespace $400 {
|
|
19726
|
+
namespace Content {
|
|
19727
|
+
interface ApplicationJson {
|
|
19728
|
+
[k: string]: unknown;
|
|
19729
|
+
}
|
|
19730
|
+
}
|
|
19731
|
+
}
|
|
19732
|
+
namespace $403 {
|
|
19733
|
+
namespace Content {
|
|
19734
|
+
interface ApplicationJson {
|
|
19735
|
+
[k: string]: unknown;
|
|
19736
|
+
}
|
|
19737
|
+
}
|
|
19738
|
+
}
|
|
19739
|
+
namespace $404 {
|
|
19740
|
+
namespace Content {
|
|
19741
|
+
interface ApplicationJson {
|
|
19742
|
+
[k: string]: unknown;
|
|
19743
|
+
}
|
|
19744
|
+
}
|
|
19745
|
+
}
|
|
19746
|
+
namespace $429 {
|
|
19747
|
+
namespace Content {
|
|
19748
|
+
interface ApplicationJson {
|
|
19749
|
+
[k: string]: unknown;
|
|
19750
|
+
}
|
|
19751
|
+
}
|
|
19752
|
+
}
|
|
19753
|
+
namespace $500 {
|
|
19754
|
+
namespace Content {
|
|
19755
|
+
interface ApplicationJson {
|
|
19756
|
+
[k: string]: unknown;
|
|
19757
|
+
}
|
|
19758
|
+
}
|
|
19759
|
+
}
|
|
19760
|
+
namespace $503 {
|
|
19761
|
+
namespace Content {
|
|
19762
|
+
interface ApplicationJson {
|
|
19763
|
+
[k: string]: unknown;
|
|
19764
|
+
}
|
|
19765
|
+
}
|
|
19766
|
+
}
|
|
19767
|
+
namespace Default {
|
|
19768
|
+
namespace Content {
|
|
19769
|
+
interface ApplicationJson {
|
|
19770
|
+
[k: string]: unknown;
|
|
19771
|
+
}
|
|
19772
|
+
}
|
|
19773
|
+
}
|
|
19774
|
+
}
|
|
19775
|
+
}
|
|
19776
|
+
}
|
|
19694
19777
|
namespace V2MailAddressesMailAddressIdBackups {
|
|
19695
19778
|
namespace Get {
|
|
19696
19779
|
namespace Parameters {
|
|
@@ -26823,72 +26906,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26823
26906
|
}
|
|
26824
26907
|
}
|
|
26825
26908
|
}
|
|
26826
|
-
namespace V2MailAddressesMailAddressIdMailArchive {
|
|
26827
|
-
namespace Delete {
|
|
26828
|
-
namespace Parameters {
|
|
26829
|
-
type Path = {
|
|
26830
|
-
mailAddressId: string;
|
|
26831
|
-
};
|
|
26832
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
26833
|
-
type Query = {};
|
|
26834
|
-
}
|
|
26835
|
-
namespace Responses {
|
|
26836
|
-
namespace $204 {
|
|
26837
|
-
namespace Content {
|
|
26838
|
-
type Empty = unknown;
|
|
26839
|
-
}
|
|
26840
|
-
}
|
|
26841
|
-
namespace $400 {
|
|
26842
|
-
namespace Content {
|
|
26843
|
-
interface ApplicationJson {
|
|
26844
|
-
[k: string]: unknown;
|
|
26845
|
-
}
|
|
26846
|
-
}
|
|
26847
|
-
}
|
|
26848
|
-
namespace $403 {
|
|
26849
|
-
namespace Content {
|
|
26850
|
-
interface ApplicationJson {
|
|
26851
|
-
[k: string]: unknown;
|
|
26852
|
-
}
|
|
26853
|
-
}
|
|
26854
|
-
}
|
|
26855
|
-
namespace $404 {
|
|
26856
|
-
namespace Content {
|
|
26857
|
-
interface ApplicationJson {
|
|
26858
|
-
[k: string]: unknown;
|
|
26859
|
-
}
|
|
26860
|
-
}
|
|
26861
|
-
}
|
|
26862
|
-
namespace $429 {
|
|
26863
|
-
namespace Content {
|
|
26864
|
-
interface ApplicationJson {
|
|
26865
|
-
[k: string]: unknown;
|
|
26866
|
-
}
|
|
26867
|
-
}
|
|
26868
|
-
}
|
|
26869
|
-
namespace $500 {
|
|
26870
|
-
namespace Content {
|
|
26871
|
-
interface ApplicationJson {
|
|
26872
|
-
[k: string]: unknown;
|
|
26873
|
-
}
|
|
26874
|
-
}
|
|
26875
|
-
}
|
|
26876
|
-
namespace $503 {
|
|
26877
|
-
namespace Content {
|
|
26878
|
-
interface ApplicationJson {
|
|
26879
|
-
[k: string]: unknown;
|
|
26880
|
-
}
|
|
26881
|
-
}
|
|
26882
|
-
}
|
|
26883
|
-
namespace Default {
|
|
26884
|
-
namespace Content {
|
|
26885
|
-
interface ApplicationJson {
|
|
26886
|
-
[k: string]: unknown;
|
|
26887
|
-
}
|
|
26888
|
-
}
|
|
26889
|
-
}
|
|
26890
|
-
}
|
|
26891
|
-
}
|
|
26892
|
-
}
|
|
26893
26909
|
}
|
|
26894
26910
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.226.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.227.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "505bc03c60cc5bda4dcf5acd26fdf140b7895fbe"
|
|
84
84
|
}
|