@mittwald/api-client 4.294.0 → 4.296.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 +1 -1
- package/dist/types/generated/v2/client-react.d.ts +9 -5
- package/dist/types/generated/v2/client.d.ts +75 -18
- package/dist/types/generated/v2/descriptors.d.ts +1 -1
- package/dist/types/generated/v2/types.d.ts +54 -19
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.295.0';
|
|
@@ -2179,20 +2179,24 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2179
2179
|
} | undefined;
|
|
2180
2180
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2181
2181
|
caBundle?: string | undefined;
|
|
2182
|
-
certificate
|
|
2182
|
+
certificate?: string | undefined;
|
|
2183
2183
|
certificateOrderId?: string | undefined;
|
|
2184
2184
|
certificateRequestId: string;
|
|
2185
2185
|
certificateType: import("./types.js").MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
2186
2186
|
commonName?: string | undefined;
|
|
2187
2187
|
contact?: import("./types.js").MittwaldAPIV2.Components.Schemas.SslContact | undefined;
|
|
2188
|
+
dnsCertSpec?: {
|
|
2189
|
+
cnameTarget?: string;
|
|
2190
|
+
status?: import("./types.js").MittwaldAPIV2.Components.Schemas.SslDNSCertStatus;
|
|
2191
|
+
} | undefined;
|
|
2188
2192
|
dnsNames?: string[] | undefined;
|
|
2189
2193
|
id: string;
|
|
2190
|
-
isExpired
|
|
2194
|
+
isExpired?: boolean | undefined;
|
|
2191
2195
|
issuer?: string | undefined;
|
|
2192
|
-
lastExpirationThresholdHit
|
|
2196
|
+
lastExpirationThresholdHit?: number | undefined;
|
|
2193
2197
|
projectId: string;
|
|
2194
|
-
validFrom
|
|
2195
|
-
validTo
|
|
2198
|
+
validFrom?: string | undefined;
|
|
2199
|
+
validTo?: string | undefined;
|
|
2196
2200
|
}>;
|
|
2197
2201
|
/** List Certificates belonging to a Project or an Ingress. */
|
|
2198
2202
|
sslListCertificates: (conf?: {
|
|
@@ -18413,16 +18413,34 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18413
18413
|
skip?: number | undefined;
|
|
18414
18414
|
page?: number | undefined;
|
|
18415
18415
|
} | undefined;
|
|
18416
|
-
}
|
|
18416
|
+
} | {
|
|
18417
|
+
data: {
|
|
18418
|
+
certificateId: string;
|
|
18419
|
+
};
|
|
18420
|
+
headers?: {
|
|
18421
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18422
|
+
"x-access-token"?: string | undefined;
|
|
18423
|
+
} | undefined;
|
|
18424
|
+
queryParameters?: {
|
|
18425
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18426
|
+
limit?: number | undefined;
|
|
18427
|
+
skip?: number | undefined;
|
|
18428
|
+
page?: number | undefined;
|
|
18429
|
+
} | undefined;
|
|
18430
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
|
|
18417
18431
|
data: {
|
|
18418
18432
|
certificate: string;
|
|
18419
18433
|
projectId: string;
|
|
18420
18434
|
};
|
|
18421
|
-
}
|
|
18435
|
+
} | {
|
|
18436
|
+
data: {
|
|
18437
|
+
certificateId: string;
|
|
18438
|
+
};
|
|
18439
|
+
}) & {
|
|
18422
18440
|
headers?: Partial<{
|
|
18423
18441
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18424
18442
|
}>;
|
|
18425
|
-
} & {
|
|
18443
|
+
}) & {
|
|
18426
18444
|
queryParameters: {
|
|
18427
18445
|
limit?: number | undefined;
|
|
18428
18446
|
skip?: number | undefined;
|
|
@@ -18442,16 +18460,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18442
18460
|
[x: string]: unknown;
|
|
18443
18461
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18444
18462
|
[x: string]: unknown;
|
|
18445
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18463
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
|
|
18446
18464
|
data: {
|
|
18447
18465
|
certificate: string;
|
|
18448
18466
|
projectId: string;
|
|
18449
18467
|
};
|
|
18450
|
-
}
|
|
18468
|
+
} | {
|
|
18469
|
+
data: {
|
|
18470
|
+
certificateId: string;
|
|
18471
|
+
};
|
|
18472
|
+
}) & {
|
|
18451
18473
|
headers?: Partial<{
|
|
18452
18474
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18453
18475
|
}>;
|
|
18454
|
-
} & {
|
|
18476
|
+
}) & {
|
|
18455
18477
|
queryParameters: {
|
|
18456
18478
|
limit?: number | undefined;
|
|
18457
18479
|
skip?: number | undefined;
|
|
@@ -18671,6 +18693,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18671
18693
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18672
18694
|
"x-access-token"?: string | undefined;
|
|
18673
18695
|
} | undefined;
|
|
18696
|
+
} | {
|
|
18697
|
+
data: {
|
|
18698
|
+
commonName: string;
|
|
18699
|
+
projectId: string;
|
|
18700
|
+
};
|
|
18701
|
+
headers?: {
|
|
18702
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18703
|
+
"x-access-token"?: string | undefined;
|
|
18704
|
+
} | undefined;
|
|
18674
18705
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<({
|
|
18675
18706
|
data: {
|
|
18676
18707
|
certificate: string;
|
|
@@ -18683,6 +18714,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18683
18714
|
contact: import("./types.js").MittwaldAPIV2.Components.Schemas.SslContact;
|
|
18684
18715
|
projectId: string;
|
|
18685
18716
|
};
|
|
18717
|
+
} | {
|
|
18718
|
+
data: {
|
|
18719
|
+
commonName: string;
|
|
18720
|
+
projectId: string;
|
|
18721
|
+
};
|
|
18686
18722
|
}) & {
|
|
18687
18723
|
headers?: Partial<{
|
|
18688
18724
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -18695,7 +18731,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18695
18731
|
}>;
|
|
18696
18732
|
}, import("@mittwald/api-client-commons").Response<{
|
|
18697
18733
|
commonName?: string | undefined;
|
|
18698
|
-
contact
|
|
18734
|
+
contact?: import("./types.js").MittwaldAPIV2.Components.Schemas.SslContact | undefined;
|
|
18699
18735
|
dnsNames?: string[] | undefined;
|
|
18700
18736
|
id: string;
|
|
18701
18737
|
issuer?: string | undefined;
|
|
@@ -18708,6 +18744,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18708
18744
|
[x: string]: unknown;
|
|
18709
18745
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18710
18746
|
[x: string]: unknown;
|
|
18747
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18748
|
+
[x: string]: unknown;
|
|
18749
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18750
|
+
[x: string]: unknown;
|
|
18711
18751
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
|
|
18712
18752
|
data: {
|
|
18713
18753
|
certificate: string;
|
|
@@ -18720,6 +18760,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18720
18760
|
contact: import("./types.js").MittwaldAPIV2.Components.Schemas.SslContact;
|
|
18721
18761
|
projectId: string;
|
|
18722
18762
|
};
|
|
18763
|
+
} | {
|
|
18764
|
+
data: {
|
|
18765
|
+
commonName: string;
|
|
18766
|
+
projectId: string;
|
|
18767
|
+
};
|
|
18723
18768
|
}) & {
|
|
18724
18769
|
headers?: Partial<{
|
|
18725
18770
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -18732,7 +18777,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18732
18777
|
}>;
|
|
18733
18778
|
}, import("@mittwald/api-client-commons").Response<{
|
|
18734
18779
|
commonName?: string | undefined;
|
|
18735
|
-
contact
|
|
18780
|
+
contact?: import("./types.js").MittwaldAPIV2.Components.Schemas.SslContact | undefined;
|
|
18736
18781
|
dnsNames?: string[] | undefined;
|
|
18737
18782
|
id: string;
|
|
18738
18783
|
issuer?: string | undefined;
|
|
@@ -18745,6 +18790,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18745
18790
|
[x: string]: unknown;
|
|
18746
18791
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18747
18792
|
[x: string]: unknown;
|
|
18793
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18794
|
+
[x: string]: unknown;
|
|
18795
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18796
|
+
[x: string]: unknown;
|
|
18748
18797
|
}, 429, "application/json">>>;
|
|
18749
18798
|
/** Delete a CertificateRequest. */
|
|
18750
18799
|
sslDeleteCertificateRequest: (request: {
|
|
@@ -18927,20 +18976,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18927
18976
|
}>;
|
|
18928
18977
|
}, import("@mittwald/api-client-commons").Response<{
|
|
18929
18978
|
caBundle?: string | undefined;
|
|
18930
|
-
certificate
|
|
18979
|
+
certificate?: string | undefined;
|
|
18931
18980
|
certificateOrderId?: string | undefined;
|
|
18932
18981
|
certificateRequestId: string;
|
|
18933
18982
|
certificateType: import("./types.js").MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
18934
18983
|
commonName?: string | undefined;
|
|
18935
18984
|
contact?: import("./types.js").MittwaldAPIV2.Components.Schemas.SslContact | undefined;
|
|
18985
|
+
dnsCertSpec?: {
|
|
18986
|
+
cnameTarget?: string;
|
|
18987
|
+
status?: import("./types.js").MittwaldAPIV2.Components.Schemas.SslDNSCertStatus;
|
|
18988
|
+
} | undefined;
|
|
18936
18989
|
dnsNames?: string[] | undefined;
|
|
18937
18990
|
id: string;
|
|
18938
|
-
isExpired
|
|
18991
|
+
isExpired?: boolean | undefined;
|
|
18939
18992
|
issuer?: string | undefined;
|
|
18940
|
-
lastExpirationThresholdHit
|
|
18993
|
+
lastExpirationThresholdHit?: number | undefined;
|
|
18941
18994
|
projectId: string;
|
|
18942
|
-
validFrom
|
|
18943
|
-
validTo
|
|
18995
|
+
validFrom?: string | undefined;
|
|
18996
|
+
validTo?: string | undefined;
|
|
18944
18997
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18945
18998
|
[x: string]: unknown;
|
|
18946
18999
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -18961,20 +19014,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18961
19014
|
}>;
|
|
18962
19015
|
}, import("@mittwald/api-client-commons").Response<{
|
|
18963
19016
|
caBundle?: string | undefined;
|
|
18964
|
-
certificate
|
|
19017
|
+
certificate?: string | undefined;
|
|
18965
19018
|
certificateOrderId?: string | undefined;
|
|
18966
19019
|
certificateRequestId: string;
|
|
18967
19020
|
certificateType: import("./types.js").MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
18968
19021
|
commonName?: string | undefined;
|
|
18969
19022
|
contact?: import("./types.js").MittwaldAPIV2.Components.Schemas.SslContact | undefined;
|
|
19023
|
+
dnsCertSpec?: {
|
|
19024
|
+
cnameTarget?: string;
|
|
19025
|
+
status?: import("./types.js").MittwaldAPIV2.Components.Schemas.SslDNSCertStatus;
|
|
19026
|
+
} | undefined;
|
|
18970
19027
|
dnsNames?: string[] | undefined;
|
|
18971
19028
|
id: string;
|
|
18972
|
-
isExpired
|
|
19029
|
+
isExpired?: boolean | undefined;
|
|
18973
19030
|
issuer?: string | undefined;
|
|
18974
|
-
lastExpirationThresholdHit
|
|
19031
|
+
lastExpirationThresholdHit?: number | undefined;
|
|
18975
19032
|
projectId: string;
|
|
18976
|
-
validFrom
|
|
18977
|
-
validTo
|
|
19033
|
+
validFrom?: string | undefined;
|
|
19034
|
+
validTo?: string | undefined;
|
|
18978
19035
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18979
19036
|
[x: string]: unknown;
|
|
18980
19037
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -770,7 +770,7 @@ export declare const sslCheckReplaceCertificate: OpenAPIOperation<RequestType<Si
|
|
|
770
770
|
/** List CertificateRequests belonging to a Project or an Ingress. */
|
|
771
771
|
export declare const sslListCertificateRequests: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
772
772
|
/** Create a CertificateRequest. */
|
|
773
|
-
export declare const sslCreateCertificateRequest: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
773
|
+
export declare const sslCreateCertificateRequest: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
774
774
|
/** Delete a CertificateRequest. */
|
|
775
775
|
export declare const sslDeleteCertificateRequest: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
776
776
|
/** Delete a Certificate. */
|
|
@@ -4004,6 +4004,23 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4004
4004
|
projectId: string;
|
|
4005
4005
|
tls: MittwaldAPIV2.Components.Schemas.IngressTlsAcmeDeprecated | MittwaldAPIV2.Components.Schemas.IngressTlsCertificate;
|
|
4006
4006
|
}
|
|
4007
|
+
interface IngressListIngressesCompatibleWithCertificateIDRequest {
|
|
4008
|
+
/**
|
|
4009
|
+
* The certificates UUID.
|
|
4010
|
+
*/
|
|
4011
|
+
certificateId: string;
|
|
4012
|
+
}
|
|
4013
|
+
interface IngressListIngressesCompatibleWithCertificateRequest {
|
|
4014
|
+
/**
|
|
4015
|
+
* PEM-encoded certificate. Linebreaks have to be escaped with
|
|
4016
|
+
* .
|
|
4017
|
+
*/
|
|
4018
|
+
certificate: string;
|
|
4019
|
+
/**
|
|
4020
|
+
* The projects UUID.
|
|
4021
|
+
*/
|
|
4022
|
+
projectId: string;
|
|
4023
|
+
}
|
|
4007
4024
|
interface IngressOwnership {
|
|
4008
4025
|
txtRecord?: string;
|
|
4009
4026
|
/**
|
|
@@ -5321,20 +5338,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5321
5338
|
}
|
|
5322
5339
|
interface SslCertificate {
|
|
5323
5340
|
caBundle?: string;
|
|
5324
|
-
certificate
|
|
5341
|
+
certificate?: string;
|
|
5325
5342
|
certificateOrderId?: string;
|
|
5326
5343
|
certificateRequestId: string;
|
|
5327
5344
|
certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
5328
5345
|
commonName?: string;
|
|
5329
5346
|
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
5347
|
+
dnsCertSpec?: {
|
|
5348
|
+
cnameTarget?: string;
|
|
5349
|
+
status?: MittwaldAPIV2.Components.Schemas.SslDNSCertStatus;
|
|
5350
|
+
};
|
|
5330
5351
|
dnsNames?: string[];
|
|
5331
5352
|
id: string;
|
|
5332
|
-
isExpired
|
|
5353
|
+
isExpired?: boolean;
|
|
5333
5354
|
issuer?: string;
|
|
5334
|
-
lastExpirationThresholdHit
|
|
5355
|
+
lastExpirationThresholdHit?: number;
|
|
5335
5356
|
projectId: string;
|
|
5336
|
-
validFrom
|
|
5337
|
-
validTo
|
|
5357
|
+
validFrom?: string;
|
|
5358
|
+
validTo?: string;
|
|
5338
5359
|
}
|
|
5339
5360
|
interface SslCertificateData {
|
|
5340
5361
|
caBundle?: string;
|
|
@@ -5365,7 +5386,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5365
5386
|
}
|
|
5366
5387
|
interface SslCertificateRequestCreateResponse {
|
|
5367
5388
|
commonName?: string;
|
|
5368
|
-
contact
|
|
5389
|
+
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
5369
5390
|
dnsNames?: string[];
|
|
5370
5391
|
id: string;
|
|
5371
5392
|
issuer?: string;
|
|
@@ -5378,7 +5399,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5378
5399
|
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
5379
5400
|
projectId: string;
|
|
5380
5401
|
}
|
|
5381
|
-
|
|
5402
|
+
interface SslCertificateRequestCreateWithDNSRequest {
|
|
5403
|
+
commonName: string;
|
|
5404
|
+
projectId: string;
|
|
5405
|
+
}
|
|
5406
|
+
type SslCertificateType = 0 | 1 | 2 | 3;
|
|
5382
5407
|
interface SslCheckReplaceChanges {
|
|
5383
5408
|
commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
5384
5409
|
dnsNames?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceSliceChange;
|
|
@@ -5414,6 +5439,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5414
5439
|
organizationalUnit?: string;
|
|
5415
5440
|
state?: string;
|
|
5416
5441
|
}
|
|
5442
|
+
interface SslDNSCertStatus {
|
|
5443
|
+
message?: string;
|
|
5444
|
+
status: MittwaldAPIV2.Components.Schemas.SslProjectCertificateStatus;
|
|
5445
|
+
updatedAt?: string;
|
|
5446
|
+
}
|
|
5447
|
+
type SslProjectCertificateStatus = "issuing" | "ready" | "cnameError" | "error" | "unspecified";
|
|
5417
5448
|
type StoragespaceStatisticsCategoryKind = "webspace" | "projectBackup" | "mailAddress" | "mysqlDatabase" | "redisDatabase" | "containerVolume";
|
|
5418
5449
|
interface StoragespaceStatisticsCategory {
|
|
5419
5450
|
kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategoryKind;
|
|
@@ -20036,17 +20067,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20036
20067
|
namespace Post {
|
|
20037
20068
|
namespace Parameters {
|
|
20038
20069
|
type Path = {};
|
|
20039
|
-
|
|
20040
|
-
/**
|
|
20041
|
-
* PEM-encoded certificate. Linebreaks have to be escaped with
|
|
20042
|
-
* .
|
|
20043
|
-
*/
|
|
20044
|
-
certificate: string;
|
|
20045
|
-
/**
|
|
20046
|
-
* The projects UUID.
|
|
20047
|
-
*/
|
|
20048
|
-
projectId: string;
|
|
20049
|
-
}
|
|
20070
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.IngressListIngressesCompatibleWithCertificateRequest | MittwaldAPIV2.Components.Schemas.IngressListIngressesCompatibleWithCertificateIDRequest;
|
|
20050
20071
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20051
20072
|
type Query = {
|
|
20052
20073
|
limit?: number;
|
|
@@ -25739,7 +25760,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25739
25760
|
namespace Post {
|
|
25740
25761
|
namespace Parameters {
|
|
25741
25762
|
type Path = {};
|
|
25742
|
-
type RequestBody = MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateRequest | MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateWithCSRRequest;
|
|
25763
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateRequest | MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateWithCSRRequest | MittwaldAPIV2.Components.Schemas.SslCertificateRequestCreateWithDNSRequest;
|
|
25743
25764
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
25744
25765
|
type Query = {};
|
|
25745
25766
|
}
|
|
@@ -25763,6 +25784,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25763
25784
|
}
|
|
25764
25785
|
}
|
|
25765
25786
|
}
|
|
25787
|
+
namespace $409 {
|
|
25788
|
+
namespace Content {
|
|
25789
|
+
interface ApplicationJson {
|
|
25790
|
+
[k: string]: unknown;
|
|
25791
|
+
}
|
|
25792
|
+
}
|
|
25793
|
+
}
|
|
25794
|
+
namespace $412 {
|
|
25795
|
+
namespace Content {
|
|
25796
|
+
interface ApplicationJson {
|
|
25797
|
+
[k: string]: unknown;
|
|
25798
|
+
}
|
|
25799
|
+
}
|
|
25800
|
+
}
|
|
25766
25801
|
namespace $429 {
|
|
25767
25802
|
namespace Content {
|
|
25768
25803
|
interface ApplicationJson {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.295.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.296.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.296.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.296.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": "40bf70b5e3b4e0c1a0ddb3d1f422a29423a18e9f"
|
|
84
84
|
}
|