Skip to content

Commit

Permalink
Merge pull request #28 from AlvaroRaul7/feat/new-streams
Browse files Browse the repository at this point in the history
Feat/new streams
  • Loading branch information
hsyyid authored Mar 10, 2023
2 parents b12375c + 5443308 commit c0278a0
Show file tree
Hide file tree
Showing 2 changed files with 54 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.51',
version='1.4.52',
description='Singer.io tap for extracting data from the Quickbooks API',
author='hotglue',
url='http://hotglue.xyz/',
Expand Down
53 changes: 53 additions & 0 deletions tap_quickbooks/quickbooks/schemas/object_definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,59 @@
{"name": "Id", "type": "string"},
{"name": "MetaData", "type": "string"}
],

"Payment": [
{"name": "Id", "type": "string"},
{"name": "TotalAmt", "type": "number"},
{"name": "CustomerRef", "type": "string"},
{"name": "SyncToken", "type": "string"},
{"name": "CurrencyRef", "type": "string"},
{"name": "PrivateNote", "type": "string"},
{"name": "PaymentMethodRef", "type": "string"},
{"name": "UnappliedAmt", "type": "number"},
{"name": "DepositToAccountRef", "type": "string"},
{"name": "ExchangeRate", "type": "number"},
{"name": "SyncToken", "type": "string"},
{"name": "Line", "type": "string"},
{"name": "TxnSource", "type": "string"},
{"name": "ARAccountRef", "type": "string"},
{"name": "TxnDate", "type": "string"},
{"name": "CreditCardPayment", "type": "string"},
{"name": "MetaData", "type": "string"},
{"name": "TaxExemptionRef", "type": "string"}
],

"Transfer": [
{"name": "Id", "type": "string"},
{"name": "ToAccountRef", "type": "string"},
{"name": "Amount", "type": "number"},
{"name": "FromAccountRef", "type": "string"},
{"name": "SyncToken", "type": "string"},
{"name": "PrivateNote", "type": "string"},
{"name": "TxnDate", "type": "string"},
{"name": "TransactionLocationType", "type": "string"},
{"name": "MetaData", "type": "string"}
],

"CompanyInfo": [
{"name": "Id", "type": "string"},
{"name": "SyncToken", "type": "string"},
{"name": "CompanyName", "type": "string"},
{"name": "CompanyAddr", "type": "string"},
{"name": "LegalAddr", "type": "string"},
{"name": "SupportedLanguages", "type": "string"},
{"name": "Country", "type": "string"},
{"name": "Email", "type": "string"},
{"name": "WebAddr", "type": "string"},
{"name": "NameValue", "type": "string"},
{"name": "FiscalYearStartMonth", "type": "string"},
{"name": "CustomerCommunicationAddr", "type": "string"},
{"name": "PrimaryPhone", "type": "string"},
{"name": "LegalName", "type": "string"},
{"name": "MetaData", "type": "string"},
{"name": "CompanyStartDate", "type": "string"}
],

"TaxRate": [
{"name": "Name", "type": "string"},
{"name": "SyncToken", "type": "string"},
Expand Down

0 comments on commit c0278a0

Please sign in to comment.