@wix/auto_sdk_categories_categories 1.0.86 → 1.0.88

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/build/cjs/{categories-v1-category-categories.universal-DdGcMZHf.d.ts → categories-v1-category-categories.universal-DCGBMlay.d.ts} +40 -21
  2. package/build/cjs/index.d.ts +9 -7
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +8 -6
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.d.ts +28 -11
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/es/{categories-v1-category-categories.universal-DdGcMZHf.d.mts → categories-v1-category-categories.universal-DCGBMlay.d.mts} +40 -21
  9. package/build/es/index.d.mts +9 -7
  10. package/build/es/index.mjs.map +1 -1
  11. package/build/es/index.typings.d.mts +8 -6
  12. package/build/es/index.typings.mjs.map +1 -1
  13. package/build/es/meta.d.mts +28 -11
  14. package/build/es/meta.mjs.map +1 -1
  15. package/build/internal/cjs/{categories-v1-category-categories.universal-C1gZ_pCS.d.ts → categories-v1-category-categories.universal-BKwDnBmM.d.ts} +40 -21
  16. package/build/internal/cjs/index.d.ts +9 -7
  17. package/build/internal/cjs/index.js.map +1 -1
  18. package/build/internal/cjs/index.typings.d.ts +8 -6
  19. package/build/internal/cjs/index.typings.js.map +1 -1
  20. package/build/internal/cjs/meta.d.ts +28 -11
  21. package/build/internal/cjs/meta.js.map +1 -1
  22. package/build/internal/es/{categories-v1-category-categories.universal-C1gZ_pCS.d.mts → categories-v1-category-categories.universal-BKwDnBmM.d.mts} +40 -21
  23. package/build/internal/es/index.d.mts +9 -7
  24. package/build/internal/es/index.mjs.map +1 -1
  25. package/build/internal/es/index.typings.d.mts +8 -6
  26. package/build/internal/es/index.typings.mjs.map +1 -1
  27. package/build/internal/es/meta.d.mts +28 -11
  28. package/build/internal/es/meta.mjs.map +1 -1
  29. package/package.json +2 -2
@@ -100,7 +100,7 @@ interface Category {
100
100
  /**
101
101
  * Custom extended fields for the category object.
102
102
  *
103
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the [app dashboard](https://dev.wix.com/dc3/my-apps/) before they can be accessed with API calls.
103
+ * [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the [app dashboard](https://dev.wix.com/dc3/my-apps/) before they can be accessed with API calls.
104
104
  */
105
105
  extendedFields?: ExtendedFields;
106
106
  }
