@wix/auto_sdk_stores_catalog-imports-v-3 1.0.19 → 1.0.20

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.
@@ -2118,12 +2118,12 @@ interface ProductMedia extends ProductMediaSetByOneOf, ProductMediaMediaOneOf {
2118
2118
  */
2119
2119
  url?: string;
2120
2120
  /**
2121
- * Product image.
2121
+ * Image details. Populated when you provide a [Wix Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager) file ID in `set_by`.
2122
2122
  * @readonly
2123
2123
  */
2124
2124
  image?: string;
2125
2125
  /**
2126
- * Product video.
2126
+ * Video details. Populated when you provide a Wix Media Manager file ID in `set_by`.
2127
2127
  * @readonly
2128
2128
  */
2129
2129
  video?: string;
@@ -2135,7 +2135,8 @@ interface ProductMedia extends ProductMediaSetByOneOf, ProductMediaMediaOneOf {
2135
2135
  altText?: string | null;
2136
2136
  /**
2137
2137
  * Media display name.
2138
- * Allows to override the default media name. Can be passed only when `setBy: url`.
2138
+ *
2139
+ * Overrides the default media name. Can be passed only when the media is set by a URL in `setBy``.
2139
2140
  * @maxLength 80
2140
2141
  */
2141
2142
  displayName?: string | null;
@@ -2173,12 +2174,12 @@ interface ProductMediaSetByOneOf {
2173
2174
  /** @oneof */
2174
2175
  interface ProductMediaMediaOneOf {
2175
2176
  /**
2176
- * Product image.
2177
+ * Image details. Populated when you provide a [Wix Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager) file ID in `set_by`.
2177
2178
  * @readonly
2178
2179
  */
2179
2180
  image?: string;
2180
2181
  /**
2181
- * Product video.
2182
+ * Video details. Populated when you provide a Wix Media Manager file ID in `set_by`.
2182
2183
  * @readonly
2183
2184
  */
2184
2185
  video?: string;
@@ -2227,7 +2228,9 @@ interface Thumbnail {
2227
2228
  }
2228
2229
  interface MediaItemsInfo {
2229
2230
  /**
2230
- * All media items (images, videos etc) associated with this product.
2231
+ * All media items associated with this product.
2232
+ *
2233
+ * The first item in the array is automatically set as the product's main media.
2231
2234
  * @maxSize 15
2232
2235
  */
2233
2236
  items?: ProductMedia[];