Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
43.0.0
-----
- Compatibility with v25.0 of the API: https://developers.google.com/google-ads/api/docs/release-notes

42.0.0
-----
- Compatibility with v24.2, v23.3, v22.2, v21.2 of the API: https://developers.google.com/google-ads/api/docs/release-notes
Expand Down
4 changes: 2 additions & 2 deletions lib/google/ads/google_ads/api_versions.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module Google
module Ads
module GoogleAds
KNOWN_API_VERSIONS = [:V21, :V22, :V23, :V24]
DEFAULT_API_VERSION = :V24
KNOWN_API_VERSIONS = [:V21, :V22, :V23, :V24, :V25]
DEFAULT_API_VERSION = :V25

def self.default_api_version
DEFAULT_API_VERSION
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class LoggingInterceptor < GRPC::ClientInterceptor
customer_user_access_invitation.email_address|
change_event.user_email|
local_services_lead.contact_details.phone_number|
local_services_lead.contact_details.phone_number_extension|
local_services_lead.contact_details.email|
local_services_lead.contact_details.consumer_name|
local_services_lead_conversation.message_details.text
Expand Down Expand Up @@ -269,6 +270,9 @@ def sanitize_local_services_lead(message)
if message["contactDetails"].include?("phoneNumber")
message["contactDetails"]["phoneNumber"] = MASK_REPLACEMENT
end
if message["contactDetails"].include?("phoneNumberExtension")
message["contactDetails"]["phoneNumberExtension"] = MASK_REPLACEMENT
end
if message["contactDetails"].include?("consumerName")
message["contactDetails"]["consumerName"] = MASK_REPLACEMENT
end
Expand Down
31 changes: 31 additions & 0 deletions lib/google/ads/google_ads/utils/v25/path_lookup_util.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Encoding: utf-8
#
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Utility that generates up resource names for entities given IDs.

require "google/ads/google_ads/utils/build_path_lookup_class"

module Google
module Ads
module GoogleAds
module Utils
module V25
PathLookupUtil = Utils.build_path_lookup_class(:v25)
end
end
end
end
end
27 changes: 27 additions & 0 deletions lib/google/ads/google_ads/v25/actions/book_campaigns_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions lib/google/ads/google_ads/v25/actions/quote_campaigns_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions lib/google/ads/google_ads/v25/common/ad_asset_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 62 additions & 0 deletions lib/google/ads/google_ads/v25/common/ad_type_infos_pb.rb

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 32 additions & 0 deletions lib/google/ads/google_ads/v25/common/asset_policy_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading