We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f10573 commit db62eadCopy full SHA for db62ead
tap_quickbooks/__init__.py
@@ -89,6 +89,10 @@ def create_property_schema(field, mdata):
89
90
return (property_schema, mdata)
91
92
+FULL_SYNC_STREAMS = [
93
+ "TaxRate",
94
+ "TaxCode",
95
+]
96
97
# pylint: disable=too-many-branches,too-many-statements
98
def do_discover(qb):
@@ -107,10 +111,9 @@ def do_discover(qb):
107
111
fields = qb.describe(sobject_name)
108
112
109
113
replication_key = REPLICATION_KEY
110
- if sobject_name.endswith('Report'):
114
+ if sobject_name.endswith('Report') or sobject_name in FULL_SYNC_STREAMS:
115
replication_key = None
116
-
117
properties = {}
118
mdata = metadata.new()
119
0 commit comments