Skip to content

Commit 863c743

Browse files
feat: [google-shopping-merchant-accounts] Add OmnichannelSetingsService, LfpProvidersService and GbpAccountsService (#13915)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 759329567 Source-Link: googleapis/googleapis@64a5e68 Source-Link: googleapis/googleapis-gen@2b5773d Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLXNob3BwaW5nLW1lcmNoYW50LWFjY291bnRzLy5Pd2xCb3QueWFtbCIsImgiOiIyYjU3NzNkMTZkMjhjOTlkODJmNWZjMmVjNDk4MjY5NDgwZjBiOGE2In0= --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
1 parent cdca657 commit 863c743

File tree

70 files changed

+30542
-139
lines changed

Some content is hidden

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

70 files changed

+30542
-139
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
GbpAccountsService
2+
------------------------------------
3+
4+
.. automodule:: google.shopping.merchant_accounts_v1beta.services.gbp_accounts_service
5+
:members:
6+
:inherited-members:
7+
8+
.. automodule:: google.shopping.merchant_accounts_v1beta.services.gbp_accounts_service.pagers
9+
:members:
10+
:inherited-members:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
LfpProvidersService
2+
-------------------------------------
3+
4+
.. automodule:: google.shopping.merchant_accounts_v1beta.services.lfp_providers_service
5+
:members:
6+
:inherited-members:
7+
8+
.. automodule:: google.shopping.merchant_accounts_v1beta.services.lfp_providers_service.pagers
9+
:members:
10+
:inherited-members:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
OmnichannelSettingsService
2+
--------------------------------------------
3+
4+
.. automodule:: google.shopping.merchant_accounts_v1beta.services.omnichannel_settings_service
5+
:members:
6+
:inherited-members:
7+
8+
.. automodule:: google.shopping.merchant_accounts_v1beta.services.omnichannel_settings_service.pagers
9+
:members:
10+
:inherited-members:

packages/google-shopping-merchant-accounts/docs/merchant_accounts_v1beta/services_.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ Services for Google Shopping Merchant Accounts v1beta API
1111
business_identity_service
1212
business_info_service
1313
email_preferences_service
14+
gbp_accounts_service
1415
homepage_service
16+
lfp_providers_service
17+
omnichannel_settings_service
1518
online_return_policy_service
1619
programs_service
1720
regions_service

packages/google-shopping-merchant-accounts/google/shopping/merchant_accounts/__init__.py

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,30 @@
6666
from google.shopping.merchant_accounts_v1beta.services.email_preferences_service.client import (
6767
EmailPreferencesServiceClient,
6868
)
69+
from google.shopping.merchant_accounts_v1beta.services.gbp_accounts_service.async_client import (
70+
GbpAccountsServiceAsyncClient,
71+
)
72+
from google.shopping.merchant_accounts_v1beta.services.gbp_accounts_service.client import (
73+
GbpAccountsServiceClient,
74+
)
6975
from google.shopping.merchant_accounts_v1beta.services.homepage_service.async_client import (
7076
HomepageServiceAsyncClient,
7177
)
7278
from google.shopping.merchant_accounts_v1beta.services.homepage_service.client import (
7379
HomepageServiceClient,
7480
)
81+
from google.shopping.merchant_accounts_v1beta.services.lfp_providers_service.async_client import (
82+
LfpProvidersServiceAsyncClient,
83+
)
84+
from google.shopping.merchant_accounts_v1beta.services.lfp_providers_service.client import (
85+
LfpProvidersServiceClient,
86+
)
87+
from google.shopping.merchant_accounts_v1beta.services.omnichannel_settings_service.async_client import (
88+
OmnichannelSettingsServiceAsyncClient,
89+
)
90+
from google.shopping.merchant_accounts_v1beta.services.omnichannel_settings_service.client import (
91+
OmnichannelSettingsServiceClient,
92+
)
7593
from google.shopping.merchant_accounts_v1beta.services.online_return_policy_service.async_client import (
7694
OnlineReturnPolicyServiceAsyncClient,
7795
)
@@ -172,13 +190,44 @@
172190
GetEmailPreferencesRequest,
173191
UpdateEmailPreferencesRequest,
174192
)
193+
from google.shopping.merchant_accounts_v1beta.types.gbpaccounts import (
194+
GbpAccount,
195+
LinkGbpAccountRequest,
196+
LinkGbpAccountResponse,
197+
ListGbpAccountsRequest,
198+
ListGbpAccountsResponse,
199+
)
175200
from google.shopping.merchant_accounts_v1beta.types.homepage import (
176201
ClaimHomepageRequest,
177202
GetHomepageRequest,
178203
Homepage,
179204
UnclaimHomepageRequest,
180205
UpdateHomepageRequest,
181206
)
207+
from google.shopping.merchant_accounts_v1beta.types.lfpproviders import (
208+
FindLfpProvidersRequest,
209+
FindLfpProvidersResponse,
210+
LfpProvider,
211+
LinkLfpProviderRequest,
212+
LinkLfpProviderResponse,
213+
)
214+
from google.shopping.merchant_accounts_v1beta.types.omnichannelsettings import (
215+
About,
216+
CreateOmnichannelSettingRequest,
217+
GetOmnichannelSettingRequest,
218+
InStock,
219+
InventoryVerification,
220+
LfpLink,
221+
ListOmnichannelSettingsRequest,
222+
ListOmnichannelSettingsResponse,
223+
OmnichannelSetting,
224+
OnDisplayToOrder,
225+
Pickup,
226+
RequestInventoryVerificationRequest,
227+
RequestInventoryVerificationResponse,
228+
ReviewState,
229+
UpdateOmnichannelSettingRequest,
230+
)
182231
from google.shopping.merchant_accounts_v1beta.types.online_return_policy import (
183232
CreateOnlineReturnPolicyRequest,
184233
DeleteOnlineReturnPolicyRequest,
@@ -275,8 +324,14 @@
275324
"BusinessInfoServiceAsyncClient",
276325
"EmailPreferencesServiceClient",
277326
"EmailPreferencesServiceAsyncClient",
327+
"GbpAccountsServiceClient",
328+
"GbpAccountsServiceAsyncClient",
278329
"HomepageServiceClient",
279330
"HomepageServiceAsyncClient",
331+
"LfpProvidersServiceClient",
332+
"LfpProvidersServiceAsyncClient",
333+
"OmnichannelSettingsServiceClient",
334+
"OmnichannelSettingsServiceAsyncClient",
280335
"OnlineReturnPolicyServiceClient",
281336
"OnlineReturnPolicyServiceAsyncClient",
282337
"ProgramsServiceClient",
@@ -329,11 +384,36 @@
329384
"EmailPreferences",
330385
"GetEmailPreferencesRequest",
331386
"UpdateEmailPreferencesRequest",
387+
"GbpAccount",
388+
"LinkGbpAccountRequest",
389+
"LinkGbpAccountResponse",
390+
"ListGbpAccountsRequest",
391+
"ListGbpAccountsResponse",
332392
"ClaimHomepageRequest",
333393
"GetHomepageRequest",
334394
"Homepage",
335395
"UnclaimHomepageRequest",
336396
"UpdateHomepageRequest",
397+
"FindLfpProvidersRequest",
398+
"FindLfpProvidersResponse",
399+
"LfpProvider",
400+
"LinkLfpProviderRequest",
401+
"LinkLfpProviderResponse",
402+
"About",
403+
"CreateOmnichannelSettingRequest",
404+
"GetOmnichannelSettingRequest",
405+
"InStock",
406+
"InventoryVerification",
407+
"LfpLink",
408+
"ListOmnichannelSettingsRequest",
409+
"ListOmnichannelSettingsResponse",
410+
"OmnichannelSetting",
411+
"OnDisplayToOrder",
412+
"Pickup",
413+
"RequestInventoryVerificationRequest",
414+
"RequestInventoryVerificationResponse",
415+
"ReviewState",
416+
"UpdateOmnichannelSettingRequest",
337417
"CreateOnlineReturnPolicyRequest",
338418
"DeleteOnlineReturnPolicyRequest",
339419
"GetOnlineReturnPolicyRequest",

packages/google-shopping-merchant-accounts/google/shopping/merchant_accounts/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.3.2" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-shopping-merchant-accounts/google/shopping/merchant_accounts_v1beta/__init__.py

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,19 @@
4747
EmailPreferencesServiceAsyncClient,
4848
EmailPreferencesServiceClient,
4949
)
50+
from .services.gbp_accounts_service import (
51+
GbpAccountsServiceAsyncClient,
52+
GbpAccountsServiceClient,
53+
)
5054
from .services.homepage_service import HomepageServiceAsyncClient, HomepageServiceClient
55+
from .services.lfp_providers_service import (
56+
LfpProvidersServiceAsyncClient,
57+
LfpProvidersServiceClient,
58+
)
59+
from .services.omnichannel_settings_service import (
60+
OmnichannelSettingsServiceAsyncClient,
61+
OmnichannelSettingsServiceClient,
62+
)
5163
from .services.online_return_policy_service import (
5264
OnlineReturnPolicyServiceAsyncClient,
5365
OnlineReturnPolicyServiceClient,
@@ -121,13 +133,44 @@
121133
GetEmailPreferencesRequest,
122134
UpdateEmailPreferencesRequest,
123135
)
136+
from .types.gbpaccounts import (
137+
GbpAccount,
138+
LinkGbpAccountRequest,
139+
LinkGbpAccountResponse,
140+
ListGbpAccountsRequest,
141+
ListGbpAccountsResponse,
142+
)
124143
from .types.homepage import (
125144
ClaimHomepageRequest,
126145
GetHomepageRequest,
127146
Homepage,
128147
UnclaimHomepageRequest,
129148
UpdateHomepageRequest,
130149
)
150+
from .types.lfpproviders import (
151+
FindLfpProvidersRequest,
152+
FindLfpProvidersResponse,
153+
LfpProvider,
154+
LinkLfpProviderRequest,
155+
LinkLfpProviderResponse,
156+
)
157+
from .types.omnichannelsettings import (
158+
About,
159+
CreateOmnichannelSettingRequest,
160+
GetOmnichannelSettingRequest,
161+
InStock,
162+
InventoryVerification,
163+
LfpLink,
164+
ListOmnichannelSettingsRequest,
165+
ListOmnichannelSettingsResponse,
166+
OmnichannelSetting,
167+
OnDisplayToOrder,
168+
Pickup,
169+
RequestInventoryVerificationRequest,
170+
RequestInventoryVerificationResponse,
171+
ReviewState,
172+
UpdateOmnichannelSettingRequest,
173+
)
131174
from .types.online_return_policy import (
132175
CreateOnlineReturnPolicyRequest,
133176
DeleteOnlineReturnPolicyRequest,
@@ -212,14 +255,18 @@
212255
"BusinessIdentityServiceAsyncClient",
213256
"BusinessInfoServiceAsyncClient",
214257
"EmailPreferencesServiceAsyncClient",
258+
"GbpAccountsServiceAsyncClient",
215259
"HomepageServiceAsyncClient",
260+
"LfpProvidersServiceAsyncClient",
261+
"OmnichannelSettingsServiceAsyncClient",
216262
"OnlineReturnPolicyServiceAsyncClient",
217263
"ProgramsServiceAsyncClient",
218264
"RegionsServiceAsyncClient",
219265
"ShippingSettingsServiceAsyncClient",
220266
"TermsOfServiceAgreementStateServiceAsyncClient",
221267
"TermsOfServiceServiceAsyncClient",
222268
"UserServiceAsyncClient",
269+
"About",
223270
"AcceptTermsOfServiceRequest",
224271
"Accepted",
225272
"AccessRight",
@@ -246,6 +293,7 @@
246293
"CarrierRate",
247294
"ClaimHomepageRequest",
248295
"CreateAndConfigureAccountRequest",
296+
"CreateOmnichannelSettingRequest",
249297
"CreateOnlineReturnPolicyRequest",
250298
"CreateRegionRequest",
251299
"CreateUserRequest",
@@ -261,6 +309,10 @@
261309
"EmailPreferences",
262310
"EmailPreferencesServiceClient",
263311
"EnableProgramRequest",
312+
"FindLfpProvidersRequest",
313+
"FindLfpProvidersResponse",
314+
"GbpAccount",
315+
"GbpAccountsServiceClient",
264316
"GetAccountRequest",
265317
"GetAccountTaxRequest",
266318
"GetAutofeedSettingsRequest",
@@ -269,6 +321,7 @@
269321
"GetBusinessInfoRequest",
270322
"GetEmailPreferencesRequest",
271323
"GetHomepageRequest",
324+
"GetOmnichannelSettingRequest",
272325
"GetOnlineReturnPolicyRequest",
273326
"GetProgramRequest",
274327
"GetRegionRequest",
@@ -279,13 +332,26 @@
279332
"Headers",
280333
"Homepage",
281334
"HomepageServiceClient",
335+
"InStock",
282336
"InsertShippingSettingsRequest",
337+
"InventoryVerification",
338+
"LfpLink",
339+
"LfpProvider",
340+
"LfpProvidersServiceClient",
341+
"LinkGbpAccountRequest",
342+
"LinkGbpAccountResponse",
343+
"LinkLfpProviderRequest",
344+
"LinkLfpProviderResponse",
283345
"ListAccountIssuesRequest",
284346
"ListAccountIssuesResponse",
285347
"ListAccountTaxRequest",
286348
"ListAccountTaxResponse",
287349
"ListAccountsRequest",
288350
"ListAccountsResponse",
351+
"ListGbpAccountsRequest",
352+
"ListGbpAccountsResponse",
353+
"ListOmnichannelSettingsRequest",
354+
"ListOmnichannelSettingsResponse",
289355
"ListOnlineReturnPoliciesRequest",
290356
"ListOnlineReturnPoliciesResponse",
291357
"ListProgramsRequest",
@@ -298,17 +364,24 @@
298364
"ListUsersResponse",
299365
"LocationIdSet",
300366
"MinimumOrderValueTable",
367+
"OmnichannelSetting",
368+
"OmnichannelSettingsServiceClient",
369+
"OnDisplayToOrder",
301370
"OnlineReturnPolicy",
302371
"OnlineReturnPolicyServiceClient",
303372
"PhoneVerificationState",
373+
"Pickup",
304374
"Program",
305375
"ProgramsServiceClient",
306376
"RateGroup",
307377
"Region",
308378
"RegionsServiceClient",
379+
"RequestInventoryVerificationRequest",
380+
"RequestInventoryVerificationResponse",
309381
"Required",
310382
"RetrieveForApplicationTermsOfServiceAgreementStateRequest",
311383
"RetrieveLatestTermsOfServiceRequest",
384+
"ReviewState",
312385
"Row",
313386
"Service",
314387
"ShippingSettings",
@@ -330,6 +403,7 @@
330403
"UpdateBusinessInfoRequest",
331404
"UpdateEmailPreferencesRequest",
332405
"UpdateHomepageRequest",
406+
"UpdateOmnichannelSettingRequest",
333407
"UpdateOnlineReturnPolicyRequest",
334408
"UpdateRegionRequest",
335409
"UpdateUserRequest",

0 commit comments

Comments
 (0)