@mittwald/api-client 4.224.1 → 4.226.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 +85 -70
- package/dist/types/generated/v2/descriptors.d.ts +2 -2
- package/dist/types/generated/v2/types.d.ts +91 -76
- 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.225.0';
|
|
@@ -1018,6 +1018,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1018
1018
|
id: string;
|
|
1019
1019
|
pendingInstallation: boolean;
|
|
1020
1020
|
pendingRemoval: boolean;
|
|
1021
|
+
variantKey?: string | undefined;
|
|
1021
1022
|
}>;
|
|
1022
1023
|
/** Get Extension of own contributor. */
|
|
1023
1024
|
extensionGetOwnExtension: (conf: {
|
|
@@ -1121,6 +1122,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1121
1122
|
id: string;
|
|
1122
1123
|
pendingInstallation: boolean;
|
|
1123
1124
|
pendingRemoval: boolean;
|
|
1125
|
+
variantKey?: string | undefined;
|
|
1124
1126
|
}>;
|
|
1125
1127
|
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
1126
1128
|
extensionGetExtensionInstanceForProject: (conf: {
|
|
@@ -1151,6 +1153,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1151
1153
|
id: string;
|
|
1152
1154
|
pendingInstallation: boolean;
|
|
1153
1155
|
pendingRemoval: boolean;
|
|
1156
|
+
variantKey?: string | undefined;
|
|
1154
1157
|
}>;
|
|
1155
1158
|
/** Get an Extension. */
|
|
1156
1159
|
extensionGetExtension: (conf: {
|
|
@@ -5663,8 +5663,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5663
5663
|
customerId: string;
|
|
5664
5664
|
reservationLimit: number;
|
|
5665
5665
|
unlockLimit: number;
|
|
5666
|
+
} | {
|
|
5667
|
+
mailAddressId: string;
|
|
5668
|
+
syncExistingMails?: boolean | undefined;
|
|
5666
5669
|
} | undefined;
|
|
5667
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
5670
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
5668
5671
|
} | undefined;
|
|
5669
5672
|
headers?: {
|
|
5670
5673
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -5672,8 +5675,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5672
5675
|
} | undefined;
|
|
5673
5676
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5674
5677
|
data: {
|
|
5675
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder) | undefined;
|
|
5676
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
5678
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder) | undefined;
|
|
5679
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
5677
5680
|
};
|
|
5678
5681
|
} & {
|
|
5679
5682
|
headers?: Partial<{
|
|
@@ -5693,8 +5696,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5693
5696
|
[x: string]: unknown;
|
|
5694
5697
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5695
5698
|
data: {
|
|
5696
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder) | undefined;
|
|
5697
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
5699
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder) | undefined;
|
|
5700
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
5698
5701
|
};
|
|
5699
5702
|
} & {
|
|
5700
5703
|
headers?: Partial<{
|
|
@@ -6021,16 +6024,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6021
6024
|
} | {
|
|
6022
6025
|
reservationLimit: number;
|
|
6023
6026
|
unlockLimit: number;
|
|
6027
|
+
} | {
|
|
6028
|
+
mailAddressId: string;
|
|
6029
|
+
syncExistingMails?: boolean | undefined;
|
|
6024
6030
|
} | undefined;
|
|
6025
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
6031
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
6026
6032
|
} | undefined;
|
|
6027
6033
|
headers?: {
|
|
6028
6034
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6029
6035
|
} | undefined;
|
|
6030
6036
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6031
6037
|
data: {
|
|
6032
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview) | undefined;
|
|
6033
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
6038
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview) | undefined;
|
|
6039
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
6034
6040
|
};
|
|
6035
6041
|
} & {
|
|
6036
6042
|
headers?: Partial<{
|
|
@@ -6044,8 +6050,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6044
6050
|
[x: string]: unknown;
|
|
6045
6051
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6046
6052
|
data: {
|
|
6047
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview) | undefined;
|
|
6048
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
6053
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview) | undefined;
|
|
6054
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | undefined;
|
|
6049
6055
|
};
|
|
6050
6056
|
} & {
|
|
6051
6057
|
headers?: Partial<{
|
|
@@ -7677,6 +7683,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7677
7683
|
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
7678
7684
|
contextId: string;
|
|
7679
7685
|
extensionId: string;
|
|
7686
|
+
variantKey?: string | undefined;
|
|
7680
7687
|
};
|
|
7681
7688
|
headers?: {
|
|
7682
7689
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -7688,6 +7695,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7688
7695
|
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
7689
7696
|
contextId: string;
|
|
7690
7697
|
extensionId: string;
|
|
7698
|
+
variantKey?: string | undefined;
|
|
7691
7699
|
};
|
|
7692
7700
|
} & {
|
|
7693
7701
|
headers?: Partial<{
|
|
@@ -7718,6 +7726,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7718
7726
|
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
7719
7727
|
contextId: string;
|
|
7720
7728
|
extensionId: string;
|
|
7729
|
+
variantKey?: string | undefined;
|
|
7721
7730
|
};
|
|
7722
7731
|
} & {
|
|
7723
7732
|
headers?: Partial<{
|
|
@@ -7835,6 +7844,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7835
7844
|
id: string;
|
|
7836
7845
|
pendingInstallation: boolean;
|
|
7837
7846
|
pendingRemoval: boolean;
|
|
7847
|
+
variantKey?: string | undefined;
|
|
7838
7848
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7839
7849
|
[x: string]: unknown;
|
|
7840
7850
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -7874,6 +7884,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7874
7884
|
id: string;
|
|
7875
7885
|
pendingInstallation: boolean;
|
|
7876
7886
|
pendingRemoval: boolean;
|
|
7887
|
+
variantKey?: string | undefined;
|
|
7877
7888
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7878
7889
|
[x: string]: unknown;
|
|
7879
7890
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -8845,6 +8856,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8845
8856
|
id: string;
|
|
8846
8857
|
pendingInstallation: boolean;
|
|
8847
8858
|
pendingRemoval: boolean;
|
|
8859
|
+
variantKey?: string | undefined;
|
|
8848
8860
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8849
8861
|
[x: string]: unknown;
|
|
8850
8862
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -8885,6 +8897,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8885
8897
|
id: string;
|
|
8886
8898
|
pendingInstallation: boolean;
|
|
8887
8899
|
pendingRemoval: boolean;
|
|
8900
|
+
variantKey?: string | undefined;
|
|
8888
8901
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8889
8902
|
[x: string]: unknown;
|
|
8890
8903
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -8934,6 +8947,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8934
8947
|
id: string;
|
|
8935
8948
|
pendingInstallation: boolean;
|
|
8936
8949
|
pendingRemoval: boolean;
|
|
8950
|
+
variantKey?: string | undefined;
|
|
8937
8951
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8938
8952
|
[x: string]: unknown;
|
|
8939
8953
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -8974,6 +8988,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8974
8988
|
id: string;
|
|
8975
8989
|
pendingInstallation: boolean;
|
|
8976
8990
|
pendingRemoval: boolean;
|
|
8991
|
+
variantKey?: string | undefined;
|
|
8977
8992
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8978
8993
|
[x: string]: unknown;
|
|
8979
8994
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -18331,6 +18346,66 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18331
18346
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18332
18347
|
[x: string]: unknown;
|
|
18333
18348
|
}, 503, "application/json">>>;
|
|
18349
|
+
/** Disable the mail-archive of a MailAddress. */
|
|
18350
|
+
disableMailArchive: (request: {
|
|
18351
|
+
mailAddressId: string;
|
|
18352
|
+
headers?: {
|
|
18353
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18354
|
+
"x-access-token"?: string | undefined;
|
|
18355
|
+
} | undefined;
|
|
18356
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18357
|
+
headers?: Partial<{
|
|
18358
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18359
|
+
}>;
|
|
18360
|
+
} & {
|
|
18361
|
+
pathParameters: {
|
|
18362
|
+
mailAddressId: string;
|
|
18363
|
+
};
|
|
18364
|
+
} & {
|
|
18365
|
+
headers: {
|
|
18366
|
+
"x-access-token"?: string | undefined;
|
|
18367
|
+
} & Partial<{
|
|
18368
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18369
|
+
}>;
|
|
18370
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18371
|
+
[x: string]: unknown;
|
|
18372
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18373
|
+
[x: string]: unknown;
|
|
18374
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18375
|
+
[x: string]: unknown;
|
|
18376
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18377
|
+
[x: string]: unknown;
|
|
18378
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18379
|
+
[x: string]: unknown;
|
|
18380
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18381
|
+
[x: string]: unknown;
|
|
18382
|
+
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18383
|
+
headers?: Partial<{
|
|
18384
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18385
|
+
}>;
|
|
18386
|
+
} & {
|
|
18387
|
+
pathParameters: {
|
|
18388
|
+
mailAddressId: string;
|
|
18389
|
+
};
|
|
18390
|
+
} & {
|
|
18391
|
+
headers: {
|
|
18392
|
+
"x-access-token"?: string | undefined;
|
|
18393
|
+
} & Partial<{
|
|
18394
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18395
|
+
}>;
|
|
18396
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18397
|
+
[x: string]: unknown;
|
|
18398
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18399
|
+
[x: string]: unknown;
|
|
18400
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18401
|
+
[x: string]: unknown;
|
|
18402
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18403
|
+
[x: string]: unknown;
|
|
18404
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18405
|
+
[x: string]: unknown;
|
|
18406
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18407
|
+
[x: string]: unknown;
|
|
18408
|
+
}, 503, "application/json">>>;
|
|
18334
18409
|
/** List backups belonging to a MailAddress. */
|
|
18335
18410
|
listBackupsForMailAddress: (request: {
|
|
18336
18411
|
mailAddressId: string;
|
|
@@ -18882,66 +18957,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18882
18957
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18883
18958
|
[x: string]: unknown;
|
|
18884
18959
|
}, 503, "application/json">>>;
|
|
18885
|
-
/** Disable the mail-archive of a MailAddress. */
|
|
18886
|
-
disableMailArchive: (request: {
|
|
18887
|
-
mailAddressId: string;
|
|
18888
|
-
headers?: {
|
|
18889
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18890
|
-
"x-access-token"?: string | undefined;
|
|
18891
|
-
} | undefined;
|
|
18892
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18893
|
-
headers?: Partial<{
|
|
18894
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18895
|
-
}>;
|
|
18896
|
-
} & {
|
|
18897
|
-
pathParameters: {
|
|
18898
|
-
mailAddressId: string;
|
|
18899
|
-
};
|
|
18900
|
-
} & {
|
|
18901
|
-
headers: {
|
|
18902
|
-
"x-access-token"?: string | undefined;
|
|
18903
|
-
} & Partial<{
|
|
18904
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18905
|
-
}>;
|
|
18906
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18907
|
-
[x: string]: unknown;
|
|
18908
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18909
|
-
[x: string]: unknown;
|
|
18910
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18911
|
-
[x: string]: unknown;
|
|
18912
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18913
|
-
[x: string]: unknown;
|
|
18914
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18915
|
-
[x: string]: unknown;
|
|
18916
|
-
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18917
|
-
[x: string]: unknown;
|
|
18918
|
-
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18919
|
-
headers?: Partial<{
|
|
18920
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18921
|
-
}>;
|
|
18922
|
-
} & {
|
|
18923
|
-
pathParameters: {
|
|
18924
|
-
mailAddressId: string;
|
|
18925
|
-
};
|
|
18926
|
-
} & {
|
|
18927
|
-
headers: {
|
|
18928
|
-
"x-access-token"?: string | undefined;
|
|
18929
|
-
} & Partial<{
|
|
18930
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18931
|
-
}>;
|
|
18932
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18933
|
-
[x: string]: unknown;
|
|
18934
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18935
|
-
[x: string]: unknown;
|
|
18936
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18937
|
-
[x: string]: unknown;
|
|
18938
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18939
|
-
[x: string]: unknown;
|
|
18940
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18941
|
-
[x: string]: unknown;
|
|
18942
|
-
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18943
|
-
[x: string]: unknown;
|
|
18944
|
-
}, 503, "application/json">>>;
|
|
18945
18960
|
};
|
|
18946
18961
|
/** The notification API allows you to manage your notifications. */
|
|
18947
18962
|
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 {
|
|
@@ -3233,6 +3233,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3233
3233
|
id: string;
|
|
3234
3234
|
pendingInstallation: boolean;
|
|
3235
3235
|
pendingRemoval: boolean;
|
|
3236
|
+
variantKey?: string;
|
|
3236
3237
|
}
|
|
3237
3238
|
interface MarketplaceExtensionInstanceChargeability {
|
|
3238
3239
|
isChargeable: boolean;
|
|
@@ -4456,6 +4457,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4456
4457
|
interface OrderMachineTypeSpec {
|
|
4457
4458
|
machineType?: string;
|
|
4458
4459
|
}
|
|
4460
|
+
interface OrderMailArchiveOrderPreviewResponse {
|
|
4461
|
+
feePrice: number;
|
|
4462
|
+
recurringPrice: number;
|
|
4463
|
+
totalPrice: number;
|
|
4464
|
+
}
|
|
4465
|
+
interface OrderMailArchiveOrderPreview {
|
|
4466
|
+
mailAddressId: string;
|
|
4467
|
+
syncExistingMails?: boolean;
|
|
4468
|
+
}
|
|
4469
|
+
interface OrderMailArchiveOrder {
|
|
4470
|
+
mailAddressId: string;
|
|
4471
|
+
syncExistingMails?: boolean;
|
|
4472
|
+
}
|
|
4459
4473
|
interface OrderOrderItem {
|
|
4460
4474
|
addons?: MittwaldAPIV2.Components.Schemas.OrderAddons[];
|
|
4461
4475
|
articleId: string;
|
|
@@ -15714,6 +15728,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15714
15728
|
context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
15715
15729
|
contextId: string;
|
|
15716
15730
|
extensionId: string;
|
|
15731
|
+
variantKey?: string;
|
|
15717
15732
|
}
|
|
15718
15733
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
15719
15734
|
type Query = {};
|
|
@@ -19676,6 +19691,73 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19676
19691
|
}
|
|
19677
19692
|
}
|
|
19678
19693
|
}
|
|
19694
|
+
namespace V2MailAddressesMailAddressIdMailArchive {
|
|
19695
|
+
namespace Delete {
|
|
19696
|
+
namespace Parameters {
|
|
19697
|
+
type Path = {
|
|
19698
|
+
mailAddressId: string;
|
|
19699
|
+
};
|
|
19700
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
19701
|
+
type Query = {};
|
|
19702
|
+
}
|
|
19703
|
+
namespace Responses {
|
|
19704
|
+
namespace $204 {
|
|
19705
|
+
namespace Content {
|
|
19706
|
+
type Empty = unknown;
|
|
19707
|
+
}
|
|
19708
|
+
}
|
|
19709
|
+
namespace $400 {
|
|
19710
|
+
namespace Content {
|
|
19711
|
+
interface ApplicationJson {
|
|
19712
|
+
[k: string]: unknown;
|
|
19713
|
+
}
|
|
19714
|
+
}
|
|
19715
|
+
}
|
|
19716
|
+
namespace $403 {
|
|
19717
|
+
namespace Content {
|
|
19718
|
+
interface ApplicationJson {
|
|
19719
|
+
[k: string]: unknown;
|
|
19720
|
+
}
|
|
19721
|
+
}
|
|
19722
|
+
}
|
|
19723
|
+
namespace $404 {
|
|
19724
|
+
namespace Content {
|
|
19725
|
+
interface ApplicationJson {
|
|
19726
|
+
[k: string]: unknown;
|
|
19727
|
+
}
|
|
19728
|
+
}
|
|
19729
|
+
}
|
|
19730
|
+
namespace $429 {
|
|
19731
|
+
namespace Content {
|
|
19732
|
+
interface ApplicationJson {
|
|
19733
|
+
[k: string]: unknown;
|
|
19734
|
+
}
|
|
19735
|
+
}
|
|
19736
|
+
}
|
|
19737
|
+
namespace $500 {
|
|
19738
|
+
namespace Content {
|
|
19739
|
+
interface ApplicationJson {
|
|
19740
|
+
[k: string]: unknown;
|
|
19741
|
+
}
|
|
19742
|
+
}
|
|
19743
|
+
}
|
|
19744
|
+
namespace $503 {
|
|
19745
|
+
namespace Content {
|
|
19746
|
+
interface ApplicationJson {
|
|
19747
|
+
[k: string]: unknown;
|
|
19748
|
+
}
|
|
19749
|
+
}
|
|
19750
|
+
}
|
|
19751
|
+
namespace Default {
|
|
19752
|
+
namespace Content {
|
|
19753
|
+
interface ApplicationJson {
|
|
19754
|
+
[k: string]: unknown;
|
|
19755
|
+
}
|
|
19756
|
+
}
|
|
19757
|
+
}
|
|
19758
|
+
}
|
|
19759
|
+
}
|
|
19760
|
+
}
|
|
19679
19761
|
namespace V2MailAddressesMailAddressIdBackups {
|
|
19680
19762
|
namespace Get {
|
|
19681
19763
|
namespace Parameters {
|
|
@@ -20631,8 +20713,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20631
20713
|
namespace Parameters {
|
|
20632
20714
|
type Path = {};
|
|
20633
20715
|
interface RequestBody {
|
|
20634
|
-
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | MittwaldAPIV2.Components.Schemas.OrderServerOrder | MittwaldAPIV2.Components.Schemas.OrderDomainOrder | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder;
|
|
20635
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr";
|
|
20716
|
+
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | MittwaldAPIV2.Components.Schemas.OrderServerOrder | MittwaldAPIV2.Components.Schemas.OrderDomainOrder | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder;
|
|
20717
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive";
|
|
20636
20718
|
}
|
|
20637
20719
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20638
20720
|
type Query = {};
|
|
@@ -20827,8 +20909,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20827
20909
|
namespace Parameters {
|
|
20828
20910
|
type Path = {};
|
|
20829
20911
|
interface RequestBody {
|
|
20830
|
-
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview;
|
|
20831
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr";
|
|
20912
|
+
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview;
|
|
20913
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive";
|
|
20832
20914
|
}
|
|
20833
20915
|
type Header = {};
|
|
20834
20916
|
type Query = {};
|
|
@@ -20836,7 +20918,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20836
20918
|
namespace Responses {
|
|
20837
20919
|
namespace $200 {
|
|
20838
20920
|
namespace Content {
|
|
20839
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreviewResponse;
|
|
20921
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreviewResponse;
|
|
20840
20922
|
}
|
|
20841
20923
|
}
|
|
20842
20924
|
namespace $400 {
|
|
@@ -26808,72 +26890,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26808
26890
|
}
|
|
26809
26891
|
}
|
|
26810
26892
|
}
|
|
26811
|
-
namespace V2MailAddressesMailAddressIdMailArchive {
|
|
26812
|
-
namespace Delete {
|
|
26813
|
-
namespace Parameters {
|
|
26814
|
-
type Path = {
|
|
26815
|
-
mailAddressId: string;
|
|
26816
|
-
};
|
|
26817
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
26818
|
-
type Query = {};
|
|
26819
|
-
}
|
|
26820
|
-
namespace Responses {
|
|
26821
|
-
namespace $204 {
|
|
26822
|
-
namespace Content {
|
|
26823
|
-
type Empty = unknown;
|
|
26824
|
-
}
|
|
26825
|
-
}
|
|
26826
|
-
namespace $400 {
|
|
26827
|
-
namespace Content {
|
|
26828
|
-
interface ApplicationJson {
|
|
26829
|
-
[k: string]: unknown;
|
|
26830
|
-
}
|
|
26831
|
-
}
|
|
26832
|
-
}
|
|
26833
|
-
namespace $403 {
|
|
26834
|
-
namespace Content {
|
|
26835
|
-
interface ApplicationJson {
|
|
26836
|
-
[k: string]: unknown;
|
|
26837
|
-
}
|
|
26838
|
-
}
|
|
26839
|
-
}
|
|
26840
|
-
namespace $404 {
|
|
26841
|
-
namespace Content {
|
|
26842
|
-
interface ApplicationJson {
|
|
26843
|
-
[k: string]: unknown;
|
|
26844
|
-
}
|
|
26845
|
-
}
|
|
26846
|
-
}
|
|
26847
|
-
namespace $429 {
|
|
26848
|
-
namespace Content {
|
|
26849
|
-
interface ApplicationJson {
|
|
26850
|
-
[k: string]: unknown;
|
|
26851
|
-
}
|
|
26852
|
-
}
|
|
26853
|
-
}
|
|
26854
|
-
namespace $500 {
|
|
26855
|
-
namespace Content {
|
|
26856
|
-
interface ApplicationJson {
|
|
26857
|
-
[k: string]: unknown;
|
|
26858
|
-
}
|
|
26859
|
-
}
|
|
26860
|
-
}
|
|
26861
|
-
namespace $503 {
|
|
26862
|
-
namespace Content {
|
|
26863
|
-
interface ApplicationJson {
|
|
26864
|
-
[k: string]: unknown;
|
|
26865
|
-
}
|
|
26866
|
-
}
|
|
26867
|
-
}
|
|
26868
|
-
namespace Default {
|
|
26869
|
-
namespace Content {
|
|
26870
|
-
interface ApplicationJson {
|
|
26871
|
-
[k: string]: unknown;
|
|
26872
|
-
}
|
|
26873
|
-
}
|
|
26874
|
-
}
|
|
26875
|
-
}
|
|
26876
|
-
}
|
|
26877
|
-
}
|
|
26878
26893
|
}
|
|
26879
26894
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.225.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.226.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": "1f8d16149b74c0178cbceebbf9a1bd025a50cb11"
|
|
84
84
|
}
|