@mittwald/api-client 4.64.2 → 4.65.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 +13 -1
- package/dist/esm/generated/v2/client.js +34 -1
- package/dist/esm/generated/v2/descriptors.js +85 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +153 -13
- package/dist/types/generated/v2/client.d.ts +1317 -176
- package/dist/types/generated/v2/descriptors.d.ts +33 -5
- package/dist/types/generated/v2/types.d.ts +1141 -83
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -178,6 +178,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
178
178
|
type RequestData = InferredRequestData<typeof descriptors.contractGetBaseItemOfContract>;
|
|
179
179
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetBaseItemOfContract, TStatus>;
|
|
180
180
|
}
|
|
181
|
+
namespace ContractGetDetailOfContractByCertificate {
|
|
182
|
+
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByCertificate>;
|
|
183
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByCertificate, TStatus>;
|
|
184
|
+
}
|
|
181
185
|
namespace ContractGetDetailOfContractByDomain {
|
|
182
186
|
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByDomain>;
|
|
183
187
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByDomain, TStatus>;
|
|
@@ -322,6 +326,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
322
326
|
type RequestData = InferredRequestData<typeof descriptors.customerCreateCustomer>;
|
|
323
327
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerCreateCustomer, TStatus>;
|
|
324
328
|
}
|
|
329
|
+
namespace CustomerCreateRecommendationSuggestion {
|
|
330
|
+
type RequestData = InferredRequestData<typeof descriptors.customerCreateRecommendationSuggestion>;
|
|
331
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerCreateRecommendationSuggestion, TStatus>;
|
|
332
|
+
}
|
|
333
|
+
namespace CustomerGetWallet {
|
|
334
|
+
type RequestData = InferredRequestData<typeof descriptors.customerGetWallet>;
|
|
335
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerGetWallet, TStatus>;
|
|
336
|
+
}
|
|
337
|
+
namespace CustomerCreateWallet {
|
|
338
|
+
type RequestData = InferredRequestData<typeof descriptors.customerCreateWallet>;
|
|
339
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerCreateWallet, TStatus>;
|
|
340
|
+
}
|
|
325
341
|
namespace CustomerDeclineCustomerInvite {
|
|
326
342
|
type RequestData = InferredRequestData<typeof descriptors.customerDeclineCustomerInvite>;
|
|
327
343
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerDeclineCustomerInvite, TStatus>;
|
|
@@ -690,6 +706,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
690
706
|
type RequestData = InferredRequestData<typeof descriptors.ingressIngressVerifyOwnership>;
|
|
691
707
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressIngressVerifyOwnership, TStatus>;
|
|
692
708
|
}
|
|
709
|
+
namespace IngressListIngressesCompatibleWithCertificate {
|
|
710
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressListIngressesCompatibleWithCertificate>;
|
|
711
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressListIngressesCompatibleWithCertificate, TStatus>;
|
|
712
|
+
}
|
|
693
713
|
namespace IngressUpdateIngressPaths {
|
|
694
714
|
type RequestData = InferredRequestData<typeof descriptors.ingressUpdateIngressPaths>;
|
|
695
715
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressUpdateIngressPaths, TStatus>;
|
|
@@ -1058,6 +1078,42 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1058
1078
|
type RequestData = InferredRequestData<typeof descriptors.sshUserUpdateSshUser>;
|
|
1059
1079
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sshUserUpdateSshUser, TStatus>;
|
|
1060
1080
|
}
|
|
1081
|
+
namespace SslCheckReplaceCertificate {
|
|
1082
|
+
type RequestData = InferredRequestData<typeof descriptors.sslCheckReplaceCertificate>;
|
|
1083
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslCheckReplaceCertificate, TStatus>;
|
|
1084
|
+
}
|
|
1085
|
+
namespace SslListCertificateRequests {
|
|
1086
|
+
type RequestData = InferredRequestData<typeof descriptors.sslListCertificateRequests>;
|
|
1087
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslListCertificateRequests, TStatus>;
|
|
1088
|
+
}
|
|
1089
|
+
namespace SslCreateCertificateRequest {
|
|
1090
|
+
type RequestData = InferredRequestData<typeof descriptors.sslCreateCertificateRequest>;
|
|
1091
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslCreateCertificateRequest, TStatus>;
|
|
1092
|
+
}
|
|
1093
|
+
namespace SslDeleteCertificateRequest {
|
|
1094
|
+
type RequestData = InferredRequestData<typeof descriptors.sslDeleteCertificateRequest>;
|
|
1095
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslDeleteCertificateRequest, TStatus>;
|
|
1096
|
+
}
|
|
1097
|
+
namespace SslDeleteCertificate {
|
|
1098
|
+
type RequestData = InferredRequestData<typeof descriptors.sslDeleteCertificate>;
|
|
1099
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslDeleteCertificate, TStatus>;
|
|
1100
|
+
}
|
|
1101
|
+
namespace SslGetCertificateRequest {
|
|
1102
|
+
type RequestData = InferredRequestData<typeof descriptors.sslGetCertificateRequest>;
|
|
1103
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslGetCertificateRequest, TStatus>;
|
|
1104
|
+
}
|
|
1105
|
+
namespace SslGetCertificate {
|
|
1106
|
+
type RequestData = InferredRequestData<typeof descriptors.sslGetCertificate>;
|
|
1107
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslGetCertificate, TStatus>;
|
|
1108
|
+
}
|
|
1109
|
+
namespace SslReplaceCertificate {
|
|
1110
|
+
type RequestData = InferredRequestData<typeof descriptors.sslReplaceCertificate>;
|
|
1111
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslReplaceCertificate, TStatus>;
|
|
1112
|
+
}
|
|
1113
|
+
namespace SslListCertificates {
|
|
1114
|
+
type RequestData = InferredRequestData<typeof descriptors.sslListCertificates>;
|
|
1115
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslListCertificates, TStatus>;
|
|
1116
|
+
}
|
|
1061
1117
|
namespace UserAddPhoneNumber {
|
|
1062
1118
|
type RequestData = InferredRequestData<typeof descriptors.userAddPhoneNumber>;
|
|
1063
1119
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userAddPhoneNumber, TStatus>;
|
|
@@ -1348,6 +1404,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1348
1404
|
linkedDatabases?: MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
|
|
1349
1405
|
processRunningSince?: string;
|
|
1350
1406
|
processes?: string[];
|
|
1407
|
+
projectEnvironment?: string;
|
|
1351
1408
|
projectId?: string;
|
|
1352
1409
|
screenshotId?: string;
|
|
1353
1410
|
screenshotRef?: string;
|
|
@@ -1666,7 +1723,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1666
1723
|
domain: string;
|
|
1667
1724
|
id: string;
|
|
1668
1725
|
}
|
|
1669
|
-
type ConversationCategoryReferenceType = ("unspecified" | "server" | "project" | "organisation")[];
|
|
1726
|
+
type ConversationCategoryReferenceType = ("unspecified" | "server" | "project" | "organisation" | "extensionInstance")[];
|
|
1670
1727
|
interface ConversationCategory {
|
|
1671
1728
|
categoryId: string;
|
|
1672
1729
|
name: string;
|
|
@@ -1758,6 +1815,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1758
1815
|
aggregate: "placementgroup";
|
|
1759
1816
|
domain: "project";
|
|
1760
1817
|
id: string;
|
|
1818
|
+
} | {
|
|
1819
|
+
aggregate: "extensionInstance";
|
|
1820
|
+
domain: "extension";
|
|
1821
|
+
id: string;
|
|
1761
1822
|
};
|
|
1762
1823
|
type ConversationStatus = "open" | "closed" | "answered" | "inProgress" | "waiting";
|
|
1763
1824
|
interface ConversationStatusUpdate {
|
|
@@ -2171,6 +2232,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2171
2232
|
authCode?: MittwaldAPIV2.Components.Schemas.DomainAuthCode;
|
|
2172
2233
|
authCode2?: MittwaldAPIV2.Components.Schemas.DomainAuthCode2;
|
|
2173
2234
|
connected: boolean;
|
|
2235
|
+
contactHash?: string;
|
|
2174
2236
|
deleted: boolean;
|
|
2175
2237
|
domain: string;
|
|
2176
2238
|
domainId: string;
|
|
@@ -2244,9 +2306,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2244
2306
|
}
|
|
2245
2307
|
type MarketplaceContributorState = "enabled" | "disabled";
|
|
2246
2308
|
interface MarketplaceExtension {
|
|
2309
|
+
/**
|
|
2310
|
+
* @deprecated
|
|
2311
|
+
*/
|
|
2247
2312
|
blocked: boolean;
|
|
2248
2313
|
context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
2249
2314
|
contributorId: string;
|
|
2315
|
+
/**
|
|
2316
|
+
* The Extension is deprecated by the contributor and will expire at the given date.
|
|
2317
|
+
*/
|
|
2318
|
+
deprecation?: {
|
|
2319
|
+
deprecatedAt: string;
|
|
2320
|
+
};
|
|
2250
2321
|
description: string;
|
|
2251
2322
|
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
2252
2323
|
disabled: boolean;
|
|
@@ -2268,6 +2339,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2268
2339
|
*/
|
|
2269
2340
|
tags: string[];
|
|
2270
2341
|
}
|
|
2342
|
+
interface MarketplaceBackendComponent {
|
|
2343
|
+
url: string;
|
|
2344
|
+
}
|
|
2345
|
+
interface MarketplaceBackendComponents {
|
|
2346
|
+
extensionAddedToContext?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
2347
|
+
extensionInstanceRemovedFromContext?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
2348
|
+
extensionInstanceSecretRotated?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
2349
|
+
extensionInstanceUpdated?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
2350
|
+
}
|
|
2271
2351
|
type MarketplaceContext = "project" | "customer";
|
|
2272
2352
|
/**
|
|
2273
2353
|
* Language specific descriptions in various formats.
|
|
@@ -2294,12 +2374,42 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2294
2374
|
disabled: boolean;
|
|
2295
2375
|
extensionId: string;
|
|
2296
2376
|
id: string;
|
|
2377
|
+
pendingInstallation: boolean;
|
|
2378
|
+
pendingRemoval: boolean;
|
|
2297
2379
|
}
|
|
2298
2380
|
interface MarketplaceExternalComponent {
|
|
2299
2381
|
name: string;
|
|
2300
2382
|
url: string;
|
|
2301
2383
|
}
|
|
2302
2384
|
type MarketplaceFrontendFragment = MittwaldAPIV2.Components.Schemas.MarketplaceUrlFrontendFragment;
|
|
2385
|
+
interface MarketplaceOptionalExtension {
|
|
2386
|
+
backendComponents?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents;
|
|
2387
|
+
/**
|
|
2388
|
+
* @deprecated
|
|
2389
|
+
*/
|
|
2390
|
+
blocked?: boolean;
|
|
2391
|
+
context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
2392
|
+
contributorId: string;
|
|
2393
|
+
description?: string;
|
|
2394
|
+
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
2395
|
+
disabled?: boolean;
|
|
2396
|
+
frontendComponents?: MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[];
|
|
2397
|
+
frontendFragments?: {
|
|
2398
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
2399
|
+
};
|
|
2400
|
+
id: string;
|
|
2401
|
+
name: string;
|
|
2402
|
+
scopes?: string[];
|
|
2403
|
+
/**
|
|
2404
|
+
* deprecated
|
|
2405
|
+
*/
|
|
2406
|
+
state?: "enabled" | "blocked" | "disabled";
|
|
2407
|
+
support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
|
|
2408
|
+
/**
|
|
2409
|
+
* @minItems 0
|
|
2410
|
+
*/
|
|
2411
|
+
tags?: string[];
|
|
2412
|
+
}
|
|
2303
2413
|
interface MarketplacePublicKey {
|
|
2304
2414
|
algorithm: string;
|
|
2305
2415
|
/**
|
|
@@ -2353,7 +2463,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2353
2463
|
id: string;
|
|
2354
2464
|
}
|
|
2355
2465
|
interface FileFileMeta {
|
|
2466
|
+
/**
|
|
2467
|
+
* @deprecated
|
|
2468
|
+
* deprecated, see friendlyUrl
|
|
2469
|
+
*/
|
|
2356
2470
|
friendlyURL: string;
|
|
2471
|
+
friendlyUrl: string;
|
|
2357
2472
|
id: string;
|
|
2358
2473
|
mimeType: string;
|
|
2359
2474
|
name: string;
|
|
@@ -2377,6 +2492,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2377
2492
|
* deprecated, see maxSizeInBytes
|
|
2378
2493
|
*/
|
|
2379
2494
|
maxSizeInKB: number;
|
|
2495
|
+
/**
|
|
2496
|
+
* @deprecated
|
|
2497
|
+
* deprecated, see maxSizeInBytes
|
|
2498
|
+
*/
|
|
2499
|
+
maxSizeInKb: number;
|
|
2380
2500
|
mimeTypes: string[];
|
|
2381
2501
|
properties?: {
|
|
2382
2502
|
imageDimensions?: {
|
|
@@ -3114,8 +3234,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3114
3234
|
}
|
|
3115
3235
|
interface OrderProfile {
|
|
3116
3236
|
email: string;
|
|
3117
|
-
|
|
3118
|
-
|
|
3237
|
+
firstName?: string;
|
|
3238
|
+
lastName?: string;
|
|
3119
3239
|
/**
|
|
3120
3240
|
* the users title
|
|
3121
3241
|
*/
|
|
@@ -3133,6 +3253,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3133
3253
|
description: string;
|
|
3134
3254
|
diskspaceInGiB: number;
|
|
3135
3255
|
promotionCode?: string;
|
|
3256
|
+
recommendationCode?: string;
|
|
3136
3257
|
spec: MittwaldAPIV2.Components.Schemas.OrderMachineTypeSpec | MittwaldAPIV2.Components.Schemas.OrderHardwareSpec;
|
|
3137
3258
|
useFreeTrial?: boolean;
|
|
3138
3259
|
}
|
|
@@ -3153,6 +3274,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3153
3274
|
diskspaceInGiB: number;
|
|
3154
3275
|
machineType: string;
|
|
3155
3276
|
promotionCode?: string;
|
|
3277
|
+
recommendationCode?: string;
|
|
3156
3278
|
useFreeTrial?: boolean;
|
|
3157
3279
|
}
|
|
3158
3280
|
interface OrderServerTariffChange {
|
|
@@ -3457,6 +3579,101 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3457
3579
|
updatedAt?: string;
|
|
3458
3580
|
userName: string;
|
|
3459
3581
|
}
|
|
3582
|
+
interface SslCertificate {
|
|
3583
|
+
caBundle?: string;
|
|
3584
|
+
certificate: string;
|
|
3585
|
+
certificateOrderId?: string;
|
|
3586
|
+
certificateRequestId: string;
|
|
3587
|
+
certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
3588
|
+
commonName?: string;
|
|
3589
|
+
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
3590
|
+
dnsNames?: string[];
|
|
3591
|
+
id: string;
|
|
3592
|
+
isExpired: boolean;
|
|
3593
|
+
issuer?: string;
|
|
3594
|
+
lastExpirationThresholdHit: number;
|
|
3595
|
+
projectId: string;
|
|
3596
|
+
validFrom: string;
|
|
3597
|
+
validTo: string;
|
|
3598
|
+
}
|
|
3599
|
+
interface SslCertificateData {
|
|
3600
|
+
caBundle?: string;
|
|
3601
|
+
certificate?: string;
|
|
3602
|
+
signingRequest?: string;
|
|
3603
|
+
}
|
|
3604
|
+
interface SslCertificateError {
|
|
3605
|
+
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";
|
|
3606
|
+
}
|
|
3607
|
+
interface SslCertificateRequest {
|
|
3608
|
+
certificateData: MittwaldAPIV2.Components.Schemas.SslCertificateData;
|
|
3609
|
+
certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
3610
|
+
commonName?: string;
|
|
3611
|
+
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
3612
|
+
createdAt: string;
|
|
3613
|
+
dnsNames?: string[];
|
|
3614
|
+
id: string;
|
|
3615
|
+
isCompleted: boolean;
|
|
3616
|
+
issuer?: string;
|
|
3617
|
+
projectId: string;
|
|
3618
|
+
validFrom?: string;
|
|
3619
|
+
validTo?: string;
|
|
3620
|
+
}
|
|
3621
|
+
interface SslCertificateRequestCreateRequest {
|
|
3622
|
+
certificate: string;
|
|
3623
|
+
privateKey: string;
|
|
3624
|
+
projectId: string;
|
|
3625
|
+
}
|
|
3626
|
+
interface SslCertificateRequestCreateResponse {
|
|
3627
|
+
commonName?: string;
|
|
3628
|
+
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
3629
|
+
dnsNames?: string[];
|
|
3630
|
+
id: string;
|
|
3631
|
+
issuer?: string;
|
|
3632
|
+
signingRequest?: string;
|
|
3633
|
+
validFrom?: string;
|
|
3634
|
+
validTo?: string;
|
|
3635
|
+
}
|
|
3636
|
+
interface SslCertificateRequestCreateWithCSRRequest {
|
|
3637
|
+
commonName: string;
|
|
3638
|
+
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
3639
|
+
projectId: string;
|
|
3640
|
+
}
|
|
3641
|
+
type SslCertificateType = 0 | 1 | 2;
|
|
3642
|
+
interface SslCheckReplaceChanges {
|
|
3643
|
+
commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
3644
|
+
dnsNames?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceSliceChange;
|
|
3645
|
+
issuer?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
3646
|
+
validFrom?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
|
|
3647
|
+
validTo?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
|
|
3648
|
+
}
|
|
3649
|
+
interface SslCheckReplaceDateChange {
|
|
3650
|
+
newValue: string;
|
|
3651
|
+
oldValue: string;
|
|
3652
|
+
}
|
|
3653
|
+
interface SslCheckReplaceFieldChange {
|
|
3654
|
+
newValue: string;
|
|
3655
|
+
oldValue: string;
|
|
3656
|
+
}
|
|
3657
|
+
interface SslCheckReplaceCertificateResponse {
|
|
3658
|
+
changes?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceChanges;
|
|
3659
|
+
errors?: MittwaldAPIV2.Components.Schemas.SslCertificateError[];
|
|
3660
|
+
isReplaceable: boolean;
|
|
3661
|
+
}
|
|
3662
|
+
interface SslCheckReplaceSliceChange {
|
|
3663
|
+
addedValues: string[];
|
|
3664
|
+
removedValues: string[];
|
|
3665
|
+
values: string[];
|
|
3666
|
+
}
|
|
3667
|
+
interface SslContact {
|
|
3668
|
+
city?: string;
|
|
3669
|
+
company?: string;
|
|
3670
|
+
/**
|
|
3671
|
+
* Two letter abbreviation - country code (ISO 3166-1 Alpha-2).
|
|
3672
|
+
*/
|
|
3673
|
+
country?: string;
|
|
3674
|
+
organizationalUnit?: string;
|
|
3675
|
+
state?: string;
|
|
3676
|
+
}
|
|
3460
3677
|
interface SignupAccount {
|
|
3461
3678
|
email?: string;
|
|
3462
3679
|
/**
|
|
@@ -3515,6 +3732,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3515
3732
|
person?: MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
3516
3733
|
userId?: string;
|
|
3517
3734
|
}
|
|
3735
|
+
interface UserCustomerMembership {
|
|
3736
|
+
expiresAt?: string;
|
|
3737
|
+
memberSince: string;
|
|
3738
|
+
role: "owner" | "member" | "accountant";
|
|
3739
|
+
}
|
|
3518
3740
|
interface UserUserFeedback {
|
|
3519
3741
|
id: string;
|
|
3520
3742
|
message: string;
|
|
@@ -3522,8 +3744,17 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3522
3744
|
subject: string;
|
|
3523
3745
|
vote: number;
|
|
3524
3746
|
}
|
|
3747
|
+
interface UserProjectMembership {
|
|
3748
|
+
expiresAt?: string;
|
|
3749
|
+
inherited: boolean;
|
|
3750
|
+
memberSince: string;
|
|
3751
|
+
role: "owner" | "emailadmin" | "external";
|
|
3752
|
+
}
|
|
3525
3753
|
interface UserUser {
|
|
3526
3754
|
avatarRef?: string;
|
|
3755
|
+
customerMemberships?: {
|
|
3756
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.UserCustomerMembership;
|
|
3757
|
+
};
|
|
3527
3758
|
email?: string;
|
|
3528
3759
|
/**
|
|
3529
3760
|
* Additional information about mittwald employees.
|
|
@@ -3531,6 +3762,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3531
3762
|
employeeInformation?: {
|
|
3532
3763
|
department: string;
|
|
3533
3764
|
};
|
|
3765
|
+
/**
|
|
3766
|
+
* Truth value, whether the user is a mittwald employee
|
|
3767
|
+
*/
|
|
3768
|
+
isEmployee?: boolean;
|
|
3534
3769
|
mfa?: {
|
|
3535
3770
|
active: boolean;
|
|
3536
3771
|
setup: boolean;
|
|
@@ -3538,15 +3773,23 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3538
3773
|
passwordUpdatedAt?: string;
|
|
3539
3774
|
person: MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
3540
3775
|
phoneNumber?: string;
|
|
3776
|
+
projectMemberships?: {
|
|
3777
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.UserProjectMembership;
|
|
3778
|
+
};
|
|
3541
3779
|
registeredAt?: string;
|
|
3542
3780
|
userId: string;
|
|
3543
3781
|
}
|
|
3544
3782
|
interface UserUserInternal {
|
|
3545
3783
|
avatarRef?: string;
|
|
3784
|
+
customerMemberships?: {
|
|
3785
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.UserCustomerMembership;
|
|
3786
|
+
};
|
|
3546
3787
|
/**
|
|
3547
3788
|
* Truth value, whether the user has been disabled.
|
|
3548
3789
|
*/
|
|
3549
3790
|
disabled?: boolean;
|
|
3791
|
+
disabledAt?: string;
|
|
3792
|
+
disabledBy?: string;
|
|
3550
3793
|
email?: string;
|
|
3551
3794
|
/**
|
|
3552
3795
|
* Additional information about mittwald employees.
|
|
@@ -3554,6 +3797,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3554
3797
|
employeeInformation?: {
|
|
3555
3798
|
department: string;
|
|
3556
3799
|
};
|
|
3800
|
+
/**
|
|
3801
|
+
* Truth value, whether the user is a mittwald employee
|
|
3802
|
+
*/
|
|
3803
|
+
isEmployee?: boolean;
|
|
3557
3804
|
mfa?: {
|
|
3558
3805
|
active: boolean;
|
|
3559
3806
|
setup: boolean;
|
|
@@ -3561,6 +3808,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3561
3808
|
passwordUpdatedAt?: string;
|
|
3562
3809
|
person: MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
3563
3810
|
phoneNumber?: string;
|
|
3811
|
+
projectMemberships?: {
|
|
3812
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.UserProjectMembership;
|
|
3813
|
+
};
|
|
3564
3814
|
registeredAt?: string;
|
|
3565
3815
|
userId: string;
|
|
3566
3816
|
}
|
|
@@ -3588,6 +3838,70 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3588
3838
|
location?: MittwaldAPIV2.Components.Schemas.SignupLocation;
|
|
3589
3839
|
tokenId: string;
|
|
3590
3840
|
}
|
|
3841
|
+
interface VarnishConfigRevision {
|
|
3842
|
+
expire?: number;
|
|
3843
|
+
files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
|
|
3844
|
+
note?: string;
|
|
3845
|
+
revision: number;
|
|
3846
|
+
updated: string;
|
|
3847
|
+
}
|
|
3848
|
+
interface VarnishConfigTemplate {
|
|
3849
|
+
/**
|
|
3850
|
+
* A set of config file references.
|
|
3851
|
+
*/
|
|
3852
|
+
files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
|
|
3853
|
+
isGlobal?: boolean;
|
|
3854
|
+
note?: string;
|
|
3855
|
+
projectId?: string;
|
|
3856
|
+
softwareConfigTemplateId: string;
|
|
3857
|
+
softwareTemplateId: string;
|
|
3858
|
+
updatedAt?: string;
|
|
3859
|
+
}
|
|
3860
|
+
interface VarnishConfigFile {
|
|
3861
|
+
content: string;
|
|
3862
|
+
meta?: MittwaldAPIV2.Components.Schemas.VarnishConfigFileMetadata;
|
|
3863
|
+
}
|
|
3864
|
+
interface VarnishConfigFileMetadata {
|
|
3865
|
+
name: string;
|
|
3866
|
+
path?: string;
|
|
3867
|
+
}
|
|
3868
|
+
interface VarnishConfigFileRef {
|
|
3869
|
+
meta?: MittwaldAPIV2.Components.Schemas.VarnishConfigFileMetadata;
|
|
3870
|
+
refId: string;
|
|
3871
|
+
}
|
|
3872
|
+
interface VarnishGlobalConfigTemplate {
|
|
3873
|
+
data: string;
|
|
3874
|
+
name: string;
|
|
3875
|
+
updatedAt: string;
|
|
3876
|
+
}
|
|
3877
|
+
interface VarnishSoftware {
|
|
3878
|
+
config: MittwaldAPIV2.Components.Schemas.VarnishSoftwareConfig;
|
|
3879
|
+
projectId: string;
|
|
3880
|
+
settings?: {
|
|
3881
|
+
[k: string]: string;
|
|
3882
|
+
};
|
|
3883
|
+
softwareId: string;
|
|
3884
|
+
softwareTemplateId: string;
|
|
3885
|
+
softwareVersion: string;
|
|
3886
|
+
updatedAt: string;
|
|
3887
|
+
}
|
|
3888
|
+
interface VarnishSoftwareConfig {
|
|
3889
|
+
configExpiration?: MittwaldAPIV2.Components.Schemas.VarnishConfigExpiration;
|
|
3890
|
+
latestConfigRevision?: number;
|
|
3891
|
+
revisions?: MittwaldAPIV2.Components.Schemas.VarnishConfigRevision[];
|
|
3892
|
+
}
|
|
3893
|
+
interface VarnishConfigExpiration {
|
|
3894
|
+
maxVersions?: number;
|
|
3895
|
+
retentionTime?: number;
|
|
3896
|
+
}
|
|
3897
|
+
interface VarnishSoftwareConfigFileAccessToken {
|
|
3898
|
+
accessToken: string;
|
|
3899
|
+
expiresAt: string;
|
|
3900
|
+
}
|
|
3901
|
+
interface VarnishSoftwareSetting {
|
|
3902
|
+
name: string;
|
|
3903
|
+
value: string;
|
|
3904
|
+
}
|
|
3591
3905
|
interface CommonsAddress {
|
|
3592
3906
|
street: string;
|
|
3593
3907
|
houseNumber: string;
|
|
@@ -3698,6 +4012,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3698
4012
|
interface ApplicationJson {
|
|
3699
4013
|
}
|
|
3700
4014
|
}
|
|
4015
|
+
namespace SslValidationError {
|
|
4016
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificateError;
|
|
4017
|
+
}
|
|
3701
4018
|
namespace SignupInternalServerError {
|
|
3702
4019
|
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SignupDomainError & {
|
|
3703
4020
|
name?: "InternalServerError";
|
|
@@ -3723,7 +4040,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3723
4040
|
}
|
|
3724
4041
|
namespace SignupSecondFactorRequiredError {
|
|
3725
4042
|
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SignupDomainError & {
|
|
3726
|
-
name
|
|
4043
|
+
name: "SecondFactorRequired";
|
|
3727
4044
|
};
|
|
3728
4045
|
}
|
|
3729
4046
|
namespace CommonsDefaultError {
|
|
@@ -4240,8 +4557,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4240
4557
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
4241
4558
|
type Query = {
|
|
4242
4559
|
limit?: number;
|
|
4243
|
-
page?: number;
|
|
4244
4560
|
skip?: number;
|
|
4561
|
+
page?: number;
|
|
4245
4562
|
};
|
|
4246
4563
|
}
|
|
4247
4564
|
namespace Responses {
|
|
@@ -4277,8 +4594,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4277
4594
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
4278
4595
|
type Query = {
|
|
4279
4596
|
limit?: number;
|
|
4280
|
-
page?: number;
|
|
4281
4597
|
skip?: number;
|
|
4598
|
+
page?: number;
|
|
4282
4599
|
};
|
|
4283
4600
|
}
|
|
4284
4601
|
namespace Responses {
|
|
@@ -4363,8 +4680,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4363
4680
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
4364
4681
|
type Query = {
|
|
4365
4682
|
limit?: number;
|
|
4366
|
-
page?: number;
|
|
4367
4683
|
skip?: number;
|
|
4684
|
+
page?: number;
|
|
4368
4685
|
};
|
|
4369
4686
|
}
|
|
4370
4687
|
namespace Responses {
|
|
@@ -4432,8 +4749,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4432
4749
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
4433
4750
|
type Query = {
|
|
4434
4751
|
limit?: number;
|
|
4435
|
-
page?: number;
|
|
4436
4752
|
skip?: number;
|
|
4753
|
+
page?: number;
|
|
4437
4754
|
};
|
|
4438
4755
|
}
|
|
4439
4756
|
namespace Responses {
|
|
@@ -4810,14 +5127,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4810
5127
|
type Header = {};
|
|
4811
5128
|
type Query = {
|
|
4812
5129
|
customerId?: string;
|
|
4813
|
-
limit?: number;
|
|
4814
|
-
skip?: number;
|
|
4815
|
-
page?: number;
|
|
4816
5130
|
tags?: string[];
|
|
4817
5131
|
templateNames?: string[];
|
|
4818
5132
|
articleIds?: string[];
|
|
4819
5133
|
orderable?: ("forbidden" | "internal" | "beta_testing" | "full" | "deprecated")[];
|
|
4820
5134
|
name?: string;
|
|
5135
|
+
limit?: number;
|
|
5136
|
+
skip?: number;
|
|
5137
|
+
page?: number;
|
|
4821
5138
|
};
|
|
4822
5139
|
}
|
|
4823
5140
|
namespace Responses {
|
|
@@ -5683,6 +6000,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5683
6000
|
}
|
|
5684
6001
|
}
|
|
5685
6002
|
}
|
|
6003
|
+
namespace $412 {
|
|
6004
|
+
namespace Content {
|
|
6005
|
+
interface ApplicationJson {
|
|
6006
|
+
[k: string]: unknown;
|
|
6007
|
+
}
|
|
6008
|
+
}
|
|
6009
|
+
}
|
|
5686
6010
|
namespace $429 {
|
|
5687
6011
|
namespace Content {
|
|
5688
6012
|
interface ApplicationJson {
|
|
@@ -5746,6 +6070,52 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5746
6070
|
}
|
|
5747
6071
|
}
|
|
5748
6072
|
}
|
|
6073
|
+
namespace V2CertificatesCertificateIdContract {
|
|
6074
|
+
namespace Get {
|
|
6075
|
+
namespace Parameters {
|
|
6076
|
+
type Path = {
|
|
6077
|
+
certificateId: string;
|
|
6078
|
+
};
|
|
6079
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
6080
|
+
type Query = {};
|
|
6081
|
+
}
|
|
6082
|
+
namespace Responses {
|
|
6083
|
+
namespace $200 {
|
|
6084
|
+
namespace Content {
|
|
6085
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
|
|
6086
|
+
}
|
|
6087
|
+
}
|
|
6088
|
+
namespace $400 {
|
|
6089
|
+
namespace Content {
|
|
6090
|
+
interface ApplicationJson {
|
|
6091
|
+
[k: string]: unknown;
|
|
6092
|
+
}
|
|
6093
|
+
}
|
|
6094
|
+
}
|
|
6095
|
+
namespace $404 {
|
|
6096
|
+
namespace Content {
|
|
6097
|
+
interface ApplicationJson {
|
|
6098
|
+
[k: string]: unknown;
|
|
6099
|
+
}
|
|
6100
|
+
}
|
|
6101
|
+
}
|
|
6102
|
+
namespace $429 {
|
|
6103
|
+
namespace Content {
|
|
6104
|
+
interface ApplicationJson {
|
|
6105
|
+
[k: string]: unknown;
|
|
6106
|
+
}
|
|
6107
|
+
}
|
|
6108
|
+
}
|
|
6109
|
+
namespace Default {
|
|
6110
|
+
namespace Content {
|
|
6111
|
+
interface ApplicationJson {
|
|
6112
|
+
[k: string]: unknown;
|
|
6113
|
+
}
|
|
6114
|
+
}
|
|
6115
|
+
}
|
|
6116
|
+
}
|
|
6117
|
+
}
|
|
6118
|
+
}
|
|
5749
6119
|
namespace V2DomainsDomainIdContract {
|
|
5750
6120
|
namespace Get {
|
|
5751
6121
|
namespace Parameters {
|
|
@@ -7497,57 +7867,48 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7497
7867
|
}
|
|
7498
7868
|
}
|
|
7499
7869
|
}
|
|
7500
|
-
namespace
|
|
7870
|
+
namespace V2CustomersCustomerIdRecommendationSuggestions {
|
|
7501
7871
|
namespace Post {
|
|
7502
7872
|
namespace Parameters {
|
|
7503
7873
|
type Path = {
|
|
7504
|
-
|
|
7874
|
+
customerId: string;
|
|
7505
7875
|
};
|
|
7506
7876
|
interface RequestBody {
|
|
7507
|
-
|
|
7877
|
+
suggestion: string;
|
|
7508
7878
|
}
|
|
7509
7879
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7510
7880
|
type Query = {};
|
|
7511
7881
|
}
|
|
7512
7882
|
namespace Responses {
|
|
7513
|
-
namespace $
|
|
7883
|
+
namespace $201 {
|
|
7514
7884
|
namespace Content {
|
|
7515
|
-
|
|
7885
|
+
interface ApplicationJson {
|
|
7886
|
+
customerId?: string;
|
|
7887
|
+
}
|
|
7516
7888
|
}
|
|
7517
7889
|
}
|
|
7518
|
-
namespace $
|
|
7890
|
+
namespace $400 {
|
|
7519
7891
|
namespace Content {
|
|
7520
7892
|
interface ApplicationJson {
|
|
7521
7893
|
[k: string]: unknown;
|
|
7522
7894
|
}
|
|
7523
7895
|
}
|
|
7524
7896
|
}
|
|
7525
|
-
namespace
|
|
7897
|
+
namespace $404 {
|
|
7526
7898
|
namespace Content {
|
|
7527
7899
|
interface ApplicationJson {
|
|
7528
7900
|
[k: string]: unknown;
|
|
7529
7901
|
}
|
|
7530
7902
|
}
|
|
7531
7903
|
}
|
|
7532
|
-
|
|
7533
|
-
}
|
|
7534
|
-
}
|
|
7535
|
-
namespace V2CustomerInvitesCustomerInviteId {
|
|
7536
|
-
namespace Get {
|
|
7537
|
-
namespace Parameters {
|
|
7538
|
-
type Path = {
|
|
7539
|
-
customerInviteId: string;
|
|
7540
|
-
};
|
|
7541
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7542
|
-
type Query = {};
|
|
7543
|
-
}
|
|
7544
|
-
namespace Responses {
|
|
7545
|
-
namespace $200 {
|
|
7904
|
+
namespace $409 {
|
|
7546
7905
|
namespace Content {
|
|
7547
|
-
|
|
7906
|
+
interface ApplicationJson {
|
|
7907
|
+
[k: string]: unknown;
|
|
7908
|
+
}
|
|
7548
7909
|
}
|
|
7549
7910
|
}
|
|
7550
|
-
namespace $
|
|
7911
|
+
namespace $412 {
|
|
7551
7912
|
namespace Content {
|
|
7552
7913
|
interface ApplicationJson {
|
|
7553
7914
|
[k: string]: unknown;
|
|
@@ -7570,53 +7931,49 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7570
7931
|
}
|
|
7571
7932
|
}
|
|
7572
7933
|
}
|
|
7573
|
-
|
|
7934
|
+
}
|
|
7935
|
+
namespace V2CustomersCustomerIdWallet {
|
|
7936
|
+
namespace Get {
|
|
7574
7937
|
namespace Parameters {
|
|
7575
7938
|
type Path = {
|
|
7576
|
-
|
|
7939
|
+
customerId: string;
|
|
7577
7940
|
};
|
|
7578
7941
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7579
7942
|
type Query = {};
|
|
7580
7943
|
}
|
|
7581
7944
|
namespace Responses {
|
|
7582
|
-
namespace $
|
|
7945
|
+
namespace $200 {
|
|
7583
7946
|
namespace Content {
|
|
7584
|
-
|
|
7947
|
+
interface ApplicationJson {
|
|
7948
|
+
customerId: string;
|
|
7949
|
+
points: number;
|
|
7950
|
+
recommendationCode?: string;
|
|
7951
|
+
walletId: string;
|
|
7952
|
+
}
|
|
7585
7953
|
}
|
|
7586
7954
|
}
|
|
7587
|
-
namespace $
|
|
7955
|
+
namespace $400 {
|
|
7588
7956
|
namespace Content {
|
|
7589
7957
|
interface ApplicationJson {
|
|
7590
7958
|
[k: string]: unknown;
|
|
7591
7959
|
}
|
|
7592
7960
|
}
|
|
7593
7961
|
}
|
|
7594
|
-
namespace
|
|
7962
|
+
namespace $404 {
|
|
7595
7963
|
namespace Content {
|
|
7596
7964
|
interface ApplicationJson {
|
|
7597
7965
|
[k: string]: unknown;
|
|
7598
7966
|
}
|
|
7599
7967
|
}
|
|
7600
7968
|
}
|
|
7601
|
-
|
|
7602
|
-
}
|
|
7603
|
-
}
|
|
7604
|
-
namespace V2CustomerMembershipsCustomerMembershipId {
|
|
7605
|
-
namespace Get {
|
|
7606
|
-
namespace Parameters {
|
|
7607
|
-
type Path = {
|
|
7608
|
-
customerMembershipId: string;
|
|
7609
|
-
};
|
|
7610
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7611
|
-
type Query = {};
|
|
7612
|
-
}
|
|
7613
|
-
namespace Responses {
|
|
7614
|
-
namespace $200 {
|
|
7969
|
+
namespace $409 {
|
|
7615
7970
|
namespace Content {
|
|
7616
|
-
|
|
7971
|
+
interface ApplicationJson {
|
|
7972
|
+
[k: string]: unknown;
|
|
7973
|
+
}
|
|
7617
7974
|
}
|
|
7618
7975
|
}
|
|
7619
|
-
namespace $
|
|
7976
|
+
namespace $412 {
|
|
7620
7977
|
namespace Content {
|
|
7621
7978
|
interface ApplicationJson {
|
|
7622
7979
|
[k: string]: unknown;
|
|
@@ -7639,16 +7996,221 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7639
7996
|
}
|
|
7640
7997
|
}
|
|
7641
7998
|
}
|
|
7642
|
-
namespace
|
|
7999
|
+
namespace Post {
|
|
7643
8000
|
namespace Parameters {
|
|
7644
8001
|
type Path = {
|
|
7645
|
-
|
|
8002
|
+
customerId: string;
|
|
7646
8003
|
};
|
|
8004
|
+
interface RequestBody {
|
|
8005
|
+
}
|
|
7647
8006
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7648
8007
|
type Query = {};
|
|
7649
8008
|
}
|
|
7650
8009
|
namespace Responses {
|
|
7651
|
-
namespace $
|
|
8010
|
+
namespace $200 {
|
|
8011
|
+
namespace Content {
|
|
8012
|
+
interface ApplicationJson {
|
|
8013
|
+
customerId?: string;
|
|
8014
|
+
}
|
|
8015
|
+
}
|
|
8016
|
+
}
|
|
8017
|
+
namespace $400 {
|
|
8018
|
+
namespace Content {
|
|
8019
|
+
interface ApplicationJson {
|
|
8020
|
+
[k: string]: unknown;
|
|
8021
|
+
}
|
|
8022
|
+
}
|
|
8023
|
+
}
|
|
8024
|
+
namespace $404 {
|
|
8025
|
+
namespace Content {
|
|
8026
|
+
interface ApplicationJson {
|
|
8027
|
+
[k: string]: unknown;
|
|
8028
|
+
}
|
|
8029
|
+
}
|
|
8030
|
+
}
|
|
8031
|
+
namespace $409 {
|
|
8032
|
+
namespace Content {
|
|
8033
|
+
interface ApplicationJson {
|
|
8034
|
+
[k: string]: unknown;
|
|
8035
|
+
}
|
|
8036
|
+
}
|
|
8037
|
+
}
|
|
8038
|
+
namespace $412 {
|
|
8039
|
+
namespace Content {
|
|
8040
|
+
interface ApplicationJson {
|
|
8041
|
+
[k: string]: unknown;
|
|
8042
|
+
}
|
|
8043
|
+
}
|
|
8044
|
+
}
|
|
8045
|
+
namespace $429 {
|
|
8046
|
+
namespace Content {
|
|
8047
|
+
interface ApplicationJson {
|
|
8048
|
+
[k: string]: unknown;
|
|
8049
|
+
}
|
|
8050
|
+
}
|
|
8051
|
+
}
|
|
8052
|
+
namespace Default {
|
|
8053
|
+
namespace Content {
|
|
8054
|
+
interface ApplicationJson {
|
|
8055
|
+
[k: string]: unknown;
|
|
8056
|
+
}
|
|
8057
|
+
}
|
|
8058
|
+
}
|
|
8059
|
+
}
|
|
8060
|
+
}
|
|
8061
|
+
}
|
|
8062
|
+
namespace V2CustomerInvitesCustomerInviteIdActionsDecline {
|
|
8063
|
+
namespace Post {
|
|
8064
|
+
namespace Parameters {
|
|
8065
|
+
type Path = {
|
|
8066
|
+
customerInviteId: string;
|
|
8067
|
+
};
|
|
8068
|
+
interface RequestBody {
|
|
8069
|
+
[k: string]: unknown;
|
|
8070
|
+
}
|
|
8071
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8072
|
+
type Query = {};
|
|
8073
|
+
}
|
|
8074
|
+
namespace Responses {
|
|
8075
|
+
namespace $204 {
|
|
8076
|
+
namespace Content {
|
|
8077
|
+
type Empty = unknown;
|
|
8078
|
+
}
|
|
8079
|
+
}
|
|
8080
|
+
namespace $429 {
|
|
8081
|
+
namespace Content {
|
|
8082
|
+
interface ApplicationJson {
|
|
8083
|
+
[k: string]: unknown;
|
|
8084
|
+
}
|
|
8085
|
+
}
|
|
8086
|
+
}
|
|
8087
|
+
namespace Default {
|
|
8088
|
+
namespace Content {
|
|
8089
|
+
interface ApplicationJson {
|
|
8090
|
+
[k: string]: unknown;
|
|
8091
|
+
}
|
|
8092
|
+
}
|
|
8093
|
+
}
|
|
8094
|
+
}
|
|
8095
|
+
}
|
|
8096
|
+
}
|
|
8097
|
+
namespace V2CustomerInvitesCustomerInviteId {
|
|
8098
|
+
namespace Get {
|
|
8099
|
+
namespace Parameters {
|
|
8100
|
+
type Path = {
|
|
8101
|
+
customerInviteId: string;
|
|
8102
|
+
};
|
|
8103
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8104
|
+
type Query = {};
|
|
8105
|
+
}
|
|
8106
|
+
namespace Responses {
|
|
8107
|
+
namespace $200 {
|
|
8108
|
+
namespace Content {
|
|
8109
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite;
|
|
8110
|
+
}
|
|
8111
|
+
}
|
|
8112
|
+
namespace $404 {
|
|
8113
|
+
namespace Content {
|
|
8114
|
+
interface ApplicationJson {
|
|
8115
|
+
[k: string]: unknown;
|
|
8116
|
+
}
|
|
8117
|
+
}
|
|
8118
|
+
}
|
|
8119
|
+
namespace $429 {
|
|
8120
|
+
namespace Content {
|
|
8121
|
+
interface ApplicationJson {
|
|
8122
|
+
[k: string]: unknown;
|
|
8123
|
+
}
|
|
8124
|
+
}
|
|
8125
|
+
}
|
|
8126
|
+
namespace Default {
|
|
8127
|
+
namespace Content {
|
|
8128
|
+
interface ApplicationJson {
|
|
8129
|
+
[k: string]: unknown;
|
|
8130
|
+
}
|
|
8131
|
+
}
|
|
8132
|
+
}
|
|
8133
|
+
}
|
|
8134
|
+
}
|
|
8135
|
+
namespace Delete {
|
|
8136
|
+
namespace Parameters {
|
|
8137
|
+
type Path = {
|
|
8138
|
+
customerInviteId: string;
|
|
8139
|
+
};
|
|
8140
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8141
|
+
type Query = {};
|
|
8142
|
+
}
|
|
8143
|
+
namespace Responses {
|
|
8144
|
+
namespace $204 {
|
|
8145
|
+
namespace Content {
|
|
8146
|
+
type Empty = unknown;
|
|
8147
|
+
}
|
|
8148
|
+
}
|
|
8149
|
+
namespace $429 {
|
|
8150
|
+
namespace Content {
|
|
8151
|
+
interface ApplicationJson {
|
|
8152
|
+
[k: string]: unknown;
|
|
8153
|
+
}
|
|
8154
|
+
}
|
|
8155
|
+
}
|
|
8156
|
+
namespace Default {
|
|
8157
|
+
namespace Content {
|
|
8158
|
+
interface ApplicationJson {
|
|
8159
|
+
[k: string]: unknown;
|
|
8160
|
+
}
|
|
8161
|
+
}
|
|
8162
|
+
}
|
|
8163
|
+
}
|
|
8164
|
+
}
|
|
8165
|
+
}
|
|
8166
|
+
namespace V2CustomerMembershipsCustomerMembershipId {
|
|
8167
|
+
namespace Get {
|
|
8168
|
+
namespace Parameters {
|
|
8169
|
+
type Path = {
|
|
8170
|
+
customerMembershipId: string;
|
|
8171
|
+
};
|
|
8172
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8173
|
+
type Query = {};
|
|
8174
|
+
}
|
|
8175
|
+
namespace Responses {
|
|
8176
|
+
namespace $200 {
|
|
8177
|
+
namespace Content {
|
|
8178
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership;
|
|
8179
|
+
}
|
|
8180
|
+
}
|
|
8181
|
+
namespace $404 {
|
|
8182
|
+
namespace Content {
|
|
8183
|
+
interface ApplicationJson {
|
|
8184
|
+
[k: string]: unknown;
|
|
8185
|
+
}
|
|
8186
|
+
}
|
|
8187
|
+
}
|
|
8188
|
+
namespace $429 {
|
|
8189
|
+
namespace Content {
|
|
8190
|
+
interface ApplicationJson {
|
|
8191
|
+
[k: string]: unknown;
|
|
8192
|
+
}
|
|
8193
|
+
}
|
|
8194
|
+
}
|
|
8195
|
+
namespace Default {
|
|
8196
|
+
namespace Content {
|
|
8197
|
+
interface ApplicationJson {
|
|
8198
|
+
[k: string]: unknown;
|
|
8199
|
+
}
|
|
8200
|
+
}
|
|
8201
|
+
}
|
|
8202
|
+
}
|
|
8203
|
+
}
|
|
8204
|
+
namespace Delete {
|
|
8205
|
+
namespace Parameters {
|
|
8206
|
+
type Path = {
|
|
8207
|
+
customerMembershipId: string;
|
|
8208
|
+
};
|
|
8209
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8210
|
+
type Query = {};
|
|
8211
|
+
}
|
|
8212
|
+
namespace Responses {
|
|
8213
|
+
namespace $204 {
|
|
7652
8214
|
namespace Content {
|
|
7653
8215
|
type Empty = unknown;
|
|
7654
8216
|
}
|
|
@@ -9917,6 +10479,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
9917
10479
|
page?: number;
|
|
9918
10480
|
limit?: number;
|
|
9919
10481
|
domainSearchName?: string;
|
|
10482
|
+
contactHash?: string;
|
|
9920
10483
|
};
|
|
9921
10484
|
}
|
|
9922
10485
|
namespace Responses {
|
|
@@ -11006,7 +11569,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11006
11569
|
type Path = {
|
|
11007
11570
|
contributorId: string;
|
|
11008
11571
|
};
|
|
11009
|
-
type Header = {}
|
|
11572
|
+
type Header = {};
|
|
11010
11573
|
type Query = {};
|
|
11011
11574
|
}
|
|
11012
11575
|
namespace Responses {
|
|
@@ -11045,7 +11608,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11045
11608
|
type Path = {
|
|
11046
11609
|
extensionId: string;
|
|
11047
11610
|
};
|
|
11048
|
-
type Header = {}
|
|
11611
|
+
type Header = {};
|
|
11049
11612
|
type Query = {};
|
|
11050
11613
|
}
|
|
11051
11614
|
namespace Responses {
|
|
@@ -11054,6 +11617,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11054
11617
|
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtension;
|
|
11055
11618
|
}
|
|
11056
11619
|
}
|
|
11620
|
+
namespace $404 {
|
|
11621
|
+
namespace Content {
|
|
11622
|
+
interface ApplicationJson {
|
|
11623
|
+
[k: string]: unknown;
|
|
11624
|
+
}
|
|
11625
|
+
}
|
|
11626
|
+
}
|
|
11057
11627
|
namespace $429 {
|
|
11058
11628
|
namespace Content {
|
|
11059
11629
|
interface ApplicationJson {
|
|
@@ -11077,7 +11647,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11077
11647
|
type Path = {
|
|
11078
11648
|
serial: string;
|
|
11079
11649
|
};
|
|
11080
|
-
type Header = {}
|
|
11650
|
+
type Header = {};
|
|
11081
11651
|
type Query = {};
|
|
11082
11652
|
}
|
|
11083
11653
|
namespace Responses {
|
|
@@ -11114,7 +11684,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11114
11684
|
namespace Get {
|
|
11115
11685
|
namespace Parameters {
|
|
11116
11686
|
type Path = {};
|
|
11117
|
-
type Header = {}
|
|
11687
|
+
type Header = {};
|
|
11118
11688
|
type Query = {
|
|
11119
11689
|
limit?: number;
|
|
11120
11690
|
skip?: number;
|
|
@@ -11148,7 +11718,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11148
11718
|
namespace Get {
|
|
11149
11719
|
namespace Parameters {
|
|
11150
11720
|
type Path = {};
|
|
11151
|
-
type Header = {}
|
|
11721
|
+
type Header = {};
|
|
11152
11722
|
type Query = {
|
|
11153
11723
|
context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
11154
11724
|
limit?: number;
|
|
@@ -11255,8 +11825,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11255
11825
|
type Path = {
|
|
11256
11826
|
fileId: string;
|
|
11257
11827
|
};
|
|
11258
|
-
type Header = {
|
|
11259
|
-
|
|
11828
|
+
type Header = {
|
|
11829
|
+
Token?: string;
|
|
11830
|
+
};
|
|
11831
|
+
type Query = {
|
|
11832
|
+
token?: string;
|
|
11833
|
+
};
|
|
11260
11834
|
}
|
|
11261
11835
|
namespace Responses {
|
|
11262
11836
|
namespace $200 {
|
|
@@ -11433,7 +12007,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11433
12007
|
"Content-Disposition"?: "inline" | "attachment";
|
|
11434
12008
|
Token?: string;
|
|
11435
12009
|
};
|
|
11436
|
-
type Query = {
|
|
12010
|
+
type Query = {
|
|
12011
|
+
token?: string;
|
|
12012
|
+
};
|
|
11437
12013
|
}
|
|
11438
12014
|
namespace Responses {
|
|
11439
12015
|
namespace $200 {
|
|
@@ -11513,7 +12089,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11513
12089
|
"Content-Disposition"?: "inline" | "attachment";
|
|
11514
12090
|
Token?: string;
|
|
11515
12091
|
};
|
|
11516
|
-
type Query = {
|
|
12092
|
+
type Query = {
|
|
12093
|
+
token?: string;
|
|
12094
|
+
};
|
|
11517
12095
|
}
|
|
11518
12096
|
namespace Responses {
|
|
11519
12097
|
namespace $200 {
|
|
@@ -11588,6 +12166,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11588
12166
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
11589
12167
|
type Query = {
|
|
11590
12168
|
projectId?: string;
|
|
12169
|
+
certificateId?: string;
|
|
12170
|
+
limit?: number;
|
|
12171
|
+
skip?: number;
|
|
12172
|
+
page?: number;
|
|
11591
12173
|
};
|
|
11592
12174
|
}
|
|
11593
12175
|
namespace Responses {
|
|
@@ -11796,14 +12378,69 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11796
12378
|
}
|
|
11797
12379
|
}
|
|
11798
12380
|
}
|
|
11799
|
-
namespace
|
|
11800
|
-
|
|
11801
|
-
namespace Patch {
|
|
12381
|
+
namespace V2ActionsListIngressesCompatibleWithCertificate {
|
|
12382
|
+
namespace Post {
|
|
11802
12383
|
namespace Parameters {
|
|
11803
|
-
type Path = {
|
|
11804
|
-
|
|
11805
|
-
|
|
11806
|
-
|
|
12384
|
+
type Path = {};
|
|
12385
|
+
interface RequestBody {
|
|
12386
|
+
/**
|
|
12387
|
+
* PEM-encoded certificate. Linebreaks have to be escaped with
|
|
12388
|
+
* .
|
|
12389
|
+
*/
|
|
12390
|
+
certificate: string;
|
|
12391
|
+
/**
|
|
12392
|
+
* The projects UUID.
|
|
12393
|
+
*/
|
|
12394
|
+
projectId: string;
|
|
12395
|
+
}
|
|
12396
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12397
|
+
type Query = {};
|
|
12398
|
+
}
|
|
12399
|
+
namespace Responses {
|
|
12400
|
+
namespace $200 {
|
|
12401
|
+
namespace Content {
|
|
12402
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.IngressIngress[];
|
|
12403
|
+
}
|
|
12404
|
+
}
|
|
12405
|
+
namespace $400 {
|
|
12406
|
+
namespace Content {
|
|
12407
|
+
interface ApplicationJson {
|
|
12408
|
+
[k: string]: unknown;
|
|
12409
|
+
}
|
|
12410
|
+
}
|
|
12411
|
+
}
|
|
12412
|
+
namespace $404 {
|
|
12413
|
+
namespace Content {
|
|
12414
|
+
interface ApplicationJson {
|
|
12415
|
+
[k: string]: unknown;
|
|
12416
|
+
}
|
|
12417
|
+
}
|
|
12418
|
+
}
|
|
12419
|
+
namespace $429 {
|
|
12420
|
+
namespace Content {
|
|
12421
|
+
interface ApplicationJson {
|
|
12422
|
+
[k: string]: unknown;
|
|
12423
|
+
}
|
|
12424
|
+
}
|
|
12425
|
+
}
|
|
12426
|
+
namespace Default {
|
|
12427
|
+
namespace Content {
|
|
12428
|
+
interface ApplicationJson {
|
|
12429
|
+
[k: string]: unknown;
|
|
12430
|
+
}
|
|
12431
|
+
}
|
|
12432
|
+
}
|
|
12433
|
+
}
|
|
12434
|
+
}
|
|
12435
|
+
}
|
|
12436
|
+
namespace V2ProjectsProjectIdIngresses { }
|
|
12437
|
+
namespace V2IngressesIngressIdPaths {
|
|
12438
|
+
namespace Patch {
|
|
12439
|
+
namespace Parameters {
|
|
12440
|
+
type Path = {
|
|
12441
|
+
ingressId: string;
|
|
12442
|
+
};
|
|
12443
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.IngressPath[];
|
|
11807
12444
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
11808
12445
|
type Query = {};
|
|
11809
12446
|
}
|
|
@@ -11890,9 +12527,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11890
12527
|
ingressId: string;
|
|
11891
12528
|
};
|
|
11892
12529
|
type RequestBody = {
|
|
11893
|
-
/**
|
|
11894
|
-
* Has to be `true`, as ssl cannot be deactivated.
|
|
11895
|
-
*/
|
|
11896
12530
|
acme: boolean;
|
|
11897
12531
|
/**
|
|
11898
12532
|
* @deprecated
|
|
@@ -11917,6 +12551,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11917
12551
|
}
|
|
11918
12552
|
}
|
|
11919
12553
|
}
|
|
12554
|
+
namespace $403 {
|
|
12555
|
+
namespace Content {
|
|
12556
|
+
interface ApplicationJson {
|
|
12557
|
+
[k: string]: unknown;
|
|
12558
|
+
}
|
|
12559
|
+
}
|
|
12560
|
+
}
|
|
11920
12561
|
namespace $404 {
|
|
11921
12562
|
namespace Content {
|
|
11922
12563
|
interface ApplicationJson {
|
|
@@ -11924,6 +12565,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11924
12565
|
}
|
|
11925
12566
|
}
|
|
11926
12567
|
}
|
|
12568
|
+
namespace $412 {
|
|
12569
|
+
namespace Content {
|
|
12570
|
+
interface ApplicationJson {
|
|
12571
|
+
[k: string]: unknown;
|
|
12572
|
+
}
|
|
12573
|
+
}
|
|
12574
|
+
}
|
|
11927
12575
|
namespace $429 {
|
|
11928
12576
|
namespace Content {
|
|
11929
12577
|
interface ApplicationJson {
|
|
@@ -12195,7 +12843,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12195
12843
|
projectId: string;
|
|
12196
12844
|
};
|
|
12197
12845
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12198
|
-
type Query = {
|
|
12846
|
+
type Query = {
|
|
12847
|
+
search?: string;
|
|
12848
|
+
limit?: number;
|
|
12849
|
+
skip?: number;
|
|
12850
|
+
page?: number;
|
|
12851
|
+
};
|
|
12199
12852
|
}
|
|
12200
12853
|
namespace Responses {
|
|
12201
12854
|
namespace $200 {
|
|
@@ -12334,7 +12987,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12334
12987
|
projectId: string;
|
|
12335
12988
|
};
|
|
12336
12989
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12337
|
-
type Query = {
|
|
12990
|
+
type Query = {
|
|
12991
|
+
search?: string;
|
|
12992
|
+
limit?: number;
|
|
12993
|
+
skip?: number;
|
|
12994
|
+
page?: number;
|
|
12995
|
+
};
|
|
12338
12996
|
}
|
|
12339
12997
|
namespace Responses {
|
|
12340
12998
|
namespace $200 {
|
|
@@ -13671,13 +14329,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13671
14329
|
interface RequestBody {
|
|
13672
14330
|
}
|
|
13673
14331
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13674
|
-
type Query = {
|
|
14332
|
+
type Query = {
|
|
14333
|
+
severities?: ("success" | "info" | "warning" | "error")[];
|
|
14334
|
+
referenceId?: string;
|
|
14335
|
+
referenceAggregate?: string;
|
|
14336
|
+
referenceDomain?: string;
|
|
14337
|
+
};
|
|
13675
14338
|
}
|
|
13676
14339
|
namespace Responses {
|
|
13677
14340
|
namespace $200 {
|
|
13678
14341
|
namespace Content {
|
|
13679
14342
|
interface ApplicationJson {
|
|
13680
14343
|
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
14344
|
+
/**
|
|
14345
|
+
* The number of notifications that have been updated.
|
|
14346
|
+
*/
|
|
14347
|
+
updatedCount: number;
|
|
13681
14348
|
}
|
|
13682
14349
|
}
|
|
13683
14350
|
}
|
|
@@ -15931,6 +16598,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15931
16598
|
namespace Parameters {
|
|
15932
16599
|
type Path = {};
|
|
15933
16600
|
interface RequestBody {
|
|
16601
|
+
additionalServices: {
|
|
16602
|
+
dataCompare: "default" | "additionalCompare";
|
|
16603
|
+
};
|
|
15934
16604
|
/**
|
|
15935
16605
|
* Should all project releated domains should be transferred to mittwald?
|
|
15936
16606
|
*/
|
|
@@ -15939,6 +16609,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15939
16609
|
* Has to be true. Do you accept that our mittwald team can change and get password from your current provider?
|
|
15940
16610
|
*/
|
|
15941
16611
|
allowPasswordChange: boolean;
|
|
16612
|
+
/**
|
|
16613
|
+
* Type of the article you want to relocate.
|
|
16614
|
+
*/
|
|
16615
|
+
articleType: "cms-hosting" | "cms-hosting-express" | "onlineshop" | "onlineshop-express";
|
|
15942
16616
|
contact: {
|
|
15943
16617
|
email: string;
|
|
15944
16618
|
firstName: string;
|
|
@@ -15953,6 +16627,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15953
16627
|
* Anything our customer service needs to know for the relocation process.
|
|
15954
16628
|
*/
|
|
15955
16629
|
notes?: string;
|
|
16630
|
+
prices: {
|
|
16631
|
+
positions: {
|
|
16632
|
+
name: string;
|
|
16633
|
+
price: number;
|
|
16634
|
+
}[];
|
|
16635
|
+
total: number;
|
|
16636
|
+
};
|
|
15956
16637
|
provider: {
|
|
15957
16638
|
/**
|
|
15958
16639
|
* Url to the control panel of the provider
|
|
@@ -16547,6 +17228,376 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16547
17228
|
}
|
|
16548
17229
|
}
|
|
16549
17230
|
namespace V2SshusersSshUserId { }
|
|
17231
|
+
namespace V2CertificatesCertificateIdActionsCheckReplaceCertificate {
|
|
17232
|
+
namespace Post {
|
|
17233
|
+
namespace Parameters {
|
|
17234
|
+
type Path = {
|
|
17235
|
+
certificateId: string;
|
|
17236
|
+
};
|
|
17237
|
+
interface RequestBody {
|
|
17238
|
+
certificate: string;
|
|
17239
|
+
privateKey?: string;
|
|
17240
|
+
}
|
|
17241
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17242
|
+
type Query = {};
|
|
17243
|
+
}
|
|
17244
|
+
namespace Responses {
|
|
17245
|
+
namespace $200 {
|
|
17246
|
+
namespace Content {
|
|
17247
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCheckReplaceCertificateResponse;
|
|
17248
|
+
}
|
|
17249
|
+
}
|
|
17250
|
+
namespace $404 {
|
|
17251
|
+
namespace Content {
|
|
17252
|
+
interface ApplicationJson {
|
|
17253
|
+
[k: string]: unknown;
|
|
17254
|
+
}
|
|
17255
|
+
}
|
|
17256
|
+
}
|
|
17257
|
+
namespace $429 {
|
|
17258
|
+
namespace Content {
|
|
17259
|
+
interface ApplicationJson {
|
|
17260
|
+
[k: string]: unknown;
|
|
17261
|
+
}
|
|
17262
|
+
}
|
|
17263
|
+
}
|
|
17264
|
+
namespace Default {
|
|
17265
|
+
namespace Content {
|
|
17266
|
+
interface ApplicationJson {
|
|
17267
|
+
[k: string]: unknown;
|
|
17268
|
+
}
|
|
17269
|
+
}
|
|
17270
|
+
}
|
|
17271
|
+
}
|
|
17272
|
+
}
|
|
17273
|
+
}
|
|
17274
|
+
namespace V2CertificateRequests {
|
|
17275
|
+
namespace Get {
|
|
17276
|
+
namespace Parameters {
|
|
17277
|
+
type Path = {};
|
|
17278
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17279
|
+
type Query = {
|
|
17280
|
+
projectId?: string;
|
|
17281
|
+
ingressId?: string;
|
|
17282
|
+
};
|
|
17283
|
+
}
|
|
17284
|
+
namespace Responses {
|
|
17285
|
+
namespace $200 {
|
|
17286
|
+
namespace Content {
|
|
17287
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificateRequest[];
|
|
17288
|
+
}
|
|
17289
|
+
}
|
|
17290
|
+
namespace $404 {
|
|
17291
|
+
namespace Content {
|
|
17292
|
+
interface ApplicationJson {
|
|
17293
|
+
[k: string]: unknown;
|
|
17294
|
+
}
|
|
17295
|
+
}
|
|
17296
|
+
}
|
|
17297
|
+
namespace $429 {
|
|
17298
|
+
namespace Content {
|
|
17299
|
+
interface ApplicationJson {
|
|
17300
|
+
[k: string]: unknown;
|
|
17301
|
+
}
|
|
17302
|
+
}
|
|
17303
|
+
}
|
|
17304
|
+
namespace Default {
|
|
17305
|
+
namespace Content {
|
|
17306
|
+
interface ApplicationJson {
|
|
17307
|
+
[k: string]: unknown;
|
|
17308
|
+
}
|
|
17309
|
+
}
|
|
17310
|
+
}
|
|
17311
|
+
}
|
|
17312
|
+
}
|
|
17313
|
+
namespace Post {
|
|
17314
|
+
namespace Parameters {
|
|
17315
|
+
type Path = {};
|
|
17316
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateRequest | MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateWithCSRRequest;
|
|
17317
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17318
|
+
type Query = {};
|
|
17319
|
+
}
|
|
17320
|
+
namespace Responses {
|
|
17321
|
+
namespace $201 {
|
|
17322
|
+
namespace Content {
|
|
17323
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateResponse;
|
|
17324
|
+
}
|
|
17325
|
+
}
|
|
17326
|
+
namespace $400 {
|
|
17327
|
+
namespace Content {
|
|
17328
|
+
interface ApplicationJson {
|
|
17329
|
+
[k: string]: unknown;
|
|
17330
|
+
}
|
|
17331
|
+
}
|
|
17332
|
+
}
|
|
17333
|
+
namespace $404 {
|
|
17334
|
+
namespace Content {
|
|
17335
|
+
interface ApplicationJson {
|
|
17336
|
+
[k: string]: unknown;
|
|
17337
|
+
}
|
|
17338
|
+
}
|
|
17339
|
+
}
|
|
17340
|
+
namespace $429 {
|
|
17341
|
+
namespace Content {
|
|
17342
|
+
interface ApplicationJson {
|
|
17343
|
+
[k: string]: unknown;
|
|
17344
|
+
}
|
|
17345
|
+
}
|
|
17346
|
+
}
|
|
17347
|
+
namespace Default {
|
|
17348
|
+
namespace Content {
|
|
17349
|
+
interface ApplicationJson {
|
|
17350
|
+
[k: string]: unknown;
|
|
17351
|
+
}
|
|
17352
|
+
}
|
|
17353
|
+
}
|
|
17354
|
+
}
|
|
17355
|
+
}
|
|
17356
|
+
}
|
|
17357
|
+
namespace V2CertificateRequestCertificateRequestId {
|
|
17358
|
+
namespace Delete {
|
|
17359
|
+
namespace Parameters {
|
|
17360
|
+
type Path = {
|
|
17361
|
+
certificateRequestId: string;
|
|
17362
|
+
};
|
|
17363
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17364
|
+
type Query = {};
|
|
17365
|
+
}
|
|
17366
|
+
namespace Responses {
|
|
17367
|
+
namespace $204 {
|
|
17368
|
+
namespace Content {
|
|
17369
|
+
type Empty = unknown;
|
|
17370
|
+
}
|
|
17371
|
+
}
|
|
17372
|
+
namespace $404 {
|
|
17373
|
+
namespace Content {
|
|
17374
|
+
interface ApplicationJson {
|
|
17375
|
+
[k: string]: unknown;
|
|
17376
|
+
}
|
|
17377
|
+
}
|
|
17378
|
+
}
|
|
17379
|
+
namespace $429 {
|
|
17380
|
+
namespace Content {
|
|
17381
|
+
interface ApplicationJson {
|
|
17382
|
+
[k: string]: unknown;
|
|
17383
|
+
}
|
|
17384
|
+
}
|
|
17385
|
+
}
|
|
17386
|
+
namespace Default {
|
|
17387
|
+
namespace Content {
|
|
17388
|
+
interface ApplicationJson {
|
|
17389
|
+
[k: string]: unknown;
|
|
17390
|
+
}
|
|
17391
|
+
}
|
|
17392
|
+
}
|
|
17393
|
+
}
|
|
17394
|
+
}
|
|
17395
|
+
}
|
|
17396
|
+
namespace V2CertificateCertificateId {
|
|
17397
|
+
namespace Delete {
|
|
17398
|
+
namespace Parameters {
|
|
17399
|
+
type Path = {
|
|
17400
|
+
certificateId: string;
|
|
17401
|
+
};
|
|
17402
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17403
|
+
type Query = {};
|
|
17404
|
+
}
|
|
17405
|
+
namespace Responses {
|
|
17406
|
+
namespace $204 {
|
|
17407
|
+
namespace Content {
|
|
17408
|
+
type Empty = unknown;
|
|
17409
|
+
}
|
|
17410
|
+
}
|
|
17411
|
+
namespace $404 {
|
|
17412
|
+
namespace Content {
|
|
17413
|
+
interface ApplicationJson {
|
|
17414
|
+
[k: string]: unknown;
|
|
17415
|
+
}
|
|
17416
|
+
}
|
|
17417
|
+
}
|
|
17418
|
+
namespace $429 {
|
|
17419
|
+
namespace Content {
|
|
17420
|
+
interface ApplicationJson {
|
|
17421
|
+
[k: string]: unknown;
|
|
17422
|
+
}
|
|
17423
|
+
}
|
|
17424
|
+
}
|
|
17425
|
+
namespace Default {
|
|
17426
|
+
namespace Content {
|
|
17427
|
+
interface ApplicationJson {
|
|
17428
|
+
[k: string]: unknown;
|
|
17429
|
+
}
|
|
17430
|
+
}
|
|
17431
|
+
}
|
|
17432
|
+
}
|
|
17433
|
+
}
|
|
17434
|
+
}
|
|
17435
|
+
namespace V2CertificateRequestsCertificateRequestId {
|
|
17436
|
+
namespace Get {
|
|
17437
|
+
namespace Parameters {
|
|
17438
|
+
type Path = {
|
|
17439
|
+
certificateRequestId: string;
|
|
17440
|
+
};
|
|
17441
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17442
|
+
type Query = {};
|
|
17443
|
+
}
|
|
17444
|
+
namespace Responses {
|
|
17445
|
+
namespace $200 {
|
|
17446
|
+
namespace Content {
|
|
17447
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificateRequest;
|
|
17448
|
+
}
|
|
17449
|
+
}
|
|
17450
|
+
namespace $404 {
|
|
17451
|
+
namespace Content {
|
|
17452
|
+
interface ApplicationJson {
|
|
17453
|
+
[k: string]: unknown;
|
|
17454
|
+
}
|
|
17455
|
+
}
|
|
17456
|
+
}
|
|
17457
|
+
namespace $429 {
|
|
17458
|
+
namespace Content {
|
|
17459
|
+
interface ApplicationJson {
|
|
17460
|
+
[k: string]: unknown;
|
|
17461
|
+
}
|
|
17462
|
+
}
|
|
17463
|
+
}
|
|
17464
|
+
namespace Default {
|
|
17465
|
+
namespace Content {
|
|
17466
|
+
interface ApplicationJson {
|
|
17467
|
+
[k: string]: unknown;
|
|
17468
|
+
}
|
|
17469
|
+
}
|
|
17470
|
+
}
|
|
17471
|
+
}
|
|
17472
|
+
}
|
|
17473
|
+
}
|
|
17474
|
+
namespace V2CertificatesCertificateId {
|
|
17475
|
+
namespace Get {
|
|
17476
|
+
namespace Parameters {
|
|
17477
|
+
type Path = {
|
|
17478
|
+
certificateId: string;
|
|
17479
|
+
};
|
|
17480
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17481
|
+
type Query = {};
|
|
17482
|
+
}
|
|
17483
|
+
namespace Responses {
|
|
17484
|
+
namespace $200 {
|
|
17485
|
+
namespace Content {
|
|
17486
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificate;
|
|
17487
|
+
}
|
|
17488
|
+
}
|
|
17489
|
+
namespace $404 {
|
|
17490
|
+
namespace Content {
|
|
17491
|
+
interface ApplicationJson {
|
|
17492
|
+
[k: string]: unknown;
|
|
17493
|
+
}
|
|
17494
|
+
}
|
|
17495
|
+
}
|
|
17496
|
+
namespace $429 {
|
|
17497
|
+
namespace Content {
|
|
17498
|
+
interface ApplicationJson {
|
|
17499
|
+
[k: string]: unknown;
|
|
17500
|
+
}
|
|
17501
|
+
}
|
|
17502
|
+
}
|
|
17503
|
+
namespace Default {
|
|
17504
|
+
namespace Content {
|
|
17505
|
+
interface ApplicationJson {
|
|
17506
|
+
[k: string]: unknown;
|
|
17507
|
+
}
|
|
17508
|
+
}
|
|
17509
|
+
}
|
|
17510
|
+
}
|
|
17511
|
+
}
|
|
17512
|
+
namespace Put {
|
|
17513
|
+
namespace Parameters {
|
|
17514
|
+
type Path = {
|
|
17515
|
+
certificateId: string;
|
|
17516
|
+
};
|
|
17517
|
+
interface RequestBody {
|
|
17518
|
+
certificate: string;
|
|
17519
|
+
privateKey?: string;
|
|
17520
|
+
}
|
|
17521
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17522
|
+
type Query = {};
|
|
17523
|
+
}
|
|
17524
|
+
namespace Responses {
|
|
17525
|
+
namespace $204 {
|
|
17526
|
+
namespace Content {
|
|
17527
|
+
type Empty = unknown;
|
|
17528
|
+
}
|
|
17529
|
+
}
|
|
17530
|
+
namespace $400 {
|
|
17531
|
+
namespace Content {
|
|
17532
|
+
interface ApplicationJson {
|
|
17533
|
+
[k: string]: unknown;
|
|
17534
|
+
}
|
|
17535
|
+
}
|
|
17536
|
+
}
|
|
17537
|
+
namespace $404 {
|
|
17538
|
+
namespace Content {
|
|
17539
|
+
interface ApplicationJson {
|
|
17540
|
+
[k: string]: unknown;
|
|
17541
|
+
}
|
|
17542
|
+
}
|
|
17543
|
+
}
|
|
17544
|
+
namespace $429 {
|
|
17545
|
+
namespace Content {
|
|
17546
|
+
interface ApplicationJson {
|
|
17547
|
+
[k: string]: unknown;
|
|
17548
|
+
}
|
|
17549
|
+
}
|
|
17550
|
+
}
|
|
17551
|
+
namespace Default {
|
|
17552
|
+
namespace Content {
|
|
17553
|
+
interface ApplicationJson {
|
|
17554
|
+
[k: string]: unknown;
|
|
17555
|
+
}
|
|
17556
|
+
}
|
|
17557
|
+
}
|
|
17558
|
+
}
|
|
17559
|
+
}
|
|
17560
|
+
}
|
|
17561
|
+
namespace V2Certificates {
|
|
17562
|
+
namespace Get {
|
|
17563
|
+
namespace Parameters {
|
|
17564
|
+
type Path = {};
|
|
17565
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17566
|
+
type Query = {
|
|
17567
|
+
projectId?: string;
|
|
17568
|
+
ingressId?: string;
|
|
17569
|
+
};
|
|
17570
|
+
}
|
|
17571
|
+
namespace Responses {
|
|
17572
|
+
namespace $200 {
|
|
17573
|
+
namespace Content {
|
|
17574
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificate[];
|
|
17575
|
+
}
|
|
17576
|
+
}
|
|
17577
|
+
namespace $404 {
|
|
17578
|
+
namespace Content {
|
|
17579
|
+
interface ApplicationJson {
|
|
17580
|
+
[k: string]: unknown;
|
|
17581
|
+
}
|
|
17582
|
+
}
|
|
17583
|
+
}
|
|
17584
|
+
namespace $429 {
|
|
17585
|
+
namespace Content {
|
|
17586
|
+
interface ApplicationJson {
|
|
17587
|
+
[k: string]: unknown;
|
|
17588
|
+
}
|
|
17589
|
+
}
|
|
17590
|
+
}
|
|
17591
|
+
namespace Default {
|
|
17592
|
+
namespace Content {
|
|
17593
|
+
interface ApplicationJson {
|
|
17594
|
+
[k: string]: unknown;
|
|
17595
|
+
}
|
|
17596
|
+
}
|
|
17597
|
+
}
|
|
17598
|
+
}
|
|
17599
|
+
}
|
|
17600
|
+
}
|
|
16550
17601
|
namespace V2UsersUserIdPhone {
|
|
16551
17602
|
namespace Post {
|
|
16552
17603
|
namespace Parameters {
|
|
@@ -16616,6 +17667,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16616
17667
|
}
|
|
16617
17668
|
}
|
|
16618
17669
|
}
|
|
17670
|
+
namespace $412 {
|
|
17671
|
+
namespace Content {
|
|
17672
|
+
interface ApplicationJson {
|
|
17673
|
+
[k: string]: unknown;
|
|
17674
|
+
}
|
|
17675
|
+
}
|
|
17676
|
+
}
|
|
16619
17677
|
namespace $429 {
|
|
16620
17678
|
namespace Content {
|
|
16621
17679
|
interface ApplicationJson {
|
|
@@ -16642,7 +17700,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16642
17700
|
/**
|
|
16643
17701
|
* The email of the user.
|
|
16644
17702
|
*/
|
|
16645
|
-
email
|
|
17703
|
+
email: string;
|
|
16646
17704
|
/**
|
|
16647
17705
|
* The second factor - otp code or recovery code.
|
|
16648
17706
|
*/
|
|
@@ -16650,7 +17708,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16650
17708
|
/**
|
|
16651
17709
|
* The password of the user.
|
|
16652
17710
|
*/
|
|
16653
|
-
password
|
|
17711
|
+
password: string;
|
|
16654
17712
|
}
|
|
16655
17713
|
type Header = {};
|
|
16656
17714
|
type Query = {};
|