@wix/auto_sdk_categories_categories 1.0.130 → 1.0.131

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 (41) hide show
  1. package/build/cjs/{categories-v1-category-categories.universal-1V0z-nfC.d.ts → categories-v1-category-categories.universal-Cy-lRfCS.d.ts} +57 -1
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +18 -0
  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 +18 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +58 -2
  9. package/build/cjs/meta.js +18 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{categories-v1-category-categories.universal-1V0z-nfC.d.mts → categories-v1-category-categories.universal-Cy-lRfCS.d.mts} +57 -1
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +17 -0
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +17 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +58 -2
  19. package/build/es/meta.mjs +17 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{categories-v1-category-categories.universal-O63vPESH.d.ts → categories-v1-category-categories.universal-BBkrgdQc.d.ts} +57 -1
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +18 -0
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +18 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +58 -2
  29. package/build/internal/cjs/meta.js +18 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{categories-v1-category-categories.universal-O63vPESH.d.mts → categories-v1-category-categories.universal-BBkrgdQc.d.mts} +57 -1
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +17 -0
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +17 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +58 -2
  39. package/build/internal/es/meta.mjs +17 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -735,6 +735,8 @@ interface Animation {
735
735
  type?: TypeWithLiterals;
736
736
  /** Entrance animation, played once when the node first enters the viewport. */
737
737
  entrance?: EntranceAnimation;
738
+ /** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
739
+ loop?: LoopAnimation;
738
740
  }
739
741
  declare enum Type {
740
742
  /** Animations that play while the node is in view. */
@@ -809,6 +811,58 @@ declare enum EntranceEffectType {
809
811
  }
810
812
  /** @enumType */
811
813
  type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
814
+ interface LoopAnimation {
815
+ /** The looping effect to repeat. */
816
+ effect?: LoopEffect;
817
+ /** Duration of a single iteration in milliseconds. Each effect has its own default. */
818
+ duration?: number | null;
819
+ /** Pause between iterations in milliseconds. */
820
+ iterationDelay?: number | null;
821
+ }
822
+ interface LoopEffect {
823
+ /** The looping effect type. */
824
+ type?: LoopEffectTypeWithLiterals;
825
+ /**
826
+ * Direction of the effect. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, LEFT/RIGHT, HORIZONTAL/VERTICAL with or without CENTER, CLOCKWISE/COUNTER_CLOCKWISE).
827
+ * @maxLength 20
828
+ */
829
+ direction?: string | null;
830
+ /**
831
+ * Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
832
+ * @maxLength 100
833
+ */
834
+ easing?: string | null;
835
+ }
836
+ declare enum LoopEffectType {
837
+ /** Bounces up and down in place. */
838
+ BOUNCE = "BOUNCE",
839
+ /** Scales gently in and out along an axis. */
840
+ BREATHE = "BREATHE",
841
+ /** Drifts toward one side, then re-enters from the opposite side. */
842
+ CROSS = "CROSS",
843
+ /** Fades out to fully transparent and back in. */
844
+ FLASH = "FLASH",
845
+ /** Rotates a full turn around its horizontal or vertical axis. */
846
+ FLIP = "FLIP",
847
+ /** Folds back and forth around a hinged edge. */
848
+ FOLD = "FOLD",
849
+ /** Wobbles with a jelly-like skew. */
850
+ JELLO = "JELLO",
851
+ /** Nudges repeatedly toward a direction. */
852
+ POKE = "POKE",
853
+ /** Scales up and back down rhythmically. */
854
+ PULSE = "PULSE",
855
+ /** Stretches and squashes like a rubber band. */
856
+ RUBBER = "RUBBER",
857
+ /** Rotates continuously around its center. */
858
+ SPIN = "SPIN",
859
+ /** Swings back and forth around an edge pivot. */
860
+ SWING = "SWING",
861
+ /** Rocks side to side with an accumulating rotation. */
862
+ WIGGLE = "WIGGLE"
863
+ }
864
+ /** @enumType */
865
+ type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
812
866
  interface CodeBlockData {
813
867
  /** Styling for the code block's text. */
814
868
  textStyle?: TextStyle;
@@ -1665,6 +1719,8 @@ interface MentionData {
1665
1719
  slug?: string;
1666
1720
  /** Mentioned user's ID. */
1667
1721
  id?: string | null;
1722
+ /** The kind of entity the mention refers to. Any value is accepted, and it's usually used to mark a mention as a group mention (for example, `group`). When empty, the mention refers to a member. */
1723
+ type?: string | null;
1668
1724
  }
1669
1725
  interface FontSizeData {
1670
1726
  /** The units used for the font size. */
@@ -6133,4 +6189,4 @@ interface BulkSetItemCategoriesOptions {
6133
6189
  treeReference: TreeReference;
6134
6190
  }
6135
6191
 
6136
- 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, DesignTarget 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, VoteRole as aA, PollLayoutType as aB, PollLayoutDirection as aC, PollDesignBackgroundType as aD, DecorationType as aE, FontType as aF, Variant as aG, ImageStylesPosition as aH, AspectRatio as aI, Resizing as aJ, Placement as aK, CardStylesType as aL, Alignment as aM, Layout as aN, AppType as aO, InitialExpandedItems as aP, Direction as aQ, VerticalAlignment as aR, NullValue as aS, ImageScalingScaling as aT, ImagePosition as aU, LayoutDataBackgroundType as aV, Origin as aW, BannerPosition as aX, BackdropType as aY, VerticalAlignmentAlignment as aZ, ResponsivenessBehaviour 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, TextAlignment as al, LineCap as am, LineStyle as an, Width as ao, DividerDataAlignment as ap, ViewMode as aq, LayoutType as ar, Orientation as as, Crop as at, ThumbnailsAlignment as au, GIFType as av, Source as aw, StylesPosition as ax, MapType as ay, ViewRole as az, type CreateCategoryApplicationErrors as b, type ItemDataOneOf as b$, Scaling as b0, ImagePositionPosition as b1, CardDataBackgroundType as b2, ListStyle as b3, Indentation as b4, SmartBlockDataType as b5, ColumnSize as b6, SingleEntityOpsRequestedFields as b7, SortOrder as b8, RequestedFields as b9, type Colors as bA, type Background as bB, type PluginContainerData as bC, type PluginContainerDataWidth as bD, type PluginContainerDataWidthDataOneOf as bE, type Spoiler as bF, type Height as bG, type Styles as bH, type Link as bI, type LinkDataOneOf as bJ, type Rel as bK, type Animation as bL, type EntranceAnimation as bM, type EntranceEffect as bN, type CodeBlockData as bO, type TextStyle as bP, type DividerData as bQ, type DividerDataStyles as bR, type FileData as bS, type FileSource as bT, type FileSourceDataOneOf as bU, type PDFSettings as bV, type GalleryData as bW, type Media as bX, type Image as bY, type Video as bZ, type Item as b_, SortType as ba, SortDirection as bb, MissingValues as bc, ScalarType as bd, NestedAggregationType as be, Interval as bf, AggregationType as bg, Mode as bh, Position as bi, MoveItemInCategoryRequestPosition as bj, WebhookIdentityType as bk, type BreadcrumbsInfo as bl, type Breadcrumb as bm, type ParentCategory as bn, type SeoSchema as bo, type Keyword as bp, type Tag as bq, type Settings as br, type RichContent as bs, type Node as bt, type NodeDataOneOf as bu, type NodeStyle as bv, type ButtonData as bw, type Gradient as bx, type Stop as by, type Border as bz, type CreateCategoryValidationErrors as c, type ListValue as c$, type GalleryOptions as c0, type GalleryOptionsLayout as c1, type ItemStyle as c2, type Thumbnails as c3, type GIFData as c4, type GIF as c5, type HeadingData as c6, type HTMLData as c7, type HTMLDataDataOneOf as c8, type ImageData as c9, type ColorData as cA, type LinkData as cB, type MentionData as cC, type FontSizeData as cD, type SpoilerData as cE, type FontFamilyData as cF, type SketchData as cG, type AppEmbedData as cH, type AppEmbedDataAppDataOneOf as cI, type BookingData as cJ, type EventData as cK, type ButtonStyles as cL, type ImageStyles as cM, type RibbonStyles as cN, type CardStyles as cO, type PricingData as cP, type VideoData as cQ, type PlaybackOptions as cR, type EmbedData as cS, type Oembed as cT, type CollapsibleListData as cU, type TableData as cV, type Dimensions as cW, type TableCellData as cX, type CellStyle as cY, type BorderColors as cZ, type BorderWidths as c_, type StylesBorder as ca, type ImageDataStyles as cb, type ImageDataCrop as cc, type LinkPreviewData as cd, type LinkPreviewDataStyles as ce, type MapData as cf, type MapSettings as cg, type ParagraphData as ch, type PollData as ci, type Permissions as cj, type Option as ck, type PollSettings as cl, type PollLayout as cm, type OptionLayout as cn, type BackgroundGradient as co, type PollDesignBackground as cp, type PollDesignBackgroundBackgroundOneOf as cq, type PollDesign as cr, type OptionDesign as cs, type Poll as ct, type PollDataLayout as cu, type Design as cv, type TextData as cw, type Decoration as cx, type DecorationDataOneOf as cy, type AnchorData as cz, type GetCategoryBySlugOptions as d, type CursorSearch as d$, type AudioData as d0, type OrderedListData as d1, type BulletedListData as d2, type BlockquoteData as d3, type CaptionData as d4, type LayoutData as d5, type LayoutDataBackground as d6, type LayoutDataBackgroundImage as d7, type Banner as d8, type Backdrop as d9, type ItemAddedToCategory as dA, type ItemsAddedToCategory as dB, type ItemRemovedFromCategory as dC, type ItemsRemovedFromCategory as dD, type ItemsArrangedInCategory as dE, type CreateCategoryRequest as dF, type CreateCategoryResponse as dG, type DuplicateHandleErrorData as dH, type GetCategoryRequest as dI, type GetCategoryResponse as dJ, type GetCategoryBySlugRequest as dK, type UpdateCategoryRequest as dL, type UpdateCategoryResponse as dM, type DeleteCategoryRequest as dN, type DeleteCategoryResponse as dO, type QueryCategoriesRequest as dP, type CursorQuery as dQ, type CursorQueryPagingMethodOneOf as dR, type Sorting as dS, type CursorPaging as dT, type QueryCategoriesResponse as dU, type CursorPagingMetadata as dV, type Cursors as dW, type ListCompactCategoriesByIdsRequest as dX, type ListCompactCategoriesByIdsResponse as dY, type CompactCategory as dZ, type SearchCategoriesRequest as d_, type LayoutCellData as da, type ShapeData as db, type ShapeDataStyles as dc, type CardData as dd, type CardDataBackground as de, type BackgroundImage as df, type TocData as dg, type SmartBlockData as dh, type SmartBlockCellData as di, type CheckboxListData as dj, type ListItemNodeData as dk, type Metadata as dl, type DocumentStyle as dm, type TextNodeStyle as dn, type ExtendedFields as dp, type InvalidateCache as dq, type InvalidateCacheGetByOneOf as dr, type App as ds, type Page as dt, type URI as du, type File as dv, type CustomTag as dw, type Pages as dx, type URIs as dy, type CategoryMoved as dz, type GetCategoryBySlugResponse as e, type ListTreesRequest as e$, type CursorSearchPagingMethodOneOf as e0, type Aggregation as e1, type AggregationKindOneOf as e2, type RangeBucket as e3, type IncludeMissingValuesOptions as e4, type ValueAggregation as e5, type ValueAggregationOptionsOneOf as e6, type RangeAggregation as e7, type ScalarAggregation as e8, type DateHistogramAggregation as e9, type OffsetSearch as eA, type OffsetSearchPagingMethodOneOf as eB, type Paging as eC, type DeprecatedSearchCategoriesWithOffsetResponse as eD, type PagingMetadata as eE, type CountCategoriesRequest as eF, type MoveCategoryRequest as eG, type BulkUpdateCategoriesRequest as eH, type BulkCategoriesResult as eI, type ItemMetadata as eJ, type ApplicationError as eK, type BulkActionMetadata as eL, type UpdateCategoryVisibilityRequest as eM, type BulkShowCategoriesRequest as eN, type BulkAddItemsToCategoryRequest as eO, type BulkItemsToCategoryResult as eP, type ItemReferenceMetadata as eQ, type BulkAddItemToCategoriesRequest as eR, type BulkItemToCategoriesResult as eS, type BulkRemoveItemsFromCategoryRequest as eT, type BulkRemoveItemFromCategoriesRequest as eU, type ListItemsInCategoryRequest as eV, type ListItemsInCategoryRequestPagingMethodOneOf as eW, type PagingMetadataV2 as eX, type ListCategoriesForItemRequest as eY, type ListCategoriesForItemsRequest as eZ, type MapItemToCategories as e_, type NestedAggregationItem as ea, type NestedAggregationItemKindOneOf as eb, type NestedAggregation as ec, type SearchDetails as ed, type AggregationData as ee, type ValueAggregationResult as ef, type RangeAggregationResult as eg, type NestedAggregationResults as eh, type NestedAggregationResultsResultOneOf as ei, type ValueResults as ej, type RangeResults as ek, type AggregationResultsScalarResult as el, type NestedValueAggregationResult as em, type ValueResult as en, type RangeResult as eo, type ScalarResult as ep, type NestedResultValue as eq, type NestedResultValueResultOneOf as er, type Results as es, type DateHistogramResult as et, type GroupByValueResults as eu, type DateHistogramResults as ev, type NestedResults as ew, type AggregationResults as ex, type AggregationResultsResultOneOf as ey, type DeprecatedSearchCategoriesWithOffsetRequest as ez, type UpdateCategoryOptions as f, type PollLayoutDirectionWithLiterals as f$, type MoveItemInCategoryRequest as f0, type MoveItemInCategoryResponse as f1, type SetArrangedItemsRequest as f2, type GetArrangedItemsRequest as f3, type BulkSetItemCategoriesRequest as f4, type BulkSetItemCategoriesResponse as f5, type GetCategoriesTreeRequest as f6, type GetCategoriesTreeResponse as f7, type CategoryTreeNode as f8, type DomainEvent as f9, utils as fA, type NodeTypeWithLiterals as fB, type BackgroundTypeWithLiterals as fC, type GradientTypeWithLiterals as fD, type WidthTypeWithLiterals as fE, type PluginContainerDataAlignmentWithLiterals as fF, type ButtonDataTypeWithLiterals as fG, type TargetWithLiterals as fH, type TypeWithLiterals as fI, type EntranceEffectTypeWithLiterals as fJ, type TextAlignmentWithLiterals as fK, type LineCapWithLiterals as fL, type LineStyleWithLiterals as fM, type WidthWithLiterals as fN, type DividerDataAlignmentWithLiterals as fO, type ViewModeWithLiterals as fP, type LayoutTypeWithLiterals as fQ, type OrientationWithLiterals as fR, type CropWithLiterals as fS, type ThumbnailsAlignmentWithLiterals as fT, type GIFTypeWithLiterals as fU, type SourceWithLiterals as fV, type StylesPositionWithLiterals as fW, type MapTypeWithLiterals as fX, type ViewRoleWithLiterals as fY, type VoteRoleWithLiterals as fZ, type PollLayoutTypeWithLiterals as f_, type DomainEventBodyOneOf as fa, type EntityCreatedEvent as fb, type RestoreInfo as fc, type EntityUpdatedEvent as fd, type EntityDeletedEvent as fe, type ActionEvent as ff, type Empty as fg, type BulkCreateCategoriesForMigrationRequest as fh, type BulkCreateCategoriesForMigrationResponse as fi, type BulkAddItemsToCategoryForMigrationRequest as fj, type BulkAddItemsToCategoryForMigrationResponse as fk, type SetArrangedItemsForMigrationRequest as fl, type SetArrangedItemsForMigrationResponse as fm, type CatalogRollbackRequested as fn, type MessageEnvelope as fo, type IdentificationData as fp, type IdentificationDataIdOneOf as fq, type AccountInfo as fr, type BaseEventMetadata as fs, type EventMetadata as ft, type AccountInfoMetadata as fu, type CategoriesQueryResult as fv, type CategoryQuerySpec as fw, type CategorySearchSpec as fx, type ListItemsInCategoryOptionsPagingMethodOneOf as fy, type BulkSetItemCategoriesOptions as fz, type UpdateCategoryApplicationErrors as g, moveCategory as g$, type PollDesignBackgroundTypeWithLiterals as g0, type DecorationTypeWithLiterals as g1, type FontTypeWithLiterals as g2, type VariantWithLiterals as g3, type ImageStylesPositionWithLiterals as g4, type AspectRatioWithLiterals as g5, type ResizingWithLiterals as g6, type PlacementWithLiterals as g7, type CardStylesTypeWithLiterals as g8, type AlignmentWithLiterals as g9, type SortDirectionWithLiterals as gA, type MissingValuesWithLiterals as gB, type ScalarTypeWithLiterals as gC, type NestedAggregationTypeWithLiterals as gD, type IntervalWithLiterals as gE, type AggregationTypeWithLiterals as gF, type ModeWithLiterals as gG, type PositionWithLiterals as gH, type MoveItemInCategoryRequestPositionWithLiterals as gI, type WebhookIdentityTypeWithLiterals as gJ, type BulkSetItemCategoriesApplicationErrors as gK, type CommonQueryWithEntityContext as gL, type CommonSearchWithEntityContext as gM, onCategoryMoved as gN, onCategoryCreated as gO, onCategoryDeleted as gP, onCategoryItemAddedToCategory as gQ, onCategoryItemRemovedFromCategory as gR, onCategoryItemsArrangedInCategory as gS, onCategoryUpdated as gT, createCategory as gU, getCategory as gV, getCategoryBySlug as gW, updateCategory as gX, deleteCategory as gY, queryCategories as gZ, countCategories as g_, type LayoutWithLiterals as ga, type AppTypeWithLiterals as gb, type InitialExpandedItemsWithLiterals as gc, type DirectionWithLiterals as gd, type VerticalAlignmentWithLiterals as ge, type NullValueWithLiterals as gf, type ImageScalingScalingWithLiterals as gg, type ImagePositionWithLiterals as gh, type LayoutDataBackgroundTypeWithLiterals as gi, type OriginWithLiterals as gj, type BannerPositionWithLiterals as gk, type BackdropTypeWithLiterals as gl, type VerticalAlignmentAlignmentWithLiterals as gm, type ResponsivenessBehaviourWithLiterals as gn, type DesignTargetWithLiterals as go, type ScalingWithLiterals as gp, type ImagePositionPositionWithLiterals as gq, type CardDataBackgroundTypeWithLiterals as gr, type ListStyleWithLiterals as gs, type IndentationWithLiterals as gt, type SmartBlockDataTypeWithLiterals as gu, type ColumnSizeWithLiterals as gv, type SingleEntityOpsRequestedFieldsWithLiterals as gw, type SortOrderWithLiterals as gx, type RequestedFieldsWithLiterals as gy, type SortTypeWithLiterals as gz, type UpdateCategoryValidationErrors as h, bulkUpdateCategories as h0, updateCategoryVisibility as h1, bulkShowCategories as h2, bulkAddItemsToCategory as h3, bulkAddItemToCategories as h4, bulkRemoveItemsFromCategory as h5, bulkRemoveItemFromCategories as h6, listItemsInCategory as h7, listCategoriesForItem as h8, listCategoriesForItems as h9, listTrees as ha, setArrangedItems as hb, getArrangedItems as hc, 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 };
6192
+ 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, ResponsivenessBehaviour 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, ViewRole as aA, VoteRole as aB, PollLayoutType as aC, PollLayoutDirection as aD, PollDesignBackgroundType as aE, DecorationType as aF, FontType as aG, Variant as aH, ImageStylesPosition as aI, AspectRatio as aJ, Resizing as aK, Placement as aL, CardStylesType as aM, Alignment as aN, Layout as aO, AppType as aP, InitialExpandedItems as aQ, Direction as aR, VerticalAlignment as aS, NullValue as aT, ImageScalingScaling as aU, ImagePosition as aV, LayoutDataBackgroundType as aW, Origin as aX, BannerPosition as aY, BackdropType as aZ, VerticalAlignmentAlignment 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, TextAlignment as am, LineCap as an, LineStyle as ao, Width as ap, DividerDataAlignment as aq, ViewMode as ar, LayoutType as as, Orientation as at, Crop as au, ThumbnailsAlignment as av, GIFType as aw, Source as ax, StylesPosition as ay, MapType as az, type CreateCategoryApplicationErrors as b, type Image as b$, DesignTarget as b0, Scaling as b1, ImagePositionPosition as b2, CardDataBackgroundType as b3, ListStyle as b4, Indentation as b5, SmartBlockDataType as b6, ColumnSize as b7, SingleEntityOpsRequestedFields as b8, SortOrder as b9, type Border as bA, type Colors as bB, type Background as bC, type PluginContainerData as bD, type PluginContainerDataWidth as bE, type PluginContainerDataWidthDataOneOf as bF, type Spoiler as bG, type Height as bH, type Styles as bI, type Link as bJ, type LinkDataOneOf as bK, type Rel as bL, type Animation as bM, type EntranceAnimation as bN, type EntranceEffect as bO, type LoopAnimation as bP, type LoopEffect as bQ, type CodeBlockData as bR, type TextStyle as bS, type DividerData as bT, type DividerDataStyles as bU, type FileData as bV, type FileSource as bW, type FileSourceDataOneOf as bX, type PDFSettings as bY, type GalleryData as bZ, type Media as b_, RequestedFields as ba, SortType as bb, SortDirection as bc, MissingValues as bd, ScalarType as be, NestedAggregationType as bf, Interval as bg, AggregationType as bh, Mode as bi, Position as bj, MoveItemInCategoryRequestPosition as bk, WebhookIdentityType as bl, type BreadcrumbsInfo as bm, type Breadcrumb as bn, type ParentCategory as bo, type SeoSchema as bp, type Keyword as bq, type Tag as br, type Settings as bs, type RichContent as bt, type Node as bu, type NodeDataOneOf as bv, type NodeStyle as bw, type ButtonData as bx, type Gradient as by, type Stop as bz, type CreateCategoryValidationErrors as c, type CellStyle as c$, type Video as c0, type Item as c1, type ItemDataOneOf as c2, type GalleryOptions as c3, type GalleryOptionsLayout as c4, type ItemStyle as c5, type Thumbnails as c6, type GIFData as c7, type GIF as c8, type HeadingData as c9, type Decoration as cA, type DecorationDataOneOf as cB, type AnchorData as cC, type ColorData as cD, type LinkData as cE, type MentionData as cF, type FontSizeData as cG, type SpoilerData as cH, type FontFamilyData as cI, type SketchData as cJ, type AppEmbedData as cK, type AppEmbedDataAppDataOneOf as cL, type BookingData as cM, type EventData as cN, type ButtonStyles as cO, type ImageStyles as cP, type RibbonStyles as cQ, type CardStyles as cR, type PricingData as cS, type VideoData as cT, type PlaybackOptions as cU, type EmbedData as cV, type Oembed as cW, type CollapsibleListData as cX, type TableData as cY, type Dimensions as cZ, type TableCellData as c_, type HTMLData as ca, type HTMLDataDataOneOf as cb, type ImageData as cc, type StylesBorder as cd, type ImageDataStyles as ce, type ImageDataCrop as cf, type LinkPreviewData as cg, type LinkPreviewDataStyles as ch, type MapData as ci, type MapSettings as cj, type ParagraphData as ck, type PollData as cl, type Permissions as cm, type Option as cn, type PollSettings as co, type PollLayout as cp, type OptionLayout as cq, type BackgroundGradient as cr, type PollDesignBackground as cs, type PollDesignBackgroundBackgroundOneOf as ct, type PollDesign as cu, type OptionDesign as cv, type Poll as cw, type PollDataLayout as cx, type Design as cy, type TextData as cz, type GetCategoryBySlugOptions as d, type ListCompactCategoriesByIdsResponse as d$, type BorderColors as d0, type BorderWidths as d1, type ListValue as d2, type AudioData as d3, type OrderedListData as d4, type BulletedListData as d5, type BlockquoteData as d6, type CaptionData as d7, type LayoutData as d8, type LayoutDataBackground as d9, type Pages as dA, type URIs as dB, type CategoryMoved as dC, type ItemAddedToCategory as dD, type ItemsAddedToCategory as dE, type ItemRemovedFromCategory as dF, type ItemsRemovedFromCategory as dG, type ItemsArrangedInCategory as dH, type CreateCategoryRequest as dI, type CreateCategoryResponse as dJ, type DuplicateHandleErrorData as dK, type GetCategoryRequest as dL, type GetCategoryResponse as dM, type GetCategoryBySlugRequest as dN, type UpdateCategoryRequest as dO, type UpdateCategoryResponse as dP, type DeleteCategoryRequest as dQ, type DeleteCategoryResponse as dR, type QueryCategoriesRequest as dS, type CursorQuery as dT, type CursorQueryPagingMethodOneOf as dU, type Sorting as dV, type CursorPaging as dW, type QueryCategoriesResponse as dX, type CursorPagingMetadata as dY, type Cursors as dZ, type ListCompactCategoriesByIdsRequest as d_, type LayoutDataBackgroundImage as da, type Banner as db, type Backdrop as dc, type LayoutCellData as dd, type ShapeData as de, type ShapeDataStyles as df, type CardData as dg, type CardDataBackground as dh, type BackgroundImage as di, type TocData as dj, type SmartBlockData as dk, type SmartBlockCellData as dl, type CheckboxListData as dm, type ListItemNodeData as dn, type Metadata as dp, type DocumentStyle as dq, type TextNodeStyle as dr, type ExtendedFields as ds, type InvalidateCache as dt, type InvalidateCacheGetByOneOf as du, type App as dv, type Page as dw, type URI as dx, type File as dy, type CustomTag as dz, type GetCategoryBySlugResponse as e, type ListCategoriesForItemRequest as e$, type CompactCategory as e0, type SearchCategoriesRequest as e1, type CursorSearch as e2, type CursorSearchPagingMethodOneOf as e3, type Aggregation as e4, type AggregationKindOneOf as e5, type RangeBucket as e6, type IncludeMissingValuesOptions as e7, type ValueAggregation as e8, type ValueAggregationOptionsOneOf as e9, type AggregationResults as eA, type AggregationResultsResultOneOf as eB, type DeprecatedSearchCategoriesWithOffsetRequest as eC, type OffsetSearch as eD, type OffsetSearchPagingMethodOneOf as eE, type Paging as eF, type DeprecatedSearchCategoriesWithOffsetResponse as eG, type PagingMetadata as eH, type CountCategoriesRequest as eI, type MoveCategoryRequest as eJ, type BulkUpdateCategoriesRequest as eK, type BulkCategoriesResult as eL, type ItemMetadata as eM, type ApplicationError as eN, type BulkActionMetadata as eO, type UpdateCategoryVisibilityRequest as eP, type BulkShowCategoriesRequest as eQ, type BulkAddItemsToCategoryRequest as eR, type BulkItemsToCategoryResult as eS, type ItemReferenceMetadata as eT, type BulkAddItemToCategoriesRequest as eU, type BulkItemToCategoriesResult as eV, type BulkRemoveItemsFromCategoryRequest as eW, type BulkRemoveItemFromCategoriesRequest as eX, type ListItemsInCategoryRequest as eY, type ListItemsInCategoryRequestPagingMethodOneOf as eZ, type PagingMetadataV2 as e_, type RangeAggregation as ea, type ScalarAggregation as eb, type DateHistogramAggregation as ec, type NestedAggregationItem as ed, type NestedAggregationItemKindOneOf as ee, type NestedAggregation as ef, type SearchDetails as eg, type AggregationData as eh, type ValueAggregationResult as ei, type RangeAggregationResult as ej, type NestedAggregationResults as ek, type NestedAggregationResultsResultOneOf as el, type ValueResults as em, type RangeResults as en, type AggregationResultsScalarResult as eo, type NestedValueAggregationResult as ep, type ValueResult as eq, type RangeResult as er, type ScalarResult as es, type NestedResultValue as et, type NestedResultValueResultOneOf as eu, type Results as ev, type DateHistogramResult as ew, type GroupByValueResults as ex, type DateHistogramResults as ey, type NestedResults as ez, type UpdateCategoryOptions as f, type MapTypeWithLiterals as f$, type ListCategoriesForItemsRequest as f0, type MapItemToCategories as f1, type ListTreesRequest as f2, type MoveItemInCategoryRequest as f3, type MoveItemInCategoryResponse as f4, type SetArrangedItemsRequest as f5, type GetArrangedItemsRequest as f6, type BulkSetItemCategoriesRequest as f7, type BulkSetItemCategoriesResponse as f8, type GetCategoriesTreeRequest as f9, type CategorySearchSpec as fA, type ListItemsInCategoryOptionsPagingMethodOneOf as fB, type BulkSetItemCategoriesOptions as fC, utils as fD, type NodeTypeWithLiterals as fE, type BackgroundTypeWithLiterals as fF, type GradientTypeWithLiterals as fG, type WidthTypeWithLiterals as fH, type PluginContainerDataAlignmentWithLiterals as fI, type ButtonDataTypeWithLiterals as fJ, type TargetWithLiterals as fK, type TypeWithLiterals as fL, type EntranceEffectTypeWithLiterals as fM, type LoopEffectTypeWithLiterals as fN, type TextAlignmentWithLiterals as fO, type LineCapWithLiterals as fP, type LineStyleWithLiterals as fQ, type WidthWithLiterals as fR, type DividerDataAlignmentWithLiterals as fS, type ViewModeWithLiterals as fT, type LayoutTypeWithLiterals as fU, type OrientationWithLiterals as fV, type CropWithLiterals as fW, type ThumbnailsAlignmentWithLiterals as fX, type GIFTypeWithLiterals as fY, type SourceWithLiterals as fZ, type StylesPositionWithLiterals as f_, type GetCategoriesTreeResponse as fa, type CategoryTreeNode as fb, type DomainEvent as fc, type DomainEventBodyOneOf as fd, type EntityCreatedEvent as fe, type RestoreInfo as ff, type EntityUpdatedEvent as fg, type EntityDeletedEvent as fh, type ActionEvent as fi, type Empty as fj, type BulkCreateCategoriesForMigrationRequest as fk, type BulkCreateCategoriesForMigrationResponse as fl, type BulkAddItemsToCategoryForMigrationRequest as fm, type BulkAddItemsToCategoryForMigrationResponse as fn, type SetArrangedItemsForMigrationRequest as fo, type SetArrangedItemsForMigrationResponse as fp, type CatalogRollbackRequested as fq, type MessageEnvelope as fr, type IdentificationData as fs, type IdentificationDataIdOneOf as ft, type AccountInfo as fu, type BaseEventMetadata as fv, type EventMetadata as fw, type AccountInfoMetadata as fx, type CategoriesQueryResult as fy, type CategoryQuerySpec as fz, type UpdateCategoryApplicationErrors as g, updateCategory as g$, type ViewRoleWithLiterals as g0, type VoteRoleWithLiterals as g1, type PollLayoutTypeWithLiterals as g2, type PollLayoutDirectionWithLiterals as g3, type PollDesignBackgroundTypeWithLiterals as g4, type DecorationTypeWithLiterals as g5, type FontTypeWithLiterals as g6, type VariantWithLiterals as g7, type ImageStylesPositionWithLiterals as g8, type AspectRatioWithLiterals as g9, type SingleEntityOpsRequestedFieldsWithLiterals as gA, type SortOrderWithLiterals as gB, type RequestedFieldsWithLiterals as gC, type SortTypeWithLiterals as gD, type SortDirectionWithLiterals as gE, type MissingValuesWithLiterals as gF, type ScalarTypeWithLiterals as gG, type NestedAggregationTypeWithLiterals as gH, type IntervalWithLiterals as gI, type AggregationTypeWithLiterals as gJ, type ModeWithLiterals as gK, type PositionWithLiterals as gL, type MoveItemInCategoryRequestPositionWithLiterals as gM, type WebhookIdentityTypeWithLiterals as gN, type BulkSetItemCategoriesApplicationErrors as gO, type CommonQueryWithEntityContext as gP, type CommonSearchWithEntityContext as gQ, onCategoryMoved as gR, onCategoryCreated as gS, onCategoryDeleted as gT, onCategoryItemAddedToCategory as gU, onCategoryItemRemovedFromCategory as gV, onCategoryItemsArrangedInCategory as gW, onCategoryUpdated as gX, createCategory as gY, getCategory as gZ, getCategoryBySlug as g_, type ResizingWithLiterals as ga, type PlacementWithLiterals as gb, type CardStylesTypeWithLiterals as gc, type AlignmentWithLiterals as gd, type LayoutWithLiterals as ge, type AppTypeWithLiterals as gf, type InitialExpandedItemsWithLiterals as gg, type DirectionWithLiterals as gh, type VerticalAlignmentWithLiterals as gi, type NullValueWithLiterals as gj, type ImageScalingScalingWithLiterals as gk, type ImagePositionWithLiterals as gl, type LayoutDataBackgroundTypeWithLiterals as gm, type OriginWithLiterals as gn, type BannerPositionWithLiterals as go, type BackdropTypeWithLiterals as gp, type VerticalAlignmentAlignmentWithLiterals as gq, type ResponsivenessBehaviourWithLiterals as gr, type DesignTargetWithLiterals as gs, type ScalingWithLiterals as gt, type ImagePositionPositionWithLiterals as gu, type CardDataBackgroundTypeWithLiterals as gv, type ListStyleWithLiterals as gw, type IndentationWithLiterals as gx, type SmartBlockDataTypeWithLiterals as gy, type ColumnSizeWithLiterals as gz, type UpdateCategoryValidationErrors as h, deleteCategory as h0, queryCategories as h1, countCategories as h2, moveCategory as h3, bulkUpdateCategories as h4, updateCategoryVisibility as h5, bulkShowCategories as h6, bulkAddItemsToCategory as h7, bulkAddItemToCategories as h8, bulkRemoveItemsFromCategory as h9, bulkRemoveItemFromCategories as ha, listItemsInCategory as hb, listCategoriesForItem as hc, listCategoriesForItems as hd, listTrees as he, setArrangedItems as hf, getArrangedItems as hg, 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-1V0z-nfC.js';
3
- export { fr as AccountInfo, fu as AccountInfoMetadata, ff as ActionEvent, e1 as Aggregation, ee as AggregationData, e2 as AggregationKindOneOf, ex as AggregationResults, ey as AggregationResultsResultOneOf, el as AggregationResultsScalarResult, bg as AggregationType, gF as AggregationTypeWithLiterals, aM as Alignment, g9 as AlignmentWithLiterals, cz as AnchorData, bL as Animation, ds as App, cH as AppEmbedData, cI as AppEmbedDataAppDataOneOf, aO as AppType, gb as AppTypeWithLiterals, eK as ApplicationError, aI as AspectRatio, g5 as AspectRatioWithLiterals, d0 as AudioData, d9 as Backdrop, aY as BackdropType, gl as BackdropTypeWithLiterals, bB as Background, co as BackgroundGradient, df as BackgroundImage, ad as BackgroundType, fC as BackgroundTypeWithLiterals, d8 as Banner, aX as BannerPosition, gk as BannerPositionWithLiterals, fs as BaseEventMetadata, d3 as BlockquoteData, cJ as BookingData, bz as Border, cZ as BorderColors, c_ as BorderWidths, bm as Breadcrumb, bl as BreadcrumbsInfo, eL as BulkActionMetadata, eR as BulkAddItemToCategoriesRequest, fj as BulkAddItemsToCategoryForMigrationRequest, fk as BulkAddItemsToCategoryForMigrationResponse, eO as BulkAddItemsToCategoryRequest, eI as BulkCategoriesResult, fh as BulkCreateCategoriesForMigrationRequest, fi as BulkCreateCategoriesForMigrationResponse, eS as BulkItemToCategoriesResult, eP as BulkItemsToCategoryResult, eU as BulkRemoveItemFromCategoriesRequest, eT as BulkRemoveItemsFromCategoryRequest, gK as BulkSetItemCategoriesApplicationErrors, fz as BulkSetItemCategoriesOptions, f4 as BulkSetItemCategoriesRequest, f5 as BulkSetItemCategoriesResponse, eN as BulkShowCategoriesRequest, eH as BulkUpdateCategoriesRequest, d2 as BulletedListData, bw as ButtonData, ah as ButtonDataType, fG as ButtonDataTypeWithLiterals, cL as ButtonStyles, d4 as CaptionData, dd as CardData, de as CardDataBackground, b2 as CardDataBackgroundType, gr as CardDataBackgroundTypeWithLiterals, cO as CardStyles, aL as CardStylesType, g8 as CardStylesTypeWithLiterals, fn as CatalogRollbackRequested, fv as CategoriesQueryResult, dz as CategoryMoved, fw as CategoryQuerySpec, fx as CategorySearchSpec, f8 as CategoryTreeNode, cY as CellStyle, dj as CheckboxListData, bO as CodeBlockData, cU as CollapsibleListData, cA as ColorData, bA as Colors, b6 as ColumnSize, gv as ColumnSizeWithLiterals, gL as CommonQueryWithEntityContext, gM as CommonSearchWithEntityContext, dZ as CompactCategory, eF as CountCategoriesRequest, dF as CreateCategoryRequest, dG as CreateCategoryResponse, at as Crop, fS as CropWithLiterals, dT as CursorPaging, dV as CursorPagingMetadata, dQ as CursorQuery, dR as CursorQueryPagingMethodOneOf, d$ as CursorSearch, e0 as CursorSearchPagingMethodOneOf, dW as Cursors, dw as CustomTag, e9 as DateHistogramAggregation, et as DateHistogramResult, ev as DateHistogramResults, cx as Decoration, cy as DecorationDataOneOf, aE as DecorationType, g1 as DecorationTypeWithLiterals, dN as DeleteCategoryRequest, dO as DeleteCategoryResponse, ez as DeprecatedSearchCategoriesWithOffsetRequest, eD as DeprecatedSearchCategoriesWithOffsetResponse, cv as Design, a$ as DesignTarget, go as DesignTargetWithLiterals, cW as Dimensions, aQ as Direction, gd as DirectionWithLiterals, bQ as DividerData, ap as DividerDataAlignment, fO as DividerDataAlignmentWithLiterals, bR as DividerDataStyles, dm as DocumentStyle, f9 as DomainEvent, fa as DomainEventBodyOneOf, dH as DuplicateHandleErrorData, cS as EmbedData, fg as Empty, fb as EntityCreatedEvent, fe as EntityDeletedEvent, fd as EntityUpdatedEvent, bM as EntranceAnimation, bN as EntranceEffect, ak as EntranceEffectType, fJ as EntranceEffectTypeWithLiterals, cK as EventData, ft as EventMetadata, dp as ExtendedFields, dv as File, bS as FileData, bT as FileSource, bU as FileSourceDataOneOf, cF as FontFamilyData, cD as FontSizeData, aF as FontType, g2 as FontTypeWithLiterals, c5 as GIF, c4 as GIFData, av as GIFType, fU as GIFTypeWithLiterals, bW as GalleryData, c0 as GalleryOptions, c1 as GalleryOptionsLayout, f3 as GetArrangedItemsRequest, f6 as GetCategoriesTreeRequest, f7 as GetCategoriesTreeResponse, dK as GetCategoryBySlugRequest, dI as GetCategoryRequest, dJ as GetCategoryResponse, bx as Gradient, ae as GradientType, fD as GradientTypeWithLiterals, eu as GroupByValueResults, c7 as HTMLData, c8 as HTMLDataDataOneOf, c6 as HeadingData, bG as Height, fp as IdentificationData, fq as IdentificationDataIdOneOf, bY as Image, c9 as ImageData, cc as ImageDataCrop, cb as ImageDataStyles, aU as ImagePosition, b1 as ImagePositionPosition, gq as ImagePositionPositionWithLiterals, gh as ImagePositionWithLiterals, aT as ImageScalingScaling, gg as ImageScalingScalingWithLiterals, cM as ImageStyles, aH as ImageStylesPosition, g4 as ImageStylesPositionWithLiterals, e4 as IncludeMissingValuesOptions, b4 as Indentation, gt as IndentationWithLiterals, aP as InitialExpandedItems, gc as InitialExpandedItemsWithLiterals, bf as Interval, gE as IntervalWithLiterals, dq as InvalidateCache, dr as InvalidateCacheGetByOneOf, b_ as Item, dA as ItemAddedToCategory, b$ as ItemDataOneOf, eJ as ItemMetadata, eQ as ItemReferenceMetadata, dC as ItemRemovedFromCategory, c2 as ItemStyle, dB as ItemsAddedToCategory, dE as ItemsArrangedInCategory, dD as ItemsRemovedFromCategory, bp as Keyword, aN as Layout, da as LayoutCellData, d5 as LayoutData, d6 as LayoutDataBackground, d7 as LayoutDataBackgroundImage, aV as LayoutDataBackgroundType, gi as LayoutDataBackgroundTypeWithLiterals, ar as LayoutType, fQ as LayoutTypeWithLiterals, ga as LayoutWithLiterals, am as LineCap, fL as LineCapWithLiterals, an as LineStyle, fM as LineStyleWithLiterals, bI as Link, cB as LinkData, bJ as LinkDataOneOf, cd as LinkPreviewData, ce as LinkPreviewDataStyles, eY as ListCategoriesForItemRequest, eZ as ListCategoriesForItemsRequest, dX as ListCompactCategoriesByIdsRequest, dY as ListCompactCategoriesByIdsResponse, dk as ListItemNodeData, fy as ListItemsInCategoryOptionsPagingMethodOneOf, eV as ListItemsInCategoryRequest, eW as ListItemsInCategoryRequestPagingMethodOneOf, b3 as ListStyle, gs as ListStyleWithLiterals, e$ as ListTreesRequest, c$ as ListValue, cf as MapData, e_ as MapItemToCategories, cg as MapSettings, ay as MapType, fX as MapTypeWithLiterals, bX as Media, cC as MentionData, fo as MessageEnvelope, dl as Metadata, bc as MissingValues, gB as MissingValuesWithLiterals, bh as Mode, gG as ModeWithLiterals, eG as MoveCategoryRequest, f0 as MoveItemInCategoryRequest, bj as MoveItemInCategoryRequestPosition, gI as MoveItemInCategoryRequestPositionWithLiterals, f1 as MoveItemInCategoryResponse, ec as NestedAggregation, ea as NestedAggregationItem, eb as NestedAggregationItemKindOneOf, eh as NestedAggregationResults, ei as NestedAggregationResultsResultOneOf, be as NestedAggregationType, gD as NestedAggregationTypeWithLiterals, eq as NestedResultValue, er as NestedResultValueResultOneOf, ew as NestedResults, em as NestedValueAggregationResult, bt as Node, bu as NodeDataOneOf, bv as NodeStyle, ac as NodeType, fB as NodeTypeWithLiterals, aS as NullValue, gf as NullValueWithLiterals, cT as Oembed, eA as OffsetSearch, eB as OffsetSearchPagingMethodOneOf, ck as Option, cs as OptionDesign, cn as OptionLayout, d1 as OrderedListData, as as Orientation, fR as OrientationWithLiterals, aW as Origin, gj as OriginWithLiterals, bV as PDFSettings, dt as Page, dx as Pages, eC as Paging, eE as PagingMetadata, eX as PagingMetadataV2, ch as ParagraphData, bn as ParentCategory, cj as Permissions, aK as Placement, g7 as PlacementWithLiterals, cR as PlaybackOptions, bC as PluginContainerData, ag as PluginContainerDataAlignment, fF as PluginContainerDataAlignmentWithLiterals, bD as PluginContainerDataWidth, bE as PluginContainerDataWidthDataOneOf, ct as Poll, ci as PollData, cu as PollDataLayout, cr as PollDesign, cp as PollDesignBackground, cq as PollDesignBackgroundBackgroundOneOf, aD as PollDesignBackgroundType, g0 as PollDesignBackgroundTypeWithLiterals, cm as PollLayout, aC as PollLayoutDirection, f$ as PollLayoutDirectionWithLiterals, aB as PollLayoutType, f_ as PollLayoutTypeWithLiterals, cl as PollSettings, bi as Position, gH as PositionWithLiterals, cP as PricingData, dP as QueryCategoriesRequest, dU as QueryCategoriesResponse, e7 as RangeAggregation, eg as RangeAggregationResult, e3 as RangeBucket, eo as RangeResult, ek as RangeResults, bK as Rel, b9 as RequestedFields, gy as RequestedFieldsWithLiterals, aJ as Resizing, g6 as ResizingWithLiterals, a_ as ResponsivenessBehaviour, gn as ResponsivenessBehaviourWithLiterals, fc as RestoreInfo, es as Results, cN as RibbonStyles, bs as RichContent, e8 as ScalarAggregation, ep as ScalarResult, bd as ScalarType, gC as ScalarTypeWithLiterals, b0 as Scaling, gp as ScalingWithLiterals, d_ as SearchCategoriesRequest, ed as SearchDetails, bo as SeoSchema, fl as SetArrangedItemsForMigrationRequest, fm as SetArrangedItemsForMigrationResponse, f2 as SetArrangedItemsRequest, br as Settings, db as ShapeData, dc as ShapeDataStyles, b7 as SingleEntityOpsRequestedFields, gw as SingleEntityOpsRequestedFieldsWithLiterals, cG as SketchData, di as SmartBlockCellData, dh as SmartBlockData, b5 as SmartBlockDataType, gu as SmartBlockDataTypeWithLiterals, bb as SortDirection, gA as SortDirectionWithLiterals, b8 as SortOrder, gx as SortOrderWithLiterals, ba as SortType, gz as SortTypeWithLiterals, dS as Sorting, aw as Source, fV as SourceWithLiterals, bF as Spoiler, cE as SpoilerData, by as Stop, bH as Styles, ca as StylesBorder, ax as StylesPosition, fW as StylesPositionWithLiterals, cX as TableCellData, cV as TableData, bq as Tag, ai as Target, fH as TargetWithLiterals, al as TextAlignment, fK as TextAlignmentWithLiterals, cw as TextData, dn as TextNodeStyle, bP as TextStyle, c3 as Thumbnails, au as ThumbnailsAlignment, fT as ThumbnailsAlignmentWithLiterals, dg as TocData, aj as Type, fI as TypeWithLiterals, du as URI, dy as URIs, dL as UpdateCategoryRequest, dM as UpdateCategoryResponse, eM as UpdateCategoryVisibilityRequest, e5 as ValueAggregation, e6 as ValueAggregationOptionsOneOf, ef as ValueAggregationResult, en as ValueResult, ej as ValueResults, aG as Variant, g3 as VariantWithLiterals, aR as VerticalAlignment, aZ as VerticalAlignmentAlignment, gm as VerticalAlignmentAlignmentWithLiterals, ge as VerticalAlignmentWithLiterals, bZ as Video, cQ as VideoData, aq as ViewMode, fP as ViewModeWithLiterals, az as ViewRole, fY as ViewRoleWithLiterals, aA as VoteRole, fZ as VoteRoleWithLiterals, bk as WebhookIdentityType, gJ as WebhookIdentityTypeWithLiterals, ao as Width, af as WidthType, fE as WidthTypeWithLiterals, fN as WidthWithLiterals, fA as utils } from './categories-v1-category-categories.universal-1V0z-nfC.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-Cy-lRfCS.js';
3
+ export { fu as AccountInfo, fx as AccountInfoMetadata, fi as ActionEvent, e4 as Aggregation, eh as AggregationData, e5 as AggregationKindOneOf, eA as AggregationResults, eB as AggregationResultsResultOneOf, eo as AggregationResultsScalarResult, bh as AggregationType, gJ as AggregationTypeWithLiterals, aN as Alignment, gd as AlignmentWithLiterals, cC as AnchorData, bM as Animation, dv as App, cK as AppEmbedData, cL as AppEmbedDataAppDataOneOf, aP as AppType, gf as AppTypeWithLiterals, eN as ApplicationError, aJ as AspectRatio, g9 as AspectRatioWithLiterals, d3 as AudioData, dc as Backdrop, aZ as BackdropType, gp as BackdropTypeWithLiterals, bC as Background, cr as BackgroundGradient, di as BackgroundImage, ad as BackgroundType, fF as BackgroundTypeWithLiterals, db as Banner, aY as BannerPosition, go as BannerPositionWithLiterals, fv as BaseEventMetadata, d6 as BlockquoteData, cM as BookingData, bA as Border, d0 as BorderColors, d1 as BorderWidths, bn as Breadcrumb, bm as BreadcrumbsInfo, eO as BulkActionMetadata, eU as BulkAddItemToCategoriesRequest, fm as BulkAddItemsToCategoryForMigrationRequest, fn as BulkAddItemsToCategoryForMigrationResponse, eR as BulkAddItemsToCategoryRequest, eL as BulkCategoriesResult, fk as BulkCreateCategoriesForMigrationRequest, fl as BulkCreateCategoriesForMigrationResponse, eV as BulkItemToCategoriesResult, eS as BulkItemsToCategoryResult, eX as BulkRemoveItemFromCategoriesRequest, eW as BulkRemoveItemsFromCategoryRequest, gO as BulkSetItemCategoriesApplicationErrors, fC as BulkSetItemCategoriesOptions, f7 as BulkSetItemCategoriesRequest, f8 as BulkSetItemCategoriesResponse, eQ as BulkShowCategoriesRequest, eK as BulkUpdateCategoriesRequest, d5 as BulletedListData, bx as ButtonData, ah as ButtonDataType, fJ as ButtonDataTypeWithLiterals, cO as ButtonStyles, d7 as CaptionData, dg as CardData, dh as CardDataBackground, b3 as CardDataBackgroundType, gv as CardDataBackgroundTypeWithLiterals, cR as CardStyles, aM as CardStylesType, gc as CardStylesTypeWithLiterals, fq as CatalogRollbackRequested, fy as CategoriesQueryResult, dC as CategoryMoved, fz as CategoryQuerySpec, fA as CategorySearchSpec, fb as CategoryTreeNode, c$ as CellStyle, dm as CheckboxListData, bR as CodeBlockData, cX as CollapsibleListData, cD as ColorData, bB as Colors, b7 as ColumnSize, gz as ColumnSizeWithLiterals, gP as CommonQueryWithEntityContext, gQ as CommonSearchWithEntityContext, e0 as CompactCategory, eI as CountCategoriesRequest, dI as CreateCategoryRequest, dJ as CreateCategoryResponse, au as Crop, fW as CropWithLiterals, dW as CursorPaging, dY as CursorPagingMetadata, dT as CursorQuery, dU as CursorQueryPagingMethodOneOf, e2 as CursorSearch, e3 as CursorSearchPagingMethodOneOf, dZ as Cursors, dz as CustomTag, ec as DateHistogramAggregation, ew as DateHistogramResult, ey as DateHistogramResults, cA as Decoration, cB as DecorationDataOneOf, aF as DecorationType, g5 as DecorationTypeWithLiterals, dQ as DeleteCategoryRequest, dR as DeleteCategoryResponse, eC as DeprecatedSearchCategoriesWithOffsetRequest, eG as DeprecatedSearchCategoriesWithOffsetResponse, cy as Design, b0 as DesignTarget, gs as DesignTargetWithLiterals, cZ as Dimensions, aR as Direction, gh as DirectionWithLiterals, bT as DividerData, aq as DividerDataAlignment, fS as DividerDataAlignmentWithLiterals, bU as DividerDataStyles, dq as DocumentStyle, fc as DomainEvent, fd as DomainEventBodyOneOf, dK as DuplicateHandleErrorData, cV as EmbedData, fj as Empty, fe as EntityCreatedEvent, fh as EntityDeletedEvent, fg as EntityUpdatedEvent, bN as EntranceAnimation, bO as EntranceEffect, ak as EntranceEffectType, fM as EntranceEffectTypeWithLiterals, cN as EventData, fw as EventMetadata, ds as ExtendedFields, dy as File, bV as FileData, bW as FileSource, bX as FileSourceDataOneOf, cI as FontFamilyData, cG as FontSizeData, aG as FontType, g6 as FontTypeWithLiterals, c8 as GIF, c7 as GIFData, aw as GIFType, fY as GIFTypeWithLiterals, bZ as GalleryData, c3 as GalleryOptions, c4 as GalleryOptionsLayout, f6 as GetArrangedItemsRequest, f9 as GetCategoriesTreeRequest, fa as GetCategoriesTreeResponse, dN as GetCategoryBySlugRequest, dL as GetCategoryRequest, dM as GetCategoryResponse, by as Gradient, ae as GradientType, fG as GradientTypeWithLiterals, ex as GroupByValueResults, ca as HTMLData, cb as HTMLDataDataOneOf, c9 as HeadingData, bH as Height, fs as IdentificationData, ft as IdentificationDataIdOneOf, b$ as Image, cc as ImageData, cf as ImageDataCrop, ce as ImageDataStyles, aV as ImagePosition, b2 as ImagePositionPosition, gu as ImagePositionPositionWithLiterals, gl as ImagePositionWithLiterals, aU as ImageScalingScaling, gk as ImageScalingScalingWithLiterals, cP as ImageStyles, aI as ImageStylesPosition, g8 as ImageStylesPositionWithLiterals, e7 as IncludeMissingValuesOptions, b5 as Indentation, gx as IndentationWithLiterals, aQ as InitialExpandedItems, gg as InitialExpandedItemsWithLiterals, bg as Interval, gI as IntervalWithLiterals, dt as InvalidateCache, du as InvalidateCacheGetByOneOf, c1 as Item, dD as ItemAddedToCategory, c2 as ItemDataOneOf, eM as ItemMetadata, eT as ItemReferenceMetadata, dF as ItemRemovedFromCategory, c5 as ItemStyle, dE as ItemsAddedToCategory, dH as ItemsArrangedInCategory, dG as ItemsRemovedFromCategory, bq as Keyword, aO as Layout, dd as LayoutCellData, d8 as LayoutData, d9 as LayoutDataBackground, da as LayoutDataBackgroundImage, aW as LayoutDataBackgroundType, gm as LayoutDataBackgroundTypeWithLiterals, as as LayoutType, fU as LayoutTypeWithLiterals, ge as LayoutWithLiterals, an as LineCap, fP as LineCapWithLiterals, ao as LineStyle, fQ as LineStyleWithLiterals, bJ as Link, cE as LinkData, bK as LinkDataOneOf, cg as LinkPreviewData, ch as LinkPreviewDataStyles, e$ as ListCategoriesForItemRequest, f0 as ListCategoriesForItemsRequest, d_ as ListCompactCategoriesByIdsRequest, d$ as ListCompactCategoriesByIdsResponse, dn as ListItemNodeData, fB as ListItemsInCategoryOptionsPagingMethodOneOf, eY as ListItemsInCategoryRequest, eZ as ListItemsInCategoryRequestPagingMethodOneOf, b4 as ListStyle, gw as ListStyleWithLiterals, f2 as ListTreesRequest, d2 as ListValue, bP as LoopAnimation, bQ as LoopEffect, al as LoopEffectType, fN as LoopEffectTypeWithLiterals, ci as MapData, f1 as MapItemToCategories, cj as MapSettings, az as MapType, f$ as MapTypeWithLiterals, b_ as Media, cF as MentionData, fr as MessageEnvelope, dp as Metadata, bd as MissingValues, gF as MissingValuesWithLiterals, bi as Mode, gK as ModeWithLiterals, eJ as MoveCategoryRequest, f3 as MoveItemInCategoryRequest, bk as MoveItemInCategoryRequestPosition, gM as MoveItemInCategoryRequestPositionWithLiterals, f4 as MoveItemInCategoryResponse, ef as NestedAggregation, ed as NestedAggregationItem, ee as NestedAggregationItemKindOneOf, ek as NestedAggregationResults, el as NestedAggregationResultsResultOneOf, bf as NestedAggregationType, gH as NestedAggregationTypeWithLiterals, et as NestedResultValue, eu as NestedResultValueResultOneOf, ez as NestedResults, ep as NestedValueAggregationResult, bu as Node, bv as NodeDataOneOf, bw as NodeStyle, ac as NodeType, fE as NodeTypeWithLiterals, aT as NullValue, gj as NullValueWithLiterals, cW as Oembed, eD as OffsetSearch, eE as OffsetSearchPagingMethodOneOf, cn as Option, cv as OptionDesign, cq as OptionLayout, d4 as OrderedListData, at as Orientation, fV as OrientationWithLiterals, aX as Origin, gn as OriginWithLiterals, bY as PDFSettings, dw as Page, dA as Pages, eF as Paging, eH as PagingMetadata, e_ as PagingMetadataV2, ck as ParagraphData, bo as ParentCategory, cm as Permissions, aL as Placement, gb as PlacementWithLiterals, cU as PlaybackOptions, bD as PluginContainerData, ag as PluginContainerDataAlignment, fI as PluginContainerDataAlignmentWithLiterals, bE as PluginContainerDataWidth, bF as PluginContainerDataWidthDataOneOf, cw as Poll, cl as PollData, cx as PollDataLayout, cu as PollDesign, cs as PollDesignBackground, ct as PollDesignBackgroundBackgroundOneOf, aE as PollDesignBackgroundType, g4 as PollDesignBackgroundTypeWithLiterals, cp as PollLayout, aD as PollLayoutDirection, g3 as PollLayoutDirectionWithLiterals, aC as PollLayoutType, g2 as PollLayoutTypeWithLiterals, co as PollSettings, bj as Position, gL as PositionWithLiterals, cS as PricingData, dS as QueryCategoriesRequest, dX as QueryCategoriesResponse, ea as RangeAggregation, ej as RangeAggregationResult, e6 as RangeBucket, er as RangeResult, en as RangeResults, bL as Rel, ba as RequestedFields, gC as RequestedFieldsWithLiterals, aK as Resizing, ga as ResizingWithLiterals, a$ as ResponsivenessBehaviour, gr as ResponsivenessBehaviourWithLiterals, ff as RestoreInfo, ev as Results, cQ as RibbonStyles, bt as RichContent, eb as ScalarAggregation, es as ScalarResult, be as ScalarType, gG as ScalarTypeWithLiterals, b1 as Scaling, gt as ScalingWithLiterals, e1 as SearchCategoriesRequest, eg as SearchDetails, bp as SeoSchema, fo as SetArrangedItemsForMigrationRequest, fp as SetArrangedItemsForMigrationResponse, f5 as SetArrangedItemsRequest, bs as Settings, de as ShapeData, df as ShapeDataStyles, b8 as SingleEntityOpsRequestedFields, gA as SingleEntityOpsRequestedFieldsWithLiterals, cJ as SketchData, dl as SmartBlockCellData, dk as SmartBlockData, b6 as SmartBlockDataType, gy as SmartBlockDataTypeWithLiterals, bc as SortDirection, gE as SortDirectionWithLiterals, b9 as SortOrder, gB as SortOrderWithLiterals, bb as SortType, gD as SortTypeWithLiterals, dV as Sorting, ax as Source, fZ as SourceWithLiterals, bG as Spoiler, cH as SpoilerData, bz as Stop, bI as Styles, cd as StylesBorder, ay as StylesPosition, f_ as StylesPositionWithLiterals, c_ as TableCellData, cY as TableData, br as Tag, ai as Target, fK as TargetWithLiterals, am as TextAlignment, fO as TextAlignmentWithLiterals, cz as TextData, dr as TextNodeStyle, bS as TextStyle, c6 as Thumbnails, av as ThumbnailsAlignment, fX as ThumbnailsAlignmentWithLiterals, dj as TocData, aj as Type, fL as TypeWithLiterals, dx as URI, dB as URIs, dO as UpdateCategoryRequest, dP as UpdateCategoryResponse, eP as UpdateCategoryVisibilityRequest, e8 as ValueAggregation, e9 as ValueAggregationOptionsOneOf, ei as ValueAggregationResult, eq as ValueResult, em as ValueResults, aH as Variant, g7 as VariantWithLiterals, aS as VerticalAlignment, a_ as VerticalAlignmentAlignment, gq as VerticalAlignmentAlignmentWithLiterals, gi as VerticalAlignmentWithLiterals, c0 as Video, cT as VideoData, ar as ViewMode, fT as ViewModeWithLiterals, aA as ViewRole, g0 as ViewRoleWithLiterals, aB as VoteRole, g1 as VoteRoleWithLiterals, bl as WebhookIdentityType, gN as WebhookIdentityTypeWithLiterals, ap as Width, af as WidthType, fH as WidthTypeWithLiterals, fR as WidthWithLiterals, fD as utils } from './categories-v1-category-categories.universal-Cy-lRfCS.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -53,6 +53,7 @@ __export(index_exports, {
53
53
  LineCap: () => LineCap,
54
54
  LineStyle: () => LineStyle,
55
55
  ListStyle: () => ListStyle,
56
+ LoopEffectType: () => LoopEffectType,
56
57
  MapType: () => MapType,
57
58
  MissingValues: () => MissingValues,
58
59
  Mode: () => Mode,
@@ -2902,6 +2903,22 @@ var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
2902
2903
  EntranceEffectType2["WINK"] = "WINK";
2903
2904
  return EntranceEffectType2;
2904
2905
  })(EntranceEffectType || {});
