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 ccbe1f9Copy full SHA for ccbe1f9
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):
@@ -109,7 +113,9 @@ def do_discover(qb):
109
113
replication_key = REPLICATION_KEY
110
114
if sobject_name.endswith('Report'):
111
115
replication_key = None
112
-
116
+
117
+ if sobject_name in FULL_SYNC_STREAMS:
118
+ replication_key = None
119
120
properties = {}
121
mdata = metadata.new()
0 commit comments