@mittwald/api-client 4.64.2 → 4.66.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 +97 -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 +37 -5
- package/dist/types/generated/v2/types.d.ts +1344 -184
- 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>;
|
|
@@ -1274,6 +1330,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1274
1330
|
type RequestData = InferredRequestData<typeof descriptors.userVerifyRegistration>;
|
|
1275
1331
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userVerifyRegistration, TStatus>;
|
|
1276
1332
|
}
|
|
1333
|
+
namespace VerificationVerifyAddress {
|
|
1334
|
+
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyAddress>;
|
|
1335
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyAddress, TStatus>;
|
|
1336
|
+
}
|
|
1337
|
+
namespace VerificationVerifyCompany {
|
|
1338
|
+
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1339
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1340
|
+
}
|
|
1277
1341
|
}
|
|
1278
1342
|
namespace Components {
|
|
1279
1343
|
namespace Schemas {
|
|
@@ -1348,6 +1412,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1348
1412
|
linkedDatabases?: MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
|
|
1349
1413
|
processRunningSince?: string;
|
|
1350
1414
|
processes?: string[];
|
|
1415
|
+
projectEnvironment?: string;
|
|
1351
1416
|
projectId?: string;
|
|
1352
1417
|
screenshotId?: string;
|
|
1353
1418
|
screenshotRef?: string;
|
|
@@ -1666,7 +1731,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1666
1731
|
domain: string;
|
|
1667
1732
|
id: string;
|
|
1668
1733
|
}
|
|
1669
|
-
type ConversationCategoryReferenceType = ("unspecified" | "server" | "project" | "organisation")[];
|
|
1734
|
+
type ConversationCategoryReferenceType = ("unspecified" | "server" | "project" | "organisation" | "extensionInstance")[];
|
|
1670
1735
|
interface ConversationCategory {
|
|
1671
1736
|
categoryId: string;
|
|
1672
1737
|
name: string;
|
|
@@ -1758,6 +1823,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1758
1823
|
aggregate: "placementgroup";
|
|
1759
1824
|
domain: "project";
|
|
1760
1825
|
id: string;
|
|
1826
|
+
} | {
|
|
1827
|
+
aggregate: "extensionInstance";
|
|
1828
|
+
domain: "extension";
|
|
1829
|
+
id: string;
|
|
1761
1830
|
};
|
|
1762
1831
|
type ConversationStatus = "open" | "closed" | "answered" | "inProgress" | "waiting";
|
|
1763
1832
|
interface ConversationStatusUpdate {
|
|
@@ -2171,6 +2240,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2171
2240
|
authCode?: MittwaldAPIV2.Components.Schemas.DomainAuthCode;
|
|
2172
2241
|
authCode2?: MittwaldAPIV2.Components.Schemas.DomainAuthCode2;
|
|
2173
2242
|
connected: boolean;
|
|
2243
|
+
contactHash?: string;
|
|
2174
2244
|
deleted: boolean;
|
|
2175
2245
|
domain: string;
|
|
2176
2246
|
domainId: string;
|
|
@@ -2244,9 +2314,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2244
2314
|
}
|
|
2245
2315
|
type MarketplaceContributorState = "enabled" | "disabled";
|
|
2246
2316
|
interface MarketplaceExtension {
|
|
2317
|
+
/**
|
|
2318
|
+
* @deprecated
|
|
2319
|
+
*/
|
|
2247
2320
|
blocked: boolean;
|
|
2248
2321
|
context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
2249
2322
|
contributorId: string;
|
|
2323
|
+
/**
|
|
2324
|
+
* The Extension is deprecated by the contributor and will expire at the given date.
|
|
2325
|
+
*/
|
|
2326
|
+
deprecation?: {
|
|
2327
|
+
deprecatedAt: string;
|
|
2328
|
+
};
|
|
2250
2329
|
description: string;
|
|
2251
2330
|
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
2252
2331
|
disabled: boolean;
|
|
@@ -2268,6 +2347,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2268
2347
|
*/
|
|
2269
2348
|
tags: string[];
|
|
2270
2349
|
}
|
|
2350
|
+
interface MarketplaceBackendComponent {
|
|
2351
|
+
url: string;
|
|
2352
|
+
}
|
|
2353
|
+
interface MarketplaceBackendComponents {
|
|
2354
|
+
extensionAddedToContext?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
2355
|
+
extensionInstanceRemovedFromContext?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
2356
|
+
extensionInstanceSecretRotated?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
2357
|
+
extensionInstanceUpdated?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
|
|
2358
|
+
}
|
|
2271
2359
|
type MarketplaceContext = "project" | "customer";
|
|
2272
2360
|
/**
|
|
2273
2361
|
* Language specific descriptions in various formats.
|
|
@@ -2294,12 +2382,42 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2294
2382
|
disabled: boolean;
|
|
2295
2383
|
extensionId: string;
|
|
2296
2384
|
id: string;
|
|
2385
|
+
pendingInstallation: boolean;
|
|
2386
|
+
pendingRemoval: boolean;
|
|
2297
2387
|
}
|
|
2298
2388
|
interface MarketplaceExternalComponent {
|
|
2299
2389
|
name: string;
|
|
2300
2390
|
url: string;
|
|
2301
2391
|
}
|
|
2302
2392
|
type MarketplaceFrontendFragment = MittwaldAPIV2.Components.Schemas.MarketplaceUrlFrontendFragment;
|
|
2393
|
+
interface MarketplaceOptionalExtension {
|
|
2394
|
+
backendComponents?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents;
|
|
2395
|
+
/**
|
|
2396
|
+
* @deprecated
|
|
2397
|
+
*/
|
|
2398
|
+
blocked?: boolean;
|
|
2399
|
+
context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
2400
|
+
contributorId: string;
|
|
2401
|
+
description?: string;
|
|
2402
|
+
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
2403
|
+
disabled?: boolean;
|
|
2404
|
+
frontendComponents?: MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[];
|
|
2405
|
+
frontendFragments?: {
|
|
2406
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
2407
|
+
};
|
|
2408
|
+
id: string;
|
|
2409
|
+
name: string;
|
|
2410
|
+
scopes?: string[];
|
|
2411
|
+
/**
|
|
2412
|
+
* deprecated
|
|
2413
|
+
*/
|
|
2414
|
+
state?: "enabled" | "blocked" | "disabled";
|
|
2415
|
+
support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
|
|
2416
|
+
/**
|
|
2417
|
+
* @minItems 0
|
|
2418
|
+
*/
|
|
2419
|
+
tags?: string[];
|
|
2420
|
+
}
|
|
2303
2421
|
interface MarketplacePublicKey {
|
|
2304
2422
|
algorithm: string;
|
|
2305
2423
|
/**
|
|
@@ -2353,7 +2471,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2353
2471
|
id: string;
|
|
2354
2472
|
}
|
|
2355
2473
|
interface FileFileMeta {
|
|
2474
|
+
/**
|
|
2475
|
+
* @deprecated
|
|
2476
|
+
* deprecated, see friendlyUrl
|
|
2477
|
+
*/
|
|
2356
2478
|
friendlyURL: string;
|
|
2479
|
+
friendlyUrl: string;
|
|
2357
2480
|
id: string;
|
|
2358
2481
|
mimeType: string;
|
|
2359
2482
|
name: string;
|
|
@@ -2377,6 +2500,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2377
2500
|
* deprecated, see maxSizeInBytes
|
|
2378
2501
|
*/
|
|
2379
2502
|
maxSizeInKB: number;
|
|
2503
|
+
/**
|
|
2504
|
+
* @deprecated
|
|
2505
|
+
* deprecated, see maxSizeInBytes
|
|
2506
|
+
*/
|
|
2507
|
+
maxSizeInKb: number;
|
|
2380
2508
|
mimeTypes: string[];
|
|
2381
2509
|
properties?: {
|
|
2382
2510
|
imageDimensions?: {
|
|
@@ -3114,8 +3242,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3114
3242
|
}
|
|
3115
3243
|
interface OrderProfile {
|
|
3116
3244
|
email: string;
|
|
3117
|
-
|
|
3118
|
-
|
|
3245
|
+
firstName?: string;
|
|
3246
|
+
lastName?: string;
|
|
3119
3247
|
/**
|
|
3120
3248
|
* the users title
|
|
3121
3249
|
*/
|
|
@@ -3133,6 +3261,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3133
3261
|
description: string;
|
|
3134
3262
|
diskspaceInGiB: number;
|
|
3135
3263
|
promotionCode?: string;
|
|
3264
|
+
recommendationCode?: string;
|
|
3136
3265
|
spec: MittwaldAPIV2.Components.Schemas.OrderMachineTypeSpec | MittwaldAPIV2.Components.Schemas.OrderHardwareSpec;
|
|
3137
3266
|
useFreeTrial?: boolean;
|
|
3138
3267
|
}
|
|
@@ -3153,6 +3282,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3153
3282
|
diskspaceInGiB: number;
|
|
3154
3283
|
machineType: string;
|
|
3155
3284
|
promotionCode?: string;
|
|
3285
|
+
recommendationCode?: string;
|
|
3156
3286
|
useFreeTrial?: boolean;
|
|
3157
3287
|
}
|
|
3158
3288
|
interface OrderServerTariffChange {
|
|
@@ -3457,6 +3587,101 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3457
3587
|
updatedAt?: string;
|
|
3458
3588
|
userName: string;
|
|
3459
3589
|
}
|
|
3590
|
+
interface SslCertificate {
|
|
3591
|
+
caBundle?: string;
|
|
3592
|
+
certificate: string;
|
|
3593
|
+
certificateOrderId?: string;
|
|
3594
|
+
certificateRequestId: string;
|
|
3595
|
+
certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
3596
|
+
commonName?: string;
|
|
3597
|
+
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
3598
|
+
dnsNames?: string[];
|
|
3599
|
+
id: string;
|
|
3600
|
+
isExpired: boolean;
|
|
3601
|
+
issuer?: string;
|
|
3602
|
+
lastExpirationThresholdHit: number;
|
|
3603
|
+
projectId: string;
|
|
3604
|
+
validFrom: string;
|
|
3605
|
+
validTo: string;
|
|
3606
|
+
}
|
|
3607
|
+
interface SslCertificateData {
|
|
3608
|
+
caBundle?: string;
|
|
3609
|
+
certificate?: string;
|
|
3610
|
+
signingRequest?: string;
|
|
3611
|
+
}
|
|
3612
|
+
interface SslCertificateError {
|
|
3613
|
+
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";
|
|
3614
|
+
}
|
|
3615
|
+
interface SslCertificateRequest {
|
|
3616
|
+
certificateData: MittwaldAPIV2.Components.Schemas.SslCertificateData;
|
|
3617
|
+
certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
3618
|
+
commonName?: string;
|
|
3619
|
+
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
3620
|
+
createdAt: string;
|
|
3621
|
+
dnsNames?: string[];
|
|
3622
|
+
id: string;
|
|
3623
|
+
isCompleted: boolean;
|
|
3624
|
+
issuer?: string;
|
|
3625
|
+
projectId: string;
|
|
3626
|
+
validFrom?: string;
|
|
3627
|
+
validTo?: string;
|
|
3628
|
+
}
|
|
3629
|
+
interface SslCertificateRequestCreateRequest {
|
|
3630
|
+
certificate: string;
|
|
3631
|
+
privateKey: string;
|
|
3632
|
+
projectId: string;
|
|
3633
|
+
}
|
|
3634
|
+
interface SslCertificateRequestCreateResponse {
|
|
3635
|
+
commonName?: string;
|
|
3636
|
+
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
3637
|
+
dnsNames?: string[];
|
|
3638
|
+
id: string;
|
|
3639
|
+
issuer?: string;
|
|
3640
|
+
signingRequest?: string;
|
|
3641
|
+
validFrom?: string;
|
|
3642
|
+
validTo?: string;
|
|
3643
|
+
}
|
|
3644
|
+
interface SslCertificateRequestCreateWithCSRRequest {
|
|
3645
|
+
commonName: string;
|
|
3646
|
+
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
3647
|
+
projectId: string;
|
|
3648
|
+
}
|
|
3649
|
+
type SslCertificateType = 0 | 1 | 2;
|
|
3650
|
+
interface SslCheckReplaceChanges {
|
|
3651
|
+
commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
3652
|
+
dnsNames?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceSliceChange;
|
|
3653
|
+
issuer?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
3654
|
+
validFrom?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
|
|
3655
|
+
validTo?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
|
|
3656
|
+
}
|
|
3657
|
+
interface SslCheckReplaceDateChange {
|
|
3658
|
+
newValue: string;
|
|
3659
|
+
oldValue: string;
|
|
3660
|
+
}
|
|
3661
|
+
interface SslCheckReplaceFieldChange {
|
|
3662
|
+
newValue: string;
|
|
3663
|
+
oldValue: string;
|
|
3664
|
+
}
|
|
3665
|
+
interface SslCheckReplaceCertificateResponse {
|
|
3666
|
+
changes?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceChanges;
|
|
3667
|
+
errors?: MittwaldAPIV2.Components.Schemas.SslCertificateError[];
|
|
3668
|
+
isReplaceable: boolean;
|
|
3669
|
+
}
|
|
3670
|
+
interface SslCheckReplaceSliceChange {
|
|
3671
|
+
addedValues: string[];
|
|
3672
|
+
removedValues: string[];
|
|
3673
|
+
values: string[];
|
|
3674
|
+
}
|
|
3675
|
+
interface SslContact {
|
|
3676
|
+
city?: string;
|
|
3677
|
+
company?: string;
|
|
3678
|
+
/**
|
|
3679
|
+
* Two letter abbreviation - country code (ISO 3166-1 Alpha-2).
|
|
3680
|
+
*/
|
|
3681
|
+
country?: string;
|
|
3682
|
+
organizationalUnit?: string;
|
|
3683
|
+
state?: string;
|
|
3684
|
+
}
|
|
3460
3685
|
interface SignupAccount {
|
|
3461
3686
|
email?: string;
|
|
3462
3687
|
/**
|
|
@@ -3515,6 +3740,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3515
3740
|
person?: MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
3516
3741
|
userId?: string;
|
|
3517
3742
|
}
|
|
3743
|
+
interface UserCustomerMembership {
|
|
3744
|
+
expiresAt?: string;
|
|
3745
|
+
memberSince: string;
|
|
3746
|
+
role: "owner" | "member" | "accountant";
|
|
3747
|
+
}
|
|
3518
3748
|
interface UserUserFeedback {
|
|
3519
3749
|
id: string;
|
|
3520
3750
|
message: string;
|
|
@@ -3522,8 +3752,17 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3522
3752
|
subject: string;
|
|
3523
3753
|
vote: number;
|
|
3524
3754
|
}
|
|
3755
|
+
interface UserProjectMembership {
|
|
3756
|
+
expiresAt?: string;
|
|
3757
|
+
inherited: boolean;
|
|
3758
|
+
memberSince: string;
|
|
3759
|
+
role: "owner" | "emailadmin" | "external";
|
|
3760
|
+
}
|
|
3525
3761
|
interface UserUser {
|
|
3526
3762
|
avatarRef?: string;
|
|
3763
|
+
customerMemberships?: {
|
|
3764
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.UserCustomerMembership;
|
|
3765
|
+
};
|
|
3527
3766
|
email?: string;
|
|
3528
3767
|
/**
|
|
3529
3768
|
* Additional information about mittwald employees.
|
|
@@ -3531,6 +3770,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3531
3770
|
employeeInformation?: {
|
|
3532
3771
|
department: string;
|
|
3533
3772
|
};
|
|
3773
|
+
/**
|
|
3774
|
+
* Truth value, whether the user is a mittwald employee
|
|
3775
|
+
*/
|
|
3776
|
+
isEmployee?: boolean;
|
|
3534
3777
|
mfa?: {
|
|
3535
3778
|
active: boolean;
|
|
3536
3779
|
setup: boolean;
|
|
@@ -3538,15 +3781,23 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3538
3781
|
passwordUpdatedAt?: string;
|
|
3539
3782
|
person: MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
3540
3783
|
phoneNumber?: string;
|
|
3784
|
+
projectMemberships?: {
|
|
3785
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.UserProjectMembership;
|
|
3786
|
+
};
|
|
3541
3787
|
registeredAt?: string;
|
|
3542
3788
|
userId: string;
|
|
3543
3789
|
}
|
|
3544
3790
|
interface UserUserInternal {
|
|
3545
3791
|
avatarRef?: string;
|
|
3792
|
+
customerMemberships?: {
|
|
3793
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.UserCustomerMembership;
|
|
3794
|
+
};
|
|
3546
3795
|
/**
|
|
3547
3796
|
* Truth value, whether the user has been disabled.
|
|
3548
3797
|
*/
|
|
3549
3798
|
disabled?: boolean;
|
|
3799
|
+
disabledAt?: string;
|
|
3800
|
+
disabledBy?: string;
|
|
3550
3801
|
email?: string;
|
|
3551
3802
|
/**
|
|
3552
3803
|
* Additional information about mittwald employees.
|
|
@@ -3554,6 +3805,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3554
3805
|
employeeInformation?: {
|
|
3555
3806
|
department: string;
|
|
3556
3807
|
};
|
|
3808
|
+
/**
|
|
3809
|
+
* Truth value, whether the user is a mittwald employee
|
|
3810
|
+
*/
|
|
3811
|
+
isEmployee?: boolean;
|
|
3557
3812
|
mfa?: {
|
|
3558
3813
|
active: boolean;
|
|
3559
3814
|
setup: boolean;
|
|
@@ -3561,6 +3816,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3561
3816
|
passwordUpdatedAt?: string;
|
|
3562
3817
|
person: MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
3563
3818
|
phoneNumber?: string;
|
|
3819
|
+
projectMemberships?: {
|
|
3820
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.UserProjectMembership;
|
|
3821
|
+
};
|
|
3564
3822
|
registeredAt?: string;
|
|
3565
3823
|
userId: string;
|
|
3566
3824
|
}
|
|
@@ -3588,6 +3846,70 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3588
3846
|
location?: MittwaldAPIV2.Components.Schemas.SignupLocation;
|
|
3589
3847
|
tokenId: string;
|
|
3590
3848
|
}
|
|
3849
|
+
interface VarnishConfigRevision {
|
|
3850
|
+
expire?: number;
|
|
3851
|
+
files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
|
|
3852
|
+
note?: string;
|
|
3853
|
+
revision: number;
|
|
3854
|
+
updated: string;
|
|
3855
|
+
}
|
|
3856
|
+
interface VarnishConfigTemplate {
|
|
3857
|
+
/**
|
|
3858
|
+
* A set of config file references.
|
|
3859
|
+
*/
|
|
3860
|
+
files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
|
|
3861
|
+
isGlobal?: boolean;
|
|
3862
|
+
note?: string;
|
|
3863
|
+
projectId?: string;
|
|
3864
|
+
softwareConfigTemplateId: string;
|
|
3865
|
+
softwareTemplateId: string;
|
|
3866
|
+
updatedAt?: string;
|
|
3867
|
+
}
|
|
3868
|
+
interface VarnishConfigFile {
|
|
3869
|
+
content: string;
|
|
3870
|
+
meta?: MittwaldAPIV2.Components.Schemas.VarnishConfigFileMetadata;
|
|
3871
|
+
}
|
|
3872
|
+
interface VarnishConfigFileMetadata {
|
|
3873
|
+
name: string;
|
|
3874
|
+
path?: string;
|
|
3875
|
+
}
|
|
3876
|
+
interface VarnishConfigFileRef {
|
|
3877
|
+
meta?: MittwaldAPIV2.Components.Schemas.VarnishConfigFileMetadata;
|
|
3878
|
+
refId: string;
|
|
3879
|
+
}
|
|
3880
|
+
interface VarnishGlobalConfigTemplate {
|
|
3881
|
+
data: string;
|
|
3882
|
+
name: string;
|
|
3883
|
+
updatedAt: string;
|
|
3884
|
+
}
|
|
3885
|
+
interface VarnishSoftware {
|
|
3886
|
+
config: MittwaldAPIV2.Components.Schemas.VarnishSoftwareConfig;
|
|
3887
|
+
projectId: string;
|
|
3888
|
+
settings?: {
|
|
3889
|
+
[k: string]: string;
|
|
3890
|
+
};
|
|
3891
|
+
softwareId: string;
|
|
3892
|
+
softwareTemplateId: string;
|
|
3893
|
+
softwareVersion: string;
|
|
3894
|
+
updatedAt: string;
|
|
3895
|
+
}
|
|
3896
|
+
interface VarnishSoftwareConfig {
|
|
3897
|
+
configExpiration?: MittwaldAPIV2.Components.Schemas.VarnishConfigExpiration;
|
|
3898
|
+
latestConfigRevision?: number;
|
|
3899
|
+
revisions?: MittwaldAPIV2.Components.Schemas.VarnishConfigRevision[];
|
|
3900
|
+
}
|
|
3901
|
+
interface VarnishConfigExpiration {
|
|
3902
|
+
maxVersions?: number;
|
|
3903
|
+
retentionTime?: number;
|
|
3904
|
+
}
|
|
3905
|
+
interface VarnishSoftwareConfigFileAccessToken {
|
|
3906
|
+
accessToken: string;
|
|
3907
|
+
expiresAt: string;
|
|
3908
|
+
}
|
|
3909
|
+
interface VarnishSoftwareSetting {
|
|
3910
|
+
name: string;
|
|
3911
|
+
value: string;
|
|
3912
|
+
}
|
|
3591
3913
|
interface CommonsAddress {
|
|
3592
3914
|
street: string;
|
|
3593
3915
|
houseNumber: string;
|
|
@@ -3698,6 +4020,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3698
4020
|
interface ApplicationJson {
|
|
3699
4021
|
}
|
|
3700
4022
|
}
|
|
4023
|
+
namespace SslValidationError {
|
|
4024
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificateError;
|
|
4025
|
+
}
|
|
3701
4026
|
namespace SignupInternalServerError {
|
|
3702
4027
|
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SignupDomainError & {
|
|
3703
4028
|
name?: "InternalServerError";
|
|
@@ -3723,7 +4048,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3723
4048
|
}
|
|
3724
4049
|
namespace SignupSecondFactorRequiredError {
|
|
3725
4050
|
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SignupDomainError & {
|
|
3726
|
-
name
|
|
4051
|
+
name: "SecondFactorRequired";
|
|
3727
4052
|
};
|
|
3728
4053
|
}
|
|
3729
4054
|
namespace CommonsDefaultError {
|
|
@@ -4240,8 +4565,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4240
4565
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
4241
4566
|
type Query = {
|
|
4242
4567
|
limit?: number;
|
|
4243
|
-
page?: number;
|
|
4244
4568
|
skip?: number;
|
|
4569
|
+
page?: number;
|
|
4245
4570
|
};
|
|
4246
4571
|
}
|
|
4247
4572
|
namespace Responses {
|
|
@@ -4277,8 +4602,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4277
4602
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
4278
4603
|
type Query = {
|
|
4279
4604
|
limit?: number;
|
|
4280
|
-
page?: number;
|
|
4281
4605
|
skip?: number;
|
|
4606
|
+
page?: number;
|
|
4282
4607
|
};
|
|
4283
4608
|
}
|
|
4284
4609
|
namespace Responses {
|
|
@@ -4363,8 +4688,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4363
4688
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
4364
4689
|
type Query = {
|
|
4365
4690
|
limit?: number;
|
|
4366
|
-
page?: number;
|
|
4367
4691
|
skip?: number;
|
|
4692
|
+
page?: number;
|
|
4368
4693
|
};
|
|
4369
4694
|
}
|
|
4370
4695
|
namespace Responses {
|
|
@@ -4432,8 +4757,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4432
4757
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
4433
4758
|
type Query = {
|
|
4434
4759
|
limit?: number;
|
|
4435
|
-
page?: number;
|
|
4436
4760
|
skip?: number;
|
|
4761
|
+
page?: number;
|
|
4437
4762
|
};
|
|
4438
4763
|
}
|
|
4439
4764
|
namespace Responses {
|
|
@@ -4810,14 +5135,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4810
5135
|
type Header = {};
|
|
4811
5136
|
type Query = {
|
|
4812
5137
|
customerId?: string;
|
|
4813
|
-
limit?: number;
|
|
4814
|
-
skip?: number;
|
|
4815
|
-
page?: number;
|
|
4816
5138
|
tags?: string[];
|
|
4817
5139
|
templateNames?: string[];
|
|
4818
5140
|
articleIds?: string[];
|
|
4819
5141
|
orderable?: ("forbidden" | "internal" | "beta_testing" | "full" | "deprecated")[];
|
|
4820
5142
|
name?: string;
|
|
5143
|
+
limit?: number;
|
|
5144
|
+
skip?: number;
|
|
5145
|
+
page?: number;
|
|
4821
5146
|
};
|
|
4822
5147
|
}
|
|
4823
5148
|
namespace Responses {
|
|
@@ -5683,6 +6008,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5683
6008
|
}
|
|
5684
6009
|
}
|
|
5685
6010
|
}
|
|
6011
|
+
namespace $412 {
|
|
6012
|
+
namespace Content {
|
|
6013
|
+
interface ApplicationJson {
|
|
6014
|
+
[k: string]: unknown;
|
|
6015
|
+
}
|
|
6016
|
+
}
|
|
6017
|
+
}
|
|
5686
6018
|
namespace $429 {
|
|
5687
6019
|
namespace Content {
|
|
5688
6020
|
interface ApplicationJson {
|
|
@@ -5746,6 +6078,52 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5746
6078
|
}
|
|
5747
6079
|
}
|
|
5748
6080
|
}
|
|
6081
|
+
namespace V2CertificatesCertificateIdContract {
|
|
6082
|
+
namespace Get {
|
|
6083
|
+
namespace Parameters {
|
|
6084
|
+
type Path = {
|
|
6085
|
+
certificateId: string;
|
|
6086
|
+
};
|
|
6087
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
6088
|
+
type Query = {};
|
|
6089
|
+
}
|
|
6090
|
+
namespace Responses {
|
|
6091
|
+
namespace $200 {
|
|
6092
|
+
namespace Content {
|
|
6093
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
|
|
6094
|
+
}
|
|
6095
|
+
}
|
|
6096
|
+
namespace $400 {
|
|
6097
|
+
namespace Content {
|
|
6098
|
+
interface ApplicationJson {
|
|
6099
|
+
[k: string]: unknown;
|
|
6100
|
+
}
|
|
6101
|
+
}
|
|
6102
|
+
}
|
|
6103
|
+
namespace $404 {
|
|
6104
|
+
namespace Content {
|
|
6105
|
+
interface ApplicationJson {
|
|
6106
|
+
[k: string]: unknown;
|
|
6107
|
+
}
|
|
6108
|
+
}
|
|
6109
|
+
}
|
|
6110
|
+
namespace $429 {
|
|
6111
|
+
namespace Content {
|
|
6112
|
+
interface ApplicationJson {
|
|
6113
|
+
[k: string]: unknown;
|
|
6114
|
+
}
|
|
6115
|
+
}
|
|
6116
|
+
}
|
|
6117
|
+
namespace Default {
|
|
6118
|
+
namespace Content {
|
|
6119
|
+
interface ApplicationJson {
|
|
6120
|
+
[k: string]: unknown;
|
|
6121
|
+
}
|
|
6122
|
+
}
|
|
6123
|
+
}
|
|
6124
|
+
}
|
|
6125
|
+
}
|
|
6126
|
+
}
|
|
5749
6127
|
namespace V2DomainsDomainIdContract {
|
|
5750
6128
|
namespace Get {
|
|
5751
6129
|
namespace Parameters {
|
|
@@ -7497,57 +7875,48 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7497
7875
|
}
|
|
7498
7876
|
}
|
|
7499
7877
|
}
|
|
7500
|
-
namespace
|
|
7878
|
+
namespace V2CustomersCustomerIdRecommendationSuggestions {
|
|
7501
7879
|
namespace Post {
|
|
7502
7880
|
namespace Parameters {
|
|
7503
7881
|
type Path = {
|
|
7504
|
-
|
|
7882
|
+
customerId: string;
|
|
7505
7883
|
};
|
|
7506
7884
|
interface RequestBody {
|
|
7507
|
-
|
|
7885
|
+
suggestion: string;
|
|
7508
7886
|
}
|
|
7509
7887
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7510
7888
|
type Query = {};
|
|
7511
7889
|
}
|
|
7512
7890
|
namespace Responses {
|
|
7513
|
-
namespace $
|
|
7891
|
+
namespace $201 {
|
|
7514
7892
|
namespace Content {
|
|
7515
|
-
|
|
7893
|
+
interface ApplicationJson {
|
|
7894
|
+
customerId?: string;
|
|
7895
|
+
}
|
|
7516
7896
|
}
|
|
7517
7897
|
}
|
|
7518
|
-
namespace $
|
|
7898
|
+
namespace $400 {
|
|
7519
7899
|
namespace Content {
|
|
7520
7900
|
interface ApplicationJson {
|
|
7521
7901
|
[k: string]: unknown;
|
|
7522
7902
|
}
|
|
7523
7903
|
}
|
|
7524
7904
|
}
|
|
7525
|
-
namespace
|
|
7905
|
+
namespace $404 {
|
|
7526
7906
|
namespace Content {
|
|
7527
7907
|
interface ApplicationJson {
|
|
7528
7908
|
[k: string]: unknown;
|
|
7529
7909
|
}
|
|
7530
7910
|
}
|
|
7531
7911
|
}
|
|
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 {
|
|
7912
|
+
namespace $409 {
|
|
7546
7913
|
namespace Content {
|
|
7547
|
-
|
|
7914
|
+
interface ApplicationJson {
|
|
7915
|
+
[k: string]: unknown;
|
|
7916
|
+
}
|
|
7548
7917
|
}
|
|
7549
7918
|
}
|
|
7550
|
-
namespace $
|
|
7919
|
+
namespace $412 {
|
|
7551
7920
|
namespace Content {
|
|
7552
7921
|
interface ApplicationJson {
|
|
7553
7922
|
[k: string]: unknown;
|
|
@@ -7570,53 +7939,49 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7570
7939
|
}
|
|
7571
7940
|
}
|
|
7572
7941
|
}
|
|
7573
|
-
|
|
7942
|
+
}
|
|
7943
|
+
namespace V2CustomersCustomerIdWallet {
|
|
7944
|
+
namespace Get {
|
|
7574
7945
|
namespace Parameters {
|
|
7575
7946
|
type Path = {
|
|
7576
|
-
|
|
7947
|
+
customerId: string;
|
|
7577
7948
|
};
|
|
7578
7949
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7579
7950
|
type Query = {};
|
|
7580
7951
|
}
|
|
7581
7952
|
namespace Responses {
|
|
7582
|
-
namespace $
|
|
7953
|
+
namespace $200 {
|
|
7583
7954
|
namespace Content {
|
|
7584
|
-
|
|
7955
|
+
interface ApplicationJson {
|
|
7956
|
+
customerId: string;
|
|
7957
|
+
points: number;
|
|
7958
|
+
recommendationCode?: string;
|
|
7959
|
+
walletId: string;
|
|
7960
|
+
}
|
|
7585
7961
|
}
|
|
7586
7962
|
}
|
|
7587
|
-
namespace $
|
|
7963
|
+
namespace $400 {
|
|
7588
7964
|
namespace Content {
|
|
7589
7965
|
interface ApplicationJson {
|
|
7590
7966
|
[k: string]: unknown;
|
|
7591
7967
|
}
|
|
7592
7968
|
}
|
|
7593
7969
|
}
|
|
7594
|
-
namespace
|
|
7970
|
+
namespace $404 {
|
|
7595
7971
|
namespace Content {
|
|
7596
7972
|
interface ApplicationJson {
|
|
7597
7973
|
[k: string]: unknown;
|
|
7598
7974
|
}
|
|
7599
7975
|
}
|
|
7600
7976
|
}
|
|
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 {
|
|
7977
|
+
namespace $409 {
|
|
7615
7978
|
namespace Content {
|
|
7616
|
-
|
|
7979
|
+
interface ApplicationJson {
|
|
7980
|
+
[k: string]: unknown;
|
|
7981
|
+
}
|
|
7617
7982
|
}
|
|
7618
7983
|
}
|
|
7619
|
-
namespace $
|
|
7984
|
+
namespace $412 {
|
|
7620
7985
|
namespace Content {
|
|
7621
7986
|
interface ApplicationJson {
|
|
7622
7987
|
[k: string]: unknown;
|
|
@@ -7639,12 +8004,217 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7639
8004
|
}
|
|
7640
8005
|
}
|
|
7641
8006
|
}
|
|
7642
|
-
namespace
|
|
8007
|
+
namespace Post {
|
|
7643
8008
|
namespace Parameters {
|
|
7644
8009
|
type Path = {
|
|
7645
|
-
|
|
8010
|
+
customerId: string;
|
|
7646
8011
|
};
|
|
7647
|
-
|
|
8012
|
+
interface RequestBody {
|
|
8013
|
+
}
|
|
8014
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8015
|
+
type Query = {};
|
|
8016
|
+
}
|
|
8017
|
+
namespace Responses {
|
|
8018
|
+
namespace $200 {
|
|
8019
|
+
namespace Content {
|
|
8020
|
+
interface ApplicationJson {
|
|
8021
|
+
customerId?: string;
|
|
8022
|
+
}
|
|
8023
|
+
}
|
|
8024
|
+
}
|
|
8025
|
+
namespace $400 {
|
|
8026
|
+
namespace Content {
|
|
8027
|
+
interface ApplicationJson {
|
|
8028
|
+
[k: string]: unknown;
|
|
8029
|
+
}
|
|
8030
|
+
}
|
|
8031
|
+
}
|
|
8032
|
+
namespace $404 {
|
|
8033
|
+
namespace Content {
|
|
8034
|
+
interface ApplicationJson {
|
|
8035
|
+
[k: string]: unknown;
|
|
8036
|
+
}
|
|
8037
|
+
}
|
|
8038
|
+
}
|
|
8039
|
+
namespace $409 {
|
|
8040
|
+
namespace Content {
|
|
8041
|
+
interface ApplicationJson {
|
|
8042
|
+
[k: string]: unknown;
|
|
8043
|
+
}
|
|
8044
|
+
}
|
|
8045
|
+
}
|
|
8046
|
+
namespace $412 {
|
|
8047
|
+
namespace Content {
|
|
8048
|
+
interface ApplicationJson {
|
|
8049
|
+
[k: string]: unknown;
|
|
8050
|
+
}
|
|
8051
|
+
}
|
|
8052
|
+
}
|
|
8053
|
+
namespace $429 {
|
|
8054
|
+
namespace Content {
|
|
8055
|
+
interface ApplicationJson {
|
|
8056
|
+
[k: string]: unknown;
|
|
8057
|
+
}
|
|
8058
|
+
}
|
|
8059
|
+
}
|
|
8060
|
+
namespace Default {
|
|
8061
|
+
namespace Content {
|
|
8062
|
+
interface ApplicationJson {
|
|
8063
|
+
[k: string]: unknown;
|
|
8064
|
+
}
|
|
8065
|
+
}
|
|
8066
|
+
}
|
|
8067
|
+
}
|
|
8068
|
+
}
|
|
8069
|
+
}
|
|
8070
|
+
namespace V2CustomerInvitesCustomerInviteIdActionsDecline {
|
|
8071
|
+
namespace Post {
|
|
8072
|
+
namespace Parameters {
|
|
8073
|
+
type Path = {
|
|
8074
|
+
customerInviteId: string;
|
|
8075
|
+
};
|
|
8076
|
+
interface RequestBody {
|
|
8077
|
+
[k: string]: unknown;
|
|
8078
|
+
}
|
|
8079
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8080
|
+
type Query = {};
|
|
8081
|
+
}
|
|
8082
|
+
namespace Responses {
|
|
8083
|
+
namespace $204 {
|
|
8084
|
+
namespace Content {
|
|
8085
|
+
type Empty = unknown;
|
|
8086
|
+
}
|
|
8087
|
+
}
|
|
8088
|
+
namespace $429 {
|
|
8089
|
+
namespace Content {
|
|
8090
|
+
interface ApplicationJson {
|
|
8091
|
+
[k: string]: unknown;
|
|
8092
|
+
}
|
|
8093
|
+
}
|
|
8094
|
+
}
|
|
8095
|
+
namespace Default {
|
|
8096
|
+
namespace Content {
|
|
8097
|
+
interface ApplicationJson {
|
|
8098
|
+
[k: string]: unknown;
|
|
8099
|
+
}
|
|
8100
|
+
}
|
|
8101
|
+
}
|
|
8102
|
+
}
|
|
8103
|
+
}
|
|
8104
|
+
}
|
|
8105
|
+
namespace V2CustomerInvitesCustomerInviteId {
|
|
8106
|
+
namespace Get {
|
|
8107
|
+
namespace Parameters {
|
|
8108
|
+
type Path = {
|
|
8109
|
+
customerInviteId: string;
|
|
8110
|
+
};
|
|
8111
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8112
|
+
type Query = {};
|
|
8113
|
+
}
|
|
8114
|
+
namespace Responses {
|
|
8115
|
+
namespace $200 {
|
|
8116
|
+
namespace Content {
|
|
8117
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite;
|
|
8118
|
+
}
|
|
8119
|
+
}
|
|
8120
|
+
namespace $404 {
|
|
8121
|
+
namespace Content {
|
|
8122
|
+
interface ApplicationJson {
|
|
8123
|
+
[k: string]: unknown;
|
|
8124
|
+
}
|
|
8125
|
+
}
|
|
8126
|
+
}
|
|
8127
|
+
namespace $429 {
|
|
8128
|
+
namespace Content {
|
|
8129
|
+
interface ApplicationJson {
|
|
8130
|
+
[k: string]: unknown;
|
|
8131
|
+
}
|
|
8132
|
+
}
|
|
8133
|
+
}
|
|
8134
|
+
namespace Default {
|
|
8135
|
+
namespace Content {
|
|
8136
|
+
interface ApplicationJson {
|
|
8137
|
+
[k: string]: unknown;
|
|
8138
|
+
}
|
|
8139
|
+
}
|
|
8140
|
+
}
|
|
8141
|
+
}
|
|
8142
|
+
}
|
|
8143
|
+
namespace Delete {
|
|
8144
|
+
namespace Parameters {
|
|
8145
|
+
type Path = {
|
|
8146
|
+
customerInviteId: string;
|
|
8147
|
+
};
|
|
8148
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8149
|
+
type Query = {};
|
|
8150
|
+
}
|
|
8151
|
+
namespace Responses {
|
|
8152
|
+
namespace $204 {
|
|
8153
|
+
namespace Content {
|
|
8154
|
+
type Empty = unknown;
|
|
8155
|
+
}
|
|
8156
|
+
}
|
|
8157
|
+
namespace $429 {
|
|
8158
|
+
namespace Content {
|
|
8159
|
+
interface ApplicationJson {
|
|
8160
|
+
[k: string]: unknown;
|
|
8161
|
+
}
|
|
8162
|
+
}
|
|
8163
|
+
}
|
|
8164
|
+
namespace Default {
|
|
8165
|
+
namespace Content {
|
|
8166
|
+
interface ApplicationJson {
|
|
8167
|
+
[k: string]: unknown;
|
|
8168
|
+
}
|
|
8169
|
+
}
|
|
8170
|
+
}
|
|
8171
|
+
}
|
|
8172
|
+
}
|
|
8173
|
+
}
|
|
8174
|
+
namespace V2CustomerMembershipsCustomerMembershipId {
|
|
8175
|
+
namespace Get {
|
|
8176
|
+
namespace Parameters {
|
|
8177
|
+
type Path = {
|
|
8178
|
+
customerMembershipId: string;
|
|
8179
|
+
};
|
|
8180
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8181
|
+
type Query = {};
|
|
8182
|
+
}
|
|
8183
|
+
namespace Responses {
|
|
8184
|
+
namespace $200 {
|
|
8185
|
+
namespace Content {
|
|
8186
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership;
|
|
8187
|
+
}
|
|
8188
|
+
}
|
|
8189
|
+
namespace $404 {
|
|
8190
|
+
namespace Content {
|
|
8191
|
+
interface ApplicationJson {
|
|
8192
|
+
[k: string]: unknown;
|
|
8193
|
+
}
|
|
8194
|
+
}
|
|
8195
|
+
}
|
|
8196
|
+
namespace $429 {
|
|
8197
|
+
namespace Content {
|
|
8198
|
+
interface ApplicationJson {
|
|
8199
|
+
[k: string]: unknown;
|
|
8200
|
+
}
|
|
8201
|
+
}
|
|
8202
|
+
}
|
|
8203
|
+
namespace Default {
|
|
8204
|
+
namespace Content {
|
|
8205
|
+
interface ApplicationJson {
|
|
8206
|
+
[k: string]: unknown;
|
|
8207
|
+
}
|
|
8208
|
+
}
|
|
8209
|
+
}
|
|
8210
|
+
}
|
|
8211
|
+
}
|
|
8212
|
+
namespace Delete {
|
|
8213
|
+
namespace Parameters {
|
|
8214
|
+
type Path = {
|
|
8215
|
+
customerMembershipId: string;
|
|
8216
|
+
};
|
|
8217
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7648
8218
|
type Query = {};
|
|
7649
8219
|
}
|
|
7650
8220
|
namespace Responses {
|
|
@@ -9917,6 +10487,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
9917
10487
|
page?: number;
|
|
9918
10488
|
limit?: number;
|
|
9919
10489
|
domainSearchName?: string;
|
|
10490
|
+
contactHash?: string;
|
|
9920
10491
|
};
|
|
9921
10492
|
}
|
|
9922
10493
|
namespace Responses {
|
|
@@ -11006,7 +11577,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11006
11577
|
type Path = {
|
|
11007
11578
|
contributorId: string;
|
|
11008
11579
|
};
|
|
11009
|
-
type Header = {}
|
|
11580
|
+
type Header = {};
|
|
11010
11581
|
type Query = {};
|
|
11011
11582
|
}
|
|
11012
11583
|
namespace Responses {
|
|
@@ -11045,7 +11616,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11045
11616
|
type Path = {
|
|
11046
11617
|
extensionId: string;
|
|
11047
11618
|
};
|
|
11048
|
-
type Header = {}
|
|
11619
|
+
type Header = {};
|
|
11049
11620
|
type Query = {};
|
|
11050
11621
|
}
|
|
11051
11622
|
namespace Responses {
|
|
@@ -11054,6 +11625,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11054
11625
|
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtension;
|
|
11055
11626
|
}
|
|
11056
11627
|
}
|
|
11628
|
+
namespace $404 {
|
|
11629
|
+
namespace Content {
|
|
11630
|
+
interface ApplicationJson {
|
|
11631
|
+
[k: string]: unknown;
|
|
11632
|
+
}
|
|
11633
|
+
}
|
|
11634
|
+
}
|
|
11057
11635
|
namespace $429 {
|
|
11058
11636
|
namespace Content {
|
|
11059
11637
|
interface ApplicationJson {
|
|
@@ -11077,7 +11655,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11077
11655
|
type Path = {
|
|
11078
11656
|
serial: string;
|
|
11079
11657
|
};
|
|
11080
|
-
type Header = {}
|
|
11658
|
+
type Header = {};
|
|
11081
11659
|
type Query = {};
|
|
11082
11660
|
}
|
|
11083
11661
|
namespace Responses {
|
|
@@ -11114,7 +11692,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11114
11692
|
namespace Get {
|
|
11115
11693
|
namespace Parameters {
|
|
11116
11694
|
type Path = {};
|
|
11117
|
-
type Header = {}
|
|
11695
|
+
type Header = {};
|
|
11118
11696
|
type Query = {
|
|
11119
11697
|
limit?: number;
|
|
11120
11698
|
skip?: number;
|
|
@@ -11148,7 +11726,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11148
11726
|
namespace Get {
|
|
11149
11727
|
namespace Parameters {
|
|
11150
11728
|
type Path = {};
|
|
11151
|
-
type Header = {}
|
|
11729
|
+
type Header = {};
|
|
11152
11730
|
type Query = {
|
|
11153
11731
|
context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
11154
11732
|
limit?: number;
|
|
@@ -11255,8 +11833,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11255
11833
|
type Path = {
|
|
11256
11834
|
fileId: string;
|
|
11257
11835
|
};
|
|
11258
|
-
type Header = {
|
|
11259
|
-
|
|
11836
|
+
type Header = {
|
|
11837
|
+
Token?: string;
|
|
11838
|
+
};
|
|
11839
|
+
type Query = {
|
|
11840
|
+
token?: string;
|
|
11841
|
+
};
|
|
11260
11842
|
}
|
|
11261
11843
|
namespace Responses {
|
|
11262
11844
|
namespace $200 {
|
|
@@ -11433,7 +12015,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11433
12015
|
"Content-Disposition"?: "inline" | "attachment";
|
|
11434
12016
|
Token?: string;
|
|
11435
12017
|
};
|
|
11436
|
-
type Query = {
|
|
12018
|
+
type Query = {
|
|
12019
|
+
token?: string;
|
|
12020
|
+
};
|
|
11437
12021
|
}
|
|
11438
12022
|
namespace Responses {
|
|
11439
12023
|
namespace $200 {
|
|
@@ -11513,7 +12097,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11513
12097
|
"Content-Disposition"?: "inline" | "attachment";
|
|
11514
12098
|
Token?: string;
|
|
11515
12099
|
};
|
|
11516
|
-
type Query = {
|
|
12100
|
+
type Query = {
|
|
12101
|
+
token?: string;
|
|
12102
|
+
};
|
|
11517
12103
|
}
|
|
11518
12104
|
namespace Responses {
|
|
11519
12105
|
namespace $200 {
|
|
@@ -11588,6 +12174,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11588
12174
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
11589
12175
|
type Query = {
|
|
11590
12176
|
projectId?: string;
|
|
12177
|
+
certificateId?: string;
|
|
12178
|
+
limit?: number;
|
|
12179
|
+
skip?: number;
|
|
12180
|
+
page?: number;
|
|
11591
12181
|
};
|
|
11592
12182
|
}
|
|
11593
12183
|
namespace Responses {
|
|
@@ -11796,20 +12386,75 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11796
12386
|
}
|
|
11797
12387
|
}
|
|
11798
12388
|
}
|
|
11799
|
-
namespace
|
|
11800
|
-
|
|
11801
|
-
namespace Patch {
|
|
12389
|
+
namespace V2ActionsListIngressesCompatibleWithCertificate {
|
|
12390
|
+
namespace Post {
|
|
11802
12391
|
namespace Parameters {
|
|
11803
|
-
type Path = {
|
|
11804
|
-
|
|
11805
|
-
|
|
11806
|
-
|
|
11807
|
-
|
|
11808
|
-
|
|
11809
|
-
|
|
11810
|
-
|
|
11811
|
-
|
|
11812
|
-
|
|
12392
|
+
type Path = {};
|
|
12393
|
+
interface RequestBody {
|
|
12394
|
+
/**
|
|
12395
|
+
* PEM-encoded certificate. Linebreaks have to be escaped with
|
|
12396
|
+
* .
|
|
12397
|
+
*/
|
|
12398
|
+
certificate: string;
|
|
12399
|
+
/**
|
|
12400
|
+
* The projects UUID.
|
|
12401
|
+
*/
|
|
12402
|
+
projectId: string;
|
|
12403
|
+
}
|
|
12404
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12405
|
+
type Query = {};
|
|
12406
|
+
}
|
|
12407
|
+
namespace Responses {
|
|
12408
|
+
namespace $200 {
|
|
12409
|
+
namespace Content {
|
|
12410
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.IngressIngress[];
|
|
12411
|
+
}
|
|
12412
|
+
}
|
|
12413
|
+
namespace $400 {
|
|
12414
|
+
namespace Content {
|
|
12415
|
+
interface ApplicationJson {
|
|
12416
|
+
[k: string]: unknown;
|
|
12417
|
+
}
|
|
12418
|
+
}
|
|
12419
|
+
}
|
|
12420
|
+
namespace $404 {
|
|
12421
|
+
namespace Content {
|
|
12422
|
+
interface ApplicationJson {
|
|
12423
|
+
[k: string]: unknown;
|
|
12424
|
+
}
|
|
12425
|
+
}
|
|
12426
|
+
}
|
|
12427
|
+
namespace $429 {
|
|
12428
|
+
namespace Content {
|
|
12429
|
+
interface ApplicationJson {
|
|
12430
|
+
[k: string]: unknown;
|
|
12431
|
+
}
|
|
12432
|
+
}
|
|
12433
|
+
}
|
|
12434
|
+
namespace Default {
|
|
12435
|
+
namespace Content {
|
|
12436
|
+
interface ApplicationJson {
|
|
12437
|
+
[k: string]: unknown;
|
|
12438
|
+
}
|
|
12439
|
+
}
|
|
12440
|
+
}
|
|
12441
|
+
}
|
|
12442
|
+
}
|
|
12443
|
+
}
|
|
12444
|
+
namespace V2ProjectsProjectIdIngresses { }
|
|
12445
|
+
namespace V2IngressesIngressIdPaths {
|
|
12446
|
+
namespace Patch {
|
|
12447
|
+
namespace Parameters {
|
|
12448
|
+
type Path = {
|
|
12449
|
+
ingressId: string;
|
|
12450
|
+
};
|
|
12451
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.IngressPath[];
|
|
12452
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12453
|
+
type Query = {};
|
|
12454
|
+
}
|
|
12455
|
+
namespace Responses {
|
|
12456
|
+
namespace $204 {
|
|
12457
|
+
namespace Content {
|
|
11813
12458
|
type Empty = unknown;
|
|
11814
12459
|
}
|
|
11815
12460
|
}
|
|
@@ -11890,9 +12535,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11890
12535
|
ingressId: string;
|
|
11891
12536
|
};
|
|
11892
12537
|
type RequestBody = {
|
|
11893
|
-
/**
|
|
11894
|
-
* Has to be `true`, as ssl cannot be deactivated.
|
|
11895
|
-
*/
|
|
11896
12538
|
acme: boolean;
|
|
11897
12539
|
/**
|
|
11898
12540
|
* @deprecated
|
|
@@ -11917,6 +12559,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11917
12559
|
}
|
|
11918
12560
|
}
|
|
11919
12561
|
}
|
|
12562
|
+
namespace $403 {
|
|
12563
|
+
namespace Content {
|
|
12564
|
+
interface ApplicationJson {
|
|
12565
|
+
[k: string]: unknown;
|
|
12566
|
+
}
|
|
12567
|
+
}
|
|
12568
|
+
}
|
|
11920
12569
|
namespace $404 {
|
|
11921
12570
|
namespace Content {
|
|
11922
12571
|
interface ApplicationJson {
|
|
@@ -11924,6 +12573,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11924
12573
|
}
|
|
11925
12574
|
}
|
|
11926
12575
|
}
|
|
12576
|
+
namespace $412 {
|
|
12577
|
+
namespace Content {
|
|
12578
|
+
interface ApplicationJson {
|
|
12579
|
+
[k: string]: unknown;
|
|
12580
|
+
}
|
|
12581
|
+
}
|
|
12582
|
+
}
|
|
11927
12583
|
namespace $429 {
|
|
11928
12584
|
namespace Content {
|
|
11929
12585
|
interface ApplicationJson {
|
|
@@ -12195,7 +12851,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12195
12851
|
projectId: string;
|
|
12196
12852
|
};
|
|
12197
12853
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12198
|
-
type Query = {
|
|
12854
|
+
type Query = {
|
|
12855
|
+
search?: string;
|
|
12856
|
+
limit?: number;
|
|
12857
|
+
skip?: number;
|
|
12858
|
+
page?: number;
|
|
12859
|
+
};
|
|
12199
12860
|
}
|
|
12200
12861
|
namespace Responses {
|
|
12201
12862
|
namespace $200 {
|
|
@@ -12334,7 +12995,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12334
12995
|
projectId: string;
|
|
12335
12996
|
};
|
|
12336
12997
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12337
|
-
type Query = {
|
|
12998
|
+
type Query = {
|
|
12999
|
+
search?: string;
|
|
13000
|
+
limit?: number;
|
|
13001
|
+
skip?: number;
|
|
13002
|
+
page?: number;
|
|
13003
|
+
};
|
|
12338
13004
|
}
|
|
12339
13005
|
namespace Responses {
|
|
12340
13006
|
namespace $200 {
|
|
@@ -13671,13 +14337,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13671
14337
|
interface RequestBody {
|
|
13672
14338
|
}
|
|
13673
14339
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13674
|
-
type Query = {
|
|
14340
|
+
type Query = {
|
|
14341
|
+
severities?: ("success" | "info" | "warning" | "error")[];
|
|
14342
|
+
referenceId?: string;
|
|
14343
|
+
referenceAggregate?: string;
|
|
14344
|
+
referenceDomain?: string;
|
|
14345
|
+
};
|
|
13675
14346
|
}
|
|
13676
14347
|
namespace Responses {
|
|
13677
14348
|
namespace $200 {
|
|
13678
14349
|
namespace Content {
|
|
13679
14350
|
interface ApplicationJson {
|
|
13680
14351
|
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
14352
|
+
/**
|
|
14353
|
+
* The number of notifications that have been updated.
|
|
14354
|
+
*/
|
|
14355
|
+
updatedCount: number;
|
|
13681
14356
|
}
|
|
13682
14357
|
}
|
|
13683
14358
|
}
|
|
@@ -15931,6 +16606,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15931
16606
|
namespace Parameters {
|
|
15932
16607
|
type Path = {};
|
|
15933
16608
|
interface RequestBody {
|
|
16609
|
+
additionalServices: {
|
|
16610
|
+
dataCompare: "default" | "additionalCompare";
|
|
16611
|
+
};
|
|
15934
16612
|
/**
|
|
15935
16613
|
* Should all project releated domains should be transferred to mittwald?
|
|
15936
16614
|
*/
|
|
@@ -15939,6 +16617,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15939
16617
|
* Has to be true. Do you accept that our mittwald team can change and get password from your current provider?
|
|
15940
16618
|
*/
|
|
15941
16619
|
allowPasswordChange: boolean;
|
|
16620
|
+
/**
|
|
16621
|
+
* Type of the article you want to relocate.
|
|
16622
|
+
*/
|
|
16623
|
+
articleType: "cms-hosting" | "cms-hosting-express" | "onlineshop" | "onlineshop-express";
|
|
15942
16624
|
contact: {
|
|
15943
16625
|
email: string;
|
|
15944
16626
|
firstName: string;
|
|
@@ -15953,6 +16635,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15953
16635
|
* Anything our customer service needs to know for the relocation process.
|
|
15954
16636
|
*/
|
|
15955
16637
|
notes?: string;
|
|
16638
|
+
prices: {
|
|
16639
|
+
positions: {
|
|
16640
|
+
name: string;
|
|
16641
|
+
price: number;
|
|
16642
|
+
}[];
|
|
16643
|
+
total: number;
|
|
16644
|
+
};
|
|
15956
16645
|
provider: {
|
|
15957
16646
|
/**
|
|
15958
16647
|
* Url to the control panel of the provider
|
|
@@ -16547,32 +17236,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16547
17236
|
}
|
|
16548
17237
|
}
|
|
16549
17238
|
namespace V2SshusersSshUserId { }
|
|
16550
|
-
namespace
|
|
17239
|
+
namespace V2CertificatesCertificateIdActionsCheckReplaceCertificate {
|
|
16551
17240
|
namespace Post {
|
|
16552
17241
|
namespace Parameters {
|
|
16553
17242
|
type Path = {
|
|
16554
|
-
|
|
17243
|
+
certificateId: string;
|
|
16555
17244
|
};
|
|
16556
17245
|
interface RequestBody {
|
|
16557
|
-
|
|
17246
|
+
certificate: string;
|
|
17247
|
+
privateKey?: string;
|
|
16558
17248
|
}
|
|
16559
17249
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
16560
17250
|
type Query = {};
|
|
16561
17251
|
}
|
|
16562
17252
|
namespace Responses {
|
|
16563
|
-
namespace $
|
|
16564
|
-
namespace Content {
|
|
16565
|
-
type Empty = unknown;
|
|
16566
|
-
}
|
|
16567
|
-
}
|
|
16568
|
-
namespace $400 {
|
|
17253
|
+
namespace $200 {
|
|
16569
17254
|
namespace Content {
|
|
16570
|
-
|
|
16571
|
-
[k: string]: unknown;
|
|
16572
|
-
}
|
|
17255
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCheckReplaceCertificateResponse;
|
|
16573
17256
|
}
|
|
16574
17257
|
}
|
|
16575
|
-
namespace $
|
|
17258
|
+
namespace $404 {
|
|
16576
17259
|
namespace Content {
|
|
16577
17260
|
interface ApplicationJson {
|
|
16578
17261
|
[k: string]: unknown;
|
|
@@ -16595,21 +17278,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16595
17278
|
}
|
|
16596
17279
|
}
|
|
16597
17280
|
}
|
|
16598
|
-
|
|
17281
|
+
}
|
|
17282
|
+
namespace V2CertificateRequests {
|
|
17283
|
+
namespace Get {
|
|
16599
17284
|
namespace Parameters {
|
|
16600
|
-
type Path = {
|
|
16601
|
-
userId: string;
|
|
16602
|
-
};
|
|
17285
|
+
type Path = {};
|
|
16603
17286
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
16604
|
-
type Query = {
|
|
17287
|
+
type Query = {
|
|
17288
|
+
projectId?: string;
|
|
17289
|
+
ingressId?: string;
|
|
17290
|
+
};
|
|
16605
17291
|
}
|
|
16606
17292
|
namespace Responses {
|
|
16607
|
-
namespace $
|
|
17293
|
+
namespace $200 {
|
|
16608
17294
|
namespace Content {
|
|
16609
|
-
type
|
|
17295
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificateRequest[];
|
|
16610
17296
|
}
|
|
16611
17297
|
}
|
|
16612
|
-
namespace $
|
|
17298
|
+
namespace $404 {
|
|
16613
17299
|
namespace Content {
|
|
16614
17300
|
interface ApplicationJson {
|
|
16615
17301
|
[k: string]: unknown;
|
|
@@ -16632,58 +17318,31 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16632
17318
|
}
|
|
16633
17319
|
}
|
|
16634
17320
|
}
|
|
16635
|
-
}
|
|
16636
|
-
namespace V2SignupAuthenticationMfa { }
|
|
16637
|
-
namespace V2AuthenticateMfa {
|
|
16638
17321
|
namespace Post {
|
|
16639
17322
|
namespace Parameters {
|
|
16640
17323
|
type Path = {};
|
|
16641
|
-
|
|
16642
|
-
|
|
16643
|
-
* The email of the user.
|
|
16644
|
-
*/
|
|
16645
|
-
email?: string;
|
|
16646
|
-
/**
|
|
16647
|
-
* The second factor - otp code or recovery code.
|
|
16648
|
-
*/
|
|
16649
|
-
multiFactorCode: string;
|
|
16650
|
-
/**
|
|
16651
|
-
* The password of the user.
|
|
16652
|
-
*/
|
|
16653
|
-
password?: string;
|
|
16654
|
-
}
|
|
16655
|
-
type Header = {};
|
|
17324
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateRequest | MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateWithCSRRequest;
|
|
17325
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
16656
17326
|
type Query = {};
|
|
16657
17327
|
}
|
|
16658
17328
|
namespace Responses {
|
|
16659
|
-
namespace $
|
|
17329
|
+
namespace $201 {
|
|
16660
17330
|
namespace Content {
|
|
16661
|
-
|
|
16662
|
-
/**
|
|
16663
|
-
* The expiration date of the token.
|
|
16664
|
-
*/
|
|
16665
|
-
expires: string;
|
|
16666
|
-
/**
|
|
16667
|
-
* Refresh token to refresh your access token even after it has expired.
|
|
16668
|
-
*/
|
|
16669
|
-
refreshToken: string;
|
|
16670
|
-
/**
|
|
16671
|
-
* Public token to identify yourself against the api gateway.
|
|
16672
|
-
*/
|
|
16673
|
-
token: string;
|
|
16674
|
-
}
|
|
17331
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateResponse;
|
|
16675
17332
|
}
|
|
16676
17333
|
}
|
|
16677
17334
|
namespace $400 {
|
|
16678
17335
|
namespace Content {
|
|
16679
|
-
|
|
17336
|
+
interface ApplicationJson {
|
|
17337
|
+
[k: string]: unknown;
|
|
17338
|
+
}
|
|
16680
17339
|
}
|
|
16681
17340
|
}
|
|
16682
|
-
namespace $
|
|
17341
|
+
namespace $404 {
|
|
16683
17342
|
namespace Content {
|
|
16684
|
-
|
|
16685
|
-
|
|
16686
|
-
}
|
|
17343
|
+
interface ApplicationJson {
|
|
17344
|
+
[k: string]: unknown;
|
|
17345
|
+
}
|
|
16687
17346
|
}
|
|
16688
17347
|
}
|
|
16689
17348
|
namespace $429 {
|
|
@@ -16703,60 +17362,65 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16703
17362
|
}
|
|
16704
17363
|
}
|
|
16705
17364
|
}
|
|
16706
|
-
namespace
|
|
16707
|
-
|
|
16708
|
-
namespace Post {
|
|
17365
|
+
namespace V2CertificateRequestCertificateRequestId {
|
|
17366
|
+
namespace Delete {
|
|
16709
17367
|
namespace Parameters {
|
|
16710
|
-
type Path = {
|
|
16711
|
-
|
|
16712
|
-
|
|
16713
|
-
|
|
16714
|
-
*/
|
|
16715
|
-
email: string;
|
|
16716
|
-
/**
|
|
16717
|
-
* Password of the User.
|
|
16718
|
-
*/
|
|
16719
|
-
password: string;
|
|
16720
|
-
}
|
|
16721
|
-
type Header = {};
|
|
17368
|
+
type Path = {
|
|
17369
|
+
certificateRequestId: string;
|
|
17370
|
+
};
|
|
17371
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
16722
17372
|
type Query = {};
|
|
16723
17373
|
}
|
|
16724
17374
|
namespace Responses {
|
|
16725
|
-
namespace $
|
|
17375
|
+
namespace $204 {
|
|
17376
|
+
namespace Content {
|
|
17377
|
+
type Empty = unknown;
|
|
17378
|
+
}
|
|
17379
|
+
}
|
|
17380
|
+
namespace $404 {
|
|
16726
17381
|
namespace Content {
|
|
16727
17382
|
interface ApplicationJson {
|
|
16728
|
-
|
|
16729
|
-
* The expiration date of the token.
|
|
16730
|
-
*/
|
|
16731
|
-
expires: string;
|
|
16732
|
-
/**
|
|
16733
|
-
* Refresh token to refresh your access token even after it has expired.
|
|
16734
|
-
*/
|
|
16735
|
-
refreshToken: string;
|
|
16736
|
-
/**
|
|
16737
|
-
* Public token to identify yourself against the api gateway.
|
|
16738
|
-
*/
|
|
16739
|
-
token: string;
|
|
17383
|
+
[k: string]: unknown;
|
|
16740
17384
|
}
|
|
16741
17385
|
}
|
|
16742
17386
|
}
|
|
16743
|
-
namespace $
|
|
17387
|
+
namespace $429 {
|
|
16744
17388
|
namespace Content {
|
|
16745
17389
|
interface ApplicationJson {
|
|
16746
|
-
|
|
17390
|
+
[k: string]: unknown;
|
|
16747
17391
|
}
|
|
16748
17392
|
}
|
|
16749
17393
|
}
|
|
16750
|
-
namespace
|
|
17394
|
+
namespace Default {
|
|
16751
17395
|
namespace Content {
|
|
16752
17396
|
interface ApplicationJson {
|
|
16753
17397
|
[k: string]: unknown;
|
|
16754
17398
|
}
|
|
16755
17399
|
}
|
|
16756
17400
|
}
|
|
16757
|
-
|
|
17401
|
+
}
|
|
17402
|
+
}
|
|
17403
|
+
}
|
|
17404
|
+
namespace V2CertificateCertificateId {
|
|
17405
|
+
namespace Delete {
|
|
17406
|
+
namespace Parameters {
|
|
17407
|
+
type Path = {
|
|
17408
|
+
certificateId: string;
|
|
17409
|
+
};
|
|
17410
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17411
|
+
type Query = {};
|
|
17412
|
+
}
|
|
17413
|
+
namespace Responses {
|
|
17414
|
+
namespace $204 {
|
|
16758
17415
|
namespace Content {
|
|
16759
|
-
type
|
|
17416
|
+
type Empty = unknown;
|
|
17417
|
+
}
|
|
17418
|
+
}
|
|
17419
|
+
namespace $404 {
|
|
17420
|
+
namespace Content {
|
|
17421
|
+
interface ApplicationJson {
|
|
17422
|
+
[k: string]: unknown;
|
|
17423
|
+
}
|
|
16760
17424
|
}
|
|
16761
17425
|
}
|
|
16762
17426
|
namespace $429 {
|
|
@@ -16776,12 +17440,414 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16776
17440
|
}
|
|
16777
17441
|
}
|
|
16778
17442
|
}
|
|
16779
|
-
namespace
|
|
16780
|
-
namespace
|
|
17443
|
+
namespace V2CertificateRequestsCertificateRequestId {
|
|
17444
|
+
namespace Get {
|
|
16781
17445
|
namespace Parameters {
|
|
16782
|
-
type Path = {
|
|
16783
|
-
|
|
16784
|
-
|
|
17446
|
+
type Path = {
|
|
17447
|
+
certificateRequestId: string;
|
|
17448
|
+
};
|
|
17449
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17450
|
+
type Query = {};
|
|
17451
|
+
}
|
|
17452
|
+
namespace Responses {
|
|
17453
|
+
namespace $200 {
|
|
17454
|
+
namespace Content {
|
|
17455
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificateRequest;
|
|
17456
|
+
}
|
|
17457
|
+
}
|
|
17458
|
+
namespace $404 {
|
|
17459
|
+
namespace Content {
|
|
17460
|
+
interface ApplicationJson {
|
|
17461
|
+
[k: string]: unknown;
|
|
17462
|
+
}
|
|
17463
|
+
}
|
|
17464
|
+
}
|
|
17465
|
+
namespace $429 {
|
|
17466
|
+
namespace Content {
|
|
17467
|
+
interface ApplicationJson {
|
|
17468
|
+
[k: string]: unknown;
|
|
17469
|
+
}
|
|
17470
|
+
}
|
|
17471
|
+
}
|
|
17472
|
+
namespace Default {
|
|
17473
|
+
namespace Content {
|
|
17474
|
+
interface ApplicationJson {
|
|
17475
|
+
[k: string]: unknown;
|
|
17476
|
+
}
|
|
17477
|
+
}
|
|
17478
|
+
}
|
|
17479
|
+
}
|
|
17480
|
+
}
|
|
17481
|
+
}
|
|
17482
|
+
namespace V2CertificatesCertificateId {
|
|
17483
|
+
namespace Get {
|
|
17484
|
+
namespace Parameters {
|
|
17485
|
+
type Path = {
|
|
17486
|
+
certificateId: string;
|
|
17487
|
+
};
|
|
17488
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17489
|
+
type Query = {};
|
|
17490
|
+
}
|
|
17491
|
+
namespace Responses {
|
|
17492
|
+
namespace $200 {
|
|
17493
|
+
namespace Content {
|
|
17494
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificate;
|
|
17495
|
+
}
|
|
17496
|
+
}
|
|
17497
|
+
namespace $404 {
|
|
17498
|
+
namespace Content {
|
|
17499
|
+
interface ApplicationJson {
|
|
17500
|
+
[k: string]: unknown;
|
|
17501
|
+
}
|
|
17502
|
+
}
|
|
17503
|
+
}
|
|
17504
|
+
namespace $429 {
|
|
17505
|
+
namespace Content {
|
|
17506
|
+
interface ApplicationJson {
|
|
17507
|
+
[k: string]: unknown;
|
|
17508
|
+
}
|
|
17509
|
+
}
|
|
17510
|
+
}
|
|
17511
|
+
namespace Default {
|
|
17512
|
+
namespace Content {
|
|
17513
|
+
interface ApplicationJson {
|
|
17514
|
+
[k: string]: unknown;
|
|
17515
|
+
}
|
|
17516
|
+
}
|
|
17517
|
+
}
|
|
17518
|
+
}
|
|
17519
|
+
}
|
|
17520
|
+
namespace Put {
|
|
17521
|
+
namespace Parameters {
|
|
17522
|
+
type Path = {
|
|
17523
|
+
certificateId: string;
|
|
17524
|
+
};
|
|
17525
|
+
interface RequestBody {
|
|
17526
|
+
certificate: string;
|
|
17527
|
+
privateKey?: string;
|
|
17528
|
+
}
|
|
17529
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17530
|
+
type Query = {};
|
|
17531
|
+
}
|
|
17532
|
+
namespace Responses {
|
|
17533
|
+
namespace $204 {
|
|
17534
|
+
namespace Content {
|
|
17535
|
+
type Empty = unknown;
|
|
17536
|
+
}
|
|
17537
|
+
}
|
|
17538
|
+
namespace $400 {
|
|
17539
|
+
namespace Content {
|
|
17540
|
+
interface ApplicationJson {
|
|
17541
|
+
[k: string]: unknown;
|
|
17542
|
+
}
|
|
17543
|
+
}
|
|
17544
|
+
}
|
|
17545
|
+
namespace $404 {
|
|
17546
|
+
namespace Content {
|
|
17547
|
+
interface ApplicationJson {
|
|
17548
|
+
[k: string]: unknown;
|
|
17549
|
+
}
|
|
17550
|
+
}
|
|
17551
|
+
}
|
|
17552
|
+
namespace $429 {
|
|
17553
|
+
namespace Content {
|
|
17554
|
+
interface ApplicationJson {
|
|
17555
|
+
[k: string]: unknown;
|
|
17556
|
+
}
|
|
17557
|
+
}
|
|
17558
|
+
}
|
|
17559
|
+
namespace Default {
|
|
17560
|
+
namespace Content {
|
|
17561
|
+
interface ApplicationJson {
|
|
17562
|
+
[k: string]: unknown;
|
|
17563
|
+
}
|
|
17564
|
+
}
|
|
17565
|
+
}
|
|
17566
|
+
}
|
|
17567
|
+
}
|
|
17568
|
+
}
|
|
17569
|
+
namespace V2Certificates {
|
|
17570
|
+
namespace Get {
|
|
17571
|
+
namespace Parameters {
|
|
17572
|
+
type Path = {};
|
|
17573
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17574
|
+
type Query = {
|
|
17575
|
+
projectId?: string;
|
|
17576
|
+
ingressId?: string;
|
|
17577
|
+
};
|
|
17578
|
+
}
|
|
17579
|
+
namespace Responses {
|
|
17580
|
+
namespace $200 {
|
|
17581
|
+
namespace Content {
|
|
17582
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificate[];
|
|
17583
|
+
}
|
|
17584
|
+
}
|
|
17585
|
+
namespace $404 {
|
|
17586
|
+
namespace Content {
|
|
17587
|
+
interface ApplicationJson {
|
|
17588
|
+
[k: string]: unknown;
|
|
17589
|
+
}
|
|
17590
|
+
}
|
|
17591
|
+
}
|
|
17592
|
+
namespace $429 {
|
|
17593
|
+
namespace Content {
|
|
17594
|
+
interface ApplicationJson {
|
|
17595
|
+
[k: string]: unknown;
|
|
17596
|
+
}
|
|
17597
|
+
}
|
|
17598
|
+
}
|
|
17599
|
+
namespace Default {
|
|
17600
|
+
namespace Content {
|
|
17601
|
+
interface ApplicationJson {
|
|
17602
|
+
[k: string]: unknown;
|
|
17603
|
+
}
|
|
17604
|
+
}
|
|
17605
|
+
}
|
|
17606
|
+
}
|
|
17607
|
+
}
|
|
17608
|
+
}
|
|
17609
|
+
namespace V2UsersUserIdPhone {
|
|
17610
|
+
namespace Post {
|
|
17611
|
+
namespace Parameters {
|
|
17612
|
+
type Path = {
|
|
17613
|
+
userId: string;
|
|
17614
|
+
};
|
|
17615
|
+
interface RequestBody {
|
|
17616
|
+
phoneNumber: string;
|
|
17617
|
+
}
|
|
17618
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17619
|
+
type Query = {};
|
|
17620
|
+
}
|
|
17621
|
+
namespace Responses {
|
|
17622
|
+
namespace $204 {
|
|
17623
|
+
namespace Content {
|
|
17624
|
+
type Empty = unknown;
|
|
17625
|
+
}
|
|
17626
|
+
}
|
|
17627
|
+
namespace $400 {
|
|
17628
|
+
namespace Content {
|
|
17629
|
+
interface ApplicationJson {
|
|
17630
|
+
[k: string]: unknown;
|
|
17631
|
+
}
|
|
17632
|
+
}
|
|
17633
|
+
}
|
|
17634
|
+
namespace $409 {
|
|
17635
|
+
namespace Content {
|
|
17636
|
+
interface ApplicationJson {
|
|
17637
|
+
[k: string]: unknown;
|
|
17638
|
+
}
|
|
17639
|
+
}
|
|
17640
|
+
}
|
|
17641
|
+
namespace $429 {
|
|
17642
|
+
namespace Content {
|
|
17643
|
+
interface ApplicationJson {
|
|
17644
|
+
[k: string]: unknown;
|
|
17645
|
+
}
|
|
17646
|
+
}
|
|
17647
|
+
}
|
|
17648
|
+
namespace Default {
|
|
17649
|
+
namespace Content {
|
|
17650
|
+
interface ApplicationJson {
|
|
17651
|
+
[k: string]: unknown;
|
|
17652
|
+
}
|
|
17653
|
+
}
|
|
17654
|
+
}
|
|
17655
|
+
}
|
|
17656
|
+
}
|
|
17657
|
+
namespace Delete {
|
|
17658
|
+
namespace Parameters {
|
|
17659
|
+
type Path = {
|
|
17660
|
+
userId: string;
|
|
17661
|
+
};
|
|
17662
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17663
|
+
type Query = {};
|
|
17664
|
+
}
|
|
17665
|
+
namespace Responses {
|
|
17666
|
+
namespace $204 {
|
|
17667
|
+
namespace Content {
|
|
17668
|
+
type Empty = unknown;
|
|
17669
|
+
}
|
|
17670
|
+
}
|
|
17671
|
+
namespace $400 {
|
|
17672
|
+
namespace Content {
|
|
17673
|
+
interface ApplicationJson {
|
|
17674
|
+
[k: string]: unknown;
|
|
17675
|
+
}
|
|
17676
|
+
}
|
|
17677
|
+
}
|
|
17678
|
+
namespace $412 {
|
|
17679
|
+
namespace Content {
|
|
17680
|
+
interface ApplicationJson {
|
|
17681
|
+
[k: string]: unknown;
|
|
17682
|
+
}
|
|
17683
|
+
}
|
|
17684
|
+
}
|
|
17685
|
+
namespace $429 {
|
|
17686
|
+
namespace Content {
|
|
17687
|
+
interface ApplicationJson {
|
|
17688
|
+
[k: string]: unknown;
|
|
17689
|
+
}
|
|
17690
|
+
}
|
|
17691
|
+
}
|
|
17692
|
+
namespace Default {
|
|
17693
|
+
namespace Content {
|
|
17694
|
+
interface ApplicationJson {
|
|
17695
|
+
[k: string]: unknown;
|
|
17696
|
+
}
|
|
17697
|
+
}
|
|
17698
|
+
}
|
|
17699
|
+
}
|
|
17700
|
+
}
|
|
17701
|
+
}
|
|
17702
|
+
namespace V2SignupAuthenticationMfa { }
|
|
17703
|
+
namespace V2AuthenticateMfa {
|
|
17704
|
+
namespace Post {
|
|
17705
|
+
namespace Parameters {
|
|
17706
|
+
type Path = {};
|
|
17707
|
+
interface RequestBody {
|
|
17708
|
+
/**
|
|
17709
|
+
* The email of the user.
|
|
17710
|
+
*/
|
|
17711
|
+
email: string;
|
|
17712
|
+
/**
|
|
17713
|
+
* The second factor - otp code or recovery code.
|
|
17714
|
+
*/
|
|
17715
|
+
multiFactorCode: string;
|
|
17716
|
+
/**
|
|
17717
|
+
* The password of the user.
|
|
17718
|
+
*/
|
|
17719
|
+
password: string;
|
|
17720
|
+
}
|
|
17721
|
+
type Header = {};
|
|
17722
|
+
type Query = {};
|
|
17723
|
+
}
|
|
17724
|
+
namespace Responses {
|
|
17725
|
+
namespace $200 {
|
|
17726
|
+
namespace Content {
|
|
17727
|
+
interface ApplicationJson {
|
|
17728
|
+
/**
|
|
17729
|
+
* The expiration date of the token.
|
|
17730
|
+
*/
|
|
17731
|
+
expires: string;
|
|
17732
|
+
/**
|
|
17733
|
+
* Refresh token to refresh your access token even after it has expired.
|
|
17734
|
+
*/
|
|
17735
|
+
refreshToken: string;
|
|
17736
|
+
/**
|
|
17737
|
+
* Public token to identify yourself against the api gateway.
|
|
17738
|
+
*/
|
|
17739
|
+
token: string;
|
|
17740
|
+
}
|
|
17741
|
+
}
|
|
17742
|
+
}
|
|
17743
|
+
namespace $400 {
|
|
17744
|
+
namespace Content {
|
|
17745
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
17746
|
+
}
|
|
17747
|
+
}
|
|
17748
|
+
namespace $408 {
|
|
17749
|
+
namespace Content {
|
|
17750
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SignupDomainError & {
|
|
17751
|
+
name?: "FirstAuthenticationFactorExpired";
|
|
17752
|
+
};
|
|
17753
|
+
}
|
|
17754
|
+
}
|
|
17755
|
+
namespace $429 {
|
|
17756
|
+
namespace Content {
|
|
17757
|
+
interface ApplicationJson {
|
|
17758
|
+
[k: string]: unknown;
|
|
17759
|
+
}
|
|
17760
|
+
}
|
|
17761
|
+
}
|
|
17762
|
+
namespace Default {
|
|
17763
|
+
namespace Content {
|
|
17764
|
+
interface ApplicationJson {
|
|
17765
|
+
[k: string]: unknown;
|
|
17766
|
+
}
|
|
17767
|
+
}
|
|
17768
|
+
}
|
|
17769
|
+
}
|
|
17770
|
+
}
|
|
17771
|
+
}
|
|
17772
|
+
namespace V2SignupAuthentication { }
|
|
17773
|
+
namespace V2Authenticate {
|
|
17774
|
+
namespace Post {
|
|
17775
|
+
namespace Parameters {
|
|
17776
|
+
type Path = {};
|
|
17777
|
+
interface RequestBody {
|
|
17778
|
+
/**
|
|
17779
|
+
* The users Email-Address.
|
|
17780
|
+
*/
|
|
17781
|
+
email: string;
|
|
17782
|
+
/**
|
|
17783
|
+
* Password of the User.
|
|
17784
|
+
*/
|
|
17785
|
+
password: string;
|
|
17786
|
+
}
|
|
17787
|
+
type Header = {};
|
|
17788
|
+
type Query = {};
|
|
17789
|
+
}
|
|
17790
|
+
namespace Responses {
|
|
17791
|
+
namespace $200 {
|
|
17792
|
+
namespace Content {
|
|
17793
|
+
interface ApplicationJson {
|
|
17794
|
+
/**
|
|
17795
|
+
* The expiration date of the token.
|
|
17796
|
+
*/
|
|
17797
|
+
expires: string;
|
|
17798
|
+
/**
|
|
17799
|
+
* Refresh token to refresh your access token even after it has expired.
|
|
17800
|
+
*/
|
|
17801
|
+
refreshToken: string;
|
|
17802
|
+
/**
|
|
17803
|
+
* Public token to identify yourself against the api gateway.
|
|
17804
|
+
*/
|
|
17805
|
+
token: string;
|
|
17806
|
+
}
|
|
17807
|
+
}
|
|
17808
|
+
}
|
|
17809
|
+
namespace $202 {
|
|
17810
|
+
namespace Content {
|
|
17811
|
+
interface ApplicationJson {
|
|
17812
|
+
name?: "SecondFactorRequired";
|
|
17813
|
+
}
|
|
17814
|
+
}
|
|
17815
|
+
}
|
|
17816
|
+
namespace $400 {
|
|
17817
|
+
namespace Content {
|
|
17818
|
+
interface ApplicationJson {
|
|
17819
|
+
[k: string]: unknown;
|
|
17820
|
+
}
|
|
17821
|
+
}
|
|
17822
|
+
}
|
|
17823
|
+
namespace $401 {
|
|
17824
|
+
namespace Content {
|
|
17825
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
17826
|
+
}
|
|
17827
|
+
}
|
|
17828
|
+
namespace $429 {
|
|
17829
|
+
namespace Content {
|
|
17830
|
+
interface ApplicationJson {
|
|
17831
|
+
[k: string]: unknown;
|
|
17832
|
+
}
|
|
17833
|
+
}
|
|
17834
|
+
}
|
|
17835
|
+
namespace Default {
|
|
17836
|
+
namespace Content {
|
|
17837
|
+
interface ApplicationJson {
|
|
17838
|
+
[k: string]: unknown;
|
|
17839
|
+
}
|
|
17840
|
+
}
|
|
17841
|
+
}
|
|
17842
|
+
}
|
|
17843
|
+
}
|
|
17844
|
+
}
|
|
17845
|
+
namespace V2AuthenticateTokenRetrievalKey {
|
|
17846
|
+
namespace Post {
|
|
17847
|
+
namespace Parameters {
|
|
17848
|
+
type Path = {};
|
|
17849
|
+
interface RequestBody {
|
|
17850
|
+
accessTokenRetrievalKey: string;
|
|
16785
17851
|
userId: string;
|
|
16786
17852
|
}
|
|
16787
17853
|
type Header = {};
|
|
@@ -19008,5 +20074,99 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19008
20074
|
}
|
|
19009
20075
|
}
|
|
19010
20076
|
}
|
|
20077
|
+
namespace V2ActionsVerifyAddress {
|
|
20078
|
+
namespace Post {
|
|
20079
|
+
namespace Parameters {
|
|
20080
|
+
type Path = {};
|
|
20081
|
+
interface RequestBody {
|
|
20082
|
+
city: string;
|
|
20083
|
+
/**
|
|
20084
|
+
* Accepts the whole english or german name as well as the ISO 3166-2 country codes.
|
|
20085
|
+
*/
|
|
20086
|
+
country: string;
|
|
20087
|
+
/**
|
|
20088
|
+
* Includes the house number.
|
|
20089
|
+
*/
|
|
20090
|
+
street: string;
|
|
20091
|
+
zip: string;
|
|
20092
|
+
}
|
|
20093
|
+
type Header = {};
|
|
20094
|
+
type Query = {};
|
|
20095
|
+
}
|
|
20096
|
+
namespace Responses {
|
|
20097
|
+
namespace $200 {
|
|
20098
|
+
namespace Content {
|
|
20099
|
+
interface ApplicationJson {
|
|
20100
|
+
exists: boolean;
|
|
20101
|
+
}
|
|
20102
|
+
}
|
|
20103
|
+
}
|
|
20104
|
+
namespace $429 {
|
|
20105
|
+
namespace Content {
|
|
20106
|
+
interface ApplicationJson {
|
|
20107
|
+
[k: string]: unknown;
|
|
20108
|
+
}
|
|
20109
|
+
}
|
|
20110
|
+
}
|
|
20111
|
+
namespace $500 {
|
|
20112
|
+
namespace Content {
|
|
20113
|
+
type Empty = unknown;
|
|
20114
|
+
}
|
|
20115
|
+
}
|
|
20116
|
+
namespace Default {
|
|
20117
|
+
namespace Content {
|
|
20118
|
+
interface ApplicationJson {
|
|
20119
|
+
[k: string]: unknown;
|
|
20120
|
+
}
|
|
20121
|
+
}
|
|
20122
|
+
}
|
|
20123
|
+
}
|
|
20124
|
+
}
|
|
20125
|
+
}
|
|
20126
|
+
namespace V2ActionsVerifyCompany {
|
|
20127
|
+
namespace Post {
|
|
20128
|
+
namespace Parameters {
|
|
20129
|
+
type Path = {};
|
|
20130
|
+
interface RequestBody {
|
|
20131
|
+
name: string;
|
|
20132
|
+
}
|
|
20133
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20134
|
+
type Query = {};
|
|
20135
|
+
}
|
|
20136
|
+
namespace Responses {
|
|
20137
|
+
namespace $200 {
|
|
20138
|
+
namespace Content {
|
|
20139
|
+
interface ApplicationJson {
|
|
20140
|
+
exists: boolean;
|
|
20141
|
+
}
|
|
20142
|
+
}
|
|
20143
|
+
}
|
|
20144
|
+
namespace $412 {
|
|
20145
|
+
namespace Content {
|
|
20146
|
+
type Empty = unknown;
|
|
20147
|
+
}
|
|
20148
|
+
}
|
|
20149
|
+
namespace $429 {
|
|
20150
|
+
namespace Content {
|
|
20151
|
+
interface ApplicationJson {
|
|
20152
|
+
[k: string]: unknown;
|
|
20153
|
+
}
|
|
20154
|
+
}
|
|
20155
|
+
}
|
|
20156
|
+
namespace $500 {
|
|
20157
|
+
namespace Content {
|
|
20158
|
+
type Empty = unknown;
|
|
20159
|
+
}
|
|
20160
|
+
}
|
|
20161
|
+
namespace Default {
|
|
20162
|
+
namespace Content {
|
|
20163
|
+
interface ApplicationJson {
|
|
20164
|
+
[k: string]: unknown;
|
|
20165
|
+
}
|
|
20166
|
+
}
|
|
20167
|
+
}
|
|
20168
|
+
}
|
|
20169
|
+
}
|
|
20170
|
+
}
|
|
19011
20171
|
}
|
|
19012
20172
|
}
|