2906
+ var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
2907
+ LoopEffectType2["BOUNCE"] = "BOUNCE";
2908
+ LoopEffectType2["BREATHE"] = "BREATHE";
2909
+ LoopEffectType2["CROSS"] = "CROSS";
2910
+ LoopEffectType2["FLASH"] = "FLASH";
2911
+ LoopEffectType2["FLIP"] = "FLIP";
2912
+ LoopEffectType2["FOLD"] = "FOLD";
2913
+ LoopEffectType2["JELLO"] = "JELLO";
2914
+ LoopEffectType2["POKE"] = "POKE";
2915
+ LoopEffectType2["PULSE"] = "PULSE";
2916
+ LoopEffectType2["RUBBER"] = "RUBBER";
2917
+ LoopEffectType2["SPIN"] = "SPIN";
2918
+ LoopEffectType2["SWING"] = "SWING";
2919
+ LoopEffectType2["WIGGLE"] = "WIGGLE";
2920
+ return LoopEffectType2;
2921
+ })(LoopEffectType || {});
2905
2922
  var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
2906
2923
  TextAlignment2["AUTO"] = "AUTO";
2907
2924
  TextAlignment2["LEFT"] = "LEFT";
@@ -5247,6 +5264,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
5247
5264
  LineCap,
5248
5265
  LineStyle,
5249
5266
  ListStyle,
5267
+ LoopEffectType,
5250
5268
  MapType,
5251
5269
  MissingValues,
5252
5270
  Mode,