Skip to content

Commit eee211e

Browse files
fix: tag type
1 parent e2f03bd commit eee211e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

tap_bolddesk/streams.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,12 @@ class MessagesStream(BoldDeskStream):
236236
),
237237
th.Property(
238238
"messageTag",
239-
th.ArrayType(th.StringType),
239+
th.ArrayType(
240+
th.ObjectType(
241+
th.Property("id", th.IntegerType),
242+
th.Property("tagName", th.StringType)
243+
)
244+
),
240245
description="Tags associated with the message"
241246
),
242247
th.Property(

0 commit comments

Comments
 (0)