cloudflare-workers-and-google-oauth
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -0,1 +1,13 @@ | ||
export interface GoogleKey { | ||
type: string; | ||
project_id: string; | ||
private_key_id: string; | ||
private_key: string; | ||
client_email: string; | ||
client_id: string; | ||
auth_uri: string; | ||
token_uri: string; | ||
auth_provider_x509_cert_url: string; | ||
client_x509_cert_url: string; | ||
} | ||
export default class GoogleOAuth { | ||
@@ -2,0 +14,0 @@ objectToBase64url: (object: object) => string; |
{ | ||
"name": "cloudflare-workers-and-google-oauth", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Enables easier interfacing with GCS OAuth API for use in Cloudflare Workers", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
5578
105