@wix/auto_sdk_categories_categories 1.0.136 → 1.0.138

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 (49) hide show
  1. package/build/cjs/{categories-v1-category-categories.universal-BP-vuulL.d.ts → categories-v1-category-categories.universal-CTgE3PnT.d.ts} +100 -17
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +61 -24
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +39 -6
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +99 -2
  9. package/build/cjs/meta.js +37 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/cjs/schemas.js +44 -44
  12. package/build/cjs/schemas.js.map +1 -1
  13. package/build/es/{categories-v1-category-categories.universal-BP-vuulL.d.mts → categories-v1-category-categories.universal-CTgE3PnT.d.mts} +100 -17
  14. package/build/es/index.d.mts +2 -2
  15. package/build/es/index.mjs +59 -24
  16. package/build/es/index.mjs.map +1 -1
  17. package/build/es/index.typings.d.mts +2 -2
  18. package/build/es/index.typings.mjs +37 -6
  19. package/build/es/index.typings.mjs.map +1 -1
  20. package/build/es/meta.d.mts +99 -2
  21. package/build/es/meta.mjs +35 -0
  22. package/build/es/meta.mjs.map +1 -1
  23. package/build/es/schemas.mjs +44 -44
  24. package/build/es/schemas.mjs.map +1 -1
  25. package/build/internal/cjs/{categories-v1-category-categories.universal-I-4Oj51m.d.ts → categories-v1-category-categories.universal-CewyKnE1.d.ts} +100 -17
  26. package/build/internal/cjs/index.d.ts +2 -2
  27. package/build/internal/cjs/index.js +61 -24
  28. package/build/internal/cjs/index.js.map +1 -1
  29. package/build/internal/cjs/index.typings.d.ts +2 -2
  30. package/build/internal/cjs/index.typings.js +39 -6
  31. package/build/internal/cjs/index.typings.js.map +1 -1
  32. package/build/internal/cjs/meta.d.ts +99 -2
  33. package/build/internal/cjs/meta.js +37 -0
  34. package/build/internal/cjs/meta.js.map +1 -1
  35. package/build/internal/cjs/schemas.js +44 -44
  36. package/build/internal/cjs/schemas.js.map +1 -1
  37. package/build/internal/es/{categories-v1-category-categories.universal-I-4Oj51m.d.mts → categories-v1-category-categories.universal-CewyKnE1.d.mts} +100 -17
  38. package/build/internal/es/index.d.mts +2 -2
  39. package/build/internal/es/index.mjs +59 -24
  40. package/build/internal/es/index.mjs.map +1 -1
  41. package/build/internal/es/index.typings.d.mts +2 -2
  42. package/build/internal/es/index.typings.mjs +37 -6
  43. package/build/internal/es/index.typings.mjs.map +1 -1
  44. package/build/internal/es/meta.d.mts +99 -2
  45. package/build/internal/es/meta.mjs +35 -0
  46. package/build/internal/es/meta.mjs.map +1 -1
  47. package/build/internal/es/schemas.mjs +44 -44
  48. package/build/internal/es/schemas.mjs.map +1 -1
  49. package/package.json +2 -2
@@ -2427,6 +2427,10 @@ interface LayoutData {
2427
2427
  backdrop?: Backdrop;
2428
2428
  /** Node animation. */
2429
2429
  animation?: Animation;
2430
+ /** Shape divider at the top edge of the layout. */
2431
+ topDivider?: SectionDivider;
2432
+ /** Shape divider at the bottom edge of the layout. */
2433
+ bottomDivider?: SectionDivider;
2430
2434
  }
2431
2435
  declare enum ImageScalingScaling {
2432
2436
  /** Auto image scaling */
@@ -2497,6 +2501,81 @@ declare enum BannerPosition {
2497
2501
  }
2498
2502
  /** @enumType */
2499
2503
  type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2504
+ /** How the stacked layers fade relative to the base shape. Named for a bottom divider; top dividers render mirrored, so the visual fade flips. */
2505
+ declare enum LayerEffect {
2506
+ /** Shape keeps its height, a solid filler bar pushes it away from the edge */
2507
+ CENTER = "CENTER",
2508
+ /** Deeper (more transparent) layers shrink toward the edge inside the original band while a solid filler bar keeps its full height, so the faded copies hug the top of the band */
2509
+ FADE_TO_TOP = "FADE_TO_TOP",
2510
+ /** Deeper (more transparent) layers stretch taller into the section, so the faded copies fan out above the base shape and descend to the layout edge */
2511
+ FADE_TO_BOTTOM = "FADE_TO_BOTTOM"
2512
+ }
2513
+ /** @enumType */
2514
+ type LayerEffectWithLiterals = LayerEffect | 'CENTER' | 'FADE_TO_TOP' | 'FADE_TO_BOTTOM';
2515
+ /** Divider shape preset */
2516
+ declare enum Shape {
2517
+ /** Ellipse shape */
2518
+ ELLIPSE = "ELLIPSE",
2519
+ /** Tilt shape */
2520
+ TILT = "TILT",
2521
+ /** Liquid shape */
2522
+ LIQUID = "LIQUID",
2523
+ /** Left wave shape */
2524
+ LEFT_WAVE = "LEFT_WAVE",
2525
+ /** Paint scribble shape */
2526
+ PAINT_SCRIBBLE = "PAINT_SCRIBBLE",
2527
+ /** Inverted ellipse shape */
2528
+ INVERTED_ELLIPSE = "INVERTED_ELLIPSE",
2529
+ /** Right wave shape */
2530
+ RIGHT_WAVE = "RIGHT_WAVE",
2531
+ /** Dunes shape */
2532
+ DUNES = "DUNES",
2533
+ /** Waves shape */
2534
+ WAVES = "WAVES",
2535
+ /** Triangle shape */
2536
+ TRIANGLE = "TRIANGLE",
2537
+ /** Semi-ellipse shape */
2538
+ SEMI_ELLIPSE = "SEMI_ELLIPSE",
2539
+ /** Plants shape */
2540
+ PLANTS = "PLANTS",
2541
+ /** Layered ellipse shape */
2542
+ LAYERED_ELLIPSE = "LAYERED_ELLIPSE",
2543
+ /** Pixels shape */
2544
+ PIXELS = "PIXELS",
2545
+ /** Paint shape */
2546
+ PAINT = "PAINT",
2547
+ /** Clouds shape */
2548
+ CLOUDS = "CLOUDS",
2549
+ /** Optical illusion shape */
2550
+ OPTICAL_ILLUSION = "OPTICAL_ILLUSION",
2551
+ /** Stripes shape */
2552
+ STRIPES = "STRIPES",
2553
+ /** Blobs shape */
2554
+ BLOBS = "BLOBS",
2555
+ /** Semi-circles shape */
2556
+ SEMI_CIRCLES = "SEMI_CIRCLES",
2557
+ /** Hill shape */
2558
+ HILL = "HILL",
2559
+ /** Brush shape */
2560
+ BRUSH = "BRUSH",
2561
+ /** Peaks shape */
2562
+ PEAKS = "PEAKS",
2563
+ /** Angled triangle shape */
2564
+ ANGLED_TRIANGLE = "ANGLED_TRIANGLE"
2565
+ }
2566
+ /** @enumType */
2567
+ type ShapeWithLiterals = Shape | 'ELLIPSE' | 'TILT' | 'LIQUID' | 'LEFT_WAVE' | 'PAINT_SCRIBBLE' | 'INVERTED_ELLIPSE' | 'RIGHT_WAVE' | 'DUNES' | 'WAVES' | 'TRIANGLE' | 'SEMI_ELLIPSE' | 'PLANTS' | 'LAYERED_ELLIPSE' | 'PIXELS' | 'PAINT' | 'CLOUDS' | 'OPTICAL_ILLUSION' | 'STRIPES' | 'BLOBS' | 'SEMI_CIRCLES' | 'HILL' | 'BRUSH' | 'PEAKS' | 'ANGLED_TRIANGLE';
2568
+ /** Layers effect - stacked semi-transparent copies of the divider shape */
2569
+ interface Layers {
2570
+ /** Total number of layers including the base shape (1-4). Absent or 1 disables the effect. */
2571
+ count?: number | null;
2572
+ /** Vertical distance in pixels between the silhouettes of consecutive layers: each successive layer's silhouette is offset from the previous one by this amount. The divider's own `height` is unchanged. Defaults to 20. */
2573
+ offsetY?: number | null;
2574
+ /** How the stacked layers fade relative to the base shape. */
2575
+ layerEffect?: LayerEffectWithLiterals;
2576
+ /** Horizontal distance between consecutive layers in pixels. Defaults to 0. Only applies to shapes that support horizontal offset. */
2577
+ offsetX?: number | null;
2578
+ }
2500
2579
  /** Backdrop type */
2501
2580
  declare enum BackdropType {
2502
2581
  /** Solid color backdrop */
@@ -2567,6 +2646,24 @@ interface Backdrop {
2567
2646
  /** Gradient configuration. */
2568
2647
  gradient?: Gradient;
2569
2648
  }
2649
+ /** Decorative shape divider at a layout edge */
2650
+ interface SectionDivider {
2651
+ /** Divider shape preset. Determines which customization properties apply. */
2652
+ type?: ShapeWithLiterals;
2653
+ /**
2654
+ * Divider fill color as a hexadecimal value (may include alpha).
2655
+ * @maxLength 19
2656
+ */
2657
+ color?: string | null;
2658
+ /** Divider height in pixels. */
2659
+ height?: number | null;
2660
+ /** Horizontal offset in pixels. */
2661
+ offsetX?: number | null;
2662
+ /** Whether the shape is flipped horizontally. */
2663
+ flipped?: boolean | null;
2664
+ /** Layers effect - stacked semi-transparent copies of the divider shape. */
2665
+ layers?: Layers;
2666
+ }
2570
2667
  interface LayoutCellData {
2571
2668
  /** Size of the cell in 12 columns grid. */
2572
2669
  colSpan?: number | null;
@@ -5556,10 +5653,6 @@ interface CategoriesQueryBuilder {
5556
5653
  * @param string - String to compare against. Case-insensitive.
5557
5654
  */
5558
5655
  startsWith: (propertyName: '_id' | 'name' | 'parentCategory.id' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: string) => CategoriesQueryBuilder;
5559
- /** @param propertyName - Property whose value is compared with `values`.
5560
- * @param values - List of values to compare against.
5561
- */
5562
- hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: any[]) => CategoriesQueryBuilder;
5563
5656
  in: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: any) => CategoriesQueryBuilder;
5564
5657
  exists: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: boolean) => CategoriesQueryBuilder;
5565
5658
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
@@ -5654,18 +5747,8 @@ type CategoryQuery = {
5654
5747
  }[];
5655
5748
  };
