From 2dfe6aac037437e79937f545886db09d8b989a98 Mon Sep 17 00:00:00 2001 From: Mark Rapson Date: Sat, 18 Jul 2026 12:06:18 +0100 Subject: [PATCH] Warn API key users and bump version to 2.1.5 --- lib/onboarding.js | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/onboarding.js b/lib/onboarding.js index 7e0e2c7..53b4fed 100644 --- a/lib/onboarding.js +++ b/lib/onboarding.js @@ -159,6 +159,11 @@ async function runOnboarding() { ] ); + if (authMode === 'apiKeys') { + console.log('Warning: when using API keys, the spreadsheet must be publicly accessible.'); + console.log(''); + } + const credentialCount = await askPositiveInteger( ask, `How many ${authMode === 'apiKeys' ? 'API keys' : 'service accounts'} do you want to add? ` diff --git a/package.json b/package.json index 7587678..9fd54ab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "google-sheets-rate-assistant", - "version": "2.1.3", + "version": "2.1.5", "description": "Pull Google Sheets data and export to CSV with configurable schedules and rate limiting.", "main": "index.js", "bin": "index.js",