@@ -2535,7 +2535,7 @@ interface SearchCategoriesRequest {
2535
2535
  * Search criteria including filter, sort, aggregations, and paging options.
2536
2536
  *
2537
2537
  * Refer to the [supported filters & sorting table](https://dev.wix.com/docs/sdk/backend-modules/categories/categories/search-categories) (SDK)
2538
- * or the [supported filters article](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting) (REST)
2538
+ * or the [supported filters article](https://dev.wix.com/docs/api-reference/business-management/categories/supported-filters-and-sorting) (REST)
2539
2539
  * for a complete list of supported filters and sorting options.
2540
2540
  */
2541
2541
  search?: CursorSearch;
@@ -2566,14 +2566,14 @@ interface CursorSearch extends CursorSearchPagingMethodOneOf {
2566
2566
  * Filter object for narrowing search results. For example, to return only categories from the Stores app: `"filter": {"appNamespace": "@wix/stores"}`.
2567
2567
  *
2568
2568
  * Learn more about the filter format in the [supported filters & sorting table](https://dev.wix.com/docs/sdk/backend-modules/categories/categories/search-categories) (SDK)
2569
- * or the [supported filters article](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting) (REST).
2569
+ * or the [supported filters article](https://dev.wix.com/docs/api-reference/business-management/categories/supported-filters-and-sorting) (REST).
2570
2570
  */
2571
2571
  filter?: Record<string, any> | null;
2572
2572
  /**
2573
2573
  * Array of sort objects specifying result order. For example, to sort by creation date in ascending order: `"sort": [{"fieldName": "createdDate", "order": "ASC"}]`.
2574
2574
  *
2575
2575
  * Learn more about the sort format in the [supported filters & sorting table](https://dev.wix.com/docs/sdk/backend-modules/categories/categories/search-categories) (SDK)
2576
- * or the [supported filters article](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting) (REST).
2576
+ * or the [supported filters article](https://dev.wix.com/docs/api-reference/business-management/categories/supported-filters-and-sorting) (REST).
2577
2577
  * @maxSize 10
2578
2578
  */
2579
2579
  sort?: Sorting[];
@@ -2588,7 +2588,7 @@ interface CursorSearch extends CursorSearchPagingMethodOneOf {
2588
2588
  /**
2589
2589
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) or [ISO 8601 UTC offset format](https://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC) for adjusting time fields in the specified filters and returned aggregation data. For example, `America/New_York`, `UTC`, or `+02:00`.
2590
2590
  *
2591
- * Default: Time zone specified in the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
2591
+ * Default: Time zone specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
2592
2592
  * @maxLength 50
2593
2593
  */
2594
2594
  timeZone?: string | null;
@@ -3090,7 +3090,7 @@ interface DeprecatedSearchCategoriesWithOffsetRequest {
3090
3090
  interface OffsetSearch extends OffsetSearchPagingMethodOneOf {
3091
3091
  /** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
3092
3092
  paging?: Paging;
3093
- /** A filter object. Learn more about [API query language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language). */
3093
+ /** A filter object. Learn more about [API query language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language). */
3094
3094
  filter?: Record<string, any> | null;
3095
3095
  /**
3096
3096
  * Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]
@@ -3155,7 +3155,7 @@ interface CountCategoriesRequest {
3155
3155
  /**
3156
3156
  * Filter object.
3157
3157
  *
3158
- * Learn more about the [filter object structure](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
3158
+ * Learn more about the [filter object structure](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language#filters).
3159
3159
  */
3160
3160
  filter?: Record<string, any> | null;
3161
3161
  /** Search options. */
@@ -3503,7 +3503,7 @@ interface ListItemsInCategoryRequest extends ListItemsInCategoryRequestPagingMet
3503
3503
  /**
3504
3504
  * Cursor paging options.
3505
3505
  *
3506
- * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
3506
+ * Learn more about [cursor paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language#cursor-paging).
3507
3507
  */
3508
3508
  cursorPaging?: CursorPaging;
3509
3509
  /**
@@ -3531,7 +3531,7 @@ interface ListItemsInCategoryRequestPagingMethodOneOf {
3531
3531
  /**
3532
3532
  * Cursor paging options.
3533
3533
  *
3534
- * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
3534
+ * Learn more about [cursor paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language#cursor-paging).
3535
3535
  */
3536
3536
  cursorPaging?: CursorPaging;
3537
3537
  }
@@ -3863,6 +3863,23 @@ declare enum WebhookIdentityType {
3863
3863
  }
3864
3864
  /** @enumType */
3865
3865
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3866
+ interface AccountDetails {
3867
+ /**
3868
+ * ID of the account.
3869
+ * @format GUID
3870
+ */
3871
+ accountId?: string | null;
3872
+ /**
3873
+ * ID of the parent account.
3874
+ * @format GUID
3875
+ */
3876
+ parentAccountId?: string | null;
3877
+ /**
3878
+ * ID of the site, if applicable.
3879
+ * @format GUID
3880
+ */
3881
+ siteId?: string | null;
3882
+ }
3866
3883
  /** @docsIgnore */
3867
3884
  type CreateCategoryApplicationErrors = {
3868
3885
  code?: 'NAMESPACE_NOT_FOUND_IN_DEV_CENTER';
@@ -4424,7 +4441,7 @@ interface UpdateCategory {
4424
4441
  /**
4425
4442
  * Custom extended fields for the category object.
4426
4443
  *
4427
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the [app dashboard](https://dev.wix.com/dc3/my-apps/) before they can be accessed with API calls.
4444
+ * [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the [app dashboard](https://dev.wix.com/dc3/my-apps/) before they can be accessed with API calls.
4428
4445
  */
4429
4446
  extendedFields?: ExtendedFields;
4430
4447
  }
@@ -4457,11 +4474,13 @@ declare function deleteCategory(categoryId: string, treeReference: NonNullablePa
4457
4474
  * Pass supported values to the `fields` array in the request to include those fields in the response.
4458
4475
  *
4459
4476
  * For field support for filters and sorting,
4460
- * see [Categories: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting).
4477
+ * see [Categories: Supported Filters and Sorting](https://dev.wix.com/docs/api-reference/business-management/categories/supported-filters-and-sorting).
4461
4478
  *
4462
4479
  * To learn about working with _Query_ endpoints, see
4463
- * [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language),
4464
- * and [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).
4480
+ * [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language),
4481
+ * and [Sorting and Paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-sorting-and-paging).
4482
+ *
4483
+ * Learn more about the differences between [_Query_ and _Search_](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-search-query-and-list-methods) methods.
4465
4484
  * @public
4466
4485
  * @permissionId CATEGORIES.CATEGORY_READ
4467
4486
  * @applicableIdentity APP
@@ -4708,14 +4727,14 @@ type CategorySearch = {
4708
4727
  Filter object for narrowing search results. For example, to return only categories from the Stores app: `"filter": {"appNamespace": "@wix/stores"}`.
4709
4728
 
4710
4729
  Learn more about the filter format in the [supported filters & sorting table](https://dev.wix.com/docs/sdk/backend-modules/categories/categories/search-categories) (SDK)
4711
- or the [supported filters article](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting) (REST).
4730
+ or the [supported filters article](https://dev.wix.com/docs/api-reference/business-management/categories/supported-filters-and-sorting) (REST).
4712
4731
  */
4713
4732
  filter?: CommonSearchWithEntityContext['filter'] | null;
4714
4733
  /**
4715
4734
  Array of sort objects specifying result order. For example, to sort by creation date in ascending order: `"sort": [{"fieldName": "createdDate", "order": "ASC"}]`.
4716
4735
 
4717
4736
  Learn more about the sort format in the [supported filters & sorting table](https://dev.wix.com/docs/sdk/backend-modules/categories/categories/search-categories) (SDK)
4718
- or the [supported filters article](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting) (REST).
4737
+ or the [supported filters article](https://dev.wix.com/docs/api-reference/business-management/categories/supported-filters-and-sorting) (REST).
4719
4738
  @maxSize: 10
4720
4739
  */
4721
4740
  sort?: {
@@ -4797,7 +4816,7 @@ type CategorySearch = {
4797
4816
  /**
4798
4817
  Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) or [ISO 8601 UTC offset format](https://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC) for adjusting time fields in the specified filters and returned aggregation data. For example, `America/New_York`, `UTC`, or `+02:00`.
4799
4818
 
4800
- Default: Time zone specified in the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
4819
+ Default: Time zone specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
4801
4820
  @maxLength: 50
4802
4821
  */
4803
4822
  timeZone?: CommonSearchWithEntityContext['timeZone'] | null;
@@ -4806,7 +4825,7 @@ type CategorySearch = {
4806
4825
  * Counts the number of categories that match the provided filtering.
4807
4826
  *
4808
4827
  * For field support for filters and sorting,
4809
- * see [Categories: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting).
4828
+ * see [Categories: Supported Filters and Sorting](https://dev.wix.com/docs/api-reference/business-management/categories/supported-filters-and-sorting).
4810
4829
  * @public
4811
4830
  * @requiredField options.treeReference
4812
4831
  * @requiredField options.treeReference.appNamespace
@@ -4819,7 +4838,7 @@ interface CountCategoriesOptions {
4819
4838
  /**
4820
4839
  * Filter object.
4821
4840
  *
4822
- * Learn more about the [filter object structure](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
4841
+ * Learn more about the [filter object structure](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language#filters).
4823
4842
  */
4824
4843
  filter?: Record<string, any> | null;
4825
4844
  /** Search options. */
@@ -5115,7 +5134,7 @@ interface ListItemsInCategoryOptions extends ListItemsInCategoryOptionsPagingMet
5115
5134
  /**
5116
5135
  * Cursor paging options.
5117
5136
  *
5118
- * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
5137
+ * Learn more about [cursor paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language#cursor-paging).
5119
5138
  */
5120
5139
  cursorPaging?: CursorPaging;
5121
5140
  }
@@ -5124,7 +5143,7 @@ interface ListItemsInCategoryOptionsPagingMethodOneOf {
5124
5143
  /**
5125
5144
  * Cursor paging options.
5126
5145
  *
5127
- * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
5146
+ * Learn more about [cursor paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language#cursor-paging).
5128
5147
  */
5129
5148
  cursorPaging?: CursorPaging;
5130
5149
  }
@@ -5221,4 +5240,4 @@ interface BulkSetItemCategoriesOptions {
5221
5240
  treeReference: TreeReference;
5222
5241
  }
5223
5242
 
5224
- 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 };
5243
+ 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 StylesPositionWithLiterals 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 AccountDetails as eD, type BaseEventMetadata as eE, type EventMetadata as eF, type CategoriesQueryResult as eG, type CategoryQuerySpec as eH, type CategorySearchSpec as eI, type ListItemsInCategoryOptionsPagingMethodOneOf as eJ, type BulkSetItemCategoriesOptions as eK, type NodeTypeWithLiterals as eL, type WidthTypeWithLiterals as eM, type PluginContainerDataAlignmentWithLiterals as eN, type ButtonDataTypeWithLiterals as eO, type TargetWithLiterals as eP, type TextAlignmentWithLiterals as eQ, type LineStyleWithLiterals as eR, type WidthWithLiterals as eS, type DividerDataAlignmentWithLiterals as eT, type ViewModeWithLiterals as eU, type LayoutTypeWithLiterals as eV, type OrientationWithLiterals as eW, type CropWithLiterals as eX, type ThumbnailsAlignmentWithLiterals as eY, type GIFTypeWithLiterals as eZ, type SourceWithLiterals 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, listItemsInCategory as f$, type MapTypeWithLiterals as f0, type ViewRoleWithLiterals as f1, type VoteRoleWithLiterals as f2, type PollLayoutTypeWithLiterals as f3, type PollLayoutDirectionWithLiterals as f4, type BackgroundTypeWithLiterals as f5, type DecorationTypeWithLiterals as f6, type FontTypeWithLiterals as f7, type ImageStylesPositionWithLiterals as f8, type AspectRatioWithLiterals as f9, type PositionWithLiterals as fA, type MoveItemInCategoryRequestPositionWithLiterals as fB, type WebhookIdentityTypeWithLiterals as fC, type BulkSetItemCategoriesApplicationErrors as fD, type CommonQueryWithEntityContext as fE, type CommonSearchWithEntityContext as fF, onCategoryMoved as fG, onCategoryCreated as fH, onCategoryDeleted as fI, onCategoryItemAddedToCategory as fJ, onCategoryItemRemovedFromCategory as fK, onCategoryItemsArrangedInCategory as fL, onCategoryUpdated as fM, createCategory as fN, getCategory as fO, updateCategory as fP, deleteCategory as fQ, queryCategories as fR, countCategories as fS, moveCategory as fT, bulkUpdateCategories as fU, updateCategoryVisibility as fV, bulkShowCategories as fW, bulkAddItemsToCategory as fX, bulkAddItemToCategories as fY, bulkRemoveItemsFromCategory as fZ, bulkRemoveItemFromCategories as f_, type ResizingWithLiterals as fa, type PlacementWithLiterals as fb, type TypeWithLiterals as fc, type AlignmentWithLiterals as fd, type LayoutWithLiterals as fe, type AppTypeWithLiterals as ff, type InitialExpandedItemsWithLiterals as fg, type DirectionWithLiterals as fh, type VerticalAlignmentWithLiterals as fi, type NullValueWithLiterals as fj, type ScalingWithLiterals as fk, type ImagePositionWithLiterals as fl, type VerticalAlignmentAlignmentWithLiterals as fm, type ResponsivenessBehaviourWithLiterals as fn, type DesignTargetWithLiterals as fo, type SingleEntityOpsRequestedFieldsWithLiterals as fp, type SortOrderWithLiterals as fq, type RequestedFieldsWithLiterals as fr, type SortTypeWithLiterals as fs, type SortDirectionWithLiterals as ft, type MissingValuesWithLiterals as fu, type ScalarTypeWithLiterals as fv, type NestedAggregationTypeWithLiterals as fw, type IntervalWithLiterals as fx, type AggregationTypeWithLiterals as fy, type ModeWithLiterals as fz, type CountCategoriesOptions as g, listCategoriesForItem as g0, listCategoriesForItems as g1, listTrees as g2, setArrangedItems as g3, getArrangedItems as g4, 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 CategoryQuery, a4 as QueryCategoriesOptions, a5 as typedQueryCategories, a6 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-DdGcMZHf.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-DdGcMZHf.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-DCGBMlay.js';
3
+ export { eD as AccountDetails, ey as ActionEvent, dg as Aggregation, du as AggregationData, dh as AggregationKindOneOf, dN as AggregationResults, dO as AggregationResultsResultOneOf, dB as AggregationResultsScalarResult, aW as AggregationType, fy as AggregationTypeWithLiterals, aB as Alignment, fd as AlignmentWithLiterals, c5 as AnchorData, cL as App, cc as AppEmbedData, cd as AppEmbedDataAppDataOneOf, aD as AppType, ff as AppTypeWithLiterals, d_ as ApplicationError, ax as AspectRatio, f9 as AspectRatioWithLiterals, cx as AudioData, bX as Background, bY as BackgroundBackgroundOneOf, cD as BackgroundImage, at as BackgroundType, f5 as BackgroundTypeWithLiterals, eE 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, fD as BulkSetItemCategoriesApplicationErrors, eK as BulkSetItemCategoriesOptions, en as BulkSetItemCategoriesRequest, eo as BulkSetItemCategoriesResponse, e1 as BulkShowCategoriesRequest, dX as BulkUpdateCategoriesRequest, cz as BulletedListData, ba as ButtonData, aa as ButtonDataType, eO as ButtonDataTypeWithLiterals, cg as ButtonStyles, cB as CaptionData, cj as CardStyles, eG as CategoriesQueryResult, cQ as CategoryMoved, eH as CategoryQuerySpec, eI as CategorySearchSpec, er as CategoryTreeNode, ct as CellStyle, bm as CodeBlockData, cp as CollapsibleListData, c6 as ColorData, bc as Colors, fE as CommonQueryWithEntityContext, fF as CommonSearchWithEntityContext, dc as CompactCategory, dV as CountCategoriesRequest, cW as CreateCategoryRequest, cX as CreateCategoryResponse, aj as Crop, eX 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, f6 as DecorationTypeWithLiterals, d0 as DeleteCategoryRequest, d1 as DeleteCategoryResponse, dP as DeprecatedSearchCategoriesWithOffsetRequest, dT as DeprecatedSearchCategoriesWithOffsetResponse, c1 as Design, aM as DesignTarget, fo as DesignTargetWithLiterals, cr as Dimensions, aF as Direction, fh as DirectionWithLiterals, bo as DividerData, af as DividerDataAlignment, eT 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, eF 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, f7 as FontTypeWithLiterals, bE as GIF, bD as GIFData, al as GIFType, eZ 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, fl as ImagePositionWithLiterals, ch as ImageStyles, aw as ImageStylesPosition, f8 as ImageStylesPositionWithLiterals, dj as IncludeMissingValuesOptions, aE as InitialExpandedItems, fg as InitialExpandedItemsWithLiterals, aV as Interval, fx 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, eV as LayoutTypeWithLiterals, fe as LayoutWithLiterals, ad as LineStyle, eR 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, eJ 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, f0 as MapTypeWithLiterals, bu as Media, c8 as MentionData, eA as MessageEnvelope, cF as Metadata, aS as MissingValues, fu as MissingValuesWithLiterals, aX as Mode, fz as ModeWithLiterals, dW as MoveCategoryRequest, ej as MoveItemInCategoryRequest, aZ as MoveItemInCategoryRequestPosition, fB as MoveItemInCategoryRequestPositionWithLiterals, ek as MoveItemInCategoryResponse, ds as NestedAggregation, dq as NestedAggregationItem, dr as NestedAggregationItemKindOneOf, dx as NestedAggregationResults, dy as NestedAggregationResultsResultOneOf, aU as NestedAggregationType, fw 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, eL as NodeTypeWithLiterals, aH as NullValue, fj 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, eW 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, fb as PlacementWithLiterals, cm as PlaybackOptions, bd as PluginContainerData, a9 as PluginContainerDataAlignment, eN 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, f4 as PollLayoutDirectionWithLiterals, ar as PollLayoutType, f3 as PollLayoutTypeWithLiterals, bT as PollSettings, aY as Position, fA 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, fr as RequestedFieldsWithLiterals, ay as Resizing, fa as ResizingWithLiterals, aL as ResponsivenessBehaviour, fn as ResponsivenessBehaviourWithLiterals, ev as RestoreInfo, dI as Results, ci as RibbonStyles, b6 as RichContent, dn as ScalarAggregation, dF as ScalarResult, aT as ScalarType, fv as ScalarTypeWithLiterals, aI as Scaling, fk as ScalingWithLiterals, dd as SearchCategoriesRequest, dt as SearchDetails, b2 as SeoSchema, el as SetArrangedItemsRequest, b5 as Settings, aN as SingleEntityOpsRequestedFields, fp as SingleEntityOpsRequestedFieldsWithLiterals, aR as SortDirection, ft as SortDirectionWithLiterals, aO as SortOrder, fq as SortOrderWithLiterals, aQ as SortType, fs as SortTypeWithLiterals, d5 as Sorting, am as Source, e_ 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, eP as TargetWithLiterals, ac as TextAlignment, eQ as TextAlignmentWithLiterals, c2 as TextData, cH as TextNodeStyle, bn as TextStyle, bC as Thumbnails, ak as ThumbnailsAlignment, eY as ThumbnailsAlignmentWithLiterals, aA as Type, fc 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, fm as VerticalAlignmentAlignmentWithLiterals, fi as VerticalAlignmentWithLiterals, bw as Video, cl as VideoData, ag as ViewMode, eU as ViewModeWithLiterals, ap as ViewRole, f1 as ViewRoleWithLiterals, aq as VoteRole, f2 as VoteRoleWithLiterals, a_ as WebhookIdentityType, fC as WebhookIdentityTypeWithLiterals, ae as Width, a8 as WidthType, eM as WidthTypeWithLiterals, eS as WidthWithLiterals } from './categories-v1-category-categories.universal-DCGBMlay.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -67,18 +67,20 @@ interface SearchCategoriesSignature {
67
67
  * [UTC time](https://en.wikipedia.org/wiki/Coordinated_Universal_Time).
68
68
  *
69
69
  * Refer to the [supported filters & sorting table](https://dev.wix.com/docs/sdk/backend-modules/categories/categories/search-categories) (SDK)
70
- * or the [supported filters article](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting) (REST)
70
+ * or the [supported filters article](https://dev.wix.com/docs/api-reference/business-management/categories/supported-filters-and-sorting) (REST)
71
71
  * for a complete list of supported filters and sorting options.
72
72
  *
73
73
  * ## See also
74
74
  *
75
75
  * To learn about working with *Search* methods, see
76
- * [API Query Language](https://dev.wix.com/docs/rest/articles/get-started/api-query-language)
77
- * and [Sorting and Paging](https://dev.wix.com/docs/rest/articles/get-started/sorting-and-paging).
76
+ * [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language)
77
+ * and [Sorting and Paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-sorting-and-paging).
78
+ *
79
+ * Learn more about the differences between [_Query_ and _Search_](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-search-query-and-list-methods) methods.
78
80
  * @param - Search criteria including filter, sort, aggregations, and paging options.
79
81
  *
80
82
  * Refer to the [supported filters & sorting table](https://dev.wix.com/docs/sdk/backend-modules/categories/categories/search-categories) (SDK)
81
- * or the [supported filters article](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting) (REST)
83
+ * or the [supported filters article](https://dev.wix.com/docs/api-reference/business-management/categories/supported-filters-and-sorting) (REST)
82
84
  * for a complete list of supported filters and sorting options.
83
85
  */
84
86
  (search: CategorySearch, options?: NonNullablePaths<SearchCategoriesOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<SearchCategoriesResponse, `categories` | `categories.${number}.itemCounter` | `categories.${number}.seoData.settings.preventAutoRedirect` | `aggregationData.results` | `aggregationData.results.${number}.scalar.type` | `aggregationData.results.${number}.scalar.value` | `aggregationData.results.${number}.name` | `aggregationData.results.${number}.type` | `aggregationData.results.${number}.fieldPath`, 6>>;
@@ -89,7 +91,7 @@ interface CountCategoriesSignature {
89
91
  * Counts the number of categories that match the provided filtering.
90
92
  *
91
93
  * For field support for filters and sorting,
92
- * see [Categories: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting).
94
+ * see [Categories: Supported Filters and Sorting](https://dev.wix.com/docs/api-reference/business-management/categories/supported-filters-and-sorting).
93
95
  */
94
96
  (options?: NonNullablePaths<CountCategoriesOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<CountCategoriesResponse, `count`, 2>>;
95
97
  }