@goauthentik/api 2026.2.0-rc1-1765573201 → 2026.2.0-rc1-1765908665

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2026.2.0-rc1-1765573201",
3
+ "version": "2026.2.0-rc1-1765908665",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -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
  }
@@ -27,10 +27,10 @@ export interface AuthenticatorEmailChallengeResponseRequest {
27
27
  component?: string;
28
28
  /**
29
29
  *
30
- * @type {number}
30
+ * @type {string}
31
31
  * @memberof AuthenticatorEmailChallengeResponseRequest
32
32
  */
33
- code?: number;
33
+ code?: string;
34
34
  /**
35
35
  *
36
36
  * @type {string}
@@ -27,10 +27,10 @@ export interface AuthenticatorSMSChallengeResponseRequest {
27
27
  component?: string;
28
28
  /**
29
29
  *
30
- * @type {number}
30
+ * @type {string}
31
31
  * @memberof AuthenticatorSMSChallengeResponseRequest
32
32
  */
33
- code?: number;
33
+ code?: string;
34
34
  /**
35
35
  *
36
36
  * @type {string}
@@ -27,10 +27,10 @@ export interface AuthenticatorTOTPChallengeResponseRequest {
27
27
  component?: string;
28
28
  /**
29
29
  *
30
- * @type {number}
30
+ * @type {string}
31
31
  * @memberof AuthenticatorTOTPChallengeResponseRequest
32
32
  */
33
- code: number;
33
+ code: string;
34
34
  }
35
35
 
36
36
  /**
@@ -40,25 +40,25 @@ export interface CertificateKeyPair {
40
40
  */
41
41
  name: string;
42
42
  /**
43
- * Get certificate Hash (SHA256)
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
- * Get certificate Hash (SHA1)
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
- * Get certificate expiry
55
+ * Certificate expiry date
56
56
  * @type {Date}
57
57
  * @memberof CertificateKeyPair
58
58
  */
59
59
  readonly certExpiry: Date | null;
60
60
  /**
61
- * Get certificate subject as full rfc4514
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
  */