@goauthentik/api 2023.8.2-1693588399 → 2023.8.2-1693820747
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 +2 -0
- package/dist/esm/models/AppEnum.js +2 -0
- package/dist/esm/models/ModelEnum.d.ts +4 -0
- package/dist/esm/models/ModelEnum.js +4 -0
- package/dist/models/AppEnum.d.ts +2 -0
- package/dist/models/AppEnum.js +2 -0
- package/dist/models/ModelEnum.d.ts +4 -0
- package/dist/models/ModelEnum.js +4 -0
- package/package.json +1 -1
- package/src/models/AppEnum.ts +2 -0
- package/src/models/ModelEnum.ts +4 -0
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
* * `authentik.sources.oauth` - authentik Sources.OAuth
|
|
35
35
|
* * `authentik.sources.plex` - authentik Sources.Plex
|
|
36
36
|
* * `authentik.sources.saml` - authentik Sources.SAML
|
|
37
|
+
* * `authentik.stages.authenticator` - authentik Stages.Authenticator
|
|
37
38
|
* * `authentik.stages.authenticator_duo` - authentik Stages.Authenticator.Duo
|
|
38
39
|
* * `authentik.stages.authenticator_sms` - authentik Stages.Authenticator.SMS
|
|
39
40
|
* * `authentik.stages.authenticator_static` - authentik Stages.Authenticator.Static
|
|
@@ -84,6 +85,7 @@ export declare const AppEnum: {
|
|
|
84
85
|
readonly SourcesOauth: "authentik.sources.oauth";
|
|
85
86
|
readonly SourcesPlex: "authentik.sources.plex";
|
|
86
87
|
readonly SourcesSaml: "authentik.sources.saml";
|
|
88
|
+
readonly StagesAuthenticator: "authentik.stages.authenticator";
|
|
87
89
|
readonly StagesAuthenticatorDuo: "authentik.stages.authenticator_duo";
|
|
88
90
|
readonly StagesAuthenticatorSms: "authentik.stages.authenticator_sms";
|
|
89
91
|
readonly StagesAuthenticatorStatic: "authentik.stages.authenticator_static";
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
* * `authentik.sources.oauth` - authentik Sources.OAuth
|
|
37
37
|
* * `authentik.sources.plex` - authentik Sources.Plex
|
|
38
38
|
* * `authentik.sources.saml` - authentik Sources.SAML
|
|
39
|
+
* * `authentik.stages.authenticator` - authentik Stages.Authenticator
|
|
39
40
|
* * `authentik.stages.authenticator_duo` - authentik Stages.Authenticator.Duo
|
|
40
41
|
* * `authentik.stages.authenticator_sms` - authentik Stages.Authenticator.SMS
|
|
41
42
|
* * `authentik.stages.authenticator_static` - authentik Stages.Authenticator.Static
|
|
@@ -86,6 +87,7 @@ export const AppEnum = {
|
|
|
86
87
|
SourcesOauth: 'authentik.sources.oauth',
|
|
87
88
|
SourcesPlex: 'authentik.sources.plex',
|
|
88
89
|
SourcesSaml: 'authentik.sources.saml',
|
|
90
|
+
StagesAuthenticator: 'authentik.stages.authenticator',
|
|
89
91
|
StagesAuthenticatorDuo: 'authentik.stages.authenticator_duo',
|
|
90
92
|
StagesAuthenticatorSms: 'authentik.stages.authenticator_sms',
|
|
91
93
|
StagesAuthenticatorStatic: 'authentik.stages.authenticator_static',
|
|
@@ -54,7 +54,9 @@
|
|
|
54
54
|
* * `authentik_stages_authenticator_sms.authenticatorsmsstage` - SMS Authenticator Setup Stage
|
|
55
55
|
* * `authentik_stages_authenticator_sms.smsdevice` - SMS Device
|
|
56
56
|
* * `authentik_stages_authenticator_static.authenticatorstaticstage` - Static Authenticator Stage
|
|
57
|
+
* * `authentik_stages_authenticator_static.staticdevice` - Static device
|
|
57
58
|
* * `authentik_stages_authenticator_totp.authenticatortotpstage` - TOTP Authenticator Setup Stage
|
|
59
|
+
* * `authentik_stages_authenticator_totp.totpdevice` - TOTP device
|
|
58
60
|
* * `authentik_stages_authenticator_validate.authenticatorvalidatestage` - Authenticator Validation Stage
|
|
59
61
|
* * `authentik_stages_authenticator_webauthn.authenticatewebauthnstage` - WebAuthn Authenticator Setup Stage
|
|
60
62
|
* * `authentik_stages_authenticator_webauthn.webauthndevice` - WebAuthn Device
|
|
@@ -127,7 +129,9 @@ export declare const ModelEnum: {
|
|
|
127
129
|
readonly StagesAuthenticatorSmsAuthenticatorsmsstage: "authentik_stages_authenticator_sms.authenticatorsmsstage";
|
|
128
130
|
readonly StagesAuthenticatorSmsSmsdevice: "authentik_stages_authenticator_sms.smsdevice";
|
|
129
131
|
readonly StagesAuthenticatorStaticAuthenticatorstaticstage: "authentik_stages_authenticator_static.authenticatorstaticstage";
|
|
132
|
+
readonly StagesAuthenticatorStaticStaticdevice: "authentik_stages_authenticator_static.staticdevice";
|
|
130
133
|
readonly StagesAuthenticatorTotpAuthenticatortotpstage: "authentik_stages_authenticator_totp.authenticatortotpstage";
|
|
134
|
+
readonly StagesAuthenticatorTotpTotpdevice: "authentik_stages_authenticator_totp.totpdevice";
|
|
131
135
|
readonly StagesAuthenticatorValidateAuthenticatorvalidatestage: "authentik_stages_authenticator_validate.authenticatorvalidatestage";
|
|
132
136
|
readonly StagesAuthenticatorWebauthnAuthenticatewebauthnstage: "authentik_stages_authenticator_webauthn.authenticatewebauthnstage";
|
|
133
137
|
readonly StagesAuthenticatorWebauthnWebauthndevice: "authentik_stages_authenticator_webauthn.webauthndevice";
|
|
@@ -56,7 +56,9 @@
|
|
|
56
56
|
* * `authentik_stages_authenticator_sms.authenticatorsmsstage` - SMS Authenticator Setup Stage
|
|
57
57
|
* * `authentik_stages_authenticator_sms.smsdevice` - SMS Device
|
|
58
58
|
* * `authentik_stages_authenticator_static.authenticatorstaticstage` - Static Authenticator Stage
|
|
59
|
+
* * `authentik_stages_authenticator_static.staticdevice` - Static device
|
|
59
60
|
* * `authentik_stages_authenticator_totp.authenticatortotpstage` - TOTP Authenticator Setup Stage
|
|
61
|
+
* * `authentik_stages_authenticator_totp.totpdevice` - TOTP device
|
|
60
62
|
* * `authentik_stages_authenticator_validate.authenticatorvalidatestage` - Authenticator Validation Stage
|
|
61
63
|
* * `authentik_stages_authenticator_webauthn.authenticatewebauthnstage` - WebAuthn Authenticator Setup Stage
|
|
62
64
|
* * `authentik_stages_authenticator_webauthn.webauthndevice` - WebAuthn Device
|
|
@@ -129,7 +131,9 @@ export const ModelEnum = {
|
|
|
129
131
|
StagesAuthenticatorSmsAuthenticatorsmsstage: 'authentik_stages_authenticator_sms.authenticatorsmsstage',
|
|
130
132
|
StagesAuthenticatorSmsSmsdevice: 'authentik_stages_authenticator_sms.smsdevice',
|
|
131
133
|
StagesAuthenticatorStaticAuthenticatorstaticstage: 'authentik_stages_authenticator_static.authenticatorstaticstage',
|
|
134
|
+
StagesAuthenticatorStaticStaticdevice: 'authentik_stages_authenticator_static.staticdevice',
|
|
132
135
|
StagesAuthenticatorTotpAuthenticatortotpstage: 'authentik_stages_authenticator_totp.authenticatortotpstage',
|
|
136
|
+
StagesAuthenticatorTotpTotpdevice: 'authentik_stages_authenticator_totp.totpdevice',
|
|
133
137
|
StagesAuthenticatorValidateAuthenticatorvalidatestage: 'authentik_stages_authenticator_validate.authenticatorvalidatestage',
|
|
134
138
|
StagesAuthenticatorWebauthnAuthenticatewebauthnstage: 'authentik_stages_authenticator_webauthn.authenticatewebauthnstage',
|
|
135
139
|
StagesAuthenticatorWebauthnWebauthndevice: 'authentik_stages_authenticator_webauthn.webauthndevice',
|
package/dist/models/AppEnum.d.ts
CHANGED
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
* * `authentik.sources.oauth` - authentik Sources.OAuth
|
|
35
35
|
* * `authentik.sources.plex` - authentik Sources.Plex
|
|
36
36
|
* * `authentik.sources.saml` - authentik Sources.SAML
|
|
37
|
+
* * `authentik.stages.authenticator` - authentik Stages.Authenticator
|
|
37
38
|
* * `authentik.stages.authenticator_duo` - authentik Stages.Authenticator.Duo
|
|
38
39
|
* * `authentik.stages.authenticator_sms` - authentik Stages.Authenticator.SMS
|
|
39
40
|
* * `authentik.stages.authenticator_static` - authentik Stages.Authenticator.Static
|
|
@@ -84,6 +85,7 @@ export declare const AppEnum: {
|
|
|
84
85
|
readonly SourcesOauth: "authentik.sources.oauth";
|
|
85
86
|
readonly SourcesPlex: "authentik.sources.plex";
|
|
86
87
|
readonly SourcesSaml: "authentik.sources.saml";
|
|
88
|
+
readonly StagesAuthenticator: "authentik.stages.authenticator";
|
|
87
89
|
readonly StagesAuthenticatorDuo: "authentik.stages.authenticator_duo";
|
|
88
90
|
readonly StagesAuthenticatorSms: "authentik.stages.authenticator_sms";
|
|
89
91
|
readonly StagesAuthenticatorStatic: "authentik.stages.authenticator_static";
|
package/dist/models/AppEnum.js
CHANGED
|
@@ -39,6 +39,7 @@ exports.AppEnumToJSON = exports.AppEnumFromJSONTyped = exports.AppEnumFromJSON =
|
|
|
39
39
|
* * `authentik.sources.oauth` - authentik Sources.OAuth
|
|
40
40
|
* * `authentik.sources.plex` - authentik Sources.Plex
|
|
41
41
|
* * `authentik.sources.saml` - authentik Sources.SAML
|
|
42
|
+
* * `authentik.stages.authenticator` - authentik Stages.Authenticator
|
|
42
43
|
* * `authentik.stages.authenticator_duo` - authentik Stages.Authenticator.Duo
|
|
43
44
|
* * `authentik.stages.authenticator_sms` - authentik Stages.Authenticator.SMS
|
|
44
45
|
* * `authentik.stages.authenticator_static` - authentik Stages.Authenticator.Static
|
|
@@ -89,6 +90,7 @@ exports.AppEnum = {
|
|
|
89
90
|
SourcesOauth: 'authentik.sources.oauth',
|
|
90
91
|
SourcesPlex: 'authentik.sources.plex',
|
|
91
92
|
SourcesSaml: 'authentik.sources.saml',
|
|
93
|
+
StagesAuthenticator: 'authentik.stages.authenticator',
|
|
92
94
|
StagesAuthenticatorDuo: 'authentik.stages.authenticator_duo',
|
|
93
95
|
StagesAuthenticatorSms: 'authentik.stages.authenticator_sms',
|
|
94
96
|
StagesAuthenticatorStatic: 'authentik.stages.authenticator_static',
|
|
@@ -54,7 +54,9 @@
|
|
|
54
54
|
* * `authentik_stages_authenticator_sms.authenticatorsmsstage` - SMS Authenticator Setup Stage
|
|
55
55
|
* * `authentik_stages_authenticator_sms.smsdevice` - SMS Device
|
|
56
56
|
* * `authentik_stages_authenticator_static.authenticatorstaticstage` - Static Authenticator Stage
|
|
57
|
+
* * `authentik_stages_authenticator_static.staticdevice` - Static device
|
|
57
58
|
* * `authentik_stages_authenticator_totp.authenticatortotpstage` - TOTP Authenticator Setup Stage
|
|
59
|
+
* * `authentik_stages_authenticator_totp.totpdevice` - TOTP device
|
|
58
60
|
* * `authentik_stages_authenticator_validate.authenticatorvalidatestage` - Authenticator Validation Stage
|
|
59
61
|
* * `authentik_stages_authenticator_webauthn.authenticatewebauthnstage` - WebAuthn Authenticator Setup Stage
|
|
60
62
|
* * `authentik_stages_authenticator_webauthn.webauthndevice` - WebAuthn Device
|
|
@@ -127,7 +129,9 @@ export declare const ModelEnum: {
|
|
|
127
129
|
readonly StagesAuthenticatorSmsAuthenticatorsmsstage: "authentik_stages_authenticator_sms.authenticatorsmsstage";
|
|
128
130
|
readonly StagesAuthenticatorSmsSmsdevice: "authentik_stages_authenticator_sms.smsdevice";
|
|
129
131
|
readonly StagesAuthenticatorStaticAuthenticatorstaticstage: "authentik_stages_authenticator_static.authenticatorstaticstage";
|
|
132
|
+
readonly StagesAuthenticatorStaticStaticdevice: "authentik_stages_authenticator_static.staticdevice";
|
|
130
133
|
readonly StagesAuthenticatorTotpAuthenticatortotpstage: "authentik_stages_authenticator_totp.authenticatortotpstage";
|
|
134
|
+
readonly StagesAuthenticatorTotpTotpdevice: "authentik_stages_authenticator_totp.totpdevice";
|
|
131
135
|
readonly StagesAuthenticatorValidateAuthenticatorvalidatestage: "authentik_stages_authenticator_validate.authenticatorvalidatestage";
|
|
132
136
|
readonly StagesAuthenticatorWebauthnAuthenticatewebauthnstage: "authentik_stages_authenticator_webauthn.authenticatewebauthnstage";
|
|
133
137
|
readonly StagesAuthenticatorWebauthnWebauthndevice: "authentik_stages_authenticator_webauthn.webauthndevice";
|
package/dist/models/ModelEnum.js
CHANGED
|
@@ -59,7 +59,9 @@ exports.ModelEnumToJSON = exports.ModelEnumFromJSONTyped = exports.ModelEnumFrom
|
|
|
59
59
|
* * `authentik_stages_authenticator_sms.authenticatorsmsstage` - SMS Authenticator Setup Stage
|
|
60
60
|
* * `authentik_stages_authenticator_sms.smsdevice` - SMS Device
|
|
61
61
|
* * `authentik_stages_authenticator_static.authenticatorstaticstage` - Static Authenticator Stage
|
|
62
|
+
* * `authentik_stages_authenticator_static.staticdevice` - Static device
|
|
62
63
|
* * `authentik_stages_authenticator_totp.authenticatortotpstage` - TOTP Authenticator Setup Stage
|
|
64
|
+
* * `authentik_stages_authenticator_totp.totpdevice` - TOTP device
|
|
63
65
|
* * `authentik_stages_authenticator_validate.authenticatorvalidatestage` - Authenticator Validation Stage
|
|
64
66
|
* * `authentik_stages_authenticator_webauthn.authenticatewebauthnstage` - WebAuthn Authenticator Setup Stage
|
|
65
67
|
* * `authentik_stages_authenticator_webauthn.webauthndevice` - WebAuthn Device
|
|
@@ -132,7 +134,9 @@ exports.ModelEnum = {
|
|
|
132
134
|
StagesAuthenticatorSmsAuthenticatorsmsstage: 'authentik_stages_authenticator_sms.authenticatorsmsstage',
|
|
133
135
|
StagesAuthenticatorSmsSmsdevice: 'authentik_stages_authenticator_sms.smsdevice',
|
|
134
136
|
StagesAuthenticatorStaticAuthenticatorstaticstage: 'authentik_stages_authenticator_static.authenticatorstaticstage',
|
|
137
|
+
StagesAuthenticatorStaticStaticdevice: 'authentik_stages_authenticator_static.staticdevice',
|
|
135
138
|
StagesAuthenticatorTotpAuthenticatortotpstage: 'authentik_stages_authenticator_totp.authenticatortotpstage',
|
|
139
|
+
StagesAuthenticatorTotpTotpdevice: 'authentik_stages_authenticator_totp.totpdevice',
|
|
136
140
|
StagesAuthenticatorValidateAuthenticatorvalidatestage: 'authentik_stages_authenticator_validate.authenticatorvalidatestage',
|
|
137
141
|
StagesAuthenticatorWebauthnAuthenticatewebauthnstage: 'authentik_stages_authenticator_webauthn.authenticatewebauthnstage',
|
|
138
142
|
StagesAuthenticatorWebauthnWebauthndevice: 'authentik_stages_authenticator_webauthn.webauthndevice',
|
package/package.json
CHANGED
package/src/models/AppEnum.ts
CHANGED
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
* * `authentik.sources.oauth` - authentik Sources.OAuth
|
|
39
39
|
* * `authentik.sources.plex` - authentik Sources.Plex
|
|
40
40
|
* * `authentik.sources.saml` - authentik Sources.SAML
|
|
41
|
+
* * `authentik.stages.authenticator` - authentik Stages.Authenticator
|
|
41
42
|
* * `authentik.stages.authenticator_duo` - authentik Stages.Authenticator.Duo
|
|
42
43
|
* * `authentik.stages.authenticator_sms` - authentik Stages.Authenticator.SMS
|
|
43
44
|
* * `authentik.stages.authenticator_static` - authentik Stages.Authenticator.Static
|
|
@@ -88,6 +89,7 @@ export const AppEnum = {
|
|
|
88
89
|
SourcesOauth: 'authentik.sources.oauth',
|
|
89
90
|
SourcesPlex: 'authentik.sources.plex',
|
|
90
91
|
SourcesSaml: 'authentik.sources.saml',
|
|
92
|
+
StagesAuthenticator: 'authentik.stages.authenticator',
|
|
91
93
|
StagesAuthenticatorDuo: 'authentik.stages.authenticator_duo',
|
|
92
94
|
StagesAuthenticatorSms: 'authentik.stages.authenticator_sms',
|
|
93
95
|
StagesAuthenticatorStatic: 'authentik.stages.authenticator_static',
|
package/src/models/ModelEnum.ts
CHANGED
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
* * `authentik_stages_authenticator_sms.authenticatorsmsstage` - SMS Authenticator Setup Stage
|
|
59
59
|
* * `authentik_stages_authenticator_sms.smsdevice` - SMS Device
|
|
60
60
|
* * `authentik_stages_authenticator_static.authenticatorstaticstage` - Static Authenticator Stage
|
|
61
|
+
* * `authentik_stages_authenticator_static.staticdevice` - Static device
|
|
61
62
|
* * `authentik_stages_authenticator_totp.authenticatortotpstage` - TOTP Authenticator Setup Stage
|
|
63
|
+
* * `authentik_stages_authenticator_totp.totpdevice` - TOTP device
|
|
62
64
|
* * `authentik_stages_authenticator_validate.authenticatorvalidatestage` - Authenticator Validation Stage
|
|
63
65
|
* * `authentik_stages_authenticator_webauthn.authenticatewebauthnstage` - WebAuthn Authenticator Setup Stage
|
|
64
66
|
* * `authentik_stages_authenticator_webauthn.webauthndevice` - WebAuthn Device
|
|
@@ -131,7 +133,9 @@ export const ModelEnum = {
|
|
|
131
133
|
StagesAuthenticatorSmsAuthenticatorsmsstage: 'authentik_stages_authenticator_sms.authenticatorsmsstage',
|
|
132
134
|
StagesAuthenticatorSmsSmsdevice: 'authentik_stages_authenticator_sms.smsdevice',
|
|
133
135
|
StagesAuthenticatorStaticAuthenticatorstaticstage: 'authentik_stages_authenticator_static.authenticatorstaticstage',
|
|
136
|
+
StagesAuthenticatorStaticStaticdevice: 'authentik_stages_authenticator_static.staticdevice',
|
|
134
137
|
StagesAuthenticatorTotpAuthenticatortotpstage: 'authentik_stages_authenticator_totp.authenticatortotpstage',
|
|
138
|
+
StagesAuthenticatorTotpTotpdevice: 'authentik_stages_authenticator_totp.totpdevice',
|
|
135
139
|
StagesAuthenticatorValidateAuthenticatorvalidatestage: 'authentik_stages_authenticator_validate.authenticatorvalidatestage',
|
|
136
140
|
StagesAuthenticatorWebauthnAuthenticatewebauthnstage: 'authentik_stages_authenticator_webauthn.authenticatewebauthnstage',
|
|
137
141
|
StagesAuthenticatorWebauthnWebauthndevice: 'authentik_stages_authenticator_webauthn.webauthndevice',
|