From dcf0d155d378bca05de0edfd88dc1ed992ea4255 Mon Sep 17 00:00:00 2001 From: Nestor Qin Date: Thu, 24 Oct 2024 18:07:54 -0400 Subject: [PATCH] package: publish as v0.0.2 --- package.json | 2 +- src/action.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 184ac10..7ca58dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mlc-ai/web-agent-interface", - "version": "0.0.1", + "version": "0.0.2", "description": "A tool library for LLM agent in browsers to interact with the web.", "main": "lib/index.js", "type": "module", diff --git a/src/action.ts b/src/action.ts index 52c71d6..4ca2a91 100644 --- a/src/action.ts +++ b/src/action.ts @@ -65,7 +65,9 @@ export async function createGoogleCalendarEvent( if (!token) { // try to get token by using Chrome Identity API - console.log("`token` not specified, trying retrieving through Google identity API OAuth flow...") + console.log( + "`token` not specified, trying retrieving through Google identity API OAuth flow...", + ); try { const authResult = await chrome.identity.getAuthToken({ interactive: true,