Skip to content

Commit ca18155

Browse files
authored
Changes for release v25_0. (#556)
1 parent a7e7b70 commit ca18155

1,452 files changed

Lines changed: 119521 additions & 104 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
43.0.0
2+
-----
3+
- Compatibility with v25.0 of the API: https://developers.google.com/google-ads/api/docs/release-notes
4+
15
42.0.0
26
-----
37
- Compatibility with v24.2, v23.3, v22.2, v21.2 of the API: https://developers.google.com/google-ads/api/docs/release-notes

lib/google/ads/google_ads/api_versions.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module Google
22
module Ads
33
module GoogleAds
4-
KNOWN_API_VERSIONS = [:V21, :V22, :V23, :V24]
5-
DEFAULT_API_VERSION = :V24
4+
KNOWN_API_VERSIONS = [:V21, :V22, :V23, :V24, :V25]
5+
DEFAULT_API_VERSION = :V25
66

77
def self.default_api_version
88
DEFAULT_API_VERSION

lib/google/ads/google_ads/interceptors/logging_interceptor.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class LoggingInterceptor < GRPC::ClientInterceptor
3838
customer_user_access_invitation.email_address|
3939
change_event.user_email|
4040
local_services_lead.contact_details.phone_number|
41+
local_services_lead.contact_details.phone_number_extension|
4142
local_services_lead.contact_details.email|
4243
local_services_lead.contact_details.consumer_name|
4344
local_services_lead_conversation.message_details.text
@@ -269,6 +270,9 @@ def sanitize_local_services_lead(message)
269270
if message["contactDetails"].include?("phoneNumber")
270271
message["contactDetails"]["phoneNumber"] = MASK_REPLACEMENT
271272
end
273+
if message["contactDetails"].include?("phoneNumberExtension")
274+
message["contactDetails"]["phoneNumberExtension"] = MASK_REPLACEMENT
275+
end
272276
if message["contactDetails"].include?("consumerName")
273277
message["contactDetails"]["consumerName"] = MASK_REPLACEMENT
274278
end
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Encoding: utf-8
2+
#
3+
# Copyright 2022 Google LLC
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
# Utility that generates up resource names for entities given IDs.
18+
19+
require "google/ads/google_ads/utils/build_path_lookup_class"
20+
21+
module Google
22+
module Ads
23+
module GoogleAds
24+
module Utils
25+
module V25
26+
PathLookupUtil = Utils.build_path_lookup_class(:v25)
27+
end
28+
end
29+
end
30+
end
31+
end

lib/google/ads/google_ads/v25/actions/book_campaigns_pb.rb

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/google/ads/google_ads/v25/actions/generate_shareable_previews_pb.rb

Lines changed: 31 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/google/ads/google_ads/v25/actions/quote_campaigns_pb.rb

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/google/ads/google_ads/v25/common/ad_asset_pb.rb

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/google/ads/google_ads/v25/common/ad_type_infos_pb.rb

Lines changed: 62 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/google/ads/google_ads/v25/common/additional_application_info_pb.rb

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)