@goauthentik/api 2023.10.4-1702933698 → 2023.10.4-1702989148
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.
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
* * `require_authenticated` - Require Authenticated
|
|
15
15
|
* * `require_unauthenticated` - Require Unauthenticated
|
|
16
16
|
* * `require_superuser` - Require Superuser
|
|
17
|
+
* * `require_outpost` - Require Outpost
|
|
17
18
|
* @export
|
|
18
19
|
*/
|
|
19
20
|
export declare const AuthenticationEnum: {
|
|
@@ -21,6 +22,7 @@ export declare const AuthenticationEnum: {
|
|
|
21
22
|
readonly RequireAuthenticated: "require_authenticated";
|
|
22
23
|
readonly RequireUnauthenticated: "require_unauthenticated";
|
|
23
24
|
readonly RequireSuperuser: "require_superuser";
|
|
25
|
+
readonly RequireOutpost: "require_outpost";
|
|
24
26
|
readonly UnknownDefaultOpenApi: "11184809";
|
|
25
27
|
};
|
|
26
28
|
export type AuthenticationEnum = typeof AuthenticationEnum[keyof typeof AuthenticationEnum];
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
* * `require_authenticated` - Require Authenticated
|
|
17
17
|
* * `require_unauthenticated` - Require Unauthenticated
|
|
18
18
|
* * `require_superuser` - Require Superuser
|
|
19
|
+
* * `require_outpost` - Require Outpost
|
|
19
20
|
* @export
|
|
20
21
|
*/
|
|
21
22
|
export const AuthenticationEnum = {
|
|
@@ -23,6 +24,7 @@ export const AuthenticationEnum = {
|
|
|
23
24
|
RequireAuthenticated: 'require_authenticated',
|
|
24
25
|
RequireUnauthenticated: 'require_unauthenticated',
|
|
25
26
|
RequireSuperuser: 'require_superuser',
|
|
27
|
+
RequireOutpost: 'require_outpost',
|
|
26
28
|
UnknownDefaultOpenApi: '11184809'
|
|
27
29
|
};
|
|
28
30
|
export function AuthenticationEnumFromJSON(json) {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
* * `require_authenticated` - Require Authenticated
|
|
15
15
|
* * `require_unauthenticated` - Require Unauthenticated
|
|
16
16
|
* * `require_superuser` - Require Superuser
|
|
17
|
+
* * `require_outpost` - Require Outpost
|
|
17
18
|
* @export
|
|
18
19
|
*/
|
|
19
20
|
export declare const AuthenticationEnum: {
|
|
@@ -21,6 +22,7 @@ export declare const AuthenticationEnum: {
|
|
|
21
22
|
readonly RequireAuthenticated: "require_authenticated";
|
|
22
23
|
readonly RequireUnauthenticated: "require_unauthenticated";
|
|
23
24
|
readonly RequireSuperuser: "require_superuser";
|
|
25
|
+
readonly RequireOutpost: "require_outpost";
|
|
24
26
|
readonly UnknownDefaultOpenApi: "11184809";
|
|
25
27
|
};
|
|
26
28
|
export type AuthenticationEnum = typeof AuthenticationEnum[keyof typeof AuthenticationEnum];
|
|
@@ -19,6 +19,7 @@ exports.AuthenticationEnumToJSON = exports.AuthenticationEnumFromJSONTyped = exp
|
|
|
19
19
|
* * `require_authenticated` - Require Authenticated
|
|
20
20
|
* * `require_unauthenticated` - Require Unauthenticated
|
|
21
21
|
* * `require_superuser` - Require Superuser
|
|
22
|
+
* * `require_outpost` - Require Outpost
|
|
22
23
|
* @export
|
|
23
24
|
*/
|
|
24
25
|
exports.AuthenticationEnum = {
|
|
@@ -26,6 +27,7 @@ exports.AuthenticationEnum = {
|
|
|
26
27
|
RequireAuthenticated: 'require_authenticated',
|
|
27
28
|
RequireUnauthenticated: 'require_unauthenticated',
|
|
28
29
|
RequireSuperuser: 'require_superuser',
|
|
30
|
+
RequireOutpost: 'require_outpost',
|
|
29
31
|
UnknownDefaultOpenApi: '11184809'
|
|
30
32
|
};
|
|
31
33
|
function AuthenticationEnumFromJSON(json) {
|
package/package.json
CHANGED
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
* * `require_authenticated` - Require Authenticated
|
|
19
19
|
* * `require_unauthenticated` - Require Unauthenticated
|
|
20
20
|
* * `require_superuser` - Require Superuser
|
|
21
|
+
* * `require_outpost` - Require Outpost
|
|
21
22
|
* @export
|
|
22
23
|
*/
|
|
23
24
|
export const AuthenticationEnum = {
|
|
@@ -25,6 +26,7 @@ export const AuthenticationEnum = {
|
|
|
25
26
|
RequireAuthenticated: 'require_authenticated',
|
|
26
27
|
RequireUnauthenticated: 'require_unauthenticated',
|
|
27
28
|
RequireSuperuser: 'require_superuser',
|
|
29
|
+
RequireOutpost: 'require_outpost',
|
|
28
30
|
UnknownDefaultOpenApi: '11184809'
|
|
29
31
|
} as const;
|
|
30
32
|
export type AuthenticationEnum = typeof AuthenticationEnum[keyof typeof AuthenticationEnum];
|