passport-google-oauth-token
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -53,5 +53,7 @@ import * as express from 'express'; | ||
type VerifyFunction = (accessToken: string, refreshToken: string, profile: Profile, cb: (error: any, user?: any, info?: any) => void) => void; | ||
type VerifyCallback = (error: any, user?: any, info?: any) => void; | ||
type VerifyFunctionWithRequest = (req: express.Request, accessToken: string, refreshToken: string, profile: Profile, cb: (error: any, user?: any, info?: any) => void) => void; | ||
type VerifyFunction = (accessToken: string, refreshToken: string, profile: Profile, cb: VerifyCallback) => void; | ||
type VerifyFunctionWithRequest = (req: express.Request, accessToken: string, refreshToken: string, profile: Profile, cb: VerifyCallback) => void; | ||
} | ||
@@ -58,0 +60,0 @@ |
{ | ||
"name": "passport-google-oauth-token", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Google access token authentication strategy for Passport", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -53,5 +53,7 @@ import * as express from 'express'; | ||
type VerifyFunction = (accessToken: string, refreshToken: string, profile: Profile, cb: (error: any, user?: any, info?: any) => void) => void; | ||
type VerifyCallback = (error: any, user?: any, info?: any) => void; | ||
type VerifyFunctionWithRequest = (req: express.Request, accessToken: string, refreshToken: string, profile: Profile, cb: (error: any, user?: any, info?: any) => void) => void; | ||
type VerifyFunction = (accessToken: string, refreshToken: string, profile: Profile, cb: VerifyCallback) => void; | ||
type VerifyFunctionWithRequest = (req: express.Request, accessToken: string, refreshToken: string, profile: Profile, cb: VerifyCallback) => void; | ||
} | ||
@@ -58,0 +60,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17753
273