From 93479cc8a8aff55c9080a677eaacbaad00733af5 Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 19 Nov 2018 16:33:02 +0000 Subject: [PATCH] update example.config.js --- src/example.config.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/example.config.js b/src/example.config.js index 860b17b..da4c52c 100644 --- a/src/example.config.js +++ b/src/example.config.js @@ -3,14 +3,17 @@ import BP from './lib/blueprinters' export default { port: 4040, googleSheets: { - email: 'project-name@reliable-baptist-23338.iam.gserviceaccount.com', - privateKey: 'SOME_PRIVATE_KEY', + email: 'SOME_SERVICE_ACCOUNT_EMAIL', + privateKey: 'SOME_SERVICE_ACCOUNT_PRIVATE_KEY', sheets: [ { name: 'example', - id: '1s-vfBR8Uy-B-TLO_C5Ozw4z-L0E3hdP8ohMV761ouRI', + id: '1UC7DkCFeUXHfpUxUGruExwFbP4pqVBdJLOKfo6wDDGk', tabs: { - objects: [BP.byRow] + export_events: [BP.byId, BP.byRow], + export_categories: [BP.byGroup, BP.byRow], + export_sites: BP.byRow, + export_tags: BP.byTree } } ]