Skip to content

Commit

Permalink
✨ Source Amazon Ads: Add missing field to `sponsored_display_budget_r…
Browse files Browse the repository at this point in the history
…ules` stream schema (#35013)
  • Loading branch information
tolik0 authored and xiaohansong committed Feb 13, 2024
1 parent 776431b commit f6cfed7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: c6b0a29e-1da9-4512-9002-7bfd0cba2246
dockerImageTag: 4.0.1
dockerImageTag: 4.0.2
dockerRepository: airbyte/source-amazon-ads
documentationUrl: https://docs.airbyte.com/integrations/sources/amazon-ads
githubIssueLabel: source-amazon-ads
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,15 @@ class DisplayBudgetRuleDetailsPerformanceMeasureCondition(CatalogModel):
threshold: Decimal


class DisplayBudgetRuleDetailsRecurrenceIntraDaySchedule(CatalogModel):
startTime: str
endTime: str


class DisplayBudgetRuleDetailsRecurrence(CatalogModel):
type: str
daysOfWeek: List[str] = None
intraDaySchedule: List[DisplayBudgetRuleDetailsRecurrenceIntraDaySchedule] = None
threshold: Decimal


Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/amazon-ads.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ Information about expected report generation waiting time can be found [here](ht

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------|
| 4.0.2 | 2024-02-08 | [35013](https://github.com/airbytehq/airbyte/pull/35013) | Add missing field to `sponsored_display_budget_rules` stream |
| 4.0.1 | 2023-12-28 | [33833](https://github.com/airbytehq/airbyte/pull/33833) | Updated oauth spec to put region, so we can choose oauth consent url based on it |
| 4.0.0 | 2023-12-28 | [33817](https://github.com/airbytehq/airbyte/pull/33817) | Fix schema for streams: `SponsoredBrandsAdGroups` and `SponsoredBrandsKeywords` |
| 3.4.2 | 2023-12-12 | [33361](https://github.com/airbytehq/airbyte/pull/33361) | Fix unexpected crash when handling error messages which don't have `requestId` field |
Expand Down

0 comments on commit f6cfed7

Please sign in to comment.