google-shopping-merchant-notifications-v1beta 0.a → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +12 -0
  3. data/AUTHENTICATION.md +122 -0
  4. data/README.md +144 -8
  5. data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/client.rb +826 -0
  6. data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/credentials.rb +49 -0
  7. data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/paths.rb +66 -0
  8. data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/rest/client.rb +765 -0
  9. data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/rest/service_stub.rb +368 -0
  10. data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/rest.rb +54 -0
  11. data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service.rb +57 -0
  12. data/lib/google/shopping/merchant/notifications/v1beta/notificationsapi_pb.rb +64 -0
  13. data/lib/google/shopping/merchant/notifications/v1beta/notificationsapi_services_pb.rb +66 -0
  14. data/lib/google/shopping/merchant/notifications/v1beta/rest.rb +39 -0
  15. data/lib/google/shopping/merchant/notifications/v1beta/version.rb +7 -2
  16. data/lib/google/shopping/merchant/notifications/v1beta.rb +47 -0
  17. data/lib/google-shopping-merchant-notifications-v1beta.rb +21 -0
  18. data/proto_docs/README.md +4 -0
  19. data/proto_docs/google/api/client.rb +399 -0
  20. data/proto_docs/google/api/field_behavior.rb +85 -0
  21. data/proto_docs/google/api/launch_stage.rb +71 -0
  22. data/proto_docs/google/api/resource.rb +222 -0
  23. data/proto_docs/google/protobuf/duration.rb +98 -0
  24. data/proto_docs/google/protobuf/empty.rb +34 -0
  25. data/proto_docs/google/protobuf/field_mask.rb +229 -0
  26. data/proto_docs/google/shopping/merchant/notifications/v1beta/notificationsapi.rb +215 -0
  27. data/proto_docs/google/shopping/type/types.rb +183 -0
  28. metadata +87 -10
