Skip to content

Commit 6baf98b

Browse files
doc: add DPoP error to the API doc (#1371)
1 parent 0531ba3 commit 6baf98b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/core/services/AuthenticationOrchestrator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ function includeRequiredScope(scope?: string): string {
5050
if (!scope) {
5151
return 'openid profile email';
5252
}
53-
53+
5454
const scopes = scope.split(' ');
5555
if (!scopes.includes('openid')) {
5656
return `openid ${scope}`;
5757
}
58-
58+
5959
return scope;
6060
}
6161

src/core/services/__tests__/AuthenticationOrchestrator.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,4 +807,3 @@ describe('AuthenticationOrchestrator', () => {
807807
});
808808
});
809809
});
810-

src/exports/classes.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export {
22
AuthError,
33
CredentialsManagerError,
44
WebAuthError,
5+
DPoPError,
56
} from '../core/models';
67
export { default as Auth0 } from '../Auth0';
78
export { TimeoutError } from '../core/utils/fetchWithTimeout';

0 commit comments

Comments
 (0)