Skip to content

Commit e628f28

Browse files
authored
fix schema for contacts.owner_id (#47)
this should be an integer
1 parent bd5c88d commit e628f28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tap_intercom/schemas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@
330330
Property("image_url", StringType, description="URL of the contact's avatar image"),
331331
),
332332
),
333-
Property("owner_id", StringType, description="The ID of the teammate who owns this contact"),
333+
Property("owner_id", IntegerType, description="The ID of the teammate who owns this contact"),
334334
Property(
335335
"social_profiles",
336336
ObjectType(

0 commit comments

Comments
 (0)