@@ -0,0 +1,215 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 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
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Shopping
22
+ module Merchant
23
+ module Notifications
24
+ module V1beta
25
+ # Request message for the GetNotificationSubscription method.
26
+ # @!attribute [rw] name
27
+ # @return [::String]
28
+ # Required. The `name` of the notification subscription.
29
+ class GetNotificationSubscriptionRequest
30
+ include ::Google::Protobuf::MessageExts
31
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32
+ end
33
+
34
+ # Request message for the CreateNotificationSubscription method.
35
+ # @!attribute [rw] parent
36
+ # @return [::String]
37
+ # Required. The merchant account that owns the new notification subscription.
38
+ # Format: `accounts/{account}`
39
+ # @!attribute [rw] notification_subscription
40
+ # @return [::Google::Shopping::Merchant::Notifications::V1beta::NotificationSubscription]
41
+ # Required. The notification subscription to create.
42
+ class CreateNotificationSubscriptionRequest
43
+ include ::Google::Protobuf::MessageExts
44
+ extend ::Google::Protobuf::MessageExts::ClassMethods
45
+ end
46
+
47
+ # Request message for the UpdateNotificationSubscription method.
48
+ # @!attribute [rw] notification_subscription
49
+ # @return [::Google::Shopping::Merchant::Notifications::V1beta::NotificationSubscription]
50
+ # Required. The new version of the notification subscription that should be
51
+ # updated.
52
+ # @!attribute [rw] update_mask
53
+ # @return [::Google::Protobuf::FieldMask]
54
+ # List of fields being updated.
55
+ class UpdateNotificationSubscriptionRequest
56
+ include ::Google::Protobuf::MessageExts
57
+ extend ::Google::Protobuf::MessageExts::ClassMethods
58
+ end
59
+
60
+ # Request message for the DeleteNotificationSubscription method.
61
+ # @!attribute [rw] name
62
+ # @return [::String]
63
+ # Required. The name of the notification subscription to be deleted.
64
+ class DeleteNotificationSubscriptionRequest
65
+ include ::Google::Protobuf::MessageExts
66
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67
+ end
68
+
69
+ # Request message for the ListNotificationSubscription method.
70
+ # @!attribute [rw] parent
71
+ # @return [::String]
72
+ # Required. The merchant account who owns the notification subscriptions.
73
+ # Format: `accounts/{account}`
74
+ # @!attribute [rw] page_size
75
+ # @return [::Integer]
76
+ # The maximum number of notification subscriptions to return in a page.
77
+ # The default value for `page_size` is 100. The
78
+ # maximum value is `200`. Values above `200` will be coerced to `200`.
79
+ # @!attribute [rw] page_token
80
+ # @return [::String]
81
+ # Token (if provided) to retrieve the subsequent page. All other parameters
82
+ # must match the original call that provided the page token.
83
+ class ListNotificationSubscriptionsRequest
84
+ include ::Google::Protobuf::MessageExts
85
+ extend ::Google::Protobuf::MessageExts::ClassMethods
86
+ end
87
+
88
+ # Response message for the ListNotificationSubscription method.
89
+ # @!attribute [rw] notification_subscriptions
90
+ # @return [::Array<::Google::Shopping::Merchant::Notifications::V1beta::NotificationSubscription>]
91
+ # The list of notification subscriptions requested by the merchant.
92
+ # @!attribute [rw] next_page_token
93
+ # @return [::String]
94
+ # A token, which can be sent as `page_token` to retrieve the next page.
95
+ # If this field is omitted, there are no subsequent pages.
96
+ class ListNotificationSubscriptionsResponse
97
+ include ::Google::Protobuf::MessageExts
98
+ extend ::Google::Protobuf::MessageExts::ClassMethods
99
+ end
100
+
101
+ # Represents a notification subscription owned by a Merchant account.
102
+ # @!attribute [rw] all_managed_accounts
103
+ # @return [::Boolean]
104
+ # If this value is true, the requesting account is notified of the
105
+ # specified event for all managed accounts (can be subaccounts or other
106
+ # linked accounts) including newly added accounts on a daily basis.
107
+ # @!attribute [rw] target_account
108
+ # @return [::String]
109
+ # The `name` of the account you want to receive notifications for.
110
+ # Format: `accounts/{account}`
111
+ # @!attribute [r] name
112
+ # @return [::String]
113
+ # Output only. The `name` of the notification configuration. Generated by the
114
+ # Content API upon creation of a new `NotificationSubscription`. The
115
+ # `account` represents the merchant ID of the merchant that owns the
116
+ # configuration. Format:
117
+ # `accounts/{account}/notificationsubscriptions/{notification_subscription}`
118
+ # @!attribute [rw] registered_event
119
+ # @return [::Google::Shopping::Merchant::Notifications::V1beta::NotificationSubscription::NotificationEventType]
120
+ # The event that the merchant wants to be notified about.
121
+ # @!attribute [rw] call_back_uri
122
+ # @return [::String]
123
+ # URL to be used to push the notification to the merchant.
124
+ class NotificationSubscription
125
+ include ::Google::Protobuf::MessageExts
126
+ extend ::Google::Protobuf::MessageExts::ClassMethods
127
+
128
+ # Represents the event type that the merchant is interested in receiving
129
+ # notifications for.
130
+ module NotificationEventType
131
+ # Notifications event type is unspecified.
132
+ NOTIFICATION_EVENT_TYPE_UNSPECIFIED = 0
133
+
134
+ # Notification of product status changes, for example when product becomes
135
+ # disapproved.
136
+ PRODUCT_STATUS_CHANGE = 1
137
+ end
138
+ end
139
+
140
+ # The change that happened to the product including old value, new value,
141
+ # country code as the region code and reporting context.
142
+ # @!attribute [rw] old_value
143
+ # @return [::String]
144
+ # The old value of the changed resource or attribute.
145
+ # @!attribute [rw] new_value
146
+ # @return [::String]
147
+ # The new value of the changed resource or attribute.
148
+ # @!attribute [rw] region_code
149
+ # @return [::String]
150
+ # Countries that have the change (if applicable)
151
+ # @!attribute [rw] reporting_context
152
+ # @return [::Google::Shopping::Type::ReportingContext::ReportingContextEnum]
153
+ # Reporting contexts that have the change (if applicable)
154
+ class ProductChange
155
+ include ::Google::Protobuf::MessageExts
156
+ extend ::Google::Protobuf::MessageExts::ClassMethods
157
+ end
158
+
159
+ # The message that the merchant will receive to notify about product status
160
+ # change event
161
+ # @!attribute [rw] account
162
+ # @return [::String]
163
+ # The target account that owns the entity that changed.
164
+ # Format : `accounts/{merchant_id}`
165
+ # @!attribute [rw] managing_account
166
+ # @return [::String]
167
+ # The account that manages the merchant's account. can be the same as
168
+ # merchant id if it is standalone account. Format :
169
+ # `accounts/{service_provider_id}`
170
+ # @!attribute [rw] resource_type
171
+ # @return [::Google::Shopping::Merchant::Notifications::V1beta::Resource]
172
+ # The resource that changed, in this case it will always be `Product`.
173
+ # @!attribute [rw] attribute
174
+ # @return [::Google::Shopping::Merchant::Notifications::V1beta::Attribute]
175
+ # The attribute in the resource that changed, in this case it will be always
176
+ # `Status`.
177
+ # @!attribute [rw] changes
178
+ # @return [::Array<::Google::Shopping::Merchant::Notifications::V1beta::ProductChange>]
179
+ # A message to describe the change that happened to the product
180
+ # @!attribute [rw] resource_id
181
+ # @return [::String]
182
+ # The product id.
183
+ # @!attribute [rw] resource
184
+ # @return [::String]
185
+ # The product name.
186
+ # Format: `{product.name=accounts/{account}/products/{product}}`
187
+ class ProductStatusChangeMessage
188
+ include ::Google::Protobuf::MessageExts
189
+ extend ::Google::Protobuf::MessageExts::ClassMethods
190
+ end
191
+
192
+ # Enum to specify the resource that is being changed to notify the merchant
193
+ # about.
194
+ module Resource
195
+ # Unspecified resource
196
+ RESOURCE_UNSPECIFIED = 0
197
+
198
+ # Resource type : product
199
+ PRODUCT = 1
200
+ end
201
+
202
+ # Enum to specify the attribute in the resource that is being changed to
203
+ # notify the merchant about.
204
+ module Attribute
205
+ # Unspecified attribute
206
+ ATTRIBUTE_UNSPECIFIED = 0
207
+
208
+ # Status of the changed entity
209
+ STATUS = 1
210
+ end
211
+ end
212
+ end
213
+ end
214
+ end
215
+ end
@@ -0,0 +1,183 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 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
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Shopping
22
+ module Type
23
+ # The price represented as a number and currency.
24
+ # @!attribute [rw] amount_micros
25
+ # @return [::Integer]
26
+ # The price represented as a number in micros (1 million micros is an
27
+ # equivalent to one's currency standard unit, for example, 1 USD = 1000000
28
+ # micros).
29
+ # This field can also be set as infinity by setting to -1.
30
+ # This field only support -1 and positive value.
31
+ # @!attribute [rw] currency_code
32
+ # @return [::String]
33
+ # The currency of the price using three-letter acronyms according to [ISO
34
+ # 4217](http://en.wikipedia.org/wiki/ISO_4217).
35
+ class Price
36
+ include ::Google::Protobuf::MessageExts
37
+ extend ::Google::Protobuf::MessageExts::ClassMethods
38
+ end
39
+
40
+ # A message that represents custom attributes. Exactly one of `value` or
41
+ # `group_values` must not be empty.
42
+ # @!attribute [rw] name
43
+ # @return [::String]
44
+ # The name of the attribute.
45
+ # @!attribute [rw] value
46
+ # @return [::String]
47
+ # The value of the attribute. If `value` is not empty, `group_values` must be
48
+ # empty.
49
+ # @!attribute [rw] group_values
50
+ # @return [::Array<::Google::Shopping::Type::CustomAttribute>]
51
+ # Subattributes within this attribute group. If
52
+ # `group_values` is not empty, `value` must be empty.
53
+ class CustomAttribute
54
+ include ::Google::Protobuf::MessageExts
55
+ extend ::Google::Protobuf::MessageExts::ClassMethods
56
+ end
57
+
58
+ # Destinations available for a product.
59
+ #
60
+ # Destinations are used in Merchant Center to allow you to control where the
61
+ # products from your data feed should be displayed.
62
+ class Destination
63
+ include ::Google::Protobuf::MessageExts
64
+ extend ::Google::Protobuf::MessageExts::ClassMethods
65
+
66
+ # Destination values.
67
+ module DestinationEnum
68
+ # Not specified.
69
+ DESTINATION_ENUM_UNSPECIFIED = 0
70
+
71
+ # [Shopping ads](https://support.google.com/google-ads/answer/2454022).
72
+ SHOPPING_ADS = 1
73
+
74
+ # [Display ads](https://support.google.com/merchants/answer/6069387).
75
+ DISPLAY_ADS = 2
76
+
77
+ # [Local inventory
78
+ # ads](https://support.google.com/merchants/answer/3057972).
79
+ LOCAL_INVENTORY_ADS = 3
80
+
81
+ # [Free listings](https://support.google.com/merchants/answer/9199328).
82
+ FREE_LISTINGS = 4
83
+
84
+ # [Free local product
85
+ # listings](https://support.google.com/merchants/answer/9825611).
86
+ FREE_LOCAL_LISTINGS = 5
87
+
88
+ # [YouTube Shopping](https://support.google.com/merchants/answer/12362804).
89
+ YOUTUBE_SHOPPING = 6
90
+ end
91
+ end
92
+
93
+ # Reporting contexts that your account and product issues apply to.
94
+ #
95
+ # Reporting contexts are groups of surfaces and formats for product results on
96
+ # Google. They can represent the entire destination (for example, [Shopping
97
+ # ads](https://support.google.com/merchants/answer/6149970)) or a subset of
98
+ # formats within a destination (for example, [Demand Gen
99
+ # ads](https://support.google.com/merchants/answer/13389785)).
100
+ class ReportingContext
101
+ include ::Google::Protobuf::MessageExts
102
+ extend ::Google::Protobuf::MessageExts::ClassMethods
103
+
104
+ # Reporting context values.
105
+ module ReportingContextEnum
106
+ # Not specified.
107
+ REPORTING_CONTEXT_ENUM_UNSPECIFIED = 0
108
+
109
+ # [Shopping ads](https://support.google.com/merchants/answer/6149970).
110
+ SHOPPING_ADS = 1
111
+
112
+ # Deprecated: Use `DEMAND_GEN_ADS` instead.
113
+ # [Discovery and Demand Gen
114
+ # ads](https://support.google.com/merchants/answer/13389785).
115
+ DISCOVERY_ADS = 2
116
+
117
+ # [Demand Gen ads](https://support.google.com/merchants/answer/13389785).
118
+ DEMAND_GEN_ADS = 13
119
+
120
+ # [Demand Gen ads on Discover
121
+ # surface](https://support.google.com/merchants/answer/13389785).
122
+ DEMAND_GEN_ADS_DISCOVER_SURFACE = 14
123
+
124
+ # [Video ads](https://support.google.com/google-ads/answer/6340491).
125
+ VIDEO_ADS = 3
126
+
127
+ # [Display ads](https://support.google.com/merchants/answer/6069387).
128
+ DISPLAY_ADS = 4
129
+
130
+ # [Local inventory
131
+ # ads](https://support.google.com/merchants/answer/3271956).
132
+ LOCAL_INVENTORY_ADS = 5
133
+
134
+ # [Vehicle inventory
135
+ # ads](https://support.google.com/merchants/answer/11544533).
136
+ VEHICLE_INVENTORY_ADS = 6
137
+
138
+ # [Free product
139
+ # listings](https://support.google.com/merchants/answer/9199328).
140
+ FREE_LISTINGS = 7
141
+
142
+ # [Free local product
143
+ # listings](https://support.google.com/merchants/answer/9825611).
144
+ FREE_LOCAL_LISTINGS = 8
145
+
146
+ # [Free local vehicle
147
+ # listings](https://support.google.com/merchants/answer/11544533).
148
+ FREE_LOCAL_VEHICLE_LISTINGS = 9
149
+
150
+ # [YouTube
151
+ # Shopping](https://support.google.com/merchants/answer/13478370).
152
+ YOUTUBE_SHOPPING = 10
153
+
154
+ # [Cloud retail](https://cloud.google.com/solutions/retail).
155
+ CLOUD_RETAIL = 11
156
+
157
+ # [Local cloud retail](https://cloud.google.com/solutions/retail).
158
+ LOCAL_CLOUD_RETAIL = 12
159
+ end
160
+ end
161
+
162
+ # [Channel](https://support.google.com/merchants/answer/7361332) of a product.
163
+ #
164
+ # Channel is used to distinguish between online and local products.
165
+ class Channel
166
+ include ::Google::Protobuf::MessageExts
167
+ extend ::Google::Protobuf::MessageExts::ClassMethods
168
+
169
+ # Channel values.
170
+ module ChannelEnum
171
+ # Not specified.
172
+ CHANNEL_ENUM_UNSPECIFIED = 0
173
+
174
+ # Online product.
175
+ ONLINE = 1
176
+
177
+ # Local product.
178
+ LOCAL = 2
179
+ end
180
+ end
181
+ end
182
+ end
183
+ end
metadata CHANGED
@@ -1,28 +1,105 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-shopping-merchant-notifications-v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.a
4
+ version: 0.1.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: 2024-04-23 00:00:00.000000000 Z
12
- dependencies: []
13
- description: Placeholder for the future Google-authored gem google-shopping-merchant-notifications-v1beta.
14
- This placeholder is being released on 2024-04-23 in order to reserve the name. The
15
- final gem should be available shortly after that date. If it has not been released
16
- in a timely manner, or if this placeholder interferes with your work, you can contact
17
- the Google Ruby team by opening an issue in the GitHub repository https://github.com/googleapis/google-cloud-ruby.
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: gapic-common
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.21.1
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 0.21.1
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 2.a
33
+ - !ruby/object:Gem::Dependency
34
+ name: google-cloud-errors
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.0'
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: google-shopping-type
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">"
52
+ - !ruby/object:Gem::Version
53
+ version: '0.0'
54
+ - - "<"
55
+ - !ruby/object:Gem::Version
56
+ version: 2.a
57
+ type: :runtime
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">"
62
+ - !ruby/object:Gem::Version
63
+ version: '0.0'
64
+ - - "<"
65
+ - !ruby/object:Gem::Version
66
+ version: 2.a
67
+ description: Programmatically manage your Merchant Center accounts. Note that google-shopping-merchant-notifications-v1beta
68
+ is a version-specific client library. For most uses, we recommend installing the
69
+ main client library google-shopping-merchant-notifications instead. See the readme
70
+ for more details.
18
71
  email: googleapis-packages@google.com
