Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

source-apple-search-ads contribution from aalkuatova #55785

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 6.36.3
version: 6.33.4

type: DeclarativeSource

Expand Down Expand Up @@ -209,7 +209,7 @@ definitions:
selector: >-
{ "orderBy": [ { "field": "countryOrRegion", "sortOrder":
"ASCENDING" } ] }
timeZone: UTC
timeZone: "{{ config['timezone'] or 'UTC' }}"
startTime: "{{ stream_slice.start_time }}"
granularity: DAILY
error_handler:
Expand Down Expand Up @@ -308,7 +308,7 @@ definitions:
selector: >-
{ "orderBy": [ { "field": "countryOrRegion", "sortOrder":
"ASCENDING" } ] }
timeZone: UTC
timeZone: "{{config['timezone'] or 'UTC' }}"
startTime: "{{ stream_slice.start_time }}"
granularity: DAILY
error_handler:
Expand Down Expand Up @@ -415,7 +415,7 @@ definitions:
selector: >-
{ "orderBy": [ { "field": "countryOrRegion", "sortOrder":
"ASCENDING" } ] }
timeZone: UTC
timeZone: "{{ config['timezone'] or 'UTC' }}"
startTime: "{{ stream_slice.start_time }}"
granularity: DAILY
error_handler:
Expand Down Expand Up @@ -531,6 +531,7 @@ spec:
- client_id
- start_date
- client_secret
- timezone
properties:
org_id:
type: integer
Expand Down Expand Up @@ -594,6 +595,17 @@ spec:
pattern: ^(20|1[0-9]|[1-9])$
examples:
- 10
timezone:
type: string
default: UTC
description: >-
The timezone for the reporting data. Use 'ORTZ' for Organization Time
Zone or 'UTC' for Coordinated Universal Time. Default is UTC.
enum:
- ORTZ
- UTC
order: 7
title: Time Zone
additionalProperties: true

metadata:
Expand All @@ -616,47 +628,47 @@ metadata:
- authenticator
testedStreams:
campaigns:
streamHash: 471be30065f2e627f876ceb64b765b1c9b144b3a
streamHash: 695200dfcda5d952c3d0c21948db4780caa38393
hasResponse: true
responsesAreSuccessful: true
hasRecords: true
primaryKeysArePresent: true
primaryKeysAreUnique: true
adgroups:
streamHash: 78700b260228ba45013dc89a6dc308ecb66c1493
streamHash: fe4a079447f9e32ab0e6bd33cbb87620aa946b70
hasResponse: true
responsesAreSuccessful: true
hasRecords: true
primaryKeysArePresent: true
primaryKeysAreUnique: true
keywords:
streamHash: 41a8b9105965783ffb44bebddd40ef5e36b59da4
streamHash: 8419d91ef05fe6a37e6a731972cc63f7db413ec3
hasResponse: true
responsesAreSuccessful: true
hasRecords: true
primaryKeysArePresent: true
primaryKeysAreUnique: true
campaigns_report_daily:
streamHash: 65c26f415b78932b495424c2da6b13d4408f02a4
streamHash: 0f716882a4c4cf2af1d32eaa5e4bfae1df650d1b
hasResponse: true
responsesAreSuccessful: true
hasRecords: true
primaryKeysArePresent: true
primaryKeysAreUnique: true
adgroups_report_daily:
streamHash: 236c631495a6c5d871069511422cf4ecccd45127
streamHash: 69ae81a549ddf4cf49525e4731ce3f0672850294
hasResponse: true
responsesAreSuccessful: true
hasRecords: true
primaryKeysArePresent: true
primaryKeysAreUnique: true
keywords_report_daily:
streamHash: 960877547a37e031d2b50197379b164fb42028c1
hasResponse: true
responsesAreSuccessful: true
hasRecords: true
primaryKeysArePresent: true
streamHash: 9e3168136c48dbdc3e29e620f048eb3824023132
hasResponse: true
primaryKeysAreUnique: true
primaryKeysArePresent: true
responsesAreSuccessful: true
assist: {}

schemas:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: e59c8416-c2fa-4bd3-9e95-52677ea281c1
dockerImageTag: 0.5.1
dockerImageTag: 0.6.0
dockerRepository: airbyte/source-apple-search-ads
githubIssueLabel: source-apple-search-ads
icon: icon.svg
Expand Down Expand Up @@ -35,5 +35,5 @@ data:
alias: airbyte-connector-testing-secret-store
supportLevel: community
connectorBuildOptions:
baseImage: docker.io/airbyte/source-declarative-manifest:6.38.3@sha256:fcba02266f262aabc2f37e4f14574aa1c8c5cffd018504bab28803e405c93afe
baseImage: docker.io/airbyte/source-declarative-manifest:6.41.1@sha256:f256b6f008ec07a37e3e6bce3ada17bec4197c1bc66c41c4b756980c8cb587ac
metadataSpecVersion: "1.0"
1 change: 1 addition & 0 deletions docs/integrations/sources/apple-search-ads.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ However, at this moment and as indicated in the stream names, the connector only

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------|
| 0.6.0 | 2025-03-20 | [55785](https://github.com/airbytehq/airbyte/pull/55785) | Add timezone config parameter |
| 0.5.1 | 2025-03-08 | [55366](https://github.com/airbytehq/airbyte/pull/55366) | Update dependencies |
| 0.5.0 | 2025-03-05 | [55210](https://github.com/airbytehq/airbyte/pull/55210) | Remove primary keys |
| 0.4.3 | 2025-03-01 | [54873](https://github.com/airbytehq/airbyte/pull/54873) | Update dependencies |
Expand Down
Loading