@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.
@@ -2107,12 +2107,12 @@ interface ProductMedia extends ProductMediaSetByOneOf, ProductMediaMediaOneOf {
2107
2107
  */
2108
2108
  url?: string;
2109
2109
  /**
2110
- * Product image.
2110
+ * 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`.
2111
2111
  * @readonly
2112
2112
  */
2113
2113
  image?: Image;
2114
2114
  /**
2115
- * Product video.
2115
+ * Video details. Populated when you provide a Wix Media Manager file ID in `set_by`.
2116
2116
  * @readonly
2117
2117
  */
2118
2118
  video?: VideoV2;
@@ -2124,7 +2124,8 @@ interface ProductMedia extends ProductMediaSetByOneOf, ProductMediaMediaOneOf {
2124
2124
  altText?: string | null;
2125
2125
  /**
2126
2126
  * Media display name.
2127
- * Allows to override the default media name. Can be passed only when `setBy: url`.
2127
+ *
2128
+ * Overrides the default media name. Can be passed only when the media is set by a URL in `setBy``.
2128
2129
  * @maxLength 80
2129
2130
  */
2130
2131
  displayName?: string | null;
@@ -2162,12 +2163,12 @@ interface ProductMediaSetByOneOf {
2162
2163
  /** @oneof */
2163
2164
  interface ProductMediaMediaOneOf {
2164
2165
  /**
2165
- * Product image.
2166
+ * 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`.
2166
2167
  * @readonly
2167
2168
  */
2168
2169
  image?: Image;
2169
2170
  /**
2170
- * Product video.
2171
+ * Video details. Populated when you provide a Wix Media Manager file ID in `set_by`.
2171
2172
  * @readonly
2172
2173
  */
2173
2174
  video?: VideoV2;
@@ -2268,7 +2269,9 @@ interface Thumbnail {
2268
2269
  }
2269
2270
  interface MediaItemsInfo {
2270
2271
  /**
2271
- * All media items (images, videos etc) associated with this product.
2272
+ * All media items associated with this product.
2273
+ *
2274
+ * The first item in the array is automatically set as the product's main media.
2272
2275
  * @maxSize 15
2273
2276
  */
2274
2277
  items?: ProductMedia[];