@goauthentik/api 2026.2.0-rc1-1765573201 → 2026.2.0-rc1-1765828227
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/apis/CryptoApi.d.ts +0 -1
- package/dist/apis/CryptoApi.d.ts.map +1 -1
- package/dist/apis/CryptoApi.js +0 -3
- package/dist/apis/CryptoApi.js.map +1 -1
- package/dist/esm/apis/CryptoApi.d.ts +0 -1
- package/dist/esm/apis/CryptoApi.d.ts.map +1 -1
- package/dist/esm/apis/CryptoApi.js +0 -3
- package/dist/esm/apis/CryptoApi.js.map +1 -1
- package/dist/esm/models/CertificateKeyPair.d.ts +5 -5
- package/dist/models/CertificateKeyPair.d.ts +5 -5
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/apis/CryptoApi.ts +0 -5
- package/src/models/CertificateKeyPair.ts +5 -5
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
package/src/apis/CryptoApi.ts
CHANGED
|
@@ -60,7 +60,6 @@ export interface CryptoCertificatekeypairsGenerateCreateRequest {
|
|
|
60
60
|
|
|
61
61
|
export interface CryptoCertificatekeypairsListRequest {
|
|
62
62
|
hasKey?: boolean;
|
|
63
|
-
includeDetails?: boolean;
|
|
64
63
|
keyType?: Array<CryptoCertificatekeypairsListKeyTypeEnum>;
|
|
65
64
|
managed?: string;
|
|
66
65
|
name?: string;
|
|
@@ -251,10 +250,6 @@ export class CryptoApi extends runtime.BaseAPI {
|
|
|
251
250
|
queryParameters['has_key'] = requestParameters['hasKey'];
|
|
252
251
|
}
|
|
253
252
|
|
|
254
|
-
if (requestParameters['includeDetails'] != null) {
|
|
255
|
-
queryParameters['include_details'] = requestParameters['includeDetails'];
|
|
256
|
-
}
|
|
257
|
-
|
|
258
253
|
if (requestParameters['keyType'] != null) {
|
|
259
254
|
queryParameters['key_type'] = requestParameters['keyType'];
|
|
260
255
|
}
|
|
@@ -40,25 +40,25 @@ export interface CertificateKeyPair {
|
|
|
40
40
|
*/
|
|
41
41
|
name: string;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* SHA256 fingerprint of the certificate
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof CertificateKeyPair
|
|
46
46
|
*/
|
|
47
47
|
readonly fingerprintSha256: string | null;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* SHA1 fingerprint of the certificate
|
|
50
50
|
* @type {string}
|
|
51
51
|
* @memberof CertificateKeyPair
|
|
52
52
|
*/
|
|
53
53
|
readonly fingerprintSha1: string | null;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Certificate expiry date
|
|
56
56
|
* @type {Date}
|
|
57
57
|
* @memberof CertificateKeyPair
|
|
58
58
|
*/
|
|
59
59
|
readonly certExpiry: Date | null;
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* Certificate subject as RFC4514 string
|
|
62
62
|
* @type {string}
|
|
63
63
|
* @memberof CertificateKeyPair
|
|
64
64
|
*/
|
|
@@ -70,7 +70,7 @@ export interface CertificateKeyPair {
|
|
|
70
70
|
*/
|
|
71
71
|
readonly privateKeyAvailable: boolean;
|
|
72
72
|
/**
|
|
73
|
-
*
|
|
73
|
+
* Key algorithm type detected from the certificate's public key
|
|
74
74
|
* @type {KeyTypeEnum}
|
|
75
75
|
* @memberof CertificateKeyPair
|
|
76
76
|
*/
|