@wix/auto_sdk_stores_read-only-variants-v-3 1.0.64 → 1.0.66

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.
Files changed (29) hide show
  1. package/build/cjs/index.d.ts +2 -2
  2. package/build/cjs/index.js.map +1 -1
  3. package/build/cjs/index.typings.d.ts +2 -2
  4. package/build/cjs/index.typings.js.map +1 -1
  5. package/build/cjs/meta.d.ts +15 -6
  6. package/build/cjs/meta.js.map +1 -1
  7. package/build/cjs/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BrvK7hib.d.ts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Cd3Qfxts.d.ts} +14 -5
  8. package/build/es/index.d.mts +2 -2
  9. package/build/es/index.mjs.map +1 -1
  10. package/build/es/index.typings.d.mts +2 -2
  11. package/build/es/index.typings.mjs.map +1 -1
  12. package/build/es/meta.d.mts +15 -6
  13. package/build/es/meta.mjs.map +1 -1
  14. package/build/es/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BrvK7hib.d.mts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Cd3Qfxts.d.mts} +14 -5
  15. package/build/internal/cjs/index.d.ts +2 -2
  16. package/build/internal/cjs/index.js.map +1 -1
  17. package/build/internal/cjs/index.typings.d.ts +2 -2
  18. package/build/internal/cjs/index.typings.js.map +1 -1
  19. package/build/internal/cjs/meta.d.ts +15 -6
  20. package/build/internal/cjs/meta.js.map +1 -1
  21. package/build/internal/cjs/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BjZVj4Mi.d.ts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-MJmcYUBb.d.ts} +14 -5
  22. package/build/internal/es/index.d.mts +2 -2
  23. package/build/internal/es/index.mjs.map +1 -1
  24. package/build/internal/es/index.typings.d.mts +2 -2
  25. package/build/internal/es/index.typings.mjs.map +1 -1
  26. package/build/internal/es/meta.d.mts +15 -6
  27. package/build/internal/es/meta.mjs.map +1 -1
  28. package/build/internal/es/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BjZVj4Mi.d.mts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-MJmcYUBb.d.mts} +14 -5
  29. package/package.json +2 -2
@@ -1666,6 +1666,13 @@ interface MigrateProductVariantsRequest {
1666
1666
  /** Event sequence number for the migration. */
1667
1667
  eventSequence?: string | null;
1668
1668
  }
