@mittwald/api-client 4.263.0 → 4.264.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.263.0';
|
|
@@ -5407,10 +5407,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5407
5407
|
}
|
|
5408
5408
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5409
5409
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5410
|
-
interface SslCheckReplaceDateChange {
|
|
5411
|
-
newValue: string;
|
|
5412
|
-
oldValue: string;
|
|
5413
|
-
}
|
|
5414
5410
|
interface SslContact {
|
|
5415
5411
|
city?: string;
|
|
5416
5412
|
company?: string;
|
|
@@ -5421,7 +5417,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5421
5417
|
organizationalUnit?: string;
|
|
5422
5418
|
state?: string;
|
|
5423
5419
|
}
|
|
5420
|
+
interface SslCheckReplaceDateChange {
|
|
5421
|
+
newValue: string;
|
|
5422
|
+
oldValue: string;
|
|
5423
|
+
}
|
|
5424
5424
|
type SslCertificateType = 0 | 1 | 2;
|
|
5425
|
+
interface SslCertificateData {
|
|
5426
|
+
caBundle?: string;
|
|
5427
|
+
certificate?: string;
|
|
5428
|
+
signingRequest?: string;
|
|
5429
|
+
}
|
|
5425
5430
|
interface SslCertificateRequestCreateResponse {
|
|
5426
5431
|
commonName?: string;
|
|
5427
5432
|
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
@@ -5432,21 +5437,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5432
5437
|
validFrom?: string;
|
|
5433
5438
|
validTo?: string;
|
|
5434
5439
|
}
|
|
5435
|
-
interface SslCertificateData {
|
|
5436
|
-
caBundle?: string;
|
|
5437
|
-
certificate?: string;
|
|
5438
|
-
signingRequest?: string;
|
|
5439
|
-
}
|
|
5440
|
-
interface SslCheckReplaceCertificateResponse {
|
|
5441
|
-
changes?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceChanges;
|
|
5442
|
-
errors?: MittwaldAPIV2.Components.Schemas.SslCertificateError[];
|
|
5443
|
-
isReplaceable: boolean;
|
|
5444
|
-
}
|
|
5445
|
-
interface SslCheckReplaceSliceChange {
|
|
5446
|
-
addedValues: string[];
|
|
5447
|
-
removedValues: string[];
|
|
5448
|
-
values: string[];
|
|
5449
|
-
}
|
|
5450
5440
|
interface SslCheckReplaceChanges {
|
|
5451
5441
|
commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
5452
5442
|
dnsNames?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceSliceChange;
|
|
@@ -5454,11 +5444,30 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5454
5444
|
validFrom?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
|
|
5455
5445
|
validTo?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
|
|
5456
5446
|
}
|
|
5447
|
+
interface SslCheckReplaceSliceChange {
|
|
5448
|
+
addedValues: string[];
|
|
5449
|
+
removedValues: string[];
|
|
5450
|
+
values: string[];
|
|
5451
|
+
}
|
|
5457
5452
|
interface SslCertificateRequestCreateRequest {
|
|
5458
5453
|
certificate: string;
|
|
5459
5454
|
privateKey: string;
|
|
5460
5455
|
projectId: string;
|
|
5461
5456
|
}
|
|
5457
|
+
interface SslCheckReplaceFieldChange {
|
|
5458
|
+
newValue: string;
|
|
5459
|
+
oldValue: string;
|
|
5460
|
+
}
|
|
5461
|
+
interface SslCertificateRequestCreateWithCSRRequest {
|
|
5462
|
+
commonName: string;
|
|
5463
|
+
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
5464
|
+
projectId: string;
|
|
5465
|
+
}
|
|
5466
|
+
interface SslCheckReplaceCertificateResponse {
|
|
5467
|
+
changes?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceChanges;
|
|
5468
|
+
errors?: MittwaldAPIV2.Components.Schemas.SslCertificateError[];
|
|
5469
|
+
isReplaceable: boolean;
|
|
5470
|
+
}
|
|
5462
5471
|
interface SslCertificateRequest {
|
|
5463
5472
|
certificateData: MittwaldAPIV2.Components.Schemas.SslCertificateData;
|
|
5464
5473
|
certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
@@ -5473,14 +5482,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5473
5482
|
validFrom?: string;
|
|
5474
5483
|
validTo?: string;
|
|
5475
5484
|
}
|
|
5476
|
-
interface
|
|
5477
|
-
|
|
5478
|
-
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
5479
|
-
projectId: string;
|
|
5480
|
-
}
|
|
5481
|
-
interface SslCheckReplaceFieldChange {
|
|
5482
|
-
newValue: string;
|
|
5483
|
-
oldValue: string;
|
|
5485
|
+
interface SslCertificateError {
|
|
5486
|
+
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";
|
|
5484
5487
|
}
|
|
5485
5488
|
interface SslCertificate {
|
|
5486
5489
|
caBundle?: string;
|
|
@@ -5499,9 +5502,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5499
5502
|
validFrom: string;
|
|
5500
5503
|
validTo: string;
|
|
5501
5504
|
}
|
|
5502
|
-
interface SslCertificateError {
|
|
5503
|
-
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";
|
|
5504
|
-
}
|
|
5505
5505
|
interface CommonsAddress {
|
|
5506
5506
|
street: string;
|
|
5507
5507
|
houseNumber: string;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.263.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.264.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.264.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.264.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": "77641cfe3039b61208f81101cdc2941fe19b5162"
|
|
84
84
|
}
|