@mittwald/api-client 4.266.0 → 4.268.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/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.267.0';
|
|
@@ -5416,6 +5416,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5416
5416
|
}
|
|
5417
5417
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5418
5418
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5419
|
+
interface SslCheckReplaceDateChange {
|
|
5420
|
+
newValue: string;
|
|
5421
|
+
oldValue: string;
|
|
5422
|
+
}
|
|
5419
5423
|
interface SslContact {
|
|
5420
5424
|
city?: string;
|
|
5421
5425
|
company?: string;
|
|
@@ -5426,16 +5430,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5426
5430
|
organizationalUnit?: string;
|
|
5427
5431
|
state?: string;
|
|
5428
5432
|
}
|
|
5429
|
-
interface SslCheckReplaceDateChange {
|
|
5430
|
-
newValue: string;
|
|
5431
|
-
oldValue: string;
|
|
5432
|
-
}
|
|
5433
5433
|
type SslCertificateType = 0 | 1 | 2;
|
|
5434
|
-
interface SslCertificateData {
|
|
5435
|
-
caBundle?: string;
|
|
5436
|
-
certificate?: string;
|
|
5437
|
-
signingRequest?: string;
|
|
5438
|
-
}
|
|
5439
5434
|
interface SslCertificateRequestCreateResponse {
|
|
5440
5435
|
commonName?: string;
|
|
5441
5436
|
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
@@ -5446,6 +5441,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5446
5441
|
validFrom?: string;
|
|
5447
5442
|
validTo?: string;
|
|
5448
5443
|
}
|
|
5444
|
+
interface SslCertificateData {
|
|
5445
|
+
caBundle?: string;
|
|
5446
|
+
certificate?: string;
|
|
5447
|
+
signingRequest?: string;
|
|
5448
|
+
}
|
|
5449
|
+
interface SslCheckReplaceCertificateResponse {
|
|
5450
|
+
changes?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceChanges;
|
|
5451
|
+
errors?: MittwaldAPIV2.Components.Schemas.SslCertificateError[];
|
|
5452
|
+
isReplaceable: boolean;
|
|
5453
|
+
}
|
|
5454
|
+
interface SslCheckReplaceSliceChange {
|
|
5455
|
+
addedValues: string[];
|
|
5456
|
+
removedValues: string[];
|
|
5457
|
+
values: string[];
|
|
5458
|
+
}
|
|
5449
5459
|
interface SslCheckReplaceChanges {
|
|
5450
5460
|
commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
5451
5461
|
dnsNames?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceSliceChange;
|
|
@@ -5453,30 +5463,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5453
5463
|
validFrom?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
|
|
5454
5464
|
validTo?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
|
|
5455
5465
|
}
|
|
5456
|
-
interface SslCheckReplaceSliceChange {
|
|
5457
|
-
addedValues: string[];
|
|
5458
|
-
removedValues: string[];
|
|
5459
|
-
values: string[];
|
|
5460
|
-
}
|
|
5461
5466
|
interface SslCertificateRequestCreateRequest {
|
|
5462
5467
|
certificate: string;
|
|
5463
5468
|
privateKey: string;
|
|
5464
5469
|
projectId: string;
|
|
5465
5470
|
}
|
|
5466
|
-
interface SslCheckReplaceFieldChange {
|
|
5467
|
-
newValue: string;
|
|
5468
|
-
oldValue: string;
|
|
5469
|
-
}
|
|
5470
|
-
interface SslCertificateRequestCreateWithCSRRequest {
|
|
5471
|
-
commonName: string;
|
|
5472
|
-
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
5473
|
-
projectId: string;
|
|
5474
|
-
}
|
|
5475
|
-
interface SslCheckReplaceCertificateResponse {
|
|
5476
|
-
changes?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceChanges;
|
|
5477
|
-
errors?: MittwaldAPIV2.Components.Schemas.SslCertificateError[];
|
|
5478
|
-
isReplaceable: boolean;
|
|
5479
|
-
}
|
|
5480
5471
|
interface SslCertificateRequest {
|
|
5481
5472
|
certificateData: MittwaldAPIV2.Components.Schemas.SslCertificateData;
|
|
5482
5473
|
certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
@@ -5491,8 +5482,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5491
5482
|
validFrom?: string;
|
|
5492
5483
|
validTo?: string;
|
|
5493
5484
|
}
|
|
5494
|
-
interface
|
|
5495
|
-
|
|
5485
|
+
interface SslCertificateRequestCreateWithCSRRequest {
|
|
5486
|
+
commonName: string;
|
|
5487
|
+
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
5488
|
+
projectId: string;
|
|
5489
|
+
}
|
|
5490
|
+
interface SslCheckReplaceFieldChange {
|
|
5491
|
+
newValue: string;
|
|
5492
|
+
oldValue: string;
|
|
5496
5493
|
}
|
|
5497
5494
|
interface SslCertificate {
|
|
5498
5495
|
caBundle?: string;
|
|
@@ -5511,6 +5508,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5511
5508
|
validFrom: string;
|
|
5512
5509
|
validTo: string;
|
|
5513
5510
|
}
|
|
5511
|
+
interface SslCertificateError {
|
|
5512
|
+
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";
|
|
5513
|
+
}
|
|
5514
5514
|
interface CommonsAddress {
|
|
5515
5515
|
street: string;
|
|
5516
5516
|
houseNumber: string;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.267.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.268.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.268.0",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.268.0",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "dcdce3ebcc3e48d689d819ef4d11f777917a2a6a"
|
|
84
84
|
}
|