Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 3.0.0

* Update `Qty` datatype in `sales_item_line` shared schema [#73](https://github.com/singer-io/tap-quickbooks/pull/73)

## 2.2.0

* Revise backoff logic to handle 429 error [#72](https://github.com/singer-io/tap-quickbooks/pull/72)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

setup(name='tap-quickbooks',
version='2.2.0',
version='3.0.0',
description='Singer.io tap for extracting data from the Quickbooks API',
author='Stitch',
url='http://singer.io',
Expand Down
3 changes: 2 additions & 1 deletion tap_quickbooks/schemas/shared/sales_item_line.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
}
},
"Qty": {
"type": ["null", "integer"]
"type": ["null", "string"],
"format": "singer.decimal"
},
"ServiceDate": {
"format": "date-time",
Expand Down
Loading