├── .gitignore ├── DataFire.yml ├── README.md ├── create.js ├── package.json ├── retrieve.js └── spreadsheet.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | DataFire-accounts.yml 3 | -------------------------------------------------------------------------------- /DataFire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataFire-flows/sheets-api/HEAD/DataFire.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataFire-flows/sheets-api/HEAD/README.md -------------------------------------------------------------------------------- /create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataFire-flows/sheets-api/HEAD/create.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataFire-flows/sheets-api/HEAD/package.json -------------------------------------------------------------------------------- /retrieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataFire-flows/sheets-api/HEAD/retrieve.js -------------------------------------------------------------------------------- /spreadsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataFire-flows/sheets-api/HEAD/spreadsheet.js --------------------------------------------------------------------------------