google-apis-places_v1 0.34.0 → 0.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a040b9bf56fd894ee7047593998d63cee692cace5c1a40d9f49961f9f9d805cf
4
- data.tar.gz: 84510048c725d32dede85515c7871c7d72f1dc185c59ebc6db9c7bcfa0dc801d
3
+ metadata.gz: f7df6ed6e41e3808e10f4ff1f8578152e1c1e668aebe82fc829dfe5a0d687339
4
+ data.tar.gz: cf4ab96f79cf668bee3e2edef548f854526eb2ac907921fa217e9e922b780b1b
5
5
  SHA512:
6
- metadata.gz: 8feb3d98d625c24ddc0c584dd23ef8a86f041fc1cbdf74c34b16c53597b8ef7f46ec4f86ee413290034679f62252bf874b6af8523e1c17d53f60a13666863826
7
- data.tar.gz: d6b1f91cb42bc60a41e53621fe6ceae41546014009d7a166d0f44c7bf751b7fa3d2c224fc269bc2ca5dfa7754964b62c924a594db4f7168380e9f30e54e2c348
6
+ metadata.gz: bb42f558fce2df971f60c4d4cabf5fdc083a3f1ea900a315d625674f85ee3938804792075a5cc2b5f6fdfc11612310cfcf55513ae431be9ae9ba4e0e684dad81
7
+ data.tar.gz: ea91105f75ac4e36852e02fcd6bfc5bff6fd04293483bafe0b29e6ad508835cbcb4da5f2d55b8a122bb3e6f5df74adc57e0c63ff49481995d2ffec02387c86d7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-places_v1
2
2
 
3
+ ### v0.35.0 (2025-05-18)
4
+
5
+ * Regenerated from discovery document revision 20250506
6
+ * Regenerated using generator version 0.17.0
7
+
3
8
  ### v0.34.0 (2025-04-20)
4
9
 
5
10
  * Regenerated from discovery document revision 20250414
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://mapsplatform.google.com/maps-products/#place
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -1894,8 +1894,7 @@ module Google
1894
1894
  # @return [String]
1895
1895
  attr_accessor :directions_uri
1896
1896
 
1897
- # A link to show photos of this place. This link is currently not supported on
1898
- # Google Maps Mobile and only works on the web version of Google Maps.
1897
+ # A link to show reviews of this place on Google Maps.
1899
1898
  # Corresponds to the JSON property `photosUri`
1900
1899
  # @return [String]
1901
1900
  attr_accessor :photos_uri
@@ -1905,14 +1904,12 @@ module Google
1905
1904
  # @return [String]
1906
1905
  attr_accessor :place_uri
1907
1906
 
1908
- # A link to show reviews of this place. This link is currently not supported on
1909
- # Google Maps Mobile and only works on the web version of Google Maps.
1907
+ # A link to show reviews of this place on Google Maps.
1910
1908
  # Corresponds to the JSON property `reviewsUri`
1911
1909
  # @return [String]
1912
1910
  attr_accessor :reviews_uri
1913
1911
 
1914
- # A link to write a review for this place. This link is currently not supported
1915
- # on Google Maps Mobile and only works on the web version of Google Maps.
1912
+ # A link to write a review for this place on Google Maps.
1916
1913
  # Corresponds to the JSON property `writeAReviewUri`
1917
1914
  # @return [String]
1918
1915
  attr_accessor :write_a_review_uri
@@ -2296,6 +2293,11 @@ module Google
2296
2293
  # @return [String]
2297
2294
  attr_accessor :flag_content_uri
2298
2295
 
2296
+ # A link to show reviews of this place on Google Maps.
2297
+ # Corresponds to the JSON property `reviewsUri`
2298
+ # @return [String]
2299
+ attr_accessor :reviews_uri
2300
+
2299
2301
  # Localized variant of a text in a particular language.
2300
2302
  # Corresponds to the JSON property `text`
2301
2303
  # @return [Google::Apis::PlacesV1::GoogleTypeLocalizedText]
@@ -2309,6 +2311,7 @@ module Google
2309
2311
  def update!(**args)
2310
2312
  @disclosure_text = args[:disclosure_text] if args.key?(:disclosure_text)
2311
2313
  @flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
2314
+ @reviews_uri = args[:reviews_uri] if args.key?(:reviews_uri)
2312
2315
  @text = args[:text] if args.key?(:text)
2313
2316
  end
2314
2317
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PlacesV1
18
18
  # Version of the google-apis-places_v1 gem
19
- GEM_VERSION = "0.34.0"
19
+ GEM_VERSION = "0.35.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250414"
25
+ REVISION = "20250506"
26
26
  end
27
27
  end
28
28
  end
@@ -1014,6 +1014,7 @@ module Google
1014
1014
  property :disclosure_text, as: 'disclosureText', class: Google::Apis::PlacesV1::GoogleTypeLocalizedText, decorator: Google::Apis::PlacesV1::GoogleTypeLocalizedText::Representation
1015
1015
 
1016
1016
  property :flag_content_uri, as: 'flagContentUri'
1017
+ property :reviews_uri, as: 'reviewsUri'
1017
1018
  property :text, as: 'text', class: Google::Apis::PlacesV1::GoogleTypeLocalizedText, decorator: Google::Apis::PlacesV1::GoogleTypeLocalizedText::Representation
1018
1019
 
1019
1020
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-places_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.0
4
+ version: 0.35.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-20 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-places_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-places_v1/v0.34.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-places_v1/v0.35.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-places_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Places API (New) V1
79
79
  test_files: []