0.2.0-0 • Published 2 years ago
retrosheet-ts v0.2.0-0
RetroSheet-TS
Thanks to : Retrosheet by theApache64
Install
npm i retrosheet-tsUsage ⌨️
Fetch Google Sheet Data.
Get Spreadsheet ID
Get Spreadsheet ID from spreadsheet url.

Get Data
import { fetchRetrosheetData } from 'retrosheet-ts';
const response = await fetchRetrosheetData("<Spreadsheet ID>", { sheetName: "notess", query: "select * limit 2" })[
  {
    "created_at": "26/08/2023 17:37:06",
    "title": "Hello",
    "description": "Description"
  },
  {
    "created_at": "26/08/2023 17:37:28",
    "title": "Yogesh",
    "description": "Description"
  }
]Write Data to Google Sheet.
Follow steps 1 - 4 from here
Get Form ID
Get form id Form URL

Write data
import { writeRetrosheetData } from 'retrosheet-ts';
const request = {
    'Title': "test title",
    'Description': 'test Description'
}
writeRetrosheetData("<FORM_ID>", request)Note: Keys of request must be the same as Form Field name.
0.1.2-SNAPSHOT.1
2 years ago
0.2.0-0
2 years ago
0.1.3-0
2 years ago
0.1.2
2 years ago
0.1.1-testing.1
2 years ago
0.1.1
2 years ago
0.1.0
2 years ago