@mittwald/api-client 0.0.0-development-9f66b59-20260619 → 0.0.0-development-8335166-20260625
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 -4
- package/dist/esm/generated/v2/descriptors.js +12 -12
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +26 -33
- package/dist/types/generated/v2/client.d.ts +176 -188
- package/dist/types/generated/v2/descriptors.d.ts +4 -4
- package/dist/types/generated/v2/types.d.ts +280 -222
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -342,10 +342,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
342
342
|
type RequestData = InferredRequestData<typeof descriptors.containerRotatePullImageWebhookForService>;
|
|
343
343
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerRotatePullImageWebhookForService, TStatus>;
|
|
344
344
|
}
|
|
345
|
-
namespace ContainerSetStackDescription {
|
|
346
|
-
type RequestData = InferredRequestData<typeof descriptors.containerSetStackDescription>;
|
|
347
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerSetStackDescription, TStatus>;
|
|
348
|
-
}
|
|
349
345
|
namespace ContainerSetStackUpdateSchedule {
|
|
350
346
|
type RequestData = InferredRequestData<typeof descriptors.containerSetStackUpdateSchedule>;
|
|
351
347
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerSetStackUpdateSchedule, TStatus>;
|
|
@@ -1370,6 +1366,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1370
1366
|
type RequestData = InferredRequestData<typeof descriptors.mailRecoverMailAddressEmails>;
|
|
1371
1367
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRecoverMailAddressEmails, TStatus>;
|
|
1372
1368
|
}
|
|
1369
|
+
namespace MailRequestMailAddressRateLimitChange {
|
|
1370
|
+
type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
|
|
1371
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
|
|
1372
|
+
}
|
|
1373
1373
|
namespace MailUpdateDeliveryBoxDescription {
|
|
1374
1374
|
type RequestData = InferredRequestData<typeof descriptors.mailUpdateDeliveryBoxDescription>;
|
|
1375
1375
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateDeliveryBoxDescription, TStatus>;
|
|
@@ -1570,6 +1570,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1570
1570
|
type RequestData = InferredRequestData<typeof descriptors.projectGetServer>;
|
|
1571
1571
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetServer, TStatus>;
|
|
1572
1572
|
}
|
|
1573
|
+
namespace ProjectListCustomerProjects {
|
|
1574
|
+
type RequestData = InferredRequestData<typeof descriptors.projectListCustomerProjects>;
|
|
1575
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListCustomerProjects, TStatus>;
|
|
1576
|
+
}
|
|
1573
1577
|
namespace ProjectListMembershipsForProject {
|
|
1574
1578
|
type RequestData = InferredRequestData<typeof descriptors.projectListMembershipsForProject>;
|
|
1575
1579
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListMembershipsForProject, TStatus>;
|
|
@@ -1930,10 +1934,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1930
1934
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1931
1935
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1932
1936
|
}
|
|
1933
|
-
namespace MailRequestMailAddressRateLimitChange {
|
|
1934
|
-
type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
|
|
1935
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
|
|
1936
|
-
}
|
|
1937
1937
|
}
|
|
1938
1938
|
namespace Components {
|
|
1939
1939
|
namespace Schemas {
|
|
@@ -3076,6 +3076,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3076
3076
|
domain: string;
|
|
3077
3077
|
id: string;
|
|
3078
3078
|
}
|
|
3079
|
+
interface ConversationBasicConversation {
|
|
3080
|
+
category?: MittwaldAPIV2.Components.Schemas.ConversationCategory;
|
|
3081
|
+
conversationId: string;
|
|
3082
|
+
createdAt: string;
|
|
3083
|
+
lastMessageAt?: string;
|
|
3084
|
+
mainUser: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
3085
|
+
notificationRoles?: MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[];
|
|
3086
|
+
relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference;
|
|
3087
|
+
relations?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[];
|
|
3088
|
+
sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
|
|
3089
|
+
shortId: string;
|
|
3090
|
+
status: MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
3091
|
+
title: string;
|
|
3092
|
+
visibility: "shared" | "private";
|
|
3093
|
+
}
|
|
3079
3094
|
type ConversationCategoryReferenceType = ("unspecified" | "server" | "project" | "organisation" | "extensionInstance")[];
|
|
3080
3095
|
interface ConversationCategory {
|
|
3081
3096
|
categoryId: string;
|
|
@@ -3094,32 +3109,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3094
3109
|
fallback?: string;
|
|
3095
3110
|
};
|
|
3096
3111
|
}
|
|
3097
|
-
|
|
3098
|
-
category?: MittwaldAPIV2.Components.Schemas.ConversationCategory;
|
|
3099
|
-
conversationId: string;
|
|
3100
|
-
createdAt: string;
|
|
3112
|
+
type ConversationConversation = MittwaldAPIV2.Components.Schemas.ConversationBasicConversation & {
|
|
3101
3113
|
createdBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
3102
3114
|
lastMessage?: {
|
|
3103
3115
|
createdAt: string;
|
|
3104
3116
|
createdBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
3105
3117
|
};
|
|
3106
|
-
lastMessageAt?: string;
|
|
3107
3118
|
lastMessageBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
3108
|
-
|
|
3109
|
-
notificationRoles?: MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[];
|
|
3110
|
-
relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference;
|
|
3111
|
-
relations?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[];
|
|
3112
|
-
sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
|
|
3113
|
-
shortId: string;
|
|
3114
|
-
status: MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
3115
|
-
title: string;
|
|
3116
|
-
visibility: "shared" | "private";
|
|
3117
|
-
}
|
|
3119
|
+
};
|
|
3118
3120
|
interface ConversationGetConversationIdResponse {
|
|
3119
3121
|
conversationId: string;
|
|
3120
3122
|
shortId: string;
|
|
3121
3123
|
}
|
|
3122
|
-
type ConversationDepartment = "development" | "mail" | "accounting" | "cloudHosting" | "customerService" | "productManagement" | "generic";
|
|
3123
3124
|
interface ConversationError {
|
|
3124
3125
|
message: string;
|
|
3125
3126
|
type: string;
|
|
@@ -3152,12 +3153,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3152
3153
|
};
|
|
3153
3154
|
type: "STATUS_UPDATE";
|
|
3154
3155
|
}
|
|
3155
|
-
interface ConversationGroup {
|
|
3156
|
-
acronym?: string;
|
|
3157
|
-
id: string;
|
|
3158
|
-
isDefaultGroup?: boolean;
|
|
3159
|
-
name: string;
|
|
3160
|
-
}
|
|
3161
3156
|
interface ConversationMessage {
|
|
3162
3157
|
conversationId: string;
|
|
3163
3158
|
createdAt: string;
|
|
@@ -3295,11 +3290,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3295
3290
|
type ConversationStatusUpdate = MittwaldAPIV2.Components.Schemas.ConversationResubmissionStatusUpdate | MittwaldAPIV2.Components.Schemas.ConversationGenericStatusUpdate;
|
|
3296
3291
|
interface ConversationUser {
|
|
3297
3292
|
active?: boolean;
|
|
3298
|
-
atlasGroup?: MittwaldAPIV2.Components.Schemas.ConversationGroup;
|
|
3299
3293
|
avatarRefId?: string;
|
|
3300
3294
|
clearName?: string;
|
|
3301
|
-
|
|
3302
|
-
group?: MittwaldAPIV2.Components.Schemas.ConversationGroup;
|
|
3295
|
+
isEmployee?: boolean;
|
|
3303
3296
|
userId: string;
|
|
3304
3297
|
}
|
|
3305
3298
|
interface StraceData {
|
|
@@ -3968,16 +3961,61 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3968
3961
|
value: string;
|
|
3969
3962
|
}
|
|
3970
3963
|
type DomainmigrationDNSRecordType = "A" | "AAAA" | "TXT" | "MX" | "CNAME" | "SRV" | "CAA" | "NS";
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3964
|
+
/**
|
|
3965
|
+
* A non-blocking finding on an otherwise migratable domain: the domain migrates, but the named subject is skipped.
|
|
3966
|
+
*/
|
|
3967
|
+
interface DomainmigrationDomainMigrationWarning {
|
|
3968
|
+
reason: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarningReason;
|
|
3969
|
+
/**
|
|
3970
|
+
* The affected COAB entity, e.g. the skipped wildcard subdomain hostname.
|
|
3971
|
+
*/
|
|
3972
|
+
subject: string;
|
|
3973
|
+
}
|
|
3974
|
+
/**
|
|
3975
|
+
* Typed non-blocking migration warning: the domain migrates, but the named subject (`warnings[].subject`, the affected subdomain hostname) cannot be carried over as-is.
|
|
3976
|
+
*
|
|
3977
|
+
* * `subdomainInvalidIngressHostname`: a non-CNAME subdomain (provisioned as an ingress) does not match the `idn-hostname` format (e.g. a wildcard `*.example.de`); it is skipped and the rest of the domain migrates.
|
|
3978
|
+
* * `subdomainInvalidDnsName`: a CNAME subdomain (provisioned as a DNS subzone) does not match the `idn-dnsname` format; it is skipped and the rest of the domain migrates.
|
|
3979
|
+
* * `subdomainNsRecordsOverridden`: a subdomain carries its own NS records that differ from the domain's nameservers; per-subdomain delegation is not supported, so those NS records are dropped and the subdomain is served from the domain's nameservers (the rest of the subdomain still migrates).
|
|
3980
|
+
*/
|
|
3981
|
+
type DomainmigrationDomainMigrationWarningReason = "subdomainInvalidIngressHostname" | "subdomainInvalidDnsName" | "subdomainNsRecordsOverridden";
|
|
3982
|
+
/**
|
|
3983
|
+
* Typed reason a domain cannot be migrated:
|
|
3984
|
+
*
|
|
3985
|
+
* * `needEpp`: the domain owner's phone number is not EPP/RFC 5733 conformant at the registry and cannot be reformatted, so the migration is rejected.
|
|
3986
|
+
* * `tldNotSupported`: the domain's TLD is not supported for migration (also used when the registry article for the domain was not found).
|
|
3987
|
+
* * `tldNotMigratable`: the domain's TLD is supported in general, but migration is not currently possible for this TLD.
|
|
3988
|
+
* * `premiumDomain`: the domain is a premium domain, which is not supported yet.
|
|
3989
|
+
* * `registrarNotSupported`: COAB names a registrar we do not support for migration.
|
|
3990
|
+
* * `notOrderable`: the order service rejected the domain for a reason other than an unsupported TLD or a still-reserved domain.
|
|
3991
|
+
* * `insufficientState`: the COAB data is incomplete (e.g. missing registrar, price or owner) or the domain is still reserved at the registry.
|
|
3992
|
+
* * `contractDateOutOfRange`: the COAB contract's next-period date is in the past or more than two years in the future.
|
|
3993
|
+
* * `invalidDomainName`: the COAB domain name does not match the `idn-naked-domain` format we accept.
|
|
3994
|
+
*/
|
|
3995
|
+
type DomainmigrationDomainNotMigratableReason = "needEpp" | "tldNotSupported" | "tldNotMigratable" | "premiumDomain" | "registrarNotSupported" | "notOrderable" | "insufficientState" | "contractDateOutOfRange" | "invalidDomainName";
|
|
3996
|
+
/**
|
|
3997
|
+
* A non-migratable-domain failure: one selected domain cannot be migrated. type is always domainNotMigratable, path is the affected domain, and context.reason carries the typed reason code.
|
|
3998
|
+
*/
|
|
3999
|
+
interface DomainmigrationDomainNotMigratableValidationError {
|
|
4000
|
+
context: {
|
|
4001
|
+
reason: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainNotMigratableReason;
|
|
4002
|
+
[k: string]: string;
|
|
4003
|
+
};
|
|
4004
|
+
message: string;
|
|
4005
|
+
/**
|
|
4006
|
+
* The affected domain.
|
|
4007
|
+
*/
|
|
4008
|
+
path: string;
|
|
4009
|
+
/**
|
|
4010
|
+
* Discriminator for this branch; always domainNotMigratable.
|
|
4011
|
+
*/
|
|
4012
|
+
type: "domainNotMigratable";
|
|
3976
4013
|
}
|
|
3977
4014
|
interface DomainmigrationMigratableDomain {
|
|
3978
4015
|
hostname: string;
|
|
3979
4016
|
migratable: true;
|
|
3980
4017
|
migrationData: MittwaldAPIV2.Components.Schemas.DomainmigrationMigrationData;
|
|
4018
|
+
warnings?: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarning[];
|
|
3981
4019
|
}
|
|
3982
4020
|
interface DomainmigrationMigrationData {
|
|
3983
4021
|
dnsRecords: MittwaldAPIV2.Components.Schemas.DomainmigrationDNSRecord[];
|
|
@@ -3994,8 +4032,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3994
4032
|
}
|
|
3995
4033
|
interface DomainmigrationNonMigratableDomain {
|
|
3996
4034
|
hostname: string;
|
|
3997
|
-
issues: MittwaldAPIV2.Components.Schemas.
|
|
4035
|
+
issues: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainNotMigratableReason[];
|
|
3998
4036
|
migratable: false;
|
|
4037
|
+
warnings?: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarning[];
|
|
3999
4038
|
}
|
|
4000
4039
|
interface DomainmigrationSubdomain {
|
|
4001
4040
|
dnsRecords: MittwaldAPIV2.Components.Schemas.DomainmigrationDNSRecord[];
|
|
@@ -4278,7 +4317,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4278
4317
|
id: string;
|
|
4279
4318
|
kind: "extensionAddedToContext" | "instanceUpdated" | "secretRotated" | "instanceRemovedFromContext";
|
|
4280
4319
|
nextScheduledExecution?: string;
|
|
4281
|
-
state:
|
|
4320
|
+
state: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecutionState;
|
|
4282
4321
|
}
|
|
4283
4322
|
interface MarketplaceExtensionSecret {
|
|
4284
4323
|
secretId: string;
|
|
@@ -5113,6 +5152,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5113
5152
|
isBackupInProgress: boolean;
|
|
5114
5153
|
isCatchAll: boolean;
|
|
5115
5154
|
mailbox?: {
|
|
5155
|
+
mailsystemSettings: MittwaldAPIV2.Components.Schemas.MailMailsystemSettings;
|
|
5116
5156
|
name: string;
|
|
5117
5157
|
passwordUpdatedAt: string;
|
|
5118
5158
|
sendingEnabled: boolean;
|
|
@@ -5141,8 +5181,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5141
5181
|
updatedAt: string;
|
|
5142
5182
|
}
|
|
5143
5183
|
interface MailMailsystemSettings {
|
|
5144
|
-
imapClusterId: string;
|
|
5145
|
-
mailDirectory: string;
|
|
5146
5184
|
rateLimitId: string;
|
|
5147
5185
|
}
|
|
5148
5186
|
interface MailmigrationAutoResponder {
|
|
@@ -5910,11 +5948,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5910
5948
|
changes: {
|
|
5911
5949
|
after?: {
|
|
5912
5950
|
appId: string;
|
|
5951
|
+
appName: string;
|
|
5913
5952
|
sourceAppInstallationId: string;
|
|
5953
|
+
sourceAppName: string;
|
|
5914
5954
|
};
|
|
5915
5955
|
before?: {
|
|
5916
5956
|
appId?: string | null;
|
|
5957
|
+
appName?: string | null;
|
|
5917
5958
|
sourceAppInstallationId?: string | null;
|
|
5959
|
+
sourceAppName?: string | null;
|
|
5918
5960
|
};
|
|
5919
5961
|
};
|
|
5920
5962
|
name: "app.copy-requested";
|
|
@@ -5950,6 +5992,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5950
5992
|
};
|
|
5951
5993
|
};
|
|
5952
5994
|
name: "app.version-set";
|
|
5995
|
+
parameters: {
|
|
5996
|
+
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
5997
|
+
};
|
|
5953
5998
|
}
|
|
5954
5999
|
interface ActivitylogDatabaseCreated {
|
|
5955
6000
|
changes: {
|
|
@@ -5966,6 +6011,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5966
6011
|
};
|
|
5967
6012
|
name: "database.mysql-created" | "database.redis-created";
|
|
5968
6013
|
parameters: {
|
|
6014
|
+
description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5969
6015
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5970
6016
|
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5971
6017
|
};
|
|
@@ -6011,13 +6057,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6011
6057
|
description: string;
|
|
6012
6058
|
externalAccess: boolean;
|
|
6013
6059
|
name: string;
|
|
6014
|
-
|
|
6060
|
+
permissionsRead: boolean;
|
|
6061
|
+
permissionsWrite: boolean;
|
|
6015
6062
|
};
|
|
6016
6063
|
before?: {
|
|
6017
6064
|
description?: string | null;
|
|
6018
6065
|
externalAccess?: boolean | null;
|
|
6019
6066
|
name?: string | null;
|
|
6020
|
-
|
|
6067
|
+
permissionsRead?: boolean | null;
|
|
6068
|
+
permissionsWrite?: boolean | null;
|
|
6021
6069
|
};
|
|
6022
6070
|
};
|
|
6023
6071
|
name: "database.mysql-user-created";
|
|
@@ -6039,12 +6087,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6039
6087
|
after?: {
|
|
6040
6088
|
description: string;
|
|
6041
6089
|
externalAccess: boolean;
|
|
6042
|
-
|
|
6090
|
+
permissionsRead: boolean;
|
|
6091
|
+
permissionsWrite: boolean;
|
|
6043
6092
|
};
|
|
6044
6093
|
before?: {
|
|
6045
6094
|
description: string | null;
|
|
6046
6095
|
externalAccess: boolean | null;
|
|
6047
|
-
|
|
6096
|
+
permissionsRead: boolean;
|
|
6097
|
+
permissionsWrite: boolean;
|
|
6048
6098
|
};
|
|
6049
6099
|
};
|
|
6050
6100
|
name: "database.mysql-user-updated";
|
|
@@ -6280,6 +6330,41 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6280
6330
|
}
|
|
6281
6331
|
type ProjectDisableReason = "maliciousCode" | "illegalContent" | "maliciousConduct" | "suspended";
|
|
6282
6332
|
type ProjectProjectFeature = "redis" | "node" | "container";
|
|
6333
|
+
interface ProjectProjectListItem {
|
|
6334
|
+
backupStorageUsageInBytes: number;
|
|
6335
|
+
backupStorageUsageInBytesSetAt: string;
|
|
6336
|
+
createdAt: string;
|
|
6337
|
+
customerId: string;
|
|
6338
|
+
customerMeta: {
|
|
6339
|
+
id: string;
|
|
6340
|
+
};
|
|
6341
|
+
description: string;
|
|
6342
|
+
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
6343
|
+
disabledAt?: string;
|
|
6344
|
+
enabled: boolean;
|
|
6345
|
+
/**
|
|
6346
|
+
* @deprecated
|
|
6347
|
+
* Deprecated by 'supportedFeatures'.
|
|
6348
|
+
*/
|
|
6349
|
+
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
6350
|
+
id: string;
|
|
6351
|
+
imageRefId?: string;
|
|
6352
|
+
/**
|
|
6353
|
+
* @deprecated
|
|
6354
|
+
* deprecated
|
|
6355
|
+
*/
|
|
6356
|
+
isReady: boolean;
|
|
6357
|
+
projectHostingId?: string;
|
|
6358
|
+
readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
6359
|
+
serverGroupId: string;
|
|
6360
|
+
serverId?: string;
|
|
6361
|
+
shortId: string;
|
|
6362
|
+
status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
6363
|
+
statusSetAt: string;
|
|
6364
|
+
supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
6365
|
+
webStorageUsageInBytes: number;
|
|
6366
|
+
webStorageUsageInBytesSetAt: string;
|
|
6367
|
+
}
|
|
6283
6368
|
type ProjectProjectStatus = "pending" | "ready" | "preparingForVolumeMigration" | "migratingVolume" | "error" | "disabled";
|
|
6284
6369
|
interface ProjectProject {
|
|
6285
6370
|
backupStorageUsageInBytes: number;
|
|
@@ -6838,6 +6923,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6838
6923
|
}
|
|
6839
6924
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6840
6925
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6926
|
+
type MarketplaceExtensionInstanceWebhookExecutionState = "running" | "queued" | "halted" | "failed" | "successful";
|
|
6841
6927
|
interface CommonsAddress {
|
|
6842
6928
|
street: string;
|
|
6843
6929
|
houseNumber: string;
|
|
@@ -10439,6 +10525,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10439
10525
|
stackId: string;
|
|
10440
10526
|
};
|
|
10441
10527
|
interface RequestBody {
|
|
10528
|
+
description?: string;
|
|
10442
10529
|
/**
|
|
10443
10530
|
* A set of containers that should be started in this stack. The key is relevant for
|
|
10444
10531
|
* network connectivity between containers, because you can use it as DNS name to
|
|
@@ -11648,76 +11735,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11648
11735
|
}
|
|
11649
11736
|
}
|
|
11650
11737
|
}
|
|
11651
|
-
namespace V2StacksStackIdDescription {
|
|
11652
|
-
namespace Put {
|
|
11653
|
-
namespace Parameters {
|
|
11654
|
-
type Path = {
|
|
11655
|
-
stackId: string;
|
|
11656
|
-
};
|
|
11657
|
-
interface RequestBody {
|
|
11658
|
-
description: string;
|
|
11659
|
-
}
|
|
11660
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
11661
|
-
type Query = {};
|
|
11662
|
-
}
|
|
11663
|
-
namespace Responses {
|
|
11664
|
-
namespace $204 {
|
|
11665
|
-
namespace Content {
|
|
11666
|
-
type Empty = unknown;
|
|
11667
|
-
}
|
|
11668
|
-
}
|
|
11669
|
-
namespace $400 {
|
|
11670
|
-
namespace Content {
|
|
11671
|
-
interface ApplicationJson {
|
|
11672
|
-
[k: string]: unknown;
|
|
11673
|
-
}
|
|
11674
|
-
}
|
|
11675
|
-
}
|
|
11676
|
-
namespace $403 {
|
|
11677
|
-
namespace Content {
|
|
11678
|
-
interface ApplicationJson {
|
|
11679
|
-
[k: string]: unknown;
|
|
11680
|
-
}
|
|
11681
|
-
}
|
|
11682
|
-
}
|
|
11683
|
-
namespace $404 {
|
|
11684
|
-
namespace Content {
|
|
11685
|
-
interface ApplicationJson {
|
|
11686
|
-
[k: string]: unknown;
|
|
11687
|
-
}
|
|
11688
|
-
}
|
|
11689
|
-
}
|
|
11690
|
-
namespace $412 {
|
|
11691
|
-
namespace Content {
|
|
11692
|
-
interface ApplicationJson {
|
|
11693
|
-
[k: string]: unknown;
|
|
11694
|
-
}
|
|
11695
|
-
}
|
|
11696
|
-
}
|
|
11697
|
-
namespace $429 {
|
|
11698
|
-
namespace Content {
|
|
11699
|
-
interface ApplicationJson {
|
|
11700
|
-
[k: string]: unknown;
|
|
11701
|
-
}
|
|
11702
|
-
}
|
|
11703
|
-
}
|
|
11704
|
-
namespace $500 {
|
|
11705
|
-
namespace Content {
|
|
11706
|
-
interface ApplicationJson {
|
|
11707
|
-
[k: string]: unknown;
|
|
11708
|
-
}
|
|
11709
|
-
}
|
|
11710
|
-
}
|
|
11711
|
-
namespace Default {
|
|
11712
|
-
namespace Content {
|
|
11713
|
-
interface ApplicationJson {
|
|
11714
|
-
[k: string]: unknown;
|
|
11715
|
-
}
|
|
11716
|
-
}
|
|
11717
|
-
}
|
|
11718
|
-
}
|
|
11719
|
-
}
|
|
11720
|
-
}
|
|
11721
11738
|
namespace V2StacksStackIdUpdateSchedule {
|
|
11722
11739
|
namespace Put {
|
|
11723
11740
|
namespace Parameters {
|
|
@@ -19111,7 +19128,28 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19111
19128
|
namespace $400 {
|
|
19112
19129
|
namespace Content {
|
|
19113
19130
|
interface ApplicationJson {
|
|
19114
|
-
|
|
19131
|
+
message: string;
|
|
19132
|
+
params?: {
|
|
19133
|
+
[k: string]: string;
|
|
19134
|
+
};
|
|
19135
|
+
type: string;
|
|
19136
|
+
/**
|
|
19137
|
+
* One entry per problem. Each entry is a oneOf, mutually exclusive on type: a DomainNotMigratableValidationError (type domainNotMigratable, path = the affected domain, context.reason = the typed reason code), or a generic service-base validation error (type = the JSON-schema keyword such as required/pattern/format, path = the request field).
|
|
19138
|
+
*/
|
|
19139
|
+
validationErrors: (MittwaldAPIV2.Components.Schemas.DomainmigrationDomainNotMigratableValidationError | {
|
|
19140
|
+
context?: {
|
|
19141
|
+
[k: string]: string;
|
|
19142
|
+
};
|
|
19143
|
+
message: string;
|
|
19144
|
+
/**
|
|
19145
|
+
* The request field that failed validation (JS property-access notation, e.g. .pAccount).
|
|
19146
|
+
*/
|
|
19147
|
+
path: string;
|
|
19148
|
+
/**
|
|
19149
|
+
* JSON-schema validation keyword (e.g. required, pattern, format).
|
|
19150
|
+
*/
|
|
19151
|
+
type: string;
|
|
19152
|
+
})[];
|
|
19115
19153
|
}
|
|
19116
19154
|
}
|
|
19117
19155
|
}
|
|
@@ -21014,6 +21052,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21014
21052
|
type Query = {
|
|
21015
21053
|
extensionId?: string;
|
|
21016
21054
|
extensionInstanceId?: string;
|
|
21055
|
+
state?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecutionState[];
|
|
21017
21056
|
limit?: number;
|
|
21018
21057
|
skip?: number;
|
|
21019
21058
|
page?: number;
|
|
@@ -24983,6 +25022,76 @@ export declare namespace MittwaldAPIV2 {
|
|
|
24983
25022
|
}
|
|
24984
25023
|
}
|
|
24985
25024
|
}
|
|
25025
|
+
namespace V2MailAddressesMailAddressIdRequestRateLimitChange {
|
|
25026
|
+
namespace Post {
|
|
25027
|
+
namespace Parameters {
|
|
25028
|
+
type Path = {
|
|
25029
|
+
mailAddressId: string;
|
|
25030
|
+
};
|
|
25031
|
+
interface RequestBody {
|
|
25032
|
+
rateLimitId: string;
|
|
25033
|
+
}
|
|
25034
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
25035
|
+
type Query = {};
|
|
25036
|
+
}
|
|
25037
|
+
namespace Responses {
|
|
25038
|
+
namespace $204 {
|
|
25039
|
+
namespace Content {
|
|
25040
|
+
type Empty = unknown;
|
|
25041
|
+
}
|
|
25042
|
+
}
|
|
25043
|
+
namespace $400 {
|
|
25044
|
+
namespace Content {
|
|
25045
|
+
interface ApplicationJson {
|
|
25046
|
+
[k: string]: unknown;
|
|
25047
|
+
}
|
|
25048
|
+
}
|
|
25049
|
+
}
|
|
25050
|
+
namespace $403 {
|
|
25051
|
+
namespace Content {
|
|
25052
|
+
interface ApplicationJson {
|
|
25053
|
+
[k: string]: unknown;
|
|
25054
|
+
}
|
|
25055
|
+
}
|
|
25056
|
+
}
|
|
25057
|
+
namespace $404 {
|
|
25058
|
+
namespace Content {
|
|
25059
|
+
interface ApplicationJson {
|
|
25060
|
+
[k: string]: unknown;
|
|
25061
|
+
}
|
|
25062
|
+
}
|
|
25063
|
+
}
|
|
25064
|
+
namespace $429 {
|
|
25065
|
+
namespace Content {
|
|
25066
|
+
interface ApplicationJson {
|
|
25067
|
+
[k: string]: unknown;
|
|
25068
|
+
}
|
|
25069
|
+
}
|
|
25070
|
+
}
|
|
25071
|
+
namespace $500 {
|
|
25072
|
+
namespace Content {
|
|
25073
|
+
interface ApplicationJson {
|
|
25074
|
+
[k: string]: unknown;
|
|
25075
|
+
}
|
|
25076
|
+
}
|
|
25077
|
+
}
|
|
25078
|
+
namespace $503 {
|
|
25079
|
+
namespace Content {
|
|
25080
|
+
interface ApplicationJson {
|
|
25081
|
+
[k: string]: unknown;
|
|
25082
|
+
}
|
|
25083
|
+
}
|
|
25084
|
+
}
|
|
25085
|
+
namespace Default {
|
|
25086
|
+
namespace Content {
|
|
25087
|
+
interface ApplicationJson {
|
|
25088
|
+
[k: string]: unknown;
|
|
25089
|
+
}
|
|
25090
|
+
}
|
|
25091
|
+
}
|
|
25092
|
+
}
|
|
25093
|
+
}
|
|
25094
|
+
}
|
|
24986
25095
|
namespace V2DeliveryBoxesDeliveryBoxIdDescription {
|
|
24987
25096
|
namespace Patch {
|
|
24988
25097
|
namespace Parameters {
|
|
@@ -27385,6 +27494,59 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27385
27494
|
}
|
|
27386
27495
|
}
|
|
27387
27496
|
}
|
|
27497
|
+
namespace V2CustomersCustomerIdProjects {
|
|
27498
|
+
namespace Get {
|
|
27499
|
+
namespace Parameters {
|
|
27500
|
+
type Path = {
|
|
27501
|
+
customerId: string;
|
|
27502
|
+
};
|
|
27503
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27504
|
+
type Query = {
|
|
27505
|
+
searchTerm?: string;
|
|
27506
|
+
limit?: number;
|
|
27507
|
+
skip?: number;
|
|
27508
|
+
page?: number;
|
|
27509
|
+
sort?: "createdAt" | "description";
|
|
27510
|
+
order?: "asc" | "desc";
|
|
27511
|
+
};
|
|
27512
|
+
}
|
|
27513
|
+
namespace Responses {
|
|
27514
|
+
namespace $200 {
|
|
27515
|
+
namespace Content {
|
|
27516
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[];
|
|
27517
|
+
}
|
|
27518
|
+
}
|
|
27519
|
+
namespace $400 {
|
|
27520
|
+
namespace Content {
|
|
27521
|
+
interface ApplicationJson {
|
|
27522
|
+
[k: string]: unknown;
|
|
27523
|
+
}
|
|
27524
|
+
}
|
|
27525
|
+
}
|
|
27526
|
+
namespace $403 {
|
|
27527
|
+
namespace Content {
|
|
27528
|
+
interface ApplicationJson {
|
|
27529
|
+
[k: string]: unknown;
|
|
27530
|
+
}
|
|
27531
|
+
}
|
|
27532
|
+
}
|
|
27533
|
+
namespace $429 {
|
|
27534
|
+
namespace Content {
|
|
27535
|
+
interface ApplicationJson {
|
|
27536
|
+
[k: string]: unknown;
|
|
27537
|
+
}
|
|
27538
|
+
}
|
|
27539
|
+
}
|
|
27540
|
+
namespace Default {
|
|
27541
|
+
namespace Content {
|
|
27542
|
+
interface ApplicationJson {
|
|
27543
|
+
[k: string]: unknown;
|
|
27544
|
+
}
|
|
27545
|
+
}
|
|
27546
|
+
}
|
|
27547
|
+
}
|
|
27548
|
+
}
|
|
27549
|
+
}
|
|
27388
27550
|
namespace V2ProjectsProjectIdMemberships {
|
|
27389
27551
|
namespace Get {
|
|
27390
27552
|
namespace Parameters {
|
|
@@ -27615,41 +27777,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27615
27777
|
namespace Responses {
|
|
27616
27778
|
namespace $200 {
|
|
27617
27779
|
namespace Content {
|
|
27618
|
-
type ApplicationJson =
|
|
27619
|
-
backupStorageUsageInBytes: number;
|
|
27620
|
-
backupStorageUsageInBytesSetAt: string;
|
|
27621
|
-
createdAt: string;
|
|
27622
|
-
customerId: string;
|
|
27623
|
-
customerMeta: {
|
|
27624
|
-
id: string;
|
|
27625
|
-
};
|
|
27626
|
-
description: string;
|
|
27627
|
-
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
27628
|
-
disabledAt?: string;
|
|
27629
|
-
enabled: boolean;
|
|
27630
|
-
/**
|
|
27631
|
-
* @deprecated
|
|
27632
|
-
* Deprecated by 'supportedFeatures'.
|
|
27633
|
-
*/
|
|
27634
|
-
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
27635
|
-
id: string;
|
|
27636
|
-
imageRefId?: string;
|
|
27637
|
-
/**
|
|
27638
|
-
* @deprecated
|
|
27639
|
-
* deprecated
|
|
27640
|
-
*/
|
|
27641
|
-
isReady: boolean;
|
|
27642
|
-
projectHostingId?: string;
|
|
27643
|
-
readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
27644
|
-
serverGroupId: string;
|
|
27645
|
-
serverId?: string;
|
|
27646
|
-
shortId: string;
|
|
27647
|
-
status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
27648
|
-
statusSetAt: string;
|
|
27649
|
-
supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
27650
|
-
webStorageUsageInBytes: number;
|
|
27651
|
-
webStorageUsageInBytesSetAt: string;
|
|
27652
|
-
}[];
|
|
27780
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[];
|
|
27653
27781
|
}
|
|
27654
27782
|
}
|
|
27655
27783
|
namespace $400 {
|
|
@@ -31711,75 +31839,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31711
31839
|
}
|
|
31712
31840
|
}
|
|
31713
31841
|
}
|
|
31714
|
-
namespace V2MailAddressesMailAddressIdRequestRateLimitChange {
|
|
31715
|
-
namespace Post {
|
|
31716
|
-
namespace Parameters {
|
|
31717
|
-
type Path = {
|
|
31718
|
-
mailAddressId: string;
|
|
31719
|
-
};
|
|
31720
|
-
interface RequestBody {
|
|
31721
|
-
rateLimitId: string;
|
|
31722
|
-
}
|
|
31723
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
31724
|
-
type Query = {};
|
|
31725
|
-
}
|
|
31726
|
-
namespace Responses {
|
|
31727
|
-
namespace $204 {
|
|
31728
|
-
namespace Content {
|
|
31729
|
-
type Empty = unknown;
|
|
31730
|
-
}
|
|
31731
|
-
}
|
|
31732
|
-
namespace $400 {
|
|
31733
|
-
namespace Content {
|
|
31734
|
-
interface ApplicationJson {
|
|
31735
|
-
[k: string]: unknown;
|
|
31736
|
-
}
|
|
31737
|
-
}
|
|
31738
|
-
}
|
|
31739
|
-
namespace $403 {
|
|
31740
|
-
namespace Content {
|
|
31741
|
-
interface ApplicationJson {
|
|
31742
|
-
[k: string]: unknown;
|
|
31743
|
-
}
|
|
31744
|
-
}
|
|
31745
|
-
}
|
|
31746
|
-
namespace $404 {
|
|
31747
|
-
namespace Content {
|
|
31748
|
-
interface ApplicationJson {
|
|
31749
|
-
[k: string]: unknown;
|
|
31750
|
-
}
|
|
31751
|
-
}
|
|
31752
|
-
}
|
|
31753
|
-
namespace $429 {
|
|
31754
|
-
namespace Content {
|
|
31755
|
-
interface ApplicationJson {
|
|
31756
|
-
[k: string]: unknown;
|
|
31757
|
-
}
|
|
31758
|
-
}
|
|
31759
|
-
}
|
|
31760
|
-
namespace $500 {
|
|
31761
|
-
namespace Content {
|
|
31762
|
-
interface ApplicationJson {
|
|
31763
|
-
[k: string]: unknown;
|
|
31764
|
-
}
|
|
31765
|
-
}
|
|
31766
|
-
}
|
|
31767
|
-
namespace $503 {
|
|
31768
|
-
namespace Content {
|
|
31769
|
-
interface ApplicationJson {
|
|
31770
|
-
[k: string]: unknown;
|
|
31771
|
-
}
|
|
31772
|
-
}
|
|
31773
|
-
}
|
|
31774
|
-
namespace Default {
|
|
31775
|
-
namespace Content {
|
|
31776
|
-
interface ApplicationJson {
|
|
31777
|
-
[k: string]: unknown;
|
|
31778
|
-
}
|
|
31779
|
-
}
|
|
31780
|
-
}
|
|
31781
|
-
}
|
|
31782
|
-
}
|
|
31783
|
-
}
|
|
31784
31842
|
}
|
|
31785
31843
|
}
|