google-spreadsheet 5.0.3 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.cjs +596 -58
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +654 -61
- package/dist/index.d.ts +654 -61
- package/dist/index.js +596 -58
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
- package/src/lib/GoogleSpreadsheet.ts +47 -11
- package/src/lib/GoogleSpreadsheetCell.ts +26 -4
- package/src/lib/GoogleSpreadsheetRow.ts +20 -1
- package/src/lib/GoogleSpreadsheetWorksheet.ts +808 -128
- package/src/lib/types/sheets-types.ts +257 -10
package/README.md
CHANGED
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
- managing worksheets - add, remove, resize, update properties (ex: title), duplicate to same or other document
|
|
23
23
|
- managing docs - create new doc, delete doc, basic sharing/permissions
|
|
24
24
|
- export - download sheet/docs in various formats
|
|
25
|
+
- automatic retries with exponential backoff for failed/rate-limited requests (powered by [ky](https://github.com/sindresorhus/ky), [customizable](https://theoephraim.github.io/node-google-spreadsheet/#/classes/google-spreadsheet#fn-newGoogleSpreadsheet))
|
|
25
26
|
|
|
26
27
|
**Docs site -**
|
|
27
28
|
Full docs available at [https://theoephraim.github.io/node-google-spreadsheet](https://theoephraim.github.io/node-google-spreadsheet)
|
|
@@ -197,6 +198,7 @@ Contributions are welcome, but please follow the existing conventions, use the l
|
|
|
197
198
|
|
|
198
199
|
The docs site is generated using [docsify](https://docsify.js.org). To preview and run locally so you can make edits, run `npm run docs:preview` and head to http://localhost:3000
|
|
199
200
|
The content lives in markdown files in the docs folder.
|
|
201
|
+
The package manager for this project is `bun`.
|
|
200
202
|
|
|
201
203
|
## License
|
|
202
204
|
|