@wix/auto_sdk_categories_categories 1.0.127 → 1.0.129

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-BqNrYmWe.d.ts → categories-v1-category-categories.universal-DibWCZU9.d.ts} +31 -15
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +7 -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 +7 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +32 -2
  9. package/build/cjs/meta.js +7 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{categories-v1-category-categories.universal-BqNrYmWe.d.mts → categories-v1-category-categories.universal-DibWCZU9.d.mts} +31 -15
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +6 -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 +6 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +32 -2
  19. package/build/es/meta.mjs +6 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{categories-v1-category-categories.universal-gLVUZCEU.d.ts → categories-v1-category-categories.universal-C4m4fBaR.d.ts} +31 -15
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +7 -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 +7 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +32 -2
  29. package/build/internal/cjs/meta.js +7 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{categories-v1-category-categories.universal-gLVUZCEU.d.mts → categories-v1-category-categories.universal-C4m4fBaR.d.mts} +31 -15
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +6 -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 +6 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +32 -2
  39. package/build/internal/es/meta.mjs +6 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -761,7 +761,17 @@ interface DividerData {
761
761
  width?: WidthWithLiterals;
762
762
  /** Divider alignment. */
763
763
  alignment?: DividerDataAlignmentWithLiterals;
764
+ /** Visual styling for the divider lines. */
765
+ styles?: DividerDataStyles;
764
766
  }
