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