From dac3453a142a1a73c6cb2ddd01270a6ea49bb616 Mon Sep 17 00:00:00 2001 From: Cloud IX Team Date: Thu, 25 Jun 2026 06:36:01 -0700 Subject: [PATCH] Fixes to instructions for utility library installation PiperOrigin-RevId: 937949716 --- .../SKILL.md | 27 ++++++++++--------- .../data-manager-api-event-ingestion/SKILL.md | 16 +++++------ 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/skills/ads/data-manager-api/data-manager-api-audience-ingestion/SKILL.md b/skills/ads/data-manager-api/data-manager-api-audience-ingestion/SKILL.md index ec1ffe0e07..951b1888af 100644 --- a/skills/ads/data-manager-api/data-manager-api-audience-ingestion/SKILL.md +++ b/skills/ads/data-manager-api/data-manager-api-audience-ingestion/SKILL.md @@ -1,14 +1,14 @@ --- name: data-manager-api-audience-ingestion description: >- - Provides technical specifications and implementation details for uploading audience - members to Google products using the Data Manager API /v1/audienceMembers/ingest - endpoint and its associated client libraries. Use this skill when the user wants - to upload audience members for Customer Match, mobile device ID audiences, or any - other audience use case supported by the Data Manager API. Don't use for uploading - events or conversions (use the data-manager-api-event-ingestion skill). + Guides developers through uploading audience members to Google products using + the Data Manager API /v1/audienceMembers/ingest endpoint and its associated + client libraries. Use this skill when the user wants to upload audience + members for Customer Match, mobile device ID audiences, or any other audience + use case supported by the Data Manager API. Don't use for uploading events or + conversions (use the data-manager-api-event-ingestion skill). metadata: - version: 1.0 + version: 1.1 category: GoogleAds --- # Data Manager API Audience Ingestion @@ -76,10 +76,10 @@ for detailed installation instructions. 1. Clone the repository from GitHub using the commands from the table below. 2. Always use the latest available version of the library. Determine the actual version identifier (`VERSION`) from the cloned repository metadata. - - **Python**: Find the version in `pyproject.toml` - - **Java**: Find the version in `util/package.json` (as the `version` + - **Python**: Find the version in `pyproject.toml`. + - **Java**: Find the version in `data-manager-util/build.gradle`. + - **Node**: Find the version in `util/package.json` (as the `version` field). - - **Node**: Find the version in `composer.json` (as the `version` field). 3. Follow the language-specific instructions in the next section to build and install the utility dependency, replacing `VERSION` with the version identifier you found. @@ -104,9 +104,9 @@ for detailed installation instructions. ``` 2. Declare a dependency in your project's `requirements.txt` file (replacing `VERSION` with the identified version): - + ``` - google-ads-datamanager-util=VERSION + google-ads-datamanager-util==VERSION ``` ##### Java @@ -117,7 +117,8 @@ for detailed installation instructions. ```shell ./gradlew data-manager-util:install ``` -3. Declare a dependency on the utility library in your project (replacing `VERSION` with the identified latest version): +3. Declare a dependency on the utility library in your project (replacing + `VERSION` with the identified version): * **Gradle**: ```none implementation 'com.google.api-ads:data-manager-util:VERSION' diff --git a/skills/ads/data-manager-api/data-manager-api-event-ingestion/SKILL.md b/skills/ads/data-manager-api/data-manager-api-event-ingestion/SKILL.md index 751bef3b71..58a1c7bf68 100644 --- a/skills/ads/data-manager-api/data-manager-api-event-ingestion/SKILL.md +++ b/skills/ads/data-manager-api/data-manager-api-event-ingestion/SKILL.md @@ -1,15 +1,15 @@ --- name: data-manager-api-event-ingestion description: >- - Provides technical specifications and implementation details for event and conversion - ingestion to Google products using the Data Manager API /v1/events/ingest endpoint + Guides developers through implementing event and conversion ingestion to + Google products using the Data Manager API /v1/events/ingest endpoint and its associated client libraries. Use this skill when the user wants to upload offline conversions, enhanced conversions for leads, click conversions, Google Analytics web or app events, or any other event ingestion use case supported by the Data Manager API. Don't use for uploading audience members (use the data-manager-api-audience-ingestion skill). metadata: - version: 1.0 + version: 1.1 category: GoogleAds --- # Data Manager API Event Ingestion @@ -78,10 +78,10 @@ for detailed installation instructions. 1. Clone the repository from GitHub using the commands from the table below. 2. Always use the latest available version of the library. Determine the actual version identifier (`VERSION`) from the cloned repository metadata. - - **Python**: Find the version in `pyproject.toml` - - **Java**: Find the version in `util/package.json` (as the `version` + - **Python**: Find the version in `pyproject.toml`. + - **Java**: Find the version in `data-manager-util/build.gradle`. + - **Node**: Find the version in `util/package.json` (as the `version` field). - - **Node**: Find the version in `composer.json` (as the `version` field). 3. Follow the language-specific instructions in the next section to build and install the utility dependency, replacing `VERSION` with the version identifier you found. @@ -106,9 +106,9 @@ for detailed installation instructions. ``` 2. Declare a dependency in your project's `requirements.txt` file (replacing `VERSION` with the identified version): - + ``` - google-ads-datamanager-util=VERSION + google-ads-datamanager-util==VERSION ``` ##### Java