@goauthentik/api 2025.10.0-rc1-1758642738 → 2025.10.0-rc1-1758664464
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/esm/models/AppEnum.d.ts +1 -0
- package/dist/esm/models/AppEnum.d.ts.map +1 -1
- package/dist/esm/models/AppEnum.js +1 -0
- package/dist/esm/models/AppEnum.js.map +1 -1
- package/dist/esm/models/AuthenticatedSessionAsn.d.ts +1 -1
- package/dist/esm/models/AuthenticatedSessionAsn.d.ts.map +1 -1
- package/dist/esm/models/AuthenticatedSessionGeoIp.d.ts +4 -4
- package/dist/esm/models/AuthenticatedSessionGeoIp.d.ts.map +1 -1
- package/dist/esm/models/PatchedRadiusProviderRequest.d.ts +6 -0
- package/dist/esm/models/PatchedRadiusProviderRequest.d.ts.map +1 -1
- package/dist/esm/models/PatchedRadiusProviderRequest.js +2 -0
- package/dist/esm/models/PatchedRadiusProviderRequest.js.map +1 -1
- package/dist/esm/models/RadiusOutpostConfig.d.ts +6 -0
- package/dist/esm/models/RadiusOutpostConfig.d.ts.map +1 -1
- package/dist/esm/models/RadiusOutpostConfig.js +2 -0
- package/dist/esm/models/RadiusOutpostConfig.js.map +1 -1
- package/dist/esm/models/RadiusProvider.d.ts +6 -0
- package/dist/esm/models/RadiusProvider.d.ts.map +1 -1
- package/dist/esm/models/RadiusProvider.js +2 -0
- package/dist/esm/models/RadiusProvider.js.map +1 -1
- package/dist/esm/models/RadiusProviderRequest.d.ts +6 -0
- package/dist/esm/models/RadiusProviderRequest.d.ts.map +1 -1
- package/dist/esm/models/RadiusProviderRequest.js +2 -0
- package/dist/esm/models/RadiusProviderRequest.js.map +1 -1
- package/dist/models/AppEnum.d.ts +1 -0
- package/dist/models/AppEnum.d.ts.map +1 -1
- package/dist/models/AppEnum.js +1 -0
- package/dist/models/AppEnum.js.map +1 -1
- package/dist/models/AuthenticatedSessionAsn.d.ts +1 -1
- package/dist/models/AuthenticatedSessionAsn.d.ts.map +1 -1
- package/dist/models/AuthenticatedSessionGeoIp.d.ts +4 -4
- package/dist/models/AuthenticatedSessionGeoIp.d.ts.map +1 -1
- package/dist/models/PatchedRadiusProviderRequest.d.ts +6 -0
- package/dist/models/PatchedRadiusProviderRequest.d.ts.map +1 -1
- package/dist/models/PatchedRadiusProviderRequest.js +2 -0
- package/dist/models/PatchedRadiusProviderRequest.js.map +1 -1
- package/dist/models/RadiusOutpostConfig.d.ts +6 -0
- package/dist/models/RadiusOutpostConfig.d.ts.map +1 -1
- package/dist/models/RadiusOutpostConfig.js +2 -0
- package/dist/models/RadiusOutpostConfig.js.map +1 -1
- package/dist/models/RadiusProvider.d.ts +6 -0
- package/dist/models/RadiusProvider.d.ts.map +1 -1
- package/dist/models/RadiusProvider.js +2 -0
- package/dist/models/RadiusProvider.js.map +1 -1
- package/dist/models/RadiusProviderRequest.d.ts +6 -0
- package/dist/models/RadiusProviderRequest.d.ts.map +1 -1
- package/dist/models/RadiusProviderRequest.js +2 -0
- package/dist/models/RadiusProviderRequest.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/models/AppEnum.ts +1 -0
- package/src/models/AuthenticatedSessionAsn.ts +1 -1
- package/src/models/AuthenticatedSessionGeoIp.ts +4 -4
- package/src/models/PatchedRadiusProviderRequest.ts +8 -0
- package/src/models/RadiusOutpostConfig.ts +8 -0
- package/src/models/RadiusProvider.ts +8 -0
- package/src/models/RadiusProviderRequest.ts +8 -0
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
package/src/models/AppEnum.ts
CHANGED
|
@@ -80,6 +80,7 @@ export const AppEnum = {
|
|
|
80
80
|
AuthentikEnterprisePoliciesUniquePassword: 'authentik.enterprise.policies.unique_password',
|
|
81
81
|
AuthentikEnterpriseProvidersGoogleWorkspace: 'authentik.enterprise.providers.google_workspace',
|
|
82
82
|
AuthentikEnterpriseProvidersMicrosoftEntra: 'authentik.enterprise.providers.microsoft_entra',
|
|
83
|
+
AuthentikEnterpriseProvidersRadius: 'authentik.enterprise.providers.radius',
|
|
83
84
|
AuthentikEnterpriseProvidersScim: 'authentik.enterprise.providers.scim',
|
|
84
85
|
AuthentikEnterpriseProvidersSsf: 'authentik.enterprise.providers.ssf',
|
|
85
86
|
AuthentikEnterpriseSearch: 'authentik.enterprise.search',
|
|
@@ -24,25 +24,25 @@ export interface AuthenticatedSessionGeoIp {
|
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof AuthenticatedSessionGeoIp
|
|
26
26
|
*/
|
|
27
|
-
continent: string;
|
|
27
|
+
continent: string | null;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof AuthenticatedSessionGeoIp
|
|
32
32
|
*/
|
|
33
|
-
country: string;
|
|
33
|
+
country: string | null;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {number}
|
|
37
37
|
* @memberof AuthenticatedSessionGeoIp
|
|
38
38
|
*/
|
|
39
|
-
lat: number;
|
|
39
|
+
lat: number | null;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @type {number}
|
|
43
43
|
* @memberof AuthenticatedSessionGeoIp
|
|
44
44
|
*/
|
|
45
|
-
_long: number;
|
|
45
|
+
_long: number | null;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
48
|
* @type {string}
|
|
@@ -67,6 +67,12 @@ export interface PatchedRadiusProviderRequest {
|
|
|
67
67
|
* @memberof PatchedRadiusProviderRequest
|
|
68
68
|
*/
|
|
69
69
|
mfaSupport?: boolean;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof PatchedRadiusProviderRequest
|
|
74
|
+
*/
|
|
75
|
+
certificate?: string | null;
|
|
70
76
|
}
|
|
71
77
|
|
|
72
78
|
/**
|
|
@@ -94,6 +100,7 @@ export function PatchedRadiusProviderRequestFromJSONTyped(json: any, ignoreDiscr
|
|
|
94
100
|
'clientNetworks': json['client_networks'] == null ? undefined : json['client_networks'],
|
|
95
101
|
'sharedSecret': json['shared_secret'] == null ? undefined : json['shared_secret'],
|
|
96
102
|
'mfaSupport': json['mfa_support'] == null ? undefined : json['mfa_support'],
|
|
103
|
+
'certificate': json['certificate'] == null ? undefined : json['certificate'],
|
|
97
104
|
};
|
|
98
105
|
}
|
|
99
106
|
|
|
@@ -116,6 +123,7 @@ export function PatchedRadiusProviderRequestToJSONTyped(value?: PatchedRadiusPro
|
|
|
116
123
|
'client_networks': value['clientNetworks'],
|
|
117
124
|
'shared_secret': value['sharedSecret'],
|
|
118
125
|
'mfa_support': value['mfaSupport'],
|
|
126
|
+
'certificate': value['certificate'],
|
|
119
127
|
};
|
|
120
128
|
}
|
|
121
129
|
|
|
@@ -61,6 +61,12 @@ export interface RadiusOutpostConfig {
|
|
|
61
61
|
* @memberof RadiusOutpostConfig
|
|
62
62
|
*/
|
|
63
63
|
mfaSupport?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof RadiusOutpostConfig
|
|
68
|
+
*/
|
|
69
|
+
certificate?: string | null;
|
|
64
70
|
}
|
|
65
71
|
|
|
66
72
|
/**
|
|
@@ -91,6 +97,7 @@ export function RadiusOutpostConfigFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
91
97
|
'clientNetworks': json['client_networks'] == null ? undefined : json['client_networks'],
|
|
92
98
|
'sharedSecret': json['shared_secret'] == null ? undefined : json['shared_secret'],
|
|
93
99
|
'mfaSupport': json['mfa_support'] == null ? undefined : json['mfa_support'],
|
|
100
|
+
'certificate': json['certificate'] == null ? undefined : json['certificate'],
|
|
94
101
|
};
|
|
95
102
|
}
|
|
96
103
|
|
|
@@ -111,6 +118,7 @@ export function RadiusOutpostConfigToJSONTyped(value?: Omit<RadiusOutpostConfig,
|
|
|
111
118
|
'client_networks': value['clientNetworks'],
|
|
112
119
|
'shared_secret': value['sharedSecret'],
|
|
113
120
|
'mfa_support': value['mfaSupport'],
|
|
121
|
+
'certificate': value['certificate'],
|
|
114
122
|
};
|
|
115
123
|
}
|
|
116
124
|
|
|
@@ -127,6 +127,12 @@ export interface RadiusProvider {
|
|
|
127
127
|
* @memberof RadiusProvider
|
|
128
128
|
*/
|
|
129
129
|
mfaSupport?: boolean;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @type {string}
|
|
133
|
+
* @memberof RadiusProvider
|
|
134
|
+
*/
|
|
135
|
+
certificate?: string | null;
|
|
130
136
|
}
|
|
131
137
|
|
|
132
138
|
/**
|
|
@@ -177,6 +183,7 @@ export function RadiusProviderFromJSONTyped(json: any, ignoreDiscriminator: bool
|
|
|
177
183
|
'sharedSecret': json['shared_secret'] == null ? undefined : json['shared_secret'],
|
|
178
184
|
'outpostSet': json['outpost_set'],
|
|
179
185
|
'mfaSupport': json['mfa_support'] == null ? undefined : json['mfa_support'],
|
|
186
|
+
'certificate': json['certificate'] == null ? undefined : json['certificate'],
|
|
180
187
|
};
|
|
181
188
|
}
|
|
182
189
|
|
|
@@ -199,6 +206,7 @@ export function RadiusProviderToJSONTyped(value?: Omit<RadiusProvider, 'pk'|'com
|
|
|
199
206
|
'client_networks': value['clientNetworks'],
|
|
200
207
|
'shared_secret': value['sharedSecret'],
|
|
201
208
|
'mfa_support': value['mfaSupport'],
|
|
209
|
+
'certificate': value['certificate'],
|
|
202
210
|
};
|
|
203
211
|
}
|
|
204
212
|
|
|
@@ -67,6 +67,12 @@ export interface RadiusProviderRequest {
|
|
|
67
67
|
* @memberof RadiusProviderRequest
|
|
68
68
|
*/
|
|
69
69
|
mfaSupport?: boolean;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof RadiusProviderRequest
|
|
74
|
+
*/
|
|
75
|
+
certificate?: string | null;
|
|
70
76
|
}
|
|
71
77
|
|
|
72
78
|
/**
|
|
@@ -97,6 +103,7 @@ export function RadiusProviderRequestFromJSONTyped(json: any, ignoreDiscriminato
|
|
|
97
103
|
'clientNetworks': json['client_networks'] == null ? undefined : json['client_networks'],
|
|
98
104
|
'sharedSecret': json['shared_secret'] == null ? undefined : json['shared_secret'],
|
|
99
105
|
'mfaSupport': json['mfa_support'] == null ? undefined : json['mfa_support'],
|
|
106
|
+
'certificate': json['certificate'] == null ? undefined : json['certificate'],
|
|
100
107
|
};
|
|
101
108
|
}
|
|
102
109
|
|
|
@@ -119,6 +126,7 @@ export function RadiusProviderRequestToJSONTyped(value?: RadiusProviderRequest |
|
|
|
119
126
|
'client_networks': value['clientNetworks'],
|
|
120
127
|
'shared_secret': value['sharedSecret'],
|
|
121
128
|
'mfa_support': value['mfaSupport'],
|
|
129
|
+
'certificate': value['certificate'],
|
|
122
130
|
};
|
|
123
131
|
}
|
|
124
132
|
|