@maxim_mazurok/gapi.client.merchantapi-inventories_v1beta 0.0.20250724 → 0.0.20250728
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 +7 -7
- 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=inventories_v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250728
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -73,13 +73,13 @@ declare namespace gapi.client {
|
|
|
73
73
|
pickupMethod?: string;
|
|
74
74
|
/** Relative time period from the order date for an order for this product, from this store, to be ready for pickup. Must be submitted with `pickupMethod`. For accepted attribute values, see the [local product inventory data specification](https://support.google.com/merchants/answer/3061342) */
|
|
75
75
|
pickupSla?: string;
|
|
76
|
-
/** Price of the product at this store. */
|
|
76
|
+
/** Optional. Price of the product at this store. */
|
|
77
77
|
price?: Price;
|
|
78
78
|
/** Quantity of the product available at this store. Must be greater than or equal to zero. */
|
|
79
79
|
quantity?: string;
|
|
80
|
-
/** Sale price of the product at this store. Mandatory if `salePriceEffectiveDate` is defined. */
|
|
80
|
+
/** Optional. Sale price of the product at this store. Mandatory if `salePriceEffectiveDate` is defined. */
|
|
81
81
|
salePrice?: Price;
|
|
82
|
-
/** The `TimePeriod` of the sale at this store. */
|
|
82
|
+
/** Optional. The `TimePeriod` of the sale at this store. */
|
|
83
83
|
salePriceEffectiveDate?: Interval;
|
|
84
84
|
/** Required. Immutable. Store code (the store ID from your Business Profile) of the physical store the product is sold in. See the [Local product inventory data specification](https://support.google.com/merchants/answer/3061342) for more information. */
|
|
85
85
|
storeCode?: string;
|
|
@@ -129,13 +129,13 @@ declare namespace gapi.client {
|
|
|
129
129
|
customAttributes?: CustomAttribute[];
|
|
130
130
|
/** Output only. The name of the `RegionalInventory` resource. Format: `{regional_inventory.name=accounts/{account}/products/{product}/regionalInventories/{region}` */
|
|
131
131
|
name?: string;
|
|
132
|
-
/** Price of the product in this region. */
|
|
132
|
+
/** Optional. Price of the product in this region. */
|
|
133
133
|
price?: Price;
|
|
134
134
|
/** Required. Immutable. ID of the region for this `RegionalInventory` resource. See the [Regional availability and pricing](https://support.google.com/merchants/answer/9698880) for more details. */
|
|
135
135
|
region?: string;
|
|
136
|
-
/** Sale price of the product in this region. Mandatory if `salePriceEffectiveDate` is defined. */
|
|
136
|
+
/** Optional. Sale price of the product in this region. Mandatory if `salePriceEffectiveDate` is defined. */
|
|
137
137
|
salePrice?: Price;
|
|
138
|
-
/** The `TimePeriod` of the sale price in this region. */
|
|
138
|
+
/** Optional. The `TimePeriod` of the sale price in this region. */
|
|
139
139
|
salePriceEffectiveDate?: Interval;
|
|
140
140
|
}
|
|
141
141
|
interface LocalInventoriesResource {
|
package/package.json
CHANGED