cloudflare-workers-and-google-oauth
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -1,1 +0,7 @@ | ||
export {}; | ||
export default class GoogleOAuth { | ||
objectToBase64url: (object: object) => string; | ||
arrayBufferToBase64Url: (buffer: ArrayBuffer) => string; | ||
str2ab: (str: string) => ArrayBuffer; | ||
sign: (content: string, signingKey: string) => Promise<string>; | ||
getGoogleAuthToken: (user: string, key: string, scope: string) => Promise<string | undefined>; | ||
} |
@@ -78,1 +78,2 @@ "use strict"; | ||
} | ||
exports.default = GoogleOAuth; |
{ | ||
"name": "cloudflare-workers-and-google-oauth", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Enables easier interfacing with GCS OAuth API for use in Cloudflare Workers", | ||
"main": "dist/index", | ||
"typings": "dist/index", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
@@ -8,0 +8,0 @@ "prepublishOnly": "npm run compile", |
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
5290
85