1669
+ /**
1670
+ * A product in a Wix Stores catalog.
1671
+ *
1672
+ * Products can be physical goods that require shipping, or digital content that customers download. Each product has at least one variant, which represents a specific purchasable version with its own pricing, SKU, and inventory. Products with options (like size or color) have multiple variants.
1673
+ *
1674
+ * Products can be associated with brands and ribbons, enhanced with info sections and extended fields, and organized into categories.
1675
+ */
1669
1676
  interface Product extends ProductTypedPropertiesOneOf {
1670
1677
  /**
1671
1678
  * Physical properties.
@@ -1801,7 +1808,7 @@ interface Product extends ProductTypedPropertiesOneOf {
1801
1808
  */
1802
1809
  ribbon?: Ribbon;
1803
1810
  /**
1804
- * List of [categories](https://dev.wix.com/docs/api-reference/business-management/categories/introduction) that directly contain this product.
1811
+ * List of [categories](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/categories/introduction) that directly contain this product.
1805
1812
  *
1806
1813
  * Updated automatically when a product is added/removed from a category, when an item is moved within a category, or when a category is deleted.
1807
1814
  * > **Note:** Returned only when you pass `"DIRECT_CATEGORIES_INFO"` to the `fields` array in Products API requests.
@@ -1809,13 +1816,13 @@ interface Product extends ProductTypedPropertiesOneOf {
1809
1816
  */
1810
1817
  directCategoriesInfo?: ProductCategoriesInfo;
1811
1818
  /**
1812
- * List of [categories](https://dev.wix.com/docs/api-reference/business-management/categories/introduction) that directly contain this product, as well as their parent categories.
1819
+ * List of [categories](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/categories/introduction) that directly contain this product, as well as their parent categories.
1813
1820
  * > **Note:** Returned only when you pass `"ALL_CATEGORIES_INFO"` to the `fields` array in Products API requests.
1814
1821
  * @readonly
1815
1822
  */
1816
1823
  allCategoriesInfo?: ProductCategoriesInfo;
1817
1824
  /**
1818
- * The ID of the product's primary direct [category](https://dev.wix.com/docs/api-reference/business-management/categories/introduction), which defines the products breadcrumbs path. For example, if the product's main category is "T-Shirts" (which is a subcategory of "Clothing"), the breadcrumbs path will be "Clothing > T-Shirts".
1825
+ * The ID of the product's primary direct [category](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/categories/introduction), which defines the product's breadcrumbs path. For example, if the product's main category is "T-Shirts" (which is a subcategory of "Clothing"), the breadcrumbs path will be "Clothing > T-Shirts".
1819
1826
  * @format GUID
1820
1827
  */
1821
1828
  mainCategoryId?: string | null;
@@ -1861,7 +1868,7 @@ interface Product extends ProductTypedPropertiesOneOf {
1861
1868
  */
1862
1869
  currency?: string | null;
1863
1870
  /**
1864
- * Breadcrumbs of the `mainCategoryId`. Used to navigate to parent [categories](https://dev.wix.com/docs/api-reference/business-management/categories/introduction).
1871
+ * Breadcrumbs of the `mainCategoryId`. Used to navigate to parent [categories](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/categories/introduction). Useful for building navigation UI and for SEO purposes.
1865
1872
  * > **Note:** Returned only when you pass `"BREADCRUMBS_INFO"` to the `fields` array in Products API requests.
1866
1873
  * @readonly
1867
1874
  */
@@ -4306,7 +4313,7 @@ interface ProductCategory {
4306
4313
  */
4307
4314
  _id?: string;
4308
4315
  /**
4309
- * Index location of the product within the category, which can be utilized for sorting products in a specific category. For detailed instructions on how to set this up, refer to the [Add and arrange products in a category](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/products-v3/sample-use-cases-and-flows#add-and-arrange-products-in-a-category) sample flow.
4316
+ * Index location of the product within the category, used for sorting products in a specific category. You can manually arrange up to 100 products per category. For detailed instructions, refer to the [Add and arrange products in a category](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/products-v3/sample-use-cases-and-flows#add-and-arrange-products-in-a-category) sample flow.
4310
4317
  * @max 200
4311
4318
  */
4312
4319
  index?: number | null;
@@ -5060,6 +5067,8 @@ interface MessageEnvelope {
5060
5067
  identity?: IdentificationData;
5061
5068
  /** Stringify payload. */
5062
5069
  data?: string;
5070
+ /** Details related to the account */
5071
+ accountInfo?: AccountInfo;
5063
5072
  }
5064
5073
  interface IdentificationData extends IdentificationDataIdOneOf {
5065
5074
  /**
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
2
- import { R as ReadOnlyVariantSearch, S as SearchVariantsOptions, a as SearchVariantsResponse, b as ReadOnlyVariantQuery, Q as QueryVariantsOptions, t as typedQueryVariants, V as VariantsQueryBuilder } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BjZVj4Mi.js';
3
- export { eS as AccountInfo, eN as ActionEvent, b6 as Aggregation, bj as AggregationData, bQ as AggregationDateHistogramAggregation, b7 as AggregationKindOneOf, bT as AggregationNestedAggregation, bO as AggregationRangeAggregation, bC as AggregationResults, bD as AggregationResultsResultOneOf, bq as AggregationResultsScalarResult, bP as AggregationScalarAggregation, A as AggregationType, f8 as AggregationTypeWithLiterals, bM as AggregationValueAggregation, bN as AggregationValueAggregationOptionsOneOf, a8 as Alignment, fN as AlignmentWithLiterals, d0 as AnchorData, d7 as AppEmbedData, d8 as AppEmbedDataAppDataOneOf, aa as AppType, fP as AppTypeWithLiterals, a4 as AspectRatio, fJ as AspectRatioWithLiterals, dt as AudioData, ao as AvailabilityStatus, g1 as AvailabilityStatusWithLiterals, cS as Background, cT as BackgroundBackgroundOneOf, dz as BackgroundImage, a0 as BackgroundType, fF as BackgroundTypeWithLiterals, dw as BlockquoteData, d9 as BookingData, c6 as Border, dq as BorderColors, dr as BorderWidths, d$ as Brand, ef as BreadCrumb, ee as BreadcrumbsInfo, dv as BulletedListData, c5 as ButtonData, B as ButtonDataType, fm as ButtonDataTypeWithLiterals, db as ButtonStyles, dx as CaptionData, de as CardStyles, dp as CellStyle, am as ChoiceType, f$ as ChoiceTypeWithLiterals, dR as ChoicesSettings, ch as CodeBlockData, dk as CollapsibleListData, d1 as ColorData, c7 as Colors, bI as CommonAggregation, bJ as CommonAggregationKindOneOf, r as CommonAggregationType, fh as CommonAggregationTypeWithLiterals, g9 as CommonQueryWithEntityContext, p as CommonScalarType, fe as CommonScalarTypeWithLiterals, bW as CommonSearchDetails, ga as CommonSearchWithEntityContext, C as CommonSortOrder, fa as CommonSortOrderWithLiterals, bH as CommonSorting, aH as CommonVideoResolution, dV as ConnectedModifier, dZ as ConnectedModifierChoice, d_ as ConnectedModifierChoiceValueOneOf, dW as ConnectedModifierModifierSettingsOneOf, dP as ConnectedOption, dS as ConnectedOptionChoice, dT as ConnectedOptionChoiceValueOneOf, dQ as ConnectedOptionOptionSettingsOneOf, G as Crop, fv as CropWithLiterals, a$ as CursorPaging, b1 as CursorPagingMetadata, aY as CursorQuery, aZ as CursorQueryPagingMethodOneOf, b4 as CursorSearch, b5 as CursorSearchPagingMethodOneOf, b2 as Cursors, be as DateHistogramAggregation, D as DateHistogramAggregationInterval, fg as DateHistogramAggregationIntervalWithLiterals, by as DateHistogramResult, bA as DateHistogramResults, c_ as Decoration, c$ as DecorationDataOneOf, a1 as DecorationType, fG as DecorationTypeWithLiterals, bE as DeprecatedSearchVariantsWithOffsetRequest, bY as DeprecatedSearchVariantsWithOffsetResponse, cY as Design, aj as DesignTarget, fY as DesignTargetWithLiterals, dm as Dimensions, ac as Direction, fR as DirectionWithLiterals, au as DiscountType, g7 as DiscountTypeWithLiterals, cj as DividerData, z as DividerDataAlignment, fr as DividerDataAlignmentWithLiterals, dC as DocumentStyle, eH as DomainEvent, eI as DomainEventBodyOneOf, di as EmbedData, eO as Empty, eJ as EntityCreatedEvent, eM as EntityDeletedEvent, eL as EntityUpdatedEvent, da as EventData, ew as ExtendedFields, ck as FileData, cl as FileSource, cm as FileSourceDataOneOf, as as FileType, g5 as FileTypeWithLiterals, e6 as FixedMonetaryAmount, d6 as FontFamilyData, d4 as FontSizeData, a2 as FontType, fH as FontTypeWithLiterals, dX as FreeTextSettings, cz as GIF, cy as GIFData, J as GIFType, fx as GIFTypeWithLiterals, co as GalleryData, cu as GalleryOptions, cv as GalleryOptionsLayout, cR as Gradient, bU as GroupByAggregation, bV as GroupByAggregationKindOneOf, bz as GroupByValueResults, cB as HTMLData, cC as HTMLDataDataOneOf, cA as HeadingData, cc as Height, eQ as IdentificationData, eR as IdentificationDataIdOneOf, cq as Image, cD as ImageData, cF as ImageDataStyles, ag as ImagePosition, fV as ImagePositionWithLiterals, dc as ImageStyles, b9 as IncludeMissingValuesOptions, e0 as InfoSection, ab as InitialExpandedItems, fQ as InitialExpandedItemsWithLiterals, aW as InternalMetadata, I as InternalRowState, e$ as InternalRowStateWithLiterals, k as Interval, f7 as IntervalWithLiterals, e7 as Inventory, ev as InventoryStatus, cs as Item, ct as ItemDataOneOf, cw as ItemStyle, dM as Keyword, a9 as Layout, dA as LayoutCellData, dy as LayoutData, F as LayoutType, ft as LayoutTypeWithLiterals, fO as LayoutWithLiterals, L as LineStyle, fp as LineStyleWithLiterals, ce as Link, d2 as LinkData, cf as LinkDataOneOf, cG as LinkPreviewData, cH as LinkPreviewDataStyles, ds as ListValue, cI as MapData, cJ as MapSettings, X as MapType, fA as MapTypeWithLiterals, M as MeasurementUnit, eX as MeasurementUnitWithLiterals, dE as Media, dK as MediaItemsInfo, ak as MediaType, fZ as MediaTypeWithLiterals, d3 as MentionData, eP as MessageEnvelope, dB as Metadata, b_ as MigrateProductVariantsRequest, eE as MigrateProductVariantsResponse, eD as MinVariantPriceInfo, i as MissingValues, f4 as MissingValuesWithLiterals, l as Mode, f9 as ModeWithLiterals, dY as ModifierChoicesSettings, an as ModifierRenderType, g0 as ModifierRenderTypeWithLiterals, dU as MultipleColors, bh as NestedAggregation, bf as NestedAggregationItem, bg as NestedAggregationItemKindOneOf, bR as NestedAggregationNestedAggregationItem, bS as NestedAggregationNestedAggregationItemKindOneOf, q as NestedAggregationNestedAggregationType, ff as NestedAggregationNestedAggregationTypeWithLiterals, bm as NestedAggregationResults, bn as NestedAggregationResultsResultOneOf, N as NestedAggregationType, f6 as NestedAggregationTypeWithLiterals, bv as NestedResultValue, bw as NestedResultValueResultOneOf, bB as NestedResults, br as NestedValueAggregationResult, c2 as Node, c3 as NodeDataOneOf, c4 as NodeStyle, u as NodeType, fj as NodeTypeWithLiterals, ae as NullValue, fT as NullValueWithLiterals, dj as Oembed, cN as Option, ej as OptionChoice, ek as OptionChoiceIds, el as OptionChoiceNames, cV as OptionDesign, cQ as OptionLayout, du as OrderedListData, O as Orientation, fu as OrientationWithLiterals, cn as PDFSettings, bZ as PagingMetadata, cK as ParagraphData, cM as Permissions, e8 as PhysicalProperties, a6 as Placement, fL as PlacementWithLiterals, bF as PlatformOffsetSearch, bG as PlatformOffsetSearchPagingMethodOneOf, bX as PlatformPaging, dh as PlaybackOptions, c8 as PluginContainerData, w as PluginContainerDataAlignment, fl as PluginContainerDataAlignmentWithLiterals, c9 as PluginContainerDataWidth, ca as PluginContainerDataWidthDataOneOf, cW as Poll, cL as PollData, cX as PollDataLayout, cU as PollDesign, cP as PollLayout, $ as PollLayoutDirection, fE as PollLayoutDirectionWithLiterals, _ as PollLayoutType, fD as PollLayoutTypeWithLiterals, cO as PollSettings, a3 as Position, fI as PositionWithLiterals, ap as PreorderStatus, g2 as PreorderStatusWithLiterals, em as PriceInfo, ep as PricePerUnit, eb as PricePerUnitRange, ec as PricePerUnitRangePricePerUnit, e9 as PricePerUnitSettings, e5 as PriceRange, df as PricingData, b$ as Product, e2 as ProductCategoriesInfo, e3 as ProductCategory, e4 as ProductCategoryIdsInfo, aS as ProductFields, aT as ProductFieldsTypedPropertiesOneOf, dF as ProductMedia, dH as ProductMediaMediaOneOf, P as ProductMediaMediaType, eW as ProductMediaMediaTypeWithLiterals, dG as ProductMediaSetByOneOf, al as ProductOptionRenderType, f_ as ProductOptionRenderTypeWithLiterals, aq as ProductPreorderAvailability, g3 as ProductPreorderAvailabilityWithLiterals, ar as ProductType, g4 as ProductTypeWithLiterals, c0 as ProductTypedPropertiesOneOf, aX as QueryVariantsRequest, b0 as QueryVariantsResponse, bc as RangeAggregation, bK as RangeAggregationRangeBucket, bl as RangeAggregationResult, b8 as RangeBucket, bt as RangeResult, bp as RangeResults, aw as ReadOnlyVariant, eU as ReadOnlyVariantQuerySpec, eV as ReadOnlyVariantSearchSpec, ax as ReadOnlyVariantTypedPropertiesOneOf, eF as RecoverProductVariantsRequest, eG as RecoverProductVariantsResponse, cg as Rel, f as RequestedFields, f1 as RequestedFieldsWithLiterals, a5 as Resizing, fK as ResizingWithLiterals, ai as ResponsivenessBehaviour, fX as ResponsivenessBehaviourWithLiterals, eK as RestoreInfo, bx as Results, en as RevenueDetails, e1 as Ribbon, dd as RibbonStyles, c1 as RichContent, bd as ScalarAggregation, bu as ScalarResult, j as ScalarType, f5 as ScalarTypeWithLiterals, af as Scaling, fU as ScalingWithLiterals, bi as SearchDetails, s as SearchDetailsMode, fi as SearchDetailsModeWithLiterals, b3 as SearchVariantsRequest, er as SecuredMedia, c as SecuredMediaFileType, eY as SecuredMediaFileTypeWithLiterals, dL as SeoSchema, dO as Settings, h as SortDirection, f3 as SortDirectionWithLiterals, e as SortOrder, f0 as SortOrderWithLiterals, g as SortType, f2 as SortTypeWithLiterals, a_ as Sorting, K as Source, fy as SourceWithLiterals, cb as Spoiler, d5 as SpoilerData, cd as Styles, cE as StylesBorder, U as StylesPosition, fz as StylesPositionWithLiterals, ey as Subscription, ez as SubscriptionCyclesOneOf, ex as SubscriptionDetails, eA as SubscriptionDiscount, eB as SubscriptionDiscountDiscountOneOf, at as SubscriptionFrequency, g6 as SubscriptionFrequencyWithLiterals, et as SubscriptionPrice, eu as SubscriptionPricePerUnit, es as SubscriptionPricesInfo, dn as TableCellData, dl as TableData, dN as Tag, T as Target, fn as TargetWithLiterals, x as TextAlignment, fo as TextAlignmentWithLiterals, cZ as TextData, dD as TextNodeStyle, ci as TextStyle, dJ as Thumbnail, cx as Thumbnails, H as ThumbnailsAlignment, fw as ThumbnailsAlignmentWithLiterals, a7 as Type, fM as TypeWithLiterals, cp as V1Media, aC as V3FixedMonetaryAmount, aR as V3InventoryStatus, ay as V3OptionChoice, az as V3OptionChoiceIds, aA as V3OptionChoiceNames, aU as V3PhysicalProperties, aB as V3PriceInfo, aK as V3PricePerUnit, aL as V3PricePerUnitSettings, aE as V3ProductMedia, aG as V3ProductMediaMediaOneOf, aF as V3ProductMediaSetByOneOf, d as V3ProductType, eZ as V3ProductTypeWithLiterals, aD as V3RevenueDetails, aN as V3SecuredMedia, aP as V3SubscriptionPrice, aQ as V3SubscriptionPricePerUnit, aO as V3SubscriptionPricesInfo, aI as V3Thumbnail, aM as V3VariantDigitalProperties, aJ as V3VariantPhysicalProperties, aV as V3WeightMeasurementUnitInfo, ba as ValueAggregation, bL as ValueAggregationIncludeMissingValuesOptions, o as ValueAggregationMissingValues, fd as ValueAggregationMissingValuesWithLiterals, bb as ValueAggregationOptionsOneOf, bk as ValueAggregationResult, n as ValueAggregationSortDirection, fc as ValueAggregationSortDirectionWithLiterals, m as ValueAggregationSortType, fb as ValueAggregationSortTypeWithLiterals, bs as ValueResult, bo as ValueResults, eh as Variant, eq as VariantDigitalProperties, eo as VariantPhysicalProperties, eC as VariantSummary, ei as VariantTypedPropertiesOneOf, eg as VariantsInfo, eT as VariantsQueryResult, ad as VerticalAlignment, ah as VerticalAlignmentAlignment, fW as VerticalAlignmentAlignmentWithLiterals, fS as VerticalAlignmentWithLiterals, cr as Video, dg as VideoData, dI as VideoResolution, E as ViewMode, fs as ViewModeWithLiterals, Y as ViewRole, fB as ViewRoleWithLiterals, Z as VoteRole, fC as VoteRoleWithLiterals, av as WebhookIdentityType, g8 as WebhookIdentityTypeWithLiterals, ed as WeightMeasurementUnitInfo, ea as WeightRange, W as WeightUnit, e_ as WeightUnitWithLiterals, y as Width, v as WidthType, fk as WidthTypeWithLiterals, fq as WidthWithLiterals } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BjZVj4Mi.js';
2
+ import { R as ReadOnlyVariantSearch, S as SearchVariantsOptions, a as SearchVariantsResponse, b as ReadOnlyVariantQuery, Q as QueryVariantsOptions, t as typedQueryVariants, V as VariantsQueryBuilder } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-MJmcYUBb.js';
3
+ export { eS as AccountInfo, eN as ActionEvent, b6 as Aggregation, bj as AggregationData, bQ as AggregationDateHistogramAggregation, b7 as AggregationKindOneOf, bT as AggregationNestedAggregation, bO as AggregationRangeAggregation, bC as AggregationResults, bD as AggregationResultsResultOneOf, bq as AggregationResultsScalarResult, bP as AggregationScalarAggregation, A as AggregationType, f8 as AggregationTypeWithLiterals, bM as AggregationValueAggregation, bN as AggregationValueAggregationOptionsOneOf, a8 as Alignment, fN as AlignmentWithLiterals, d0 as AnchorData, d7 as AppEmbedData, d8 as AppEmbedDataAppDataOneOf, aa as AppType, fP as AppTypeWithLiterals, a4 as AspectRatio, fJ as AspectRatioWithLiterals, dt as AudioData, ao as AvailabilityStatus, g1 as AvailabilityStatusWithLiterals, cS as Background, cT as BackgroundBackgroundOneOf, dz as BackgroundImage, a0 as BackgroundType, fF as BackgroundTypeWithLiterals, dw as BlockquoteData, d9 as BookingData, c6 as Border, dq as BorderColors, dr as BorderWidths, d$ as Brand, ef as BreadCrumb, ee as BreadcrumbsInfo, dv as BulletedListData, c5 as ButtonData, B as ButtonDataType, fm as ButtonDataTypeWithLiterals, db as ButtonStyles, dx as CaptionData, de as CardStyles, dp as CellStyle, am as ChoiceType, f$ as ChoiceTypeWithLiterals, dR as ChoicesSettings, ch as CodeBlockData, dk as CollapsibleListData, d1 as ColorData, c7 as Colors, bI as CommonAggregation, bJ as CommonAggregationKindOneOf, r as CommonAggregationType, fh as CommonAggregationTypeWithLiterals, g9 as CommonQueryWithEntityContext, p as CommonScalarType, fe as CommonScalarTypeWithLiterals, bW as CommonSearchDetails, ga as CommonSearchWithEntityContext, C as CommonSortOrder, fa as CommonSortOrderWithLiterals, bH as CommonSorting, aH as CommonVideoResolution, dV as ConnectedModifier, dZ as ConnectedModifierChoice, d_ as ConnectedModifierChoiceValueOneOf, dW as ConnectedModifierModifierSettingsOneOf, dP as ConnectedOption, dS as ConnectedOptionChoice, dT as ConnectedOptionChoiceValueOneOf, dQ as ConnectedOptionOptionSettingsOneOf, G as Crop, fv as CropWithLiterals, a$ as CursorPaging, b1 as CursorPagingMetadata, aY as CursorQuery, aZ as CursorQueryPagingMethodOneOf, b4 as CursorSearch, b5 as CursorSearchPagingMethodOneOf, b2 as Cursors, be as DateHistogramAggregation, D as DateHistogramAggregationInterval, fg as DateHistogramAggregationIntervalWithLiterals, by as DateHistogramResult, bA as DateHistogramResults, c_ as Decoration, c$ as DecorationDataOneOf, a1 as DecorationType, fG as DecorationTypeWithLiterals, bE as DeprecatedSearchVariantsWithOffsetRequest, bY as DeprecatedSearchVariantsWithOffsetResponse, cY as Design, aj as DesignTarget, fY as DesignTargetWithLiterals, dm as Dimensions, ac as Direction, fR as DirectionWithLiterals, au as DiscountType, g7 as DiscountTypeWithLiterals, cj as DividerData, z as DividerDataAlignment, fr as DividerDataAlignmentWithLiterals, dC as DocumentStyle, eH as DomainEvent, eI as DomainEventBodyOneOf, di as EmbedData, eO as Empty, eJ as EntityCreatedEvent, eM as EntityDeletedEvent, eL as EntityUpdatedEvent, da as EventData, ew as ExtendedFields, ck as FileData, cl as FileSource, cm as FileSourceDataOneOf, as as FileType, g5 as FileTypeWithLiterals, e6 as FixedMonetaryAmount, d6 as FontFamilyData, d4 as FontSizeData, a2 as FontType, fH as FontTypeWithLiterals, dX as FreeTextSettings, cz as GIF, cy as GIFData, J as GIFType, fx as GIFTypeWithLiterals, co as GalleryData, cu as GalleryOptions, cv as GalleryOptionsLayout, cR as Gradient, bU as GroupByAggregation, bV as GroupByAggregationKindOneOf, bz as GroupByValueResults, cB as HTMLData, cC as HTMLDataDataOneOf, cA as HeadingData, cc as Height, eQ as IdentificationData, eR as IdentificationDataIdOneOf, cq as Image, cD as ImageData, cF as ImageDataStyles, ag as ImagePosition, fV as ImagePositionWithLiterals, dc as ImageStyles, b9 as IncludeMissingValuesOptions, e0 as InfoSection, ab as InitialExpandedItems, fQ as InitialExpandedItemsWithLiterals, aW as InternalMetadata, I as InternalRowState, e$ as InternalRowStateWithLiterals, k as Interval, f7 as IntervalWithLiterals, e7 as Inventory, ev as InventoryStatus, cs as Item, ct as ItemDataOneOf, cw as ItemStyle, dM as Keyword, a9 as Layout, dA as LayoutCellData, dy as LayoutData, F as LayoutType, ft as LayoutTypeWithLiterals, fO as LayoutWithLiterals, L as LineStyle, fp as LineStyleWithLiterals, ce as Link, d2 as LinkData, cf as LinkDataOneOf, cG as LinkPreviewData, cH as LinkPreviewDataStyles, ds as ListValue, cI as MapData, cJ as MapSettings, X as MapType, fA as MapTypeWithLiterals, M as MeasurementUnit, eX as MeasurementUnitWithLiterals, dE as Media, dK as MediaItemsInfo, ak as MediaType, fZ as MediaTypeWithLiterals, d3 as MentionData, eP as MessageEnvelope, dB as Metadata, b_ as MigrateProductVariantsRequest, eE as MigrateProductVariantsResponse, eD as MinVariantPriceInfo, i as MissingValues, f4 as MissingValuesWithLiterals, l as Mode, f9 as ModeWithLiterals, dY as ModifierChoicesSettings, an as ModifierRenderType, g0 as ModifierRenderTypeWithLiterals, dU as MultipleColors, bh as NestedAggregation, bf as NestedAggregationItem, bg as NestedAggregationItemKindOneOf, bR as NestedAggregationNestedAggregationItem, bS as NestedAggregationNestedAggregationItemKindOneOf, q as NestedAggregationNestedAggregationType, ff as NestedAggregationNestedAggregationTypeWithLiterals, bm as NestedAggregationResults, bn as NestedAggregationResultsResultOneOf, N as NestedAggregationType, f6 as NestedAggregationTypeWithLiterals, bv as NestedResultValue, bw as NestedResultValueResultOneOf, bB as NestedResults, br as NestedValueAggregationResult, c2 as Node, c3 as NodeDataOneOf, c4 as NodeStyle, u as NodeType, fj as NodeTypeWithLiterals, ae as NullValue, fT as NullValueWithLiterals, dj as Oembed, cN as Option, ej as OptionChoice, ek as OptionChoiceIds, el as OptionChoiceNames, cV as OptionDesign, cQ as OptionLayout, du as OrderedListData, O as Orientation, fu as OrientationWithLiterals, cn as PDFSettings, bZ as PagingMetadata, cK as ParagraphData, cM as Permissions, e8 as PhysicalProperties, a6 as Placement, fL as PlacementWithLiterals, bF as PlatformOffsetSearch, bG as PlatformOffsetSearchPagingMethodOneOf, bX as PlatformPaging, dh as PlaybackOptions, c8 as PluginContainerData, w as PluginContainerDataAlignment, fl as PluginContainerDataAlignmentWithLiterals, c9 as PluginContainerDataWidth, ca as PluginContainerDataWidthDataOneOf, cW as Poll, cL as PollData, cX as PollDataLayout, cU as PollDesign, cP as PollLayout, $ as PollLayoutDirection, fE as PollLayoutDirectionWithLiterals, _ as PollLayoutType, fD as PollLayoutTypeWithLiterals, cO as PollSettings, a3 as Position, fI as PositionWithLiterals, ap as PreorderStatus, g2 as PreorderStatusWithLiterals, em as PriceInfo, ep as PricePerUnit, eb as PricePerUnitRange, ec as PricePerUnitRangePricePerUnit, e9 as PricePerUnitSettings, e5 as PriceRange, df as PricingData, b$ as Product, e2 as ProductCategoriesInfo, e3 as ProductCategory, e4 as ProductCategoryIdsInfo, aS as ProductFields, aT as ProductFieldsTypedPropertiesOneOf, dF as ProductMedia, dH as ProductMediaMediaOneOf, P as ProductMediaMediaType, eW as ProductMediaMediaTypeWithLiterals, dG as ProductMediaSetByOneOf, al as ProductOptionRenderType, f_ as ProductOptionRenderTypeWithLiterals, aq as ProductPreorderAvailability, g3 as ProductPreorderAvailabilityWithLiterals, ar as ProductType, g4 as ProductTypeWithLiterals, c0 as ProductTypedPropertiesOneOf, aX as QueryVariantsRequest, b0 as QueryVariantsResponse, bc as RangeAggregation, bK as RangeAggregationRangeBucket, bl as RangeAggregationResult, b8 as RangeBucket, bt as RangeResult, bp as RangeResults, aw as ReadOnlyVariant, eU as ReadOnlyVariantQuerySpec, eV as ReadOnlyVariantSearchSpec, ax as ReadOnlyVariantTypedPropertiesOneOf, eF as RecoverProductVariantsRequest, eG as RecoverProductVariantsResponse, cg as Rel, f as RequestedFields, f1 as RequestedFieldsWithLiterals, a5 as Resizing, fK as ResizingWithLiterals, ai as ResponsivenessBehaviour, fX as ResponsivenessBehaviourWithLiterals, eK as RestoreInfo, bx as Results, en as RevenueDetails, e1 as Ribbon, dd as RibbonStyles, c1 as RichContent, bd as ScalarAggregation, bu as ScalarResult, j as ScalarType, f5 as ScalarTypeWithLiterals, af as Scaling, fU as ScalingWithLiterals, bi as SearchDetails, s as SearchDetailsMode, fi as SearchDetailsModeWithLiterals, b3 as SearchVariantsRequest, er as SecuredMedia, c as SecuredMediaFileType, eY as SecuredMediaFileTypeWithLiterals, dL as SeoSchema, dO as Settings, h as SortDirection, f3 as SortDirectionWithLiterals, e as SortOrder, f0 as SortOrderWithLiterals, g as SortType, f2 as SortTypeWithLiterals, a_ as Sorting, K as Source, fy as SourceWithLiterals, cb as Spoiler, d5 as SpoilerData, cd as Styles, cE as StylesBorder, U as StylesPosition, fz as StylesPositionWithLiterals, ey as Subscription, ez as SubscriptionCyclesOneOf, ex as SubscriptionDetails, eA as SubscriptionDiscount, eB as SubscriptionDiscountDiscountOneOf, at as SubscriptionFrequency, g6 as SubscriptionFrequencyWithLiterals, et as SubscriptionPrice, eu as SubscriptionPricePerUnit, es as SubscriptionPricesInfo, dn as TableCellData, dl as TableData, dN as Tag, T as Target, fn as TargetWithLiterals, x as TextAlignment, fo as TextAlignmentWithLiterals, cZ as TextData, dD as TextNodeStyle, ci as TextStyle, dJ as Thumbnail, cx as Thumbnails, H as ThumbnailsAlignment, fw as ThumbnailsAlignmentWithLiterals, a7 as Type, fM as TypeWithLiterals, cp as V1Media, aC as V3FixedMonetaryAmount, aR as V3InventoryStatus, ay as V3OptionChoice, az as V3OptionChoiceIds, aA as V3OptionChoiceNames, aU as V3PhysicalProperties, aB as V3PriceInfo, aK as V3PricePerUnit, aL as V3PricePerUnitSettings, aE as V3ProductMedia, aG as V3ProductMediaMediaOneOf, aF as V3ProductMediaSetByOneOf, d as V3ProductType, eZ as V3ProductTypeWithLiterals, aD as V3RevenueDetails, aN as V3SecuredMedia, aP as V3SubscriptionPrice, aQ as V3SubscriptionPricePerUnit, aO as V3SubscriptionPricesInfo, aI as V3Thumbnail, aM as V3VariantDigitalProperties, aJ as V3VariantPhysicalProperties, aV as V3WeightMeasurementUnitInfo, ba as ValueAggregation, bL as ValueAggregationIncludeMissingValuesOptions, o as ValueAggregationMissingValues, fd as ValueAggregationMissingValuesWithLiterals, bb as ValueAggregationOptionsOneOf, bk as ValueAggregationResult, n as ValueAggregationSortDirection, fc as ValueAggregationSortDirectionWithLiterals, m as ValueAggregationSortType, fb as ValueAggregationSortTypeWithLiterals, bs as ValueResult, bo as ValueResults, eh as Variant, eq as VariantDigitalProperties, eo as VariantPhysicalProperties, eC as VariantSummary, ei as VariantTypedPropertiesOneOf, eg as VariantsInfo, eT as VariantsQueryResult, ad as VerticalAlignment, ah as VerticalAlignmentAlignment, fW as VerticalAlignmentAlignmentWithLiterals, fS as VerticalAlignmentWithLiterals, cr as Video, dg as VideoData, dI as VideoResolution, E as ViewMode, fs as ViewModeWithLiterals, Y as ViewRole, fB as ViewRoleWithLiterals, Z as VoteRole, fC as VoteRoleWithLiterals, av as WebhookIdentityType, g8 as WebhookIdentityTypeWithLiterals, ed as WeightMeasurementUnitInfo, ea as WeightRange, W as WeightUnit, e_ as WeightUnitWithLiterals, y as Width, v as WidthType, fk as WidthTypeWithLiterals, fq as WidthWithLiterals } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-MJmcYUBb.js';
4
4
 
5
5
  declare function searchVariants$1(httpClient: HttpClient): SearchVariantsSignature;
6
6
  interface SearchVariantsSignature {