google-apis-merchantapi_lfp_v1beta 0.2.0 → 0.4.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a92d6e9a587f6b578dfb8c9807c452c93134b5191ea9ca2971a706aefe01e866
|
4
|
+
data.tar.gz: 3797dc62c4a74cd9167a6b62b272df332d5efbc64cce727a8b1c82518ce69308
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6db68bfe499aa9e04bc4a052ff312998b3eb921662ffbf53198c6984b69cd89ac9493b1fa2330f9e352159144d0e2e9deeb42244a79ea470815f7a1e533c0c41
|
7
|
+
data.tar.gz: 0a46cdb154f1cf070042a5cb44ed94933fe55c9bb749dbe5b1684d10e89fd0c0525734800ef1e0d9f8a4103c6da4f3dd2498dcb70d5a361e6d7ab0f3c5fc4665
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-merchantapi_lfp_v1beta
|
2
2
|
|
3
|
+
### v0.4.0 (2025-03-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250301
|
6
|
+
|
7
|
+
### v0.3.0 (2025-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250219
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.2.0 (2024-12-02)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241119
|
@@ -404,22 +404,31 @@ module Google
|
|
404
404
|
class ProductChange
|
405
405
|
include Google::Apis::Core::Hashable
|
406
406
|
|
407
|
-
# The new value of the changed resource or attribute.
|
407
|
+
# The new value of the changed resource or attribute. If empty, it means that
|
408
|
+
# the product was deleted. Will have one of these values : (`approved`, `pending`
|
409
|
+
# , `disapproved`, ``)
|
408
410
|
# Corresponds to the JSON property `newValue`
|
409
411
|
# @return [String]
|
410
412
|
attr_accessor :new_value
|
411
413
|
|
412
|
-
# The old value of the changed resource or attribute.
|
414
|
+
# The old value of the changed resource or attribute. If empty, it means that
|
415
|
+
# the product was created. Will have one of these values : (`approved`, `pending`
|
416
|
+
# , `disapproved`, ``)
|
413
417
|
# Corresponds to the JSON property `oldValue`
|
414
418
|
# @return [String]
|
415
419
|
attr_accessor :old_value
|
416
420
|
|
417
|
-
# Countries that have the change (if applicable)
|
421
|
+
# Countries that have the change (if applicable). Represented in the ISO 3166
|
422
|
+
# format.
|
418
423
|
# Corresponds to the JSON property `regionCode`
|
419
424
|
# @return [String]
|
420
425
|
attr_accessor :region_code
|
421
426
|
|
422
|
-
# Reporting contexts that have the change (if applicable)
|
427
|
+
# Reporting contexts that have the change (if applicable). Currently this field
|
428
|
+
# supports only (`SHOPPING_ADS`, `LOCAL_INVENTORY_ADS`, `YOUTUBE_SHOPPING`, `
|
429
|
+
# YOUTUBE_CHECKOUT`, `YOUTUBE_AFFILIATE`) from the enum value [
|
430
|
+
# ReportingContextEnum](/merchant/api/reference/rest/Shared.Types/
|
431
|
+
# ReportingContextEnum)
|
423
432
|
# Corresponds to the JSON property `reportingContext`
|
424
433
|
# @return [String]
|
425
434
|
attr_accessor :reporting_context
|
@@ -459,8 +468,13 @@ module Google
|
|
459
468
|
# @return [Array<Google::Apis::MerchantapiLfpV1beta::ProductChange>]
|
460
469
|
attr_accessor :changes
|
461
470
|
|
462
|
-
# The
|
463
|
-
#
|
471
|
+
# The time at which the event was generated.
|
472
|
+
# Corresponds to the JSON property `eventTime`
|
473
|
+
# @return [String]
|
474
|
+
attr_accessor :event_time
|
475
|
+
|
476
|
+
# Optional. The product expiration time. This field will not bet set if the
|
477
|
+
# notification is sent for a product deletion event.
|
464
478
|
# Corresponds to the JSON property `expirationTime`
|
465
479
|
# @return [String]
|
466
480
|
attr_accessor :expiration_time
|
@@ -471,8 +485,7 @@ module Google
|
|
471
485
|
# @return [String]
|
472
486
|
attr_accessor :managing_account
|
473
487
|
|
474
|
-
# The product name. Format:
|
475
|
-
# `
|
488
|
+
# The product name. Format: `accounts/`account`/products/`product``
|
476
489
|
# Corresponds to the JSON property `resource`
|
477
490
|
# @return [String]
|
478
491
|
attr_accessor :resource
|
@@ -496,6 +509,7 @@ module Google
|
|
496
509
|
@account = args[:account] if args.key?(:account)
|
497
510
|
@attribute = args[:attribute] if args.key?(:attribute)
|
498
511
|
@changes = args[:changes] if args.key?(:changes)
|
512
|
+
@event_time = args[:event_time] if args.key?(:event_time)
|
499
513
|
@expiration_time = args[:expiration_time] if args.key?(:expiration_time)
|
500
514
|
@managing_account = args[:managing_account] if args.key?(:managing_account)
|
501
515
|
@resource = args[:resource] if args.key?(:resource)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MerchantapiLfpV1beta
|
18
18
|
# Version of the google-apis-merchantapi_lfp_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250301"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -167,6 +167,7 @@ module Google
|
|
167
167
|
property :attribute, as: 'attribute'
|
168
168
|
collection :changes, as: 'changes', class: Google::Apis::MerchantapiLfpV1beta::ProductChange, decorator: Google::Apis::MerchantapiLfpV1beta::ProductChange::Representation
|
169
169
|
|
170
|
+
property :event_time, as: 'eventTime'
|
170
171
|
property :expiration_time, as: 'expirationTime'
|
171
172
|
property :managing_account, as: 'managingAccount'
|
172
173
|
property :resource, as: 'resource'
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-merchantapi_lfp_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-09 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-merchantapi_lfp_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-merchantapi_lfp_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-merchantapi_lfp_v1beta/v0.4.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-merchantapi_lfp_v1beta
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Merchant API LfpV1beta
|
82
79
|
test_files: []
|