@maxim_mazurok/gapi.client.merchantapi-datasources_v1beta 0.0.20260228 → 0.0.20260305
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.
- package/index.d.ts +5 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://merchantapi.googleapis.com/$discovery/rest?version=datasources_v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260305
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -146,7 +146,7 @@ declare namespace gapi.client {
|
|
|
146
146
|
interface LocalInventoryDataSource {
|
|
147
147
|
/** Required. Immutable. The two-letter ISO 639-1 language of the items to which the local inventory is provided. */
|
|
148
148
|
contentLanguage?: string;
|
|
149
|
-
/** Required. Immutable. The feed label of the offers to which the local inventory is provided. Must be less than or equal to 20 uppercase letters (A-Z), numbers (0-9), and dashes (-).
|
|
149
|
+
/** Required. Immutable. The feed label of the offers to which the local inventory is provided. Must be less than or equal to 20 uppercase letters (A-Z), numbers (0-9), and dashes (-). */
|
|
150
150
|
feedLabel?: string;
|
|
151
151
|
}
|
|
152
152
|
interface MerchantReviewDataSource {}
|
|
@@ -161,7 +161,7 @@ declare namespace gapi.client {
|
|
|
161
161
|
defaultRule?: DefaultRule;
|
|
162
162
|
/** Optional. A list of destinations describing where products of the data source can be shown. When retrieving the data source, the list contains all the destinations that can be used for the data source, including the ones that are disabled for the data source but enabled for the account. Only destinations that are enabled on the account, for example through program participation, can be enabled on the data source. If unset, during creation, the destinations will be inherited based on the account level program participation. If set, during creation or update, the data source will be set only for the specified destinations. Updating this field requires at least one destination. */
|
|
163
163
|
destinations?: Destination[];
|
|
164
|
-
/** Optional. Immutable. The feed label that is specified on the data source level. Must be less than or equal to 20 uppercase letters (A-Z), numbers (0-9), and dashes (-).
|
|
164
|
+
/** Optional. Immutable. The feed label that is specified on the data source level. Must be less than or equal to 20 uppercase letters (A-Z), numbers (0-9), and dashes (-). For more information about feed label, see [Create a primary data source for products](https://developers.google.com/merchant/api/guides/data-sources/api-sources#create-primary-data-source). `feedLabel` and `contentLanguage` must be either both set or unset for data sources with product content type. They must be set for data sources with a file input. If set, the data source will only accept products matching this combination. If unset, the data source will accept products without that restriction. */
|
|
165
165
|
feedLabel?: string;
|
|
166
166
|
}
|
|
167
167
|
interface ProductChange {
|
|
@@ -204,13 +204,13 @@ declare namespace gapi.client {
|
|
|
204
204
|
interface RegionalInventoryDataSource {
|
|
205
205
|
/** Required. Immutable. The two-letter ISO 639-1 language of the items to which the regional inventory is provided. */
|
|
206
206
|
contentLanguage?: string;
|
|
207
|
-
/** Required. Immutable. The feed label of the offers to which the regional inventory is provided. Must be less than or equal to 20 uppercase letters (A-Z), numbers (0-9), and dashes (-).
|
|
207
|
+
/** Required. Immutable. The feed label of the offers to which the regional inventory is provided. Must be less than or equal to 20 uppercase letters (A-Z), numbers (0-9), and dashes (-). */
|
|
208
208
|
feedLabel?: string;
|
|
209
209
|
}
|
|
210
210
|
interface SupplementalProductDataSource {
|
|
211
211
|
/** Optional. Immutable. The two-letter ISO 639-1 language of the items in the data source. `feedLabel` and `contentLanguage` must be either both set or unset. The fields can only be unset for data sources without file input. If set, the data source will only accept products matching this combination. If unset, the data source will accept produts without that restriction. */
|
|
212
212
|
contentLanguage?: string;
|
|
213
|
-
/** Optional. Immutable. The feed label that is specified on the data source level. Must be less than or equal to 20 uppercase letters (A-Z), numbers (0-9), and dashes (-).
|
|
213
|
+
/** Optional. Immutable. The feed label that is specified on the data source level. Must be less than or equal to 20 uppercase letters (A-Z), numbers (0-9), and dashes (-). `feedLabel` and `contentLanguage` must be either both set or unset for data sources with product content type. They must be set for data sources with a file input. The fields must be unset for data sources without file input. If set, the data source will only accept products matching this combination. If unset, the data source will accept produts without that restriction. */
|
|
214
214
|
feedLabel?: string;
|
|
215
215
|
/** Output only. The (unordered and deduplicated) list of all primary data sources linked to this data source in either default or custom rules. Supplemental data source cannot be deleted before all links are removed. */
|
|
216
216
|
referencingPrimaryDataSources?: DataSourceReference[];
|
package/package.json
CHANGED