@mittwald/api-client 4.293.0 → 4.295.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 +55 -24
- 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.294.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. */
|
|
@@ -4588,7 +4588,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4588
4588
|
type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
|
|
4589
4589
|
interface MembershipCustomerInvite {
|
|
4590
4590
|
/**
|
|
4591
|
-
* Reference to the
|
|
4591
|
+
* Reference to the Customer's avatar.
|
|
4592
4592
|
*/
|
|
4593
4593
|
avatarRefId?: string;
|
|
4594
4594
|
/**
|
|
@@ -4675,10 +4675,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4675
4675
|
* ID of the user that created the invite.
|
|
4676
4676
|
*/
|
|
4677
4677
|
invitedBy: string;
|
|
4678
|
-
/**
|
|
4679
|
-
* ID of the user this invite is for.
|
|
4680
|
-
*/
|
|
4681
|
-
userId?: string;
|
|
4682
4678
|
}
|
|
4683
4679
|
interface MembershipProjectInvite {
|
|
4684
4680
|
/**
|
|
@@ -5325,20 +5321,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5325
5321
|
}
|
|
5326
5322
|
interface SslCertificate {
|
|
5327
5323
|
caBundle?: string;
|
|
5328
|
-
certificate
|
|
5324
|
+
certificate?: string;
|
|
5329
5325
|
certificateOrderId?: string;
|
|
5330
5326
|
certificateRequestId: string;
|
|
5331
5327
|
certificateType: MittwaldAPIV2.Components.Schemas.SslCertificateType;
|
|
5332
5328
|
commonName?: string;
|
|
5333
5329
|
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
5330
|
+
dnsCertSpec?: {
|
|
5331
|
+
cnameTarget?: string;
|
|
5332
|
+
status?: MittwaldAPIV2.Components.Schemas.SslDNSCertStatus;
|
|
5333
|
+
};
|
|
5334
5334
|
dnsNames?: string[];
|
|
5335
5335
|
id: string;
|
|
5336
|
-
isExpired
|
|
5336
|
+
isExpired?: boolean;
|
|
5337
5337
|
issuer?: string;
|
|
5338
|
-
lastExpirationThresholdHit
|
|
5338
|
+
lastExpirationThresholdHit?: number;
|
|
5339
5339
|
projectId: string;
|
|
5340
|
-
validFrom
|
|
5341
|
-
validTo
|
|
5340
|
+
validFrom?: string;
|
|
5341
|
+
validTo?: string;
|
|
5342
5342
|
}
|
|
5343
5343
|
interface SslCertificateData {
|
|
5344
5344
|
caBundle?: string;
|
|
@@ -5369,7 +5369,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5369
5369
|
}
|
|
5370
5370
|
interface SslCertificateRequestCreateResponse {
|
|
5371
5371
|
commonName?: string;
|
|
5372
|
-
contact
|
|
5372
|
+
contact?: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
5373
5373
|
dnsNames?: string[];
|
|
5374
5374
|
id: string;
|
|
5375
5375
|
issuer?: string;
|
|
@@ -5382,7 +5382,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5382
5382
|
contact: MittwaldAPIV2.Components.Schemas.SslContact;
|
|
5383
5383
|
projectId: string;
|
|
5384
5384
|
}
|
|
5385
|
-
type SslCertificateType = 0 | 1 | 2;
|
|
5385
|
+
type SslCertificateType = 0 | 1 | 2 | 3;
|
|
5386
5386
|
interface SslCheckReplaceChanges {
|
|
5387
5387
|
commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
5388
5388
|
dnsNames?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceSliceChange;
|
|
@@ -5686,6 +5686,33 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5686
5686
|
}
|
|
5687
5687
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5688
5688
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5689
|
+
interface SslCertificateRequestCreateWithDNSRequest {
|
|
5690
|
+
commonName: string;
|
|
5691
|
+
projectId: string;
|
|
5692
|
+
}
|
|
5693
|
+
type SslProjectCertificateStatus = "issuing" | "ready" | "cnameError" | "error" | "unspecified";
|
|
5694
|
+
interface SslDNSCertStatus {
|
|
5695
|
+
message?: string;
|
|
5696
|
+
status: MittwaldAPIV2.Components.Schemas.SslProjectCertificateStatus;
|
|
5697
|
+
updatedAt?: string;
|
|
5698
|
+
}
|
|
5699
|
+
interface IngressListIngressesCompatibleWithCertificateRequest {
|
|
5700
|
+
/**
|
|
5701
|
+
* PEM-encoded certificate. Linebreaks have to be escaped with
|
|
5702
|
+
* .
|
|
5703
|
+
*/
|
|
5704
|
+
certificate: string;
|
|
5705
|
+
/**
|
|
5706
|
+
* The projects UUID.
|
|
5707
|
+
*/
|
|
5708
|
+
projectId: string;
|
|
5709
|
+
}
|
|
5710
|
+
interface IngressListIngressesCompatibleWithCertificateIDRequest {
|
|
5711
|
+
/**
|
|
5712
|
+
* The certificates UUID.
|
|
5713
|
+
*/
|
|
5714
|
+
certificateId: string;
|
|
5715
|
+
}
|
|
5689
5716
|
interface CommonsAddress {
|
|
5690
5717
|
street: string;
|
|
5691
5718
|
houseNumber: string;
|
|
@@ -20040,17 +20067,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20040
20067
|
namespace Post {
|
|
20041
20068
|
namespace Parameters {
|
|
20042
20069
|
type Path = {};
|
|
20043
|
-
|
|
20044
|
-
/**
|
|
20045
|
-
* PEM-encoded certificate. Linebreaks have to be escaped with
|
|
20046
|
-
* .
|
|
20047
|
-
*/
|
|
20048
|
-
certificate: string;
|
|
20049
|
-
/**
|
|
20050
|
-
* The projects UUID.
|
|
20051
|
-
*/
|
|
20052
|
-
projectId: string;
|
|
20053
|
-
}
|
|
20070
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.IngressListIngressesCompatibleWithCertificateRequest | MittwaldAPIV2.Components.Schemas.IngressListIngressesCompatibleWithCertificateIDRequest;
|
|
20054
20071
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20055
20072
|
type Query = {
|
|
20056
20073
|
limit?: number;
|
|
@@ -25743,7 +25760,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25743
25760
|
namespace Post {
|
|
25744
25761
|
namespace Parameters {
|
|
25745
25762
|
type Path = {};
|
|
25746
|
-
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;
|
|
25747
25764
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
25748
25765
|
type Query = {};
|
|
25749
25766
|
}
|
|
@@ -25767,6 +25784,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25767
25784
|
}
|
|
25768
25785
|
}
|
|
25769
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
|
+
}
|
|
25770
25801
|
namespace $429 {
|
|
25771
25802
|
namespace Content {
|
|
25772
25803
|
interface ApplicationJson {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.294.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.295.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.295.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.295.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": "eab5c55b00100377ebc82df22cdad30206bb43a1"
|
|
84
84
|
}
|