5656
5749
  declare const utils: {
5657
- query: {
5658
- QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
5659
- Filter: _wix_sdk_types.FilterFactory<Category, CategoryQuerySpec>;
5660
- Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
5661
- };
5662
- search: {
5663
- SearchBuilder: () => _wix_sdk_types.SearchBuilder<Category, CategorySearchSpec, CategorySearch>;
5664
- Filter: _wix_sdk_types.FilterFactory<Category, CategorySearchSpec>;
5665
- Sort: _wix_sdk_types.SortFactory<CategorySearchSpec>;
5666
- SearchParams: _wix_sdk_types.SearchParamsFactory<CategorySearchSpec>;
5667
- Aggregation: _wix_sdk_types.AggregationFactory<CategorySearchSpec>;
5668
- };
5750
+ query: _wix_sdk_types.QueryHelpers<Category, CategoryQuerySpec, CategoryQuery>;
5751
+ search: _wix_sdk_types.SearchHelpers<Category, CategorySearchSpec, CategorySearch>;
5669
5752
  };
5670
5753
  interface SearchCategoriesOptions {
5671
5754
  /**
@@ -6264,4 +6347,4 @@ interface BulkSetItemCategoriesOptions {
6264
6347
  treeReference: TreeReference;
6265
6348
  }
6266
6349
 
6267
- export { type SetArrangedItemsApplicationErrors as $, type BulkAddItemToCategoriesOptions as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkAddItemToCategoriesResponse as E, type BulkAddItemToCategoriesApplicationErrors as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryOptions as H, type ItemReference as I, type BulkRemoveItemsFromCategoryResponse as J, type BulkRemoveItemsFromCategoryApplicationErrors as K, type BulkRemoveItemFromCategoriesOptions as L, type MoveCategoryOptions as M, type BulkRemoveItemFromCategoriesResponse as N, type BulkRemoveItemFromCategoriesApplicationErrors as O, type ListItemsInCategoryOptions as P, type ListItemsInCategoryResponse as Q, type ListCategoriesForItemOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemResponse as V, type ListCategoriesForItemsOptions as W, type ListCategoriesForItemsResponse as X, type ListTreesResponse as Y, type SetArrangedItemsOptions as Z, type SetArrangedItemsResponse as _, type CreateCategoryOptions as a, VerticalAlignmentAlignment as a$, type GetArrangedItemsResponse as a0, type CategoryMovedEnvelope as a1, type CategoryCreatedEnvelope as a2, type CategoryDeletedEnvelope as a3, type CategoryItemAddedToCategoryEnvelope as a4, type CategoryItemRemovedFromCategoryEnvelope as a5, type CategoryItemsArrangedInCategoryEnvelope as a6, type CategoryUpdatedEnvelope as a7, type CategoryQuery as a8, type QueryCategoriesOptions as a9, MapType as aA, ViewRole as aB, VoteRole as aC, PollLayoutType as aD, PollLayoutDirection as aE, PollDesignBackgroundType as aF, DecorationType as aG, FontType as aH, Variant as aI, ImageStylesPosition as aJ, AspectRatio as aK, Resizing as aL, Placement as aM, CardStylesType as aN, Alignment as aO, Layout as aP, AppType as aQ, InitialExpandedItems as aR, Direction as aS, VerticalAlignment as aT, NullValue as aU, ImageScalingScaling as aV, ImagePosition as aW, LayoutDataBackgroundType as aX, Origin as aY, BannerPosition as aZ, BackdropType as a_, typedQueryCategories as aa, type CategoriesQueryBuilder as ab, NodeType as ac, BackgroundType as ad, GradientType as ae, WidthType as af, PluginContainerDataAlignment as ag, ButtonDataType as ah, Target as ai, Type as aj, EntranceEffectType as ak, LoopEffectType as al, PointerEffectType as am, TextAlignment as an, LineCap as ao, LineStyle as ap, Width as aq, DividerDataAlignment as ar, ViewMode as as, LayoutType as at, Orientation as au, Crop as av, ThumbnailsAlignment as aw, GIFType as ax, Source as ay, StylesPosition as az, type CreateCategoryApplicationErrors as b, type GalleryData as b$, ResponsivenessBehaviour as b0, DesignTarget as b1, Scaling as b2, ImagePositionPosition as b3, CardDataBackgroundType as b4, ListStyle as b5, Indentation as b6, SmartBlockDataType as b7, ColumnSize as b8, SingleEntityOpsRequestedFields as b9, type Stop as bA, type Border as bB, type Colors as bC, type Background as bD, type PluginContainerData as bE, type PluginContainerDataWidth as bF, type PluginContainerDataWidthDataOneOf as bG, type Spoiler as bH, type Height as bI, type Styles as bJ, type Link as bK, type LinkDataOneOf as bL, type Rel as bM, type Animation as bN, type EntranceAnimation as bO, type EntranceEffect as bP, type LoopAnimation as bQ, type LoopEffect as bR, type PointerEffect as bS, type CodeBlockData as bT, type TextStyle as bU, type DividerData as bV, type DividerDataStyles as bW, type FileData as bX, type FileSource as bY, type FileSourceDataOneOf as bZ, type PDFSettings as b_, SortOrder as ba, RequestedFields as bb, SortType as bc, SortDirection as bd, MissingValues as be, ScalarType as bf, NestedAggregationType as bg, Interval as bh, AggregationType as bi, Mode as bj, Position as bk, MoveItemInCategoryRequestPosition as bl, WebhookIdentityType as bm, type BreadcrumbsInfo as bn, type Breadcrumb as bo, type ParentCategory as bp, type SeoSchema as bq, type Keyword as br, type Tag as bs, type Settings as bt, type RichContent as bu, type Node as bv, type NodeDataOneOf as bw, type NodeStyle as bx, type ButtonData as by, type Gradient as bz, type CreateCategoryValidationErrors as c, type Dimensions as c$, type Media as c0, type Image as c1, type Video as c2, type Item as c3, type ItemDataOneOf as c4, type GalleryOptions as c5, type GalleryOptionsLayout as c6, type ItemStyle as c7, type Thumbnails as c8, type GIFData as c9, type Design as cA, type TextData as cB, type Decoration as cC, type DecorationDataOneOf as cD, type AnchorData as cE, type ColorData as cF, type LinkData as cG, type MentionData as cH, type FontSizeData as cI, type SpoilerData as cJ, type FontFamilyData as cK, type SketchData as cL, type AppEmbedData as cM, type AppEmbedDataAppDataOneOf as cN, type BookingData as cO, type EventData as cP, type ButtonStyles as cQ, type ImageStyles as cR, type RibbonStyles as cS, type CardStyles as cT, type PricingData as cU, type VideoData as cV, type PlaybackOptions as cW, type EmbedData as cX, type Oembed as cY, type CollapsibleListData as cZ, type TableData as c_, type GIF as ca, type HeadingData as cb, type HTMLData as cc, type HTMLDataDataOneOf as cd, type ImageData as ce, type StylesBorder as cf, type ImageDataStyles as cg, type ImageDataCrop as ch, type LinkPreviewData as ci, type LinkPreviewDataStyles as cj, type MapData as ck, type MapSettings as cl, type ParagraphData as cm, type PollData as cn, type Permissions as co, type Option as cp, type PollSettings as cq, type PollLayout as cr, type OptionLayout as cs, type BackgroundGradient as ct, type PollDesignBackground as cu, type PollDesignBackgroundBackgroundOneOf as cv, type PollDesign as cw, type OptionDesign as cx, type Poll as cy, type PollDataLayout as cz, type GetCategoryBySlugOptions as d, type Cursors as d$, type TableCellData as d0, type CellStyle as d1, type BorderColors as d2, type BorderWidths as d3, type ListValue as d4, type AudioData as d5, type OrderedListData as d6, type BulletedListData as d7, type BlockquoteData as d8, type CaptionData as d9, type File as dA, type CustomTag as dB, type Pages as dC, type URIs as dD, type CategoryMoved as dE, type ItemAddedToCategory as dF, type ItemsAddedToCategory as dG, type ItemRemovedFromCategory as dH, type ItemsRemovedFromCategory as dI, type ItemsArrangedInCategory as dJ, type CreateCategoryRequest as dK, type CreateCategoryResponse as dL, type DuplicateHandleErrorData as dM, type GetCategoryRequest as dN, type GetCategoryResponse as dO, type GetCategoryBySlugRequest as dP, type UpdateCategoryRequest as dQ, type UpdateCategoryResponse as dR, type DeleteCategoryRequest as dS, type DeleteCategoryResponse as dT, type QueryCategoriesRequest as dU, type CursorQuery as dV, type CursorQueryPagingMethodOneOf as dW, type Sorting as dX, type CursorPaging as dY, type QueryCategoriesResponse as dZ, type CursorPagingMetadata as d_, type LayoutData as da, type LayoutDataBackground as db, type LayoutDataBackgroundImage as dc, type Banner as dd, type Backdrop as de, type LayoutCellData as df, type ShapeData as dg, type ShapeDataStyles as dh, type CardData as di, type CardDataBackground as dj, type BackgroundImage as dk, type TocData as dl, type SmartBlockData as dm, type SmartBlockCellData as dn, type CheckboxListData as dp, type ListItemNodeData as dq, type Metadata as dr, type DocumentStyle as ds, type TextNodeStyle as dt, type ExtendedFields as du, type InvalidateCache as dv, type InvalidateCacheGetByOneOf as dw, type App as dx, type Page as dy, type URI as dz, type GetCategoryBySlugResponse as e, type ListItemsInCategoryRequestPagingMethodOneOf as e$, type ListCompactCategoriesByIdsRequest as e0, type ListCompactCategoriesByIdsResponse as e1, type CompactCategory as e2, type SearchCategoriesRequest as e3, type CursorSearch as e4, type CursorSearchPagingMethodOneOf as e5, type Aggregation as e6, type AggregationKindOneOf as e7, type RangeBucket as e8, type IncludeMissingValuesOptions as e9, type DateHistogramResults as eA, type NestedResults as eB, type AggregationResults as eC, type AggregationResultsResultOneOf as eD, type DeprecatedSearchCategoriesWithOffsetRequest as eE, type OffsetSearch as eF, type OffsetSearchPagingMethodOneOf as eG, type Paging as eH, type DeprecatedSearchCategoriesWithOffsetResponse as eI, type PagingMetadata as eJ, type CountCategoriesRequest as eK, type MoveCategoryRequest as eL, type BulkUpdateCategoriesRequest as eM, type BulkCategoriesResult as eN, type ItemMetadata as eO, type ApplicationError as eP, type BulkActionMetadata as eQ, type UpdateCategoryVisibilityRequest as eR, type BulkShowCategoriesRequest as eS, type BulkAddItemsToCategoryRequest as eT, type BulkItemsToCategoryResult as eU, type ItemReferenceMetadata as eV, type BulkAddItemToCategoriesRequest as eW, type BulkItemToCategoriesResult as eX, type BulkRemoveItemsFromCategoryRequest as eY, type BulkRemoveItemFromCategoriesRequest as eZ, type ListItemsInCategoryRequest as e_, type ValueAggregation as ea, type ValueAggregationOptionsOneOf as eb, type RangeAggregation as ec, type ScalarAggregation as ed, type DateHistogramAggregation as ee, type NestedAggregationItem as ef, type NestedAggregationItemKindOneOf as eg, type NestedAggregation as eh, type SearchDetails as ei, type AggregationData as ej, type ValueAggregationResult as ek, type RangeAggregationResult as el, type NestedAggregationResults as em, type NestedAggregationResultsResultOneOf as en, type ValueResults as eo, type RangeResults as ep, type AggregationResultsScalarResult as eq, type NestedValueAggregationResult as er, type ValueResult as es, type RangeResult as et, type ScalarResult as eu, type NestedResultValue as ev, type NestedResultValueResultOneOf as ew, type Results as ex, type DateHistogramResult as ey, type GroupByValueResults as ez, type UpdateCategoryOptions as f, type GIFTypeWithLiterals as f$, type PagingMetadataV2 as f0, type ListCategoriesForItemRequest as f1, type ListCategoriesForItemsRequest as f2, type MapItemToCategories as f3, type ListTreesRequest as f4, type MoveItemInCategoryRequest as f5, type MoveItemInCategoryResponse as f6, type SetArrangedItemsRequest as f7, type GetArrangedItemsRequest as f8, type BulkSetItemCategoriesRequest as f9, type CategoriesQueryResult as fA, type CategoryQuerySpec as fB, type CategorySearchSpec as fC, type ListItemsInCategoryOptionsPagingMethodOneOf as fD, type BulkSetItemCategoriesOptions as fE, utils as fF, type NodeTypeWithLiterals as fG, type BackgroundTypeWithLiterals as fH, type GradientTypeWithLiterals as fI, type WidthTypeWithLiterals as fJ, type PluginContainerDataAlignmentWithLiterals as fK, type ButtonDataTypeWithLiterals as fL, type TargetWithLiterals as fM, type TypeWithLiterals as fN, type EntranceEffectTypeWithLiterals as fO, type LoopEffectTypeWithLiterals as fP, type PointerEffectTypeWithLiterals as fQ, type TextAlignmentWithLiterals as fR, type LineCapWithLiterals as fS, type LineStyleWithLiterals as fT, type WidthWithLiterals as fU, type DividerDataAlignmentWithLiterals as fV, type ViewModeWithLiterals as fW, type LayoutTypeWithLiterals as fX, type OrientationWithLiterals as fY, type CropWithLiterals as fZ, type ThumbnailsAlignmentWithLiterals as f_, type BulkSetItemCategoriesResponse as fa, type GetCategoriesTreeRequest as fb, type GetCategoriesTreeResponse as fc, type CategoryTreeNode as fd, type DomainEvent as fe, type DomainEventBodyOneOf as ff, type EntityCreatedEvent as fg, type RestoreInfo as fh, type EntityUpdatedEvent as fi, type EntityDeletedEvent as fj, type ActionEvent as fk, type Empty as fl, type BulkCreateCategoriesForMigrationRequest as fm, type BulkCreateCategoriesForMigrationResponse as fn, type BulkAddItemsToCategoryForMigrationRequest as fo, type BulkAddItemsToCategoryForMigrationResponse as fp, type SetArrangedItemsForMigrationRequest as fq, type SetArrangedItemsForMigrationResponse as fr, type CatalogRollbackRequested as fs, type MessageEnvelope as ft, type IdentificationData as fu, type IdentificationDataIdOneOf as fv, type AccountInfo as fw, type BaseEventMetadata as fx, type EventMetadata as fy, type AccountInfoMetadata as fz, type UpdateCategoryApplicationErrors as g, createCategory as g$, type SourceWithLiterals as g0, type StylesPositionWithLiterals as g1, type MapTypeWithLiterals as g2, type ViewRoleWithLiterals as g3, type VoteRoleWithLiterals as g4, type PollLayoutTypeWithLiterals as g5, type PollLayoutDirectionWithLiterals as g6, type PollDesignBackgroundTypeWithLiterals as g7, type DecorationTypeWithLiterals as g8, type FontTypeWithLiterals as g9, type IndentationWithLiterals as gA, type SmartBlockDataTypeWithLiterals as gB, type ColumnSizeWithLiterals as gC, type SingleEntityOpsRequestedFieldsWithLiterals as gD, type SortOrderWithLiterals as gE, type RequestedFieldsWithLiterals as gF, type SortTypeWithLiterals as gG, type SortDirectionWithLiterals as gH, type MissingValuesWithLiterals as gI, type ScalarTypeWithLiterals as gJ, type NestedAggregationTypeWithLiterals as gK, type IntervalWithLiterals as gL, type AggregationTypeWithLiterals as gM, type ModeWithLiterals as gN, type PositionWithLiterals as gO, type MoveItemInCategoryRequestPositionWithLiterals as gP, type WebhookIdentityTypeWithLiterals as gQ, type BulkSetItemCategoriesApplicationErrors as gR, type CommonQueryWithEntityContext as gS, type CommonSearchWithEntityContext as gT, onCategoryMoved as gU, onCategoryCreated as gV, onCategoryDeleted as gW, onCategoryItemAddedToCategory as gX, onCategoryItemRemovedFromCategory as gY, onCategoryItemsArrangedInCategory as gZ, onCategoryUpdated as g_, type VariantWithLiterals as ga, type ImageStylesPositionWithLiterals as gb, type AspectRatioWithLiterals as gc, type ResizingWithLiterals as gd, type PlacementWithLiterals as ge, type CardStylesTypeWithLiterals as gf, type AlignmentWithLiterals as gg, type LayoutWithLiterals as gh, type AppTypeWithLiterals as gi, type InitialExpandedItemsWithLiterals as gj, type DirectionWithLiterals as gk, type VerticalAlignmentWithLiterals as gl, type NullValueWithLiterals as gm, type ImageScalingScalingWithLiterals as gn, type ImagePositionWithLiterals as go, type LayoutDataBackgroundTypeWithLiterals as gp, type OriginWithLiterals as gq, type BannerPositionWithLiterals as gr, type BackdropTypeWithLiterals as gs, type VerticalAlignmentAlignmentWithLiterals as gt, type ResponsivenessBehaviourWithLiterals as gu, type DesignTargetWithLiterals as gv, type ScalingWithLiterals as gw, type ImagePositionPositionWithLiterals as gx, type CardDataBackgroundTypeWithLiterals as gy, type ListStyleWithLiterals as gz, type UpdateCategoryValidationErrors as h, getCategory as h0, getCategoryBySlug as h1, updateCategory as h2, deleteCategory as h3, queryCategories as h4, countCategories as h5, moveCategory as h6, bulkUpdateCategories as h7, updateCategoryVisibility as h8, bulkShowCategories as h9, bulkAddItemsToCategory as ha, bulkAddItemToCategories as hb, bulkRemoveItemsFromCategory as hc, bulkRemoveItemFromCategories as hd, listItemsInCategory as he, listCategoriesForItem as hf, listCategoriesForItems as hg, listTrees as hh, setArrangedItems as hi, getArrangedItems as hj, type CategorySearch as i, type SearchCategoriesResponse as j, type CountCategoriesOptions as k, type CountCategoriesResponse as l, type MoveCategoryResponse as m, type MoveCategoryApplicationErrors as n, type MaskedCategory as o, type BulkUpdateCategoriesResponse as p, type BulkUpdateCategoriesApplicationErrors as q, type BulkUpdateCategoriesValidationErrors as r, type UpdateCategoryVisibilityOptions as s, type UpdateCategoryVisibilityResponse as t, type UpdateCategoryVisibilityApplicationErrors as u, type BulkShowCategoriesOptions as v, type BulkShowCategoriesResponse as w, type BulkAddItemsToCategoryOptions as x, type BulkAddItemsToCategoryResponse as y, type BulkAddItemsToCategoryApplicationErrors as z };
6350
+ export { type SetArrangedItemsApplicationErrors as $, type BulkAddItemToCategoriesOptions as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkAddItemToCategoriesResponse as E, type BulkAddItemToCategoriesApplicationErrors as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryOptions as H, type ItemReference as I, type BulkRemoveItemsFromCategoryResponse as J, type BulkRemoveItemsFromCategoryApplicationErrors as K, type BulkRemoveItemFromCategoriesOptions as L, type MoveCategoryOptions as M, type BulkRemoveItemFromCategoriesResponse as N, type BulkRemoveItemFromCategoriesApplicationErrors as O, type ListItemsInCategoryOptions as P, type ListItemsInCategoryResponse as Q, type ListCategoriesForItemOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemResponse as V, type ListCategoriesForItemsOptions as W, type ListCategoriesForItemsResponse as X, type ListTreesResponse as Y, type SetArrangedItemsOptions as Z, type SetArrangedItemsResponse as _, type CreateCategoryOptions as a, Shape as a$, type GetArrangedItemsResponse as a0, type CategoryMovedEnvelope as a1, type CategoryCreatedEnvelope as a2, type CategoryDeletedEnvelope as a3, type CategoryItemAddedToCategoryEnvelope as a4, type CategoryItemRemovedFromCategoryEnvelope as a5, type CategoryItemsArrangedInCategoryEnvelope as a6, type CategoryUpdatedEnvelope as a7, type CategoryQuery as a8, type QueryCategoriesOptions as a9, MapType as aA, ViewRole as aB, VoteRole as aC, PollLayoutType as aD, PollLayoutDirection as aE, PollDesignBackgroundType as aF, DecorationType as aG, FontType as aH, Variant as aI, ImageStylesPosition as aJ, AspectRatio as aK, Resizing as aL, Placement as aM, CardStylesType as aN, Alignment as aO, Layout as aP, AppType as aQ, InitialExpandedItems as aR, Direction as aS, VerticalAlignment as aT, NullValue as aU, ImageScalingScaling as aV, ImagePosition as aW, LayoutDataBackgroundType as aX, Origin as aY, BannerPosition as aZ, LayerEffect as a_, typedQueryCategories as aa, type CategoriesQueryBuilder as ab, NodeType as ac, BackgroundType as ad, GradientType as ae, WidthType as af, PluginContainerDataAlignment as ag, ButtonDataType as ah, Target as ai, Type as aj, EntranceEffectType as ak, LoopEffectType as al, PointerEffectType as am, TextAlignment as an, LineCap as ao, LineStyle as ap, Width as aq, DividerDataAlignment as ar, ViewMode as as, LayoutType as at, Orientation as au, Crop as av, ThumbnailsAlignment as aw, GIFType as ax, Source as ay, StylesPosition as az, type CreateCategoryApplicationErrors as b, type FileSourceDataOneOf as b$, BackdropType as b0, VerticalAlignmentAlignment as b1, ResponsivenessBehaviour as b2, DesignTarget as b3, Scaling as b4, ImagePositionPosition as b5, CardDataBackgroundType as b6, ListStyle as b7, Indentation as b8, SmartBlockDataType as b9, type ButtonData as bA, type Gradient as bB, type Stop as bC, type Border as bD, type Colors as bE, type Background as bF, type PluginContainerData as bG, type PluginContainerDataWidth as bH, type PluginContainerDataWidthDataOneOf as bI, type Spoiler as bJ, type Height as bK, type Styles as bL, type Link as bM, type LinkDataOneOf as bN, type Rel as bO, type Animation as bP, type EntranceAnimation as bQ, type EntranceEffect as bR, type LoopAnimation as bS, type LoopEffect as bT, type PointerEffect as bU, type CodeBlockData as bV, type TextStyle as bW, type DividerData as bX, type DividerDataStyles as bY, type FileData as bZ, type FileSource as b_, ColumnSize as ba, SingleEntityOpsRequestedFields as bb, SortOrder as bc, RequestedFields as bd, SortType as be, SortDirection as bf, MissingValues as bg, ScalarType as bh, NestedAggregationType as bi, Interval as bj, AggregationType as bk, Mode as bl, Position as bm, MoveItemInCategoryRequestPosition as bn, WebhookIdentityType as bo, type BreadcrumbsInfo as bp, type Breadcrumb as bq, type ParentCategory as br, type SeoSchema as bs, type Keyword as bt, type Tag as bu, type Settings as bv, type RichContent as bw, type Node as bx, type NodeDataOneOf as by, type NodeStyle as bz, type CreateCategoryValidationErrors as c, type CollapsibleListData as c$, type PDFSettings as c0, type GalleryData as c1, type Media as c2, type Image as c3, type Video as c4, type Item as c5, type ItemDataOneOf as c6, type GalleryOptions as c7, type GalleryOptionsLayout as c8, type ItemStyle as c9, type Poll as cA, type PollDataLayout as cB, type Design as cC, type TextData as cD, type Decoration as cE, type DecorationDataOneOf as cF, type AnchorData as cG, type ColorData as cH, type LinkData as cI, type MentionData as cJ, type FontSizeData as cK, type SpoilerData as cL, type FontFamilyData as cM, type SketchData as cN, type AppEmbedData as cO, type AppEmbedDataAppDataOneOf as cP, type BookingData as cQ, type EventData as cR, type ButtonStyles as cS, type ImageStyles as cT, type RibbonStyles as cU, type CardStyles as cV, type PricingData as cW, type VideoData as cX, type PlaybackOptions as cY, type EmbedData as cZ, type Oembed as c_, type Thumbnails as ca, type GIFData as cb, type GIF as cc, type HeadingData as cd, type HTMLData as ce, type HTMLDataDataOneOf as cf, type ImageData as cg, type StylesBorder as ch, type ImageDataStyles as ci, type ImageDataCrop as cj, type LinkPreviewData as ck, type LinkPreviewDataStyles as cl, type MapData as cm, type MapSettings as cn, type ParagraphData as co, type PollData as cp, type Permissions as cq, type Option as cr, type PollSettings as cs, type PollLayout as ct, type OptionLayout as cu, type BackgroundGradient as cv, type PollDesignBackground as cw, type PollDesignBackgroundBackgroundOneOf as cx, type PollDesign as cy, type OptionDesign as cz, type GetCategoryBySlugOptions as d, type Sorting as d$, type TableData as d0, type Dimensions as d1, type TableCellData as d2, type CellStyle as d3, type BorderColors as d4, type BorderWidths as d5, type ListValue as d6, type AudioData as d7, type OrderedListData as d8, type BulletedListData as d9, type InvalidateCacheGetByOneOf as dA, type App as dB, type Page as dC, type URI as dD, type File as dE, type CustomTag as dF, type Pages as dG, type URIs as dH, type CategoryMoved as dI, type ItemAddedToCategory as dJ, type ItemsAddedToCategory as dK, type ItemRemovedFromCategory as dL, type ItemsRemovedFromCategory as dM, type ItemsArrangedInCategory as dN, type CreateCategoryRequest as dO, type CreateCategoryResponse as dP, type DuplicateHandleErrorData as dQ, type GetCategoryRequest as dR, type GetCategoryResponse as dS, type GetCategoryBySlugRequest as dT, type UpdateCategoryRequest as dU, type UpdateCategoryResponse as dV, type DeleteCategoryRequest as dW, type DeleteCategoryResponse as dX, type QueryCategoriesRequest as dY, type CursorQuery as dZ, type CursorQueryPagingMethodOneOf as d_, type BlockquoteData as da, type CaptionData as db, type LayoutData as dc, type LayoutDataBackground as dd, type Layers as de, type LayoutDataBackgroundImage as df, type Banner as dg, type Backdrop as dh, type SectionDivider as di, type LayoutCellData as dj, type ShapeData as dk, type ShapeDataStyles as dl, type CardData as dm, type CardDataBackground as dn, type BackgroundImage as dp, type TocData as dq, type SmartBlockData as dr, type SmartBlockCellData as ds, type CheckboxListData as dt, type ListItemNodeData as du, type Metadata as dv, type DocumentStyle as dw, type TextNodeStyle as dx, type ExtendedFields as dy, type InvalidateCache as dz, type GetCategoryBySlugResponse as e, type BulkItemToCategoriesResult as e$, type CursorPaging as e0, type QueryCategoriesResponse as e1, type CursorPagingMetadata as e2, type Cursors as e3, type ListCompactCategoriesByIdsRequest as e4, type ListCompactCategoriesByIdsResponse as e5, type CompactCategory as e6, type SearchCategoriesRequest as e7, type CursorSearch as e8, type CursorSearchPagingMethodOneOf as e9, type NestedResultValueResultOneOf as eA, type Results as eB, type DateHistogramResult as eC, type GroupByValueResults as eD, type DateHistogramResults as eE, type NestedResults as eF, type AggregationResults as eG, type AggregationResultsResultOneOf as eH, type DeprecatedSearchCategoriesWithOffsetRequest as eI, type OffsetSearch as eJ, type OffsetSearchPagingMethodOneOf as eK, type Paging as eL, type DeprecatedSearchCategoriesWithOffsetResponse as eM, type PagingMetadata as eN, type CountCategoriesRequest as eO, type MoveCategoryRequest as eP, type BulkUpdateCategoriesRequest as eQ, type BulkCategoriesResult as eR, type ItemMetadata as eS, type ApplicationError as eT, type BulkActionMetadata as eU, type UpdateCategoryVisibilityRequest as eV, type BulkShowCategoriesRequest as eW, type BulkAddItemsToCategoryRequest as eX, type BulkItemsToCategoryResult as eY, type ItemReferenceMetadata as eZ, type BulkAddItemToCategoriesRequest as e_, type Aggregation as ea, type AggregationKindOneOf as eb, type RangeBucket as ec, type IncludeMissingValuesOptions as ed, type ValueAggregation as ee, type ValueAggregationOptionsOneOf as ef, type RangeAggregation as eg, type ScalarAggregation as eh, type DateHistogramAggregation as ei, type NestedAggregationItem as ej, type NestedAggregationItemKindOneOf as ek, type NestedAggregation as el, type SearchDetails as em, type AggregationData as en, type ValueAggregationResult as eo, type RangeAggregationResult as ep, type NestedAggregationResults as eq, type NestedAggregationResultsResultOneOf as er, type ValueResults as es, type RangeResults as et, type AggregationResultsScalarResult as eu, type NestedValueAggregationResult as ev, type ValueResult as ew, type RangeResult as ex, type ScalarResult as ey, type NestedResultValue as ez, type UpdateCategoryOptions as f, type LayoutTypeWithLiterals as f$, type BulkRemoveItemsFromCategoryRequest as f0, type BulkRemoveItemFromCategoriesRequest as f1, type ListItemsInCategoryRequest as f2, type ListItemsInCategoryRequestPagingMethodOneOf as f3, type PagingMetadataV2 as f4, type ListCategoriesForItemRequest as f5, type ListCategoriesForItemsRequest as f6, type MapItemToCategories as f7, type ListTreesRequest as f8, type MoveItemInCategoryRequest as f9, type AccountInfo as fA, type BaseEventMetadata as fB, type EventMetadata as fC, type AccountInfoMetadata as fD, type CategoriesQueryResult as fE, type CategoryQuerySpec as fF, type CategorySearchSpec as fG, type ListItemsInCategoryOptionsPagingMethodOneOf as fH, type BulkSetItemCategoriesOptions as fI, utils as fJ, type NodeTypeWithLiterals as fK, type BackgroundTypeWithLiterals as fL, type GradientTypeWithLiterals as fM, type WidthTypeWithLiterals as fN, type PluginContainerDataAlignmentWithLiterals as fO, type ButtonDataTypeWithLiterals as fP, type TargetWithLiterals as fQ, type TypeWithLiterals as fR, type EntranceEffectTypeWithLiterals as fS, type LoopEffectTypeWithLiterals as fT, type PointerEffectTypeWithLiterals as fU, type TextAlignmentWithLiterals as fV, type LineCapWithLiterals as fW, type LineStyleWithLiterals as fX, type WidthWithLiterals as fY, type DividerDataAlignmentWithLiterals as fZ, type ViewModeWithLiterals as f_, type MoveItemInCategoryResponse as fa, type SetArrangedItemsRequest as fb, type GetArrangedItemsRequest as fc, type BulkSetItemCategoriesRequest as fd, type BulkSetItemCategoriesResponse as fe, type GetCategoriesTreeRequest as ff, type GetCategoriesTreeResponse as fg, type CategoryTreeNode as fh, type DomainEvent as fi, type DomainEventBodyOneOf as fj, type EntityCreatedEvent as fk, type RestoreInfo as fl, type EntityUpdatedEvent as fm, type EntityDeletedEvent as fn, type ActionEvent as fo, type Empty as fp, type BulkCreateCategoriesForMigrationRequest as fq, type BulkCreateCategoriesForMigrationResponse as fr, type BulkAddItemsToCategoryForMigrationRequest as fs, type BulkAddItemsToCategoryForMigrationResponse as ft, type SetArrangedItemsForMigrationRequest as fu, type SetArrangedItemsForMigrationResponse as fv, type CatalogRollbackRequested as fw, type MessageEnvelope as fx, type IdentificationData as fy, type IdentificationDataIdOneOf as fz, type UpdateCategoryApplicationErrors as g, onCategoryCreated as g$, type OrientationWithLiterals as g0, type CropWithLiterals as g1, type ThumbnailsAlignmentWithLiterals as g2, type GIFTypeWithLiterals as g3, type SourceWithLiterals as g4, type StylesPositionWithLiterals as g5, type MapTypeWithLiterals as g6, type ViewRoleWithLiterals as g7, type VoteRoleWithLiterals as g8, type PollLayoutTypeWithLiterals as g9, type ResponsivenessBehaviourWithLiterals as gA, type DesignTargetWithLiterals as gB, type ScalingWithLiterals as gC, type ImagePositionPositionWithLiterals as gD, type CardDataBackgroundTypeWithLiterals as gE, type ListStyleWithLiterals as gF, type IndentationWithLiterals as gG, type SmartBlockDataTypeWithLiterals as gH, type ColumnSizeWithLiterals as gI, type SingleEntityOpsRequestedFieldsWithLiterals as gJ, type SortOrderWithLiterals as gK, type RequestedFieldsWithLiterals as gL, type SortTypeWithLiterals as gM, type SortDirectionWithLiterals as gN, type MissingValuesWithLiterals as gO, type ScalarTypeWithLiterals as gP, type NestedAggregationTypeWithLiterals as gQ, type IntervalWithLiterals as gR, type AggregationTypeWithLiterals as gS, type ModeWithLiterals as gT, type PositionWithLiterals as gU, type MoveItemInCategoryRequestPositionWithLiterals as gV, type WebhookIdentityTypeWithLiterals as gW, type BulkSetItemCategoriesApplicationErrors as gX, type CommonQueryWithEntityContext as gY, type CommonSearchWithEntityContext as gZ, onCategoryMoved as g_, type PollLayoutDirectionWithLiterals as ga, type PollDesignBackgroundTypeWithLiterals as gb, type DecorationTypeWithLiterals as gc, type FontTypeWithLiterals as gd, type VariantWithLiterals as ge, type ImageStylesPositionWithLiterals as gf, type AspectRatioWithLiterals as gg, type ResizingWithLiterals as gh, type PlacementWithLiterals as gi, type CardStylesTypeWithLiterals as gj, type AlignmentWithLiterals as gk, type LayoutWithLiterals as gl, type AppTypeWithLiterals as gm, type InitialExpandedItemsWithLiterals as gn, type DirectionWithLiterals as go, type VerticalAlignmentWithLiterals as gp, type NullValueWithLiterals as gq, type ImageScalingScalingWithLiterals as gr, type ImagePositionWithLiterals as gs, type LayoutDataBackgroundTypeWithLiterals as gt, type OriginWithLiterals as gu, type BannerPositionWithLiterals as gv, type LayerEffectWithLiterals as gw, type ShapeWithLiterals as gx, type BackdropTypeWithLiterals as gy, type VerticalAlignmentAlignmentWithLiterals as gz, type UpdateCategoryValidationErrors as h, onCategoryDeleted as h0, onCategoryItemAddedToCategory as h1, onCategoryItemRemovedFromCategory as h2, onCategoryItemsArrangedInCategory as h3, onCategoryUpdated as h4, createCategory as h5, getCategory as h6, getCategoryBySlug as h7, updateCategory as h8, deleteCategory as h9, queryCategories as ha, countCategories as hb, moveCategory as hc, bulkUpdateCategories as hd, updateCategoryVisibility as he, bulkShowCategories as hf, bulkAddItemsToCategory as hg, bulkAddItemToCategories as hh, bulkRemoveItemsFromCategory as hi, bulkRemoveItemFromCategories as hj, listItemsInCategory as hk, listCategoriesForItem as hl, listCategoriesForItems as hm, listTrees as hn, setArrangedItems as ho, getArrangedItems as hp, type CategorySearch as i, type SearchCategoriesResponse as j, type CountCategoriesOptions as k, type CountCategoriesResponse as l, type MoveCategoryResponse as m, type MoveCategoryApplicationErrors as n, type MaskedCategory as o, type BulkUpdateCategoriesResponse as p, type BulkUpdateCategoriesApplicationErrors as q, type BulkUpdateCategoriesValidationErrors as r, type UpdateCategoryVisibilityOptions as s, type UpdateCategoryVisibilityResponse as t, type UpdateCategoryVisibilityApplicationErrors as u, type BulkShowCategoriesOptions as v, type BulkShowCategoriesResponse as w, type BulkAddItemsToCategoryOptions as x, type BulkAddItemsToCategoryResponse as y, type BulkAddItemsToCategoryApplicationErrors as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-BP-vuulL.js';
3
- export { fw as AccountInfo, fz as AccountInfoMetadata, fk as ActionEvent, e6 as Aggregation, ej as AggregationData, e7 as AggregationKindOneOf, eC as AggregationResults, eD as AggregationResultsResultOneOf, eq as AggregationResultsScalarResult, bi as AggregationType, gM as AggregationTypeWithLiterals, aO as Alignment, gg as AlignmentWithLiterals, cE as AnchorData, bN as Animation, dx as App, cM as AppEmbedData, cN as AppEmbedDataAppDataOneOf, aQ as AppType, gi as AppTypeWithLiterals, eP as ApplicationError, aK as AspectRatio, gc as AspectRatioWithLiterals, d5 as AudioData, de as Backdrop, a_ as BackdropType, gs as BackdropTypeWithLiterals, bD as Background, ct as BackgroundGradient, dk as BackgroundImage, ad as BackgroundType, fH as BackgroundTypeWithLiterals, dd as Banner, aZ as BannerPosition, gr as BannerPositionWithLiterals, fx as BaseEventMetadata, d8 as BlockquoteData, cO as BookingData, bB as Border, d2 as BorderColors, d3 as BorderWidths, bo as Breadcrumb, bn as BreadcrumbsInfo, eQ as BulkActionMetadata, eW as BulkAddItemToCategoriesRequest, fo as BulkAddItemsToCategoryForMigrationRequest, fp as BulkAddItemsToCategoryForMigrationResponse, eT as BulkAddItemsToCategoryRequest, eN as BulkCategoriesResult, fm as BulkCreateCategoriesForMigrationRequest, fn as BulkCreateCategoriesForMigrationResponse, eX as BulkItemToCategoriesResult, eU as BulkItemsToCategoryResult, eZ as BulkRemoveItemFromCategoriesRequest, eY as BulkRemoveItemsFromCategoryRequest, gR as BulkSetItemCategoriesApplicationErrors, fE as BulkSetItemCategoriesOptions, f9 as BulkSetItemCategoriesRequest, fa as BulkSetItemCategoriesResponse, eS as BulkShowCategoriesRequest, eM as BulkUpdateCategoriesRequest, d7 as BulletedListData, by as ButtonData, ah as ButtonDataType, fL as ButtonDataTypeWithLiterals, cQ as ButtonStyles, d9 as CaptionData, di as CardData, dj as CardDataBackground, b4 as CardDataBackgroundType, gy as CardDataBackgroundTypeWithLiterals, cT as CardStyles, aN as CardStylesType, gf as CardStylesTypeWithLiterals, fs as CatalogRollbackRequested, fA as CategoriesQueryResult, dE as CategoryMoved, fB as CategoryQuerySpec, fC as CategorySearchSpec, fd as CategoryTreeNode, d1 as CellStyle, dp as CheckboxListData, bT as CodeBlockData, cZ as CollapsibleListData, cF as ColorData, bC as Colors, b8 as ColumnSize, gC as ColumnSizeWithLiterals, gS as CommonQueryWithEntityContext, gT as CommonSearchWithEntityContext, e2 as CompactCategory, eK as CountCategoriesRequest, dK as CreateCategoryRequest, dL as CreateCategoryResponse, av as Crop, fZ as CropWithLiterals, dY as CursorPaging, d_ as CursorPagingMetadata, dV as CursorQuery, dW as CursorQueryPagingMethodOneOf, e4 as CursorSearch, e5 as CursorSearchPagingMethodOneOf, d$ as Cursors, dB as CustomTag, ee as DateHistogramAggregation, ey as DateHistogramResult, eA as DateHistogramResults, cC as Decoration, cD as DecorationDataOneOf, aG as DecorationType, g8 as DecorationTypeWithLiterals, dS as DeleteCategoryRequest, dT as DeleteCategoryResponse, eE as DeprecatedSearchCategoriesWithOffsetRequest, eI as DeprecatedSearchCategoriesWithOffsetResponse, cA as Design, b1 as DesignTarget, gv as DesignTargetWithLiterals, c$ as Dimensions, aS as Direction, gk as DirectionWithLiterals, bV as DividerData, ar as DividerDataAlignment, fV as DividerDataAlignmentWithLiterals, bW as DividerDataStyles, ds as DocumentStyle, fe as DomainEvent, ff as DomainEventBodyOneOf, dM as DuplicateHandleErrorData, cX as EmbedData, fl as Empty, fg as EntityCreatedEvent, fj as EntityDeletedEvent, fi as EntityUpdatedEvent, bO as EntranceAnimation, bP as EntranceEffect, ak as EntranceEffectType, fO as EntranceEffectTypeWithLiterals, cP as EventData, fy as EventMetadata, du as ExtendedFields, dA as File, bX as FileData, bY as FileSource, bZ as FileSourceDataOneOf, cK as FontFamilyData, cI as FontSizeData, aH as FontType, g9 as FontTypeWithLiterals, ca as GIF, c9 as GIFData, ax as GIFType, f$ as GIFTypeWithLiterals, b$ as GalleryData, c5 as GalleryOptions, c6 as GalleryOptionsLayout, f8 as GetArrangedItemsRequest, fb as GetCategoriesTreeRequest, fc as GetCategoriesTreeResponse, dP as GetCategoryBySlugRequest, dN as GetCategoryRequest, dO as GetCategoryResponse, bz as Gradient, ae as GradientType, fI as GradientTypeWithLiterals, ez as GroupByValueResults, cc as HTMLData, cd as HTMLDataDataOneOf, cb as HeadingData, bI as Height, fu as IdentificationData, fv as IdentificationDataIdOneOf, c1 as Image, ce as ImageData, ch as ImageDataCrop, cg as ImageDataStyles, aW as ImagePosition, b3 as ImagePositionPosition, gx as ImagePositionPositionWithLiterals, go as ImagePositionWithLiterals, aV as ImageScalingScaling, gn as ImageScalingScalingWithLiterals, cR as ImageStyles, aJ as ImageStylesPosition, gb as ImageStylesPositionWithLiterals, e9 as IncludeMissingValuesOptions, b6 as Indentation, gA as IndentationWithLiterals, aR as InitialExpandedItems, gj as InitialExpandedItemsWithLiterals, bh as Interval, gL as IntervalWithLiterals, dv as InvalidateCache, dw as InvalidateCacheGetByOneOf, c3 as Item, dF as ItemAddedToCategory, c4 as ItemDataOneOf, eO as ItemMetadata, eV as ItemReferenceMetadata, dH as ItemRemovedFromCategory, c7 as ItemStyle, dG as ItemsAddedToCategory, dJ as ItemsArrangedInCategory, dI as ItemsRemovedFromCategory, br as Keyword, aP as Layout, df as LayoutCellData, da as LayoutData, db as LayoutDataBackground, dc as LayoutDataBackgroundImage, aX as LayoutDataBackgroundType, gp as LayoutDataBackgroundTypeWithLiterals, at as LayoutType, fX as LayoutTypeWithLiterals, gh as LayoutWithLiterals, ao as LineCap, fS as LineCapWithLiterals, ap as LineStyle, fT as LineStyleWithLiterals, bK as Link, cG as LinkData, bL as LinkDataOneOf, ci as LinkPreviewData, cj as LinkPreviewDataStyles, f1 as ListCategoriesForItemRequest, f2 as ListCategoriesForItemsRequest, e0 as ListCompactCategoriesByIdsRequest, e1 as ListCompactCategoriesByIdsResponse, dq as ListItemNodeData, fD as ListItemsInCategoryOptionsPagingMethodOneOf, e_ as ListItemsInCategoryRequest, e$ as ListItemsInCategoryRequestPagingMethodOneOf, b5 as ListStyle, gz as ListStyleWithLiterals, f4 as ListTreesRequest, d4 as ListValue, bQ as LoopAnimation, bR as LoopEffect, al as LoopEffectType, fP as LoopEffectTypeWithLiterals, ck as MapData, f3 as MapItemToCategories, cl as MapSettings, aA as MapType, g2 as MapTypeWithLiterals, c0 as Media, cH as MentionData, ft as MessageEnvelope, dr as Metadata, be as MissingValues, gI as MissingValuesWithLiterals, bj as Mode, gN as ModeWithLiterals, eL as MoveCategoryRequest, f5 as MoveItemInCategoryRequest, bl as MoveItemInCategoryRequestPosition, gP as MoveItemInCategoryRequestPositionWithLiterals, f6 as MoveItemInCategoryResponse, eh as NestedAggregation, ef as NestedAggregationItem, eg as NestedAggregationItemKindOneOf, em as NestedAggregationResults, en as NestedAggregationResultsResultOneOf, bg as NestedAggregationType, gK as NestedAggregationTypeWithLiterals, ev as NestedResultValue, ew as NestedResultValueResultOneOf, eB as NestedResults, er as NestedValueAggregationResult, bv as Node, bw as NodeDataOneOf, bx as NodeStyle, ac as NodeType, fG as NodeTypeWithLiterals, aU as NullValue, gm as NullValueWithLiterals, cY as Oembed, eF as OffsetSearch, eG as OffsetSearchPagingMethodOneOf, cp as Option, cx as OptionDesign, cs as OptionLayout, d6 as OrderedListData, au as Orientation, fY as OrientationWithLiterals, aY as Origin, gq as OriginWithLiterals, b_ as PDFSettings, dy as Page, dC as Pages, eH as Paging, eJ as PagingMetadata, f0 as PagingMetadataV2, cm as ParagraphData, bp as ParentCategory, co as Permissions, aM as Placement, ge as PlacementWithLiterals, cW as PlaybackOptions, bE as PluginContainerData, ag as PluginContainerDataAlignment, fK as PluginContainerDataAlignmentWithLiterals, bF as PluginContainerDataWidth, bG as PluginContainerDataWidthDataOneOf, bS as PointerEffect, am as PointerEffectType, fQ as PointerEffectTypeWithLiterals, cy as Poll, cn as PollData, cz as PollDataLayout, cw as PollDesign, cu as PollDesignBackground, cv as PollDesignBackgroundBackgroundOneOf, aF as PollDesignBackgroundType, g7 as PollDesignBackgroundTypeWithLiterals, cr as PollLayout, aE as PollLayoutDirection, g6 as PollLayoutDirectionWithLiterals, aD as PollLayoutType, g5 as PollLayoutTypeWithLiterals, cq as PollSettings, bk as Position, gO as PositionWithLiterals, cU as PricingData, dU as QueryCategoriesRequest, dZ as QueryCategoriesResponse, ec as RangeAggregation, el as RangeAggregationResult, e8 as RangeBucket, et as RangeResult, ep as RangeResults, bM as Rel, bb as RequestedFields, gF as RequestedFieldsWithLiterals, aL as Resizing, gd as ResizingWithLiterals, b0 as ResponsivenessBehaviour, gu as ResponsivenessBehaviourWithLiterals, fh as RestoreInfo, ex as Results, cS as RibbonStyles, bu as RichContent, ed as ScalarAggregation, eu as ScalarResult, bf as ScalarType, gJ as ScalarTypeWithLiterals, b2 as Scaling, gw as ScalingWithLiterals, e3 as SearchCategoriesRequest, ei as SearchDetails, bq as SeoSchema, fq as SetArrangedItemsForMigrationRequest, fr as SetArrangedItemsForMigrationResponse, f7 as SetArrangedItemsRequest, bt as Settings, dg as ShapeData, dh as ShapeDataStyles, b9 as SingleEntityOpsRequestedFields, gD as SingleEntityOpsRequestedFieldsWithLiterals, cL as SketchData, dn as SmartBlockCellData, dm as SmartBlockData, b7 as SmartBlockDataType, gB as SmartBlockDataTypeWithLiterals, bd as SortDirection, gH as SortDirectionWithLiterals, ba as SortOrder, gE as SortOrderWithLiterals, bc as SortType, gG as SortTypeWithLiterals, dX as Sorting, ay as Source, g0 as SourceWithLiterals, bH as Spoiler, cJ as SpoilerData, bA as Stop, bJ as Styles, cf as StylesBorder, az as StylesPosition, g1 as StylesPositionWithLiterals, d0 as TableCellData, c_ as TableData, bs as Tag, ai as Target, fM as TargetWithLiterals, an as TextAlignment, fR as TextAlignmentWithLiterals, cB as TextData, dt as TextNodeStyle, bU as TextStyle, c8 as Thumbnails, aw as ThumbnailsAlignment, f_ as ThumbnailsAlignmentWithLiterals, dl as TocData, aj as Type, fN as TypeWithLiterals, dz as URI, dD as URIs, dQ as UpdateCategoryRequest, dR as UpdateCategoryResponse, eR as UpdateCategoryVisibilityRequest, ea as ValueAggregation, eb as ValueAggregationOptionsOneOf, ek as ValueAggregationResult, es as ValueResult, eo as ValueResults, aI as Variant, ga as VariantWithLiterals, aT as VerticalAlignment, a$ as VerticalAlignmentAlignment, gt as VerticalAlignmentAlignmentWithLiterals, gl as VerticalAlignmentWithLiterals, c2 as Video, cV as VideoData, as as ViewMode, fW as ViewModeWithLiterals, aB as ViewRole, g3 as ViewRoleWithLiterals, aC as VoteRole, g4 as VoteRoleWithLiterals, bm as WebhookIdentityType, gQ as WebhookIdentityTypeWithLiterals, aq as Width, af as WidthType, fJ as WidthTypeWithLiterals, fU as WidthWithLiterals, fF as utils } from './categories-v1-category-categories.universal-BP-vuulL.js';
2
+ import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-CTgE3PnT.js';
3
+ export { fA as AccountInfo, fD as AccountInfoMetadata, fo as ActionEvent, ea as Aggregation, en as AggregationData, eb as AggregationKindOneOf, eG as AggregationResults, eH as AggregationResultsResultOneOf, eu as AggregationResultsScalarResult, bk as AggregationType, gS as AggregationTypeWithLiterals, aO as Alignment, gk as AlignmentWithLiterals, cG as AnchorData, bP as Animation, dB as App, cO as AppEmbedData, cP as AppEmbedDataAppDataOneOf, aQ as AppType, gm as AppTypeWithLiterals, eT as ApplicationError, aK as AspectRatio, gg as AspectRatioWithLiterals, d7 as AudioData, dh as Backdrop, b0 as BackdropType, gy as BackdropTypeWithLiterals, bF as Background, cv as BackgroundGradient, dp as BackgroundImage, ad as BackgroundType, fL as BackgroundTypeWithLiterals, dg as Banner, aZ as BannerPosition, gv as BannerPositionWithLiterals, fB as BaseEventMetadata, da as BlockquoteData, cQ as BookingData, bD as Border, d4 as BorderColors, d5 as BorderWidths, bq as Breadcrumb, bp as BreadcrumbsInfo, eU as BulkActionMetadata, e_ as BulkAddItemToCategoriesRequest, fs as BulkAddItemsToCategoryForMigrationRequest, ft as BulkAddItemsToCategoryForMigrationResponse, eX as BulkAddItemsToCategoryRequest, eR as BulkCategoriesResult, fq as BulkCreateCategoriesForMigrationRequest, fr as BulkCreateCategoriesForMigrationResponse, e$ as BulkItemToCategoriesResult, eY as BulkItemsToCategoryResult, f1 as BulkRemoveItemFromCategoriesRequest, f0 as BulkRemoveItemsFromCategoryRequest, gX as BulkSetItemCategoriesApplicationErrors, fI as BulkSetItemCategoriesOptions, fd as BulkSetItemCategoriesRequest, fe as BulkSetItemCategoriesResponse, eW as BulkShowCategoriesRequest, eQ as BulkUpdateCategoriesRequest, d9 as BulletedListData, bA as ButtonData, ah as ButtonDataType, fP as ButtonDataTypeWithLiterals, cS as ButtonStyles, db as CaptionData, dm as CardData, dn as CardDataBackground, b6 as CardDataBackgroundType, gE as CardDataBackgroundTypeWithLiterals, cV as CardStyles, aN as CardStylesType, gj as CardStylesTypeWithLiterals, fw as CatalogRollbackRequested, fE as CategoriesQueryResult, dI as CategoryMoved, fF as CategoryQuerySpec, fG as CategorySearchSpec, fh as CategoryTreeNode, d3 as CellStyle, dt as CheckboxListData, bV as CodeBlockData, c$ as CollapsibleListData, cH as ColorData, bE as Colors, ba as ColumnSize, gI as ColumnSizeWithLiterals, gY as CommonQueryWithEntityContext, gZ as CommonSearchWithEntityContext, e6 as CompactCategory, eO as CountCategoriesRequest, dO as CreateCategoryRequest, dP as CreateCategoryResponse, av as Crop, g1 as CropWithLiterals, e0 as CursorPaging, e2 as CursorPagingMetadata, dZ as CursorQuery, d_ as CursorQueryPagingMethodOneOf, e8 as CursorSearch, e9 as CursorSearchPagingMethodOneOf, e3 as Cursors, dF as CustomTag, ei as DateHistogramAggregation, eC as DateHistogramResult, eE as DateHistogramResults, cE as Decoration, cF as DecorationDataOneOf, aG as DecorationType, gc as DecorationTypeWithLiterals, dW as DeleteCategoryRequest, dX as DeleteCategoryResponse, eI as DeprecatedSearchCategoriesWithOffsetRequest, eM as DeprecatedSearchCategoriesWithOffsetResponse, cC as Design, b3 as DesignTarget, gB as DesignTargetWithLiterals, d1 as Dimensions, aS as Direction, go as DirectionWithLiterals, bX as DividerData, ar as DividerDataAlignment, fZ as DividerDataAlignmentWithLiterals, bY as DividerDataStyles, dw as DocumentStyle, fi as DomainEvent, fj as DomainEventBodyOneOf, dQ as DuplicateHandleErrorData, cZ as EmbedData, fp as Empty, fk as EntityCreatedEvent, fn as EntityDeletedEvent, fm as EntityUpdatedEvent, bQ as EntranceAnimation, bR as EntranceEffect, ak as EntranceEffectType, fS as EntranceEffectTypeWithLiterals, cR as EventData, fC as EventMetadata, dy as ExtendedFields, dE as File, bZ as FileData, b_ as FileSource, b$ as FileSourceDataOneOf, cM as FontFamilyData, cK as FontSizeData, aH as FontType, gd as FontTypeWithLiterals, cc as GIF, cb as GIFData, ax as GIFType, g3 as GIFTypeWithLiterals, c1 as GalleryData, c7 as GalleryOptions, c8 as GalleryOptionsLayout, fc as GetArrangedItemsRequest, ff as GetCategoriesTreeRequest, fg as GetCategoriesTreeResponse, dT as GetCategoryBySlugRequest, dR as GetCategoryRequest, dS as GetCategoryResponse, bB as Gradient, ae as GradientType, fM as GradientTypeWithLiterals, eD as GroupByValueResults, ce as HTMLData, cf as HTMLDataDataOneOf, cd as HeadingData, bK as Height, fy as IdentificationData, fz as IdentificationDataIdOneOf, c3 as Image, cg as ImageData, cj as ImageDataCrop, ci as ImageDataStyles, aW as ImagePosition, b5 as ImagePositionPosition, gD as ImagePositionPositionWithLiterals, gs as ImagePositionWithLiterals, aV as ImageScalingScaling, gr as ImageScalingScalingWithLiterals, cT as ImageStyles, aJ as ImageStylesPosition, gf as ImageStylesPositionWithLiterals, ed as IncludeMissingValuesOptions, b8 as Indentation, gG as IndentationWithLiterals, aR as InitialExpandedItems, gn as InitialExpandedItemsWithLiterals, bj as Interval, gR as IntervalWithLiterals, dz as InvalidateCache, dA as InvalidateCacheGetByOneOf, c5 as Item, dJ as ItemAddedToCategory, c6 as ItemDataOneOf, eS as ItemMetadata, eZ as ItemReferenceMetadata, dL as ItemRemovedFromCategory, c9 as ItemStyle, dK as ItemsAddedToCategory, dN as ItemsArrangedInCategory, dM as ItemsRemovedFromCategory, bt as Keyword, a_ as LayerEffect, gw as LayerEffectWithLiterals, de as Layers, aP as Layout, dj as LayoutCellData, dc as LayoutData, dd as LayoutDataBackground, df as LayoutDataBackgroundImage, aX as LayoutDataBackgroundType, gt as LayoutDataBackgroundTypeWithLiterals, at as LayoutType, f$ as LayoutTypeWithLiterals, gl as LayoutWithLiterals, ao as LineCap, fW as LineCapWithLiterals, ap as LineStyle, fX as LineStyleWithLiterals, bM as Link, cI as LinkData, bN as LinkDataOneOf, ck as LinkPreviewData, cl as LinkPreviewDataStyles, f5 as ListCategoriesForItemRequest, f6 as ListCategoriesForItemsRequest, e4 as ListCompactCategoriesByIdsRequest, e5 as ListCompactCategoriesByIdsResponse, du as ListItemNodeData, fH as ListItemsInCategoryOptionsPagingMethodOneOf, f2 as ListItemsInCategoryRequest, f3 as ListItemsInCategoryRequestPagingMethodOneOf, b7 as ListStyle, gF as ListStyleWithLiterals, f8 as ListTreesRequest, d6 as ListValue, bS as LoopAnimation, bT as LoopEffect, al as LoopEffectType, fT as LoopEffectTypeWithLiterals, cm as MapData, f7 as MapItemToCategories, cn as MapSettings, aA as MapType, g6 as MapTypeWithLiterals, c2 as Media, cJ as MentionData, fx as MessageEnvelope, dv as Metadata, bg as MissingValues, gO as MissingValuesWithLiterals, bl as Mode, gT as ModeWithLiterals, eP as MoveCategoryRequest, f9 as MoveItemInCategoryRequest, bn as MoveItemInCategoryRequestPosition, gV as MoveItemInCategoryRequestPositionWithLiterals, fa as MoveItemInCategoryResponse, el as NestedAggregation, ej as NestedAggregationItem, ek as NestedAggregationItemKindOneOf, eq as NestedAggregationResults, er as NestedAggregationResultsResultOneOf, bi as NestedAggregationType, gQ as NestedAggregationTypeWithLiterals, ez as NestedResultValue, eA as NestedResultValueResultOneOf, eF as NestedResults, ev as NestedValueAggregationResult, bx as Node, by as NodeDataOneOf, bz as NodeStyle, ac as NodeType, fK as NodeTypeWithLiterals, aU as NullValue, gq as NullValueWithLiterals, c_ as Oembed, eJ as OffsetSearch, eK as OffsetSearchPagingMethodOneOf, cr as Option, cz as OptionDesign, cu as OptionLayout, d8 as OrderedListData, au as Orientation, g0 as OrientationWithLiterals, aY as Origin, gu as OriginWithLiterals, c0 as PDFSettings, dC as Page, dG as Pages, eL as Paging, eN as PagingMetadata, f4 as PagingMetadataV2, co as ParagraphData, br as ParentCategory, cq as Permissions, aM as Placement, gi as PlacementWithLiterals, cY as PlaybackOptions, bG as PluginContainerData, ag as PluginContainerDataAlignment, fO as PluginContainerDataAlignmentWithLiterals, bH as PluginContainerDataWidth, bI as PluginContainerDataWidthDataOneOf, bU as PointerEffect, am as PointerEffectType, fU as PointerEffectTypeWithLiterals, cA as Poll, cp as PollData, cB as PollDataLayout, cy as PollDesign, cw as PollDesignBackground, cx as PollDesignBackgroundBackgroundOneOf, aF as PollDesignBackgroundType, gb as PollDesignBackgroundTypeWithLiterals, ct as PollLayout, aE as PollLayoutDirection, ga as PollLayoutDirectionWithLiterals, aD as PollLayoutType, g9 as PollLayoutTypeWithLiterals, cs as PollSettings, bm as Position, gU as PositionWithLiterals, cW as PricingData, dY as QueryCategoriesRequest, e1 as QueryCategoriesResponse, eg as RangeAggregation, ep as RangeAggregationResult, ec as RangeBucket, ex as RangeResult, et as RangeResults, bO as Rel, bd as RequestedFields, gL as RequestedFieldsWithLiterals, aL as Resizing, gh as ResizingWithLiterals, b2 as ResponsivenessBehaviour, gA as ResponsivenessBehaviourWithLiterals, fl as RestoreInfo, eB as Results, cU as RibbonStyles, bw as RichContent, eh as ScalarAggregation, ey as ScalarResult, bh as ScalarType, gP as ScalarTypeWithLiterals, b4 as Scaling, gC as ScalingWithLiterals, e7 as SearchCategoriesRequest, em as SearchDetails, di as SectionDivider, bs as SeoSchema, fu as SetArrangedItemsForMigrationRequest, fv as SetArrangedItemsForMigrationResponse, fb as SetArrangedItemsRequest, bv as Settings, a$ as Shape, dk as ShapeData, dl as ShapeDataStyles, gx as ShapeWithLiterals, bb as SingleEntityOpsRequestedFields, gJ as SingleEntityOpsRequestedFieldsWithLiterals, cN as SketchData, ds as SmartBlockCellData, dr as SmartBlockData, b9 as SmartBlockDataType, gH as SmartBlockDataTypeWithLiterals, bf as SortDirection, gN as SortDirectionWithLiterals, bc as SortOrder, gK as SortOrderWithLiterals, be as SortType, gM as SortTypeWithLiterals, d$ as Sorting, ay as Source, g4 as SourceWithLiterals, bJ as Spoiler, cL as SpoilerData, bC as Stop, bL as Styles, ch as StylesBorder, az as StylesPosition, g5 as StylesPositionWithLiterals, d2 as TableCellData, d0 as TableData, bu as Tag, ai as Target, fQ as TargetWithLiterals, an as TextAlignment, fV as TextAlignmentWithLiterals, cD as TextData, dx as TextNodeStyle, bW as TextStyle, ca as Thumbnails, aw as ThumbnailsAlignment, g2 as ThumbnailsAlignmentWithLiterals, dq as TocData, aj as Type, fR as TypeWithLiterals, dD as URI, dH as URIs, dU as UpdateCategoryRequest, dV as UpdateCategoryResponse, eV as UpdateCategoryVisibilityRequest, ee as ValueAggregation, ef as ValueAggregationOptionsOneOf, eo as ValueAggregationResult, ew as ValueResult, es as ValueResults, aI as Variant, ge as VariantWithLiterals, aT as VerticalAlignment, b1 as VerticalAlignmentAlignment, gz as VerticalAlignmentAlignmentWithLiterals, gp as VerticalAlignmentWithLiterals, c4 as Video, cX as VideoData, as as ViewMode, f_ as ViewModeWithLiterals, aB as ViewRole, g7 as ViewRoleWithLiterals, aC as VoteRole, g8 as VoteRoleWithLiterals, bo as WebhookIdentityType, gW as WebhookIdentityTypeWithLiterals, aq as Width, af as WidthType, fN as WidthTypeWithLiterals, fY as WidthWithLiterals, fJ as utils } from './categories-v1-category-categories.universal-CTgE3PnT.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -47,6 +47,7 @@ __export(index_exports, {
47
47
  Indentation: () => Indentation,
48
48
  InitialExpandedItems: () => InitialExpandedItems,
49
49
  Interval: () => Interval,
50
+ LayerEffect: () => LayerEffect,
50
51
  Layout: () => Layout,
51
52
  LayoutDataBackgroundType: () => LayoutDataBackgroundType,
52
53
  LayoutType: () => LayoutType,
@@ -75,6 +76,7 @@ __export(index_exports, {
75
76
  ResponsivenessBehaviour: () => ResponsivenessBehaviour,
76
77
  ScalarType: () => ScalarType,
77
78
  Scaling: () => Scaling,
79
+ Shape: () => Shape,
78
80
  SingleEntityOpsRequestedFields: () => SingleEntityOpsRequestedFields,
79
81
  SmartBlockDataType: () => SmartBlockDataType,
80
82
  SortDirection: () => SortDirection,
@@ -3184,6 +3186,39 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
3184
3186
  BannerPosition2["BOTTOM"] = "BOTTOM";
3185
3187
  return BannerPosition2;
3186
3188
  })(BannerPosition || {});
3189
+ var LayerEffect = /* @__PURE__ */ ((LayerEffect2) => {
3190
+ LayerEffect2["CENTER"] = "CENTER";
3191
+ LayerEffect2["FADE_TO_TOP"] = "FADE_TO_TOP";
3192
+ LayerEffect2["FADE_TO_BOTTOM"] = "FADE_TO_BOTTOM";
3193
+ return LayerEffect2;
3194
+ })(LayerEffect || {});
3195
+ var Shape = /* @__PURE__ */ ((Shape2) => {
3196
+ Shape2["ELLIPSE"] = "ELLIPSE";
3197
+ Shape2["TILT"] = "TILT";
3198
+ Shape2["LIQUID"] = "LIQUID";
3199
+ Shape2["LEFT_WAVE"] = "LEFT_WAVE";
3200
+ Shape2["PAINT_SCRIBBLE"] = "PAINT_SCRIBBLE";
3201
+ Shape2["INVERTED_ELLIPSE"] = "INVERTED_ELLIPSE";
3202
+ Shape2["RIGHT_WAVE"] = "RIGHT_WAVE";
3203
+ Shape2["DUNES"] = "DUNES";
3204
+ Shape2["WAVES"] = "WAVES";
3205
+ Shape2["TRIANGLE"] = "TRIANGLE";
3206
+ Shape2["SEMI_ELLIPSE"] = "SEMI_ELLIPSE";
3207
+ Shape2["PLANTS"] = "PLANTS";
3208
+ Shape2["LAYERED_ELLIPSE"] = "LAYERED_ELLIPSE";
3209
+ Shape2["PIXELS"] = "PIXELS";
3210
+ Shape2["PAINT"] = "PAINT";
3211
+ Shape2["CLOUDS"] = "CLOUDS";
3212
+ Shape2["OPTICAL_ILLUSION"] = "OPTICAL_ILLUSION";
3213
+ Shape2["STRIPES"] = "STRIPES";
3214
+ Shape2["BLOBS"] = "BLOBS";
3215
+ Shape2["SEMI_CIRCLES"] = "SEMI_CIRCLES";
3216
+ Shape2["HILL"] = "HILL";
3217
+ Shape2["BRUSH"] = "BRUSH";
3218
+ Shape2["PEAKS"] = "PEAKS";
3219
+ Shape2["ANGLED_TRIANGLE"] = "ANGLED_TRIANGLE";
3220
+ return Shape2;
3221
+ })(Shape || {});
3187
3222
  var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
3188
3223
  BackdropType2["COLOR"] = "COLOR";
3189
3224
  BackdropType2["GRADIENT"] = "GRADIENT";
@@ -3660,12 +3695,8 @@ async function typedQueryCategories(query, options) {
3660
3695
  }
3661
3696
  }
