Skip to content

Commit

Permalink
Add support for SalesReceipt
Browse files Browse the repository at this point in the history
  • Loading branch information
hsyyid committed May 25, 2021
1 parent f827a09 commit f9f506a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_version():
readme = f.read()

setup(name='tap-quickbooks',
version='1.4.35',
version='1.4.36',
description='Singer.io tap for extracting data from the Quickbooks API',
author='hotglue',
url='http://hotglue.xyz/',
Expand Down
16 changes: 16 additions & 0 deletions tap_quickbooks/quickbooks/schemas/object_definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,22 @@
{"name":"PrintStatus", "type": "string"},
{"name":"Balance", "type": "number"}
],
"SalesReceipt": [
{"name":"Id", "type": "string"},
{"name":"MetaData", "type": "string"},
{"name":"CustomField","type": "array", "child_type": "custom_field"},
{"name":"DocNumber", "type": "string"},
{"name":"TxnDate", "type": "datetime"},
{"name":"CurrencyRef", "type": "string"},
{"name":"CustomerRef", "type": "string"},
{"name":"Line", "type": "array", "child_type": "invoice_line"},
{"name":"FreeFormAddress", "type": "boolean"},
{"name":"ShipFromAddr", "type": "string"},
{"name":"TotalAmt", "type": "number"},
{"name":"ApplyTaxAfterDiscount", "type": "boolean"},
{"name":"PrintStatus", "type": "string"},
{"name":"Balance", "type": "number"}
],
"Account": [
{"name": "Name", "type": "string"},
{"name": "SubAccount", "type": "boolean"},
Expand Down

0 comments on commit f9f506a

Please sign in to comment.