@goauthentik/api 2026.2.0-rc1-1765828227 → 2026.2.0-rc1-1766103708
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/apis/StagesApi.d.ts.map +1 -1
- package/dist/apis/StagesApi.js +0 -7
- package/dist/apis/StagesApi.js.map +1 -1
- package/dist/esm/apis/StagesApi.d.ts.map +1 -1
- package/dist/esm/apis/StagesApi.js +0 -7
- package/dist/esm/apis/StagesApi.js.map +1 -1
- package/dist/esm/models/AuthenticatorEmailChallengeResponseRequest.d.ts +2 -2
- package/dist/esm/models/AuthenticatorSMSChallengeResponseRequest.d.ts +2 -2
- package/dist/esm/models/AuthenticatorTOTPChallengeResponseRequest.d.ts +2 -2
- package/dist/models/AuthenticatorEmailChallengeResponseRequest.d.ts +2 -2
- package/dist/models/AuthenticatorSMSChallengeResponseRequest.d.ts +2 -2
- package/dist/models/AuthenticatorTOTPChallengeResponseRequest.d.ts +2 -2
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/apis/StagesApi.ts +0 -8
- package/src/models/AuthenticatorEmailChallengeResponseRequest.ts +2 -2
- package/src/models/AuthenticatorSMSChallengeResponseRequest.ts +2 -2
- package/src/models/AuthenticatorTOTPChallengeResponseRequest.ts +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
package/src/apis/StagesApi.ts
CHANGED
|
@@ -1844,14 +1844,6 @@ export class StagesApi extends runtime.BaseAPI {
|
|
|
1844
1844
|
|
|
1845
1845
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
1846
1846
|
|
|
1847
|
-
if (this.configuration && this.configuration.accessToken) {
|
|
1848
|
-
const token = this.configuration.accessToken;
|
|
1849
|
-
const tokenString = await token("authentik", []);
|
|
1850
|
-
|
|
1851
|
-
if (tokenString) {
|
|
1852
|
-
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
1853
|
-
}
|
|
1854
|
-
}
|
|
1855
1847
|
|
|
1856
1848
|
let urlPath = `/stages/authenticator/duo/{stage_uuid}/enrollment_status/`;
|
|
1857
1849
|
urlPath = urlPath.replace(`{${"stage_uuid"}}`, encodeURIComponent(String(requestParameters['stageUuid'])));
|
|
@@ -27,10 +27,10 @@ export interface AuthenticatorEmailChallengeResponseRequest {
|
|
|
27
27
|
component?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {string}
|
|
31
31
|
* @memberof AuthenticatorEmailChallengeResponseRequest
|
|
32
32
|
*/
|
|
33
|
-
code?:
|
|
33
|
+
code?: string;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {string}
|
|
@@ -27,10 +27,10 @@ export interface AuthenticatorSMSChallengeResponseRequest {
|
|
|
27
27
|
component?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {string}
|
|
31
31
|
* @memberof AuthenticatorSMSChallengeResponseRequest
|
|
32
32
|
*/
|
|
33
|
-
code?:
|
|
33
|
+
code?: string;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {string}
|