3662
3697
  var utils = {
3663
- query: {
3664
- ...(0, import_query_builder_utils.createQueryUtils)()
3665
- },
3666
- search: {
3667
- ...(0, import_search_builder_utils.createSearchUtils)()
3668
- }
3698
+ query: /* @__PURE__ */ (0, import_query_builder_utils.createQueryUtils)(),
3699
+ search: /* @__PURE__ */ (0, import_search_builder_utils.createSearchUtils)()
3669
3700
  };
3670
3701
  async function searchCategories2(search, options) {
3671
3702
  const { httpClient, sideEffects } = arguments[2];
@@ -4474,7 +4505,7 @@ function bulkSetItemCategories3(httpClient) {
4474
4505
  { httpClient }
4475
4506
  );
4476
4507
  }
4477
- var onCategoryMoved = (0, import_sdk_types.EventDefinition)(
4508
+ var onCategoryMoved = /* @__PURE__ */ (0, import_sdk_types.EventDefinition)(
4478
4509
  "wix.categories.v1.category_category_moved",
4479
4510
  true,
4480
4511
  (event) => (0, import_rename_all_nested_keys2.renameKeysFromRESTResponseToSDKResponse)(
@@ -4486,7 +4517,7 @@ var onCategoryMoved = (0, import_sdk_types.EventDefinition)(
4486
4517
  ])
4487
4518
  )
4488
4519
  )();
