@goauthentik/api 2024.4.2-1717645682 → 2024.4.2-1718378698

Sign up to get free protection for your applications and to get access to all the features.
@@ -52,11 +52,11 @@ export interface OutpostHealth {
52
52
  */
53
53
  readonly opensslVersion: string;
54
54
  /**
55
- *
55
+ * Get FIPS enabled
56
56
  * @type {boolean}
57
57
  * @memberof OutpostHealth
58
58
  */
59
- readonly fipsEnabled: boolean;
59
+ readonly fipsEnabled: boolean | null;
60
60
  /**
61
61
  *
62
62
  * @type {string}
@@ -56,7 +56,7 @@ export interface SystemInfoRuntime {
56
56
  * @type {boolean}
57
57
  * @memberof SystemInfoRuntime
58
58
  */
59
- opensslFipsMode: boolean;
59
+ opensslFipsEnabled: boolean | null;
60
60
  /**
61
61
  *
62
62
  * @type {string}
@@ -22,7 +22,7 @@ export function instanceOfSystemInfoRuntime(value) {
22
22
  isInstance = isInstance && "platform" in value;
23
23
  isInstance = isInstance && "uname" in value;
24
24
  isInstance = isInstance && "opensslVersion" in value;
25
- isInstance = isInstance && "opensslFipsMode" in value;
25
+ isInstance = isInstance && "opensslFipsEnabled" in value;
26
26
  isInstance = isInstance && "authentikVersion" in value;
27
27
  return isInstance;
28
28
  }
@@ -40,7 +40,7 @@ export function SystemInfoRuntimeFromJSONTyped(json, ignoreDiscriminator) {
40
40
  'platform': json['platform'],
41
41
  'uname': json['uname'],
42
42
  'opensslVersion': json['openssl_version'],
43
- 'opensslFipsMode': json['openssl_fips_mode'],
43
+ 'opensslFipsEnabled': json['openssl_fips_enabled'],
44
44
  'authentikVersion': json['authentik_version'],
45
45
  };
46
46
  }
@@ -58,7 +58,7 @@ export function SystemInfoRuntimeToJSON(value) {
58
58
  'platform': value.platform,
59
59
  'uname': value.uname,
60
60
  'openssl_version': value.opensslVersion,
61
- 'openssl_fips_mode': value.opensslFipsMode,
61
+ 'openssl_fips_enabled': value.opensslFipsEnabled,
62
62
  'authentik_version': value.authentikVersion,
63
63
  };
64
64
  }
@@ -52,11 +52,11 @@ export interface OutpostHealth {
52
52
  */
53
53
  readonly opensslVersion: string;
54
54
  /**
55
- *
55
+ * Get FIPS enabled
56
56
  * @type {boolean}
57
57
  * @memberof OutpostHealth
58
58
  */
59
- readonly fipsEnabled: boolean;
59
+ readonly fipsEnabled: boolean | null;
60
60
  /**
61
61
  *
62
62
  * @type {string}
@@ -56,7 +56,7 @@ export interface SystemInfoRuntime {
56
56
  * @type {boolean}
57
57
  * @memberof SystemInfoRuntime
58
58
  */
59
- opensslFipsMode: boolean;
59
+ opensslFipsEnabled: boolean | null;
60
60
  /**
61
61
  *
62
62
  * @type {string}
@@ -25,7 +25,7 @@ function instanceOfSystemInfoRuntime(value) {
25
25
  isInstance = isInstance && "platform" in value;
26
26
  isInstance = isInstance && "uname" in value;
27
27
  isInstance = isInstance && "opensslVersion" in value;
28
- isInstance = isInstance && "opensslFipsMode" in value;
28
+ isInstance = isInstance && "opensslFipsEnabled" in value;
29
29
  isInstance = isInstance && "authentikVersion" in value;
30
30
  return isInstance;
31
31
  }
@@ -45,7 +45,7 @@ function SystemInfoRuntimeFromJSONTyped(json, ignoreDiscriminator) {
45
45
  'platform': json['platform'],
46
46
  'uname': json['uname'],
47
47
  'opensslVersion': json['openssl_version'],
48
- 'opensslFipsMode': json['openssl_fips_mode'],
48
+ 'opensslFipsEnabled': json['openssl_fips_enabled'],
49
49
  'authentikVersion': json['authentik_version'],
50
50
  };
51
51
  }
@@ -64,7 +64,7 @@ function SystemInfoRuntimeToJSON(value) {
64
64
  'platform': value.platform,
65
65
  'uname': value.uname,
66
66
  'openssl_version': value.opensslVersion,
67
- 'openssl_fips_mode': value.opensslFipsMode,
67
+ 'openssl_fips_enabled': value.opensslFipsEnabled,
68
68
  'authentik_version': value.authentikVersion,
69
69
  };
70
70
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2024.4.2-1717645682",
3
+ "version": "2024.4.2-1718378698",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -56,11 +56,11 @@ export interface OutpostHealth {
56
56
  */
57
57
  readonly opensslVersion: string;
58
58
  /**
59
- *
59
+ * Get FIPS enabled
60
60
  * @type {boolean}
61
61
  * @memberof OutpostHealth
62
62
  */
63
- readonly fipsEnabled: boolean;
63
+ readonly fipsEnabled: boolean | null;
64
64
  /**
65
65
  *
66
66
  * @type {string}
@@ -60,7 +60,7 @@ export interface SystemInfoRuntime {
60
60
  * @type {boolean}
61
61
  * @memberof SystemInfoRuntime
62
62
  */
63
- opensslFipsMode: boolean;
63
+ opensslFipsEnabled: boolean | null;
64
64
  /**
65
65
  *
66
66
  * @type {string}
@@ -80,7 +80,7 @@ export function instanceOfSystemInfoRuntime(value: object): boolean {
80
80
  isInstance = isInstance && "platform" in value;
81
81
  isInstance = isInstance && "uname" in value;
82
82
  isInstance = isInstance && "opensslVersion" in value;
83
- isInstance = isInstance && "opensslFipsMode" in value;
83
+ isInstance = isInstance && "opensslFipsEnabled" in value;
84
84
  isInstance = isInstance && "authentikVersion" in value;
85
85
 
86
86
  return isInstance;
@@ -102,7 +102,7 @@ export function SystemInfoRuntimeFromJSONTyped(json: any, ignoreDiscriminator: b
102
102
  'platform': json['platform'],
103
103
  'uname': json['uname'],
104
104
  'opensslVersion': json['openssl_version'],
105
- 'opensslFipsMode': json['openssl_fips_mode'],
105
+ 'opensslFipsEnabled': json['openssl_fips_enabled'],
106
106
  'authentikVersion': json['authentik_version'],
107
107
  };
108
108
  }
@@ -122,7 +122,7 @@ export function SystemInfoRuntimeToJSON(value?: SystemInfoRuntime | null): any {
122
122
  'platform': value.platform,
123
123
  'uname': value.uname,
124
124
  'openssl_version': value.opensslVersion,
125
- 'openssl_fips_mode': value.opensslFipsMode,
125
+ 'openssl_fips_enabled': value.opensslFipsEnabled,
126
126
  'authentik_version': value.authentikVersion,
127
127
  };
128
128
  }