@goauthentik/api 2024.4.2-1716209237 → 2024.4.2-1716485711
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/apis/OutpostsApi.d.ts +2 -2
- package/dist/apis/OutpostsApi.js +2 -2
- package/dist/apis/PoliciesApi.d.ts +2 -2
- package/dist/apis/PoliciesApi.js +2 -2
- package/dist/apis/PropertymappingsApi.d.ts +2 -2
- package/dist/apis/PropertymappingsApi.js +2 -2
- package/dist/apis/ProvidersApi.d.ts +2 -2
- package/dist/apis/ProvidersApi.js +2 -2
- package/dist/apis/SourcesApi.d.ts +2 -2
- package/dist/apis/SourcesApi.js +2 -2
- package/dist/apis/StagesApi.d.ts +2 -2
- package/dist/apis/StagesApi.js +2 -2
- package/dist/esm/apis/OutpostsApi.d.ts +2 -2
- package/dist/esm/apis/OutpostsApi.js +2 -2
- package/dist/esm/apis/PoliciesApi.d.ts +2 -2
- package/dist/esm/apis/PoliciesApi.js +2 -2
- package/dist/esm/apis/PropertymappingsApi.d.ts +2 -2
- package/dist/esm/apis/PropertymappingsApi.js +2 -2
- package/dist/esm/apis/ProvidersApi.d.ts +2 -2
- package/dist/esm/apis/ProvidersApi.js +2 -2
- package/dist/esm/apis/SourcesApi.d.ts +2 -2
- package/dist/esm/apis/SourcesApi.js +2 -2
- package/dist/esm/apis/StagesApi.d.ts +2 -2
- package/dist/esm/apis/StagesApi.js +2 -2
- package/dist/esm/models/LDAPSource.d.ts +2 -3
- package/dist/esm/models/OAuthSource.d.ts +1 -2
- package/dist/esm/models/OutpostHealth.d.ts +24 -0
- package/dist/esm/models/OutpostHealth.js +8 -0
- package/dist/esm/models/PlexSource.d.ts +2 -3
- package/dist/esm/models/SAMLSource.d.ts +2 -3
- package/dist/esm/models/SystemInfoRuntime.d.ts +17 -5
- package/dist/esm/models/SystemInfoRuntime.js +9 -3
- package/dist/esm/models/TypeCreate.d.ts +6 -0
- package/dist/esm/models/TypeCreate.js +2 -0
- package/dist/models/LDAPSource.d.ts +2 -3
- package/dist/models/OAuthSource.d.ts +1 -2
- package/dist/models/OutpostHealth.d.ts +24 -0
- package/dist/models/OutpostHealth.js +8 -0
- package/dist/models/PlexSource.d.ts +2 -3
- package/dist/models/SAMLSource.d.ts +2 -3
- package/dist/models/SystemInfoRuntime.d.ts +17 -5
- package/dist/models/SystemInfoRuntime.js +9 -3
- package/dist/models/TypeCreate.d.ts +6 -0
- package/dist/models/TypeCreate.js +2 -0
- package/package.json +1 -1
- package/src/apis/OutpostsApi.ts +2 -2
- package/src/apis/PoliciesApi.ts +2 -2
- package/src/apis/PropertymappingsApi.ts +2 -2
- package/src/apis/ProvidersApi.ts +2 -2
- package/src/apis/SourcesApi.ts +2 -2
- package/src/apis/StagesApi.ts +2 -2
- package/src/models/LDAPSource.ts +2 -3
- package/src/models/OAuthSource.ts +1 -2
- package/src/models/OutpostHealth.ts +32 -0
- package/src/models/PlexSource.ts +2 -3
- package/src/models/SAMLSource.ts +2 -3
- package/src/models/SystemInfoRuntime.ts +26 -8
- package/src/models/TypeCreate.ts +8 -0
@@ -102,12 +102,11 @@ export interface LDAPSource {
|
|
102
102
|
*/
|
103
103
|
userPathTemplate?: string;
|
104
104
|
/**
|
105
|
-
*
|
106
|
-
* starts with http it is returned as-is
|
105
|
+
*
|
107
106
|
* @type {string}
|
108
107
|
* @memberof LDAPSource
|
109
108
|
*/
|
110
|
-
readonly icon: string
|
109
|
+
readonly icon: string;
|
111
110
|
/**
|
112
111
|
*
|
113
112
|
* @type {string}
|
@@ -33,6 +33,30 @@ export interface OutpostHealth {
|
|
33
33
|
* @memberof OutpostHealth
|
34
34
|
*/
|
35
35
|
readonly version: string;
|
36
|
+
/**
|
37
|
+
*
|
38
|
+
* @type {string}
|
39
|
+
* @memberof OutpostHealth
|
40
|
+
*/
|
41
|
+
readonly golangVersion: string;
|
42
|
+
/**
|
43
|
+
*
|
44
|
+
* @type {boolean}
|
45
|
+
* @memberof OutpostHealth
|
46
|
+
*/
|
47
|
+
readonly opensslEnabled: boolean;
|
48
|
+
/**
|
49
|
+
*
|
50
|
+
* @type {string}
|
51
|
+
* @memberof OutpostHealth
|
52
|
+
*/
|
53
|
+
readonly opensslVersion: string;
|
54
|
+
/**
|
55
|
+
*
|
56
|
+
* @type {boolean}
|
57
|
+
* @memberof OutpostHealth
|
58
|
+
*/
|
59
|
+
readonly fipsEnabled: boolean;
|
36
60
|
/**
|
37
61
|
*
|
38
62
|
* @type {string}
|
@@ -22,6 +22,10 @@ function instanceOfOutpostHealth(value) {
|
|
22
22
|
isInstance = isInstance && "uid" in value;
|
23
23
|
isInstance = isInstance && "lastSeen" in value;
|
24
24
|
isInstance = isInstance && "version" in value;
|
25
|
+
isInstance = isInstance && "golangVersion" in value;
|
26
|
+
isInstance = isInstance && "opensslEnabled" in value;
|
27
|
+
isInstance = isInstance && "opensslVersion" in value;
|
28
|
+
isInstance = isInstance && "fipsEnabled" in value;
|
25
29
|
isInstance = isInstance && "versionShould" in value;
|
26
30
|
isInstance = isInstance && "versionOutdated" in value;
|
27
31
|
isInstance = isInstance && "buildHash" in value;
|
@@ -42,6 +46,10 @@ function OutpostHealthFromJSONTyped(json, ignoreDiscriminator) {
|
|
42
46
|
'uid': json['uid'],
|
43
47
|
'lastSeen': (new Date(json['last_seen'])),
|
44
48
|
'version': json['version'],
|
49
|
+
'golangVersion': json['golang_version'],
|
50
|
+
'opensslEnabled': json['openssl_enabled'],
|
51
|
+
'opensslVersion': json['openssl_version'],
|
52
|
+
'fipsEnabled': json['fips_enabled'],
|
45
53
|
'versionShould': json['version_should'],
|
46
54
|
'versionOutdated': json['version_outdated'],
|
47
55
|
'buildHash': json['build_hash'],
|
@@ -102,12 +102,11 @@ export interface PlexSource {
|
|
102
102
|
*/
|
103
103
|
userPathTemplate?: string;
|
104
104
|
/**
|
105
|
-
*
|
106
|
-
* starts with http it is returned as-is
|
105
|
+
*
|
107
106
|
* @type {string}
|
108
107
|
* @memberof PlexSource
|
109
108
|
*/
|
110
|
-
readonly icon: string
|
109
|
+
readonly icon: string;
|
111
110
|
/**
|
112
111
|
* Client identifier used to talk to Plex.
|
113
112
|
* @type {string}
|
@@ -106,12 +106,11 @@ export interface SAMLSource {
|
|
106
106
|
*/
|
107
107
|
userPathTemplate?: string;
|
108
108
|
/**
|
109
|
-
*
|
110
|
-
* starts with http it is returned as-is
|
109
|
+
*
|
111
110
|
* @type {string}
|
112
111
|
* @memberof SAMLSource
|
113
112
|
*/
|
114
|
-
readonly icon: string
|
113
|
+
readonly icon: string;
|
115
114
|
/**
|
116
115
|
* Flow used before authentication.
|
117
116
|
* @type {string}
|
@@ -26,31 +26,43 @@ export interface SystemInfoRuntime {
|
|
26
26
|
* @type {string}
|
27
27
|
* @memberof SystemInfoRuntime
|
28
28
|
*/
|
29
|
-
|
29
|
+
environment: string;
|
30
30
|
/**
|
31
31
|
*
|
32
32
|
* @type {string}
|
33
33
|
* @memberof SystemInfoRuntime
|
34
34
|
*/
|
35
|
-
|
35
|
+
architecture: string;
|
36
36
|
/**
|
37
37
|
*
|
38
38
|
* @type {string}
|
39
39
|
* @memberof SystemInfoRuntime
|
40
40
|
*/
|
41
|
-
|
41
|
+
platform: string;
|
42
42
|
/**
|
43
43
|
*
|
44
44
|
* @type {string}
|
45
45
|
* @memberof SystemInfoRuntime
|
46
46
|
*/
|
47
|
-
|
47
|
+
uname: string;
|
48
48
|
/**
|
49
49
|
*
|
50
50
|
* @type {string}
|
51
51
|
* @memberof SystemInfoRuntime
|
52
52
|
*/
|
53
|
-
|
53
|
+
opensslVersion: string;
|
54
|
+
/**
|
55
|
+
*
|
56
|
+
* @type {boolean}
|
57
|
+
* @memberof SystemInfoRuntime
|
58
|
+
*/
|
59
|
+
opensslFipsMode: boolean;
|
60
|
+
/**
|
61
|
+
*
|
62
|
+
* @type {string}
|
63
|
+
* @memberof SystemInfoRuntime
|
64
|
+
*/
|
65
|
+
authentikVersion: string;
|
54
66
|
}
|
55
67
|
/**
|
56
68
|
* Check if a given object implements the SystemInfoRuntime interface.
|
@@ -20,11 +20,13 @@ exports.SystemInfoRuntimeToJSON = exports.SystemInfoRuntimeFromJSONTyped = expor
|
|
20
20
|
function instanceOfSystemInfoRuntime(value) {
|
21
21
|
let isInstance = true;
|
22
22
|
isInstance = isInstance && "pythonVersion" in value;
|
23
|
-
isInstance = isInstance && "gunicornVersion" in value;
|
24
23
|
isInstance = isInstance && "environment" in value;
|
25
24
|
isInstance = isInstance && "architecture" in value;
|
26
25
|
isInstance = isInstance && "platform" in value;
|
27
26
|
isInstance = isInstance && "uname" in value;
|
27
|
+
isInstance = isInstance && "opensslVersion" in value;
|
28
|
+
isInstance = isInstance && "opensslFipsMode" in value;
|
29
|
+
isInstance = isInstance && "authentikVersion" in value;
|
28
30
|
return isInstance;
|
29
31
|
}
|
30
32
|
exports.instanceOfSystemInfoRuntime = instanceOfSystemInfoRuntime;
|
@@ -38,11 +40,13 @@ function SystemInfoRuntimeFromJSONTyped(json, ignoreDiscriminator) {
|
|
38
40
|
}
|
39
41
|
return {
|
40
42
|
'pythonVersion': json['python_version'],
|
41
|
-
'gunicornVersion': json['gunicorn_version'],
|
42
43
|
'environment': json['environment'],
|
43
44
|
'architecture': json['architecture'],
|
44
45
|
'platform': json['platform'],
|
45
46
|
'uname': json['uname'],
|
47
|
+
'opensslVersion': json['openssl_version'],
|
48
|
+
'opensslFipsMode': json['openssl_fips_mode'],
|
49
|
+
'authentikVersion': json['authentik_version'],
|
46
50
|
};
|
47
51
|
}
|
48
52
|
exports.SystemInfoRuntimeFromJSONTyped = SystemInfoRuntimeFromJSONTyped;
|
@@ -55,11 +59,13 @@ function SystemInfoRuntimeToJSON(value) {
|
|
55
59
|
}
|
56
60
|
return {
|
57
61
|
'python_version': value.pythonVersion,
|
58
|
-
'gunicorn_version': value.gunicornVersion,
|
59
62
|
'environment': value.environment,
|
60
63
|
'architecture': value.architecture,
|
61
64
|
'platform': value.platform,
|
62
65
|
'uname': value.uname,
|
66
|
+
'openssl_version': value.opensslVersion,
|
67
|
+
'openssl_fips_mode': value.opensslFipsMode,
|
68
|
+
'authentik_version': value.authentikVersion,
|
63
69
|
};
|
64
70
|
}
|
65
71
|
exports.SystemInfoRuntimeToJSON = SystemInfoRuntimeToJSON;
|
@@ -40,6 +40,7 @@ function TypeCreateFromJSONTyped(json, ignoreDiscriminator) {
|
|
40
40
|
'description': json['description'],
|
41
41
|
'component': json['component'],
|
42
42
|
'modelName': json['model_name'],
|
43
|
+
'iconUrl': !(0, runtime_1.exists)(json, 'icon_url') ? undefined : json['icon_url'],
|
43
44
|
'requiresEnterprise': !(0, runtime_1.exists)(json, 'requires_enterprise') ? undefined : json['requires_enterprise'],
|
44
45
|
};
|
45
46
|
}
|
@@ -56,6 +57,7 @@ function TypeCreateToJSON(value) {
|
|
56
57
|
'description': value.description,
|
57
58
|
'component': value.component,
|
58
59
|
'model_name': value.modelName,
|
60
|
+
'icon_url': value.iconUrl,
|
59
61
|
'requires_enterprise': value.requiresEnterprise,
|
60
62
|
};
|
61
63
|
}
|
package/package.json
CHANGED
package/src/apis/OutpostsApi.ts
CHANGED
@@ -1171,7 +1171,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
|
1171
1171
|
}
|
1172
1172
|
|
1173
1173
|
/**
|
1174
|
-
* Get all creatable
|
1174
|
+
* Get all creatable types
|
1175
1175
|
*/
|
1176
1176
|
async outpostsServiceConnectionsAllTypesListRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<TypeCreate>>> {
|
1177
1177
|
const queryParameters: any = {};
|
@@ -1197,7 +1197,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
|
1197
1197
|
}
|
1198
1198
|
|
1199
1199
|
/**
|
1200
|
-
* Get all creatable
|
1200
|
+
* Get all creatable types
|
1201
1201
|
*/
|
1202
1202
|
async outpostsServiceConnectionsAllTypesList(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<TypeCreate>> {
|
1203
1203
|
const response = await this.outpostsServiceConnectionsAllTypesListRaw(initOverrides);
|
package/src/apis/PoliciesApi.ts
CHANGED
@@ -729,7 +729,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
|
729
729
|
}
|
730
730
|
|
731
731
|
/**
|
732
|
-
* Get all creatable
|
732
|
+
* Get all creatable types
|
733
733
|
*/
|
734
734
|
async policiesAllTypesListRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<TypeCreate>>> {
|
735
735
|
const queryParameters: any = {};
|
@@ -755,7 +755,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
|
755
755
|
}
|
756
756
|
|
757
757
|
/**
|
758
|
-
* Get all creatable
|
758
|
+
* Get all creatable types
|
759
759
|
*/
|
760
760
|
async policiesAllTypesList(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<TypeCreate>> {
|
761
761
|
const response = await this.policiesAllTypesListRaw(initOverrides);
|
@@ -642,7 +642,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
|
642
642
|
}
|
643
643
|
|
644
644
|
/**
|
645
|
-
* Get all creatable
|
645
|
+
* Get all creatable types
|
646
646
|
*/
|
647
647
|
async propertymappingsAllTypesListRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<TypeCreate>>> {
|
648
648
|
const queryParameters: any = {};
|
@@ -668,7 +668,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
|
668
668
|
}
|
669
669
|
|
670
670
|
/**
|
671
|
-
* Get all creatable
|
671
|
+
* Get all creatable types
|
672
672
|
*/
|
673
673
|
async propertymappingsAllTypesList(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<TypeCreate>> {
|
674
674
|
const response = await this.propertymappingsAllTypesListRaw(initOverrides);
|
package/src/apis/ProvidersApi.ts
CHANGED
@@ -921,7 +921,7 @@ export class ProvidersApi extends runtime.BaseAPI {
|
|
921
921
|
}
|
922
922
|
|
923
923
|
/**
|
924
|
-
* Get all creatable
|
924
|
+
* Get all creatable types
|
925
925
|
*/
|
926
926
|
async providersAllTypesListRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<TypeCreate>>> {
|
927
927
|
const queryParameters: any = {};
|
@@ -947,7 +947,7 @@ export class ProvidersApi extends runtime.BaseAPI {
|
|
947
947
|
}
|
948
948
|
|
949
949
|
/**
|
950
|
-
* Get all creatable
|
950
|
+
* Get all creatable types
|
951
951
|
*/
|
952
952
|
async providersAllTypesList(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<TypeCreate>> {
|
953
953
|
const response = await this.providersAllTypesListRaw(initOverrides);
|
package/src/apis/SourcesApi.ts
CHANGED
@@ -931,7 +931,7 @@ export class SourcesApi extends runtime.BaseAPI {
|
|
931
931
|
}
|
932
932
|
|
933
933
|
/**
|
934
|
-
* Get all creatable
|
934
|
+
* Get all creatable types
|
935
935
|
*/
|
936
936
|
async sourcesAllTypesListRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<TypeCreate>>> {
|
937
937
|
const queryParameters: any = {};
|
@@ -957,7 +957,7 @@ export class SourcesApi extends runtime.BaseAPI {
|
|
957
957
|
}
|
958
958
|
|
959
959
|
/**
|
960
|
-
* Get all creatable
|
960
|
+
* Get all creatable types
|
961
961
|
*/
|
962
962
|
async sourcesAllTypesList(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<TypeCreate>> {
|
963
963
|
const response = await this.sourcesAllTypesListRaw(initOverrides);
|
package/src/apis/StagesApi.ts
CHANGED
@@ -1347,7 +1347,7 @@ export class StagesApi extends runtime.BaseAPI {
|
|
1347
1347
|
}
|
1348
1348
|
|
1349
1349
|
/**
|
1350
|
-
* Get all creatable
|
1350
|
+
* Get all creatable types
|
1351
1351
|
*/
|
1352
1352
|
async stagesAllTypesListRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<TypeCreate>>> {
|
1353
1353
|
const queryParameters: any = {};
|
@@ -1373,7 +1373,7 @@ export class StagesApi extends runtime.BaseAPI {
|
|
1373
1373
|
}
|
1374
1374
|
|
1375
1375
|
/**
|
1376
|
-
* Get all creatable
|
1376
|
+
* Get all creatable types
|
1377
1377
|
*/
|
1378
1378
|
async stagesAllTypesList(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<TypeCreate>> {
|
1379
1379
|
const response = await this.stagesAllTypesListRaw(initOverrides);
|
package/src/models/LDAPSource.ts
CHANGED
@@ -117,12 +117,11 @@ export interface LDAPSource {
|
|
117
117
|
*/
|
118
118
|
userPathTemplate?: string;
|
119
119
|
/**
|
120
|
-
*
|
121
|
-
* starts with http it is returned as-is
|
120
|
+
*
|
122
121
|
* @type {string}
|
123
122
|
* @memberof LDAPSource
|
124
123
|
*/
|
125
|
-
readonly icon: string
|
124
|
+
readonly icon: string;
|
126
125
|
/**
|
127
126
|
*
|
128
127
|
* @type {string}
|
@@ -37,6 +37,30 @@ export interface OutpostHealth {
|
|
37
37
|
* @memberof OutpostHealth
|
38
38
|
*/
|
39
39
|
readonly version: string;
|
40
|
+
/**
|
41
|
+
*
|
42
|
+
* @type {string}
|
43
|
+
* @memberof OutpostHealth
|
44
|
+
*/
|
45
|
+
readonly golangVersion: string;
|
46
|
+
/**
|
47
|
+
*
|
48
|
+
* @type {boolean}
|
49
|
+
* @memberof OutpostHealth
|
50
|
+
*/
|
51
|
+
readonly opensslEnabled: boolean;
|
52
|
+
/**
|
53
|
+
*
|
54
|
+
* @type {string}
|
55
|
+
* @memberof OutpostHealth
|
56
|
+
*/
|
57
|
+
readonly opensslVersion: string;
|
58
|
+
/**
|
59
|
+
*
|
60
|
+
* @type {boolean}
|
61
|
+
* @memberof OutpostHealth
|
62
|
+
*/
|
63
|
+
readonly fipsEnabled: boolean;
|
40
64
|
/**
|
41
65
|
*
|
42
66
|
* @type {string}
|
@@ -77,6 +101,10 @@ export function instanceOfOutpostHealth(value: object): boolean {
|
|
77
101
|
isInstance = isInstance && "uid" in value;
|
78
102
|
isInstance = isInstance && "lastSeen" in value;
|
79
103
|
isInstance = isInstance && "version" in value;
|
104
|
+
isInstance = isInstance && "golangVersion" in value;
|
105
|
+
isInstance = isInstance && "opensslEnabled" in value;
|
106
|
+
isInstance = isInstance && "opensslVersion" in value;
|
107
|
+
isInstance = isInstance && "fipsEnabled" in value;
|
80
108
|
isInstance = isInstance && "versionShould" in value;
|
81
109
|
isInstance = isInstance && "versionOutdated" in value;
|
82
110
|
isInstance = isInstance && "buildHash" in value;
|
@@ -99,6 +127,10 @@ export function OutpostHealthFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
99
127
|
'uid': json['uid'],
|
100
128
|
'lastSeen': (new Date(json['last_seen'])),
|
101
129
|
'version': json['version'],
|
130
|
+
'golangVersion': json['golang_version'],
|
131
|
+
'opensslEnabled': json['openssl_enabled'],
|
132
|
+
'opensslVersion': json['openssl_version'],
|
133
|
+
'fipsEnabled': json['fips_enabled'],
|
102
134
|
'versionShould': json['version_should'],
|
103
135
|
'versionOutdated': json['version_outdated'],
|
104
136
|
'buildHash': json['build_hash'],
|
package/src/models/PlexSource.ts
CHANGED
@@ -117,12 +117,11 @@ export interface PlexSource {
|
|
117
117
|
*/
|
118
118
|
userPathTemplate?: string;
|
119
119
|
/**
|
120
|
-
*
|
121
|
-
* starts with http it is returned as-is
|
120
|
+
*
|
122
121
|
* @type {string}
|
123
122
|
* @memberof PlexSource
|
124
123
|
*/
|
125
|
-
readonly icon: string
|
124
|
+
readonly icon: string;
|
126
125
|
/**
|
127
126
|
* Client identifier used to talk to Plex.
|
128
127
|
* @type {string}
|
package/src/models/SAMLSource.ts
CHANGED
@@ -141,12 +141,11 @@ export interface SAMLSource {
|
|
141
141
|
*/
|
142
142
|
userPathTemplate?: string;
|
143
143
|
/**
|
144
|
-
*
|
145
|
-
* starts with http it is returned as-is
|
144
|
+
*
|
146
145
|
* @type {string}
|
147
146
|
* @memberof SAMLSource
|
148
147
|
*/
|
149
|
-
readonly icon: string
|
148
|
+
readonly icon: string;
|
150
149
|
/**
|
151
150
|
* Flow used before authentication.
|
152
151
|
* @type {string}
|
@@ -30,31 +30,43 @@ export interface SystemInfoRuntime {
|
|
30
30
|
* @type {string}
|
31
31
|
* @memberof SystemInfoRuntime
|
32
32
|
*/
|
33
|
-
|
33
|
+
environment: string;
|
34
34
|
/**
|
35
35
|
*
|
36
36
|
* @type {string}
|
37
37
|
* @memberof SystemInfoRuntime
|
38
38
|
*/
|
39
|
-
|
39
|
+
architecture: string;
|
40
40
|
/**
|
41
41
|
*
|
42
42
|
* @type {string}
|
43
43
|
* @memberof SystemInfoRuntime
|
44
44
|
*/
|
45
|
-
|
45
|
+
platform: string;
|
46
46
|
/**
|
47
47
|
*
|
48
48
|
* @type {string}
|
49
49
|
* @memberof SystemInfoRuntime
|
50
50
|
*/
|
51
|
-
|
51
|
+
uname: string;
|
52
52
|
/**
|
53
53
|
*
|
54
54
|
* @type {string}
|
55
55
|
* @memberof SystemInfoRuntime
|
56
56
|
*/
|
57
|
-
|
57
|
+
opensslVersion: string;
|
58
|
+
/**
|
59
|
+
*
|
60
|
+
* @type {boolean}
|
61
|
+
* @memberof SystemInfoRuntime
|
62
|
+
*/
|
63
|
+
opensslFipsMode: boolean;
|
64
|
+
/**
|
65
|
+
*
|
66
|
+
* @type {string}
|
67
|
+
* @memberof SystemInfoRuntime
|
68
|
+
*/
|
69
|
+
authentikVersion: string;
|
58
70
|
}
|
59
71
|
|
60
72
|
/**
|
@@ -63,11 +75,13 @@ export interface SystemInfoRuntime {
|
|
63
75
|
export function instanceOfSystemInfoRuntime(value: object): boolean {
|
64
76
|
let isInstance = true;
|
65
77
|
isInstance = isInstance && "pythonVersion" in value;
|
66
|
-
isInstance = isInstance && "gunicornVersion" in value;
|
67
78
|
isInstance = isInstance && "environment" in value;
|
68
79
|
isInstance = isInstance && "architecture" in value;
|
69
80
|
isInstance = isInstance && "platform" in value;
|
70
81
|
isInstance = isInstance && "uname" in value;
|
82
|
+
isInstance = isInstance && "opensslVersion" in value;
|
83
|
+
isInstance = isInstance && "opensslFipsMode" in value;
|
84
|
+
isInstance = isInstance && "authentikVersion" in value;
|
71
85
|
|
72
86
|
return isInstance;
|
73
87
|
}
|
@@ -83,11 +97,13 @@ export function SystemInfoRuntimeFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
83
97
|
return {
|
84
98
|
|
85
99
|
'pythonVersion': json['python_version'],
|
86
|
-
'gunicornVersion': json['gunicorn_version'],
|
87
100
|
'environment': json['environment'],
|
88
101
|
'architecture': json['architecture'],
|
89
102
|
'platform': json['platform'],
|
90
103
|
'uname': json['uname'],
|
104
|
+
'opensslVersion': json['openssl_version'],
|
105
|
+
'opensslFipsMode': json['openssl_fips_mode'],
|
106
|
+
'authentikVersion': json['authentik_version'],
|
91
107
|
};
|
92
108
|
}
|
93
109
|
|
@@ -101,11 +117,13 @@ export function SystemInfoRuntimeToJSON(value?: SystemInfoRuntime | null): any {
|
|
101
117
|
return {
|
102
118
|
|
103
119
|
'python_version': value.pythonVersion,
|
104
|
-
'gunicorn_version': value.gunicornVersion,
|
105
120
|
'environment': value.environment,
|
106
121
|
'architecture': value.architecture,
|
107
122
|
'platform': value.platform,
|
108
123
|
'uname': value.uname,
|
124
|
+
'openssl_version': value.opensslVersion,
|
125
|
+
'openssl_fips_mode': value.opensslFipsMode,
|
126
|
+
'authentik_version': value.authentikVersion,
|
109
127
|
};
|
110
128
|
}
|
111
129
|
|
package/src/models/TypeCreate.ts
CHANGED
@@ -43,6 +43,12 @@ export interface TypeCreate {
|
|
43
43
|
* @memberof TypeCreate
|
44
44
|
*/
|
45
45
|
modelName: string;
|
46
|
+
/**
|
47
|
+
*
|
48
|
+
* @type {string}
|
49
|
+
* @memberof TypeCreate
|
50
|
+
*/
|
51
|
+
iconUrl?: string;
|
46
52
|
/**
|
47
53
|
*
|
48
54
|
* @type {boolean}
|
@@ -78,6 +84,7 @@ export function TypeCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean)
|
|
78
84
|
'description': json['description'],
|
79
85
|
'component': json['component'],
|
80
86
|
'modelName': json['model_name'],
|
87
|
+
'iconUrl': !exists(json, 'icon_url') ? undefined : json['icon_url'],
|
81
88
|
'requiresEnterprise': !exists(json, 'requires_enterprise') ? undefined : json['requires_enterprise'],
|
82
89
|
};
|
83
90
|
}
|
@@ -95,6 +102,7 @@ export function TypeCreateToJSON(value?: TypeCreate | null): any {
|
|
95
102
|
'description': value.description,
|
96
103
|
'component': value.component,
|
97
104
|
'model_name': value.modelName,
|
105
|
+
'icon_url': value.iconUrl,
|
98
106
|
'requires_enterprise': value.requiresEnterprise,
|
99
107
|
};
|
100
108
|
}
|