19
72
  executables: []
20
73
  extensions: []
21
74
  extra_rdoc_files: []
22
75
  files:
76
+ - ".yardopts"
77
+ - AUTHENTICATION.md
23
78
  - LICENSE.md
24
79
  - README.md
80
+ - lib/google-shopping-merchant-notifications-v1beta.rb
81
+ - lib/google/shopping/merchant/notifications/v1beta.rb
82
+ - lib/google/shopping/merchant/notifications/v1beta/notifications_api_service.rb
83
+ - lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/client.rb
84
+ - lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/credentials.rb
85
+ - lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/paths.rb
86
+ - lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/rest.rb
87
+ - lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/rest/client.rb
88
+ - lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/rest/service_stub.rb
89
+ - lib/google/shopping/merchant/notifications/v1beta/notificationsapi_pb.rb
90
+ - lib/google/shopping/merchant/notifications/v1beta/notificationsapi_services_pb.rb
91
+ - lib/google/shopping/merchant/notifications/v1beta/rest.rb
25
92
  - lib/google/shopping/merchant/notifications/v1beta/version.rb
93
+ - proto_docs/README.md
94
+ - proto_docs/google/api/client.rb
95
+ - proto_docs/google/api/field_behavior.rb
96
+ - proto_docs/google/api/launch_stage.rb
97
+ - proto_docs/google/api/resource.rb
98
+ - proto_docs/google/protobuf/duration.rb
99
+ - proto_docs/google/protobuf/empty.rb
100
+ - proto_docs/google/protobuf/field_mask.rb
101
+ - proto_docs/google/shopping/merchant/notifications/v1beta/notificationsapi.rb
102
+ - proto_docs/google/shopping/type/types.rb
26
103
  homepage: https://github.com/googleapis/google-cloud-ruby
27
104
  licenses:
28
105
  - Apache-2.0
@@ -35,7 +112,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
35
112
  requirements:
36
113
  - - ">="
37
114
  - !ruby/object:Gem::Version
38
- version: '3.0'
115
+ version: '2.7'
39
116
  required_rubygems_version: !ruby/object:Gem::Requirement
40
117
  requirements:
41
118
  - - ">="
@@ -45,5 +122,5 @@ requirements: []
45
122
  rubygems_version: 3.5.6
46
123
  signing_key:
47
124
  specification_version: 4
48
- summary: Placeholder for the future Google-authored gem google-shopping-merchant-notifications-v1beta
125
+ summary: Programmatically manage your Merchant Center accounts.
49
126
  test_files: []