@wix/auto_sdk_categories_categories 1.0.83 → 1.0.85

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-Dt7jEwLr.d.ts → categories-v1-category-categories.universal-z1qWnkSE.d.ts} +89 -3
  2. package/build/cjs/index.d.ts +4 -4
  3. package/build/cjs/index.js +68 -2
  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 +12 -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-Dt7jEwLr.d.mts → categories-v1-category-categories.universal-z1qWnkSE.d.mts} +89 -3
  12. package/build/es/index.d.mts +4 -4
  13. package/build/es/index.mjs +67 -2
  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 +12 -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-omtKh0F4.d.ts → categories-v1-category-categories.universal-CUXzcBSs.d.ts} +89 -3
  22. package/build/internal/cjs/index.d.ts +4 -4
  23. package/build/internal/cjs/index.js +68 -2
  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 +12 -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-omtKh0F4.d.mts → categories-v1-category-categories.universal-CUXzcBSs.d.mts} +89 -3
  32. package/build/internal/es/index.d.mts +4 -4
  33. package/build/internal/es/index.mjs +67 -2
  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 +12 -2
  39. package/build/internal/es/meta.mjs +6 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +3 -3
@@ -1,4 +1,4 @@
1
- import { SearchSpec, Search, NonNullablePaths } from '@wix/sdk-types';
1
+ import { QuerySpec, SearchSpec, Query, Search, NonNullablePaths } from '@wix/sdk-types';
2
2
 
3
3
  interface Category {
4
4
  /**
@@ -1965,6 +1965,8 @@ interface LayoutData {
1965
1965
  responsivenessBreakpoint?: number | null;
1966
1966
  /** Styling for the layout's container. */
1967
1967
  containerData?: PluginContainerData;
1968
+ /** Defines where selected design propertied applies to */
1969
+ designTarget?: DesignTargetWithLiterals;
1968
1970
  }
