@mittwald/api-client 4.264.0 → 4.265.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.
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.263.0';
1
+ export const MittwaldAPIClientVersion = '4.264.0';
@@ -5407,6 +5407,10 @@ 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
+ }
5410
5414
  interface SslContact {
5411
5415
  city?: string;
5412
5416
  company?: string;
@@ -5417,16 +5421,7 @@ export declare namespace MittwaldAPIV2 {
5417
5421
  organizationalUnit?: string;
5418
5422
  state?: string;
5419
5423
  }
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
- }
5430
5425
  interface SslCertificateRequestCreateResponse {
5431
5426
  commonName?: string;
5432
5427
  contact: MittwaldAPIV2.Components.Schemas.SslContact;
@@ -5437,6 +5432,21 @@ export declare namespace MittwaldAPIV2 {
5437
5432
  validFrom?: string;
5438
5433
  validTo?: string;
5439
5434
  }
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
+ }
5440
5450
  interface SslCheckReplaceChanges {
5441
5451
  commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
5442
5452
  dnsNames?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceSliceChange;
@@ -5444,30 +5454,11 @@ export declare namespace MittwaldAPIV2 {
5444
5454
  validFrom?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
5445
5455
  validTo?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceDateChange;
5446
5456
  }
5447
- interface SslCheckReplaceSliceChange {
5448
- addedValues: string[];
5449
- removedValues: string[];
5450
- values: string[];
5451
- }
5452
5457
  interface SslCertificateRequestCreateRequest {
5453
5458
  certificate: string;
5454
5459
  privateKey: string;
5455
5460
  projectId: string;
5456
5461
  }
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
- }
5471
5462
  interface SslCertificateRequest {
5472
5463
  certificateData: MittwaldAPIV2.Components.Schemas.SslCertificateData;
5473
5464
  certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
@@ -5482,8 +5473,14 @@ export declare namespace MittwaldAPIV2 {
5482
5473
  validFrom?: string;
5483
5474
  validTo?: string;
5484
5475
  }
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";
5476
+ interface SslCertificateRequestCreateWithCSRRequest {
5477
+ commonName: string;
5478
+ contact: MittwaldAPIV2.Components.Schemas.SslContact;
5479
+ projectId: string;
5480
+ }
5481
+ interface SslCheckReplaceFieldChange {
5482
+ newValue: string;
5483
+ oldValue: string;
5487
5484
  }
5488
5485
  interface SslCertificate {
5489
5486
  caBundle?: string;
@@ -5502,6 +5499,9 @@ export declare namespace MittwaldAPIV2 {
5502
5499
  validFrom: string;
5503
5500
  validTo: string;
5504
5501
  }
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;
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.263.0';
1
+ export declare const MittwaldAPIClientVersion = '4.264.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.264.0",
3
+ "version": "4.265.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.264.0",
49
+ "@mittwald/api-client-commons": "^4.265.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.264.0",
53
+ "@mittwald/api-code-generator": "^4.265.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": "77641cfe3039b61208f81101cdc2941fe19b5162"
83
+ "gitHead": "daf85b82f19bb3b4131623117a57ac81fac5e10a"
84
84
  }