Skip to content

Commit

Permalink
source-facebook-marketing: ensure inline schemas, updated cdk, poetry…
Browse files Browse the repository at this point in the history
… (where possible) (#36634)

Co-authored-by: Christo Grabowski <108154848+ChristoGrab@users.noreply.github.com>
  • Loading branch information
bleonard and ChristoGrab committed Apr 30, 2024
1 parent b85d0d1 commit 85779fc
Show file tree
Hide file tree
Showing 17 changed files with 736 additions and 59 deletions.
Expand Up @@ -10,7 +10,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: e7778cfc-e97c-4458-9ecb-b4f2bba8946c
dockerImageTag: 2.1.5
dockerImageTag: 2.1.7
dockerRepository: airbyte/source-facebook-marketing
documentationUrl: https://docs.airbyte.com/integrations/sources/facebook-marketing
githubIssueLabel: source-facebook-marketing
Expand All @@ -31,7 +31,12 @@ data:
releases:
breakingChanges:
2.0.0:
message: "All Ads-Insights-* streams now have updated schemas. Users will need to retest source configuration, refresh the source schema and reset affected streams after upgrading. Please pay attention that data older than 37 months will become unavailable due to FaceBook limitations. For more information [visit](https://docs.airbyte.com/integrations/sources/facebook-marketing-migrations)"
message:
"All Ads-Insights-* streams now have updated schemas. Users will
need to retest source configuration, refresh the source schema and reset
affected streams after upgrading. Please pay attention that data older than
37 months will become unavailable due to FaceBook limitations. For more
information [visit](https://docs.airbyte.com/integrations/sources/facebook-marketing-migrations)"
upgradeDeadline: "2024-03-17"
scopedImpact:
- scopeType: stream
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "2.1.5"
version = "2.1.7"
name = "source-facebook-marketing"
description = "Source implementation for Facebook Marketing."
authors = [ "Airbyte <contact@airbyte.io>",]
Expand All @@ -17,7 +17,7 @@ include = "source_facebook_marketing"

[tool.poetry.dependencies]
python = "^3.9,<3.12"
airbyte-cdk = "^0"
airbyte-cdk = "0.81.6"
facebook-business = "19.0.0"
cached-property = "==1.5.2"

Expand Down
@@ -1,43 +1,56 @@
{
"properties": {
"account_id": {
"description": "The unique identifier for the account associated with the activity.",
"type": ["null", "string"]
},
"actor_id": {
"description": "The unique identifier for the actor (user/page) who performed the activity.",
"type": ["null", "string"]
},
"actor_name": {
"description": "The name of the actor (user/page) who performed the activity.",
"type": ["null", "string"]
},
"application_id": {
"description": "The unique identifier for the application involved in the activity.",
"type": ["null", "string"]
},
"application_name": {
"description": "The name of the application involved in the activity.",
"type": ["null", "string"]
},
"date_time_in_timezone": {
"description": "The date and time of the activity adjusted to the timezone.",
"type": ["null", "string"]
},
"event_time": {
"description": "The exact date and time when the activity occurred.",
"type": "string",
"format": "date-time"
},
"event_type": {
"description": "The type of event/action performed in the activity.",
"type": ["null", "string"]
},
"extra_data": {
"description": "Additional data associated with the activity.",
"type": ["null", "string"]
},
"object_id": {
"description": "The unique identifier for the object (post/ad/etc.) related to the activity.",
"type": ["null", "string"]
},
"object_name": {
"description": "The name/label of the object related to the activity.",
"type": ["null", "string"]
},
"object_type": {
"description": "The type/category of the object related to the activity.",
"type": ["null", "string"]
},
"translated_event_type": {
"description": "The translated or localized version of the event type.",
"type": ["null", "string"]
}
},
Expand Down

0 comments on commit 85779fc

Please sign in to comment.