Skip to content

Commit

Permalink
add missing custom audiences
Browse files Browse the repository at this point in the history
  • Loading branch information
pnadolny13 committed Jan 24, 2024
1 parent 2b90c07 commit b3fcc6b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tap_facebook/streams/adsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,15 @@ class AdsetsStream(IncrementalFacebookStream):
ObjectType(
Property("age_max", IntegerType),
Property("age_min", IntegerType),
Property(
"custom_audiences",
ArrayType(
ObjectType(
Property("id", StringType),
Property("name", StringType),
),
),
),
Property(
"excluded_custom_audiences",
ArrayType(
Expand Down

0 comments on commit b3fcc6b

Please sign in to comment.