From 5c0b86c17eade428dba2802e62d8cf9f31ca4f4b Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 7 Apr 2022 15:11:15 -0400 Subject: [PATCH] chore: update exportApisToSheets to populate all_apis sheet (#1046) --- src/fetchServices.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fetchServices.ts b/src/fetchServices.ts index ccfd0d96..cabe2037 100644 --- a/src/fetchServices.ts +++ b/src/fetchServices.ts @@ -168,7 +168,7 @@ export async function exportApisToSheets() { // clear the current text in the sheet await sheets.spreadsheets.values.clear({ spreadsheetId, - range: 'A1:Z10000', + range: 'all_apis!A1:Z10000', }); // insert it into the sheet @@ -178,7 +178,7 @@ export async function exportApisToSheets() { valueInputOption: 'USER_ENTERED', data: [ { - range: 'A1', + range: 'all_apis!A1', values, }, ],