Skip to content

Commit

Permalink
Tentacles v4.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lushu committed Apr 11, 2024
1 parent ea26e84 commit cf0e5ad
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@google-cloud/nodejs-common",
"version": "2.2.0",
"version": "2.2.1",
"description": "A NodeJs common library for solutions based on Cloud Functions",
"author": "Google Inc.",
"license": "Apache-2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ const API_VERSION = 'v4';
* floodlightConfigurationId:string,
* floodlightActivityId:string,
* quantity:(number|undefined),
* adUserDataConsent:ConsentStatus,
* },
* customVariables:(!Array<string>|undefined),
* encryptionInfo:({
Expand All @@ -76,6 +77,7 @@ const PICKED_PROPERTIES = [
'timestampMicros',
'value',
'quantity',
'adUserDataConsent',
];

/**
Expand All @@ -90,7 +92,7 @@ const IDENTIFIERS = [

const MAX_IDENTIFIERS_PER_USER = 5;
/**
* Google DfaReport API v3.0 stub.
* Google DfaReport API v4.0 stub.
* see https://developers.google.com/doubleclick-advertisers/service_accounts
*/
class DfaReporting extends GoogleApiClient {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Release Notes

## 4.4.1 (2024-04-11)


### Enhancements

- Campaign Manager 360 connector `CM` now supports `adUserDataConsent` for
consent for ad user data.


## 4.4.0 (2024-04-09)

### Enhancements

- API classes were refactored for easy maintainance.
- Dependencies version upgraded.

### Bug fix

- Configurations of Google Ads API now support lowerCamelCase, as well as
snake_case.

## 4.3.0 (2024-03-05)

### Integrated APIs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"floodlightConfigurationId": "[YOUR-FL-CONFIG-ID]",
"floodlightActivityId": "[YOUR-FL-ACTIVITY-ID]",
"quantity": 1,
"ordinal": "[UNIX_EPOCH]"
"ordinal": "[UNIX_EPOCH]",
"adUserDataConsent": "GRANTED|DENIED|undefined"
},
"customVariables": [
"[YOUR-U-VARIABLES-NAME-1]",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@google-cloud/gmp-googleads-connector",
"version": "4.4.0",
"version": "4.4.1",
"description": "GMP & Google Ads connector based on Cloud Functions",
"author": "Google Inc.",
"license": "Apache-2.0",
Expand All @@ -20,7 +20,7 @@
"homepage": "https://github.com/GoogleCloudPlatform/cloud-for-marketing/blob/master/marketing-analytics/activation/gmp-googleads-connector/README.md",
"main": "index.js",
"dependencies": {
"@google-cloud/nodejs-common": "^2.2.0",
"@google-cloud/nodejs-common": "^2.2.1",
"@google-cloud/storage": "^7.9.0",
"lodash": "^4.17.21",
"nanoid": "^3.3.4",
Expand Down

0 comments on commit cf0e5ad

Please sign in to comment.