@goauthentik/api 2024.4.2-1718362364 → 2024.4.2-1718378698
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.
|
@@ -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 && "
|
|
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
|
-
'
|
|
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
|
-
'
|
|
61
|
+
'openssl_fips_enabled': value.opensslFipsEnabled,
|
|
62
62
|
'authentik_version': value.authentikVersion,
|
|
63
63
|
};
|
|
64
64
|
}
|
|
@@ -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 && "
|
|
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
|
-
'
|
|
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
|
-
'
|
|
67
|
+
'openssl_fips_enabled': value.opensslFipsEnabled,
|
|
68
68
|
'authentik_version': value.authentikVersion,
|
|
69
69
|
};
|
|
70
70
|
}
|
package/package.json
CHANGED
|
@@ -60,7 +60,7 @@ export interface SystemInfoRuntime {
|
|
|
60
60
|
* @type {boolean}
|
|
61
61
|
* @memberof SystemInfoRuntime
|
|
62
62
|
*/
|
|
63
|
-
|
|
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 && "
|
|
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
|
-
'
|
|
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
|
-
'
|
|
125
|
+
'openssl_fips_enabled': value.opensslFipsEnabled,
|
|
126
126
|
'authentik_version': value.authentikVersion,
|
|
127
127
|
};
|
|
128
128
|
}
|