1969
1971
  declare enum Scaling {
1970
1972
  /** Auto image scaling */
@@ -2026,6 +2028,14 @@ declare enum ResponsivenessBehaviour {
2026
2028
  }
2027
2029
  /** @enumType */
2028
2030
  type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
2031
+ declare enum DesignTarget {
2032
+ /** Design applied to layout */
2033
+ LAYOUT = "LAYOUT",
2034
+ /** Design applied to cells */
2035
+ CELL = "CELL"
2036
+ }
2037
+ /** @enumType */
2038
+ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
2029
2039
  interface LayoutCellData {
2030
2040
  /** Size of the cell in 12 columns grid. */
2031
2041
  colSpan?: number | null;
@@ -4215,6 +4225,7 @@ declare function onCategoryItemsArrangedInCategory(handler: (event: CategoryItem
4215
4225
  interface CategoryUpdatedEnvelope {
4216
4226
  entity: Category;
4217
4227
  metadata: EventMetadata;
4228
+ modifiedFields: Record<string, any>;
4218
4229
  }
4219
4230
  /** @permissionScope Manage Stores - all permissions
4220
4231
  * @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
@@ -4535,7 +4546,82 @@ interface CategoriesQueryBuilder {
4535
4546
  * @requiredField query
4536
4547
  * @requiredField options
4537
4548
  */
4538
- declare function typedQueryCategories(query: CursorQuery, options: QueryCategoriesOptions): Promise<NonNullablePaths<QueryCategoriesResponse, `categories` | `categories.${number}.itemCounter` | `categories.${number}.seoData.settings.preventAutoRedirect`, 6>>;
4549
+ declare function typedQueryCategories(query: CategoryQuery, options: QueryCategoriesOptions): Promise<NonNullablePaths<QueryCategoriesResponse, `categories` | `categories.${number}.itemCounter` | `categories.${number}.seoData.settings.preventAutoRedirect`, 6>>;
4550
+ interface CategoryQuerySpec extends QuerySpec {
4551
+ paging: 'cursor';
4552
+ wql: [
4553
+ {
4554
+ fields: [
4555
+ '_id',
4556
+ 'description',
4557
+ 'slug',
4558
+ 'treeReference.appNamespace',
4559
+ 'treeReference.treeKey',
4560
+ 'visible'
4561
+ ];
4562
+ operators: '*';
4563
+ sort: 'NONE';
4564
+ },
4565
+ {
4566
+ fields: [
4567
+ '_createdDate',
4568
+ '_updatedDate',
4569
+ 'managingAppId',
4570
+ 'name',
4571
+ 'parentCategory._id',
4572
+ 'parentCategory.index'
4573
+ ];
4574
+ operators: '*';
4575
+ sort: 'BOTH';
4576
+ }
4577
+ ];
4578
+ }
4579
+ type CommonQueryWithEntityContext = Query<Category, CategoryQuerySpec>;
4580
+ type CategoryQuery = {
4581
+ /**
4582
+ Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`.
4583
+ */
4584
+ cursorPaging?: {
4585
+ /**
4586
+ Maximum number of items to return in the results.
4587
+ @max: 1000
4588
+ */
4589
+ limit?: NonNullable<CommonQueryWithEntityContext['cursorPaging']>['limit'] | null;
4590
+ /**
4591
+ Pointer to the next or previous page in the list of results.
4592
+
4593
+ Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
4594
+ Not relevant for the first request.
4595
+ @maxLength: 16000
4596
+ */
4597
+ cursor?: NonNullable<CommonQueryWithEntityContext['cursorPaging']>['cursor'] | null;
4598
+ };
4599
+ /**
4600
+ Filter object in the following format:
4601
+ `"filter" : {
4602
+ "fieldName1": "value1",
4603
+ "fieldName2":{"$operator":"value2"}
4604
+ }`
4605
+ Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
4606
+ */
4607
+ filter?: CommonQueryWithEntityContext['filter'] | null;
4608
+ /**
4609
+ Sort object in the following format:
4610
+ `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
4611
+ @maxSize: 5
4612
+ */
4613
+ sort?: {
4614
+ /**
4615
+ Name of the field to sort by.
4616
+ @maxLength: 512
4617
+ */
4618
+ fieldName?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['fieldName'];
4619
+ /**
4620
+ Sort order.
4621
+ */
4622
+ order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
4623
+ }[];
4624
+ };
4539
4625
  interface SearchCategoriesOptions {
4540
4626
  /**
4541
4627
  * Category tree reference details.
@@ -5134,4 +5220,4 @@ interface BulkSetItemCategoriesOptions {
5134
5220
  treeReference: TreeReference;
5135
5221
  }
5136
5222
 
5137
- export { type CategoryItemAddedToCategoryEnvelope as $, type BulkRemoveItemsFromCategoryApplicationErrors as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemFromCategoriesOptions as E, type BulkRemoveItemFromCategoriesResponse as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesApplicationErrors as H, type ItemReference as I, type ListItemsInCategoryResponse as J, type ListCategoriesForItemOptions as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemResponse as N, type ListCategoriesForItemsOptions as O, type ListCategoriesForItemsResponse as P, type ListTreesResponse as Q, type SetArrangedItemsOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsResponse as V, type SetArrangedItemsApplicationErrors as W, type GetArrangedItemsResponse as X, type CategoryMovedEnvelope as Y, type CategoryCreatedEnvelope as Z, type CategoryDeletedEnvelope as _, type CreateCategoryOptions as a, type Breadcrumb as a$, type CategoryItemRemovedFromCategoryEnvelope as a0, type CategoryItemsArrangedInCategoryEnvelope as a1, type CategoryUpdatedEnvelope as a2, type CursorQuery as a3, type QueryCategoriesOptions as a4, typedQueryCategories as a5, type CategoriesQueryBuilder as a6, NodeType as a7, WidthType as a8, PluginContainerDataAlignment as a9, Type as aA, Alignment as aB, Layout as aC, AppType as aD, InitialExpandedItems as aE, Direction as aF, VerticalAlignment as aG, NullValue as aH, Scaling as aI, ImagePosition as aJ, VerticalAlignmentAlignment as aK, ResponsivenessBehaviour as aL, SingleEntityOpsRequestedFields as aM, SortOrder as aN, RequestedFields as aO, SortType as aP, SortDirection as aQ, MissingValues as aR, ScalarType as aS, NestedAggregationType as aT, Interval as aU, AggregationType as aV, Mode as aW, Position as aX, MoveItemInCategoryRequestPosition as aY, WebhookIdentityType as aZ, type BreadcrumbsInfo as a_, ButtonDataType as aa, Target as ab, TextAlignment as ac, LineStyle as ad, Width as ae, DividerDataAlignment as af, ViewMode as ag, LayoutType as ah, Orientation as ai, Crop as aj, ThumbnailsAlignment as ak, GIFType as al, Source as am, StylesPosition as an, MapType as ao, ViewRole as ap, VoteRole as aq, PollLayoutType as ar, PollLayoutDirection as as, BackgroundType as at, DecorationType as au, FontType as av, ImageStylesPosition as aw, AspectRatio as ax, Resizing as ay, Placement as az, type CreateCategoryApplicationErrors as b, type PollDataLayout as b$, type ParentCategory as b0, type SeoSchema as b1, type Keyword as b2, type Tag as b3, type Settings as b4, type RichContent as b5, type Node as b6, type NodeDataOneOf as b7, type NodeStyle as b8, type ButtonData as b9, type ItemStyle as bA, type Thumbnails as bB, type GIFData as bC, type GIF as bD, type HeadingData as bE, type HTMLData as bF, type HTMLDataDataOneOf as bG, type ImageData as bH, type StylesBorder as bI, type ImageDataStyles as bJ, type LinkPreviewData as bK, type LinkPreviewDataStyles as bL, type MapData as bM, type MapSettings as bN, type ParagraphData as bO, type PollData as bP, type Permissions as bQ, type Option as bR, type PollSettings as bS, type PollLayout as bT, type OptionLayout as bU, type Gradient as bV, type Background as bW, type BackgroundBackgroundOneOf as bX, type PollDesign as bY, type OptionDesign as bZ, type Poll as b_, type Border as ba, type Colors 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 CodeBlockData as bl, type TextStyle as bm, type DividerData as bn, type FileData as bo, type FileSource as bp, type FileSourceDataOneOf as bq, type PDFSettings as br, type GalleryData as bs, type Media as bt, type Image as bu, type Video as bv, type Item as bw, type ItemDataOneOf as bx, type GalleryOptions as by, type GalleryOptionsLayout as bz, type UpdateCategoryOptions as c, type DeleteCategoryRequest as c$, type Design as c0, type TextData as c1, type Decoration as c2, type DecorationDataOneOf as c3, type AnchorData as c4, type ColorData as c5, type LinkData as c6, type MentionData as c7, type FontSizeData as c8, type SpoilerData as c9, type CaptionData as cA, type LayoutData as cB, type BackgroundImage as cC, type LayoutCellData as cD, type Metadata as cE, type DocumentStyle as cF, type TextNodeStyle as cG, type ExtendedFields as cH, type InvalidateCache as cI, type InvalidateCacheGetByOneOf as cJ, type App as cK, type Page as cL, type URI as cM, type File as cN, type CustomTag as cO, type CategoryMoved as cP, type ItemAddedToCategory as cQ, type ItemsAddedToCategory as cR, type ItemRemovedFromCategory as cS, type ItemsRemovedFromCategory as cT, type ItemsArrangedInCategory as cU, type CreateCategoryRequest as cV, type CreateCategoryResponse as cW, type GetCategoryRequest as cX, type GetCategoryResponse as cY, type UpdateCategoryRequest as cZ, type UpdateCategoryResponse as c_, type FontFamilyData as ca, type AppEmbedData as cb, type AppEmbedDataAppDataOneOf as cc, type BookingData as cd, type EventData as ce, type ButtonStyles as cf, type ImageStyles as cg, type RibbonStyles as ch, type CardStyles as ci, type PricingData as cj, type VideoData as ck, type PlaybackOptions as cl, type EmbedData as cm, type Oembed as cn, type CollapsibleListData as co, type TableData as cp, type Dimensions as cq, type TableCellData as cr, type CellStyle as cs, type BorderColors as ct, type BorderWidths as cu, type ListValue as cv, type AudioData as cw, type OrderedListData as cx, type BulletedListData as cy, type BlockquoteData as cz, type UpdateCategoryApplicationErrors as d, type BulkShowCategoriesRequest as d$, type DeleteCategoryResponse as d0, type QueryCategoriesRequest as d1, type CursorQueryPagingMethodOneOf as d2, type Sorting as d3, type CursorPaging as d4, type QueryCategoriesResponse as d5, type CursorPagingMetadata as d6, type Cursors as d7, type ListCompactCategoriesByIdsRequest as d8, type ListCompactCategoriesByIdsResponse as d9, type NestedValueAggregationResult as dA, type ValueResult as dB, type RangeResult as dC, type ScalarResult as dD, type NestedResultValue as dE, type NestedResultValueResultOneOf as dF, type Results as dG, type DateHistogramResult as dH, type GroupByValueResults as dI, type DateHistogramResults as dJ, type NestedResults as dK, type AggregationResults as dL, type AggregationResultsResultOneOf as dM, type DeprecatedSearchCategoriesWithOffsetRequest as dN, type OffsetSearch as dO, type OffsetSearchPagingMethodOneOf as dP, type Paging as dQ, type DeprecatedSearchCategoriesWithOffsetResponse as dR, type PagingMetadata as dS, type CountCategoriesRequest as dT, type MoveCategoryRequest as dU, type BulkUpdateCategoriesRequest as dV, type BulkCategoriesResult as dW, type ItemMetadata as dX, type ApplicationError as dY, type BulkActionMetadata as dZ, type UpdateCategoryVisibilityRequest as d_, type CompactCategory as da, type SearchCategoriesRequest as db, type CursorSearch as dc, type CursorSearchPagingMethodOneOf as dd, type Aggregation as de, type AggregationKindOneOf as df, type RangeBucket as dg, type IncludeMissingValuesOptions as dh, type ValueAggregation as di, type ValueAggregationOptionsOneOf as dj, type RangeAggregation as dk, type ScalarAggregation as dl, type DateHistogramAggregation as dm, type NestedAggregationItem as dn, type NestedAggregationItemKindOneOf as dp, type NestedAggregation as dq, type SearchDetails as dr, type AggregationData as ds, type ValueAggregationResult as dt, type RangeAggregationResult as du, type NestedAggregationResults as dv, type NestedAggregationResultsResultOneOf as dw, type ValueResults as dx, type RangeResults as dy, type AggregationResultsScalarResult as dz, type CategorySearch as e, type PollLayoutTypeWithLiterals as e$, type BulkDeleteCategoriesRequest as e0, type BulkDeleteCategoriesResponse as e1, type BulkDeleteCategoriesResponseBulkCategoriesResult as e2, type BulkAddItemsToCategoryRequest as e3, type BulkItemsToCategoryResult as e4, type ItemReferenceMetadata as e5, type BulkAddItemToCategoriesRequest as e6, type BulkItemToCategoriesResult as e7, type BulkRemoveItemsFromCategoryRequest as e8, type BulkRemoveItemFromCategoriesRequest as e9, type IdentificationDataIdOneOf as eA, type BaseEventMetadata as eB, type EventMetadata as eC, type CategoriesQueryResult as eD, type CategorySearchSpec as eE, type ListItemsInCategoryOptionsPagingMethodOneOf as eF, type BulkSetItemCategoriesOptions as eG, type NodeTypeWithLiterals as eH, type WidthTypeWithLiterals as eI, type PluginContainerDataAlignmentWithLiterals as eJ, type ButtonDataTypeWithLiterals as eK, type TargetWithLiterals as eL, type TextAlignmentWithLiterals as eM, type LineStyleWithLiterals as eN, type WidthWithLiterals as eO, type DividerDataAlignmentWithLiterals as eP, type ViewModeWithLiterals as eQ, type LayoutTypeWithLiterals as eR, type OrientationWithLiterals as eS, type CropWithLiterals as eT, type ThumbnailsAlignmentWithLiterals as eU, type GIFTypeWithLiterals as eV, type SourceWithLiterals as eW, type StylesPositionWithLiterals as eX, type MapTypeWithLiterals as eY, type ViewRoleWithLiterals as eZ, type VoteRoleWithLiterals as e_, type ListItemsInCategoryRequest as ea, type ListItemsInCategoryRequestPagingMethodOneOf as eb, type PagingMetadataV2 as ec, type ListCategoriesForItemRequest as ed, type ListCategoriesForItemsRequest as ee, type MapItemToCategories as ef, type ListTreesRequest as eg, type MoveItemInCategoryRequest as eh, type MoveItemInCategoryResponse as ei, type SetArrangedItemsRequest as ej, type GetArrangedItemsRequest as ek, type BulkSetItemCategoriesRequest as el, type BulkSetItemCategoriesResponse as em, type GetCategoriesTreeRequest as en, type GetCategoriesTreeResponse as eo, type CategoryTreeNode as ep, type DomainEvent as eq, type DomainEventBodyOneOf as er, type EntityCreatedEvent as es, type RestoreInfo as et, type EntityUpdatedEvent as eu, type EntityDeletedEvent as ev, type ActionEvent as ew, type Empty as ex, type MessageEnvelope as ey, type IdentificationData as ez, type SearchCategoriesResponse as f, type PollLayoutDirectionWithLiterals as f0, type BackgroundTypeWithLiterals as f1, type DecorationTypeWithLiterals as f2, type FontTypeWithLiterals as f3, type ImageStylesPositionWithLiterals as f4, type AspectRatioWithLiterals as f5, type ResizingWithLiterals as f6, type PlacementWithLiterals as f7, type TypeWithLiterals as f8, type AlignmentWithLiterals as f9, onCategoryMoved as fA, onCategoryCreated as fB, onCategoryDeleted as fC, onCategoryItemAddedToCategory as fD, onCategoryItemRemovedFromCategory as fE, onCategoryItemsArrangedInCategory as fF, onCategoryUpdated as fG, createCategory as fH, getCategory as fI, updateCategory as fJ, deleteCategory as fK, queryCategories as fL, countCategories as fM, moveCategory as fN, bulkUpdateCategories as fO, updateCategoryVisibility as fP, bulkShowCategories as fQ, bulkAddItemsToCategory as fR, bulkAddItemToCategories as fS, bulkRemoveItemsFromCategory as fT, bulkRemoveItemFromCategories as fU, listItemsInCategory as fV, listCategoriesForItem as fW, listCategoriesForItems as fX, listTrees as fY, setArrangedItems as fZ, getArrangedItems as f_, type LayoutWithLiterals as fa, type AppTypeWithLiterals as fb, type InitialExpandedItemsWithLiterals as fc, type DirectionWithLiterals as fd, type VerticalAlignmentWithLiterals as fe, type NullValueWithLiterals as ff, type ScalingWithLiterals as fg, type ImagePositionWithLiterals as fh, type VerticalAlignmentAlignmentWithLiterals as fi, type ResponsivenessBehaviourWithLiterals as fj, type SingleEntityOpsRequestedFieldsWithLiterals as fk, type SortOrderWithLiterals as fl, type RequestedFieldsWithLiterals as fm, type SortTypeWithLiterals as fn, type SortDirectionWithLiterals as fo, type MissingValuesWithLiterals as fp, type ScalarTypeWithLiterals as fq, type NestedAggregationTypeWithLiterals as fr, type IntervalWithLiterals as fs, type AggregationTypeWithLiterals as ft, type ModeWithLiterals as fu, type PositionWithLiterals as fv, type MoveItemInCategoryRequestPositionWithLiterals as fw, type WebhookIdentityTypeWithLiterals as fx, type BulkSetItemCategoriesApplicationErrors as fy, type CommonSearchWithEntityContext as fz, type CountCategoriesOptions as g, type CountCategoriesResponse as h, type MoveCategoryResponse as i, type MoveCategoryApplicationErrors as j, type MaskedCategory as k, type BulkUpdateCategoriesResponse as l, type BulkUpdateCategoriesApplicationErrors as m, type UpdateCategoryVisibilityOptions as n, type UpdateCategoryVisibilityResponse as o, type UpdateCategoryVisibilityApplicationErrors as p, type BulkShowCategoriesOptions as q, type BulkShowCategoriesResponse as r, type BulkAddItemsToCategoryOptions as s, type BulkAddItemsToCategoryResponse as t, type BulkAddItemsToCategoryApplicationErrors as u, type BulkAddItemToCategoriesOptions as v, type BulkAddItemToCategoriesResponse as w, type BulkAddItemToCategoriesApplicationErrors as x, type BulkRemoveItemsFromCategoryOptions as y, type BulkRemoveItemsFromCategoryResponse as z };
5223
+ export { type CategoryItemAddedToCategoryEnvelope as $, type BulkRemoveItemsFromCategoryApplicationErrors as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemFromCategoriesOptions as E, type BulkRemoveItemFromCategoriesResponse as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesApplicationErrors as H, type ItemReference as I, type ListItemsInCategoryResponse as J, type ListCategoriesForItemOptions as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemResponse as N, type ListCategoriesForItemsOptions as O, type ListCategoriesForItemsResponse as P, type ListTreesResponse as Q, type SetArrangedItemsOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsResponse as V, type SetArrangedItemsApplicationErrors as W, type GetArrangedItemsResponse as X, type CategoryMovedEnvelope as Y, type CategoryCreatedEnvelope as Z, type CategoryDeletedEnvelope as _, type CreateCategoryOptions as a, type BreadcrumbsInfo as a$, type CategoryItemRemovedFromCategoryEnvelope as a0, type CategoryItemsArrangedInCategoryEnvelope as a1, type CategoryUpdatedEnvelope as a2, type CategoryQuery as a3, type QueryCategoriesOptions as a4, typedQueryCategories as a5, type CategoriesQueryBuilder as a6, NodeType as a7, WidthType as a8, PluginContainerDataAlignment as a9, Type as aA, Alignment as aB, Layout as aC, AppType as aD, InitialExpandedItems as aE, Direction as aF, VerticalAlignment as aG, NullValue as aH, Scaling as aI, ImagePosition as aJ, VerticalAlignmentAlignment as aK, ResponsivenessBehaviour as aL, DesignTarget as aM, SingleEntityOpsRequestedFields as aN, SortOrder as aO, RequestedFields as aP, SortType as aQ, SortDirection as aR, MissingValues as aS, ScalarType as aT, NestedAggregationType as aU, Interval as aV, AggregationType as aW, Mode as aX, Position as aY, MoveItemInCategoryRequestPosition as aZ, WebhookIdentityType as a_, ButtonDataType as aa, Target as ab, TextAlignment as ac, LineStyle as ad, Width as ae, DividerDataAlignment as af, ViewMode as ag, LayoutType as ah, Orientation as ai, Crop as aj, ThumbnailsAlignment as ak, GIFType as al, Source as am, StylesPosition as an, MapType as ao, ViewRole as ap, VoteRole as aq, PollLayoutType as ar, PollLayoutDirection as as, BackgroundType as at, DecorationType as au, FontType as av, ImageStylesPosition as aw, AspectRatio as ax, Resizing as ay, Placement as az, type CreateCategoryApplicationErrors as b, type Poll as b$, type Breadcrumb as b0, type ParentCategory as b1, type SeoSchema as b2, type Keyword as b3, type Tag as b4, type Settings as b5, type RichContent as b6, type Node as b7, type NodeDataOneOf as b8, type NodeStyle as b9, type GalleryOptionsLayout as bA, type ItemStyle as bB, type Thumbnails as bC, type GIFData as bD, type GIF as bE, type HeadingData as bF, type HTMLData as bG, type HTMLDataDataOneOf as bH, type ImageData as bI, type StylesBorder as bJ, type ImageDataStyles as bK, type LinkPreviewData as bL, type LinkPreviewDataStyles as bM, type MapData as bN, type MapSettings as bO, type ParagraphData as bP, type PollData as bQ, type Permissions as bR, type Option as bS, type PollSettings as bT, type PollLayout as bU, type OptionLayout as bV, type Gradient as bW, type Background as bX, type BackgroundBackgroundOneOf as bY, type PollDesign as bZ, type OptionDesign as b_, type ButtonData as ba, type Border as bb, type Colors 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 CodeBlockData as bm, type TextStyle as bn, type DividerData as bo, type FileData as bp, type FileSource as bq, type FileSourceDataOneOf as br, type PDFSettings as bs, type GalleryData as bt, type Media as bu, type Image as bv, type Video as bw, type Item as bx, type ItemDataOneOf as by, type GalleryOptions as bz, type UpdateCategoryOptions as c, type UpdateCategoryResponse as c$, type PollDataLayout as c0, type Design as c1, type TextData as c2, type Decoration as c3, type DecorationDataOneOf as c4, type AnchorData as c5, type ColorData as c6, type LinkData as c7, type MentionData as c8, type FontSizeData as c9, type BlockquoteData as cA, type CaptionData as cB, type LayoutData as cC, type BackgroundImage as cD, type LayoutCellData as cE, type Metadata as cF, type DocumentStyle as cG, type TextNodeStyle as cH, type ExtendedFields as cI, type InvalidateCache as cJ, type InvalidateCacheGetByOneOf as cK, type App as cL, type Page as cM, type URI as cN, type File as cO, type CustomTag as cP, type CategoryMoved as cQ, type ItemAddedToCategory as cR, type ItemsAddedToCategory as cS, type ItemRemovedFromCategory as cT, type ItemsRemovedFromCategory as cU, type ItemsArrangedInCategory as cV, type CreateCategoryRequest as cW, type CreateCategoryResponse as cX, type GetCategoryRequest as cY, type GetCategoryResponse as cZ, type UpdateCategoryRequest as c_, type SpoilerData as ca, type FontFamilyData 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 UpdateCategoryApplicationErrors as d, type BulkActionMetadata as d$, type DeleteCategoryRequest as d0, type DeleteCategoryResponse as d1, type QueryCategoriesRequest as d2, type CursorQuery as d3, type CursorQueryPagingMethodOneOf as d4, type Sorting as d5, type CursorPaging as d6, type QueryCategoriesResponse as d7, type CursorPagingMetadata as d8, type Cursors as d9, type RangeResults as dA, type AggregationResultsScalarResult as dB, type NestedValueAggregationResult as dC, type ValueResult as dD, type RangeResult as dE, type ScalarResult as dF, type NestedResultValue as dG, type NestedResultValueResultOneOf as dH, type Results as dI, type DateHistogramResult as dJ, type GroupByValueResults as dK, type DateHistogramResults as dL, type NestedResults as dM, type AggregationResults as dN, type AggregationResultsResultOneOf as dO, type DeprecatedSearchCategoriesWithOffsetRequest as dP, type OffsetSearch as dQ, type OffsetSearchPagingMethodOneOf as dR, type Paging as dS, type DeprecatedSearchCategoriesWithOffsetResponse as dT, type PagingMetadata as dU, type CountCategoriesRequest as dV, type MoveCategoryRequest as dW, type BulkUpdateCategoriesRequest as dX, type BulkCategoriesResult as dY, type ItemMetadata as dZ, type ApplicationError as d_, type ListCompactCategoriesByIdsRequest as da, type ListCompactCategoriesByIdsResponse as db, type CompactCategory as dc, type SearchCategoriesRequest as dd, type CursorSearch as de, type CursorSearchPagingMethodOneOf as df, type Aggregation as dg, type AggregationKindOneOf as dh, type RangeBucket as di, type IncludeMissingValuesOptions as dj, type ValueAggregation as dk, type ValueAggregationOptionsOneOf as dl, type RangeAggregation as dm, type ScalarAggregation as dn, type DateHistogramAggregation as dp, type NestedAggregationItem as dq, type NestedAggregationItemKindOneOf as dr, type NestedAggregation as ds, type SearchDetails as dt, type AggregationData as du, type ValueAggregationResult as dv, type RangeAggregationResult as dw, type NestedAggregationResults as dx, type NestedAggregationResultsResultOneOf as dy, type ValueResults as dz, type CategorySearch as e, type MapTypeWithLiterals as e$, type UpdateCategoryVisibilityRequest as e0, type BulkShowCategoriesRequest as e1, type BulkDeleteCategoriesRequest as e2, type BulkDeleteCategoriesResponse as e3, type BulkDeleteCategoriesResponseBulkCategoriesResult as e4, type BulkAddItemsToCategoryRequest as e5, type BulkItemsToCategoryResult as e6, type ItemReferenceMetadata as e7, type BulkAddItemToCategoriesRequest as e8, type BulkItemToCategoriesResult as e9, type MessageEnvelope as eA, type IdentificationData as eB, type IdentificationDataIdOneOf as eC, type BaseEventMetadata as eD, type EventMetadata as eE, type CategoriesQueryResult as eF, type CategoryQuerySpec as eG, type CategorySearchSpec as eH, type ListItemsInCategoryOptionsPagingMethodOneOf as eI, type BulkSetItemCategoriesOptions as eJ, type NodeTypeWithLiterals as eK, type WidthTypeWithLiterals as eL, type PluginContainerDataAlignmentWithLiterals as eM, type ButtonDataTypeWithLiterals as eN, type TargetWithLiterals as eO, type TextAlignmentWithLiterals as eP, type LineStyleWithLiterals as eQ, type WidthWithLiterals as eR, type DividerDataAlignmentWithLiterals as eS, type ViewModeWithLiterals as eT, type LayoutTypeWithLiterals as eU, type OrientationWithLiterals as eV, type CropWithLiterals as eW, type ThumbnailsAlignmentWithLiterals as eX, type GIFTypeWithLiterals as eY, type SourceWithLiterals as eZ, type StylesPositionWithLiterals as e_, type BulkRemoveItemsFromCategoryRequest as ea, type BulkRemoveItemFromCategoriesRequest as eb, type ListItemsInCategoryRequest as ec, type ListItemsInCategoryRequestPagingMethodOneOf as ed, type PagingMetadataV2 as ee, type ListCategoriesForItemRequest as ef, type ListCategoriesForItemsRequest as eg, type MapItemToCategories as eh, type ListTreesRequest as ei, type MoveItemInCategoryRequest as ej, type MoveItemInCategoryResponse as ek, type SetArrangedItemsRequest as el, type GetArrangedItemsRequest as em, type BulkSetItemCategoriesRequest as en, type BulkSetItemCategoriesResponse as eo, type GetCategoriesTreeRequest as ep, type GetCategoriesTreeResponse as eq, type CategoryTreeNode as er, type DomainEvent as es, type DomainEventBodyOneOf as et, type EntityCreatedEvent as eu, type RestoreInfo as ev, type EntityUpdatedEvent as ew, type EntityDeletedEvent as ex, type ActionEvent as ey, type Empty as ez, type SearchCategoriesResponse as f, listCategoriesForItem as f$, type ViewRoleWithLiterals as f0, type VoteRoleWithLiterals as f1, type PollLayoutTypeWithLiterals as f2, type PollLayoutDirectionWithLiterals as f3, type BackgroundTypeWithLiterals as f4, type DecorationTypeWithLiterals as f5, type FontTypeWithLiterals as f6, type ImageStylesPositionWithLiterals as f7, type AspectRatioWithLiterals as f8, type ResizingWithLiterals as f9, type MoveItemInCategoryRequestPositionWithLiterals as fA, type WebhookIdentityTypeWithLiterals as fB, type BulkSetItemCategoriesApplicationErrors as fC, type CommonQueryWithEntityContext as fD, type CommonSearchWithEntityContext as fE, onCategoryMoved as fF, onCategoryCreated as fG, onCategoryDeleted as fH, onCategoryItemAddedToCategory as fI, onCategoryItemRemovedFromCategory as fJ, onCategoryItemsArrangedInCategory as fK, onCategoryUpdated as fL, createCategory as fM, getCategory as fN, updateCategory as fO, deleteCategory as fP, queryCategories as fQ, countCategories as fR, moveCategory as fS, bulkUpdateCategories as fT, updateCategoryVisibility as fU, bulkShowCategories as fV, bulkAddItemsToCategory as fW, bulkAddItemToCategories as fX, bulkRemoveItemsFromCategory as fY, bulkRemoveItemFromCategories as fZ, listItemsInCategory as f_, type PlacementWithLiterals as fa, type TypeWithLiterals as fb, type AlignmentWithLiterals as fc, type LayoutWithLiterals as fd, type AppTypeWithLiterals as fe, type InitialExpandedItemsWithLiterals as ff, type DirectionWithLiterals as fg, type VerticalAlignmentWithLiterals as fh, type NullValueWithLiterals as fi, type ScalingWithLiterals as fj, type ImagePositionWithLiterals as fk, type VerticalAlignmentAlignmentWithLiterals as fl, type ResponsivenessBehaviourWithLiterals as fm, type DesignTargetWithLiterals as fn, type SingleEntityOpsRequestedFieldsWithLiterals as fo, type SortOrderWithLiterals as fp, type RequestedFieldsWithLiterals as fq, type SortTypeWithLiterals as fr, type SortDirectionWithLiterals as fs, type MissingValuesWithLiterals as ft, type ScalarTypeWithLiterals as fu, type NestedAggregationTypeWithLiterals as fv, type IntervalWithLiterals as fw, type AggregationTypeWithLiterals as fx, type ModeWithLiterals as fy, type PositionWithLiterals as fz, type CountCategoriesOptions as g, listCategoriesForItems as g0, listTrees as g1, setArrangedItems as g2, getArrangedItems as g3, type CountCategoriesResponse as h, type MoveCategoryResponse as i, type MoveCategoryApplicationErrors as j, type MaskedCategory as k, type BulkUpdateCategoriesResponse as l, type BulkUpdateCategoriesApplicationErrors as m, type UpdateCategoryVisibilityOptions as n, type UpdateCategoryVisibilityResponse as o, type UpdateCategoryVisibilityApplicationErrors as p, type BulkShowCategoriesOptions as q, type BulkShowCategoriesResponse as r, type BulkAddItemsToCategoryOptions as s, type BulkAddItemsToCategoryResponse as t, type BulkAddItemsToCategoryApplicationErrors as u, type BulkAddItemToCategoriesOptions as v, type BulkAddItemToCategoriesResponse as w, type BulkAddItemToCategoriesApplicationErrors as x, type BulkRemoveItemsFromCategoryOptions as y, type BulkRemoveItemsFromCategoryResponse 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, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, c as UpdateCategoryOptions, d as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, e as CategorySearch, S as SearchCategoriesOptions, f as SearchCategoriesResponse, g as CountCategoriesOptions, h as CountCategoriesResponse, M as MoveCategoryOptions, i as MoveCategoryResponse, j as MoveCategoryApplicationErrors, k as MaskedCategory, B as BulkUpdateCategoriesOptions, l as BulkUpdateCategoriesResponse, m as BulkUpdateCategoriesApplicationErrors, n as UpdateCategoryVisibilityOptions, o as UpdateCategoryVisibilityResponse, p as UpdateCategoryVisibilityApplicationErrors, q as BulkShowCategoriesOptions, r as BulkShowCategoriesResponse, I as ItemReference, s as BulkAddItemsToCategoryOptions, t as BulkAddItemsToCategoryResponse, u as BulkAddItemsToCategoryApplicationErrors, v as BulkAddItemToCategoriesOptions, w as BulkAddItemToCategoriesResponse, x as BulkAddItemToCategoriesApplicationErrors, y as BulkRemoveItemsFromCategoryOptions, z as BulkRemoveItemsFromCategoryResponse, A as BulkRemoveItemsFromCategoryApplicationErrors, E as BulkRemoveItemFromCategoriesOptions, F as BulkRemoveItemFromCategoriesResponse, H as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, J as ListItemsInCategoryResponse, K as ListCategoriesForItemOptions, N as ListCategoriesForItemResponse, O as ListCategoriesForItemsOptions, P as ListCategoriesForItemsResponse, Q as ListTreesResponse, R as SetArrangedItemsOptions, V as SetArrangedItemsResponse, W as SetArrangedItemsApplicationErrors, X as GetArrangedItemsResponse, Y as CategoryMovedEnvelope, Z as CategoryCreatedEnvelope, _ as CategoryDeletedEnvelope, $ as CategoryItemAddedToCategoryEnvelope, a0 as CategoryItemRemovedFromCategoryEnvelope, a1 as CategoryItemsArrangedInCategoryEnvelope, a2 as CategoryUpdatedEnvelope, a3 as CursorQuery, a4 as QueryCategoriesOptions, a5 as typedQueryCategories, a6 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-Dt7jEwLr.js';
3
- export { ew as ActionEvent, de as Aggregation, ds as AggregationData, df as AggregationKindOneOf, dL as AggregationResults, dM as AggregationResultsResultOneOf, dz as AggregationResultsScalarResult, aV as AggregationType, ft as AggregationTypeWithLiterals, aB as Alignment, f9 as AlignmentWithLiterals, c4 as AnchorData, cK as App, cb as AppEmbedData, cc as AppEmbedDataAppDataOneOf, aD as AppType, fb as AppTypeWithLiterals, dY as ApplicationError, ax as AspectRatio, f5 as AspectRatioWithLiterals, cw as AudioData, bW as Background, bX as BackgroundBackgroundOneOf, cC as BackgroundImage, at as BackgroundType, f1 as BackgroundTypeWithLiterals, eB as BaseEventMetadata, cz as BlockquoteData, cd as BookingData, ba as Border, ct as BorderColors, cu as BorderWidths, a$ as Breadcrumb, a_ as BreadcrumbsInfo, dZ as BulkActionMetadata, e6 as BulkAddItemToCategoriesRequest, e3 as BulkAddItemsToCategoryRequest, dW as BulkCategoriesResult, e0 as BulkDeleteCategoriesRequest, e1 as BulkDeleteCategoriesResponse, e2 as BulkDeleteCategoriesResponseBulkCategoriesResult, e7 as BulkItemToCategoriesResult, e4 as BulkItemsToCategoryResult, e9 as BulkRemoveItemFromCategoriesRequest, e8 as BulkRemoveItemsFromCategoryRequest, fy as BulkSetItemCategoriesApplicationErrors, eG as BulkSetItemCategoriesOptions, el as BulkSetItemCategoriesRequest, em as BulkSetItemCategoriesResponse, d$ as BulkShowCategoriesRequest, dV as BulkUpdateCategoriesRequest, cy as BulletedListData, b9 as ButtonData, aa as ButtonDataType, eK as ButtonDataTypeWithLiterals, cf as ButtonStyles, cA as CaptionData, ci as CardStyles, eD as CategoriesQueryResult, cP as CategoryMoved, eE as CategorySearchSpec, ep as CategoryTreeNode, cs as CellStyle, bl as CodeBlockData, co as CollapsibleListData, c5 as ColorData, bb as Colors, fz as CommonSearchWithEntityContext, da as CompactCategory, dT as CountCategoriesRequest, cV as CreateCategoryRequest, cW as CreateCategoryResponse, aj as Crop, eT as CropWithLiterals, d4 as CursorPaging, d6 as CursorPagingMetadata, d2 as CursorQueryPagingMethodOneOf, dc as CursorSearch, dd as CursorSearchPagingMethodOneOf, d7 as Cursors, cO as CustomTag, dm as DateHistogramAggregation, dH as DateHistogramResult, dJ as DateHistogramResults, c2 as Decoration, c3 as DecorationDataOneOf, au as DecorationType, f2 as DecorationTypeWithLiterals, c$ as DeleteCategoryRequest, d0 as DeleteCategoryResponse, dN as DeprecatedSearchCategoriesWithOffsetRequest, dR as DeprecatedSearchCategoriesWithOffsetResponse, c0 as Design, cq as Dimensions, aF as Direction, fd as DirectionWithLiterals, bn as DividerData, af as DividerDataAlignment, eP as DividerDataAlignmentWithLiterals, cF as DocumentStyle, eq as DomainEvent, er as DomainEventBodyOneOf, cm as EmbedData, ex as Empty, es as EntityCreatedEvent, ev as EntityDeletedEvent, eu as EntityUpdatedEvent, ce as EventData, eC as EventMetadata, cH as ExtendedFields, cN as File, bo as FileData, bp as FileSource, bq as FileSourceDataOneOf, ca as FontFamilyData, c8 as FontSizeData, av as FontType, f3 as FontTypeWithLiterals, bD as GIF, bC as GIFData, al as GIFType, eV as GIFTypeWithLiterals, bs as GalleryData, by as GalleryOptions, bz as GalleryOptionsLayout, ek as GetArrangedItemsRequest, en as GetCategoriesTreeRequest, eo as GetCategoriesTreeResponse, cX as GetCategoryRequest, cY as GetCategoryResponse, bV as Gradient, dI as GroupByValueResults, bF as HTMLData, bG as HTMLDataDataOneOf, bE as HeadingData, bg as Height, ez as IdentificationData, eA as IdentificationDataIdOneOf, bu as Image, bH as ImageData, bJ as ImageDataStyles, aJ as ImagePosition, fh as ImagePositionWithLiterals, cg as ImageStyles, aw as ImageStylesPosition, f4 as ImageStylesPositionWithLiterals, dh as IncludeMissingValuesOptions, aE as InitialExpandedItems, fc as InitialExpandedItemsWithLiterals, aU as Interval, fs as IntervalWithLiterals, cI as InvalidateCache, cJ as InvalidateCacheGetByOneOf, bw as Item, cQ as ItemAddedToCategory, bx as ItemDataOneOf, dX as ItemMetadata, e5 as ItemReferenceMetadata, cS as ItemRemovedFromCategory, bA as ItemStyle, cR as ItemsAddedToCategory, cU as ItemsArrangedInCategory, cT as ItemsRemovedFromCategory, b2 as Keyword, aC as Layout, cD as LayoutCellData, cB as LayoutData, ah as LayoutType, eR as LayoutTypeWithLiterals, fa as LayoutWithLiterals, ad as LineStyle, eN as LineStyleWithLiterals, bi as Link, c6 as LinkData, bj as LinkDataOneOf, bK as LinkPreviewData, bL as LinkPreviewDataStyles, ed as ListCategoriesForItemRequest, ee as ListCategoriesForItemsRequest, d8 as ListCompactCategoriesByIdsRequest, d9 as ListCompactCategoriesByIdsResponse, eF as ListItemsInCategoryOptionsPagingMethodOneOf, ea as ListItemsInCategoryRequest, eb as ListItemsInCategoryRequestPagingMethodOneOf, eg as ListTreesRequest, cv as ListValue, bM as MapData, ef as MapItemToCategories, bN as MapSettings, ao as MapType, eY as MapTypeWithLiterals, bt as Media, c7 as MentionData, ey as MessageEnvelope, cE as Metadata, aR as MissingValues, fp as MissingValuesWithLiterals, aW as Mode, fu as ModeWithLiterals, dU as MoveCategoryRequest, eh as MoveItemInCategoryRequest, aY as MoveItemInCategoryRequestPosition, fw as MoveItemInCategoryRequestPositionWithLiterals, ei as MoveItemInCategoryResponse, dq as NestedAggregation, dn as NestedAggregationItem, dp as NestedAggregationItemKindOneOf, dv as NestedAggregationResults, dw as NestedAggregationResultsResultOneOf, aT as NestedAggregationType, fr as NestedAggregationTypeWithLiterals, dE as NestedResultValue, dF as NestedResultValueResultOneOf, dK as NestedResults, dA as NestedValueAggregationResult, b6 as Node, b7 as NodeDataOneOf, b8 as NodeStyle, a7 as NodeType, eH as NodeTypeWithLiterals, aH as NullValue, ff as NullValueWithLiterals, cn as Oembed, dO as OffsetSearch, dP as OffsetSearchPagingMethodOneOf, bR as Option, bZ as OptionDesign, bU as OptionLayout, cx as OrderedListData, ai as Orientation, eS as OrientationWithLiterals, br as PDFSettings, cL as Page, dQ as Paging, dS as PagingMetadata, ec as PagingMetadataV2, bO as ParagraphData, b0 as ParentCategory, bQ as Permissions, az as Placement, f7 as PlacementWithLiterals, cl as PlaybackOptions, bc as PluginContainerData, a9 as PluginContainerDataAlignment, eJ as PluginContainerDataAlignmentWithLiterals, bd as PluginContainerDataWidth, be as PluginContainerDataWidthDataOneOf, b_ as Poll, bP as PollData, b$ as PollDataLayout, bY as PollDesign, bT as PollLayout, as as PollLayoutDirection, f0 as PollLayoutDirectionWithLiterals, ar as PollLayoutType, e$ as PollLayoutTypeWithLiterals, bS as PollSettings, aX as Position, fv as PositionWithLiterals, cj as PricingData, d1 as QueryCategoriesRequest, d5 as QueryCategoriesResponse, dk as RangeAggregation, du as RangeAggregationResult, dg as RangeBucket, dC as RangeResult, dy as RangeResults, bk as Rel, aO as RequestedFields, fm as RequestedFieldsWithLiterals, ay as Resizing, f6 as ResizingWithLiterals, aL as ResponsivenessBehaviour, fj as ResponsivenessBehaviourWithLiterals, et as RestoreInfo, dG as Results, ch as RibbonStyles, b5 as RichContent, dl as ScalarAggregation, dD as ScalarResult, aS as ScalarType, fq as ScalarTypeWithLiterals, aI as Scaling, fg as ScalingWithLiterals, db as SearchCategoriesRequest, dr as SearchDetails, b1 as SeoSchema, ej as SetArrangedItemsRequest, b4 as Settings, aM as SingleEntityOpsRequestedFields, fk as SingleEntityOpsRequestedFieldsWithLiterals, aQ as SortDirection, fo as SortDirectionWithLiterals, aN as SortOrder, fl as SortOrderWithLiterals, aP as SortType, fn as SortTypeWithLiterals, d3 as Sorting, am as Source, eW as SourceWithLiterals, bf as Spoiler, c9 as SpoilerData, bh as Styles, bI as StylesBorder, an as StylesPosition, eX as StylesPositionWithLiterals, cr as TableCellData, cp as TableData, b3 as Tag, ab as Target, eL as TargetWithLiterals, ac as TextAlignment, eM as TextAlignmentWithLiterals, c1 as TextData, cG as TextNodeStyle, bm as TextStyle, bB as Thumbnails, ak as ThumbnailsAlignment, eU as ThumbnailsAlignmentWithLiterals, aA as Type, f8 as TypeWithLiterals, cM as URI, cZ as UpdateCategoryRequest, c_ as UpdateCategoryResponse, d_ as UpdateCategoryVisibilityRequest, di as ValueAggregation, dj as ValueAggregationOptionsOneOf, dt as ValueAggregationResult, dB as ValueResult, dx as ValueResults, aG as VerticalAlignment, aK as VerticalAlignmentAlignment, fi as VerticalAlignmentAlignmentWithLiterals, fe as VerticalAlignmentWithLiterals, bv as Video, ck as VideoData, ag as ViewMode, eQ as ViewModeWithLiterals, ap as ViewRole, eZ as ViewRoleWithLiterals, aq as VoteRole, e_ as VoteRoleWithLiterals, aZ as WebhookIdentityType, fx as WebhookIdentityTypeWithLiterals, ae as Width, a8 as WidthType, eI as WidthTypeWithLiterals, eO as WidthWithLiterals } from './categories-v1-category-categories.universal-Dt7jEwLr.js';
2
+ import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, c as UpdateCategoryOptions, d as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, e as CategorySearch, S as SearchCategoriesOptions, f as SearchCategoriesResponse, g as CountCategoriesOptions, h as CountCategoriesResponse, M as MoveCategoryOptions, i as MoveCategoryResponse, j as MoveCategoryApplicationErrors, k as MaskedCategory, B as BulkUpdateCategoriesOptions, l as BulkUpdateCategoriesResponse, m as BulkUpdateCategoriesApplicationErrors, n as UpdateCategoryVisibilityOptions, o as UpdateCategoryVisibilityResponse, p as UpdateCategoryVisibilityApplicationErrors, q as BulkShowCategoriesOptions, r as BulkShowCategoriesResponse, I as ItemReference, s as BulkAddItemsToCategoryOptions, t as BulkAddItemsToCategoryResponse, u as BulkAddItemsToCategoryApplicationErrors, v as BulkAddItemToCategoriesOptions, w as BulkAddItemToCategoriesResponse, x as BulkAddItemToCategoriesApplicationErrors, y as BulkRemoveItemsFromCategoryOptions, z as BulkRemoveItemsFromCategoryResponse, A as BulkRemoveItemsFromCategoryApplicationErrors, E as BulkRemoveItemFromCategoriesOptions, F as BulkRemoveItemFromCategoriesResponse, H as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, J as ListItemsInCategoryResponse, K as ListCategoriesForItemOptions, N as ListCategoriesForItemResponse, O as ListCategoriesForItemsOptions, P as ListCategoriesForItemsResponse, Q as ListTreesResponse, R as SetArrangedItemsOptions, V as SetArrangedItemsResponse, W as SetArrangedItemsApplicationErrors, X as GetArrangedItemsResponse, Y as CategoryMovedEnvelope, Z as CategoryCreatedEnvelope, _ as CategoryDeletedEnvelope, $ as CategoryItemAddedToCategoryEnvelope, a0 as CategoryItemRemovedFromCategoryEnvelope, a1 as CategoryItemsArrangedInCategoryEnvelope, a2 as CategoryUpdatedEnvelope, a3 as CategoryQuery, a4 as QueryCategoriesOptions, a5 as typedQueryCategories, a6 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-z1qWnkSE.js';
3
+ export { ey as ActionEvent, dg as Aggregation, du as AggregationData, dh as AggregationKindOneOf, dN as AggregationResults, dO as AggregationResultsResultOneOf, dB as AggregationResultsScalarResult, aW as AggregationType, fx as AggregationTypeWithLiterals, aB as Alignment, fc as AlignmentWithLiterals, c5 as AnchorData, cL as App, cc as AppEmbedData, cd as AppEmbedDataAppDataOneOf, aD as AppType, fe as AppTypeWithLiterals, d_ as ApplicationError, ax as AspectRatio, f8 as AspectRatioWithLiterals, cx as AudioData, bX as Background, bY as BackgroundBackgroundOneOf, cD as BackgroundImage, at as BackgroundType, f4 as BackgroundTypeWithLiterals, eD as BaseEventMetadata, cA as BlockquoteData, ce as BookingData, bb as Border, cu as BorderColors, cv as BorderWidths, b0 as Breadcrumb, a$ as BreadcrumbsInfo, d$ as BulkActionMetadata, e8 as BulkAddItemToCategoriesRequest, e5 as BulkAddItemsToCategoryRequest, dY as BulkCategoriesResult, e2 as BulkDeleteCategoriesRequest, e3 as BulkDeleteCategoriesResponse, e4 as BulkDeleteCategoriesResponseBulkCategoriesResult, e9 as BulkItemToCategoriesResult, e6 as BulkItemsToCategoryResult, eb as BulkRemoveItemFromCategoriesRequest, ea as BulkRemoveItemsFromCategoryRequest, fC as BulkSetItemCategoriesApplicationErrors, eJ as BulkSetItemCategoriesOptions, en as BulkSetItemCategoriesRequest, eo as BulkSetItemCategoriesResponse, e1 as BulkShowCategoriesRequest, dX as BulkUpdateCategoriesRequest, cz as BulletedListData, ba as ButtonData, aa as ButtonDataType, eN as ButtonDataTypeWithLiterals, cg as ButtonStyles, cB as CaptionData, cj as CardStyles, eF as CategoriesQueryResult, cQ as CategoryMoved, eG as CategoryQuerySpec, eH as CategorySearchSpec, er as CategoryTreeNode, ct as CellStyle, bm as CodeBlockData, cp as CollapsibleListData, c6 as ColorData, bc as Colors, fD as CommonQueryWithEntityContext, fE as CommonSearchWithEntityContext, dc as CompactCategory, dV as CountCategoriesRequest, cW as CreateCategoryRequest, cX as CreateCategoryResponse, aj as Crop, eW as CropWithLiterals, d6 as CursorPaging, d8 as CursorPagingMetadata, d3 as CursorQuery, d4 as CursorQueryPagingMethodOneOf, de as CursorSearch, df as CursorSearchPagingMethodOneOf, d9 as Cursors, cP as CustomTag, dp as DateHistogramAggregation, dJ as DateHistogramResult, dL as DateHistogramResults, c3 as Decoration, c4 as DecorationDataOneOf, au as DecorationType, f5 as DecorationTypeWithLiterals, d0 as DeleteCategoryRequest, d1 as DeleteCategoryResponse, dP as DeprecatedSearchCategoriesWithOffsetRequest, dT as DeprecatedSearchCategoriesWithOffsetResponse, c1 as Design, aM as DesignTarget, fn as DesignTargetWithLiterals, cr as Dimensions, aF as Direction, fg as DirectionWithLiterals, bo as DividerData, af as DividerDataAlignment, eS as DividerDataAlignmentWithLiterals, cG as DocumentStyle, es as DomainEvent, et as DomainEventBodyOneOf, cn as EmbedData, ez as Empty, eu as EntityCreatedEvent, ex as EntityDeletedEvent, ew as EntityUpdatedEvent, cf as EventData, eE as EventMetadata, cI as ExtendedFields, cO as File, bp as FileData, bq as FileSource, br as FileSourceDataOneOf, cb as FontFamilyData, c9 as FontSizeData, av as FontType, f6 as FontTypeWithLiterals, bE as GIF, bD as GIFData, al as GIFType, eY as GIFTypeWithLiterals, bt as GalleryData, bz as GalleryOptions, bA as GalleryOptionsLayout, em as GetArrangedItemsRequest, ep as GetCategoriesTreeRequest, eq as GetCategoriesTreeResponse, cY as GetCategoryRequest, cZ as GetCategoryResponse, bW as Gradient, dK as GroupByValueResults, bG as HTMLData, bH as HTMLDataDataOneOf, bF as HeadingData, bh as Height, eB as IdentificationData, eC as IdentificationDataIdOneOf, bv as Image, bI as ImageData, bK as ImageDataStyles, aJ as ImagePosition, fk as ImagePositionWithLiterals, ch as ImageStyles, aw as ImageStylesPosition, f7 as ImageStylesPositionWithLiterals, dj as IncludeMissingValuesOptions, aE as InitialExpandedItems, ff as InitialExpandedItemsWithLiterals, aV as Interval, fw as IntervalWithLiterals, cJ as InvalidateCache, cK as InvalidateCacheGetByOneOf, bx as Item, cR as ItemAddedToCategory, by as ItemDataOneOf, dZ as ItemMetadata, e7 as ItemReferenceMetadata, cT as ItemRemovedFromCategory, bB as ItemStyle, cS as ItemsAddedToCategory, cV as ItemsArrangedInCategory, cU as ItemsRemovedFromCategory, b3 as Keyword, aC as Layout, cE as LayoutCellData, cC as LayoutData, ah as LayoutType, eU as LayoutTypeWithLiterals, fd as LayoutWithLiterals, ad as LineStyle, eQ as LineStyleWithLiterals, bj as Link, c7 as LinkData, bk as LinkDataOneOf, bL as LinkPreviewData, bM as LinkPreviewDataStyles, ef as ListCategoriesForItemRequest, eg as ListCategoriesForItemsRequest, da as ListCompactCategoriesByIdsRequest, db as ListCompactCategoriesByIdsResponse, eI as ListItemsInCategoryOptionsPagingMethodOneOf, ec as ListItemsInCategoryRequest, ed as ListItemsInCategoryRequestPagingMethodOneOf, ei as ListTreesRequest, cw as ListValue, bN as MapData, eh as MapItemToCategories, bO as MapSettings, ao as MapType, e$ as MapTypeWithLiterals, bu as Media, c8 as MentionData, eA as MessageEnvelope, cF as Metadata, aS as MissingValues, ft as MissingValuesWithLiterals, aX as Mode, fy as ModeWithLiterals, dW as MoveCategoryRequest, ej as MoveItemInCategoryRequest, aZ as MoveItemInCategoryRequestPosition, fA as MoveItemInCategoryRequestPositionWithLiterals, ek as MoveItemInCategoryResponse, ds as NestedAggregation, dq as NestedAggregationItem, dr as NestedAggregationItemKindOneOf, dx as NestedAggregationResults, dy as NestedAggregationResultsResultOneOf, aU as NestedAggregationType, fv as NestedAggregationTypeWithLiterals, dG as NestedResultValue, dH as NestedResultValueResultOneOf, dM as NestedResults, dC as NestedValueAggregationResult, b7 as Node, b8 as NodeDataOneOf, b9 as NodeStyle, a7 as NodeType, eK as NodeTypeWithLiterals, aH as NullValue, fi as NullValueWithLiterals, co as Oembed, dQ as OffsetSearch, dR as OffsetSearchPagingMethodOneOf, bS as Option, b_ as OptionDesign, bV as OptionLayout, cy as OrderedListData, ai as Orientation, eV as OrientationWithLiterals, bs as PDFSettings, cM as Page, dS as Paging, dU as PagingMetadata, ee as PagingMetadataV2, bP as ParagraphData, b1 as ParentCategory, bR as Permissions, az as Placement, fa as PlacementWithLiterals, cm as PlaybackOptions, bd as PluginContainerData, a9 as PluginContainerDataAlignment, eM as PluginContainerDataAlignmentWithLiterals, be as PluginContainerDataWidth, bf as PluginContainerDataWidthDataOneOf, b$ as Poll, bQ as PollData, c0 as PollDataLayout, bZ as PollDesign, bU as PollLayout, as as PollLayoutDirection, f3 as PollLayoutDirectionWithLiterals, ar as PollLayoutType, f2 as PollLayoutTypeWithLiterals, bT as PollSettings, aY as Position, fz as PositionWithLiterals, ck as PricingData, d2 as QueryCategoriesRequest, d7 as QueryCategoriesResponse, dm as RangeAggregation, dw as RangeAggregationResult, di as RangeBucket, dE as RangeResult, dA as RangeResults, bl as Rel, aP as RequestedFields, fq as RequestedFieldsWithLiterals, ay as Resizing, f9 as ResizingWithLiterals, aL as ResponsivenessBehaviour, fm as ResponsivenessBehaviourWithLiterals, ev as RestoreInfo, dI as Results, ci as RibbonStyles, b6 as RichContent, dn as ScalarAggregation, dF as ScalarResult, aT as ScalarType, fu as ScalarTypeWithLiterals, aI as Scaling, fj as ScalingWithLiterals, dd as SearchCategoriesRequest, dt as SearchDetails, b2 as SeoSchema, el as SetArrangedItemsRequest, b5 as Settings, aN as SingleEntityOpsRequestedFields, fo as SingleEntityOpsRequestedFieldsWithLiterals, aR as SortDirection, fs as SortDirectionWithLiterals, aO as SortOrder, fp as SortOrderWithLiterals, aQ as SortType, fr as SortTypeWithLiterals, d5 as Sorting, am as Source, eZ as SourceWithLiterals, bg as Spoiler, ca as SpoilerData, bi as Styles, bJ as StylesBorder, an as StylesPosition, e_ as StylesPositionWithLiterals, cs as TableCellData, cq as TableData, b4 as Tag, ab as Target, eO as TargetWithLiterals, ac as TextAlignment, eP as TextAlignmentWithLiterals, c2 as TextData, cH as TextNodeStyle, bn as TextStyle, bC as Thumbnails, ak as ThumbnailsAlignment, eX as ThumbnailsAlignmentWithLiterals, aA as Type, fb as TypeWithLiterals, cN as URI, c_ as UpdateCategoryRequest, c$ as UpdateCategoryResponse, e0 as UpdateCategoryVisibilityRequest, dk as ValueAggregation, dl as ValueAggregationOptionsOneOf, dv as ValueAggregationResult, dD as ValueResult, dz as ValueResults, aG as VerticalAlignment, aK as VerticalAlignmentAlignment, fl as VerticalAlignmentAlignmentWithLiterals, fh as VerticalAlignmentWithLiterals, bw as Video, cl as VideoData, ag as ViewMode, eT as ViewModeWithLiterals, ap as ViewRole, f0 as ViewRoleWithLiterals, aq as VoteRole, f1 as VoteRoleWithLiterals, a_ as WebhookIdentityType, fB as WebhookIdentityTypeWithLiterals, ae as Width, a8 as WidthType, eL as WidthTypeWithLiterals, eR as WidthWithLiterals } from './categories-v1-category-categories.universal-z1qWnkSE.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -253,7 +253,7 @@ declare const onCategoryItemsArrangedInCategory$1: EventDefinition<CategoryItems
253
253
  declare const onCategoryUpdated$1: EventDefinition<CategoryUpdatedEnvelope, "wix.categories.v1.category_updated">;
254
254
 
255
255
  declare function customQueryCategories(httpClient: HttpClient): {
256
- (query: CursorQuery, options: QueryCategoriesOptions): ReturnType<typeof typedQueryCategories>;
256
+ (query: CategoryQuery, options: QueryCategoriesOptions): ReturnType<typeof typedQueryCategories>;
257
257
  (options: QueryCategoriesOptions): CategoriesQueryBuilder;
258
258
  };
259
259
  declare const createCategory: MaybeContext<BuildRESTFunction<typeof createCategory$1> & typeof createCategory$1>;
@@ -300,4 +300,4 @@ declare const onCategoryItemsArrangedInCategory: BuildEventDefinition<typeof onC
300
300
  /** */
301
301
  declare const onCategoryUpdated: BuildEventDefinition<typeof onCategoryUpdated$1> & typeof onCategoryUpdated$1;
302
302
 
303
- export { BulkAddItemToCategoriesApplicationErrors, BulkAddItemToCategoriesOptions, BulkAddItemToCategoriesResponse, BulkAddItemsToCategoryApplicationErrors, BulkAddItemsToCategoryOptions, BulkAddItemsToCategoryResponse, BulkRemoveItemFromCategoriesApplicationErrors, BulkRemoveItemFromCategoriesOptions, BulkRemoveItemFromCategoriesResponse, BulkRemoveItemsFromCategoryApplicationErrors, BulkRemoveItemsFromCategoryOptions, BulkRemoveItemsFromCategoryResponse, BulkShowCategoriesOptions, BulkShowCategoriesResponse, BulkUpdateCategoriesApplicationErrors, BulkUpdateCategoriesOptions, BulkUpdateCategoriesResponse, CategoriesQueryBuilder, Category, CategoryCreatedEnvelope, CategoryDeletedEnvelope, CategoryItemAddedToCategoryEnvelope, CategoryItemRemovedFromCategoryEnvelope, CategoryItemsArrangedInCategoryEnvelope, CategoryMovedEnvelope, CategorySearch, CategoryUpdatedEnvelope, CountCategoriesOptions, CountCategoriesResponse, CreateCategoryApplicationErrors, CreateCategoryOptions, CursorQuery, DeleteCategoryApplicationErrors, GetArrangedItemsResponse, GetCategoryOptions, ItemReference, ListCategoriesForItemOptions, ListCategoriesForItemResponse, ListCategoriesForItemsOptions, ListCategoriesForItemsResponse, ListItemsInCategoryOptions, ListItemsInCategoryResponse, ListTreesResponse, MaskedCategory, MoveCategoryApplicationErrors, MoveCategoryOptions, MoveCategoryResponse, QueryCategoriesOptions, SearchCategoriesOptions, SearchCategoriesResponse, SetArrangedItemsApplicationErrors, SetArrangedItemsOptions, SetArrangedItemsResponse, TreeReference, UpdateCategory, UpdateCategoryApplicationErrors, UpdateCategoryOptions, UpdateCategoryVisibilityApplicationErrors, UpdateCategoryVisibilityOptions, UpdateCategoryVisibilityResponse, bulkAddItemToCategories, bulkAddItemsToCategory, bulkRemoveItemFromCategories, bulkRemoveItemsFromCategory, bulkShowCategories, bulkUpdateCategories, countCategories, createCategory, deleteCategory, getArrangedItems, getCategory, listCategoriesForItem, listCategoriesForItems, listItemsInCategory, listTrees, moveCategory, onCategoryCreated, onCategoryDeleted, onCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory, onCategoryMoved, onCategoryUpdated, queryCategories, searchCategories, setArrangedItems, updateCategory, updateCategoryVisibility };
303
+ export { BulkAddItemToCategoriesApplicationErrors, BulkAddItemToCategoriesOptions, BulkAddItemToCategoriesResponse, BulkAddItemsToCategoryApplicationErrors, BulkAddItemsToCategoryOptions, BulkAddItemsToCategoryResponse, BulkRemoveItemFromCategoriesApplicationErrors, BulkRemoveItemFromCategoriesOptions, BulkRemoveItemFromCategoriesResponse, BulkRemoveItemsFromCategoryApplicationErrors, BulkRemoveItemsFromCategoryOptions, BulkRemoveItemsFromCategoryResponse, BulkShowCategoriesOptions, BulkShowCategoriesResponse, BulkUpdateCategoriesApplicationErrors, BulkUpdateCategoriesOptions, BulkUpdateCategoriesResponse, CategoriesQueryBuilder, Category, CategoryCreatedEnvelope, CategoryDeletedEnvelope, CategoryItemAddedToCategoryEnvelope, CategoryItemRemovedFromCategoryEnvelope, CategoryItemsArrangedInCategoryEnvelope, CategoryMovedEnvelope, CategoryQuery, CategorySearch, CategoryUpdatedEnvelope, CountCategoriesOptions, CountCategoriesResponse, CreateCategoryApplicationErrors, CreateCategoryOptions, DeleteCategoryApplicationErrors, GetArrangedItemsResponse, GetCategoryOptions, ItemReference, ListCategoriesForItemOptions, ListCategoriesForItemResponse, ListCategoriesForItemsOptions, ListCategoriesForItemsResponse, ListItemsInCategoryOptions, ListItemsInCategoryResponse, ListTreesResponse, MaskedCategory, MoveCategoryApplicationErrors, MoveCategoryOptions, MoveCategoryResponse, QueryCategoriesOptions, SearchCategoriesOptions, SearchCategoriesResponse, SetArrangedItemsApplicationErrors, SetArrangedItemsOptions, SetArrangedItemsResponse, TreeReference, UpdateCategory, UpdateCategoryApplicationErrors, UpdateCategoryOptions, UpdateCategoryVisibilityApplicationErrors, UpdateCategoryVisibilityOptions, UpdateCategoryVisibilityResponse, bulkAddItemToCategories, bulkAddItemsToCategory, bulkRemoveItemFromCategories, bulkRemoveItemsFromCategory, bulkShowCategories, bulkUpdateCategories, countCategories, createCategory, deleteCategory, getArrangedItems, getCategory, listCategoriesForItem, listCategoriesForItems, listItemsInCategory, listTrees, moveCategory, onCategoryCreated, onCategoryDeleted, onCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory, onCategoryMoved, onCategoryUpdated, queryCategories, searchCategories, setArrangedItems, updateCategory, updateCategoryVisibility };
@@ -28,6 +28,7 @@ __export(index_exports, {
28
28
  ButtonDataType: () => ButtonDataType,
29
29
  Crop: () => Crop,
30
30
  DecorationType: () => DecorationType,
31
+ DesignTarget: () => DesignTarget,
31
32
  Direction: () => Direction,
32
33
  DividerDataAlignment: () => DividerDataAlignment,
33
34
  FontType: () => FontType,
@@ -1805,6 +1806,11 @@ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
1805
1806
  ResponsivenessBehaviour2["WRAP"] = "WRAP";
1806
1807
  return ResponsivenessBehaviour2;
1807
1808
  })(ResponsivenessBehaviour || {});
1809
+ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
1810
+ DesignTarget2["LAYOUT"] = "LAYOUT";
1811
+ DesignTarget2["CELL"] = "CELL";
1812
+ return DesignTarget2;
1813
+ })(DesignTarget || {});
1808
1814
  var SingleEntityOpsRequestedFields = /* @__PURE__ */ ((SingleEntityOpsRequestedFields2) => {
1809
1815
  SingleEntityOpsRequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
1810
1816
  SingleEntityOpsRequestedFields2["BREADCRUMBS_INFO"] = "BREADCRUMBS_INFO";
@@ -3172,12 +3178,20 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
3172
3178
  { path: "entity.updatedDate" },
3173
3179
  { path: "entity.richContentDescription.metadata.createdTimestamp" },
3174
3180
  { path: "entity.richContentDescription.metadata.updatedTimestamp" },
3175
- { path: "metadata.eventTime" }
3181
+ { path: "metadata.eventTime" },
3182
+ { path: "modifiedFields.createdDate" },
3183
+ { path: "modifiedFields.updatedDate" },
3184
+ {
3185
+ path: "modifiedFields.richContentDescription.metadata.createdTimestamp"
3186
+ },
3187
+ {
3188
+ path: "modifiedFields.richContentDescription.metadata.updatedTimestamp"
3189
+ }
3176
3190
  ]
3177
3191
  },
3178
3192
  {
3179
3193
  transformFn: import_image3.transformRESTImageToSDKImage,
3180
- paths: [{ path: "entity.image" }]
3194
+ paths: [{ path: "entity.image" }, { path: "modifiedFields.image" }]
3181
3195
  },
3182
3196
  {
3183
3197
  transformFn: import_float3.transformRESTFloatToSDKFloat,
@@ -3232,6 +3246,57 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
3232
3246
  },
3233
3247
  {
3234
3248
  path: "entity.richContentDescription.nodes.layoutData.backdropImage.media.duration"
3249
+ },
3250
+ {
3251
+ path: "modifiedFields.richContentDescription.nodes.galleryData.items.image.media.duration"
3252
+ },
3253
+ {
3254
+ path: "modifiedFields.richContentDescription.nodes.galleryData.items.video.media.duration"
3255
+ },
3256
+ {
3257
+ path: "modifiedFields.richContentDescription.nodes.galleryData.items.video.thumbnail.duration"
3258
+ },
3259
+ {
3260
+ path: "modifiedFields.richContentDescription.nodes.galleryData.options.item.ratio"
3261
+ },
3262
+ {
3263
+ path: "modifiedFields.richContentDescription.nodes.imageData.image.duration"
3264
+ },
3265
+ {
3266
+ path: "modifiedFields.richContentDescription.nodes.mapData.mapSettings.lat"
3267
+ },
3268
+ {
3269
+ path: "modifiedFields.richContentDescription.nodes.mapData.mapSettings.lng"
3270
+ },
3271
+ {
3272
+ path: "modifiedFields.richContentDescription.nodes.pollData.poll.image.duration"
3273
+ },
3274
+ {
3275
+ path: "modifiedFields.richContentDescription.nodes.pollData.poll.options.image.duration"
3276
+ },
3277
+ {
3278
+ path: "modifiedFields.richContentDescription.nodes.pollData.design.poll.background.image.duration"
3279
+ },
3280
+ {
3281
+ path: "modifiedFields.richContentDescription.nodes.appEmbedData.image.duration"
3282
+ },
3283
+ {
3284
+ path: "modifiedFields.richContentDescription.nodes.videoData.video.duration"
3285
+ },
3286
+ {
3287
+ path: "modifiedFields.richContentDescription.nodes.videoData.thumbnail.duration"
3288
+ },
3289
+ {
3290
+ path: "modifiedFields.richContentDescription.nodes.audioData.audio.duration"
3291
+ },
3292
+ {
3293
+ path: "modifiedFields.richContentDescription.nodes.audioData.coverImage.duration"
3294
+ },
3295
+ {
3296
+ path: "modifiedFields.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
3297
+ },
3298
+ {
3299
+ path: "modifiedFields.richContentDescription.nodes.layoutData.backdropImage.media.duration"
3235
3300
  }
3236
3301
  ]
3237
3302
  }
@@ -3299,6 +3364,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
3299
3364
  ButtonDataType,
3300
3365
  Crop,
3301
3366
  DecorationType,
3367
+ DesignTarget,
3302
3368
  Direction,
3303
3369
  DividerDataAlignment,
3304
3370
  FontType,