@mittwald/api-client 4.396.0 → 4.398.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +6 -4
- package/dist/esm/generated/v2/client.js +6 -4
- package/dist/esm/generated/v2/descriptors.js +18 -12
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +47 -38
- package/dist/types/generated/v2/client.d.ts +211 -164
- package/dist/types/generated/v2/descriptors.d.ts +6 -4
- package/dist/types/generated/v2/types.d.ts +1152 -1079
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -922,6 +922,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
922
922
|
type RequestData = InferredRequestData<typeof descriptors.domainListTlds>;
|
|
923
923
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListTlds, TStatus>;
|
|
924
924
|
}
|
|
925
|
+
namespace DomainMigrationListMigrationsByProjectId {
|
|
926
|
+
type RequestData = InferredRequestData<typeof descriptors.domainMigrationListMigrationsByProjectId>;
|
|
927
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainMigrationListMigrationsByProjectId, TStatus>;
|
|
928
|
+
}
|
|
925
929
|
namespace DomainResendContactVerificationEmail {
|
|
926
930
|
type RequestData = InferredRequestData<typeof descriptors.domainResendContactVerificationEmail>;
|
|
927
931
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainResendContactVerificationEmail, TStatus>;
|
|
@@ -1526,10 +1530,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1526
1530
|
type RequestData = InferredRequestData<typeof descriptors.projectGetServer>;
|
|
1527
1531
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetServer, TStatus>;
|
|
1528
1532
|
}
|
|
1533
|
+
namespace ProjectListCustomerProjects {
|
|
1534
|
+
type RequestData = InferredRequestData<typeof descriptors.projectListCustomerProjects>;
|
|
1535
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListCustomerProjects, TStatus>;
|
|
1536
|
+
}
|
|
1529
1537
|
namespace ProjectListMembershipsForProject {
|
|
1530
1538
|
type RequestData = InferredRequestData<typeof descriptors.projectListMembershipsForProject>;
|
|
1531
1539
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListMembershipsForProject, TStatus>;
|
|
1532
1540
|
}
|
|
1541
|
+
namespace ProjectListProjectActivities {
|
|
1542
|
+
type RequestData = InferredRequestData<typeof descriptors.projectListProjectActivities>;
|
|
1543
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListProjectActivities, TStatus>;
|
|
1544
|
+
}
|
|
1533
1545
|
namespace ProjectListProjectInvites {
|
|
1534
1546
|
type RequestData = InferredRequestData<typeof descriptors.projectListProjectInvites>;
|
|
1535
1547
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListProjectInvites, TStatus>;
|
|
@@ -1878,14 +1890,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1878
1890
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1879
1891
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1880
1892
|
}
|
|
1881
|
-
namespace ProjectListProjectActivities {
|
|
1882
|
-
type RequestData = InferredRequestData<typeof descriptors.projectListProjectActivities>;
|
|
1883
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListProjectActivities, TStatus>;
|
|
1884
|
-
}
|
|
1885
|
-
namespace ProjectListCustomerProjects {
|
|
1886
|
-
type RequestData = InferredRequestData<typeof descriptors.projectListCustomerProjects>;
|
|
1887
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListCustomerProjects, TStatus>;
|
|
1888
|
-
}
|
|
1889
1893
|
}
|
|
1890
1894
|
namespace Components {
|
|
1891
1895
|
namespace Schemas {
|
|
@@ -3028,6 +3032,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3028
3032
|
domain: string;
|
|
3029
3033
|
id: string;
|
|
3030
3034
|
}
|
|
3035
|
+
interface ConversationBasicConversation {
|
|
3036
|
+
category?: MittwaldAPIV2.Components.Schemas.ConversationCategory;
|
|
3037
|
+
conversationId: string;
|
|
3038
|
+
createdAt: string;
|
|
3039
|
+
lastMessageAt?: string;
|
|
3040
|
+
mainUser: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
3041
|
+
notificationRoles?: MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[];
|
|
3042
|
+
relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference;
|
|
3043
|
+
relations?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[];
|
|
3044
|
+
sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
|
|
3045
|
+
shortId: string;
|
|
3046
|
+
status: MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
3047
|
+
title: string;
|
|
3048
|
+
visibility: "shared" | "private";
|
|
3049
|
+
}
|
|
3031
3050
|
type ConversationCategoryReferenceType = ("unspecified" | "server" | "project" | "organisation" | "extensionInstance")[];
|
|
3032
3051
|
interface ConversationCategory {
|
|
3033
3052
|
categoryId: string;
|
|
@@ -3861,6 +3880,105 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3861
3880
|
current: MittwaldAPIV2.Components.Schemas.DomainHandleData;
|
|
3862
3881
|
desired?: MittwaldAPIV2.Components.Schemas.DomainHandleData;
|
|
3863
3882
|
}
|
|
3883
|
+
interface DomainmigrationMigration {
|
|
3884
|
+
createdAt?: string;
|
|
3885
|
+
domains: {
|
|
3886
|
+
coabData?: {
|
|
3887
|
+
dnsRecords?: MittwaldAPIV2.Components.Schemas.DomainmigrationDNSRecord[];
|
|
3888
|
+
handleData?: {
|
|
3889
|
+
handleFields?: {
|
|
3890
|
+
name: string;
|
|
3891
|
+
value: string;
|
|
3892
|
+
}[];
|
|
3893
|
+
handleRef?: string;
|
|
3894
|
+
};
|
|
3895
|
+
nameservers?: string[];
|
|
3896
|
+
subdomains?: MittwaldAPIV2.Components.Schemas.DomainmigrationSubdomain[];
|
|
3897
|
+
};
|
|
3898
|
+
domain: string;
|
|
3899
|
+
domainId: string;
|
|
3900
|
+
state: "pending" | "succeeded" | "failed";
|
|
3901
|
+
}[];
|
|
3902
|
+
finishedAt?: string;
|
|
3903
|
+
id: string;
|
|
3904
|
+
pAccount: string;
|
|
3905
|
+
projectId: string;
|
|
3906
|
+
}
|
|
3907
|
+
interface DomainmigrationCheckMigrationResponse {
|
|
3908
|
+
allDomainsMigratable: boolean;
|
|
3909
|
+
domains: (MittwaldAPIV2.Components.Schemas.DomainmigrationMigratableDomain | MittwaldAPIV2.Components.Schemas.DomainmigrationNonMigratableDomain)[];
|
|
3910
|
+
generalIssues?: MittwaldAPIV2.Components.Schemas.DomainmigrationMigrationNotPossibleReasons;
|
|
3911
|
+
generallyPossible: boolean;
|
|
3912
|
+
}
|
|
3913
|
+
interface DomainmigrationDNSRecord {
|
|
3914
|
+
name?: string;
|
|
3915
|
+
ttl: number;
|
|
3916
|
+
type: MittwaldAPIV2.Components.Schemas.DomainmigrationDNSRecordType;
|
|
3917
|
+
value: string;
|
|
3918
|
+
}
|
|
3919
|
+
type DomainmigrationDNSRecordType = "A" | "AAAA" | "TXT" | "MX" | "CNAME" | "SRV" | "CAA" | "NS";
|
|
3920
|
+
/**
|
|
3921
|
+
* Typed reason a domain cannot be migrated:
|
|
3922
|
+
*
|
|
3923
|
+
* * `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.
|
|
3924
|
+
* * `tldNotSupported`: the domain's TLD is not supported for migration (also used when the registry article for the domain was not found).
|
|
3925
|
+
* * `tldNotMigratable`: the domain's TLD is supported in general, but migration is not currently possible for this TLD.
|
|
3926
|
+
* * `premiumDomain`: the domain is a premium domain, which is not supported yet.
|
|
3927
|
+
* * `registrarNotSupported`: COAB names a registrar we do not support for migration.
|
|
3928
|
+
* * `notOrderable`: the order service rejected the domain for a reason other than an unsupported TLD or a still-reserved domain.
|
|
3929
|
+
* * `insufficientState`: the COAB data is incomplete (e.g. missing registrar, price or owner) or the domain is still reserved at the registry.
|
|
3930
|
+
* * `contractDateOutOfRange`: the COAB contract's next-period date is in the past or more than two years in the future.
|
|
3931
|
+
* * `invalidDomainName`: the COAB domain name does not match the `idn-naked-domain` format we accept.
|
|
3932
|
+
*/
|
|
3933
|
+
type DomainmigrationDomainNotMigratableReason = "needEpp" | "tldNotSupported" | "tldNotMigratable" | "premiumDomain" | "registrarNotSupported" | "notOrderable" | "insufficientState" | "contractDateOutOfRange" | "invalidDomainName";
|
|
3934
|
+
/**
|
|
3935
|
+
* 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.
|
|
3936
|
+
*/
|
|
3937
|
+
interface DomainmigrationDomainNotMigratableValidationError {
|
|
3938
|
+
context: {
|
|
3939
|
+
reason: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainNotMigratableReason;
|
|
3940
|
+
[k: string]: string;
|
|
3941
|
+
};
|
|
3942
|
+
message: string;
|
|
3943
|
+
/**
|
|
3944
|
+
* The affected domain.
|
|
3945
|
+
*/
|
|
3946
|
+
path: string;
|
|
3947
|
+
/**
|
|
3948
|
+
* Discriminator for this branch; always domainNotMigratable.
|
|
3949
|
+
*/
|
|
3950
|
+
type: "domainNotMigratable";
|
|
3951
|
+
}
|
|
3952
|
+
interface DomainmigrationMigratableDomain {
|
|
3953
|
+
hostname: string;
|
|
3954
|
+
migratable: true;
|
|
3955
|
+
migrationData: MittwaldAPIV2.Components.Schemas.DomainmigrationMigrationData;
|
|
3956
|
+
warnings?: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarning[];
|
|
3957
|
+
}
|
|
3958
|
+
interface DomainmigrationMigrationData {
|
|
3959
|
+
dnsRecords: MittwaldAPIV2.Components.Schemas.DomainmigrationDNSRecord[];
|
|
3960
|
+
/**
|
|
3961
|
+
* Monthly net domain price in EUR cents.
|
|
3962
|
+
*/
|
|
3963
|
+
monthlyPriceCents: number;
|
|
3964
|
+
subdomains: MittwaldAPIV2.Components.Schemas.DomainmigrationSubdomain[];
|
|
3965
|
+
}
|
|
3966
|
+
interface DomainmigrationMigrationNotPossibleReasons {
|
|
3967
|
+
customerIsNotAllowedToOrder: boolean;
|
|
3968
|
+
legacyTokenNotAuthorized: boolean;
|
|
3969
|
+
noDomainsInSource: boolean;
|
|
3970
|
+
}
|
|
3971
|
+
interface DomainmigrationNonMigratableDomain {
|
|
3972
|
+
hostname: string;
|
|
3973
|
+
issues: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainNotMigratableReason[];
|
|
3974
|
+
migratable: false;
|
|
3975
|
+
warnings?: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarning[];
|
|
3976
|
+
}
|
|
3977
|
+
interface DomainmigrationSubdomain {
|
|
3978
|
+
dnsRecords: MittwaldAPIV2.Components.Schemas.DomainmigrationDNSRecord[];
|
|
3979
|
+
hostname: string;
|
|
3980
|
+
target?: string;
|
|
3981
|
+
}
|
|
3864
3982
|
interface DomainProcess {
|
|
3865
3983
|
error?: string;
|
|
3866
3984
|
lastUpdate: string;
|
|
@@ -4137,7 +4255,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4137
4255
|
id: string;
|
|
4138
4256
|
kind: "extensionAddedToContext" | "instanceUpdated" | "secretRotated" | "instanceRemovedFromContext";
|
|
4139
4257
|
nextScheduledExecution?: string;
|
|
4140
|
-
state:
|
|
4258
|
+
state: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecutionState;
|
|
4141
4259
|
}
|
|
4142
4260
|
interface MarketplaceExtensionSecret {
|
|
4143
4261
|
secretId: string;
|
|
@@ -5755,1078 +5873,993 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5755
5873
|
template: MittwaldAPIV2.Components.Schemas.ArticleArticleTemplate;
|
|
5756
5874
|
}
|
|
5757
5875
|
type PolicyPolicy = string;
|
|
5758
|
-
interface
|
|
5759
|
-
|
|
5760
|
-
|
|
5761
|
-
|
|
5762
|
-
|
|
5763
|
-
|
|
5764
|
-
|
|
5765
|
-
|
|
5766
|
-
|
|
5767
|
-
min?: {
|
|
5768
|
-
height?: number;
|
|
5769
|
-
width?: number;
|
|
5770
|
-
};
|
|
5876
|
+
interface ActivitylogAppInstallationCopyRequested {
|
|
5877
|
+
changes: {
|
|
5878
|
+
after?: {
|
|
5879
|
+
appId: string;
|
|
5880
|
+
sourceAppInstallationId: string;
|
|
5881
|
+
};
|
|
5882
|
+
before?: {
|
|
5883
|
+
appId?: string | null;
|
|
5884
|
+
sourceAppInstallationId?: string | null;
|
|
5771
5885
|
};
|
|
5772
5886
|
};
|
|
5887
|
+
name: "app.copy-requested";
|
|
5773
5888
|
}
|
|
5774
|
-
|
|
5775
|
-
|
|
5776
|
-
|
|
5777
|
-
|
|
5778
|
-
|
|
5779
|
-
|
|
5780
|
-
|
|
5781
|
-
|
|
5782
|
-
|
|
5783
|
-
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
|
|
5789
|
-
|
|
5790
|
-
|
|
5791
|
-
|
|
5792
|
-
}
|
|
5793
|
-
interface ProjectFilesystemUsagesDisk {
|
|
5794
|
-
path?: string;
|
|
5795
|
-
totalBytes?: number;
|
|
5796
|
-
usedBytes?: number;
|
|
5889
|
+
interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
|
|
5890
|
+
changes: {
|
|
5891
|
+
after?: {
|
|
5892
|
+
software: string;
|
|
5893
|
+
softwareVersion: string;
|
|
5894
|
+
updatePolicy: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
5895
|
+
};
|
|
5896
|
+
before?: {
|
|
5897
|
+
software?: string;
|
|
5898
|
+
softwareVersion?: string;
|
|
5899
|
+
updatePolicy?: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
5900
|
+
};
|
|
5901
|
+
};
|
|
5902
|
+
name: "app.systemsoftware-set" | "app.systemsoftware-deleted";
|
|
5903
|
+
parameters?: {
|
|
5904
|
+
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5905
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5906
|
+
};
|
|
5797
5907
|
}
|
|
5798
|
-
interface
|
|
5799
|
-
|
|
5908
|
+
interface ActivitylogAppInstallationAppVersionSet {
|
|
5909
|
+
changes: {
|
|
5910
|
+
after?: {
|
|
5911
|
+
appId: string;
|
|
5912
|
+
appVersionId: string;
|
|
5913
|
+
};
|
|
5914
|
+
before?: {
|
|
5915
|
+
appId?: string | null;
|
|
5916
|
+
appVersionId?: string | null;
|
|
5917
|
+
};
|
|
5918
|
+
};
|
|
5919
|
+
name: "app.version-set";
|
|
5800
5920
|
}
|
|
5801
|
-
interface
|
|
5802
|
-
|
|
5803
|
-
|
|
5804
|
-
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
|
|
5921
|
+
interface ActivitylogDatabaseCreated {
|
|
5922
|
+
changes: {
|
|
5923
|
+
after?: {
|
|
5924
|
+
description: string;
|
|
5925
|
+
name: string;
|
|
5926
|
+
version: string;
|
|
5927
|
+
};
|
|
5928
|
+
before?: {
|
|
5929
|
+
description?: string | null;
|
|
5930
|
+
name?: string | null;
|
|
5931
|
+
version?: string | null;
|
|
5932
|
+
};
|
|
5933
|
+
};
|
|
5934
|
+
name: "database.mysql-created" | "database.redis-created";
|
|
5935
|
+
parameters: {
|
|
5936
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5937
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5938
|
+
};
|
|
5810
5939
|
}
|
|
5811
|
-
interface
|
|
5812
|
-
|
|
5813
|
-
|
|
5814
|
-
|
|
5940
|
+
interface ActivitylogDatabaseDeleted {
|
|
5941
|
+
changes: {};
|
|
5942
|
+
name: "database.mysql-deleted" | "database.redis-deleted";
|
|
5943
|
+
parameters: {
|
|
5944
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5945
|
+
};
|
|
5815
5946
|
}
|
|
5816
|
-
|
|
5817
|
-
|
|
5818
|
-
|
|
5819
|
-
|
|
5820
|
-
|
|
5821
|
-
|
|
5822
|
-
|
|
5823
|
-
|
|
5824
|
-
|
|
5825
|
-
|
|
5826
|
-
|
|
5827
|
-
|
|
5828
|
-
clusterId?: string;
|
|
5829
|
-
createdAt: string;
|
|
5830
|
-
customerId: string;
|
|
5831
|
-
deletionRequested?: boolean;
|
|
5832
|
-
description: string;
|
|
5833
|
-
directories: {
|
|
5834
|
-
[k: string]: string;
|
|
5947
|
+
interface ActivitylogDatabaseDescriptionSet {
|
|
5948
|
+
changes: {
|
|
5949
|
+
after?: {
|
|
5950
|
+
description: string;
|
|
5951
|
+
};
|
|
5952
|
+
before?: {
|
|
5953
|
+
description: string | null;
|
|
5954
|
+
};
|
|
5955
|
+
};
|
|
5956
|
+
name: "database.mysql-description-set" | "database.redis-description-set";
|
|
5957
|
+
parameters: {
|
|
5958
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5835
5959
|
};
|
|
5836
|
-
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
5837
|
-
disabledAt?: string;
|
|
5838
|
-
enabled: boolean;
|
|
5839
|
-
/**
|
|
5840
|
-
* @deprecated
|
|
5841
|
-
* Deprecated by 'supportedFeatures'.
|
|
5842
|
-
*/
|
|
5843
|
-
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
5844
|
-
id: string;
|
|
5845
|
-
imageRefId?: string;
|
|
5846
|
-
/**
|
|
5847
|
-
* @deprecated
|
|
5848
|
-
* deprecated by property status
|
|
5849
|
-
*/
|
|
5850
|
-
isReady: boolean;
|
|
5851
|
-
projectHostingId?: string;
|
|
5852
|
-
readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
5853
|
-
serverGroupId: string;
|
|
5854
|
-
serverId?: string;
|
|
5855
|
-
serverShortId?: string;
|
|
5856
|
-
shortId: string;
|
|
5857
|
-
spec?: MittwaldAPIV2.Components.Schemas.ProjectVisitorSpec | MittwaldAPIV2.Components.Schemas.ProjectHardwareSpec;
|
|
5858
|
-
statisticsBaseDomain?: string;
|
|
5859
|
-
status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
5860
|
-
statusSetAt: string;
|
|
5861
|
-
supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
5862
|
-
webStorageUsageInBytes: number;
|
|
5863
|
-
webStorageUsageInBytesSetAt: string;
|
|
5864
|
-
}
|
|
5865
|
-
type ProjectServerDisableReason = "suspended";
|
|
5866
|
-
type ProjectServerStatus = "pending" | "ready" | "unready" | "suspended" | "migrating";
|
|
5867
|
-
interface ProjectServer {
|
|
5868
|
-
clusterName: string;
|
|
5869
|
-
createdAt: string;
|
|
5870
|
-
customerId: string;
|
|
5871
|
-
description: string;
|
|
5872
|
-
disabledReason?: MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason;
|
|
5873
|
-
groupId: string;
|
|
5874
|
-
id: string;
|
|
5875
|
-
imageRefId?: string;
|
|
5876
|
-
/**
|
|
5877
|
-
* @deprecated
|
|
5878
|
-
* deprecated by property status
|
|
5879
|
-
*/
|
|
5880
|
-
isReady: boolean;
|
|
5881
|
-
machineType: MittwaldAPIV2.Components.Schemas.ProjectMachineType;
|
|
5882
|
-
readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedServerReadinessStatus;
|
|
5883
|
-
shortId: string;
|
|
5884
|
-
statisticsBaseDomain?: string;
|
|
5885
|
-
status: MittwaldAPIV2.Components.Schemas.ProjectServerStatus;
|
|
5886
|
-
storage: string;
|
|
5887
5960
|
}
|
|
5888
|
-
interface
|
|
5889
|
-
|
|
5890
|
-
|
|
5961
|
+
interface ActivitylogDatabaseMysqlNameSet {
|
|
5962
|
+
changes: {
|
|
5963
|
+
after?: {
|
|
5964
|
+
name: string;
|
|
5965
|
+
};
|
|
5966
|
+
before?: {
|
|
5967
|
+
name: string | null;
|
|
5968
|
+
};
|
|
5969
|
+
};
|
|
5970
|
+
name: "database.mysql-name-set";
|
|
5971
|
+
parameters: {
|
|
5972
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
5973
|
+
};
|
|
5891
5974
|
}
|
|
5892
|
-
interface
|
|
5893
|
-
|
|
5894
|
-
|
|
5895
|
-
|
|
5896
|
-
|
|
5897
|
-
|
|
5898
|
-
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
|
|
5975
|
+
interface ActivitylogDatabaseMysqlUserCreated {
|
|
5976
|
+
changes: {
|
|
5977
|
+
after?: {
|
|
5978
|
+
description: string;
|
|
5979
|
+
externalAccess: boolean;
|
|
5980
|
+
name: string;
|
|
5981
|
+
permissions: {};
|
|
5982
|
+
};
|
|
5983
|
+
before?: {
|
|
5984
|
+
description?: string | null;
|
|
5985
|
+
externalAccess?: boolean | null;
|
|
5986
|
+
name?: string | null;
|
|
5987
|
+
permissions?: {} | null;
|
|
5988
|
+
};
|
|
5989
|
+
};
|
|
5990
|
+
name: "database.mysql-user-created";
|
|
5991
|
+
parameters: {
|
|
5992
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
5993
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5994
|
+
};
|
|
5902
5995
|
}
|
|
5903
|
-
interface
|
|
5904
|
-
|
|
5905
|
-
|
|
5996
|
+
interface ActivitylogDatabaseMysqlUserDeleted {
|
|
5997
|
+
changes: {};
|
|
5998
|
+
name: "database.mysql-user-deleted";
|
|
5999
|
+
parameters: {
|
|
6000
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6001
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6002
|
+
};
|
|
5906
6003
|
}
|
|
5907
|
-
interface
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
6004
|
+
interface ActivitylogDatabaseMysqlUserUpdated {
|
|
6005
|
+
changes: {
|
|
6006
|
+
after?: {
|
|
6007
|
+
description: string;
|
|
6008
|
+
externalAccess: boolean;
|
|
6009
|
+
permissions: {};
|
|
6010
|
+
};
|
|
6011
|
+
before?: {
|
|
6012
|
+
description: string | null;
|
|
6013
|
+
externalAccess: boolean | null;
|
|
6014
|
+
permissions: {};
|
|
6015
|
+
};
|
|
6016
|
+
};
|
|
6017
|
+
name: "database.mysql-user-updated";
|
|
6018
|
+
parameters: {
|
|
6019
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6020
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6021
|
+
};
|
|
5911
6022
|
}
|
|
5912
|
-
interface
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
|
|
5918
|
-
|
|
5919
|
-
|
|
6023
|
+
interface ActivitylogDatabaseVersionSet {
|
|
6024
|
+
changes: {
|
|
6025
|
+
after?: {
|
|
6026
|
+
version: string;
|
|
6027
|
+
};
|
|
6028
|
+
before?: {
|
|
6029
|
+
version: string;
|
|
6030
|
+
};
|
|
6031
|
+
};
|
|
6032
|
+
name: "database.mysql-version-set" | "database.redis-version-set";
|
|
6033
|
+
parameters: {
|
|
6034
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6035
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6036
|
+
};
|
|
5920
6037
|
}
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5926
|
-
|
|
5927
|
-
|
|
6038
|
+
interface ActivitylogDnsARecordSet {
|
|
6039
|
+
changes: {
|
|
6040
|
+
after?: {
|
|
6041
|
+
aRecords: string[];
|
|
6042
|
+
aaaaRecords: string[];
|
|
6043
|
+
};
|
|
6044
|
+
before?: {
|
|
6045
|
+
aRecords: string[];
|
|
6046
|
+
aaaaRecords: string[];
|
|
6047
|
+
};
|
|
6048
|
+
};
|
|
6049
|
+
name: "dns.a-record-set";
|
|
6050
|
+
parameters: {
|
|
6051
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6052
|
+
};
|
|
5928
6053
|
}
|
|
5929
|
-
|
|
5930
|
-
|
|
5931
|
-
|
|
5932
|
-
|
|
5933
|
-
|
|
5934
|
-
|
|
5935
|
-
|
|
5936
|
-
|
|
5937
|
-
|
|
5938
|
-
|
|
5939
|
-
|
|
5940
|
-
|
|
5941
|
-
|
|
5942
|
-
password: string;
|
|
5943
|
-
} | {
|
|
5944
|
-
publicKeys: MittwaldAPIV2.Components.Schemas.SshuserPublicKey[];
|
|
5945
|
-
};
|
|
5946
|
-
/**
|
|
5947
|
-
* A representation of an ssh-public-key.
|
|
5948
|
-
*/
|
|
5949
|
-
interface SshuserPublicKey {
|
|
5950
|
-
comment: string;
|
|
5951
|
-
key: string;
|
|
6054
|
+
interface ActivitylogDnsCaaRecordSet {
|
|
6055
|
+
changes: {
|
|
6056
|
+
after?: {
|
|
6057
|
+
caa: {}[];
|
|
6058
|
+
};
|
|
6059
|
+
before?: {
|
|
6060
|
+
caa: {}[];
|
|
6061
|
+
};
|
|
6062
|
+
};
|
|
6063
|
+
name: "dns.caa-record-set";
|
|
6064
|
+
parameters: {
|
|
6065
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6066
|
+
};
|
|
5952
6067
|
}
|
|
5953
|
-
|
|
5954
|
-
|
|
5955
|
-
|
|
5956
|
-
|
|
5957
|
-
|
|
5958
|
-
|
|
5959
|
-
|
|
5960
|
-
|
|
5961
|
-
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
projectId: string;
|
|
5967
|
-
publicKeys?: MittwaldAPIV2.Components.Schemas.SshuserPublicKey[];
|
|
5968
|
-
updatedAt?: string;
|
|
5969
|
-
userName: string;
|
|
6068
|
+
interface ActivitylogDnsCnameRecordSet {
|
|
6069
|
+
changes: {
|
|
6070
|
+
after?: {
|
|
6071
|
+
cname: string;
|
|
6072
|
+
};
|
|
6073
|
+
before?: {
|
|
6074
|
+
cname: string;
|
|
6075
|
+
};
|
|
6076
|
+
};
|
|
6077
|
+
name: "dns.cname-record-set";
|
|
6078
|
+
parameters: {
|
|
6079
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6080
|
+
};
|
|
5970
6081
|
}
|
|
5971
|
-
|
|
5972
|
-
|
|
5973
|
-
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
|
|
5977
|
-
|
|
5978
|
-
|
|
5979
|
-
|
|
5980
|
-
|
|
5981
|
-
|
|
5982
|
-
|
|
5983
|
-
|
|
5984
|
-
updatedAt?: string;
|
|
5985
|
-
userName: string;
|
|
6082
|
+
interface ActivitylogDnsMxRecordSet {
|
|
6083
|
+
changes: {
|
|
6084
|
+
after?: {
|
|
6085
|
+
mx: {}[];
|
|
6086
|
+
};
|
|
6087
|
+
before?: {
|
|
6088
|
+
mx: {}[];
|
|
6089
|
+
};
|
|
6090
|
+
};
|
|
6091
|
+
name: "dns.mx-record-set";
|
|
6092
|
+
parameters: {
|
|
6093
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6094
|
+
};
|
|
5986
6095
|
}
|
|
5987
|
-
interface
|
|
5988
|
-
|
|
5989
|
-
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
|
|
5995
|
-
|
|
5996
|
-
|
|
5997
|
-
|
|
6096
|
+
interface ActivitylogDnsSrvRecordSet {
|
|
6097
|
+
changes: {
|
|
6098
|
+
after?: {
|
|
6099
|
+
srv: {}[];
|
|
6100
|
+
};
|
|
6101
|
+
before?: {
|
|
6102
|
+
srv: {}[];
|
|
6103
|
+
};
|
|
6104
|
+
};
|
|
6105
|
+
name: "dns.srv-record-set";
|
|
6106
|
+
parameters: {
|
|
6107
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5998
6108
|
};
|
|
5999
|
-
dnsNames?: string[];
|
|
6000
|
-
id: string;
|
|
6001
|
-
isExpired?: boolean;
|
|
6002
|
-
issuer?: string;
|
|
6003
|
-
lastExpirationThresholdHit?: number;
|
|
6004
|
-
projectId: string;
|
|
6005
|
-
validFrom?: string;
|
|
6006
|
-
validTo?: string;
|
|
6007
6109
|
}
|
|
6008
|
-
interface
|
|
6009
|
-
|
|
6010
|
-
|
|
6011
|
-
|
|
6110
|
+
interface ActivitylogDnsTxtRecordSet {
|
|
6111
|
+
changes: {
|
|
6112
|
+
after?: {
|
|
6113
|
+
txt: string[];
|
|
6114
|
+
};
|
|
6115
|
+
before?: {
|
|
6116
|
+
txt: string[];
|
|
6117
|
+
};
|
|
6118
|
+
};
|
|
6119
|
+
name: "dns.txt-record-set";
|
|
6120
|
+
parameters: {
|
|
6121
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6122
|
+
};
|
|
6012
6123
|
}
|
|
6013
|
-
interface
|
|
6014
|
-
|
|
6124
|
+
interface ActivitylogDnsZoneCreated {
|
|
6125
|
+
changes: {
|
|
6126
|
+
after?: {
|
|
6127
|
+
domain: string;
|
|
6128
|
+
};
|
|
6129
|
+
before?: {
|
|
6130
|
+
domain: string | null;
|
|
6131
|
+
};
|
|
6132
|
+
};
|
|
6133
|
+
name: "dns.zone-created";
|
|
6134
|
+
parameters: {
|
|
6135
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6136
|
+
};
|
|
6015
6137
|
}
|
|
6016
|
-
interface
|
|
6017
|
-
|
|
6018
|
-
|
|
6019
|
-
|
|
6020
|
-
|
|
6021
|
-
|
|
6022
|
-
dnsNames?: string[];
|
|
6023
|
-
id: string;
|
|
6024
|
-
isCompleted: boolean;
|
|
6025
|
-
issuer?: string;
|
|
6026
|
-
projectId: string;
|
|
6027
|
-
validFrom?: string;
|
|
6028
|
-
validTo?: string;
|
|
6138
|
+
interface ActivitylogDnsZoneDeleted {
|
|
6139
|
+
changes: {};
|
|
6140
|
+
name: "dns.zone-deleted";
|
|
6141
|
+
parameters: {
|
|
6142
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6143
|
+
};
|
|
6029
6144
|
}
|
|
6030
|
-
|
|
6031
|
-
|
|
6032
|
-
|
|
6033
|
-
|
|
6145
|
+
/**
|
|
6146
|
+
* Fallback when no matching action is found
|
|
6147
|
+
*/
|
|
6148
|
+
interface ActivitylogGenericAction {
|
|
6149
|
+
changes: {
|
|
6150
|
+
[k: string]: {
|
|
6151
|
+
after?: {
|
|
6152
|
+
[k: string]: unknown;
|
|
6153
|
+
};
|
|
6154
|
+
before?: {
|
|
6155
|
+
[k: string]: unknown;
|
|
6156
|
+
};
|
|
6157
|
+
};
|
|
6158
|
+
};
|
|
6159
|
+
name: string;
|
|
6160
|
+
parameters: {
|
|
6161
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6162
|
+
};
|
|
6034
6163
|
}
|
|
6035
|
-
interface
|
|
6036
|
-
|
|
6037
|
-
|
|
6038
|
-
dnsNames?: string[];
|
|
6164
|
+
interface ActivitylogAggregateReference {
|
|
6165
|
+
aggregate: string;
|
|
6166
|
+
domain: string;
|
|
6039
6167
|
id: string;
|
|
6040
|
-
issuer?: string;
|
|
6041
|
-
signingRequest?: string;
|
|
6042
|
-
validFrom?: string;
|
|
6043
|
-
validTo?: string;
|
|
6044
|
-
}
|
|
6045
|
-
interface SslCertificateRequestCreateWithCSRRequest {
|
|
6046
|
-
commonName: string;
|
|
6047
|
-
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
6048
|
-
projectId: string;
|
|
6049
6168
|
}
|
|
6050
|
-
interface
|
|
6051
|
-
|
|
6052
|
-
|
|
6169
|
+
interface ProjectAvatarRules {
|
|
6170
|
+
maxSizeInKB: number;
|
|
6171
|
+
mimeTypes: string[];
|
|
6172
|
+
properties?: {
|
|
6173
|
+
imageDimensions?: {
|
|
6174
|
+
max?: {
|
|
6175
|
+
height?: number;
|
|
6176
|
+
width?: number;
|
|
6177
|
+
};
|
|
6178
|
+
min?: {
|
|
6179
|
+
height?: number;
|
|
6180
|
+
width?: number;
|
|
6181
|
+
};
|
|
6182
|
+
};
|
|
6183
|
+
};
|
|
6053
6184
|
}
|
|
6054
6185
|
/**
|
|
6055
|
-
*
|
|
6056
|
-
*
|
|
6057
|
-
* Possible values:
|
|
6058
|
-
* - `0` – `UNSPECIFIED`: The certificate type is not specified.
|
|
6059
|
-
* - `1` – `INTERNAL`: A certificate issued and managed internally by the system.
|
|
6060
|
-
* - `2` – `EXTERNAL`: A certificate provided by an external source and imported into the system.
|
|
6061
|
-
* - `3` – `DNS`: A certificate validated using DNS-based verification.
|
|
6062
|
-
*
|
|
6186
|
+
* deprecated by property status
|
|
6063
6187
|
*/
|
|
6064
|
-
type
|
|
6065
|
-
|
|
6066
|
-
|
|
6067
|
-
|
|
6068
|
-
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
|
|
6073
|
-
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
|
|
6077
|
-
|
|
6078
|
-
|
|
6188
|
+
type ProjectDeprecatedProjectReadinessStatus = "creating" | "ready" | "unready";
|
|
6189
|
+
/**
|
|
6190
|
+
* deprecated by property status
|
|
6191
|
+
*/
|
|
6192
|
+
type ProjectDeprecatedServerReadinessStatus = "creating" | "ready" | "unready";
|
|
6193
|
+
interface ProjectFilesystemDirectoryListing {
|
|
6194
|
+
absolutePath: string;
|
|
6195
|
+
isDirectory?: boolean;
|
|
6196
|
+
isExecutable?: boolean;
|
|
6197
|
+
isFile?: boolean;
|
|
6198
|
+
isSymlink?: boolean;
|
|
6199
|
+
items?: MittwaldAPIV2.Components.Schemas.ProjectFilesystemDirectoryListing[];
|
|
6200
|
+
name: string;
|
|
6201
|
+
size: number;
|
|
6202
|
+
target?: string;
|
|
6079
6203
|
}
|
|
6080
|
-
interface
|
|
6081
|
-
|
|
6082
|
-
|
|
6083
|
-
|
|
6204
|
+
interface ProjectFilesystemUsagesDisk {
|
|
6205
|
+
path?: string;
|
|
6206
|
+
totalBytes?: number;
|
|
6207
|
+
usedBytes?: number;
|
|
6084
6208
|
}
|
|
6085
|
-
interface
|
|
6086
|
-
|
|
6087
|
-
removedValues: string[];
|
|
6088
|
-
values: string[];
|
|
6209
|
+
interface ProjectFsApiJwt {
|
|
6210
|
+
jwt: string;
|
|
6089
6211
|
}
|
|
6090
|
-
interface
|
|
6091
|
-
|
|
6092
|
-
company?: string;
|
|
6212
|
+
interface ProjectHardwareSpec {
|
|
6213
|
+
cpu?: string;
|
|
6093
6214
|
/**
|
|
6094
|
-
*
|
|
6215
|
+
* @deprecated
|
|
6216
|
+
* deprecated by memory
|
|
6095
6217
|
*/
|
|
6096
|
-
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
}
|
|
6100
|
-
interface SslDNSCertStatus {
|
|
6101
|
-
message?: string;
|
|
6102
|
-
status: MittwaldAPIV2.Components.Schemas.SslProjectCertificateStatus;
|
|
6103
|
-
updatedAt?: string;
|
|
6218
|
+
mem?: string;
|
|
6219
|
+
memory?: string;
|
|
6220
|
+
storage: string;
|
|
6104
6221
|
}
|
|
6105
|
-
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategoryKind;
|
|
6109
|
-
resources?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsResource[];
|
|
6110
|
-
totalUsageInBytes: number;
|
|
6222
|
+
interface ActivitylogLinkedParameterProperty {
|
|
6223
|
+
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6224
|
+
name: string;
|
|
6111
6225
|
}
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
|
|
6115
|
-
|
|
6116
|
-
* The last exceedance limit in bytes during the exceedance time, therefore can differ from the current limit. It is retained as a historical record of the most recent exceedance and does not reset once set.
|
|
6117
|
-
*/
|
|
6118
|
-
lastExceedanceLimitInBytes?: number;
|
|
6119
|
-
/**
|
|
6120
|
-
* The last total exceedance in bytes related to the limit during the exceedance time, see lastExceedanceLimitInBytes. It is retained as a historical record of the most recent exceedance and does not reset once set.
|
|
6121
|
-
*/
|
|
6122
|
-
lastTotalExceedanceInBytes?: number;
|
|
6123
|
-
/**
|
|
6124
|
-
* The last total exceedance date. It is retained as a historical record of the most recent exceedance and does not reset once set.
|
|
6125
|
-
*/
|
|
6126
|
-
lastTotalExceedanceInBytesSetAt?: string;
|
|
6127
|
-
limitInBytes?: number;
|
|
6128
|
-
/**
|
|
6129
|
-
* If true, set notification threshold is used as limit for meta calculations. E.g. for projects with a parent server.
|
|
6130
|
-
*/
|
|
6131
|
-
notificationThresholdUsedAsLimit?: boolean;
|
|
6132
|
-
/**
|
|
6133
|
-
* The current total exceedance in bytes.
|
|
6134
|
-
*/
|
|
6135
|
-
totalExceedanceInBytes?: number;
|
|
6226
|
+
interface ActivitylogLogEntry {
|
|
6227
|
+
action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
|
|
6228
|
+
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6229
|
+
dateTime: string;
|
|
6136
6230
|
/**
|
|
6137
|
-
*
|
|
6231
|
+
* Null or empty object. If set, the action was executed by an mittwald employee.
|
|
6138
6232
|
*/
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
|
|
6142
|
-
|
|
6143
|
-
|
|
6233
|
+
impersonator?: {};
|
|
6234
|
+
user?: {
|
|
6235
|
+
id: string;
|
|
6236
|
+
type: "user" | "extension";
|
|
6237
|
+
};
|
|
6144
6238
|
}
|
|
6145
|
-
interface
|
|
6146
|
-
|
|
6147
|
-
|
|
6239
|
+
interface ProjectMachineType {
|
|
6240
|
+
cpu: string;
|
|
6241
|
+
memory: string;
|
|
6148
6242
|
name: string;
|
|
6149
|
-
usageInBytes: number;
|
|
6150
|
-
usageInBytesSetAt: string;
|
|
6151
6243
|
}
|
|
6152
|
-
interface
|
|
6153
|
-
|
|
6154
|
-
description?: string;
|
|
6155
|
-
id: string;
|
|
6156
|
-
kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
6157
|
-
meta: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
6244
|
+
interface ActivitylogParameterProperty {
|
|
6245
|
+
aggregate?: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6158
6246
|
name: string;
|
|
6159
|
-
notificationThresholdInBytes?: number;
|
|
6160
|
-
statisticCategories?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[];
|
|
6161
|
-
}
|
|
6162
|
-
interface TaskAggregateReference {
|
|
6163
|
-
aggregate: string;
|
|
6164
|
-
domain: string;
|
|
6165
|
-
id: string;
|
|
6166
|
-
}
|
|
6167
|
-
interface SignupAccount {
|
|
6168
|
-
email?: string;
|
|
6169
|
-
/**
|
|
6170
|
-
* The users mfa details.
|
|
6171
|
-
*/
|
|
6172
|
-
mfaDetails?: {
|
|
6173
|
-
mfaConfirmed?: boolean;
|
|
6174
|
-
mfaInitialized?: boolean;
|
|
6175
|
-
};
|
|
6176
|
-
passwordUpdatedAt?: string;
|
|
6177
|
-
person?: MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
6178
|
-
userId?: string;
|
|
6179
6247
|
}
|
|
6180
|
-
|
|
6181
|
-
|
|
6248
|
+
type ProjectDisableReason = "maliciousCode" | "illegalContent" | "maliciousConduct" | "suspended";
|
|
6249
|
+
type ProjectProjectFeature = "redis" | "node" | "container";
|
|
6250
|
+
interface ProjectProjectListItem {
|
|
6251
|
+
backupStorageUsageInBytes: number;
|
|
6252
|
+
backupStorageUsageInBytesSetAt: string;
|
|
6182
6253
|
createdAt: string;
|
|
6254
|
+
customerId: string;
|
|
6255
|
+
customerMeta: {
|
|
6256
|
+
id: string;
|
|
6257
|
+
};
|
|
6183
6258
|
description: string;
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
interface SignupDeviceInfo {
|
|
6188
|
-
browser?: string;
|
|
6189
|
-
model?: string;
|
|
6190
|
-
os?: string;
|
|
6191
|
-
type?: string;
|
|
6192
|
-
}
|
|
6193
|
-
interface SignupDomainError {
|
|
6194
|
-
/**
|
|
6195
|
-
* A json object, given further information about the error
|
|
6196
|
-
*/
|
|
6197
|
-
info?: {};
|
|
6198
|
-
/**
|
|
6199
|
-
* Some more detailed information about the error
|
|
6200
|
-
*/
|
|
6201
|
-
message: string;
|
|
6259
|
+
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
6260
|
+
disabledAt?: string;
|
|
6261
|
+
enabled: boolean;
|
|
6202
6262
|
/**
|
|
6203
|
-
*
|
|
6263
|
+
* @deprecated
|
|
6264
|
+
* Deprecated by 'supportedFeatures'.
|
|
6204
6265
|
*/
|
|
6205
|
-
|
|
6206
|
-
}
|
|
6207
|
-
interface SignupLocation {
|
|
6208
|
-
city?: string;
|
|
6209
|
-
country?: string;
|
|
6210
|
-
ipAddress?: string;
|
|
6211
|
-
}
|
|
6212
|
-
interface SignupOAuthClient {
|
|
6213
|
-
allowedGrantTypes?: string[];
|
|
6214
|
-
allowedRedirectUris?: string[];
|
|
6215
|
-
allowedScopes?: string[];
|
|
6216
|
-
contributorId: string;
|
|
6217
|
-
description?: string;
|
|
6218
|
-
humanReadableName: string;
|
|
6266
|
+
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
6219
6267
|
id: string;
|
|
6220
|
-
|
|
6221
|
-
interface SignupProfile {
|
|
6222
|
-
email?: string;
|
|
6268
|
+
imageRefId?: string;
|
|
6223
6269
|
/**
|
|
6224
|
-
*
|
|
6270
|
+
* @deprecated
|
|
6271
|
+
* deprecated
|
|
6225
6272
|
*/
|
|
6226
|
-
|
|
6227
|
-
|
|
6228
|
-
|
|
6229
|
-
|
|
6230
|
-
|
|
6231
|
-
|
|
6232
|
-
|
|
6233
|
-
|
|
6234
|
-
|
|
6235
|
-
|
|
6236
|
-
|
|
6237
|
-
memberSince: string;
|
|
6238
|
-
role: "owner" | "member" | "accountant";
|
|
6239
|
-
}
|
|
6240
|
-
interface UserUserFeedback {
|
|
6241
|
-
id: string;
|
|
6242
|
-
message: string;
|
|
6243
|
-
origin: string;
|
|
6244
|
-
subject: string;
|
|
6245
|
-
vote: number;
|
|
6246
|
-
}
|
|
6247
|
-
interface UserProjectMembership {
|
|
6248
|
-
expiresAt?: string;
|
|
6249
|
-
id?: string;
|
|
6250
|
-
inherited: boolean;
|
|
6251
|
-
memberSince: string;
|
|
6252
|
-
role: "owner" | "emailadmin" | "external" | "id";
|
|
6273
|
+
isReady: boolean;
|
|
6274
|
+
projectHostingId?: string;
|
|
6275
|
+
readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
6276
|
+
serverGroupId: string;
|
|
6277
|
+
serverId?: string;
|
|
6278
|
+
shortId: string;
|
|
6279
|
+
status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
6280
|
+
statusSetAt: string;
|
|
6281
|
+
supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
6282
|
+
webStorageUsageInBytes: number;
|
|
6283
|
+
webStorageUsageInBytesSetAt: string;
|
|
6253
6284
|
}
|
|
6254
|
-
|
|
6255
|
-
|
|
6256
|
-
|
|
6257
|
-
|
|
6258
|
-
|
|
6259
|
-
email?: string;
|
|
6285
|
+
type ProjectProjectStatus = "pending" | "ready" | "preparingForVolumeMigration" | "migratingVolume" | "error" | "disabled";
|
|
6286
|
+
interface ProjectProject {
|
|
6287
|
+
backupStorageUsageInBytes: number;
|
|
6288
|
+
backupStorageUsageInBytesSetAt: string;
|
|
6289
|
+
clusterDomain?: string;
|
|
6260
6290
|
/**
|
|
6261
|
-
*
|
|
6291
|
+
* @deprecated
|
|
6292
|
+
* deprecated by property clusterId
|
|
6262
6293
|
*/
|
|
6263
|
-
|
|
6264
|
-
|
|
6294
|
+
clusterID?: string;
|
|
6295
|
+
clusterId?: string;
|
|
6296
|
+
createdAt: string;
|
|
6297
|
+
customerId: string;
|
|
6298
|
+
deletionRequested?: boolean;
|
|
6299
|
+
description: string;
|
|
6300
|
+
directories: {
|
|
6301
|
+
[k: string]: string;
|
|
6265
6302
|
};
|
|
6303
|
+
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
6304
|
+
disabledAt?: string;
|
|
6305
|
+
enabled: boolean;
|
|
6266
6306
|
/**
|
|
6267
|
-
*
|
|
6307
|
+
* @deprecated
|
|
6308
|
+
* Deprecated by 'supportedFeatures'.
|
|
6268
6309
|
*/
|
|
6269
|
-
|
|
6270
|
-
|
|
6271
|
-
|
|
6272
|
-
|
|
6273
|
-
|
|
6274
|
-
|
|
6275
|
-
|
|
6276
|
-
|
|
6277
|
-
|
|
6278
|
-
|
|
6279
|
-
|
|
6280
|
-
|
|
6281
|
-
|
|
6310
|
+
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
6311
|
+
id: string;
|
|
6312
|
+
imageRefId?: string;
|
|
6313
|
+
/**
|
|
6314
|
+
* @deprecated
|
|
6315
|
+
* deprecated by property status
|
|
6316
|
+
*/
|
|
6317
|
+
isReady: boolean;
|
|
6318
|
+
projectHostingId?: string;
|
|
6319
|
+
readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
6320
|
+
serverGroupId: string;
|
|
6321
|
+
serverId?: string;
|
|
6322
|
+
serverShortId?: string;
|
|
6323
|
+
shortId: string;
|
|
6324
|
+
spec?: MittwaldAPIV2.Components.Schemas.ProjectVisitorSpec | MittwaldAPIV2.Components.Schemas.ProjectHardwareSpec;
|
|
6325
|
+
statisticsBaseDomain?: string;
|
|
6326
|
+
status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
6327
|
+
statusSetAt: string;
|
|
6328
|
+
supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
6329
|
+
webStorageUsageInBytes: number;
|
|
6330
|
+
webStorageUsageInBytesSetAt: string;
|
|
6282
6331
|
}
|
|
6283
|
-
|
|
6284
|
-
|
|
6285
|
-
|
|
6332
|
+
type ProjectServerDisableReason = "suspended";
|
|
6333
|
+
type ProjectServerStatus = "pending" | "ready" | "unready" | "suspended" | "migrating";
|
|
6334
|
+
interface ProjectServer {
|
|
6335
|
+
clusterName: string;
|
|
6286
6336
|
createdAt: string;
|
|
6287
|
-
|
|
6288
|
-
|
|
6289
|
-
|
|
6290
|
-
|
|
6291
|
-
|
|
6292
|
-
|
|
6293
|
-
completedAt?: string;
|
|
6294
|
-
dontShowUntil?: string;
|
|
6295
|
-
ignoredAt?: string;
|
|
6296
|
-
shouldShow: boolean;
|
|
6297
|
-
status: "completed" | "muted" | "ignored" | "new";
|
|
6298
|
-
userId: string;
|
|
6299
|
-
}
|
|
6300
|
-
interface SignupUserSession {
|
|
6301
|
-
created: string;
|
|
6302
|
-
device: MittwaldAPIV2.Components.Schemas.SignupDeviceInfo;
|
|
6303
|
-
lastAccess?: string;
|
|
6304
|
-
location?: MittwaldAPIV2.Components.Schemas.SignupLocation;
|
|
6305
|
-
tokenId: string;
|
|
6306
|
-
}
|
|
6307
|
-
interface VarnishConfigRevision {
|
|
6308
|
-
expire?: number;
|
|
6309
|
-
files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
|
|
6310
|
-
note?: string;
|
|
6311
|
-
revision: number;
|
|
6312
|
-
updated: string;
|
|
6313
|
-
}
|
|
6314
|
-
interface VarnishConfigTemplate {
|
|
6337
|
+
customerId: string;
|
|
6338
|
+
description: string;
|
|
6339
|
+
disabledReason?: MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason;
|
|
6340
|
+
groupId: string;
|
|
6341
|
+
id: string;
|
|
6342
|
+
imageRefId?: string;
|
|
6315
6343
|
/**
|
|
6316
|
-
*
|
|
6344
|
+
* @deprecated
|
|
6345
|
+
* deprecated by property status
|
|
6317
6346
|
*/
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
|
|
6322
|
-
|
|
6323
|
-
|
|
6324
|
-
|
|
6347
|
+
isReady: boolean;
|
|
6348
|
+
machineType: MittwaldAPIV2.Components.Schemas.ProjectMachineType;
|
|
6349
|
+
readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedServerReadinessStatus;
|
|
6350
|
+
shortId: string;
|
|
6351
|
+
statisticsBaseDomain?: string;
|
|
6352
|
+
status: MittwaldAPIV2.Components.Schemas.ProjectServerStatus;
|
|
6353
|
+
storage: string;
|
|
6325
6354
|
}
|
|
6326
|
-
interface
|
|
6327
|
-
|
|
6328
|
-
|
|
6355
|
+
interface ProjectVisitorSpec {
|
|
6356
|
+
storage: string;
|
|
6357
|
+
visitors: number;
|
|
6329
6358
|
}
|
|
6330
|
-
interface
|
|
6359
|
+
interface DirectusDomain {
|
|
6360
|
+
/**
|
|
6361
|
+
* The authcode of the domain. Leave empty when mittwald can generate a authcode on its own
|
|
6362
|
+
*/
|
|
6363
|
+
authCode?: string;
|
|
6364
|
+
/**
|
|
6365
|
+
* Leave empty when mittwald should keep the same domain owner
|
|
6366
|
+
*/
|
|
6367
|
+
domainOwnerData?: string;
|
|
6331
6368
|
name: string;
|
|
6332
|
-
path?: string;
|
|
6333
6369
|
}
|
|
6334
|
-
interface
|
|
6335
|
-
|
|
6336
|
-
|
|
6370
|
+
interface DirectusEmailInbox {
|
|
6371
|
+
email: string;
|
|
6372
|
+
password: string;
|
|
6337
6373
|
}
|
|
6338
|
-
interface
|
|
6339
|
-
|
|
6340
|
-
|
|
6341
|
-
|
|
6374
|
+
interface ScreenshotTarget {
|
|
6375
|
+
domain: string;
|
|
6376
|
+
path?: string;
|
|
6377
|
+
scheme: "http" | "https";
|
|
6342
6378
|
}
|
|
6343
|
-
interface
|
|
6344
|
-
|
|
6345
|
-
|
|
6346
|
-
|
|
6347
|
-
|
|
6348
|
-
|
|
6349
|
-
|
|
6350
|
-
|
|
6351
|
-
softwareVersion: string;
|
|
6352
|
-
updatedAt: string;
|
|
6379
|
+
interface ScreenshotTask {
|
|
6380
|
+
executedAt?: string;
|
|
6381
|
+
fileReference?: string;
|
|
6382
|
+
id: string;
|
|
6383
|
+
priority: number;
|
|
6384
|
+
settings: MittwaldAPIV2.Components.Schemas.ScreenshotScreenshotSettings;
|
|
6385
|
+
target: MittwaldAPIV2.Components.Schemas.ScreenshotTarget;
|
|
6386
|
+
taskState?: MittwaldAPIV2.Components.Schemas.ScreenshotLifecycleState | MittwaldAPIV2.Components.Schemas.CommonsError;
|
|
6353
6387
|
}
|
|
6354
|
-
|
|
6355
|
-
|
|
6356
|
-
|
|
6357
|
-
|
|
6388
|
+
type ScreenshotLifecycleState = string;
|
|
6389
|
+
interface ScreenshotScreenshotSettings {
|
|
6390
|
+
dataType: "jpeg" | "png" | "webp";
|
|
6391
|
+
delay: number;
|
|
6392
|
+
height: number;
|
|
6393
|
+
quality: number;
|
|
6394
|
+
width: number;
|
|
6358
6395
|
}
|
|
6359
|
-
|
|
6360
|
-
|
|
6361
|
-
|
|
6396
|
+
type SshuserEntityTypes = "ssh" | "sftp";
|
|
6397
|
+
/**
|
|
6398
|
+
* The level of access for an SFTPUser.
|
|
6399
|
+
*/
|
|
6400
|
+
type SshuserAccessLevel = "full" | "read" | "unspecified";
|
|
6401
|
+
/**
|
|
6402
|
+
* Method of authentication that a given SFTPUser or SSHuser supports.
|
|
6403
|
+
*/
|
|
6404
|
+
type SshuserAuthType = "password" | "publicKey";
|
|
6405
|
+
/**
|
|
6406
|
+
* Method of authentication for an SFTPUser or SSHUser. Can be password or public-keys.
|
|
6407
|
+
*/
|
|
6408
|
+
type SshuserAuthentication = {
|
|
6409
|
+
password: string;
|
|
6410
|
+
} | {
|
|
6411
|
+
publicKeys: MittwaldAPIV2.Components.Schemas.SshuserPublicKey[];
|
|
6412
|
+
};
|
|
6413
|
+
/**
|
|
6414
|
+
* A representation of an ssh-public-key.
|
|
6415
|
+
*/
|
|
6416
|
+
interface SshuserPublicKey {
|
|
6417
|
+
comment: string;
|
|
6418
|
+
key: string;
|
|
6362
6419
|
}
|
|
6363
|
-
|
|
6364
|
-
|
|
6365
|
-
|
|
6420
|
+
/**
|
|
6421
|
+
* A representation of an SFTPUser.
|
|
6422
|
+
*/
|
|
6423
|
+
interface SshuserSftpUser {
|
|
6424
|
+
accessLevel: MittwaldAPIV2.Components.Schemas.SshuserAccessLevel;
|
|
6425
|
+
active?: boolean;
|
|
6426
|
+
authUpdatedAt: string;
|
|
6427
|
+
createdAt: string;
|
|
6428
|
+
description: string;
|
|
6429
|
+
directories?: string[];
|
|
6430
|
+
expiresAt?: string;
|
|
6431
|
+
hasPassword: boolean;
|
|
6432
|
+
id: string;
|
|
6433
|
+
projectId: string;
|
|
6434
|
+
publicKeys?: MittwaldAPIV2.Components.Schemas.SshuserPublicKey[];
|
|
6435
|
+
updatedAt?: string;
|
|
6436
|
+
userName: string;
|
|
6366
6437
|
}
|
|
6367
|
-
|
|
6368
|
-
|
|
6369
|
-
|
|
6438
|
+
/**
|
|
6439
|
+
* A representation of an SSHUser.
|
|
6440
|
+
*/
|
|
6441
|
+
interface SshuserSshUser {
|
|
6442
|
+
active?: boolean;
|
|
6443
|
+
authUpdatedAt: string;
|
|
6444
|
+
createdAt: string;
|
|
6445
|
+
description: string;
|
|
6446
|
+
expiresAt?: string;
|
|
6447
|
+
hasPassword: boolean;
|
|
6448
|
+
id: string;
|
|
6449
|
+
projectId: string;
|
|
6450
|
+
publicKeys?: MittwaldAPIV2.Components.Schemas.SshuserPublicKey[];
|
|
6451
|
+
updatedAt?: string;
|
|
6452
|
+
userName: string;
|
|
6370
6453
|
}
|
|
6371
|
-
interface
|
|
6372
|
-
|
|
6454
|
+
interface SslCertificate {
|
|
6455
|
+
caBundle?: string;
|
|
6456
|
+
certificate?: string;
|
|
6457
|
+
certificateOrderId?: string;
|
|
6458
|
+
certificateRequestId: string;
|
|
6459
|
+
certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
6460
|
+
commonName?: string;
|
|
6461
|
+
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
6462
|
+
dnsCertSpec?: {
|
|
6463
|
+
cnameTarget?: string;
|
|
6464
|
+
status?: MittwaldAPIV2.Components.Schemas.SslDNSCertStatus;
|
|
6465
|
+
};
|
|
6466
|
+
dnsNames?: string[];
|
|
6467
|
+
id: string;
|
|
6468
|
+
isExpired?: boolean;
|
|
6469
|
+
issuer?: string;
|
|
6470
|
+
lastExpirationThresholdHit?: number;
|
|
6471
|
+
projectId: string;
|
|
6472
|
+
validFrom?: string;
|
|
6473
|
+
validTo?: string;
|
|
6373
6474
|
}
|
|
6374
|
-
|
|
6375
|
-
|
|
6376
|
-
|
|
6377
|
-
|
|
6378
|
-
name: string;
|
|
6475
|
+
interface SslCertificateData {
|
|
6476
|
+
caBundle?: string;
|
|
6477
|
+
certificate?: string;
|
|
6478
|
+
signingRequest?: string;
|
|
6379
6479
|
}
|
|
6380
|
-
interface
|
|
6381
|
-
|
|
6382
|
-
after?: {
|
|
6383
|
-
software: string;
|
|
6384
|
-
softwareVersion: string;
|
|
6385
|
-
updatePolicy: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6386
|
-
};
|
|
6387
|
-
before?: {
|
|
6388
|
-
software?: string;
|
|
6389
|
-
softwareVersion?: string;
|
|
6390
|
-
updatePolicy?: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6391
|
-
};
|
|
6392
|
-
};
|
|
6393
|
-
name: "app.systemsoftware-set" | "app.systemsoftware-deleted";
|
|
6394
|
-
parameters?: {
|
|
6395
|
-
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6396
|
-
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6397
|
-
};
|
|
6480
|
+
interface SslCertificateError {
|
|
6481
|
+
message: "certificate_read_failed" | "certificate_decode_failed" | "certificate_parsing_failed" | "certificate_self_signed" | "certificate_not_authorized_to_sign" | "certificate_expired" | "ca_not_authorized_for_this_name" | "too_many_intermediates" | "incompatible_usage" | "unknown_authority" | "private_key_read_failed" | "private_key_decode_failed" | "private_key_parse_failed" | "private_key_encrypted" | "private_key_not_rsa" | "private_key_mismatch" | "unknown_cloudflare_error" | "unknown";
|
|
6398
6482
|
}
|
|
6399
|
-
interface
|
|
6400
|
-
|
|
6401
|
-
|
|
6402
|
-
|
|
6403
|
-
|
|
6404
|
-
|
|
6405
|
-
|
|
6406
|
-
|
|
6407
|
-
|
|
6408
|
-
|
|
6409
|
-
|
|
6410
|
-
|
|
6483
|
+
interface SslCertificateRequest {
|
|
6484
|
+
certificateData: MittwaldAPIV2.Components.Schemas.SslCertificateData;
|
|
6485
|
+
certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
6486
|
+
commonName?: string;
|
|
6487
|
+
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
6488
|
+
createdAt: string;
|
|
6489
|
+
dnsNames?: string[];
|
|
6490
|
+
id: string;
|
|
6491
|
+
isCompleted: boolean;
|
|
6492
|
+
issuer?: string;
|
|
6493
|
+
projectId: string;
|
|
6494
|
+
validFrom?: string;
|
|
6495
|
+
validTo?: string;
|
|
6411
6496
|
}
|
|
6412
|
-
interface
|
|
6413
|
-
|
|
6414
|
-
|
|
6415
|
-
|
|
6416
|
-
};
|
|
6417
|
-
before?: {
|
|
6418
|
-
cname: string;
|
|
6419
|
-
};
|
|
6420
|
-
};
|
|
6421
|
-
name: "dns.cname-record-set";
|
|
6422
|
-
parameters: {
|
|
6423
|
-
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6424
|
-
};
|
|
6497
|
+
interface SslCertificateRequestCreateRequest {
|
|
6498
|
+
certificate: string;
|
|
6499
|
+
privateKey: string;
|
|
6500
|
+
projectId: string;
|
|
6425
6501
|
}
|
|
6426
|
-
interface
|
|
6427
|
-
|
|
6428
|
-
|
|
6429
|
-
|
|
6430
|
-
|
|
6431
|
-
|
|
6432
|
-
|
|
6433
|
-
|
|
6434
|
-
|
|
6435
|
-
};
|
|
6436
|
-
};
|
|
6437
|
-
name: "app.version-set";
|
|
6502
|
+
interface SslCertificateRequestCreateResponse {
|
|
6503
|
+
commonName?: string;
|
|
6504
|
+
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
6505
|
+
dnsNames?: string[];
|
|
6506
|
+
id: string;
|
|
6507
|
+
issuer?: string;
|
|
6508
|
+
signingRequest?: string;
|
|
6509
|
+
validFrom?: string;
|
|
6510
|
+
validTo?: string;
|
|
6438
6511
|
}
|
|
6439
|
-
interface
|
|
6440
|
-
|
|
6441
|
-
|
|
6442
|
-
|
|
6443
|
-
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6444
|
-
};
|
|
6512
|
+
interface SslCertificateRequestCreateWithCSRRequest {
|
|
6513
|
+
commonName: string;
|
|
6514
|
+
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
6515
|
+
projectId: string;
|
|
6445
6516
|
}
|
|
6446
|
-
interface
|
|
6447
|
-
|
|
6448
|
-
|
|
6449
|
-
version: string;
|
|
6450
|
-
};
|
|
6451
|
-
before?: {
|
|
6452
|
-
version: string;
|
|
6453
|
-
};
|
|
6454
|
-
};
|
|
6455
|
-
name: "database.mysql-version-set" | "database.redis-version-set";
|
|
6456
|
-
parameters: {
|
|
6457
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6458
|
-
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6459
|
-
};
|
|
6517
|
+
interface SslCertificateRequestCreateWithDNSRequest {
|
|
6518
|
+
commonName: string;
|
|
6519
|
+
projectId: string;
|
|
6460
6520
|
}
|
|
6461
|
-
|
|
6462
|
-
|
|
6463
|
-
|
|
6521
|
+
/**
|
|
6522
|
+
* Specifies the type of certificate.
|
|
6523
|
+
*
|
|
6524
|
+
* Possible values:
|
|
6525
|
+
* - `0` – `UNSPECIFIED`: The certificate type is not specified.
|
|
6526
|
+
* - `1` – `INTERNAL`: A certificate issued and managed internally by the system.
|
|
6527
|
+
* - `2` – `EXTERNAL`: A certificate provided by an external source and imported into the system.
|
|
6528
|
+
* - `3` – `DNS`: A certificate validated using DNS-based verification.
|
|
6529
|
+
*
|
|
6530
|
+
*/
|
|
6531
|
+
type SslCertificateType = 0 | 1 | 2 | 3;
|
|
6532
|
+
interface SslCheckReplaceChanges {
|
|
6533
|
+
commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
6534
|
+
dnsNames?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceSliceChange;
|
|
6535
|
+
issuer?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
6536
|
+
validFrom?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
|
|
6537
|
+
validTo?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
|
|
6464
6538
|
}
|
|
6465
|
-
interface
|
|
6466
|
-
|
|
6467
|
-
|
|
6468
|
-
description: string;
|
|
6469
|
-
};
|
|
6470
|
-
before?: {
|
|
6471
|
-
description: string | null;
|
|
6472
|
-
};
|
|
6473
|
-
};
|
|
6474
|
-
name: "database.mysql-description-set" | "database.redis-description-set";
|
|
6475
|
-
parameters: {
|
|
6476
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6477
|
-
};
|
|
6539
|
+
interface SslCheckReplaceDateChange {
|
|
6540
|
+
newValue: string;
|
|
6541
|
+
oldValue: string;
|
|
6478
6542
|
}
|
|
6479
|
-
interface
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
parameters: {
|
|
6483
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6484
|
-
};
|
|
6543
|
+
interface SslCheckReplaceFieldChange {
|
|
6544
|
+
newValue: string;
|
|
6545
|
+
oldValue: string;
|
|
6485
6546
|
}
|
|
6486
|
-
interface
|
|
6487
|
-
changes
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
};
|
|
6491
|
-
before?: {
|
|
6492
|
-
mx: {}[];
|
|
6493
|
-
};
|
|
6494
|
-
};
|
|
6495
|
-
name: "dns.mx-record-set";
|
|
6496
|
-
parameters: {
|
|
6497
|
-
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6498
|
-
};
|
|
6547
|
+
interface SslCheckReplaceCertificateResponse {
|
|
6548
|
+
changes?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceChanges;
|
|
6549
|
+
errors?: MittwaldAPIV2.Components.Schemas.SslCertificateError[];
|
|
6550
|
+
isReplaceable: boolean;
|
|
6499
6551
|
}
|
|
6500
|
-
interface
|
|
6501
|
-
|
|
6502
|
-
|
|
6503
|
-
|
|
6504
|
-
};
|
|
6505
|
-
before?: {
|
|
6506
|
-
txt: string[];
|
|
6507
|
-
};
|
|
6508
|
-
};
|
|
6509
|
-
name: "dns.txt-record-set";
|
|
6510
|
-
parameters: {
|
|
6511
|
-
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6512
|
-
};
|
|
6552
|
+
interface SslCheckReplaceSliceChange {
|
|
6553
|
+
addedValues: string[];
|
|
6554
|
+
removedValues: string[];
|
|
6555
|
+
values: string[];
|
|
6513
6556
|
}
|
|
6514
|
-
interface
|
|
6515
|
-
|
|
6516
|
-
|
|
6517
|
-
|
|
6518
|
-
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
|
|
6522
|
-
|
|
6523
|
-
name: "dns.zone-created";
|
|
6524
|
-
parameters: {
|
|
6525
|
-
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6526
|
-
};
|
|
6557
|
+
interface SslContact {
|
|
6558
|
+
city?: string;
|
|
6559
|
+
company?: string;
|
|
6560
|
+
/**
|
|
6561
|
+
* Two letter abbreviation - country code (ISO 3166-1 Alpha-2).
|
|
6562
|
+
*/
|
|
6563
|
+
country?: string;
|
|
6564
|
+
organizationalUnit?: string;
|
|
6565
|
+
state?: string;
|
|
6527
6566
|
}
|
|
6528
|
-
interface
|
|
6529
|
-
|
|
6530
|
-
|
|
6531
|
-
|
|
6532
|
-
};
|
|
6533
|
-
before?: {
|
|
6534
|
-
name: string | null;
|
|
6535
|
-
};
|
|
6536
|
-
};
|
|
6537
|
-
name: "database.mysql-name-set";
|
|
6538
|
-
parameters: {
|
|
6539
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6540
|
-
};
|
|
6567
|
+
interface SslDNSCertStatus {
|
|
6568
|
+
message?: string;
|
|
6569
|
+
status: MittwaldAPIV2.Components.Schemas.SslProjectCertificateStatus;
|
|
6570
|
+
updatedAt?: string;
|
|
6541
6571
|
}
|
|
6542
|
-
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
|
|
6546
|
-
|
|
6547
|
-
|
|
6548
|
-
before?: {
|
|
6549
|
-
aRecords: string[];
|
|
6550
|
-
aaaaRecords: string[];
|
|
6551
|
-
};
|
|
6552
|
-
};
|
|
6553
|
-
name: "dns.a-record-set";
|
|
6554
|
-
parameters: {
|
|
6555
|
-
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6556
|
-
};
|
|
6572
|
+
type SslProjectCertificateStatus = "issuing" | "ready" | "cnameError" | "error" | "unspecified";
|
|
6573
|
+
type StoragespaceStatisticsCategoryKind = "webspace" | "projectBackup" | "mailAddress" | "mysqlDatabase" | "redisDatabase" | "containerVolume";
|
|
6574
|
+
interface StoragespaceStatisticsCategory {
|
|
6575
|
+
kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategoryKind;
|
|
6576
|
+
resources?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsResource[];
|
|
6577
|
+
totalUsageInBytes: number;
|
|
6557
6578
|
}
|
|
6558
|
-
|
|
6559
|
-
|
|
6560
|
-
|
|
6561
|
-
|
|
6562
|
-
|
|
6563
|
-
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
|
|
6567
|
-
|
|
6568
|
-
|
|
6569
|
-
|
|
6570
|
-
|
|
6571
|
-
|
|
6572
|
-
|
|
6573
|
-
|
|
6574
|
-
|
|
6575
|
-
|
|
6579
|
+
type StoragespaceStatisticsKind = "server" | "project";
|
|
6580
|
+
interface StoragespaceStatisticsMeta {
|
|
6581
|
+
isExceeding?: boolean;
|
|
6582
|
+
/**
|
|
6583
|
+
* The last exceedance limit in bytes during the exceedance time, therefore can differ from the current limit. It is retained as a historical record of the most recent exceedance and does not reset once set.
|
|
6584
|
+
*/
|
|
6585
|
+
lastExceedanceLimitInBytes?: number;
|
|
6586
|
+
/**
|
|
6587
|
+
* The last total exceedance in bytes related to the limit during the exceedance time, see lastExceedanceLimitInBytes. It is retained as a historical record of the most recent exceedance and does not reset once set.
|
|
6588
|
+
*/
|
|
6589
|
+
lastTotalExceedanceInBytes?: number;
|
|
6590
|
+
/**
|
|
6591
|
+
* The last total exceedance date. It is retained as a historical record of the most recent exceedance and does not reset once set.
|
|
6592
|
+
*/
|
|
6593
|
+
lastTotalExceedanceInBytesSetAt?: string;
|
|
6594
|
+
limitInBytes?: number;
|
|
6595
|
+
/**
|
|
6596
|
+
* If true, set notification threshold is used as limit for meta calculations. E.g. for projects with a parent server.
|
|
6597
|
+
*/
|
|
6598
|
+
notificationThresholdUsedAsLimit?: boolean;
|
|
6599
|
+
/**
|
|
6600
|
+
* The current total exceedance in bytes.
|
|
6601
|
+
*/
|
|
6602
|
+
totalExceedanceInBytes?: number;
|
|
6603
|
+
/**
|
|
6604
|
+
* The current total exceedance date.
|
|
6605
|
+
*/
|
|
6606
|
+
totalExceedanceInBytesSetAt?: string;
|
|
6607
|
+
totalFreeInBytes?: number;
|
|
6608
|
+
totalFreeInPercentage?: number;
|
|
6609
|
+
totalUsageInBytes: number;
|
|
6610
|
+
totalUsageInPercentage?: number;
|
|
6576
6611
|
}
|
|
6577
|
-
interface
|
|
6578
|
-
|
|
6579
|
-
|
|
6580
|
-
|
|
6581
|
-
|
|
6582
|
-
|
|
6583
|
-
permissions: {};
|
|
6584
|
-
};
|
|
6585
|
-
before?: {
|
|
6586
|
-
description?: string | null;
|
|
6587
|
-
externalAccess?: boolean | null;
|
|
6588
|
-
name?: string | null;
|
|
6589
|
-
permissions?: {} | null;
|
|
6590
|
-
};
|
|
6591
|
-
};
|
|
6592
|
-
name: "database.mysql-user-created";
|
|
6593
|
-
parameters: {
|
|
6594
|
-
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6595
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6596
|
-
};
|
|
6612
|
+
interface StoragespaceStatisticsResource {
|
|
6613
|
+
description?: string;
|
|
6614
|
+
id: string;
|
|
6615
|
+
name: string;
|
|
6616
|
+
usageInBytes: number;
|
|
6617
|
+
usageInBytesSetAt: string;
|
|
6597
6618
|
}
|
|
6598
|
-
interface
|
|
6619
|
+
interface StoragespaceStatistics {
|
|
6620
|
+
childStatistics?: MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[];
|
|
6621
|
+
description?: string;
|
|
6622
|
+
id: string;
|
|
6623
|
+
kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
|
|
6624
|
+
meta: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
|
|
6625
|
+
name: string;
|
|
6626
|
+
notificationThresholdInBytes?: number;
|
|
6627
|
+
statisticCategories?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[];
|
|
6628
|
+
}
|
|
6629
|
+
interface TaskAggregateReference {
|
|
6599
6630
|
aggregate: string;
|
|
6600
6631
|
domain: string;
|
|
6601
6632
|
id: string;
|
|
6602
6633
|
}
|
|
6603
|
-
interface
|
|
6604
|
-
|
|
6605
|
-
after?: {
|
|
6606
|
-
srv: {}[];
|
|
6607
|
-
};
|
|
6608
|
-
before?: {
|
|
6609
|
-
srv: {}[];
|
|
6610
|
-
};
|
|
6611
|
-
};
|
|
6612
|
-
name: "dns.srv-record-set";
|
|
6613
|
-
parameters: {
|
|
6614
|
-
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6615
|
-
};
|
|
6616
|
-
}
|
|
6617
|
-
interface ActivitylogLogEntry {
|
|
6618
|
-
action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
|
|
6619
|
-
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6620
|
-
dateTime: string;
|
|
6634
|
+
interface SignupAccount {
|
|
6635
|
+
email?: string;
|
|
6621
6636
|
/**
|
|
6622
|
-
*
|
|
6637
|
+
* The users mfa details.
|
|
6623
6638
|
*/
|
|
6624
|
-
|
|
6625
|
-
|
|
6626
|
-
|
|
6627
|
-
type: "user" | "extension";
|
|
6639
|
+
mfaDetails?: {
|
|
6640
|
+
mfaConfirmed?: boolean;
|
|
6641
|
+
mfaInitialized?: boolean;
|
|
6628
6642
|
};
|
|
6643
|
+
passwordUpdatedAt?: string;
|
|
6644
|
+
person?: MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
6645
|
+
userId?: string;
|
|
6629
6646
|
}
|
|
6630
|
-
interface
|
|
6631
|
-
|
|
6632
|
-
|
|
6633
|
-
|
|
6634
|
-
|
|
6635
|
-
|
|
6636
|
-
};
|
|
6647
|
+
interface SignupApiToken {
|
|
6648
|
+
apiTokenId: string;
|
|
6649
|
+
createdAt: string;
|
|
6650
|
+
description: string;
|
|
6651
|
+
expiresAt?: string;
|
|
6652
|
+
roles: ("api_read" | "api_write")[];
|
|
6637
6653
|
}
|
|
6638
|
-
interface
|
|
6639
|
-
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
|
|
6643
|
-
before?: {
|
|
6644
|
-
caa: {}[];
|
|
6645
|
-
};
|
|
6646
|
-
};
|
|
6647
|
-
name: "dns.caa-record-set";
|
|
6648
|
-
parameters: {
|
|
6649
|
-
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6650
|
-
};
|
|
6654
|
+
interface SignupDeviceInfo {
|
|
6655
|
+
browser?: string;
|
|
6656
|
+
model?: string;
|
|
6657
|
+
os?: string;
|
|
6658
|
+
type?: string;
|
|
6651
6659
|
}
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
|
|
6659
|
-
|
|
6660
|
-
|
|
6661
|
-
|
|
6662
|
-
|
|
6663
|
-
|
|
6664
|
-
};
|
|
6665
|
-
};
|
|
6660
|
+
interface SignupDomainError {
|
|
6661
|
+
/**
|
|
6662
|
+
* A json object, given further information about the error
|
|
6663
|
+
*/
|
|
6664
|
+
info?: {};
|
|
6665
|
+
/**
|
|
6666
|
+
* Some more detailed information about the error
|
|
6667
|
+
*/
|
|
6668
|
+
message: string;
|
|
6669
|
+
/**
|
|
6670
|
+
* Unique key for the error type
|
|
6671
|
+
*/
|
|
6666
6672
|
name: string;
|
|
6667
|
-
parameters: {
|
|
6668
|
-
[k: string]: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6669
|
-
};
|
|
6670
6673
|
}
|
|
6671
|
-
interface
|
|
6672
|
-
|
|
6673
|
-
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
|
|
6678
|
-
|
|
6679
|
-
|
|
6680
|
-
|
|
6681
|
-
|
|
6682
|
-
|
|
6683
|
-
|
|
6684
|
-
|
|
6685
|
-
|
|
6686
|
-
|
|
6687
|
-
|
|
6674
|
+
interface SignupLocation {
|
|
6675
|
+
city?: string;
|
|
6676
|
+
country?: string;
|
|
6677
|
+
ipAddress?: string;
|
|
6678
|
+
}
|
|
6679
|
+
interface SignupOAuthClient {
|
|
6680
|
+
allowedGrantTypes?: string[];
|
|
6681
|
+
allowedRedirectUris?: string[];
|
|
6682
|
+
allowedScopes?: string[];
|
|
6683
|
+
contributorId: string;
|
|
6684
|
+
description?: string;
|
|
6685
|
+
humanReadableName: string;
|
|
6686
|
+
id: string;
|
|
6687
|
+
}
|
|
6688
|
+
interface SignupProfile {
|
|
6689
|
+
email?: string;
|
|
6690
|
+
/**
|
|
6691
|
+
* the users mfa details
|
|
6692
|
+
*/
|
|
6693
|
+
mfaDetails?: {
|
|
6694
|
+
mfaConfirmed?: boolean;
|
|
6695
|
+
mfaInitialized?: boolean;
|
|
6688
6696
|
};
|
|
6697
|
+
passwordUpdatedAt?: string;
|
|
6698
|
+
person?: MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
6699
|
+
userId?: string;
|
|
6700
|
+
}
|
|
6701
|
+
interface UserCustomerMembership {
|
|
6702
|
+
expiresAt?: string;
|
|
6703
|
+
id: string;
|
|
6704
|
+
memberSince: string;
|
|
6705
|
+
role: "owner" | "member" | "accountant";
|
|
6706
|
+
}
|
|
6707
|
+
interface UserUserFeedback {
|
|
6708
|
+
id: string;
|
|
6709
|
+
message: string;
|
|
6710
|
+
origin: string;
|
|
6711
|
+
subject: string;
|
|
6712
|
+
vote: number;
|
|
6689
6713
|
}
|
|
6690
|
-
interface
|
|
6691
|
-
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6714
|
+
interface UserProjectMembership {
|
|
6715
|
+
expiresAt?: string;
|
|
6716
|
+
id?: string;
|
|
6717
|
+
inherited: boolean;
|
|
6718
|
+
memberSince: string;
|
|
6719
|
+
role: "owner" | "emailadmin" | "external" | "id";
|
|
6720
|
+
}
|
|
6721
|
+
interface UserUser {
|
|
6722
|
+
avatarRef?: string;
|
|
6723
|
+
customerMemberships?: {
|
|
6724
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.UserCustomerMembership;
|
|
6697
6725
|
};
|
|
6698
|
-
|
|
6699
|
-
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
6700
|
-
disabledAt?: string;
|
|
6701
|
-
enabled: boolean;
|
|
6726
|
+
email?: string;
|
|
6702
6727
|
/**
|
|
6703
|
-
*
|
|
6704
|
-
* Deprecated by 'supportedFeatures'.
|
|
6728
|
+
* Additional information about mittwald employees.
|
|
6705
6729
|
*/
|
|
6706
|
-
|
|
6707
|
-
|
|
6708
|
-
|
|
6730
|
+
employeeInformation?: {
|
|
6731
|
+
department: string;
|
|
6732
|
+
};
|
|
6709
6733
|
/**
|
|
6710
|
-
*
|
|
6711
|
-
* deprecated
|
|
6734
|
+
* Truth value, whether the user is a mittwald employee
|
|
6712
6735
|
*/
|
|
6713
|
-
|
|
6714
|
-
|
|
6715
|
-
|
|
6716
|
-
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
|
|
6721
|
-
|
|
6722
|
-
|
|
6723
|
-
|
|
6736
|
+
isEmployee?: boolean;
|
|
6737
|
+
mfa?: {
|
|
6738
|
+
active: boolean;
|
|
6739
|
+
setup: boolean;
|
|
6740
|
+
};
|
|
6741
|
+
passwordUpdatedAt?: string;
|
|
6742
|
+
person: MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
6743
|
+
phoneNumber?: string;
|
|
6744
|
+
projectMemberships?: {
|
|
6745
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.UserProjectMembership;
|
|
6746
|
+
};
|
|
6747
|
+
registeredAt?: string;
|
|
6748
|
+
userId: string;
|
|
6724
6749
|
}
|
|
6725
|
-
|
|
6726
|
-
|
|
6727
|
-
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
migratable: false;
|
|
6750
|
+
interface SignupSshKey {
|
|
6751
|
+
algorithm: string;
|
|
6752
|
+
comment: string;
|
|
6753
|
+
createdAt: string;
|
|
6754
|
+
expiresAt?: string;
|
|
6755
|
+
fingerprint: string;
|
|
6756
|
+
key: string;
|
|
6757
|
+
sshKeyId: string;
|
|
6734
6758
|
}
|
|
6735
|
-
|
|
6736
|
-
|
|
6737
|
-
|
|
6738
|
-
|
|
6739
|
-
|
|
6740
|
-
|
|
6741
|
-
|
|
6742
|
-
|
|
6743
|
-
|
|
6744
|
-
|
|
6745
|
-
|
|
6746
|
-
|
|
6747
|
-
|
|
6759
|
+
interface PollUserPollSettings {
|
|
6760
|
+
completedAt?: string;
|
|
6761
|
+
dontShowUntil?: string;
|
|
6762
|
+
ignoredAt?: string;
|
|
6763
|
+
shouldShow: boolean;
|
|
6764
|
+
status: "completed" | "muted" | "ignored" | "new";
|
|
6765
|
+
userId: string;
|
|
6766
|
+
}
|
|
6767
|
+
interface SignupUserSession {
|
|
6768
|
+
created: string;
|
|
6769
|
+
device: MittwaldAPIV2.Components.Schemas.SignupDeviceInfo;
|
|
6770
|
+
lastAccess?: string;
|
|
6771
|
+
location?: MittwaldAPIV2.Components.Schemas.SignupLocation;
|
|
6772
|
+
tokenId: string;
|
|
6773
|
+
}
|
|
6774
|
+
interface VarnishConfigRevision {
|
|
6775
|
+
expire?: number;
|
|
6776
|
+
files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
|
|
6777
|
+
note?: string;
|
|
6778
|
+
revision: number;
|
|
6779
|
+
updated: string;
|
|
6780
|
+
}
|
|
6781
|
+
interface VarnishConfigTemplate {
|
|
6748
6782
|
/**
|
|
6749
|
-
*
|
|
6783
|
+
* A set of config file references.
|
|
6750
6784
|
*/
|
|
6751
|
-
|
|
6785
|
+
files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
|
|
6786
|
+
isGlobal?: boolean;
|
|
6787
|
+
note?: string;
|
|
6788
|
+
projectId?: string;
|
|
6789
|
+
softwareConfigTemplateId: string;
|
|
6790
|
+
softwareTemplateId: string;
|
|
6791
|
+
updatedAt?: string;
|
|
6752
6792
|
}
|
|
6753
|
-
interface
|
|
6754
|
-
|
|
6793
|
+
interface VarnishConfigFile {
|
|
6794
|
+
content: string;
|
|
6795
|
+
meta?: MittwaldAPIV2.Components.Schemas.VarnishConfigFileMetadata;
|
|
6755
6796
|
}
|
|
6756
|
-
interface
|
|
6757
|
-
|
|
6758
|
-
|
|
6759
|
-
generalIssues?: MittwaldAPIV2.Components.Schemas.DomainmigrationMigrationNotPossibleReasons;
|
|
6760
|
-
generallyPossible: boolean;
|
|
6797
|
+
interface VarnishConfigFileMetadata {
|
|
6798
|
+
name: string;
|
|
6799
|
+
path?: string;
|
|
6761
6800
|
}
|
|
6762
|
-
interface
|
|
6763
|
-
|
|
6764
|
-
|
|
6765
|
-
migrationData: MittwaldAPIV2.Components.Schemas.DomainmigrationMigrationData;
|
|
6801
|
+
interface VarnishConfigFileRef {
|
|
6802
|
+
meta?: MittwaldAPIV2.Components.Schemas.VarnishConfigFileMetadata;
|
|
6803
|
+
refId: string;
|
|
6766
6804
|
}
|
|
6767
|
-
interface
|
|
6768
|
-
|
|
6769
|
-
|
|
6770
|
-
|
|
6805
|
+
interface VarnishGlobalConfigTemplate {
|
|
6806
|
+
data: string;
|
|
6807
|
+
name: string;
|
|
6808
|
+
updatedAt: string;
|
|
6771
6809
|
}
|
|
6772
|
-
interface
|
|
6773
|
-
|
|
6774
|
-
domains: {
|
|
6775
|
-
coabData?: {
|
|
6776
|
-
dnsRecords?: MittwaldAPIV2.Components.Schemas.DomainmigrationDNSRecord[];
|
|
6777
|
-
handleData?: {
|
|
6778
|
-
handleFields?: {
|
|
6779
|
-
name: string;
|
|
6780
|
-
value: string;
|
|
6781
|
-
}[];
|
|
6782
|
-
handleRef?: string;
|
|
6783
|
-
};
|
|
6784
|
-
nameservers?: string[];
|
|
6785
|
-
subdomains?: MittwaldAPIV2.Components.Schemas.DomainmigrationSubdomain[];
|
|
6786
|
-
};
|
|
6787
|
-
domain: string;
|
|
6788
|
-
domainId: string;
|
|
6789
|
-
state: "pending" | "succeeded" | "failed";
|
|
6790
|
-
}[];
|
|
6791
|
-
finishedAt?: string;
|
|
6792
|
-
id: string;
|
|
6793
|
-
pAccount: string;
|
|
6810
|
+
interface VarnishSoftware {
|
|
6811
|
+
config: MittwaldAPIV2.Components.Schemas.VarnishSoftwareConfig;
|
|
6794
6812
|
projectId: string;
|
|
6813
|
+
settings?: {
|
|
6814
|
+
[k: string]: string;
|
|
6815
|
+
};
|
|
6816
|
+
softwareId: string;
|
|
6817
|
+
softwareTemplateId: string;
|
|
6818
|
+
softwareVersion: string;
|
|
6819
|
+
updatedAt: string;
|
|
6795
6820
|
}
|
|
6796
|
-
interface
|
|
6797
|
-
|
|
6798
|
-
|
|
6799
|
-
|
|
6821
|
+
interface VarnishSoftwareConfig {
|
|
6822
|
+
configExpiration?: MittwaldAPIV2.Components.Schemas.VarnishConfigExpiration;
|
|
6823
|
+
latestConfigRevision?: number;
|
|
6824
|
+
revisions?: MittwaldAPIV2.Components.Schemas.VarnishConfigRevision[];
|
|
6800
6825
|
}
|
|
6801
|
-
interface
|
|
6802
|
-
|
|
6803
|
-
|
|
6804
|
-
|
|
6826
|
+
interface VarnishConfigExpiration {
|
|
6827
|
+
maxVersions?: number;
|
|
6828
|
+
retentionTime?: number;
|
|
6829
|
+
}
|
|
6830
|
+
interface VarnishSoftwareConfigFileAccessToken {
|
|
6831
|
+
accessToken: string;
|
|
6832
|
+
expiresAt: string;
|
|
6833
|
+
}
|
|
6834
|
+
interface VarnishSoftwareSetting {
|
|
6835
|
+
name: string;
|
|
6805
6836
|
value: string;
|
|
6806
6837
|
}
|
|
6807
|
-
interface
|
|
6808
|
-
|
|
6838
|
+
interface VerificationEmailDetectPhishingMailResponse {
|
|
6839
|
+
result: MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
6840
|
+
}
|
|
6841
|
+
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6842
|
+
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6843
|
+
type MarketplaceExtensionInstanceWebhookExecutionState = "running" | "queued" | "halted" | "failed" | "successful";
|
|
6844
|
+
/**
|
|
6845
|
+
* A non-blocking finding on an otherwise migratable domain: the domain migrates, but the named subject is skipped.
|
|
6846
|
+
*/
|
|
6847
|
+
interface DomainmigrationDomainMigrationWarning {
|
|
6848
|
+
reason: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarningReason;
|
|
6809
6849
|
/**
|
|
6810
|
-
*
|
|
6850
|
+
* The affected COAB entity, e.g. the skipped wildcard subdomain hostname.
|
|
6811
6851
|
*/
|
|
6812
|
-
|
|
6813
|
-
subdomains: MittwaldAPIV2.Components.Schemas.DomainmigrationSubdomain[];
|
|
6814
|
-
}
|
|
6815
|
-
interface ConversationBasicConversation {
|
|
6816
|
-
category?: MittwaldAPIV2.Components.Schemas.ConversationCategory;
|
|
6817
|
-
conversationId: string;
|
|
6818
|
-
createdAt: string;
|
|
6819
|
-
lastMessageAt?: string;
|
|
6820
|
-
mainUser: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
6821
|
-
notificationRoles?: MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[];
|
|
6822
|
-
relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference;
|
|
6823
|
-
relations?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[];
|
|
6824
|
-
sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
|
|
6825
|
-
shortId: string;
|
|
6826
|
-
status: MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
6827
|
-
title: string;
|
|
6828
|
-
visibility: "shared" | "private";
|
|
6852
|
+
subject: string;
|
|
6829
6853
|
}
|
|
6854
|
+
/**
|
|
6855
|
+
* Typed non-blocking migration warning: the domain migrates, but the named subject (`warnings[].subject`) needs attention during migration.
|
|
6856
|
+
*
|
|
6857
|
+
* * `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.
|
|
6858
|
+
* * `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.
|
|
6859
|
+
* * `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).
|
|
6860
|
+
* * `registrantPhoneNeedsEpp`: the registry owner (registrant) phone is not EPP-conformant; a reformat-to-EPP heal will be attempted during migration. Non-blocking — the read path cannot tell whether the heal will ultimately succeed, so it only warns; the create path is the actual gate.
|
|
6861
|
+
*/
|
|
6862
|
+
type DomainmigrationDomainMigrationWarningReason = "subdomainInvalidIngressHostname" | "subdomainInvalidDnsName" | "subdomainNsRecordsOverridden" | "registrantPhoneNeedsEpp";
|
|
6830
6863
|
interface CommonsAddress {
|
|
6831
6864
|
street: string;
|
|
6832
6865
|
houseNumber: string;
|
|
@@ -18873,18 +18906,57 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18873
18906
|
}
|
|
18874
18907
|
}
|
|
18875
18908
|
}
|
|
18876
|
-
namespace V2DomainsSupportedTlds { }
|
|
18877
|
-
namespace V2DomainTlds {
|
|
18909
|
+
namespace V2DomainsSupportedTlds { }
|
|
18910
|
+
namespace V2DomainTlds {
|
|
18911
|
+
namespace Get {
|
|
18912
|
+
namespace Parameters {
|
|
18913
|
+
type Path = {};
|
|
18914
|
+
type Header = {};
|
|
18915
|
+
type Query = {};
|
|
18916
|
+
}
|
|
18917
|
+
namespace Responses {
|
|
18918
|
+
namespace $200 {
|
|
18919
|
+
namespace Content {
|
|
18920
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainTopLevel[];
|
|
18921
|
+
}
|
|
18922
|
+
}
|
|
18923
|
+
namespace $429 {
|
|
18924
|
+
namespace Content {
|
|
18925
|
+
interface ApplicationJson {
|
|
18926
|
+
[k: string]: unknown;
|
|
18927
|
+
}
|
|
18928
|
+
}
|
|
18929
|
+
}
|
|
18930
|
+
namespace Default {
|
|
18931
|
+
namespace Content {
|
|
18932
|
+
interface ApplicationJson {
|
|
18933
|
+
[k: string]: unknown;
|
|
18934
|
+
}
|
|
18935
|
+
}
|
|
18936
|
+
}
|
|
18937
|
+
}
|
|
18938
|
+
}
|
|
18939
|
+
}
|
|
18940
|
+
namespace V2ProjectsProjectIdDomainMigrations {
|
|
18878
18941
|
namespace Get {
|
|
18879
18942
|
namespace Parameters {
|
|
18880
|
-
type Path = {
|
|
18881
|
-
|
|
18943
|
+
type Path = {
|
|
18944
|
+
projectId: string;
|
|
18945
|
+
};
|
|
18946
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
18882
18947
|
type Query = {};
|
|
18883
18948
|
}
|
|
18884
18949
|
namespace Responses {
|
|
18885
18950
|
namespace $200 {
|
|
18886
18951
|
namespace Content {
|
|
18887
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
18952
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainmigrationMigration[];
|
|
18953
|
+
}
|
|
18954
|
+
}
|
|
18955
|
+
namespace $400 {
|
|
18956
|
+
namespace Content {
|
|
18957
|
+
interface ApplicationJson {
|
|
18958
|
+
[k: string]: unknown;
|
|
18959
|
+
}
|
|
18888
18960
|
}
|
|
18889
18961
|
}
|
|
18890
18962
|
namespace $429 {
|
|
@@ -20781,6 +20853,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20781
20853
|
type Query = {
|
|
20782
20854
|
extensionId?: string;
|
|
20783
20855
|
extensionInstanceId?: string;
|
|
20856
|
+
state?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecutionState[];
|
|
20784
20857
|
limit?: number;
|
|
20785
20858
|
skip?: number;
|
|
20786
20859
|
page?: number;
|
|
@@ -26950,6 +27023,59 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26950
27023
|
}
|
|
26951
27024
|
}
|
|
26952
27025
|
}
|
|
27026
|
+
namespace V2CustomersCustomerIdProjects {
|
|
27027
|
+
namespace Get {
|
|
27028
|
+
namespace Parameters {
|
|
27029
|
+
type Path = {
|
|
27030
|
+
customerId: string;
|
|
27031
|
+
};
|
|
27032
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27033
|
+
type Query = {
|
|
27034
|
+
searchTerm?: string;
|
|
27035
|
+
limit?: number;
|
|
27036
|
+
skip?: number;
|
|
27037
|
+
page?: number;
|
|
27038
|
+
sort?: "createdAt" | "description";
|
|
27039
|
+
order?: "asc" | "desc";
|
|
27040
|
+
};
|
|
27041
|
+
}
|
|
27042
|
+
namespace Responses {
|
|
27043
|
+
namespace $200 {
|
|
27044
|
+
namespace Content {
|
|
27045
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[];
|
|
27046
|
+
}
|
|
27047
|
+
}
|
|
27048
|
+
namespace $400 {
|
|
27049
|
+
namespace Content {
|
|
27050
|
+
interface ApplicationJson {
|
|
27051
|
+
[k: string]: unknown;
|
|
27052
|
+
}
|
|
27053
|
+
}
|
|
27054
|
+
}
|
|
27055
|
+
namespace $403 {
|
|
27056
|
+
namespace Content {
|
|
27057
|
+
interface ApplicationJson {
|
|
27058
|
+
[k: string]: unknown;
|
|
27059
|
+
}
|
|
27060
|
+
}
|
|
27061
|
+
}
|
|
27062
|
+
namespace $429 {
|
|
27063
|
+
namespace Content {
|
|
27064
|
+
interface ApplicationJson {
|
|
27065
|
+
[k: string]: unknown;
|
|
27066
|
+
}
|
|
27067
|
+
}
|
|
27068
|
+
}
|
|
27069
|
+
namespace Default {
|
|
27070
|
+
namespace Content {
|
|
27071
|
+
interface ApplicationJson {
|
|
27072
|
+
[k: string]: unknown;
|
|
27073
|
+
}
|
|
27074
|
+
}
|
|
27075
|
+
}
|
|
27076
|
+
}
|
|
27077
|
+
}
|
|
27078
|
+
}
|
|
26953
27079
|
namespace V2ProjectsProjectIdMemberships {
|
|
26954
27080
|
namespace Get {
|
|
26955
27081
|
namespace Parameters {
|
|
@@ -26997,6 +27123,71 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26997
27123
|
}
|
|
26998
27124
|
}
|
|
26999
27125
|
}
|
|
27126
|
+
namespace V2ProjectsProjectIdActivities {
|
|
27127
|
+
namespace Get {
|
|
27128
|
+
namespace Parameters {
|
|
27129
|
+
type Path = {
|
|
27130
|
+
projectId: string;
|
|
27131
|
+
};
|
|
27132
|
+
type Header = {};
|
|
27133
|
+
type Query = {
|
|
27134
|
+
aggregateName?: string;
|
|
27135
|
+
aggregateDomain?: string;
|
|
27136
|
+
aggregateId?: string;
|
|
27137
|
+
startTime?: string;
|
|
27138
|
+
endTime?: string;
|
|
27139
|
+
fulltextSearch?: string;
|
|
27140
|
+
limit?: number;
|
|
27141
|
+
skip?: number;
|
|
27142
|
+
page?: number;
|
|
27143
|
+
sort?: "dateTime";
|
|
27144
|
+
order?: "asc" | "desc";
|
|
27145
|
+
};
|
|
27146
|
+
}
|
|
27147
|
+
namespace Responses {
|
|
27148
|
+
namespace $200 {
|
|
27149
|
+
namespace Content {
|
|
27150
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[];
|
|
27151
|
+
}
|
|
27152
|
+
}
|
|
27153
|
+
namespace $400 {
|
|
27154
|
+
namespace Content {
|
|
27155
|
+
interface ApplicationJson {
|
|
27156
|
+
[k: string]: unknown;
|
|
27157
|
+
}
|
|
27158
|
+
}
|
|
27159
|
+
}
|
|
27160
|
+
namespace $403 {
|
|
27161
|
+
namespace Content {
|
|
27162
|
+
interface ApplicationJson {
|
|
27163
|
+
[k: string]: unknown;
|
|
27164
|
+
}
|
|
27165
|
+
}
|
|
27166
|
+
}
|
|
27167
|
+
namespace $404 {
|
|
27168
|
+
namespace Content {
|
|
27169
|
+
interface ApplicationJson {
|
|
27170
|
+
[k: string]: unknown;
|
|
27171
|
+
}
|
|
27172
|
+
}
|
|
27173
|
+
}
|
|
27174
|
+
namespace $429 {
|
|
27175
|
+
namespace Content {
|
|
27176
|
+
interface ApplicationJson {
|
|
27177
|
+
[k: string]: unknown;
|
|
27178
|
+
}
|
|
27179
|
+
}
|
|
27180
|
+
}
|
|
27181
|
+
namespace Default {
|
|
27182
|
+
namespace Content {
|
|
27183
|
+
interface ApplicationJson {
|
|
27184
|
+
[k: string]: unknown;
|
|
27185
|
+
}
|
|
27186
|
+
}
|
|
27187
|
+
}
|
|
27188
|
+
}
|
|
27189
|
+
}
|
|
27190
|
+
}
|
|
27000
27191
|
namespace V2ProjectInvites {
|
|
27001
27192
|
namespace Get {
|
|
27002
27193
|
namespace Parameters {
|
|
@@ -31135,123 +31326,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31135
31326
|
}
|
|
31136
31327
|
}
|
|
31137
31328
|
}
|
|
31138
|
-
namespace V2ProjectsProjectIdActivities {
|
|
31139
|
-
namespace Get {
|
|
31140
|
-
namespace Parameters {
|
|
31141
|
-
type Path = {
|
|
31142
|
-
projectId: string;
|
|
31143
|
-
};
|
|
31144
|
-
type Header = {};
|
|
31145
|
-
type Query = {
|
|
31146
|
-
aggregateName?: string;
|
|
31147
|
-
aggregateDomain?: string;
|
|
31148
|
-
aggregateId?: string;
|
|
31149
|
-
startTime?: string;
|
|
31150
|
-
endTime?: string;
|
|
31151
|
-
fulltextSearch?: string;
|
|
31152
|
-
limit?: number;
|
|
31153
|
-
skip?: number;
|
|
31154
|
-
page?: number;
|
|
31155
|
-
sort?: "dateTime";
|
|
31156
|
-
order?: "asc" | "desc";
|
|
31157
|
-
};
|
|
31158
|
-
}
|
|
31159
|
-
namespace Responses {
|
|
31160
|
-
namespace $200 {
|
|
31161
|
-
namespace Content {
|
|
31162
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[];
|
|
31163
|
-
}
|
|
31164
|
-
}
|
|
31165
|
-
namespace $400 {
|
|
31166
|
-
namespace Content {
|
|
31167
|
-
interface ApplicationJson {
|
|
31168
|
-
[k: string]: unknown;
|
|
31169
|
-
}
|
|
31170
|
-
}
|
|
31171
|
-
}
|
|
31172
|
-
namespace $403 {
|
|
31173
|
-
namespace Content {
|
|
31174
|
-
interface ApplicationJson {
|
|
31175
|
-
[k: string]: unknown;
|
|
31176
|
-
}
|
|
31177
|
-
}
|
|
31178
|
-
}
|
|
31179
|
-
namespace $404 {
|
|
31180
|
-
namespace Content {
|
|
31181
|
-
interface ApplicationJson {
|
|
31182
|
-
[k: string]: unknown;
|
|
31183
|
-
}
|
|
31184
|
-
}
|
|
31185
|
-
}
|
|
31186
|
-
namespace $429 {
|
|
31187
|
-
namespace Content {
|
|
31188
|
-
interface ApplicationJson {
|
|
31189
|
-
[k: string]: unknown;
|
|
31190
|
-
}
|
|
31191
|
-
}
|
|
31192
|
-
}
|
|
31193
|
-
namespace Default {
|
|
31194
|
-
namespace Content {
|
|
31195
|
-
interface ApplicationJson {
|
|
31196
|
-
[k: string]: unknown;
|
|
31197
|
-
}
|
|
31198
|
-
}
|
|
31199
|
-
}
|
|
31200
|
-
}
|
|
31201
|
-
}
|
|
31202
|
-
}
|
|
31203
|
-
namespace V2CustomersCustomerIdProjects {
|
|
31204
|
-
namespace Get {
|
|
31205
|
-
namespace Parameters {
|
|
31206
|
-
type Path = {
|
|
31207
|
-
customerId: string;
|
|
31208
|
-
};
|
|
31209
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
31210
|
-
type Query = {
|
|
31211
|
-
searchTerm?: string;
|
|
31212
|
-
limit?: number;
|
|
31213
|
-
skip?: number;
|
|
31214
|
-
page?: number;
|
|
31215
|
-
sort?: "createdAt" | "description";
|
|
31216
|
-
order?: "asc" | "desc";
|
|
31217
|
-
};
|
|
31218
|
-
}
|
|
31219
|
-
namespace Responses {
|
|
31220
|
-
namespace $200 {
|
|
31221
|
-
namespace Content {
|
|
31222
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[];
|
|
31223
|
-
}
|
|
31224
|
-
}
|
|
31225
|
-
namespace $400 {
|
|
31226
|
-
namespace Content {
|
|
31227
|
-
interface ApplicationJson {
|
|
31228
|
-
[k: string]: unknown;
|
|
31229
|
-
}
|
|
31230
|
-
}
|
|
31231
|
-
}
|
|
31232
|
-
namespace $403 {
|
|
31233
|
-
namespace Content {
|
|
31234
|
-
interface ApplicationJson {
|
|
31235
|
-
[k: string]: unknown;
|
|
31236
|
-
}
|
|
31237
|
-
}
|
|
31238
|
-
}
|
|
31239
|
-
namespace $429 {
|
|
31240
|
-
namespace Content {
|
|
31241
|
-
interface ApplicationJson {
|
|
31242
|
-
[k: string]: unknown;
|
|
31243
|
-
}
|
|
31244
|
-
}
|
|
31245
|
-
}
|
|
31246
|
-
namespace Default {
|
|
31247
|
-
namespace Content {
|
|
31248
|
-
interface ApplicationJson {
|
|
31249
|
-
[k: string]: unknown;
|
|
31250
|
-
}
|
|
31251
|
-
}
|
|
31252
|
-
}
|
|
31253
|
-
}
|
|
31254
|
-
}
|
|
31255
|
-
}
|
|
31256
31329
|
}
|
|
31257
31330
|
}
|