@feathersjs/authentication-oauth
Advanced tools
Comparing version 5.0.6 to 5.0.7
@@ -6,2 +6,10 @@ # Change Log | ||
## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) | ||
**Note:** Version bump only for package @feathersjs/authentication-oauth | ||
## [5.0.6](https://github.com/feathersjs/feathers/compare/v5.0.5...v5.0.6) (2023-06-15) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@feathersjs/authentication-oauth", | ||
"description": "oAuth 1 and 2 authentication for Feathers. Powered by Grant.", | ||
"version": "5.0.6", | ||
"version": "5.0.7", | ||
"homepage": "https://feathersjs.com", | ||
@@ -57,9 +57,9 @@ "main": "lib/", | ||
"dependencies": { | ||
"@feathersjs/authentication": "^5.0.6", | ||
"@feathersjs/commons": "^5.0.6", | ||
"@feathersjs/errors": "^5.0.6", | ||
"@feathersjs/express": "^5.0.6", | ||
"@feathersjs/feathers": "^5.0.6", | ||
"@feathersjs/koa": "^5.0.6", | ||
"@feathersjs/schema": "^5.0.6", | ||
"@feathersjs/authentication": "^5.0.7", | ||
"@feathersjs/commons": "^5.0.7", | ||
"@feathersjs/errors": "^5.0.7", | ||
"@feathersjs/express": "^5.0.7", | ||
"@feathersjs/feathers": "^5.0.7", | ||
"@feathersjs/koa": "^5.0.7", | ||
"@feathersjs/schema": "^5.0.7", | ||
"cookie-session": "^2.0.0", | ||
@@ -72,3 +72,3 @@ "grant": "^5.4.21", | ||
"devDependencies": { | ||
"@feathersjs/memory": "^5.0.6", | ||
"@feathersjs/memory": "^5.0.7", | ||
"@types/cookie-session": "^2.0.44", | ||
@@ -79,3 +79,3 @@ "@types/express": "^4.17.17", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^20.3.1", | ||
"@types/node": "^20.4.2", | ||
"@types/tough-cookie": "^4.0.2", | ||
@@ -87,5 +87,5 @@ "axios": "^1.4.0", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.1.3" | ||
"typescript": "^5.1.6" | ||
}, | ||
"gitHead": "71ac655d260fbc9aa65cd5b9a6c088f0187ace4e" | ||
"gitHead": "1ab855487d2dfacb114339c634621357bce3a56a" | ||
} |
@@ -28,3 +28,7 @@ import { createDebug } from '@feathersjs/commons' | ||
export class OAuthError extends FeathersError { | ||
constructor(message: string, data: any, public location: string) { | ||
constructor( | ||
message: string, | ||
data: any, | ||
public location: string | ||
) { | ||
super(message, 'NotAuthenticated', 401, 'not-authenticated', data) | ||
@@ -64,3 +68,6 @@ } | ||
constructor(public service: AuthenticationService, public settings: OauthSetupSettings) { | ||
constructor( | ||
public service: AuthenticationService, | ||
public settings: OauthSetupSettings | ||
) { | ||
const config = getGrantConfig(service) | ||
@@ -67,0 +74,0 @@ |
Sorry, the diff of this file is not supported yet
76289
914
Updated@feathersjs/commons@^5.0.7
Updated@feathersjs/errors@^5.0.7
Updated@feathersjs/express@^5.0.7
Updated@feathersjs/feathers@^5.0.7
Updated@feathersjs/koa@^5.0.7
Updated@feathersjs/schema@^5.0.7