aboutsummaryrefslogtreecommitdiffhomepage
path: root/tap_google_sheets
Commit message (Collapse)AuthorAgeFilesLines
* Allow all schemas to fall back to a string value (#25)Andy Lu2021-02-181-14/+9
| | | | | | | | | | * Allow all schemas to fall back to a string value * Only update 'numberType.DATE_TIME', 'numberType.DATE', 'numberType.TIME' fields to have an anyOf * Bad Refactor: numberType needs anyOf * Fix indenting
* return an empty list when values is missing (#17)Kyle Allan2020-07-151-1/+1
|
* v.1.0.3 Fix slashes and discovery errors (#15)v1.0.3Jeff Huth2020-04-292-12/+30
| | | Fix issues: slashes `/` in sheet name 404 error; Discovery malformed sheet error when 2nd row final column value(s) are `NULL`.
* Skip malformed sheets (#13)cosimon2020-04-171-168/+171
| | | | | | | * Skip malformed sheets * Move the try except block up a level for readability sake * Remove debug code
* Emit state during incremental sync where bookmark not exceeded (#11)v1.0.1Scott Coleman2020-03-191-0/+2
|
* v.0.0.4 Logic to skip empty sheets (#4)v0.0.4Jeff Huth2020-02-242-285/+294
| | | | | | | | | | | | | | | | | | * v.0.0.2 schema and sync changes Change number json schema to anyOf with multipleOf; skip empty rows; move write_bookmark to end of sync.py * v.0.0.3 Sync activate version and error handling Update README.md documentation. Improved logging and handling of errors and warnings. Better null handling in Discovery and Sync. Fix issues with activate version messages. * v.0.0.4 Skip empty worksheets Add logic to skip empty worksheets in Discovery and Sync mode. * schema.py fix number datatype issue Nomber datatypes are being created as strings in targets. The JSON schema order needs to be adjusted so that order is null, number, string.
* v.0.0.3 Sync error handling, activate version, documentation (#2)v0.0.3Jeff Huth2020-01-092-29/+116
| | | | | | | | | | * v.0.0.2 schema and sync changes Change number json schema to anyOf with multipleOf; skip empty rows; move write_bookmark to end of sync.py * v.0.0.3 Sync activate version and error handling Update README.md documentation. Improved logging and handling of errors and warnings. Better null handling in Discovery and Sync. Fix issues with activate version messages.
* v.0.0.2 schema and sync changes (#1)v0.0.2Jeff Huth2019-12-043-99/+160
| | | Change number json schema to anyOf with multipleOf; skip empty rows; move write_bookmark to end of sync.py
* pylint and testingv0.0.1Jeff Huth2019-11-155-67/+75
| | | | pylint and testing
* client.py rate limit, sync.py changesJeff Huth2019-11-154-91/+275
| | | | client.py rate limit, fix json schemas, sync.py many changes
* Remove transform importJeff Huth2019-11-131-1/+0
| | | | Remove transform import
* Update streams.py and READMEJeff Huth2019-11-131-1/+2
| | | | Update streams.py and README
* Initial commitJeff Huth2019-11-1310-0/+1090
Discovery mode works. Still working on normal sync.