4489
- var onCategoryCreated = (0, import_sdk_types.EventDefinition)(
4520
+ var onCategoryCreated = /* @__PURE__ */ (0, import_sdk_types.EventDefinition)(
4490
4521
  "wix.categories.v1.category_created",
4491
4522
  true,
4492
4523
  (event) => (0, import_rename_all_nested_keys2.renameKeysFromRESTResponseToSDKResponse)(
@@ -4655,7 +4686,7 @@ var onCategoryCreated = (0, import_sdk_types.EventDefinition)(
4655
4686
  ])
4656
4687
  )
4657
4688
  )();
4658
- var onCategoryDeleted = (0, import_sdk_types.EventDefinition)(
4689
+ var onCategoryDeleted = /* @__PURE__ */ (0, import_sdk_types.EventDefinition)(
4659
4690
  "wix.categories.v1.category_deleted",
4660
4691
  true,
4661
4692
  (event) => (0, import_rename_all_nested_keys2.renameKeysFromRESTResponseToSDKResponse)(
@@ -4830,7 +4861,7 @@ var onCategoryDeleted = (0, import_sdk_types.EventDefinition)(
4830
4861
  ])
4831
4862
  )
4832
4863
  )();
4833
- var onCategoryItemAddedToCategory = (0, import_sdk_types.EventDefinition)(
4864
+ var onCategoryItemAddedToCategory = /* @__PURE__ */ (0, import_sdk_types.EventDefinition)(
4834
4865
  "wix.categories.v1.category_item_added_to_category",
4835
4866
  true,
4836
4867
  (event) => (0, import_rename_all_nested_keys2.renameKeysFromRESTResponseToSDKResponse)(
@@ -4842,7 +4873,7 @@ var onCategoryItemAddedToCategory = (0, import_sdk_types.EventDefinition)(
4842
4873
  ])
4843
4874
  )
4844
4875
  )();
