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

Api v5 #29

Merged
merged 20 commits into from
Mar 24, 2025
Merged

Api v5 #29

merged 20 commits into from
Mar 24, 2025

Conversation

fivetran-reneeli
Copy link
Contributor

@fivetran-reneeli fivetran-reneeli commented Mar 12, 2025

PR Overview

This PR will address the following Issue/Feature: Update package to align with connector update to API v5

Submission Checklist

Submitter:

  • Alignment meeting with the reviewer
  • Provide validation details:
    • Validation Steps: See internal ticket

    • [] Testing Instructions: Clear steps for running/testing (e.g., scripts, sample data)

See internal ticket

  • [] Focus Areas: na

Reviewer:

  • [] Confirm submission requirements are met

Changelog

  • [] Draft after PR approval

@fivetran-reneeli
Copy link
Contributor Author

will hold to regen docs after approval

Copy link
Contributor

@fivetran-jamie fivetran-jamie left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good, largely doc comments!

@@ -56,7 +56,7 @@ Include the following apple_search_ads package version in your `packages.yml` fi
```yaml
packages:
- package: fivetran/apple_search_ads
version: [">=0.4.0", "<0.5.0"] # we recommend using ranges to capture non-breaking changes automatically
version: [">=0.5.0", "<0.6.0"] # we recommend using ranges to capture non-breaking changes automatically
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We also need to update this section of the README to reflect the new default metric fields (and maybe note that certain ones are being deprecated)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated and added that note

@@ -43,17 +43,25 @@ models:
- name: taps
description: Number of taps on ad group on given day.
- name: new_downloads
description: App downloads from new users who have never before installed app of ad group in a given day.
description: App downloads from new users who have never before installed app of ad group in a given day. This will be deprecated by April 2025; please refer to the new field which is prefixed with "tap_".
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: App downloads from new users who have never before installed app of ad group in a given day. This will be deprecated by April 2025; please refer to the new field which is prefixed with "tap_".
description: App downloads from new users who have never before installed app of ad group in a given day. Following the [release](https://fivetran.com/docs/changelog/2025/february-2025#applesearchads) of Apple Search Ads API v5, the package will sunset this field by April 2025. Please refer to its replacement, `tap_new_downloads`, instead.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this sounds good, apply to all new_downloads descriptions in this file

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated this and moved new_downloads description to the docs file

- name: redownloads
description: Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of ad group in a given day.
description: Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of ad group in a given day. This will be deprecated by April 2025; please refer to the new field which is prefixed with "tap_".
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of ad group in a given day. This will be deprecated by April 2025; please refer to the new field which is prefixed with "tap_".
description: Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of ad group in a given day. Following the [release](https://fivetran.com/docs/changelog/2025/february-2025#applesearchads) of Apple Search Ads API v5, the package will sunset this field by April 2025. Please refer to its replacement, `tap_redownloads`, instead.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this sounds good, apply to all redownloads descriptions in this file

- name: total_downloads
description: The sum of new_downloads and redownloads.
description: The sum of new_downloads and redownloads. This will be deprecated by April 2025; please refer to the new field which is prefixed with "tap_".
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: The sum of new_downloads and redownloads. This will be deprecated by April 2025; please refer to the new field which is prefixed with "tap_".
description: The sum of `new_downloads` and `redownloads`. Following the [release](https://fivetran.com/docs/changelog/2025/february-2025#applesearchads) of Apple Search Ads API v5, the package will sunset this field by April 2025. Please refer to its replacement, `tap_total_downloads`, instead.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this sounds good, apply to all total_downloads descriptions in this file

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You added a doc block for this field in the source package right? Can you update to use that?

- name: conversions
description: Total installs resulting from a view or a tap.
description: Total installs resulting from a view or a tap. This will be deprecated by April 2025; please refer to the new field which is tap_installs.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: Total installs resulting from a view or a tap. This will be deprecated by April 2025; please refer to the new field which is tap_installs.
description: Total installs resulting from a view or a tap. Following the [release](https://fivetran.com/docs/changelog/2025/february-2025#applesearchads) of Apple Search Ads API v5, the package will sunset this field by April 2025. Please refer to its replacement, `tap_installs`, instead.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this sounds good, apply to all conversions descriptions in this file

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated

Comment on lines 31 to 38
sum(report.new_downloads) as new_downloads,
sum(report.tap_new_downloads) as tap_new_downloads,
sum(report.redownloads) as redownloads,
sum(report.tap_redownloads) as tap_redownloads,
sum(report.new_downloads + report.redownloads) as total_downloads,
sum(report.tap_new_downloads + report.tap_redownloads) as total_tap_downloads,
sum(report.conversions) as conversions,
sum(report.tap_installs) as tap_installs,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same request:

Can you add in-line comments pointing out that the old fields are deprecated and users should reference the new fields instead?

Comment on lines 39 to 46
sum(report.new_downloads) as new_downloads,
sum(report.tap_new_downloads) as tap_new_downloads,
sum(report.redownloads) as redownloads,
sum(report.tap_redownloads) as tap_redownloads,
sum(report.new_downloads + report.redownloads) as total_downloads,
sum(report.tap_new_downloads + report.tap_redownloads) as total_tap_downloads,
sum(report.conversions) as conversions,
sum(report.tap_installs) as tap_installs,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same request:

Can you add in-line comments pointing out that the old fields are deprecated and users should reference the new fields instead?

packages.yml Outdated
Comment on lines 2 to 7
# version: [">=0.5.0", "<0.6.0"]

- git: https://github.com/fivetran/dbt_apple_search_ads_source.git
revision: api_v5
warn-unpinned: false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

obligatory reminder to update before merging

CHANGELOG.md Outdated
Comment on lines 5 to 8
- Following the connector updates surrounding the Apple Search Ads API v5 release, the following fields have been added to the upstream `*_report` staging models and will be used to sunset the below fields:
- `tap_installs` - replacing `conversions`
- `tap_new_downloads` - replacing `new_downloads`
- `tap_redownloads` - replacing `redownloads`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Again, I know i'm not supposed to look at the changelog rn, but I think it could be good to mention that we are coalescing the new fields with the old to ensure historical data is persisted

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes updated this! thanks!

CHANGELOG.md Outdated
- `tap_redownloads` - replacing `tap_redownloads`
- `total_tap_downloads` - replacing `total_downloads`
- `tap_installs` - replacing `conversions`
- We encourage referencing the new fields, as the fields being replaced will be deprecated by April 2025 in an upcoming release.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- We encourage referencing the new fields, as the fields being replaced will be deprecated by April 2025 in an upcoming release.
- **We encourage referencing the new fields, as the fields being replaced will be deprecated by April 2025 in an upcoming release.**

or something to make this stick out

@fivetran-reneeli
Copy link
Contributor Author

Thanks Jamie for the thorough reviews! I moved the field descriptions to the upstream docs file and reference that instead. In addition, I switched "total_tap_downloads" to "tap_total_downloads" to keep with the naming conventions.

I also added the inline comments and made the changelog/readme udpates!

Copy link
Contributor

@fivetran-jamie fivetran-jamie left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approved with two things:

  1. We should use the tap_total_downloads doc block in the yml file
  2. a teeny tiny pedantic readme suggestion

- name: total_downloads
description: The sum of new_downloads and redownloads.
description: The sum of new_downloads and redownloads. This will be deprecated by April 2025; please refer to the new field which is prefixed with "tap_".
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You added a doc block for this field in the source package right? Can you update to use that?

Copy link
Collaborator

@fivetran-joemarkiewicz fivetran-joemarkiewicz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, but a few small comments before approval.

CHANGELOG.md Outdated
- `tap_total_downloads` - replacing `total_downloads`
- `tap_installs` - replacing `conversions`
- In order to maintain backwards compatibility and historical data, we have coalesced the new and existing versions of each field.
- **We encourage referencing the new fields, as the fields being replaced will be deprecated by April 2025 in an upcoming release.**
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Has this issue been created? Can we create this for the GitHub repo and link it here. Following our new deprecation process.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated!

fivetran-reneeli and others added 4 commits March 14, 2025 23:49
Co-authored-by: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com>
Copy link
Collaborator

@fivetran-joemarkiewicz fivetran-joemarkiewicz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

fivetran-reneeli and others added 3 commits March 24, 2025 15:45
Co-authored-by: Jamie Rodriguez <65564846+fivetran-jamie@users.noreply.github.com>
@fivetran-reneeli fivetran-reneeli merged commit b867663 into main Mar 24, 2025
9 checks passed
@fivetran-reneeli fivetran-reneeli deleted the api_v5 branch March 24, 2025 22:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants