google-apis-mybusinessbusinessinformation_v1 0.2.0 → 0.6.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 +4 -4
- data/CHANGELOG.md +17 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/mybusinessbusinessinformation_v1/classes.rb +25 -18
- data/lib/google/apis/mybusinessbusinessinformation_v1/gem_version.rb +3 -3
- data/lib/google/apis/mybusinessbusinessinformation_v1/representations.rb +1 -0
- data/lib/google/apis/mybusinessbusinessinformation_v1/service.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7d18d18b74b03c8c484940963214adff322190456143715af4ff469e9ca045f
|
4
|
+
data.tar.gz: 4dc7a0d0fbb6174eb23908bec3a97149cf7a040c6093b243dd831da6c58f8b8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4405c2e5a331cadb804dfca530dab3ffcbe94e853c9025617329f1f0e6c741b2d5ae91c0bea05eb0a36ee7ac4b65ca266a92d68f59e519fa6e97dcd2bbfbfd53
|
7
|
+
data.tar.gz: 924cea1e7ee423dfb9d14e2fd78c76b4263cccc306ee542f83a1ddbd0f7416c194e5bc7c25d7e22dd75aa0d31d93da0e3bfea5345512fd88a73f347e4579f60b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-mybusinessbusinessinformation_v1
|
2
2
|
|
3
|
+
### v0.6.0 (2022-02-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220215
|
6
|
+
|
7
|
+
### v0.5.0 (2022-02-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220131
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.4.0 (2021-12-14)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20211211
|
15
|
+
|
16
|
+
### v0.3.0 (2021-11-12)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20211110
|
19
|
+
|
3
20
|
### v0.2.0 (2021-10-21)
|
4
21
|
|
5
22
|
* Unspecified changes
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/mybusinessbusinessinformation_v1"
|
|
51
51
|
client = Google::Apis::MybusinessbusinessinformationV1::MyBusinessBusinessInformationService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -452,10 +452,10 @@ module Google
|
|
452
452
|
# day and time zone are either specified elsewhere or are insignificant. The
|
453
453
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
454
454
|
# following: * A full date, with non-zero year, month, and day values * A month
|
455
|
-
# and day
|
456
|
-
#
|
457
|
-
#
|
458
|
-
# google.protobuf.Timestamp
|
455
|
+
# and day, with a zero year (e.g., an anniversary) * A year on its own, with a
|
456
|
+
# zero month and a zero day * A year and month, with a zero day (e.g., a credit
|
457
|
+
# card expiration date) Related types: * google.type.TimeOfDay * google.type.
|
458
|
+
# DateTime * google.protobuf.Timestamp
|
459
459
|
class Date
|
460
460
|
include Google::Apis::Core::Hashable
|
461
461
|
|
@@ -943,6 +943,12 @@ module Google
|
|
943
943
|
attr_accessor :can_delete
|
944
944
|
alias_method :can_delete?, :can_delete
|
945
945
|
|
946
|
+
# Output only. Indicates if the listing is eligible for business calls.
|
947
|
+
# Corresponds to the JSON property `canHaveBusinessCalls`
|
948
|
+
# @return [Boolean]
|
949
|
+
attr_accessor :can_have_business_calls
|
950
|
+
alias_method :can_have_business_calls?, :can_have_business_calls
|
951
|
+
|
946
952
|
# Output only. Indicates if the listing is eligible for food menu.
|
947
953
|
# Corresponds to the JSON property `canHaveFoodMenus`
|
948
954
|
# @return [Boolean]
|
@@ -1019,6 +1025,7 @@ module Google
|
|
1019
1025
|
# Update properties of this object
|
1020
1026
|
def update!(**args)
|
1021
1027
|
@can_delete = args[:can_delete] if args.key?(:can_delete)
|
1028
|
+
@can_have_business_calls = args[:can_have_business_calls] if args.key?(:can_have_business_calls)
|
1022
1029
|
@can_have_food_menus = args[:can_have_food_menus] if args.key?(:can_have_food_menus)
|
1023
1030
|
@can_modify_service_list = args[:can_modify_service_list] if args.key?(:can_modify_service_list)
|
1024
1031
|
@can_operate_health_data = args[:can_operate_health_data] if args.key?(:can_operate_health_data)
|
@@ -1141,10 +1148,10 @@ module Google
|
|
1141
1148
|
# day and time zone are either specified elsewhere or are insignificant. The
|
1142
1149
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
1143
1150
|
# following: * A full date, with non-zero year, month, and day values * A month
|
1144
|
-
# and day
|
1145
|
-
#
|
1146
|
-
#
|
1147
|
-
# google.protobuf.Timestamp
|
1151
|
+
# and day, with a zero year (e.g., an anniversary) * A year on its own, with a
|
1152
|
+
# zero month and a zero day * A year and month, with a zero day (e.g., a credit
|
1153
|
+
# card expiration date) Related types: * google.type.TimeOfDay * google.type.
|
1154
|
+
# DateTime * google.protobuf.Timestamp
|
1148
1155
|
# Corresponds to the JSON property `openingDate`
|
1149
1156
|
# @return [Google::Apis::MybusinessbusinessinformationV1::Date]
|
1150
1157
|
attr_accessor :opening_date
|
@@ -1328,8 +1335,8 @@ module Google
|
|
1328
1335
|
attr_accessor :recipients
|
1329
1336
|
|
1330
1337
|
# Required. CLDR region code of the country/region of the address. This is never
|
1331
|
-
# inferred and it is up to the user to ensure the value is correct. See
|
1332
|
-
# cldr.unicode.org/ and
|
1338
|
+
# inferred and it is up to the user to ensure the value is correct. See https://
|
1339
|
+
# cldr.unicode.org/ and https://www.unicode.org/cldr/charts/30/supplemental/
|
1333
1340
|
# territory_information.html for details. Example: "CH" for Switzerland.
|
1334
1341
|
# Corresponds to the JSON property `regionCode`
|
1335
1342
|
# @return [String]
|
@@ -1704,10 +1711,10 @@ module Google
|
|
1704
1711
|
# day and time zone are either specified elsewhere or are insignificant. The
|
1705
1712
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
1706
1713
|
# following: * A full date, with non-zero year, month, and day values * A month
|
1707
|
-
# and day
|
1708
|
-
#
|
1709
|
-
#
|
1710
|
-
# google.protobuf.Timestamp
|
1714
|
+
# and day, with a zero year (e.g., an anniversary) * A year on its own, with a
|
1715
|
+
# zero month and a zero day * A year and month, with a zero day (e.g., a credit
|
1716
|
+
# card expiration date) Related types: * google.type.TimeOfDay * google.type.
|
1717
|
+
# DateTime * google.protobuf.Timestamp
|
1711
1718
|
# Corresponds to the JSON property `endDate`
|
1712
1719
|
# @return [Google::Apis::MybusinessbusinessinformationV1::Date]
|
1713
1720
|
attr_accessor :end_date
|
@@ -1723,10 +1730,10 @@ module Google
|
|
1723
1730
|
# day and time zone are either specified elsewhere or are insignificant. The
|
1724
1731
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
1725
1732
|
# following: * A full date, with non-zero year, month, and day values * A month
|
1726
|
-
# and day
|
1727
|
-
#
|
1728
|
-
#
|
1729
|
-
# google.protobuf.Timestamp
|
1733
|
+
# and day, with a zero year (e.g., an anniversary) * A year on its own, with a
|
1734
|
+
# zero month and a zero day * A year and month, with a zero day (e.g., a credit
|
1735
|
+
# card expiration date) Related types: * google.type.TimeOfDay * google.type.
|
1736
|
+
# DateTime * google.protobuf.Timestamp
|
1730
1737
|
# Corresponds to the JSON property `startDate`
|
1731
1738
|
# @return [Google::Apis::MybusinessbusinessinformationV1::Date]
|
1732
1739
|
attr_accessor :start_date
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MybusinessbusinessinformationV1
|
18
18
|
# Version of the google-apis-mybusinessbusinessinformation_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220215"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -584,6 +584,7 @@ module Google
|
|
584
584
|
# @private
|
585
585
|
class Representation < Google::Apis::Core::JsonRepresentation
|
586
586
|
property :can_delete, as: 'canDelete'
|
587
|
+
property :can_have_business_calls, as: 'canHaveBusinessCalls'
|
587
588
|
property :can_have_food_menus, as: 'canHaveFoodMenus'
|
588
589
|
property :can_modify_service_list, as: 'canModifyServiceList'
|
589
590
|
property :can_operate_health_data, as: 'canOperateHealthData'
|
@@ -467,7 +467,7 @@ module Google
|
|
467
467
|
|
468
468
|
# Deletes a location. If this location cannot be deleted using the API and it is
|
469
469
|
# marked so in the `google.mybusiness.businessinformation.v1.LocationState`, use
|
470
|
-
# the [Google
|
470
|
+
# the [Google Business Profile](https://business.google.com/manage/) website.
|
471
471
|
# @param [String] name
|
472
472
|
# Required. The name of the location to delete.
|
473
473
|
# @param [String] fields
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-mybusinessbusinessinformation_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-mybusinessbusinessinformation_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-mybusinessbusinessinformation_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-mybusinessbusinessinformation_v1/v0.6.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-mybusinessbusinessinformation_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for My Business Business Information API V1
|