@mittwald/api-client 0.0.0-development-bc8cbfe-20250710 → 0.0.0-development-7423599-20250729
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +2 -0
- package/dist/esm/generated/v2/client.js +4 -2
- package/dist/esm/generated/v2/descriptors.js +12 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +18 -0
- package/dist/types/generated/v2/client.d.ts +148 -86
- package/dist/types/generated/v2/descriptors.d.ts +5 -3
- package/dist/types/generated/v2/types.d.ts +159 -67
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -298,6 +298,8 @@ const buildMailApi = (baseClient) => ({
|
|
|
298
298
|
getDeliveryBox: new ApiCallAsyncResourceFactory(descriptors.mailGetDeliveryBox, baseClient.mail.getDeliveryBox).getApiResource,
|
|
299
299
|
/** Get a MailAddress. */
|
|
300
300
|
getMailAddress: new ApiCallAsyncResourceFactory(descriptors.mailGetMailAddress, baseClient.mail.getMailAddress).getApiResource,
|
|
301
|
+
/** List backups belonging to a MailAddress. */
|
|
302
|
+
listBackupsForMailAddress: new ApiCallAsyncResourceFactory(descriptors.mailListBackupsForMailAddress, baseClient.mail.listBackupsForMailAddress).getApiResource,
|
|
301
303
|
/** List mail settings of a Project. */
|
|
302
304
|
listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
|
|
303
305
|
/** Get a Migration. */
|
|
@@ -299,8 +299,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
299
299
|
extensionRequestExtensionVerification: this.requestFunctionFactory(descriptors.extensionRequestExtensionVerification),
|
|
300
300
|
/** Publish or withdraw an Extension. */
|
|
301
301
|
extensionSetExtensionPublishedState: this.requestFunctionFactory(descriptors.extensionSetExtensionPublishedState),
|
|
302
|
-
/** Start a checkout process for an extension. */
|
|
303
|
-
extensionStartExtensionCheckout: this.requestFunctionFactory(descriptors.extensionStartExtensionCheckout),
|
|
304
302
|
/** Creates or Updates Pricing for an Extension. */
|
|
305
303
|
extensionUpdateExtensionPricing: this.requestFunctionFactory(descriptors.extensionUpdateExtensionPricing),
|
|
306
304
|
/** Get payment method details */
|
|
@@ -579,6 +577,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
579
577
|
getMailAddress: this.requestFunctionFactory(descriptors.mailGetMailAddress),
|
|
580
578
|
/** Delete a MailAddress. */
|
|
581
579
|
deleteMailAddress: this.requestFunctionFactory(descriptors.mailDeleteMailAddress),
|
|
580
|
+
/** List backups belonging to a MailAddress. */
|
|
581
|
+
listBackupsForMailAddress: this.requestFunctionFactory(descriptors.mailListBackupsForMailAddress),
|
|
582
582
|
/** List mail settings of a Project. */
|
|
583
583
|
listProjectMailSettings: this.requestFunctionFactory(descriptors.mailListProjectMailSettings),
|
|
584
584
|
/** Check if a Migration between two projects is possible. */
|
|
@@ -589,6 +589,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
589
589
|
migrationListMigrations: this.requestFunctionFactory(descriptors.mailMigrationListMigrations),
|
|
590
590
|
/** Request a Mail Migration between two projects. */
|
|
591
591
|
migrationRequestMailMigration: this.requestFunctionFactory(descriptors.mailMigrationRequestMailMigration),
|
|
592
|
+
/** Recover emails for a MailAddress from a backup. */
|
|
593
|
+
recoverMailAddressEmails: this.requestFunctionFactory(descriptors.mailRecoverMailAddressEmails),
|
|
592
594
|
/** Update the description of a DeliveryBox. */
|
|
593
595
|
updateDeliveryBoxDescription: this.requestFunctionFactory(descriptors.mailUpdateDeliveryBoxDescription),
|
|
594
596
|
/** Update the password of a DeliveryBox. */
|
|
@@ -1378,12 +1378,6 @@ export const extensionSetExtensionPublishedState = {
|
|
|
1378
1378
|
method: "PUT",
|
|
1379
1379
|
operationId: "extension-set-extension-published-state",
|
|
1380
1380
|
};
|
|
1381
|
-
/** Start a checkout process for an extension. */
|
|
1382
|
-
export const extensionStartExtensionCheckout = {
|
|
1383
|
-
path: "/v2/extensions/{extensionId}/checkout",
|
|
1384
|
-
method: "POST",
|
|
1385
|
-
operationId: "extension-start-extension-checkout",
|
|
1386
|
-
};
|
|
1387
1381
|
/** Creates or Updates Pricing for an Extension. */
|
|
1388
1382
|
export const extensionUpdateExtensionPricing = {
|
|
1389
1383
|
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/pricing",
|
|
@@ -1618,6 +1612,12 @@ export const mailDeleteMailAddress = {
|
|
|
1618
1612
|
method: "DELETE",
|
|
1619
1613
|
operationId: "mail-delete-mail-address",
|
|
1620
1614
|
};
|
|
1615
|
+
/** List backups belonging to a MailAddress. */
|
|
1616
|
+
export const mailListBackupsForMailAddress = {
|
|
1617
|
+
path: "/v2/mail-addresses/{mailAddressId}/backups",
|
|
1618
|
+
method: "GET",
|
|
1619
|
+
operationId: "mail-list-backups-for-mail-address",
|
|
1620
|
+
};
|
|
1621
1621
|
/** List mail settings of a Project. */
|
|
1622
1622
|
export const mailListProjectMailSettings = {
|
|
1623
1623
|
path: "/v2/projects/{projectId}/mail-settings",
|
|
@@ -1648,6 +1648,12 @@ export const mailMigrationRequestMailMigration = {
|
|
|
1648
1648
|
method: "POST",
|
|
1649
1649
|
operationId: "mail-migration-request-mail-migration",
|
|
1650
1650
|
};
|
|
1651
|
+
/** Recover emails for a MailAddress from a backup. */
|
|
1652
|
+
export const mailRecoverMailAddressEmails = {
|
|
1653
|
+
path: "/v2/mail-addresses/{mailAddressId}/backups/{backupId}/recovery",
|
|
1654
|
+
method: "POST",
|
|
1655
|
+
operationId: "mail-recover-mail-address-emails",
|
|
1656
|
+
};
|
|
1651
1657
|
/** Update the description of a DeliveryBox. */
|
|
1652
1658
|
export const mailUpdateDeliveryBoxDescription = {
|
|
1653
1659
|
path: "/v2/delivery-boxes/{deliveryBoxId}/description",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.190.0';
|
|
@@ -473,6 +473,10 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
473
473
|
queryParameters?: {
|
|
474
474
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
475
475
|
stackId?: string | undefined;
|
|
476
|
+
status?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus | undefined;
|
|
477
|
+
requiresRecreate?: boolean | undefined;
|
|
478
|
+
searchTerm?: string | undefined;
|
|
479
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
|
|
476
480
|
limit?: number | undefined;
|
|
477
481
|
skip?: number | undefined;
|
|
478
482
|
page?: number | undefined;
|
|
@@ -502,6 +506,8 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
502
506
|
queryParameters?: {
|
|
503
507
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
504
508
|
stackId?: string | undefined;
|
|
509
|
+
searchTerm?: string | undefined;
|
|
510
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
505
511
|
limit?: number | undefined;
|
|
506
512
|
skip?: number | undefined;
|
|
507
513
|
page?: number | undefined;
|
|
@@ -750,6 +756,7 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
750
756
|
queryParameters?: {
|
|
751
757
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
752
758
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
759
|
+
search?: string | undefined;
|
|
753
760
|
limit?: number | undefined;
|
|
754
761
|
skip?: number | undefined;
|
|
755
762
|
page?: number | undefined;
|
|
@@ -2282,6 +2289,7 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2282
2289
|
forwardAddresses: string[];
|
|
2283
2290
|
id: string;
|
|
2284
2291
|
isArchived: boolean;
|
|
2292
|
+
isBackupInProgress: boolean;
|
|
2285
2293
|
isCatchAll: boolean;
|
|
2286
2294
|
mailbox?: {
|
|
2287
2295
|
name: string;
|
|
@@ -2305,6 +2313,14 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2305
2313
|
receivingDisabled: boolean;
|
|
2306
2314
|
updatedAt: string;
|
|
2307
2315
|
}>;
|
|
2316
|
+
/** List backups belonging to a MailAddress. */
|
|
2317
|
+
listBackupsForMailAddress: (conf: {
|
|
2318
|
+
mailAddressId: string;
|
|
2319
|
+
headers?: {
|
|
2320
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2321
|
+
"x-access-token"?: string | undefined;
|
|
2322
|
+
} | undefined;
|
|
2323
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[]>;
|
|
2308
2324
|
/** List mail settings of a Project. */
|
|
2309
2325
|
listProjectMailSettings: (conf: {
|
|
2310
2326
|
projectId: string;
|
|
@@ -2757,6 +2773,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2757
2773
|
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
2758
2774
|
disabledAt?: string | undefined;
|
|
2759
2775
|
enabled: boolean;
|
|
2776
|
+
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
2760
2777
|
id: string;
|
|
2761
2778
|
imageRefId?: string | undefined;
|
|
2762
2779
|
isReady: boolean;
|
|
@@ -2923,6 +2940,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2923
2940
|
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
2924
2941
|
disabledAt?: string;
|
|
2925
2942
|
enabled: boolean;
|
|
2943
|
+
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
2926
2944
|
id: string;
|
|
2927
2945
|
imageRefId?: string;
|
|
2928
2946
|
isReady: boolean;
|
|
@@ -3370,6 +3370,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3370
3370
|
queryParameters?: {
|
|
3371
3371
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3372
3372
|
stackId?: string | undefined;
|
|
3373
|
+
status?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus | undefined;
|
|
3374
|
+
requiresRecreate?: boolean | undefined;
|
|
3375
|
+
searchTerm?: string | undefined;
|
|
3376
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
|
|
3373
3377
|
limit?: number | undefined;
|
|
3374
3378
|
skip?: number | undefined;
|
|
3375
3379
|
page?: number | undefined;
|
|
@@ -3385,6 +3389,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3385
3389
|
} & {
|
|
3386
3390
|
queryParameters: {
|
|
3387
3391
|
stackId?: string | undefined;
|
|
3392
|
+
status?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus | undefined;
|
|
3393
|
+
requiresRecreate?: boolean | undefined;
|
|
3394
|
+
searchTerm?: string | undefined;
|
|
3395
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
|
|
3388
3396
|
limit?: number | undefined;
|
|
3389
3397
|
skip?: number | undefined;
|
|
3390
3398
|
page?: number | undefined;
|
|
@@ -3418,6 +3426,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3418
3426
|
} & {
|
|
3419
3427
|
queryParameters: {
|
|
3420
3428
|
stackId?: string | undefined;
|
|
3429
|
+
status?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus | undefined;
|
|
3430
|
+
requiresRecreate?: boolean | undefined;
|
|
3431
|
+
searchTerm?: string | undefined;
|
|
3432
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
|
|
3421
3433
|
limit?: number | undefined;
|
|
3422
3434
|
skip?: number | undefined;
|
|
3423
3435
|
page?: number | undefined;
|
|
@@ -3525,6 +3537,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3525
3537
|
queryParameters?: {
|
|
3526
3538
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3527
3539
|
stackId?: string | undefined;
|
|
3540
|
+
searchTerm?: string | undefined;
|
|
3541
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
3528
3542
|
limit?: number | undefined;
|
|
3529
3543
|
skip?: number | undefined;
|
|
3530
3544
|
page?: number | undefined;
|
|
@@ -3540,6 +3554,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3540
3554
|
} & {
|
|
3541
3555
|
queryParameters: {
|
|
3542
3556
|
stackId?: string | undefined;
|
|
3557
|
+
searchTerm?: string | undefined;
|
|
3558
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
3543
3559
|
limit?: number | undefined;
|
|
3544
3560
|
skip?: number | undefined;
|
|
3545
3561
|
page?: number | undefined;
|
|
@@ -3571,6 +3587,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3571
3587
|
} & {
|
|
3572
3588
|
queryParameters: {
|
|
3573
3589
|
stackId?: string | undefined;
|
|
3590
|
+
searchTerm?: string | undefined;
|
|
3591
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
3574
3592
|
limit?: number | undefined;
|
|
3575
3593
|
skip?: number | undefined;
|
|
3576
3594
|
page?: number | undefined;
|
|
@@ -3931,6 +3949,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3931
3949
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3932
3950
|
}>;
|
|
3933
3951
|
}, import("@mittwald/api-client-commons").Response<{
|
|
3952
|
+
reason?: string | undefined;
|
|
3934
3953
|
valid: boolean;
|
|
3935
3954
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3936
3955
|
[x: string]: unknown;
|
|
@@ -3959,6 +3978,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3959
3978
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3960
3979
|
}>;
|
|
3961
3980
|
}, import("@mittwald/api-client-commons").Response<{
|
|
3981
|
+
reason?: string | undefined;
|
|
3962
3982
|
valid: boolean;
|
|
3963
3983
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3964
3984
|
[x: string]: unknown;
|
|
@@ -5356,6 +5376,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5356
5376
|
queryParameters?: {
|
|
5357
5377
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5358
5378
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
5379
|
+
search?: string | undefined;
|
|
5359
5380
|
limit?: number | undefined;
|
|
5360
5381
|
skip?: number | undefined;
|
|
5361
5382
|
page?: number | undefined;
|
|
@@ -5373,6 +5394,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5373
5394
|
} & {
|
|
5374
5395
|
queryParameters: {
|
|
5375
5396
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
5397
|
+
search?: string | undefined;
|
|
5376
5398
|
limit?: number | undefined;
|
|
5377
5399
|
skip?: number | undefined;
|
|
5378
5400
|
page?: number | undefined;
|
|
@@ -5404,6 +5426,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5404
5426
|
} & {
|
|
5405
5427
|
queryParameters: {
|
|
5406
5428
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
5429
|
+
search?: string | undefined;
|
|
5407
5430
|
limit?: number | undefined;
|
|
5408
5431
|
skip?: number | undefined;
|
|
5409
5432
|
page?: number | undefined;
|
|
@@ -9366,92 +9389,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9366
9389
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9367
9390
|
[x: string]: unknown;
|
|
9368
9391
|
}, 429, "application/json">>>;
|
|
9369
|
-
/** Start a checkout process for an extension. */
|
|
9370
|
-
extensionStartExtensionCheckout: (request: {
|
|
9371
|
-
data: {
|
|
9372
|
-
consentedScopes: string[];
|
|
9373
|
-
customerId: string;
|
|
9374
|
-
};
|
|
9375
|
-
extensionId: string;
|
|
9376
|
-
headers?: {
|
|
9377
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9378
|
-
"x-access-token"?: string | undefined;
|
|
9379
|
-
} | undefined;
|
|
9380
|
-
} | {
|
|
9381
|
-
data: {
|
|
9382
|
-
consentedScopes: string[];
|
|
9383
|
-
projectId: string;
|
|
9384
|
-
};
|
|
9385
|
-
extensionId: string;
|
|
9386
|
-
headers?: {
|
|
9387
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9388
|
-
"x-access-token"?: string | undefined;
|
|
9389
|
-
} | undefined;
|
|
9390
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
|
|
9391
|
-
data: {
|
|
9392
|
-
consentedScopes: string[];
|
|
9393
|
-
customerId: string;
|
|
9394
|
-
};
|
|
9395
|
-
} | {
|
|
9396
|
-
data: {
|
|
9397
|
-
consentedScopes: string[];
|
|
9398
|
-
projectId: string;
|
|
9399
|
-
};
|
|
9400
|
-
}) & {
|
|
9401
|
-
pathParameters: {
|
|
9402
|
-
extensionId: string;
|
|
9403
|
-
};
|
|
9404
|
-
}) & {
|
|
9405
|
-
headers?: Partial<{
|
|
9406
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9407
|
-
}>;
|
|
9408
|
-
} & {
|
|
9409
|
-
headers: {
|
|
9410
|
-
"x-access-token"?: string | undefined;
|
|
9411
|
-
} & Partial<{
|
|
9412
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9413
|
-
}>;
|
|
9414
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9415
|
-
checkoutUrl?: string | undefined;
|
|
9416
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9417
|
-
[x: string]: unknown;
|
|
9418
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9419
|
-
[x: string]: unknown;
|
|
9420
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9421
|
-
[x: string]: unknown;
|
|
9422
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
|
|
9423
|
-
data: {
|
|
9424
|
-
consentedScopes: string[];
|
|
9425
|
-
customerId: string;
|
|
9426
|
-
};
|
|
9427
|
-
} | {
|
|
9428
|
-
data: {
|
|
9429
|
-
consentedScopes: string[];
|
|
9430
|
-
projectId: string;
|
|
9431
|
-
};
|
|
9432
|
-
}) & {
|
|
9433
|
-
pathParameters: {
|
|
9434
|
-
extensionId: string;
|
|
9435
|
-
};
|
|
9436
|
-
}) & {
|
|
9437
|
-
headers?: Partial<{
|
|
9438
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9439
|
-
}>;
|
|
9440
|
-
} & {
|
|
9441
|
-
headers: {
|
|
9442
|
-
"x-access-token"?: string | undefined;
|
|
9443
|
-
} & Partial<{
|
|
9444
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9445
|
-
}>;
|
|
9446
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9447
|
-
checkoutUrl?: string | undefined;
|
|
9448
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9449
|
-
[x: string]: unknown;
|
|
9450
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9451
|
-
[x: string]: unknown;
|
|
9452
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9453
|
-
[x: string]: unknown;
|
|
9454
|
-
}, 429, "application/json">>>;
|
|
9455
9392
|
/** Creates or Updates Pricing for an Extension. */
|
|
9456
9393
|
extensionUpdateExtensionPricing: (request: {
|
|
9457
9394
|
extensionId: string;
|
|
@@ -9713,6 +9650,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9713
9650
|
aggregate: "extensionInstance";
|
|
9714
9651
|
domain: "extension";
|
|
9715
9652
|
id: string;
|
|
9653
|
+
} | {
|
|
9654
|
+
aggregate: "container";
|
|
9655
|
+
domain: "container";
|
|
9656
|
+
id: string;
|
|
9716
9657
|
} | undefined;
|
|
9717
9658
|
sharedWith?: {
|
|
9718
9659
|
aggregate: "user";
|
|
@@ -10118,6 +10059,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10118
10059
|
aggregate: "extensionInstance";
|
|
10119
10060
|
domain: "extension";
|
|
10120
10061
|
id: string;
|
|
10062
|
+
} | {
|
|
10063
|
+
aggregate: "container";
|
|
10064
|
+
domain: "container";
|
|
10065
|
+
id: string;
|
|
10121
10066
|
} | undefined;
|
|
10122
10067
|
title?: string | undefined;
|
|
10123
10068
|
} | undefined;
|
|
@@ -15097,6 +15042,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15097
15042
|
[x: string]: unknown;
|
|
15098
15043
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15099
15044
|
[x: string]: unknown;
|
|
15045
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15046
|
+
[x: string]: unknown;
|
|
15100
15047
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15101
15048
|
[x: string]: unknown;
|
|
15102
15049
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
@@ -15134,6 +15081,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15134
15081
|
[x: string]: unknown;
|
|
15135
15082
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15136
15083
|
[x: string]: unknown;
|
|
15084
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15085
|
+
[x: string]: unknown;
|
|
15137
15086
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15138
15087
|
[x: string]: unknown;
|
|
15139
15088
|
}, 429, "application/json">>>;
|
|
@@ -17586,6 +17535,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17586
17535
|
forwardAddresses: string[];
|
|
17587
17536
|
id: string;
|
|
17588
17537
|
isArchived: boolean;
|
|
17538
|
+
isBackupInProgress: boolean;
|
|
17589
17539
|
isCatchAll: boolean;
|
|
17590
17540
|
mailbox?: {
|
|
17591
17541
|
name: string;
|
|
@@ -17645,6 +17595,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17645
17595
|
forwardAddresses: string[];
|
|
17646
17596
|
id: string;
|
|
17647
17597
|
isArchived: boolean;
|
|
17598
|
+
isBackupInProgress: boolean;
|
|
17648
17599
|
isCatchAll: boolean;
|
|
17649
17600
|
mailbox?: {
|
|
17650
17601
|
name: string;
|
|
@@ -17740,6 +17691,62 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17740
17691
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17741
17692
|
[x: string]: unknown;
|
|
17742
17693
|
}, 503, "application/json">>>;
|
|
17694
|
+
/** List backups belonging to a MailAddress. */
|
|
17695
|
+
listBackupsForMailAddress: (request: {
|
|
17696
|
+
mailAddressId: string;
|
|
17697
|
+
headers?: {
|
|
17698
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17699
|
+
"x-access-token"?: string | undefined;
|
|
17700
|
+
} | undefined;
|
|
17701
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17702
|
+
headers?: Partial<{
|
|
17703
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17704
|
+
}>;
|
|
17705
|
+
} & {
|
|
17706
|
+
pathParameters: {
|
|
17707
|
+
mailAddressId: string;
|
|
17708
|
+
};
|
|
17709
|
+
} & {
|
|
17710
|
+
headers: {
|
|
17711
|
+
"x-access-token"?: string | undefined;
|
|
17712
|
+
} & Partial<{
|
|
17713
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17714
|
+
}>;
|
|
17715
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17716
|
+
[x: string]: unknown;
|
|
17717
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17718
|
+
[x: string]: unknown;
|
|
17719
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17720
|
+
[x: string]: unknown;
|
|
17721
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17722
|
+
[x: string]: unknown;
|
|
17723
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17724
|
+
[x: string]: unknown;
|
|
17725
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17726
|
+
headers?: Partial<{
|
|
17727
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17728
|
+
}>;
|
|
17729
|
+
} & {
|
|
17730
|
+
pathParameters: {
|
|
17731
|
+
mailAddressId: string;
|
|
17732
|
+
};
|
|
17733
|
+
} & {
|
|
17734
|
+
headers: {
|
|
17735
|
+
"x-access-token"?: string | undefined;
|
|
17736
|
+
} & Partial<{
|
|
17737
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17738
|
+
}>;
|
|
17739
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17740
|
+
[x: string]: unknown;
|
|
17741
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17742
|
+
[x: string]: unknown;
|
|
17743
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17744
|
+
[x: string]: unknown;
|
|
17745
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17746
|
+
[x: string]: unknown;
|
|
17747
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17748
|
+
[x: string]: unknown;
|
|
17749
|
+
}, 500, "application/json">>>;
|
|
17743
17750
|
/** List mail settings of a Project. */
|
|
17744
17751
|
listProjectMailSettings: (request: {
|
|
17745
17752
|
projectId: string;
|
|
@@ -18039,6 +18046,57 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18039
18046
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18040
18047
|
[x: string]: unknown;
|
|
18041
18048
|
}, 429, "application/json">>>;
|
|
18049
|
+
/** Recover emails for a MailAddress from a backup. */
|
|
18050
|
+
recoverMailAddressEmails: (request: {
|
|
18051
|
+
mailAddressId: string;
|
|
18052
|
+
backupId: string;
|
|
18053
|
+
headers?: {
|
|
18054
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18055
|
+
"x-access-token"?: string | undefined;
|
|
18056
|
+
} | undefined;
|
|
18057
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18058
|
+
headers?: Partial<{
|
|
18059
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18060
|
+
}>;
|
|
18061
|
+
} & {
|
|
18062
|
+
pathParameters: {
|
|
18063
|
+
mailAddressId: string;
|
|
18064
|
+
backupId: string;
|
|
18065
|
+
};
|
|
18066
|
+
} & {
|
|
18067
|
+
headers: {
|
|
18068
|
+
"x-access-token"?: string | undefined;
|
|
18069
|
+
} & Partial<{
|
|
18070
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18071
|
+
}>;
|
|
18072
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18073
|
+
[x: string]: unknown;
|
|
18074
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18075
|
+
[x: string]: unknown;
|
|
18076
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18077
|
+
[x: string]: unknown;
|
|
18078
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18079
|
+
headers?: Partial<{
|
|
18080
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18081
|
+
}>;
|
|
18082
|
+
} & {
|
|
18083
|
+
pathParameters: {
|
|
18084
|
+
mailAddressId: string;
|
|
18085
|
+
backupId: string;
|
|
18086
|
+
};
|
|
18087
|
+
} & {
|
|
18088
|
+
headers: {
|
|
18089
|
+
"x-access-token"?: string | undefined;
|
|
18090
|
+
} & Partial<{
|
|
18091
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18092
|
+
}>;
|
|
18093
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18094
|
+
[x: string]: unknown;
|
|
18095
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18096
|
+
[x: string]: unknown;
|
|
18097
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18098
|
+
[x: string]: unknown;
|
|
18099
|
+
}, 429, "application/json">>>;
|
|
18042
18100
|
/** Update the description of a DeliveryBox. */
|
|
18043
18101
|
updateDeliveryBoxDescription: (request: {
|
|
18044
18102
|
data: {
|
|
@@ -24210,6 +24268,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24210
24268
|
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
24211
24269
|
disabledAt?: string | undefined;
|
|
24212
24270
|
enabled: boolean;
|
|
24271
|
+
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
24213
24272
|
id: string;
|
|
24214
24273
|
imageRefId?: string | undefined;
|
|
24215
24274
|
isReady: boolean;
|
|
@@ -24257,6 +24316,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24257
24316
|
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
24258
24317
|
disabledAt?: string | undefined;
|
|
24259
24318
|
enabled: boolean;
|
|
24319
|
+
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
24260
24320
|
id: string;
|
|
24261
24321
|
imageRefId?: string | undefined;
|
|
24262
24322
|
isReady: boolean;
|
|
@@ -25036,6 +25096,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25036
25096
|
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
25037
25097
|
disabledAt?: string;
|
|
25038
25098
|
enabled: boolean;
|
|
25099
|
+
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
25039
25100
|
id: string;
|
|
25040
25101
|
imageRefId?: string;
|
|
25041
25102
|
isReady: boolean;
|
|
@@ -25086,6 +25147,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25086
25147
|
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
25087
25148
|
disabledAt?: string;
|
|
25088
25149
|
enabled: boolean;
|
|
25150
|
+
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
25089
25151
|
id: string;
|
|
25090
25152
|
imageRefId?: string;
|
|
25091
25153
|
isReady: boolean;
|
|
@@ -360,7 +360,7 @@ export declare const domainCheckDomainTransferability: OpenAPIOperation<RequestT
|
|
|
360
360
|
/** Create an auth code for a Domains transfer-out process. */
|
|
361
361
|
export declare const domainCreateDomainAuthCode: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsAuthCode.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsAuthCode.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsAuthCode.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsAuthCode.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsAuthCode.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsAuthCode.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsAuthCode.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsAuthCode.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
362
362
|
/** Get a Domain. */
|
|
363
|
-
export declare const domainGetDomain: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
363
|
+
export declare const domainGetDomain: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
364
364
|
/** Delete a Domain. */
|
|
365
365
|
export declare const domainDeleteDomain: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
366
366
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
@@ -463,8 +463,6 @@ export declare const extensionRequestAssetUpload: OpenAPIOperation<RequestType<S
|
|
|
463
463
|
export declare const extensionRequestExtensionVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.$204.Content.ApplicationJson>, 204, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdVerificationProcess.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
464
464
|
/** Publish or withdraw an Extension. */
|
|
465
465
|
export declare const extensionSetExtensionPublishedState: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPublished.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
466
|
-
/** Start a checkout process for an extension. */
|
|
467
|
-
export declare const extensionStartExtensionCheckout: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
468
466
|
/** Creates or Updates Pricing for an Extension. */
|
|
469
467
|
export declare const extensionUpdateExtensionPricing: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
470
468
|
/** Create a File. */
|
|
@@ -543,6 +541,8 @@ export declare const mailDeleteDeliveryBox: OpenAPIOperation<RequestType<Simplif
|
|
|
543
541
|
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">>;
|
|
544
542
|
/** Delete a MailAddress. */
|
|
545
543
|
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">>;
|
|
544
|
+
/** List backups belonging to a MailAddress. */
|
|
545
|
+
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">>;
|
|
546
546
|
/** List mail settings of a Project. */
|
|
547
547
|
export declare const mailListProjectMailSettings: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
548
548
|
/** Check if a Migration between two projects is possible. */
|
|
@@ -553,6 +553,8 @@ export declare const mailMigrationGetMigration: OpenAPIOperation<RequestType<Sim
|
|
|
553
553
|
export declare const mailMigrationListMigrations: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailMigrations.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailMigrations.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailMigrations.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailMigrations.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailMigrations.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailMigrations.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailMigrations.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
554
554
|
/** Request a Mail Migration between two projects. */
|
|
555
555
|
export declare const mailMigrationRequestMailMigration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailMigrationsActionsRequest.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailMigrationsActionsRequest.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailMigrationsActionsRequest.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailMigrationsActionsRequest.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailMigrationsActionsRequest.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailMigrationsActionsRequest.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailMigrationsActionsRequest.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailMigrationsActionsRequest.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailMigrationsActionsRequest.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
556
|
+
/** Recover emails for a MailAddress from a backup. */
|
|
557
|
+
export declare const mailRecoverMailAddressEmails: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
556
558
|
/** Update the description of a DeliveryBox. */
|
|
557
559
|
export declare const mailUpdateDeliveryBoxDescription: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
558
560
|
/** Update the password of a DeliveryBox. */
|
|
@@ -922,10 +922,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
922
922
|
type RequestData = InferredRequestData<typeof descriptors.extensionSetExtensionPublishedState>;
|
|
923
923
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionSetExtensionPublishedState, TStatus>;
|
|
924
924
|
}
|
|
925
|
-
namespace ExtensionStartExtensionCheckout {
|
|
926
|
-
type RequestData = InferredRequestData<typeof descriptors.extensionStartExtensionCheckout>;
|
|
927
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionStartExtensionCheckout, TStatus>;
|
|
928
|
-
}
|
|
929
925
|
namespace ExtensionUpdateExtensionPricing {
|
|
930
926
|
type RequestData = InferredRequestData<typeof descriptors.extensionUpdateExtensionPricing>;
|
|
931
927
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionUpdateExtensionPricing, TStatus>;
|
|
@@ -1082,6 +1078,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1082
1078
|
type RequestData = InferredRequestData<typeof descriptors.mailDeleteMailAddress>;
|
|
1083
1079
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDeleteMailAddress, TStatus>;
|
|
1084
1080
|
}
|
|
1081
|
+
namespace MailListBackupsForMailAddress {
|
|
1082
|
+
type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
|
|
1083
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
|
|
1084
|
+
}
|
|
1085
1085
|
namespace MailListProjectMailSettings {
|
|
1086
1086
|
type RequestData = InferredRequestData<typeof descriptors.mailListProjectMailSettings>;
|
|
1087
1087
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListProjectMailSettings, TStatus>;
|
|
@@ -1102,6 +1102,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1102
1102
|
type RequestData = InferredRequestData<typeof descriptors.mailMigrationRequestMailMigration>;
|
|
1103
1103
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailMigrationRequestMailMigration, TStatus>;
|
|
1104
1104
|
}
|
|
1105
|
+
namespace MailRecoverMailAddressEmails {
|
|
1106
|
+
type RequestData = InferredRequestData<typeof descriptors.mailRecoverMailAddressEmails>;
|
|
1107
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRecoverMailAddressEmails, TStatus>;
|
|
1108
|
+
}
|
|
1105
1109
|
namespace MailUpdateDeliveryBoxDescription {
|
|
1106
1110
|
type RequestData = InferredRequestData<typeof descriptors.mailUpdateDeliveryBoxDescription>;
|
|
1107
1111
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateDeliveryBoxDescription, TStatus>;
|
|
@@ -2170,6 +2174,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2170
2174
|
*/
|
|
2171
2175
|
username: string;
|
|
2172
2176
|
}
|
|
2177
|
+
type ContainerServiceSortOrder = "descriptionAsc" | "descriptionDesc";
|
|
2173
2178
|
interface ContainerStackResponse {
|
|
2174
2179
|
description: string;
|
|
2175
2180
|
disabled: boolean;
|
|
@@ -2349,7 +2354,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2349
2354
|
conversationId: string;
|
|
2350
2355
|
shortId: string;
|
|
2351
2356
|
}
|
|
2352
|
-
type ConversationDepartment = "development" | "mail" | "accounting" | "cloudHosting" | "customerService" | "generic";
|
|
2357
|
+
type ConversationDepartment = "development" | "mail" | "accounting" | "cloudHosting" | "customerService" | "productManagement" | "generic";
|
|
2353
2358
|
interface ConversationError {
|
|
2354
2359
|
message: string;
|
|
2355
2360
|
type: string;
|
|
@@ -2407,6 +2412,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2407
2412
|
aggregate: "extensionInstance";
|
|
2408
2413
|
domain: "extension";
|
|
2409
2414
|
id: string;
|
|
2415
|
+
} | {
|
|
2416
|
+
aggregate: "container";
|
|
2417
|
+
domain: "container";
|
|
2418
|
+
id: string;
|
|
2410
2419
|
};
|
|
2411
2420
|
interface ConversationServiceRequestRelocationPayload {
|
|
2412
2421
|
contact: {
|
|
@@ -3854,6 +3863,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3854
3863
|
address: string;
|
|
3855
3864
|
forwardAddresses: string[];
|
|
3856
3865
|
}
|
|
3866
|
+
interface MailMailAddressBackup {
|
|
3867
|
+
name: string;
|
|
3868
|
+
}
|
|
3857
3869
|
interface MailMailAddress {
|
|
3858
3870
|
address: string;
|
|
3859
3871
|
autoResponder: {
|
|
@@ -3865,6 +3877,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3865
3877
|
forwardAddresses: string[];
|
|
3866
3878
|
id: string;
|
|
3867
3879
|
isArchived: boolean;
|
|
3880
|
+
isBackupInProgress: boolean;
|
|
3868
3881
|
isCatchAll: boolean;
|
|
3869
3882
|
mailbox?: {
|
|
3870
3883
|
name: string;
|
|
@@ -4619,6 +4632,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4619
4632
|
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
4620
4633
|
disabledAt?: string;
|
|
4621
4634
|
enabled: boolean;
|
|
4635
|
+
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
4622
4636
|
id: string;
|
|
4623
4637
|
imageRefId?: string;
|
|
4624
4638
|
/**
|
|
@@ -4859,12 +4873,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4859
4873
|
type StoragespaceStatisticsKind = "server" | "project";
|
|
4860
4874
|
interface StoragespaceStatisticsMeta {
|
|
4861
4875
|
isExceeding?: boolean;
|
|
4876
|
+
/**
|
|
4877
|
+
* The last total exceedance in bytes. It is retained as a historical record of the most recent exceedance and does not reset once set.
|
|
4878
|
+
*/
|
|
4879
|
+
lastTotalExceedanceInBytes?: number;
|
|
4880
|
+
/**
|
|
4881
|
+
* The last total exceedance date. It is retained as a historical record of the most recent exceedance and does not reset once set.
|
|
4882
|
+
*/
|
|
4883
|
+
lastTotalExceedanceInBytesSetAt?: string;
|
|
4862
4884
|
limitInBytes?: number;
|
|
4863
4885
|
/**
|
|
4864
4886
|
* If true, set notification threshold is used as limit for meta calculations. E.g. for projects with a parent server.
|
|
4865
4887
|
*/
|
|
4866
4888
|
notificationThresholdUsedAsLimit?: boolean;
|
|
4889
|
+
/**
|
|
4890
|
+
* The current total exceedance in bytes.
|
|
4891
|
+
*/
|
|
4867
4892
|
totalExceedanceInBytes?: number;
|
|
4893
|
+
/**
|
|
4894
|
+
* The current total exceedance date.
|
|
4895
|
+
*/
|
|
4868
4896
|
totalExceedanceInBytesSetAt?: string;
|
|
4869
4897
|
totalFreeInBytes?: number;
|
|
4870
4898
|
totalFreeInPercentage?: number;
|
|
@@ -5095,10 +5123,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5095
5123
|
name: string;
|
|
5096
5124
|
value: string;
|
|
5097
5125
|
}
|
|
5098
|
-
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5099
5126
|
interface VerificationEmailDetectPhishingMailResponse {
|
|
5100
5127
|
result: MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
5101
5128
|
}
|
|
5129
|
+
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5130
|
+
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5131
|
+
type ProjectProjectFeature = "redis" | "node" | "container";
|
|
5102
5132
|
interface CommonsAddress {
|
|
5103
5133
|
street: string;
|
|
5104
5134
|
houseNumber: string;
|
|
@@ -7794,6 +7824,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7794
7824
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7795
7825
|
type Query = {
|
|
7796
7826
|
stackId?: string;
|
|
7827
|
+
status?: MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
|
|
7828
|
+
requiresRecreate?: boolean;
|
|
7829
|
+
searchTerm?: string;
|
|
7830
|
+
sortOrder?: MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder;
|
|
7797
7831
|
limit?: number;
|
|
7798
7832
|
skip?: number;
|
|
7799
7833
|
page?: number;
|
|
@@ -7916,6 +7950,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7916
7950
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7917
7951
|
type Query = {
|
|
7918
7952
|
stackId?: string;
|
|
7953
|
+
searchTerm?: string;
|
|
7954
|
+
sortOrder?: MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder;
|
|
7919
7955
|
limit?: number;
|
|
7920
7956
|
skip?: number;
|
|
7921
7957
|
page?: number;
|
|
@@ -8322,6 +8358,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8322
8358
|
namespace $200 {
|
|
8323
8359
|
namespace Content {
|
|
8324
8360
|
interface ApplicationJson {
|
|
8361
|
+
reason?: string;
|
|
8325
8362
|
valid: boolean;
|
|
8326
8363
|
}
|
|
8327
8364
|
}
|
|
@@ -14257,6 +14294,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
14257
14294
|
}
|
|
14258
14295
|
}
|
|
14259
14296
|
}
|
|
14297
|
+
namespace $403 {
|
|
14298
|
+
namespace Content {
|
|
14299
|
+
interface ApplicationJson {
|
|
14300
|
+
[k: string]: unknown;
|
|
14301
|
+
}
|
|
14302
|
+
}
|
|
14303
|
+
}
|
|
14260
14304
|
namespace $404 {
|
|
14261
14305
|
namespace Content {
|
|
14262
14306
|
interface ApplicationJson {
|
|
@@ -16721,67 +16765,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16721
16765
|
}
|
|
16722
16766
|
}
|
|
16723
16767
|
}
|
|
16724
|
-
namespace V2ExtensionsExtensionIdCheckout {
|
|
16725
|
-
namespace Post {
|
|
16726
|
-
namespace Parameters {
|
|
16727
|
-
type Path = {
|
|
16728
|
-
extensionId: string;
|
|
16729
|
-
};
|
|
16730
|
-
type RequestBody = {
|
|
16731
|
-
consentedScopes: string[];
|
|
16732
|
-
/**
|
|
16733
|
-
* The customer the extension should be booked for. Either customerId or projectId is required.
|
|
16734
|
-
*/
|
|
16735
|
-
customerId: string;
|
|
16736
|
-
} | {
|
|
16737
|
-
consentedScopes: string[];
|
|
16738
|
-
/**
|
|
16739
|
-
* The project the extension should be installed in. Either customerId or projectId is required.
|
|
16740
|
-
*/
|
|
16741
|
-
projectId: string;
|
|
16742
|
-
};
|
|
16743
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
16744
|
-
type Query = {};
|
|
16745
|
-
}
|
|
16746
|
-
namespace Responses {
|
|
16747
|
-
namespace $201 {
|
|
16748
|
-
namespace Content {
|
|
16749
|
-
interface ApplicationJson {
|
|
16750
|
-
checkoutUrl?: string;
|
|
16751
|
-
}
|
|
16752
|
-
}
|
|
16753
|
-
}
|
|
16754
|
-
namespace $400 {
|
|
16755
|
-
namespace Content {
|
|
16756
|
-
interface ApplicationJson {
|
|
16757
|
-
[k: string]: unknown;
|
|
16758
|
-
}
|
|
16759
|
-
}
|
|
16760
|
-
}
|
|
16761
|
-
namespace $404 {
|
|
16762
|
-
namespace Content {
|
|
16763
|
-
interface ApplicationJson {
|
|
16764
|
-
[k: string]: unknown;
|
|
16765
|
-
}
|
|
16766
|
-
}
|
|
16767
|
-
}
|
|
16768
|
-
namespace $429 {
|
|
16769
|
-
namespace Content {
|
|
16770
|
-
interface ApplicationJson {
|
|
16771
|
-
[k: string]: unknown;
|
|
16772
|
-
}
|
|
16773
|
-
}
|
|
16774
|
-
}
|
|
16775
|
-
namespace Default {
|
|
16776
|
-
namespace Content {
|
|
16777
|
-
interface ApplicationJson {
|
|
16778
|
-
[k: string]: unknown;
|
|
16779
|
-
}
|
|
16780
|
-
}
|
|
16781
|
-
}
|
|
16782
|
-
}
|
|
16783
|
-
}
|
|
16784
|
-
}
|
|
16785
16768
|
namespace V2ContributorsContributorIdExtensionsExtensionIdPricing {
|
|
16786
16769
|
namespace Put {
|
|
16787
16770
|
namespace Parameters {
|
|
@@ -17793,6 +17776,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17793
17776
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17794
17777
|
type Query = {
|
|
17795
17778
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[];
|
|
17779
|
+
search?: string;
|
|
17796
17780
|
limit?: number;
|
|
17797
17781
|
skip?: number;
|
|
17798
17782
|
page?: number;
|
|
@@ -19093,6 +19077,66 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19093
19077
|
}
|
|
19094
19078
|
}
|
|
19095
19079
|
}
|
|
19080
|
+
namespace V2MailAddressesMailAddressIdBackups {
|
|
19081
|
+
namespace Get {
|
|
19082
|
+
namespace Parameters {
|
|
19083
|
+
type Path = {
|
|
19084
|
+
mailAddressId: string;
|
|
19085
|
+
};
|
|
19086
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
19087
|
+
type Query = {};
|
|
19088
|
+
}
|
|
19089
|
+
namespace Responses {
|
|
19090
|
+
namespace $200 {
|
|
19091
|
+
namespace Content {
|
|
19092
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[];
|
|
19093
|
+
}
|
|
19094
|
+
}
|
|
19095
|
+
namespace $400 {
|
|
19096
|
+
namespace Content {
|
|
19097
|
+
interface ApplicationJson {
|
|
19098
|
+
[k: string]: unknown;
|
|
19099
|
+
}
|
|
19100
|
+
}
|
|
19101
|
+
}
|
|
19102
|
+
namespace $403 {
|
|
19103
|
+
namespace Content {
|
|
19104
|
+
interface ApplicationJson {
|
|
19105
|
+
[k: string]: unknown;
|
|
19106
|
+
}
|
|
19107
|
+
}
|
|
19108
|
+
}
|
|
19109
|
+
namespace $404 {
|
|
19110
|
+
namespace Content {
|
|
19111
|
+
interface ApplicationJson {
|
|
19112
|
+
[k: string]: unknown;
|
|
19113
|
+
}
|
|
19114
|
+
}
|
|
19115
|
+
}
|
|
19116
|
+
namespace $429 {
|
|
19117
|
+
namespace Content {
|
|
19118
|
+
interface ApplicationJson {
|
|
19119
|
+
[k: string]: unknown;
|
|
19120
|
+
}
|
|
19121
|
+
}
|
|
19122
|
+
}
|
|
19123
|
+
namespace $500 {
|
|
19124
|
+
namespace Content {
|
|
19125
|
+
interface ApplicationJson {
|
|
19126
|
+
[k: string]: unknown;
|
|
19127
|
+
}
|
|
19128
|
+
}
|
|
19129
|
+
}
|
|
19130
|
+
namespace Default {
|
|
19131
|
+
namespace Content {
|
|
19132
|
+
interface ApplicationJson {
|
|
19133
|
+
[k: string]: unknown;
|
|
19134
|
+
}
|
|
19135
|
+
}
|
|
19136
|
+
}
|
|
19137
|
+
}
|
|
19138
|
+
}
|
|
19139
|
+
}
|
|
19096
19140
|
namespace V2ProjectsProjectIdMailSettings {
|
|
19097
19141
|
namespace Get {
|
|
19098
19142
|
namespace Parameters {
|
|
@@ -19332,6 +19376,53 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19332
19376
|
}
|
|
19333
19377
|
}
|
|
19334
19378
|
}
|
|
19379
|
+
namespace V2MailAddressesMailAddressIdBackupsBackupIdRecovery {
|
|
19380
|
+
namespace Post {
|
|
19381
|
+
namespace Parameters {
|
|
19382
|
+
type Path = {
|
|
19383
|
+
mailAddressId: string;
|
|
19384
|
+
backupId: string;
|
|
19385
|
+
};
|
|
19386
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
19387
|
+
type Query = {};
|
|
19388
|
+
}
|
|
19389
|
+
namespace Responses {
|
|
19390
|
+
namespace $200 {
|
|
19391
|
+
namespace Content {
|
|
19392
|
+
type Empty = unknown;
|
|
19393
|
+
}
|
|
19394
|
+
}
|
|
19395
|
+
namespace $400 {
|
|
19396
|
+
namespace Content {
|
|
19397
|
+
interface ApplicationJson {
|
|
19398
|
+
[k: string]: unknown;
|
|
19399
|
+
}
|
|
19400
|
+
}
|
|
19401
|
+
}
|
|
19402
|
+
namespace $404 {
|
|
19403
|
+
namespace Content {
|
|
19404
|
+
interface ApplicationJson {
|
|
19405
|
+
[k: string]: unknown;
|
|
19406
|
+
}
|
|
19407
|
+
}
|
|
19408
|
+
}
|
|
19409
|
+
namespace $429 {
|
|
19410
|
+
namespace Content {
|
|
19411
|
+
interface ApplicationJson {
|
|
19412
|
+
[k: string]: unknown;
|
|
19413
|
+
}
|
|
19414
|
+
}
|
|
19415
|
+
}
|
|
19416
|
+
namespace Default {
|
|
19417
|
+
namespace Content {
|
|
19418
|
+
interface ApplicationJson {
|
|
19419
|
+
[k: string]: unknown;
|
|
19420
|
+
}
|
|
19421
|
+
}
|
|
19422
|
+
}
|
|
19423
|
+
}
|
|
19424
|
+
}
|
|
19425
|
+
}
|
|
19335
19426
|
namespace V2DeliveryBoxesDeliveryBoxIdDescription {
|
|
19336
19427
|
namespace Patch {
|
|
19337
19428
|
namespace Parameters {
|
|
@@ -22220,6 +22311,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22220
22311
|
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
22221
22312
|
disabledAt?: string;
|
|
22222
22313
|
enabled: boolean;
|
|
22314
|
+
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
22223
22315
|
id: string;
|
|
22224
22316
|
imageRefId?: string;
|
|
22225
22317
|
/**
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.190.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-7423599-20250729",
|
|
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-7423599-20250729",
|
|
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-7423599-20250729",
|
|
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": "e5d096393b87f752fba7b334afdb4e2b20431e03"
|
|
84
84
|
}
|