kathryn_cowie
05/18/2022, 5:27 AMedgar_ramirez_mondragon
05/18/2022, 4:37 PMmeltano select tap-quickbooks --list --all
might help you see if the expected streams and attributes are selected. It looks like nothing is being selected at the moment even though you have a select:
in therekathryn_cowie
05/18/2022, 4:50 PM[selected ] Customer.Balance
[excluded ] Customer.BalanceWithJobs
[excluded ] Customer.BillAddr
[excluded ] Customer.BillWithParent
[selected ] Customer.CompanyName
edgar_ramirez_mondragon
05/18/2022, 5:04 PMcapabilities: [properties, discover, state]
entry in tap-quickbooks
, maybe right below pip_url
?
• If that doesn't work, can you try replacing the whole tap-quickbooks
entry with the contents below?edgar_ramirez_mondragon
05/18/2022, 5:05 PM- name: tap-quickbooks
namespace: tap_quickbooks
label: Quickbooks
description: Accounting management platform
docs: <https://hub.meltano.com/extractors/quickbooks.html>
repo: <https://github.com/hotgluexyz/tap-quickbooks>
pip_url: git+<https://github.com/hotgluexyz/tap-quickbooks.git>
capabilities:
- properties
- discover
- state
settings_group_validation:
- - client_id
- client_secret
- refresh_token
- realmId
- start_date
settings:
- name: realmId
label: Realm ID
- name: client_id
kind: password
label: Client ID
- name: client_secret
kind: password
- name: refresh_token
kind: password
- name: start_date
kind: date_iso8601
description: Determines how much historical data will be extracted. Please be
aware that the larger the time period and amount of data, the longer the initial
extraction can be expected to take.
- name: is_sandbox
kind: boolean
value: false
description: Use Quickbooks Sandbox
- name: select_fields_by_default
kind: boolean
value: true
description: Select by default any new fields discovered in Quickbooks objects
- name: state_message_threshold
kind: integer
value: 1000
description: Generate a STATE message every N records
- name: max_workers
kind: integer
value: 8
label: Maximum number of threads to use
kathryn_cowie
05/20/2022, 3:42 PMedgar_ramirez_mondragon
05/20/2022, 4:08 PMkathryn_cowie
05/20/2022, 4:42 PMedgar_ramirez_mondragon
05/20/2022, 4:44 PMGoing forward, should I plan to include capabilities and settings for taps I’m using?You shouldn't need to, unless you're adding custom taps. In this particular case, it is a bug in the upstream tap-quickbooks definition: https://gitlab.com/meltano/meltano/-/issues/3512
kathryn_cowie
05/20/2022, 5:03 PM