-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Source Bing Ads: Stream budget and product dimension performance re…
…port (#35201)
- Loading branch information
1 parent
7c5d0c8
commit 0e23ec2
Showing
41 changed files
with
1,353 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] | |
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
version = "2.1.4" | ||
version = "2.2.0" | ||
name = "source-bing-ads" | ||
description = "Source implementation for Bing Ads." | ||
authors = [ "Airbyte <[email protected]>",] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
airbyte-integrations/connectors/source-bing-ads/source_bing_ads/schemas/budget.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"Account Id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"Type": { | ||
"type": ["null", "string"] | ||
}, | ||
"Status": { | ||
"type": ["null", "string"] | ||
}, | ||
"Id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"Parent Id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"Client Id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"Modified Time": { | ||
"type": ["null", "string"], | ||
"format": "date-time", | ||
"airbyte_type": "timestamp_with_timezone" | ||
}, | ||
"Budget Id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"Budget Name": { | ||
"type": ["null", "string"] | ||
}, | ||
"Budget": { | ||
"type": ["null", "number"] | ||
}, | ||
"Budget Type": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} |
Oops, something went wrong.