4845
- var onCategoryItemRemovedFromCategory = (0, import_sdk_types.EventDefinition)(
4876
+ var onCategoryItemRemovedFromCategory = /* @__PURE__ */ (0, import_sdk_types.EventDefinition)(
4846
4877
  "wix.categories.v1.category_item_removed_from_category",
4847
4878
  true,
4848
4879
  (event) => (0, import_rename_all_nested_keys2.renameKeysFromRESTResponseToSDKResponse)(
@@ -4854,7 +4885,7 @@ var onCategoryItemRemovedFromCategory = (0, import_sdk_types.EventDefinition)(
4854
4885
  ])
4855
4886
  )
4856
4887
  )();
4857
- var onCategoryItemsArrangedInCategory = (0, import_sdk_types.EventDefinition)(
4888
+ var onCategoryItemsArrangedInCategory = /* @__PURE__ */ (0, import_sdk_types.EventDefinition)(
4858
4889
  "wix.categories.v1.category_items_arranged_in_category",
4859
4890
  true,
4860
4891
  (event) => (0, import_rename_all_nested_keys2.renameKeysFromRESTResponseToSDKResponse)(
@@ -4866,7 +4897,7 @@ var onCategoryItemsArrangedInCategory = (0, import_sdk_types.EventDefinition)(
4866
4897
  ])
4867
4898
  )
4868
4899
  )();
