Skip to content

Commit

Permalink
make bookmark keys automatic
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-mccoy committed May 31, 2019
1 parent bd04a56 commit 1390c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_pipedrive/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def do_discover(self):
metadata = []
for prop, json_schema in schema.properties.items():
inclusion = 'available'
if prop in key_properties:
if prop in key_properties or (stream.state_field and prop == stream.state_field):
inclusion = 'automatic'
metadata.append({
'breadcrumb': ['properties', prop],
Expand Down

0 comments on commit 1390c9c

Please sign in to comment.