767
+ declare enum LineCap {
768
+ /** Square line endings. */
769
+ SQUARE = "SQUARE",
770
+ /** Rounded line endings. */
771
+ ROUND = "ROUND"
772
+ }
773
+ /** @enumType */
774
+ type LineCapWithLiterals = LineCap | 'SQUARE' | 'ROUND';
765
775
  declare enum LineStyle {
766
776
  /** Single Line */
767
777
  SINGLE = "SINGLE",
@@ -794,6 +804,26 @@ declare enum DividerDataAlignment {
794
804
  }
795
805
  /** @enumType */
796
806
  type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
807
+ interface DividerDataStyles {
808
+ /**
809
+ * Divider color as a hexadecimal value. An alpha channel controls opacity.
810
+ * @maxLength 19
811
+ */
812
+ color?: string | null;
813
+ /** Divider line ending shape. */
814
+ lineCap?: LineCapWithLiterals;
815
+ /**
816
+ * Line thicknesses in pixels, ordered from first line to last line.
817
+ * @maxSize 10
818
+ */
819
+ lineThickness?: number[];
820
+ /** Dash length in pixels for dashed dividers. */
821
+ dashLength?: number | null;
822
+ /** Gap between dashes or dots in pixels. */
823
+ dashGap?: number | null;
824
+ /** Gap between divider lines in pixels. */
825
+ lineGap?: number | null;
826
+ }
797
827
  interface FileData {
798
828
  /** Styling for the file's container. */
799
829
  containerData?: PluginContainerData;
@@ -4701,8 +4731,6 @@ interface CategoryMovedEnvelope {
4701
4731
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
4702
4732
  * @permissionScope Read categories
4703
4733
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
4704
- * @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
4705
- * @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
4706
4734
  * @permissionScope Read v3 catalog
4707
4735
  * @permissionScopeId SCOPE.STORES.CATALOG_READ
4708
4736
  * @permissionScope Manage Products
@@ -4741,8 +4769,6 @@ interface CategoryCreatedEnvelope {
4741
4769
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
4742
4770
  * @permissionScope Read categories
4743
4771
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
4744
- * @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
4745
- * @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
4746
4772
  * @permissionScope Read v3 catalog
4747
4773
  * @permissionScopeId SCOPE.STORES.CATALOG_READ
4748
4774
  * @permissionScope Manage Products
@@ -4780,8 +4806,6 @@ interface CategoryDeletedEnvelope {
4780
4806
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
4781
4807
  * @permissionScope Read categories
4782
4808
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
4783
- * @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
4784
- * @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
4785
4809
  * @permissionScope Read v3 catalog
4786
4810
  * @permissionScopeId SCOPE.STORES.CATALOG_READ
4787
4811
  * @permissionScope Manage Products
@@ -4820,8 +4844,6 @@ interface CategoryItemAddedToCategoryEnvelope {
4820
4844
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
4821
4845
  * @permissionScope Read categories
4822
4846
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
4823
- * @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
4824
- * @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
4825
4847
  * @permissionScope Read v3 catalog
4826
4848
  * @permissionScopeId SCOPE.STORES.CATALOG_READ
4827
4849
  * @permissionScope Manage Products
@@ -4860,8 +4882,6 @@ interface CategoryItemRemovedFromCategoryEnvelope {
4860
4882
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
4861
4883
  * @permissionScope Read categories
4862
4884
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
4863
- * @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
4864
- * @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
4865
4885
  * @permissionScope Read v3 catalog
4866
4886
  * @permissionScopeId SCOPE.STORES.CATALOG_READ
4867
4887
  * @permissionScope Manage Products
@@ -4900,8 +4920,6 @@ interface CategoryItemsArrangedInCategoryEnvelope {
4900
4920
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
4901
4921
  * @permissionScope Read categories
4902
4922
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
4903
- * @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
4904
- * @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
4905
4923
  * @permissionScope Read v3 catalog
4906
4924
  * @permissionScopeId SCOPE.STORES.CATALOG_READ
4907
4925
  * @permissionScope Manage Products
@@ -4942,8 +4960,6 @@ interface CategoryUpdatedEnvelope {
4942
4960
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
4943
4961
  * @permissionScope Read categories
4944
4962
  * @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
4945
- * @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
4946
- * @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
4947
4963
  * @permissionScope Read v3 catalog
4948
4964
  * @permissionScopeId SCOPE.STORES.CATALOG_READ
4949
4965
  * @permissionScope Manage Products
@@ -5984,4 +6000,4 @@ interface BulkSetItemCategoriesOptions {
5984
6000
  treeReference: TreeReference;
5985
6001
  }
5986
6002
 
5987
- 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, CardDataBackgroundType 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, PollDesignBackgroundType as aA, DecorationType as aB, FontType as aC, Variant as aD, ImageStylesPosition as aE, AspectRatio as aF, Resizing as aG, Placement as aH, Type as aI, Alignment as aJ, Layout as aK, AppType as aL, InitialExpandedItems as aM, Direction as aN, VerticalAlignment as aO, NullValue as aP, ImageScalingScaling as aQ, ImagePosition as aR, LayoutDataBackgroundType as aS, Origin as aT, BannerPosition as aU, BackdropType as aV, VerticalAlignmentAlignment as aW, ResponsivenessBehaviour as aX, DesignTarget as aY, Scaling as aZ, ImagePositionPosition 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, TextAlignment as aj, LineStyle as ak, Width as al, DividerDataAlignment as am, ViewMode as an, LayoutType as ao, Orientation as ap, Crop as aq, ThumbnailsAlignment as ar, GIFType as as, Source as at, StylesPosition as au, MapType as av, ViewRole as aw, VoteRole as ax, PollLayoutType as ay, PollLayoutDirection as az, type CreateCategoryApplicationErrors as b, type HeadingData as b$, ListStyle as b0, Indentation as b1, SmartBlockDataType as b2, ColumnSize as b3, SingleEntityOpsRequestedFields as b4, SortOrder as b5, RequestedFields as b6, SortType as b7, SortDirection as b8, MissingValues as b9, type PluginContainerDataWidth as bA, type PluginContainerDataWidthDataOneOf as bB, type Spoiler as bC, type Height as bD, type Styles as bE, type Link as bF, type LinkDataOneOf as bG, type Rel as bH, type CodeBlockData as bI, type TextStyle as bJ, type DividerData as bK, type FileData as bL, type FileSource as bM, type FileSourceDataOneOf as bN, type PDFSettings as bO, type GalleryData as bP, type Media as bQ, type Image as bR, type Video as bS, type Item as bT, type ItemDataOneOf as bU, type GalleryOptions as bV, type GalleryOptionsLayout as bW, type ItemStyle as bX, type Thumbnails as bY, type GIFData as bZ, type GIF as b_, ScalarType as ba, NestedAggregationType as bb, Interval as bc, AggregationType as bd, Mode as be, Position as bf, MoveItemInCategoryRequestPosition as bg, WebhookIdentityType as bh, type BreadcrumbsInfo as bi, type Breadcrumb as bj, type ParentCategory as bk, type SeoSchema as bl, type Keyword as bm, type Tag as bn, type Settings as bo, type RichContent as bp, type Node as bq, type NodeDataOneOf as br, type NodeStyle as bs, type ButtonData as bt, type Gradient as bu, type Stop as bv, type Border as bw, type Colors as bx, type Background as by, type PluginContainerData as bz, type CreateCategoryValidationErrors as c, type LayoutDataBackground as c$, type HTMLData as c0, type HTMLDataDataOneOf as c1, type ImageData as c2, type StylesBorder as c3, type ImageDataStyles as c4, type ImageDataCrop as c5, type LinkPreviewData as c6, type LinkPreviewDataStyles as c7, type MapData as c8, type MapSettings as c9, type AppEmbedData as cA, type AppEmbedDataAppDataOneOf as cB, type BookingData as cC, type EventData as cD, type ButtonStyles as cE, type ImageStyles as cF, type RibbonStyles as cG, type CardStyles as cH, type PricingData as cI, type VideoData as cJ, type PlaybackOptions as cK, type EmbedData as cL, type Oembed as cM, type CollapsibleListData as cN, type TableData as cO, type Dimensions as cP, type TableCellData as cQ, type CellStyle as cR, type BorderColors as cS, type BorderWidths as cT, type ListValue as cU, type AudioData as cV, type OrderedListData as cW, type BulletedListData as cX, type BlockquoteData as cY, type CaptionData as cZ, type LayoutData as c_, type ParagraphData as ca, type PollData as cb, type Permissions as cc, type Option as cd, type PollSettings as ce, type PollLayout as cf, type OptionLayout as cg, type BackgroundGradient as ch, type PollDesignBackground as ci, type PollDesignBackgroundBackgroundOneOf as cj, type PollDesign as ck, type OptionDesign as cl, type Poll as cm, type PollDataLayout as cn, type Design as co, type TextData as cp, type Decoration as cq, type DecorationDataOneOf as cr, type AnchorData as cs, type ColorData as ct, type LinkData as cu, type MentionData as cv, type FontSizeData as cw, type SpoilerData as cx, type FontFamilyData as cy, type SketchData as cz, type GetCategoryBySlugOptions as d, type ValueAggregationOptionsOneOf as d$, type LayoutDataBackgroundImage as d0, type Banner as d1, type Backdrop as d2, type LayoutCellData as d3, type ShapeData as d4, type ShapeDataStyles as d5, type CardData as d6, type CardDataBackground as d7, type BackgroundImage as d8, type TocData as d9, type DuplicateHandleErrorData as dA, type GetCategoryRequest as dB, type GetCategoryResponse as dC, type GetCategoryBySlugRequest as dD, type UpdateCategoryRequest as dE, type UpdateCategoryResponse as dF, type DeleteCategoryRequest as dG, type DeleteCategoryResponse as dH, type QueryCategoriesRequest as dI, type CursorQuery as dJ, type CursorQueryPagingMethodOneOf as dK, type Sorting as dL, type CursorPaging as dM, type QueryCategoriesResponse as dN, type CursorPagingMetadata as dO, type Cursors as dP, type ListCompactCategoriesByIdsRequest as dQ, type ListCompactCategoriesByIdsResponse as dR, type CompactCategory as dS, type SearchCategoriesRequest as dT, type CursorSearch as dU, type CursorSearchPagingMethodOneOf as dV, type Aggregation as dW, type AggregationKindOneOf as dX, type RangeBucket as dY, type IncludeMissingValuesOptions as dZ, type ValueAggregation as d_, type SmartBlockData as da, type SmartBlockCellData as db, type CheckboxListData as dc, type ListItemNodeData as dd, type Metadata as de, type DocumentStyle as df, type TextNodeStyle as dg, type ExtendedFields as dh, type InvalidateCache as di, type InvalidateCacheGetByOneOf as dj, type App as dk, type Page as dl, type URI as dm, type File as dn, type CustomTag as dp, type Pages as dq, type URIs as dr, type CategoryMoved as ds, type ItemAddedToCategory as dt, type ItemsAddedToCategory as du, type ItemRemovedFromCategory as dv, type ItemsRemovedFromCategory as dw, type ItemsArrangedInCategory as dx, type CreateCategoryRequest as dy, type CreateCategoryResponse as dz, type GetCategoryBySlugResponse as e, type GetCategoriesTreeRequest as e$, type RangeAggregation as e0, type ScalarAggregation as e1, type DateHistogramAggregation as e2, type NestedAggregationItem as e3, type NestedAggregationItemKindOneOf as e4, type NestedAggregation as e5, type SearchDetails as e6, type AggregationData as e7, type ValueAggregationResult as e8, type RangeAggregationResult as e9, type BulkUpdateCategoriesRequest as eA, type BulkCategoriesResult as eB, type ItemMetadata as eC, type ApplicationError as eD, type BulkActionMetadata as eE, type UpdateCategoryVisibilityRequest as eF, type BulkShowCategoriesRequest as eG, type BulkAddItemsToCategoryRequest as eH, type BulkItemsToCategoryResult as eI, type ItemReferenceMetadata as eJ, type BulkAddItemToCategoriesRequest as eK, type BulkItemToCategoriesResult as eL, type BulkRemoveItemsFromCategoryRequest as eM, type BulkRemoveItemFromCategoriesRequest as eN, type ListItemsInCategoryRequest as eO, type ListItemsInCategoryRequestPagingMethodOneOf as eP, type PagingMetadataV2 as eQ, type ListCategoriesForItemRequest as eR, type ListCategoriesForItemsRequest as eS, type MapItemToCategories as eT, type ListTreesRequest as eU, type MoveItemInCategoryRequest as eV, type MoveItemInCategoryResponse as eW, type SetArrangedItemsRequest as eX, type GetArrangedItemsRequest as eY, type BulkSetItemCategoriesRequest as eZ, type BulkSetItemCategoriesResponse as e_, type NestedAggregationResults as ea, type NestedAggregationResultsResultOneOf as eb, type ValueResults as ec, type RangeResults as ed, type AggregationResultsScalarResult as ee, type NestedValueAggregationResult as ef, type ValueResult as eg, type RangeResult as eh, type ScalarResult as ei, type NestedResultValue as ej, type NestedResultValueResultOneOf as ek, type Results as el, type DateHistogramResult as em, type GroupByValueResults as en, type DateHistogramResults as eo, type NestedResults as ep, type AggregationResults as eq, type AggregationResultsResultOneOf as er, type DeprecatedSearchCategoriesWithOffsetRequest as es, type OffsetSearch as et, type OffsetSearchPagingMethodOneOf as eu, type Paging as ev, type DeprecatedSearchCategoriesWithOffsetResponse as ew, type PagingMetadata as ex, type CountCategoriesRequest as ey, type MoveCategoryRequest as ez, type UpdateCategoryOptions as f, type AlignmentWithLiterals as f$, type GetCategoriesTreeResponse as f0, type CategoryTreeNode as f1, type DomainEvent as f2, type DomainEventBodyOneOf as f3, type EntityCreatedEvent as f4, type RestoreInfo as f5, type EntityUpdatedEvent as f6, type EntityDeletedEvent as f7, type ActionEvent as f8, type Empty as f9, type TargetWithLiterals as fA, type TextAlignmentWithLiterals as fB, type LineStyleWithLiterals as fC, type WidthWithLiterals as fD, type DividerDataAlignmentWithLiterals as fE, type ViewModeWithLiterals as fF, type LayoutTypeWithLiterals as fG, type OrientationWithLiterals as fH, type CropWithLiterals as fI, type ThumbnailsAlignmentWithLiterals as fJ, type GIFTypeWithLiterals as fK, type SourceWithLiterals as fL, type StylesPositionWithLiterals as fM, type MapTypeWithLiterals as fN, type ViewRoleWithLiterals as fO, type VoteRoleWithLiterals as fP, type PollLayoutTypeWithLiterals as fQ, type PollLayoutDirectionWithLiterals as fR, type PollDesignBackgroundTypeWithLiterals as fS, type DecorationTypeWithLiterals as fT, type FontTypeWithLiterals as fU, type VariantWithLiterals as fV, type ImageStylesPositionWithLiterals as fW, type AspectRatioWithLiterals as fX, type ResizingWithLiterals as fY, type PlacementWithLiterals as fZ, type TypeWithLiterals as f_, type BulkCreateCategoriesForMigrationRequest as fa, type BulkCreateCategoriesForMigrationResponse as fb, type BulkAddItemsToCategoryForMigrationRequest as fc, type BulkAddItemsToCategoryForMigrationResponse as fd, type SetArrangedItemsForMigrationRequest as fe, type SetArrangedItemsForMigrationResponse as ff, type CatalogRollbackRequested as fg, type MessageEnvelope as fh, type IdentificationData as fi, type IdentificationDataIdOneOf as fj, type AccountInfo as fk, type BaseEventMetadata as fl, type EventMetadata as fm, type AccountInfoMetadata as fn, type CategoriesQueryResult as fo, type CategoryQuerySpec as fp, type CategorySearchSpec as fq, type ListItemsInCategoryOptionsPagingMethodOneOf as fr, type BulkSetItemCategoriesOptions as fs, utils as ft, type NodeTypeWithLiterals as fu, type BackgroundTypeWithLiterals as fv, type GradientTypeWithLiterals as fw, type WidthTypeWithLiterals as fx, type PluginContainerDataAlignmentWithLiterals as fy, type ButtonDataTypeWithLiterals as fz, type UpdateCategoryApplicationErrors as g, listCategoriesForItems as g$, type LayoutWithLiterals as g0, type AppTypeWithLiterals as g1, type InitialExpandedItemsWithLiterals as g2, type DirectionWithLiterals as g3, type VerticalAlignmentWithLiterals as g4, type NullValueWithLiterals as g5, type ImageScalingScalingWithLiterals as g6, type ImagePositionWithLiterals as g7, type LayoutDataBackgroundTypeWithLiterals as g8, type OriginWithLiterals as g9, type BulkSetItemCategoriesApplicationErrors as gA, type CommonQueryWithEntityContext as gB, type CommonSearchWithEntityContext as gC, onCategoryMoved as gD, onCategoryCreated as gE, onCategoryDeleted as gF, onCategoryItemAddedToCategory as gG, onCategoryItemRemovedFromCategory as gH, onCategoryItemsArrangedInCategory as gI, onCategoryUpdated as gJ, createCategory as gK, getCategory as gL, getCategoryBySlug as gM, updateCategory as gN, deleteCategory as gO, queryCategories as gP, countCategories as gQ, moveCategory as gR, bulkUpdateCategories as gS, updateCategoryVisibility as gT, bulkShowCategories as gU, bulkAddItemsToCategory as gV, bulkAddItemToCategories as gW, bulkRemoveItemsFromCategory as gX, bulkRemoveItemFromCategories as gY, listItemsInCategory as gZ, listCategoriesForItem as g_, type BannerPositionWithLiterals as ga, type BackdropTypeWithLiterals as gb, type VerticalAlignmentAlignmentWithLiterals as gc, type ResponsivenessBehaviourWithLiterals as gd, type DesignTargetWithLiterals as ge, type ScalingWithLiterals as gf, type ImagePositionPositionWithLiterals as gg, type CardDataBackgroundTypeWithLiterals as gh, type ListStyleWithLiterals as gi, type IndentationWithLiterals as gj, type SmartBlockDataTypeWithLiterals as gk, type ColumnSizeWithLiterals as gl, type SingleEntityOpsRequestedFieldsWithLiterals as gm, type SortOrderWithLiterals as gn, type RequestedFieldsWithLiterals as go, type SortTypeWithLiterals as gp, type SortDirectionWithLiterals as gq, type MissingValuesWithLiterals as gr, type ScalarTypeWithLiterals as gs, type NestedAggregationTypeWithLiterals as gt, type IntervalWithLiterals as gu, type AggregationTypeWithLiterals as gv, type ModeWithLiterals as gw, type PositionWithLiterals as gx, type MoveItemInCategoryRequestPositionWithLiterals as gy, type WebhookIdentityTypeWithLiterals as gz, type UpdateCategoryValidationErrors as h, listTrees as h0, setArrangedItems as h1, getArrangedItems as h2, 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 };
6003
+ 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, ImagePositionPosition 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, PollLayoutDirection as aA, PollDesignBackgroundType as aB, DecorationType as aC, FontType as aD, Variant as aE, ImageStylesPosition as aF, AspectRatio as aG, Resizing as aH, Placement as aI, Type as aJ, Alignment as aK, Layout as aL, AppType as aM, InitialExpandedItems as aN, Direction as aO, VerticalAlignment as aP, NullValue as aQ, ImageScalingScaling as aR, ImagePosition as aS, LayoutDataBackgroundType as aT, Origin as aU, BannerPosition as aV, BackdropType as aW, VerticalAlignmentAlignment as aX, ResponsivenessBehaviour as aY, DesignTarget as aZ, Scaling 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, TextAlignment as aj, LineCap as ak, LineStyle as al, Width as am, DividerDataAlignment as an, ViewMode as ao, LayoutType as ap, Orientation as aq, Crop as ar, ThumbnailsAlignment as as, GIFType as at, Source as au, StylesPosition as av, MapType as aw, ViewRole as ax, VoteRole as ay, PollLayoutType as az, type CreateCategoryApplicationErrors as b, type GIFData as b$, CardDataBackgroundType as b0, ListStyle as b1, Indentation as b2, SmartBlockDataType as b3, ColumnSize as b4, SingleEntityOpsRequestedFields as b5, SortOrder as b6, RequestedFields as b7, SortType as b8, SortDirection as b9, type PluginContainerData as bA, type PluginContainerDataWidth as bB, type PluginContainerDataWidthDataOneOf as bC, type Spoiler as bD, type Height as bE, type Styles as bF, type Link as bG, type LinkDataOneOf as bH, type Rel as bI, type CodeBlockData as bJ, type TextStyle as bK, type DividerData as bL, type DividerDataStyles as bM, type FileData as bN, type FileSource as bO, type FileSourceDataOneOf as bP, type PDFSettings as bQ, type GalleryData as bR, type Media as bS, type Image as bT, type Video as bU, type Item as bV, type ItemDataOneOf as bW, type GalleryOptions as bX, type GalleryOptionsLayout as bY, type ItemStyle as bZ, type Thumbnails as b_, MissingValues as ba, ScalarType as bb, NestedAggregationType as bc, Interval as bd, AggregationType as be, Mode as bf, Position as bg, MoveItemInCategoryRequestPosition as bh, WebhookIdentityType as bi, type BreadcrumbsInfo as bj, type Breadcrumb as bk, type ParentCategory as bl, type SeoSchema as bm, type Keyword as bn, type Tag as bo, type Settings as bp, type RichContent as bq, type Node as br, type NodeDataOneOf as bs, type NodeStyle as bt, type ButtonData as bu, type Gradient as bv, type Stop as bw, type Border as bx, type Colors as by, type Background as bz, type CreateCategoryValidationErrors as c, type CaptionData as c$, type GIF as c0, type HeadingData as c1, type HTMLData as c2, type HTMLDataDataOneOf as c3, type ImageData as c4, type StylesBorder as c5, type ImageDataStyles as c6, type ImageDataCrop as c7, type LinkPreviewData as c8, type LinkPreviewDataStyles as c9, type FontFamilyData as cA, type SketchData as cB, type AppEmbedData as cC, type AppEmbedDataAppDataOneOf as cD, type BookingData as cE, type EventData as cF, type ButtonStyles as cG, type ImageStyles as cH, type RibbonStyles as cI, type CardStyles as cJ, type PricingData as cK, type VideoData as cL, type PlaybackOptions as cM, type EmbedData as cN, type Oembed as cO, type CollapsibleListData as cP, type TableData as cQ, type Dimensions as cR, type TableCellData as cS, type CellStyle as cT, type BorderColors as cU, type BorderWidths as cV, type ListValue as cW, type AudioData as cX, type OrderedListData as cY, type BulletedListData as cZ, type BlockquoteData as c_, type MapData as ca, type MapSettings as cb, type ParagraphData as cc, type PollData as cd, type Permissions as ce, type Option as cf, type PollSettings as cg, type PollLayout as ch, type OptionLayout as ci, type BackgroundGradient as cj, type PollDesignBackground as ck, type PollDesignBackgroundBackgroundOneOf as cl, type PollDesign as cm, type OptionDesign as cn, type Poll as co, type PollDataLayout as cp, type Design as cq, type TextData as cr, type Decoration as cs, type DecorationDataOneOf as ct, type AnchorData as cu, type ColorData as cv, type LinkData as cw, type MentionData as cx, type FontSizeData as cy, type SpoilerData as cz, type GetCategoryBySlugOptions as d, type IncludeMissingValuesOptions as d$, type LayoutData as d0, type LayoutDataBackground as d1, type LayoutDataBackgroundImage as d2, type Banner as d3, type Backdrop as d4, type LayoutCellData as d5, type ShapeData as d6, type ShapeDataStyles as d7, type CardData as d8, type CardDataBackground as d9, type CreateCategoryRequest as dA, type CreateCategoryResponse as dB, type DuplicateHandleErrorData as dC, type GetCategoryRequest as dD, type GetCategoryResponse as dE, type GetCategoryBySlugRequest as dF, type UpdateCategoryRequest as dG, type UpdateCategoryResponse as dH, type DeleteCategoryRequest as dI, type DeleteCategoryResponse as dJ, type QueryCategoriesRequest as dK, type CursorQuery as dL, type CursorQueryPagingMethodOneOf as dM, type Sorting as dN, type CursorPaging as dO, type QueryCategoriesResponse as dP, type CursorPagingMetadata as dQ, type Cursors as dR, type ListCompactCategoriesByIdsRequest as dS, type ListCompactCategoriesByIdsResponse as dT, type CompactCategory as dU, type SearchCategoriesRequest as dV, type CursorSearch as dW, type CursorSearchPagingMethodOneOf as dX, type Aggregation as dY, type AggregationKindOneOf as dZ, type RangeBucket as d_, type BackgroundImage as da, type TocData as db, type SmartBlockData as dc, type SmartBlockCellData as dd, type CheckboxListData as de, type ListItemNodeData as df, type Metadata as dg, type DocumentStyle as dh, type TextNodeStyle as di, type ExtendedFields as dj, type InvalidateCache as dk, type InvalidateCacheGetByOneOf as dl, type App as dm, type Page as dn, type URI as dp, type File as dq, type CustomTag as dr, type Pages as ds, type URIs as dt, type CategoryMoved as du, type ItemAddedToCategory as dv, type ItemsAddedToCategory as dw, type ItemRemovedFromCategory as dx, type ItemsRemovedFromCategory as dy, type ItemsArrangedInCategory as dz, type GetCategoryBySlugResponse as e, type BulkSetItemCategoriesRequest as e$, type ValueAggregation as e0, type ValueAggregationOptionsOneOf as e1, type RangeAggregation as e2, type ScalarAggregation as e3, type DateHistogramAggregation as e4, type NestedAggregationItem as e5, type NestedAggregationItemKindOneOf as e6, type NestedAggregation as e7, type SearchDetails as e8, type AggregationData as e9, type CountCategoriesRequest as eA, type MoveCategoryRequest as eB, type BulkUpdateCategoriesRequest as eC, type BulkCategoriesResult as eD, type ItemMetadata as eE, type ApplicationError as eF, type BulkActionMetadata as eG, type UpdateCategoryVisibilityRequest as eH, type BulkShowCategoriesRequest as eI, type BulkAddItemsToCategoryRequest as eJ, type BulkItemsToCategoryResult as eK, type ItemReferenceMetadata as eL, type BulkAddItemToCategoriesRequest as eM, type BulkItemToCategoriesResult as eN, type BulkRemoveItemsFromCategoryRequest as eO, type BulkRemoveItemFromCategoriesRequest as eP, type ListItemsInCategoryRequest as eQ, type ListItemsInCategoryRequestPagingMethodOneOf as eR, type PagingMetadataV2 as eS, type ListCategoriesForItemRequest as eT, type ListCategoriesForItemsRequest as eU, type MapItemToCategories as eV, type ListTreesRequest as eW, type MoveItemInCategoryRequest as eX, type MoveItemInCategoryResponse as eY, type SetArrangedItemsRequest as eZ, type GetArrangedItemsRequest as e_, type ValueAggregationResult as ea, type RangeAggregationResult as eb, type NestedAggregationResults as ec, type NestedAggregationResultsResultOneOf as ed, type ValueResults as ee, type RangeResults as ef, type AggregationResultsScalarResult as eg, type NestedValueAggregationResult as eh, type ValueResult as ei, type RangeResult as ej, type ScalarResult as ek, type NestedResultValue as el, type NestedResultValueResultOneOf as em, type Results as en, type DateHistogramResult as eo, type GroupByValueResults as ep, type DateHistogramResults as eq, type NestedResults as er, type AggregationResults as es, type AggregationResultsResultOneOf as et, type DeprecatedSearchCategoriesWithOffsetRequest as eu, type OffsetSearch as ev, type OffsetSearchPagingMethodOneOf as ew, type Paging as ex, type DeprecatedSearchCategoriesWithOffsetResponse as ey, type PagingMetadata as ez, type UpdateCategoryOptions as f, type ResizingWithLiterals as f$, type BulkSetItemCategoriesResponse as f0, type GetCategoriesTreeRequest as f1, type GetCategoriesTreeResponse as f2, type CategoryTreeNode as f3, type DomainEvent as f4, type DomainEventBodyOneOf as f5, type EntityCreatedEvent as f6, type RestoreInfo as f7, type EntityUpdatedEvent as f8, type EntityDeletedEvent as f9, type PluginContainerDataAlignmentWithLiterals as fA, type ButtonDataTypeWithLiterals as fB, type TargetWithLiterals as fC, type TextAlignmentWithLiterals as fD, type LineCapWithLiterals as fE, type LineStyleWithLiterals as fF, type WidthWithLiterals as fG, type DividerDataAlignmentWithLiterals as fH, type ViewModeWithLiterals as fI, type LayoutTypeWithLiterals as fJ, type OrientationWithLiterals as fK, type CropWithLiterals as fL, type ThumbnailsAlignmentWithLiterals as fM, type GIFTypeWithLiterals as fN, type SourceWithLiterals as fO, type StylesPositionWithLiterals as fP, type MapTypeWithLiterals as fQ, type ViewRoleWithLiterals as fR, type VoteRoleWithLiterals as fS, type PollLayoutTypeWithLiterals as fT, type PollLayoutDirectionWithLiterals as fU, type PollDesignBackgroundTypeWithLiterals as fV, type DecorationTypeWithLiterals as fW, type FontTypeWithLiterals as fX, type VariantWithLiterals as fY, type ImageStylesPositionWithLiterals as fZ, type AspectRatioWithLiterals as f_, type ActionEvent as fa, type Empty as fb, type BulkCreateCategoriesForMigrationRequest as fc, type BulkCreateCategoriesForMigrationResponse as fd, type BulkAddItemsToCategoryForMigrationRequest as fe, type BulkAddItemsToCategoryForMigrationResponse as ff, type SetArrangedItemsForMigrationRequest as fg, type SetArrangedItemsForMigrationResponse as fh, type CatalogRollbackRequested as fi, type MessageEnvelope as fj, type IdentificationData as fk, type IdentificationDataIdOneOf as fl, type AccountInfo as fm, type BaseEventMetadata as fn, type EventMetadata as fo, type AccountInfoMetadata as fp, type CategoriesQueryResult as fq, type CategoryQuerySpec as fr, type CategorySearchSpec as fs, type ListItemsInCategoryOptionsPagingMethodOneOf as ft, type BulkSetItemCategoriesOptions as fu, utils as fv, type NodeTypeWithLiterals as fw, type BackgroundTypeWithLiterals as fx, type GradientTypeWithLiterals as fy, type WidthTypeWithLiterals as fz, type UpdateCategoryApplicationErrors as g, bulkRemoveItemFromCategories as g$, type PlacementWithLiterals as g0, type TypeWithLiterals as g1, type AlignmentWithLiterals as g2, type LayoutWithLiterals as g3, type AppTypeWithLiterals as g4, type InitialExpandedItemsWithLiterals as g5, type DirectionWithLiterals as g6, type VerticalAlignmentWithLiterals as g7, type NullValueWithLiterals as g8, type ImageScalingScalingWithLiterals as g9, type PositionWithLiterals as gA, type MoveItemInCategoryRequestPositionWithLiterals as gB, type WebhookIdentityTypeWithLiterals as gC, type BulkSetItemCategoriesApplicationErrors as gD, type CommonQueryWithEntityContext as gE, type CommonSearchWithEntityContext as gF, onCategoryMoved as gG, onCategoryCreated as gH, onCategoryDeleted as gI, onCategoryItemAddedToCategory as gJ, onCategoryItemRemovedFromCategory as gK, onCategoryItemsArrangedInCategory as gL, onCategoryUpdated as gM, createCategory as gN, getCategory as gO, getCategoryBySlug as gP, updateCategory as gQ, deleteCategory as gR, queryCategories as gS, countCategories as gT, moveCategory as gU, bulkUpdateCategories as gV, updateCategoryVisibility as gW, bulkShowCategories as gX, bulkAddItemsToCategory as gY, bulkAddItemToCategories as gZ, bulkRemoveItemsFromCategory as g_, type ImagePositionWithLiterals as ga, type LayoutDataBackgroundTypeWithLiterals as gb, type OriginWithLiterals as gc, type BannerPositionWithLiterals as gd, type BackdropTypeWithLiterals as ge, type VerticalAlignmentAlignmentWithLiterals as gf, type ResponsivenessBehaviourWithLiterals as gg, type DesignTargetWithLiterals as gh, type ScalingWithLiterals as gi, type ImagePositionPositionWithLiterals as gj, type CardDataBackgroundTypeWithLiterals as gk, type ListStyleWithLiterals as gl, type IndentationWithLiterals as gm, type SmartBlockDataTypeWithLiterals as gn, type ColumnSizeWithLiterals as go, type SingleEntityOpsRequestedFieldsWithLiterals as gp, type SortOrderWithLiterals as gq, type RequestedFieldsWithLiterals as gr, type SortTypeWithLiterals as gs, type SortDirectionWithLiterals as gt, type MissingValuesWithLiterals as gu, type ScalarTypeWithLiterals as gv, type NestedAggregationTypeWithLiterals as gw, type IntervalWithLiterals as gx, type AggregationTypeWithLiterals as gy, type ModeWithLiterals as gz, type UpdateCategoryValidationErrors as h, listItemsInCategory as h0, listCategoriesForItem as h1, listCategoriesForItems as h2, listTrees as h3, setArrangedItems as h4, getArrangedItems as h5, 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-BqNrYmWe.js';
3
- export { fk as AccountInfo, fn as AccountInfoMetadata, f8 as ActionEvent, dW as Aggregation, e7 as AggregationData, dX as AggregationKindOneOf, eq as AggregationResults, er as AggregationResultsResultOneOf, ee as AggregationResultsScalarResult, bd as AggregationType, gv as AggregationTypeWithLiterals, aJ as Alignment, f$ as AlignmentWithLiterals, cs as AnchorData, dk as App, cA as AppEmbedData, cB as AppEmbedDataAppDataOneOf, aL as AppType, g1 as AppTypeWithLiterals, eD as ApplicationError, aF as AspectRatio, fX as AspectRatioWithLiterals, cV as AudioData, d2 as Backdrop, aV as BackdropType, gb as BackdropTypeWithLiterals, by as Background, ch as BackgroundGradient, d8 as BackgroundImage, ad as BackgroundType, fv as BackgroundTypeWithLiterals, d1 as Banner, aU as BannerPosition, ga as BannerPositionWithLiterals, fl as BaseEventMetadata, cY as BlockquoteData, cC as BookingData, bw as Border, cS as BorderColors, cT as BorderWidths, bj as Breadcrumb, bi as BreadcrumbsInfo, eE as BulkActionMetadata, eK as BulkAddItemToCategoriesRequest, fc as BulkAddItemsToCategoryForMigrationRequest, fd as BulkAddItemsToCategoryForMigrationResponse, eH as BulkAddItemsToCategoryRequest, eB as BulkCategoriesResult, fa as BulkCreateCategoriesForMigrationRequest, fb as BulkCreateCategoriesForMigrationResponse, eL as BulkItemToCategoriesResult, eI as BulkItemsToCategoryResult, eN as BulkRemoveItemFromCategoriesRequest, eM as BulkRemoveItemsFromCategoryRequest, gA as BulkSetItemCategoriesApplicationErrors, fs as BulkSetItemCategoriesOptions, eZ as BulkSetItemCategoriesRequest, e_ as BulkSetItemCategoriesResponse, eG as BulkShowCategoriesRequest, eA as BulkUpdateCategoriesRequest, cX as BulletedListData, bt as ButtonData, ah as ButtonDataType, fz as ButtonDataTypeWithLiterals, cE as ButtonStyles, cZ as CaptionData, d6 as CardData, d7 as CardDataBackground, a$ as CardDataBackgroundType, gh as CardDataBackgroundTypeWithLiterals, cH as CardStyles, fg as CatalogRollbackRequested, fo as CategoriesQueryResult, ds as CategoryMoved, fp as CategoryQuerySpec, fq as CategorySearchSpec, f1 as CategoryTreeNode, cR as CellStyle, dc as CheckboxListData, bI as CodeBlockData, cN as CollapsibleListData, ct as ColorData, bx as Colors, b3 as ColumnSize, gl as ColumnSizeWithLiterals, gB as CommonQueryWithEntityContext, gC as CommonSearchWithEntityContext, dS as CompactCategory, ey as CountCategoriesRequest, dy as CreateCategoryRequest, dz as CreateCategoryResponse, aq as Crop, fI as CropWithLiterals, dM as CursorPaging, dO as CursorPagingMetadata, dJ as CursorQuery, dK as CursorQueryPagingMethodOneOf, dU as CursorSearch, dV as CursorSearchPagingMethodOneOf, dP as Cursors, dp as CustomTag, e2 as DateHistogramAggregation, em as DateHistogramResult, eo as DateHistogramResults, cq as Decoration, cr as DecorationDataOneOf, aB as DecorationType, fT as DecorationTypeWithLiterals, dG as DeleteCategoryRequest, dH as DeleteCategoryResponse, es as DeprecatedSearchCategoriesWithOffsetRequest, ew as DeprecatedSearchCategoriesWithOffsetResponse, co as Design, aY as DesignTarget, ge as DesignTargetWithLiterals, cP as Dimensions, aN as Direction, g3 as DirectionWithLiterals, bK as DividerData, am as DividerDataAlignment, fE as DividerDataAlignmentWithLiterals, df as DocumentStyle, f2 as DomainEvent, f3 as DomainEventBodyOneOf, dA as DuplicateHandleErrorData, cL as EmbedData, f9 as Empty, f4 as EntityCreatedEvent, f7 as EntityDeletedEvent, f6 as EntityUpdatedEvent, cD as EventData, fm as EventMetadata, dh as ExtendedFields, dn as File, bL as FileData, bM as FileSource, bN as FileSourceDataOneOf, cy as FontFamilyData, cw as FontSizeData, aC as FontType, fU as FontTypeWithLiterals, b_ as GIF, bZ as GIFData, as as GIFType, fK as GIFTypeWithLiterals, bP as GalleryData, bV as GalleryOptions, bW as GalleryOptionsLayout, eY as GetArrangedItemsRequest, e$ as GetCategoriesTreeRequest, f0 as GetCategoriesTreeResponse, dD as GetCategoryBySlugRequest, dB as GetCategoryRequest, dC as GetCategoryResponse, bu as Gradient, ae as GradientType, fw as GradientTypeWithLiterals, en as GroupByValueResults, c0 as HTMLData, c1 as HTMLDataDataOneOf, b$ as HeadingData, bD as Height, fi as IdentificationData, fj as IdentificationDataIdOneOf, bR as Image, c2 as ImageData, c5 as ImageDataCrop, c4 as ImageDataStyles, aR as ImagePosition, a_ as ImagePositionPosition, gg as ImagePositionPositionWithLiterals, g7 as ImagePositionWithLiterals, aQ as ImageScalingScaling, g6 as ImageScalingScalingWithLiterals, cF as ImageStyles, aE as ImageStylesPosition, fW as ImageStylesPositionWithLiterals, dZ as IncludeMissingValuesOptions, b1 as Indentation, gj as IndentationWithLiterals, aM as InitialExpandedItems, g2 as InitialExpandedItemsWithLiterals, bc as Interval, gu as IntervalWithLiterals, di as InvalidateCache, dj as InvalidateCacheGetByOneOf, bT as Item, dt as ItemAddedToCategory, bU as ItemDataOneOf, eC as ItemMetadata, eJ as ItemReferenceMetadata, dv as ItemRemovedFromCategory, bX as ItemStyle, du as ItemsAddedToCategory, dx as ItemsArrangedInCategory, dw as ItemsRemovedFromCategory, bm as Keyword, aK as Layout, d3 as LayoutCellData, c_ as LayoutData, c$ as LayoutDataBackground, d0 as LayoutDataBackgroundImage, aS as LayoutDataBackgroundType, g8 as LayoutDataBackgroundTypeWithLiterals, ao as LayoutType, fG as LayoutTypeWithLiterals, g0 as LayoutWithLiterals, ak as LineStyle, fC as LineStyleWithLiterals, bF as Link, cu as LinkData, bG as LinkDataOneOf, c6 as LinkPreviewData, c7 as LinkPreviewDataStyles, eR as ListCategoriesForItemRequest, eS as ListCategoriesForItemsRequest, dQ as ListCompactCategoriesByIdsRequest, dR as ListCompactCategoriesByIdsResponse, dd as ListItemNodeData, fr as ListItemsInCategoryOptionsPagingMethodOneOf, eO as ListItemsInCategoryRequest, eP as ListItemsInCategoryRequestPagingMethodOneOf, b0 as ListStyle, gi as ListStyleWithLiterals, eU as ListTreesRequest, cU as ListValue, c8 as MapData, eT as MapItemToCategories, c9 as MapSettings, av as MapType, fN as MapTypeWithLiterals, bQ as Media, cv as MentionData, fh as MessageEnvelope, de as Metadata, b9 as MissingValues, gr as MissingValuesWithLiterals, be as Mode, gw as ModeWithLiterals, ez as MoveCategoryRequest, eV as MoveItemInCategoryRequest, bg as MoveItemInCategoryRequestPosition, gy as MoveItemInCategoryRequestPositionWithLiterals, eW as MoveItemInCategoryResponse, e5 as NestedAggregation, e3 as NestedAggregationItem, e4 as NestedAggregationItemKindOneOf, ea as NestedAggregationResults, eb as NestedAggregationResultsResultOneOf, bb as NestedAggregationType, gt as NestedAggregationTypeWithLiterals, ej as NestedResultValue, ek as NestedResultValueResultOneOf, ep as NestedResults, ef as NestedValueAggregationResult, bq as Node, br as NodeDataOneOf, bs as NodeStyle, ac as NodeType, fu as NodeTypeWithLiterals, aP as NullValue, g5 as NullValueWithLiterals, cM as Oembed, et as OffsetSearch, eu as OffsetSearchPagingMethodOneOf, cd as Option, cl as OptionDesign, cg as OptionLayout, cW as OrderedListData, ap as Orientation, fH as OrientationWithLiterals, aT as Origin, g9 as OriginWithLiterals, bO as PDFSettings, dl as Page, dq as Pages, ev as Paging, ex as PagingMetadata, eQ as PagingMetadataV2, ca as ParagraphData, bk as ParentCategory, cc as Permissions, aH as Placement, fZ as PlacementWithLiterals, cK as PlaybackOptions, bz as PluginContainerData, ag as PluginContainerDataAlignment, fy as PluginContainerDataAlignmentWithLiterals, bA as PluginContainerDataWidth, bB as PluginContainerDataWidthDataOneOf, cm as Poll, cb as PollData, cn as PollDataLayout, ck as PollDesign, ci as PollDesignBackground, cj as PollDesignBackgroundBackgroundOneOf, aA as PollDesignBackgroundType, fS as PollDesignBackgroundTypeWithLiterals, cf as PollLayout, az as PollLayoutDirection, fR as PollLayoutDirectionWithLiterals, ay as PollLayoutType, fQ as PollLayoutTypeWithLiterals, ce as PollSettings, bf as Position, gx as PositionWithLiterals, cI as PricingData, dI as QueryCategoriesRequest, dN as QueryCategoriesResponse, e0 as RangeAggregation, e9 as RangeAggregationResult, dY as RangeBucket, eh as RangeResult, ed as RangeResults, bH as Rel, b6 as RequestedFields, go as RequestedFieldsWithLiterals, aG as Resizing, fY as ResizingWithLiterals, aX as ResponsivenessBehaviour, gd as ResponsivenessBehaviourWithLiterals, f5 as RestoreInfo, el as Results, cG as RibbonStyles, bp as RichContent, e1 as ScalarAggregation, ei as ScalarResult, ba as ScalarType, gs as ScalarTypeWithLiterals, aZ as Scaling, gf as ScalingWithLiterals, dT as SearchCategoriesRequest, e6 as SearchDetails, bl as SeoSchema, fe as SetArrangedItemsForMigrationRequest, ff as SetArrangedItemsForMigrationResponse, eX as SetArrangedItemsRequest, bo as Settings, d4 as ShapeData, d5 as ShapeDataStyles, b4 as SingleEntityOpsRequestedFields, gm as SingleEntityOpsRequestedFieldsWithLiterals, cz as SketchData, db as SmartBlockCellData, da as SmartBlockData, b2 as SmartBlockDataType, gk as SmartBlockDataTypeWithLiterals, b8 as SortDirection, gq as SortDirectionWithLiterals, b5 as SortOrder, gn as SortOrderWithLiterals, b7 as SortType, gp as SortTypeWithLiterals, dL as Sorting, at as Source, fL as SourceWithLiterals, bC as Spoiler, cx as SpoilerData, bv as Stop, bE as Styles, c3 as StylesBorder, au as StylesPosition, fM as StylesPositionWithLiterals, cQ as TableCellData, cO as TableData, bn as Tag, ai as Target, fA as TargetWithLiterals, aj as TextAlignment, fB as TextAlignmentWithLiterals, cp as TextData, dg as TextNodeStyle, bJ as TextStyle, bY as Thumbnails, ar as ThumbnailsAlignment, fJ as ThumbnailsAlignmentWithLiterals, d9 as TocData, aI as Type, f_ as TypeWithLiterals, dm as URI, dr as URIs, dE as UpdateCategoryRequest, dF as UpdateCategoryResponse, eF as UpdateCategoryVisibilityRequest, d_ as ValueAggregation, d$ as ValueAggregationOptionsOneOf, e8 as ValueAggregationResult, eg as ValueResult, ec as ValueResults, aD as Variant, fV as VariantWithLiterals, aO as VerticalAlignment, aW as VerticalAlignmentAlignment, gc as VerticalAlignmentAlignmentWithLiterals, g4 as VerticalAlignmentWithLiterals, bS as Video, cJ as VideoData, an as ViewMode, fF as ViewModeWithLiterals, aw as ViewRole, fO as ViewRoleWithLiterals, ax as VoteRole, fP as VoteRoleWithLiterals, bh as WebhookIdentityType, gz as WebhookIdentityTypeWithLiterals, al as Width, af as WidthType, fx as WidthTypeWithLiterals, fD as WidthWithLiterals, ft as utils } from './categories-v1-category-categories.universal-BqNrYmWe.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-DibWCZU9.js';
3
+ export { fm as AccountInfo, fp as AccountInfoMetadata, fa as ActionEvent, dY as Aggregation, e9 as AggregationData, dZ as AggregationKindOneOf, es as AggregationResults, et as AggregationResultsResultOneOf, eg as AggregationResultsScalarResult, be as AggregationType, gy as AggregationTypeWithLiterals, aK as Alignment, g2 as AlignmentWithLiterals, cu as AnchorData, dm as App, cC as AppEmbedData, cD as AppEmbedDataAppDataOneOf, aM as AppType, g4 as AppTypeWithLiterals, eF as ApplicationError, aG as AspectRatio, f_ as AspectRatioWithLiterals, cX as AudioData, d4 as Backdrop, aW as BackdropType, ge as BackdropTypeWithLiterals, bz as Background, cj as BackgroundGradient, da as BackgroundImage, ad as BackgroundType, fx as BackgroundTypeWithLiterals, d3 as Banner, aV as BannerPosition, gd as BannerPositionWithLiterals, fn as BaseEventMetadata, c_ as BlockquoteData, cE as BookingData, bx as Border, cU as BorderColors, cV as BorderWidths, bk as Breadcrumb, bj as BreadcrumbsInfo, eG as BulkActionMetadata, eM as BulkAddItemToCategoriesRequest, fe as BulkAddItemsToCategoryForMigrationRequest, ff as BulkAddItemsToCategoryForMigrationResponse, eJ as BulkAddItemsToCategoryRequest, eD as BulkCategoriesResult, fc as BulkCreateCategoriesForMigrationRequest, fd as BulkCreateCategoriesForMigrationResponse, eN as BulkItemToCategoriesResult, eK as BulkItemsToCategoryResult, eP as BulkRemoveItemFromCategoriesRequest, eO as BulkRemoveItemsFromCategoryRequest, gD as BulkSetItemCategoriesApplicationErrors, fu as BulkSetItemCategoriesOptions, e$ as BulkSetItemCategoriesRequest, f0 as BulkSetItemCategoriesResponse, eI as BulkShowCategoriesRequest, eC as BulkUpdateCategoriesRequest, cZ as BulletedListData, bu as ButtonData, ah as ButtonDataType, fB as ButtonDataTypeWithLiterals, cG as ButtonStyles, c$ as CaptionData, d8 as CardData, d9 as CardDataBackground, b0 as CardDataBackgroundType, gk as CardDataBackgroundTypeWithLiterals, cJ as CardStyles, fi as CatalogRollbackRequested, fq as CategoriesQueryResult, du as CategoryMoved, fr as CategoryQuerySpec, fs as CategorySearchSpec, f3 as CategoryTreeNode, cT as CellStyle, de as CheckboxListData, bJ as CodeBlockData, cP as CollapsibleListData, cv as ColorData, by as Colors, b4 as ColumnSize, go as ColumnSizeWithLiterals, gE as CommonQueryWithEntityContext, gF as CommonSearchWithEntityContext, dU as CompactCategory, eA as CountCategoriesRequest, dA as CreateCategoryRequest, dB as CreateCategoryResponse, ar as Crop, fL as CropWithLiterals, dO as CursorPaging, dQ as CursorPagingMetadata, dL as CursorQuery, dM as CursorQueryPagingMethodOneOf, dW as CursorSearch, dX as CursorSearchPagingMethodOneOf, dR as Cursors, dr as CustomTag, e4 as DateHistogramAggregation, eo as DateHistogramResult, eq as DateHistogramResults, cs as Decoration, ct as DecorationDataOneOf, aC as DecorationType, fW as DecorationTypeWithLiterals, dI as DeleteCategoryRequest, dJ as DeleteCategoryResponse, eu as DeprecatedSearchCategoriesWithOffsetRequest, ey as DeprecatedSearchCategoriesWithOffsetResponse, cq as Design, aZ as DesignTarget, gh as DesignTargetWithLiterals, cR as Dimensions, aO as Direction, g6 as DirectionWithLiterals, bL as DividerData, an as DividerDataAlignment, fH as DividerDataAlignmentWithLiterals, bM as DividerDataStyles, dh as DocumentStyle, f4 as DomainEvent, f5 as DomainEventBodyOneOf, dC as DuplicateHandleErrorData, cN as EmbedData, fb as Empty, f6 as EntityCreatedEvent, f9 as EntityDeletedEvent, f8 as EntityUpdatedEvent, cF as EventData, fo as EventMetadata, dj as ExtendedFields, dq as File, bN as FileData, bO as FileSource, bP as FileSourceDataOneOf, cA as FontFamilyData, cy as FontSizeData, aD as FontType, fX as FontTypeWithLiterals, c0 as GIF, b$ as GIFData, at as GIFType, fN as GIFTypeWithLiterals, bR as GalleryData, bX as GalleryOptions, bY as GalleryOptionsLayout, e_ as GetArrangedItemsRequest, f1 as GetCategoriesTreeRequest, f2 as GetCategoriesTreeResponse, dF as GetCategoryBySlugRequest, dD as GetCategoryRequest, dE as GetCategoryResponse, bv as Gradient, ae as GradientType, fy as GradientTypeWithLiterals, ep as GroupByValueResults, c2 as HTMLData, c3 as HTMLDataDataOneOf, c1 as HeadingData, bE as Height, fk as IdentificationData, fl as IdentificationDataIdOneOf, bT as Image, c4 as ImageData, c7 as ImageDataCrop, c6 as ImageDataStyles, aS as ImagePosition, a$ as ImagePositionPosition, gj as ImagePositionPositionWithLiterals, ga as ImagePositionWithLiterals, aR as ImageScalingScaling, g9 as ImageScalingScalingWithLiterals, cH as ImageStyles, aF as ImageStylesPosition, fZ as ImageStylesPositionWithLiterals, d$ as IncludeMissingValuesOptions, b2 as Indentation, gm as IndentationWithLiterals, aN as InitialExpandedItems, g5 as InitialExpandedItemsWithLiterals, bd as Interval, gx as IntervalWithLiterals, dk as InvalidateCache, dl as InvalidateCacheGetByOneOf, bV as Item, dv as ItemAddedToCategory, bW as ItemDataOneOf, eE as ItemMetadata, eL as ItemReferenceMetadata, dx as ItemRemovedFromCategory, bZ as ItemStyle, dw as ItemsAddedToCategory, dz as ItemsArrangedInCategory, dy as ItemsRemovedFromCategory, bn as Keyword, aL as Layout, d5 as LayoutCellData, d0 as LayoutData, d1 as LayoutDataBackground, d2 as LayoutDataBackgroundImage, aT as LayoutDataBackgroundType, gb as LayoutDataBackgroundTypeWithLiterals, ap as LayoutType, fJ as LayoutTypeWithLiterals, g3 as LayoutWithLiterals, ak as LineCap, fE as LineCapWithLiterals, al as LineStyle, fF as LineStyleWithLiterals, bG as Link, cw as LinkData, bH as LinkDataOneOf, c8 as LinkPreviewData, c9 as LinkPreviewDataStyles, eT as ListCategoriesForItemRequest, eU as ListCategoriesForItemsRequest, dS as ListCompactCategoriesByIdsRequest, dT as ListCompactCategoriesByIdsResponse, df as ListItemNodeData, ft as ListItemsInCategoryOptionsPagingMethodOneOf, eQ as ListItemsInCategoryRequest, eR as ListItemsInCategoryRequestPagingMethodOneOf, b1 as ListStyle, gl as ListStyleWithLiterals, eW as ListTreesRequest, cW as ListValue, ca as MapData, eV as MapItemToCategories, cb as MapSettings, aw as MapType, fQ as MapTypeWithLiterals, bS as Media, cx as MentionData, fj as MessageEnvelope, dg as Metadata, ba as MissingValues, gu as MissingValuesWithLiterals, bf as Mode, gz as ModeWithLiterals, eB as MoveCategoryRequest, eX as MoveItemInCategoryRequest, bh as MoveItemInCategoryRequestPosition, gB as MoveItemInCategoryRequestPositionWithLiterals, eY as MoveItemInCategoryResponse, e7 as NestedAggregation, e5 as NestedAggregationItem, e6 as NestedAggregationItemKindOneOf, ec as NestedAggregationResults, ed as NestedAggregationResultsResultOneOf, bc as NestedAggregationType, gw as NestedAggregationTypeWithLiterals, el as NestedResultValue, em as NestedResultValueResultOneOf, er as NestedResults, eh as NestedValueAggregationResult, br as Node, bs as NodeDataOneOf, bt as NodeStyle, ac as NodeType, fw as NodeTypeWithLiterals, aQ as NullValue, g8 as NullValueWithLiterals, cO as Oembed, ev as OffsetSearch, ew as OffsetSearchPagingMethodOneOf, cf as Option, cn as OptionDesign, ci as OptionLayout, cY as OrderedListData, aq as Orientation, fK as OrientationWithLiterals, aU as Origin, gc as OriginWithLiterals, bQ as PDFSettings, dn as Page, ds as Pages, ex as Paging, ez as PagingMetadata, eS as PagingMetadataV2, cc as ParagraphData, bl as ParentCategory, ce as Permissions, aI as Placement, g0 as PlacementWithLiterals, cM as PlaybackOptions, bA as PluginContainerData, ag as PluginContainerDataAlignment, fA as PluginContainerDataAlignmentWithLiterals, bB as PluginContainerDataWidth, bC as PluginContainerDataWidthDataOneOf, co as Poll, cd as PollData, cp as PollDataLayout, cm as PollDesign, ck as PollDesignBackground, cl as PollDesignBackgroundBackgroundOneOf, aB as PollDesignBackgroundType, fV as PollDesignBackgroundTypeWithLiterals, ch as PollLayout, aA as PollLayoutDirection, fU as PollLayoutDirectionWithLiterals, az as PollLayoutType, fT as PollLayoutTypeWithLiterals, cg as PollSettings, bg as Position, gA as PositionWithLiterals, cK as PricingData, dK as QueryCategoriesRequest, dP as QueryCategoriesResponse, e2 as RangeAggregation, eb as RangeAggregationResult, d_ as RangeBucket, ej as RangeResult, ef as RangeResults, bI as Rel, b7 as RequestedFields, gr as RequestedFieldsWithLiterals, aH as Resizing, f$ as ResizingWithLiterals, aY as ResponsivenessBehaviour, gg as ResponsivenessBehaviourWithLiterals, f7 as RestoreInfo, en as Results, cI as RibbonStyles, bq as RichContent, e3 as ScalarAggregation, ek as ScalarResult, bb as ScalarType, gv as ScalarTypeWithLiterals, a_ as Scaling, gi as ScalingWithLiterals, dV as SearchCategoriesRequest, e8 as SearchDetails, bm as SeoSchema, fg as SetArrangedItemsForMigrationRequest, fh as SetArrangedItemsForMigrationResponse, eZ as SetArrangedItemsRequest, bp as Settings, d6 as ShapeData, d7 as ShapeDataStyles, b5 as SingleEntityOpsRequestedFields, gp as SingleEntityOpsRequestedFieldsWithLiterals, cB as SketchData, dd as SmartBlockCellData, dc as SmartBlockData, b3 as SmartBlockDataType, gn as SmartBlockDataTypeWithLiterals, b9 as SortDirection, gt as SortDirectionWithLiterals, b6 as SortOrder, gq as SortOrderWithLiterals, b8 as SortType, gs as SortTypeWithLiterals, dN as Sorting, au as Source, fO as SourceWithLiterals, bD as Spoiler, cz as SpoilerData, bw as Stop, bF as Styles, c5 as StylesBorder, av as StylesPosition, fP as StylesPositionWithLiterals, cS as TableCellData, cQ as TableData, bo as Tag, ai as Target, fC as TargetWithLiterals, aj as TextAlignment, fD as TextAlignmentWithLiterals, cr as TextData, di as TextNodeStyle, bK as TextStyle, b_ as Thumbnails, as as ThumbnailsAlignment, fM as ThumbnailsAlignmentWithLiterals, db as TocData, aJ as Type, g1 as TypeWithLiterals, dp as URI, dt as URIs, dG as UpdateCategoryRequest, dH as UpdateCategoryResponse, eH as UpdateCategoryVisibilityRequest, e0 as ValueAggregation, e1 as ValueAggregationOptionsOneOf, ea as ValueAggregationResult, ei as ValueResult, ee as ValueResults, aE as Variant, fY as VariantWithLiterals, aP as VerticalAlignment, aX as VerticalAlignmentAlignment, gf as VerticalAlignmentAlignmentWithLiterals, g7 as VerticalAlignmentWithLiterals, bU as Video, cL as VideoData, ao as ViewMode, fI as ViewModeWithLiterals, ax as ViewRole, fR as ViewRoleWithLiterals, ay as VoteRole, fS as VoteRoleWithLiterals, bi as WebhookIdentityType, gC as WebhookIdentityTypeWithLiterals, am as Width, af as WidthType, fz as WidthTypeWithLiterals, fG as WidthWithLiterals, fv as utils } from './categories-v1-category-categories.universal-DibWCZU9.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -48,6 +48,7 @@ __export(index_exports, {
48
48
  Layout: () => Layout,
49
49
  LayoutDataBackgroundType: () => LayoutDataBackgroundType,
50
50
  LayoutType: () => LayoutType,
51
+ LineCap: () => LineCap,
51
52
  LineStyle: () => LineStyle,
52
53
  ListStyle: () => ListStyle,
53
54
  MapType: () => MapType,
@@ -2882,6 +2883,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
2882
2883
  TextAlignment2["JUSTIFY"] = "JUSTIFY";
2883
2884
  return TextAlignment2;
2884
2885
  })(TextAlignment || {});
2886
+ var LineCap = /* @__PURE__ */ ((LineCap2) => {
2887
+ LineCap2["SQUARE"] = "SQUARE";
2888
+ LineCap2["ROUND"] = "ROUND";
2889
+ return LineCap2;
2890
+ })(LineCap || {});
2885
2891
  var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
2886
2892
  LineStyle2["SINGLE"] = "SINGLE";
2887
2893
  LineStyle2["DOUBLE"] = "DOUBLE";
@@ -5209,6 +5215,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
5209
5215
  Layout,
5210
5216
  LayoutDataBackgroundType,
5211
5217
  LayoutType,
5218
+ LineCap,
5212
5219
  LineStyle,
5213
5220
  ListStyle,
5214
5221
  MapType,