4869
- var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
4900
+ var onCategoryUpdated = /* @__PURE__ */ (0, import_sdk_types.EventDefinition)(
4870
4901
  "wix.categories.v1.category_updated",
4871
4902
  true,
4872
4903
  (event) => (0, import_rename_all_nested_keys2.renameKeysFromRESTResponseToSDKResponse)(
@@ -5199,7 +5230,7 @@ var import_rest_modules3 = require("@wix/sdk-runtime/rest-modules");
5199
5230
  var import_event_definition_modules = require("@wix/sdk-runtime/event-definition-modules");
5200
5231
  var import_query_method_router = require("@wix/sdk-runtime/query-method-router");
5201
5232
  function customQueryCategories(httpClient) {
5202
- const router = (0, import_query_method_router.createQueryOverloadRouter)({
5233
+ const router = /* @__PURE__ */ (0, import_query_method_router.createQueryOverloadRouter)({
5203
5234
  builderQueryFunction: (options) => queryCategories3(httpClient)(options),
5204
5235
  typedQueryFunction: (query, options) => typedQueryCategories2(httpClient)(query, options),
5205
5236
  hasOptionsParameter: true
@@ -5232,19 +5263,23 @@ var setArrangedItems4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModul
5232
5263
  var getArrangedItems4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getArrangedItems3);
5233
5264
  var bulkSetItemCategories4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkSetItemCategories3);
5234
5265
  var queryCategories4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(customQueryCategories);
5235
- var onCategoryMoved2 = (0, import_event_definition_modules.createEventModule)(onCategoryMoved);
5236
- var onCategoryCreated2 = (0, import_event_definition_modules.createEventModule)(onCategoryCreated);
5237
- var onCategoryDeleted2 = (0, import_event_definition_modules.createEventModule)(onCategoryDeleted);
5238
- var onCategoryItemAddedToCategory2 = (0, import_event_definition_modules.createEventModule)(
5239
- onCategoryItemAddedToCategory
5266
+ var onCategoryMoved2 = /* @__PURE__ */ (0, import_event_definition_modules.createEventModule)(
5267
+ onCategoryMoved
5268
+ );
5269
+ var onCategoryCreated2 = /* @__PURE__ */ (0, import_event_definition_modules.createEventModule)(
5270
+ onCategoryCreated
5240
5271
  );
5241
- var onCategoryItemRemovedFromCategory2 = (0, import_event_definition_modules.createEventModule)(
5242
- onCategoryItemRemovedFromCategory
5272
+ var onCategoryDeleted2 = /* @__PURE__ */ (0, import_event_definition_modules.createEventModule)(
5273
+ onCategoryDeleted
5274
+ );
5275
+ var onCategoryItemAddedToCategory2 = /* @__PURE__ */ (0, import_event_definition_modules.createEventModule)(
5276
+ onCategoryItemAddedToCategory
5243
5277
  );
5244
- var onCategoryItemsArrangedInCategory2 = (0, import_event_definition_modules.createEventModule)(
5245
- onCategoryItemsArrangedInCategory
5278
+ var onCategoryItemRemovedFromCategory2 = /* @__PURE__ */ (0, import_event_definition_modules.createEventModule)(onCategoryItemRemovedFromCategory);
5279
+ var onCategoryItemsArrangedInCategory2 = /* @__PURE__ */ (0, import_event_definition_modules.createEventModule)(onCategoryItemsArrangedInCategory);
5280
+ var onCategoryUpdated2 = /* @__PURE__ */ (0, import_event_definition_modules.createEventModule)(
5281
+ onCategoryUpdated
5246
5282
  );
5247
- var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(onCategoryUpdated);
5248
5283
  // Annotate the CommonJS export names for ESM import in node:
5249
5284
  0 && (module.exports = {
5250
5285
  AggregationType,
@@ -5274,6 +5309,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
5274
5309
  Indentation,
5275
5310
  InitialExpandedItems,
5276
5311
  Interval,
5312
+ LayerEffect,
5277
5313
  Layout,
5278
5314
  LayoutDataBackgroundType,
5279
5315
  LayoutType,
@@ -5302,6 +5338,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
5302
5338
  ResponsivenessBehaviour,
5303
5339
  ScalarType,
5304
5340
  Scaling,
5341
+ Shape,
5305
5342
  SingleEntityOpsRequestedFields,
5306
5343
  SmartBlockDataType,
5307
5344
  SortDirection,