@wix/categories 1.0.44 → 1.0.46

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.
@@ -1,3 +1,47 @@
1
+ type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
2
+ interface HttpClient {
3
+ request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
4
+ fetchWithAuth: typeof fetch;
5
+ wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
6
+ }
7
+ type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
8
+ type HttpResponse<T = any> = {
9
+ data: T;
10
+ status: number;
11
+ statusText: string;
12
+ headers: any;
13
+ request?: any;
14
+ };
15
+ type RequestOptions<_TResponse = any, Data = any> = {
16
+ method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
17
+ url: string;
18
+ data?: Data;
19
+ params?: URLSearchParams;
20
+ } & APIMetadata;
21
+ type APIMetadata = {
22
+ methodFqn?: string;
23
+ entityFqdn?: string;
24
+ packageName?: string;
25
+ };
26
+ type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
27
+ type EventDefinition<Payload = unknown, Type extends string = string> = {
28
+ __type: 'event-definition';
29
+ type: Type;
30
+ isDomainEvent?: boolean;
31
+ transformations?: (envelope: unknown) => Payload;
32
+ __payload: Payload;
33
+ };
34
+ declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
35
+ type EventHandler<T extends EventDefinition> = (payload: T['__payload']) => void | Promise<void>;
36
+ type BuildEventDefinition<T extends EventDefinition<any, string>> = (handler: EventHandler<T>) => void;
37
+
38
+ declare global {
39
+ // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
40
+ interface SymbolConstructor {
41
+ readonly observable: symbol;
42
+ }
43
+ }
44
+
1
45
  interface Category {
2
46
  /** Category ID. */
3
47
  _id?: string | null;
@@ -1647,16 +1691,23 @@ declare enum RequestedFields {
1647
1691
  interface QueryCategoriesResponse {
1648
1692
  /** Categories which satisfy the provided query. */
1649
1693
  categories?: Category[];
1650
- /** Paging metadata. Contains cursor which can be used in next query. */
1651
- pagingMetadata?: PlatformPagingMetadataV2;
1694
+ /** Paging metadata. */
1695
+ pagingMetadata?: CursorPagingMetadata;
1652
1696
  }
1653
- interface PlatformPagingMetadataV2 {
1654
- /** The number of items returned in this response. */
1697
+ interface CursorPagingMetadata {
1698
+ /** Number of items returned in the response. */
1655
1699
  count?: number | null;
1656
- /** Cursors to navigate through result pages. Returned if cursor paging was used. */
1657
- cursors?: CommonCursors;
1700
+ /** Cursor strings that point to the next page, previous page, or both. */
1701
+ cursors?: Cursors;
1702
+ /**
1703
+ * Whether there are more pages to retrieve following the current page.
1704
+ *
1705
+ * + `true`: Another page of results can be retrieved.
1706
+ * + `false`: This is the last page.
1707
+ */
1708
+ hasNext?: boolean | null;
1658
1709
  }
1659
- interface CommonCursors {
1710
+ interface Cursors {
1660
1711
  /** Cursor string pointing to the next page in the list of results. */
1661
1712
  next?: string | null;
1662
1713
  /** Cursor pointing to the previous page in the list of results. */
@@ -1936,25 +1987,6 @@ interface SearchCategoriesResponse {
1936
1987
  /** Aggregation data. */
1937
1988
  aggregationData?: AggregationData;
1938
1989
  }
1939
- interface CursorPagingMetadata {
1940
- /** Number of items returned in the response. */
1941
- count?: number | null;
1942
- /** Cursor strings that point to the next page, previous page, or both. */
1943
- cursors?: Cursors;
1944
- /**
1945
- * Whether there are more pages to retrieve following the current page.
1946
- *
1947
- * + `true`: Another page of results can be retrieved.
1948
- * + `false`: This is the last page.
1949
- */
1950
- hasNext?: boolean | null;
1951
- }
1952
- interface Cursors {
1953
- /** Cursor string pointing to the next page in the list of results. */
1954
- next?: string | null;
1955
- /** Cursor pointing to the previous page in the list of results. */
1956
- prev?: string | null;
1957
- }
1958
1990
  interface AggregationData {
1959
1991
  /** key = aggregation name (as derived from search request) */
1960
1992
  results?: AggregationResults[];
@@ -2432,7 +2464,7 @@ interface BulkAddItemsToCategoryResponse {
2432
2464
  bulkActionMetadata?: BulkActionMetadata;
2433
2465
  }
2434
2466
  interface BulkItemsToCategoryResult {
2435
- /** Bulk action metadata for category. */
2467
+ /** Bulk action metadata for item reference. */
2436
2468
  itemMetadata?: ItemReferenceMetadata;
2437
2469
  }
2438
2470
  interface ItemReferenceMetadata {
@@ -3559,80 +3591,266 @@ interface SetArrangedItemsOptions {
3559
3591
  items?: ItemReference[];
3560
3592
  }
3561
3593
 
3562
- type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
3563
- interface HttpClient {
3564
- request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
3565
- fetchWithAuth: typeof fetch;
3566
- wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
3594
+ declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
3595
+ interface CreateCategorySignature {
3596
+ /**
3597
+ * Creates a category.
3598
+ * @param - Category to create.
3599
+ * @returns Created category.
3600
+ */
3601
+ (category: Category, options?: CreateCategoryOptions | undefined): Promise<Category & CategoryNonNullableFields>;
3567
3602
  }
3568
- type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
3569
- type HttpResponse<T = any> = {
3570
- data: T;
3571
- status: number;
3572
- statusText: string;
3573
- headers: any;
3574
- request?: any;
3575
- };
3576
- type RequestOptions<_TResponse = any, Data = any> = {
3577
- method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
3578
- url: string;
3579
- data?: Data;
3580
- params?: URLSearchParams;
3581
- } & APIMetadata;
3582
- type APIMetadata = {
3583
- methodFqn?: string;
3584
- entityFqdn?: string;
3585
- packageName?: string;
3586
- };
3587
- type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
3588
- type EventDefinition<Payload = unknown, Type extends string = string> = {
3589
- __type: 'event-definition';
3590
- type: Type;
3591
- isDomainEvent?: boolean;
3592
- transformations?: (envelope: unknown) => Payload;
3593
- __payload: Payload;
3594
- };
3595
- declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
3596
- type EventHandler<T extends EventDefinition> = (payload: T['__payload']) => void | Promise<void>;
3597
- type BuildEventDefinition<T extends EventDefinition<any, string>> = (handler: EventHandler<T>) => void;
3598
-
3599
- declare global {
3600
- // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
3601
- interface SymbolConstructor {
3602
- readonly observable: symbol;
3603
- }
3603
+ declare function getCategory$1(httpClient: HttpClient): GetCategorySignature;
3604
+ interface GetCategorySignature {
3605
+ /**
3606
+ * Retrieves a category.
3607
+ * @param - Category ID.
3608
+ * @param - Category tree reference details.
3609
+ * @returns Category.
3610
+ */
3611
+ (categoryId: string, treeReference: TreeReference, options?: GetCategoryOptions | undefined): Promise<Category & CategoryNonNullableFields>;
3604
3612
  }
3605
-
3606
- declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
3613
+ declare function updateCategory$1(httpClient: HttpClient): UpdateCategorySignature;
3614
+ interface UpdateCategorySignature {
3615
+ /**
3616
+ * Updates a category.
3617
+ *
3618
+ * Each time the category is updated, `revision` increments by 1.
3619
+ * The current `revision` must be passed when updating the category.
3620
+ * This ensures you're working with the latest category and prevents unintended overwrites.
3621
+ * @param - Category ID.
3622
+ * @returns Updated category.
3623
+ */
3624
+ (_id: string | null, category: UpdateCategory, options?: UpdateCategoryOptions | undefined): Promise<Category & CategoryNonNullableFields>;
3625
+ }
3626
+ declare function deleteCategory$1(httpClient: HttpClient): DeleteCategorySignature;
3627
+ interface DeleteCategorySignature {
3628
+ /**
3629
+ * Deletes a category.
3630
+ * @param - Category ID.
3631
+ * @param - Category tree reference details.
3632
+ */
3633
+ (categoryId: string, treeReference: TreeReference): Promise<void>;
3634
+ }
3635
+ declare function queryCategories$1(httpClient: HttpClient): QueryCategoriesSignature;
3636
+ interface QueryCategoriesSignature {
3637
+ /**
3638
+ * Query Categories using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language). Use instead of Search when eventually consistent data is not acceptable
3639
+ */
3640
+ (options: QueryCategoriesOptions): CategoriesQueryBuilder;
3641
+ }
3642
+ declare function searchCategories$1(httpClient: HttpClient): SearchCategoriesSignature;
3643
+ interface SearchCategoriesSignature {
3644
+ /**
3645
+ * Retrieves a list of up to 1,000 categories, given the provided filtering, sorting, and cursor paging.
3646
+ * Pass supported values to the `fields` array in the request to include those fields in the response.
3647
+ *
3648
+ *
3649
+ * Search Categories runs with these defaults, which you can override:
3650
+ *
3651
+ * - `createdDate` is sorted in `DESC` order
3652
+ * - `cursorPaging.limit` is `100`
3653
+ *
3654
+ * For field support for filters and sorting,
3655
+ * see [Categories: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting).
3656
+ *
3657
+ * To learn about working with _Search_ endpoints, see
3658
+ * [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language),
3659
+ * and [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).
3660
+ */
3661
+ (options?: SearchCategoriesOptions | undefined): Promise<SearchCategoriesResponse & SearchCategoriesResponseNonNullableFields>;
3662
+ }
3663
+ declare function countCategories$1(httpClient: HttpClient): CountCategoriesSignature;
3664
+ interface CountCategoriesSignature {
3665
+ /**
3666
+ * Counts the number of categories that match the provided filtering.
3667
+ *
3668
+ * For field support for filters and sorting,
3669
+ * see [Categories: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-management/categories/supported-filters-and-sorting).
3670
+ */
3671
+ (options?: CountCategoriesOptions | undefined): Promise<CountCategoriesResponse & CountCategoriesResponseNonNullableFields>;
3672
+ }
3673
+ declare function moveCategory$1(httpClient: HttpClient): MoveCategorySignature;
3674
+ interface MoveCategorySignature {
3675
+ /**
3676
+ * Moves a category within its parent category, or to a different parent category.
3677
+ * @param - ID of the category to move.
3678
+ * @param - Category tree reference details.
3679
+ */
3680
+ (categoryId: string, treeReference: TreeReference, options?: MoveCategoryOptions | undefined): Promise<MoveCategoryResponse & MoveCategoryResponseNonNullableFields>;
3681
+ }
3682
+ declare function bulkUpdateCategories$1(httpClient: HttpClient): BulkUpdateCategoriesSignature;
3683
+ interface BulkUpdateCategoriesSignature {
3684
+ /**
3685
+ * Updates multiple categories.
3686
+ *
3687
+ * Each time a category is updated, `revision` increments by 1.
3688
+ * The current `revision` must be passed when updating a category.
3689
+ * This ensures you're working with the latest category and prevents unintended overwrites.
3690
+ * @param - List of categories to update.
3691
+ */
3692
+ (categories: MaskedCategory[], options?: BulkUpdateCategoriesOptions | undefined): Promise<BulkUpdateCategoriesResponse & BulkUpdateCategoriesResponseNonNullableFields>;
3693
+ }
3694
+ declare function updateCategoryVisibility$1(httpClient: HttpClient): UpdateCategoryVisibilitySignature;
3695
+ interface UpdateCategoryVisibilitySignature {
3696
+ /**
3697
+ * Updates category visibility.
3698
+ *
3699
+ *
3700
+ * Each time a category is updated, `revision` increments by 1.
3701
+ * The current `revision` must be passed when updating a category.
3702
+ * This ensures you're working with the latest category and prevents unintended overwrites.
3703
+ * @param - Category ID.
3704
+ */
3705
+ (categoryId: string, options?: UpdateCategoryVisibilityOptions | undefined): Promise<UpdateCategoryVisibilityResponse & UpdateCategoryVisibilityResponseNonNullableFields>;
3706
+ }
3707
+ declare function bulkAddItemsToCategory$1(httpClient: HttpClient): BulkAddItemsToCategorySignature;
3708
+ interface BulkAddItemsToCategorySignature {
3709
+ /**
3710
+ * Adds multiple items to a single category.
3711
+ * @param - Category ID.
3712
+ * @param - List of items to add.
3713
+ */
3714
+ (categoryId: string, items: ItemReference[], options: BulkAddItemsToCategoryOptions): Promise<BulkAddItemsToCategoryResponse & BulkAddItemsToCategoryResponseNonNullableFields>;
3715
+ }
3716
+ declare function bulkAddItemToCategories$1(httpClient: HttpClient): BulkAddItemToCategoriesSignature;
3717
+ interface BulkAddItemToCategoriesSignature {
3718
+ /**
3719
+ * Adds a single item to multiple categories.
3720
+ * @param - Item to add.
3721
+ */
3722
+ (item: ItemReference, options: BulkAddItemToCategoriesOptions): Promise<BulkAddItemToCategoriesResponse & BulkAddItemToCategoriesResponseNonNullableFields>;
3723
+ }
3724
+ declare function bulkRemoveItemsFromCategory$1(httpClient: HttpClient): BulkRemoveItemsFromCategorySignature;
3725
+ interface BulkRemoveItemsFromCategorySignature {
3726
+ /**
3727
+ * Removes multiple items from a single category.
3728
+ * @param - Category ID.
3729
+ * @param - List of items to remove.
3730
+ */
3731
+ (categoryId: string, items: ItemReference[], options: BulkRemoveItemsFromCategoryOptions): Promise<BulkRemoveItemsFromCategoryResponse & BulkRemoveItemsFromCategoryResponseNonNullableFields>;
3732
+ }
3733
+ declare function bulkRemoveItemFromCategories$1(httpClient: HttpClient): BulkRemoveItemFromCategoriesSignature;
3734
+ interface BulkRemoveItemFromCategoriesSignature {
3735
+ /**
3736
+ * Removes a single item from multiple categories.
3737
+ * @param - Item to remove.
3738
+ */
3739
+ (item: ItemReference, options: BulkRemoveItemFromCategoriesOptions): Promise<BulkRemoveItemFromCategoriesResponse & BulkRemoveItemFromCategoriesResponseNonNullableFields>;
3740
+ }
3741
+ declare function listItemsInCategory$1(httpClient: HttpClient): ListItemsInCategorySignature;
3742
+ interface ListItemsInCategorySignature {
3743
+ /**
3744
+ * Retrieves a list of up to 100 items from a single category, given the provided cursor paging.
3745
+ *
3746
+ *
3747
+ * List Items In Categories defaults to sorting by the time the item was added to the category, in descending order.
3748
+ * @param - Category ID.
3749
+ * @param - Category tree reference details.
3750
+ */
3751
+ (categoryId: string, treeReference: TreeReference, options?: ListItemsInCategoryOptions | undefined): Promise<ListItemsInCategoryResponse & ListItemsInCategoryResponseNonNullableFields>;
3752
+ }
3753
+ declare function listCategoriesForItem$1(httpClient: HttpClient): ListCategoriesForItemSignature;
3754
+ interface ListCategoriesForItemSignature {
3755
+ /**
3756
+ * Retrieves a list of categories that contain the specified item.
3757
+ * @param - Item reference info.
3758
+ */
3759
+ (item: ItemReference, options: ListCategoriesForItemOptions): Promise<ListCategoriesForItemResponse & ListCategoriesForItemResponseNonNullableFields>;
3760
+ }
3761
+ declare function listTrees$1(httpClient: HttpClient): ListTreesSignature;
3762
+ interface ListTreesSignature {
3763
+ /**
3764
+ * Retrieves a list of all trees installed on the site, sorted by `appNamespace` in ascending order.
3765
+ */
3766
+ (): Promise<ListTreesResponse & ListTreesResponseNonNullableFields>;
3767
+ }
3768
+ declare function setArrangedItems$1(httpClient: HttpClient): SetArrangedItemsSignature;
3769
+ interface SetArrangedItemsSignature {
3770
+ /**
3771
+ * Sets arranged items in a category.
3772
+ *
3773
+ * The order of items in the `items` array determines the order of items in the category.
3774
+ * The category's existing list of arranged items will be overridden.
3775
+ * @param - Category ID.
3776
+ * @param - Category tree reference details.
3777
+ */
3778
+ (categoryId: string, treeReference: TreeReference, options?: SetArrangedItemsOptions | undefined): Promise<SetArrangedItemsResponse & SetArrangedItemsResponseNonNullableFields>;
3779
+ }
3780
+ declare function getArrangedItems$1(httpClient: HttpClient): GetArrangedItemsSignature;
3781
+ interface GetArrangedItemsSignature {
3782
+ /**
3783
+ * Retrieves a list of arranged items in a category.
3784
+ * @param - Category ID.
3785
+ * @param - Category tree reference details.
3786
+ */
3787
+ (categoryId: string, treeReference: TreeReference): Promise<GetArrangedItemsResponse & GetArrangedItemsResponseNonNullableFields>;
3788
+ }
3789
+ declare const onCategoryCreated$1: EventDefinition<CategoryCreatedEnvelope, "wix.categories.v1.category_created">;
3790
+ declare const onCategoryUpdated$1: EventDefinition<CategoryUpdatedEnvelope, "wix.categories.v1.category_updated">;
3791
+ declare const onCategoryDeleted$1: EventDefinition<CategoryDeletedEnvelope, "wix.categories.v1.category_deleted">;
3792
+ declare const onCategoryMoved$1: EventDefinition<CategoryMovedEnvelope, "wix.categories.v1.category_category_moved">;
3793
+ declare const onCategoryItemAddedToCategory$1: EventDefinition<CategoryItemAddedToCategoryEnvelope, "wix.categories.v1.category_item_added_to_category">;
3794
+ declare const onCategoryItemRemovedFromCategory$1: EventDefinition<CategoryItemRemovedFromCategoryEnvelope, "wix.categories.v1.category_item_removed_from_category">;
3795
+ declare const onCategoryItemsArrangedInCategory$1: EventDefinition<CategoryItemsArrangedInCategoryEnvelope, "wix.categories.v1.category_items_arranged_in_category">;
3607
3796
 
3608
3797
  declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
3609
3798
 
3610
- declare const createCategory: ReturnType<typeof createRESTModule<typeof publicCreateCategory>>;
3611
- declare const getCategory: ReturnType<typeof createRESTModule<typeof publicGetCategory>>;
3612
- declare const updateCategory: ReturnType<typeof createRESTModule<typeof publicUpdateCategory>>;
3613
- declare const deleteCategory: ReturnType<typeof createRESTModule<typeof publicDeleteCategory>>;
3614
- declare const queryCategories: ReturnType<typeof createRESTModule<typeof publicQueryCategories>>;
3615
- declare const searchCategories: ReturnType<typeof createRESTModule<typeof publicSearchCategories>>;
3616
- declare const countCategories: ReturnType<typeof createRESTModule<typeof publicCountCategories>>;
3617
- declare const moveCategory: ReturnType<typeof createRESTModule<typeof publicMoveCategory>>;
3618
- declare const bulkUpdateCategories: ReturnType<typeof createRESTModule<typeof publicBulkUpdateCategories>>;
3619
- declare const updateCategoryVisibility: ReturnType<typeof createRESTModule<typeof publicUpdateCategoryVisibility>>;
3620
- declare const bulkAddItemsToCategory: ReturnType<typeof createRESTModule<typeof publicBulkAddItemsToCategory>>;
3621
- declare const bulkAddItemToCategories: ReturnType<typeof createRESTModule<typeof publicBulkAddItemToCategories>>;
3622
- declare const bulkRemoveItemsFromCategory: ReturnType<typeof createRESTModule<typeof publicBulkRemoveItemsFromCategory>>;
3623
- declare const bulkRemoveItemFromCategories: ReturnType<typeof createRESTModule<typeof publicBulkRemoveItemFromCategories>>;
3624
- declare const listItemsInCategory: ReturnType<typeof createRESTModule<typeof publicListItemsInCategory>>;
3625
- declare const listCategoriesForItem: ReturnType<typeof createRESTModule<typeof publicListCategoriesForItem>>;
3626
- declare const listTrees: ReturnType<typeof createRESTModule<typeof publicListTrees>>;
3627
- declare const setArrangedItems: ReturnType<typeof createRESTModule<typeof publicSetArrangedItems>>;
3628
- declare const getArrangedItems: ReturnType<typeof createRESTModule<typeof publicGetArrangedItems>>;
3629
- declare const onCategoryCreated: ReturnType<typeof createEventModule<typeof publicOnCategoryCreated>>;
3630
- declare const onCategoryUpdated: ReturnType<typeof createEventModule<typeof publicOnCategoryUpdated>>;
3631
- declare const onCategoryDeleted: ReturnType<typeof createEventModule<typeof publicOnCategoryDeleted>>;
3632
- declare const onCategoryMoved: ReturnType<typeof createEventModule<typeof publicOnCategoryMoved>>;
3633
- declare const onCategoryItemAddedToCategory: ReturnType<typeof createEventModule<typeof publicOnCategoryItemAddedToCategory>>;
3634
- declare const onCategoryItemRemovedFromCategory: ReturnType<typeof createEventModule<typeof publicOnCategoryItemRemovedFromCategory>>;
3635
- declare const onCategoryItemsArrangedInCategory: ReturnType<typeof createEventModule<typeof publicOnCategoryItemsArrangedInCategory>>;
3799
+ declare const createCategory: BuildRESTFunction<typeof createCategory$1> & typeof createCategory$1;
3800
+ declare const getCategory: BuildRESTFunction<typeof getCategory$1> & typeof getCategory$1;
3801
+ declare const updateCategory: BuildRESTFunction<typeof updateCategory$1> & typeof updateCategory$1;
3802
+ declare const deleteCategory: BuildRESTFunction<typeof deleteCategory$1> & typeof deleteCategory$1;
3803
+ declare const queryCategories: BuildRESTFunction<typeof queryCategories$1> & typeof queryCategories$1;
3804
+ declare const searchCategories: BuildRESTFunction<typeof searchCategories$1> & typeof searchCategories$1;
3805
+ declare const countCategories: BuildRESTFunction<typeof countCategories$1> & typeof countCategories$1;
3806
+ declare const moveCategory: BuildRESTFunction<typeof moveCategory$1> & typeof moveCategory$1;
3807
+ declare const bulkUpdateCategories: BuildRESTFunction<typeof bulkUpdateCategories$1> & typeof bulkUpdateCategories$1;
3808
+ declare const updateCategoryVisibility: BuildRESTFunction<typeof updateCategoryVisibility$1> & typeof updateCategoryVisibility$1;
3809
+ declare const bulkAddItemsToCategory: BuildRESTFunction<typeof bulkAddItemsToCategory$1> & typeof bulkAddItemsToCategory$1;
3810
+ declare const bulkAddItemToCategories: BuildRESTFunction<typeof bulkAddItemToCategories$1> & typeof bulkAddItemToCategories$1;
3811
+ declare const bulkRemoveItemsFromCategory: BuildRESTFunction<typeof bulkRemoveItemsFromCategory$1> & typeof bulkRemoveItemsFromCategory$1;
3812
+ declare const bulkRemoveItemFromCategories: BuildRESTFunction<typeof bulkRemoveItemFromCategories$1> & typeof bulkRemoveItemFromCategories$1;
3813
+ declare const listItemsInCategory: BuildRESTFunction<typeof listItemsInCategory$1> & typeof listItemsInCategory$1;
3814
+ declare const listCategoriesForItem: BuildRESTFunction<typeof listCategoriesForItem$1> & typeof listCategoriesForItem$1;
3815
+ declare const listTrees: BuildRESTFunction<typeof listTrees$1> & typeof listTrees$1;
3816
+ declare const setArrangedItems: BuildRESTFunction<typeof setArrangedItems$1> & typeof setArrangedItems$1;
3817
+ declare const getArrangedItems: BuildRESTFunction<typeof getArrangedItems$1> & typeof getArrangedItems$1;
3818
+
3819
+ type _publicOnCategoryCreatedType = typeof onCategoryCreated$1;
3820
+ /** */
3821
+ declare const onCategoryCreated: ReturnType<typeof createEventModule<_publicOnCategoryCreatedType>>;
3822
+
3823
+ type _publicOnCategoryUpdatedType = typeof onCategoryUpdated$1;
3824
+ /** */
3825
+ declare const onCategoryUpdated: ReturnType<typeof createEventModule<_publicOnCategoryUpdatedType>>;
3826
+
3827
+ type _publicOnCategoryDeletedType = typeof onCategoryDeleted$1;
3828
+ /** */
3829
+ declare const onCategoryDeleted: ReturnType<typeof createEventModule<_publicOnCategoryDeletedType>>;
3830
+
3831
+ type _publicOnCategoryMovedType = typeof onCategoryMoved$1;
3832
+ /**
3833
+ * Triggered when a category is moved.
3834
+ */
3835
+ declare const onCategoryMoved: ReturnType<typeof createEventModule<_publicOnCategoryMovedType>>;
3836
+
3837
+ type _publicOnCategoryItemAddedToCategoryType = typeof onCategoryItemAddedToCategory$1;
3838
+ /**
3839
+ * Triggered when an item is added to a category.
3840
+ */
3841
+ declare const onCategoryItemAddedToCategory: ReturnType<typeof createEventModule<_publicOnCategoryItemAddedToCategoryType>>;
3842
+
3843
+ type _publicOnCategoryItemRemovedFromCategoryType = typeof onCategoryItemRemovedFromCategory$1;
3844
+ /**
3845
+ * Triggered when an item is removed from a category.
3846
+ */
3847
+ declare const onCategoryItemRemovedFromCategory: ReturnType<typeof createEventModule<_publicOnCategoryItemRemovedFromCategoryType>>;
3848
+
3849
+ type _publicOnCategoryItemsArrangedInCategoryType = typeof onCategoryItemsArrangedInCategory$1;
3850
+ /**
3851
+ * Triggered when items arrangement in category is changed.
3852
+ */
3853
+ declare const onCategoryItemsArrangedInCategory: ReturnType<typeof createEventModule<_publicOnCategoryItemsArrangedInCategoryType>>;
3636
3854
 
3637
3855
  type index_d_ActionEvent = ActionEvent;
3638
3856
  type index_d_Aggregation = Aggregation;
@@ -3719,7 +3937,6 @@ type index_d_CodeBlockData = CodeBlockData;
3719
3937
  type index_d_CollapsibleListData = CollapsibleListData;
3720
3938
  type index_d_ColorData = ColorData;
3721
3939
  type index_d_Colors = Colors;
3722
- type index_d_CommonCursors = CommonCursors;
3723
3940
  type index_d_CompactCategory = CompactCategory;
3724
3941
  type index_d_CountCategoriesOptions = CountCategoriesOptions;
3725
3942
  type index_d_CountCategoriesRequest = CountCategoriesRequest;
@@ -3894,7 +4111,6 @@ type index_d_PagingMetadataV2 = PagingMetadataV2;
3894
4111
  type index_d_ParagraphData = ParagraphData;
3895
4112
  type index_d_ParentCategory = ParentCategory;
3896
4113
  type index_d_Permissions = Permissions;
3897
- type index_d_PlatformPagingMetadataV2 = PlatformPagingMetadataV2;
3898
4114
  type index_d_PlaybackOptions = PlaybackOptions;
3899
4115
  type index_d_PluginContainerData = PluginContainerData;
3900
4116
  type index_d_PluginContainerDataAlignment = PluginContainerDataAlignment;
@@ -4004,6 +4220,13 @@ type index_d_Width = Width;
4004
4220
  declare const index_d_Width: typeof Width;
4005
4221
  type index_d_WidthType = WidthType;
4006
4222
  declare const index_d_WidthType: typeof WidthType;
4223
+ type index_d__publicOnCategoryCreatedType = _publicOnCategoryCreatedType;
4224
+ type index_d__publicOnCategoryDeletedType = _publicOnCategoryDeletedType;
4225
+ type index_d__publicOnCategoryItemAddedToCategoryType = _publicOnCategoryItemAddedToCategoryType;
4226
+ type index_d__publicOnCategoryItemRemovedFromCategoryType = _publicOnCategoryItemRemovedFromCategoryType;
4227
+ type index_d__publicOnCategoryItemsArrangedInCategoryType = _publicOnCategoryItemsArrangedInCategoryType;
4228
+ type index_d__publicOnCategoryMovedType = _publicOnCategoryMovedType;
4229
+ type index_d__publicOnCategoryUpdatedType = _publicOnCategoryUpdatedType;
4007
4230
  declare const index_d_bulkAddItemToCategories: typeof bulkAddItemToCategories;
4008
4231
  declare const index_d_bulkAddItemsToCategory: typeof bulkAddItemsToCategory;
4009
4232
  declare const index_d_bulkRemoveItemFromCategories: typeof bulkRemoveItemFromCategories;
@@ -4031,7 +4254,7 @@ declare const index_d_setArrangedItems: typeof setArrangedItems;
4031
4254
  declare const index_d_updateCategory: typeof updateCategory;
4032
4255
  declare const index_d_updateCategoryVisibility: typeof updateCategoryVisibility;
4033
4256
  declare namespace index_d {
4034
- export { type index_d_ActionEvent as ActionEvent, type index_d_Aggregation as Aggregation, type index_d_AggregationData as AggregationData, type index_d_AggregationKindOneOf as AggregationKindOneOf, type index_d_AggregationResults as AggregationResults, type index_d_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d_AggregationType as AggregationType, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_App as App, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreadcrumbItem as BreadcrumbItem, type index_d_BreadcrumbItemValues as BreadcrumbItemValues, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type index_d_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type index_d_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type index_d_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type index_d_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type index_d_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type index_d_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type index_d_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type index_d_BulkCategoriesResult as BulkCategoriesResult, type index_d_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type index_d_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type index_d_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type index_d_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type index_d_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type index_d_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type index_d_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type index_d_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type index_d_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type index_d_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type index_d_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type index_d_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type index_d_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type index_d_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type index_d_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type index_d_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type index_d_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type index_d_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type index_d_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type index_d_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type index_d_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type index_d_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type index_d_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type index_d_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type index_d_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, type index_d_CategoriesQueryBuilder as CategoriesQueryBuilder, type index_d_CategoriesQueryResult as CategoriesQueryResult, type index_d_Category as Category, type index_d_CategoryCreatedEnvelope as CategoryCreatedEnvelope, type index_d_CategoryDeletedEnvelope as CategoryDeletedEnvelope, type index_d_CategoryItemAddedToCategoryEnvelope as CategoryItemAddedToCategoryEnvelope, type index_d_CategoryItemRemovedFromCategoryEnvelope as CategoryItemRemovedFromCategoryEnvelope, type index_d_CategoryItemsArrangedInCategoryEnvelope as CategoryItemsArrangedInCategoryEnvelope, type index_d_CategoryMoved as CategoryMoved, type index_d_CategoryMovedEnvelope as CategoryMovedEnvelope, type index_d_CategoryNonNullableFields as CategoryNonNullableFields, type index_d_CategoryTreeNode as CategoryTreeNode, type index_d_CategoryUpdatedEnvelope as CategoryUpdatedEnvelope, type index_d_CellStyle as CellStyle, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCursors as CommonCursors, type index_d_CompactCategory as CompactCategory, type index_d_CountCategoriesOptions as CountCategoriesOptions, type index_d_CountCategoriesRequest as CountCategoriesRequest, type index_d_CountCategoriesResponse as CountCategoriesResponse, type index_d_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type index_d_CreateCategoryOptions as CreateCategoryOptions, type index_d_CreateCategoryRequest as CreateCategoryRequest, type index_d_CreateCategoryResponse as CreateCategoryResponse, type index_d_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_DateHistogramAggregation as DateHistogramAggregation, type index_d_DateHistogramResult as DateHistogramResult, type index_d_DateHistogramResults as DateHistogramResults, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DeleteCategoryRequest as DeleteCategoryRequest, type index_d_DeleteCategoryResponse as DeleteCategoryResponse, type index_d_DeprecatedSearchCategoriesWithOffsetRequest as DeprecatedSearchCategoriesWithOffsetRequest, type index_d_DeprecatedSearchCategoriesWithOffsetResponse as DeprecatedSearchCategoriesWithOffsetResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DividerData as DividerData, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_EventMetadata as EventMetadata, type index_d_ExtendedFields as ExtendedFields, type index_d_File as File, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetArrangedItemsRequest as GetArrangedItemsRequest, type index_d_GetArrangedItemsResponse as GetArrangedItemsResponse, type index_d_GetArrangedItemsResponseNonNullableFields as GetArrangedItemsResponseNonNullableFields, type index_d_GetCategoriesTreeRequest as GetCategoriesTreeRequest, type index_d_GetCategoriesTreeResponse as GetCategoriesTreeResponse, type index_d_GetCategoryOptions as GetCategoryOptions, type index_d_GetCategoryRequest as GetCategoryRequest, type index_d_GetCategoryResponse as GetCategoryResponse, type index_d_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_GroupByValueResults as GroupByValueResults, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, type index_d_ImageData as ImageData, type index_d_IncludeMissingValuesOptions as IncludeMissingValuesOptions, index_d_InitialExpandedItems as InitialExpandedItems, index_d_Interval as Interval, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_Item as Item, type index_d_ItemAddedToCategory as ItemAddedToCategory, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemReference as ItemReference, type index_d_ItemReferenceMetadata as ItemReferenceMetadata, type index_d_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d_ItemStyle as ItemStyle, type index_d_ItemsAddedToCategory as ItemsAddedToCategory, type index_d_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d_Keyword as Keyword, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, type index_d_ListCategoriesForItemOptions as ListCategoriesForItemOptions, type index_d_ListCategoriesForItemRequest as ListCategoriesForItemRequest, type index_d_ListCategoriesForItemResponse as ListCategoriesForItemResponse, type index_d_ListCategoriesForItemResponseNonNullableFields as ListCategoriesForItemResponseNonNullableFields, type index_d_ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequest, type index_d_ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponse, type index_d_ListItemsInCategoryOptions as ListItemsInCategoryOptions, type index_d_ListItemsInCategoryRequest as ListItemsInCategoryRequest, type index_d_ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOf, type index_d_ListItemsInCategoryResponse as ListItemsInCategoryResponse, type index_d_ListItemsInCategoryResponseNonNullableFields as ListItemsInCategoryResponseNonNullableFields, type index_d_ListTreesRequest as ListTreesRequest, type index_d_ListTreesResponse as ListTreesResponse, type index_d_ListTreesResponseNonNullableFields as ListTreesResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_MaskedCategory as MaskedCategory, type index_d_Media as Media, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_MissingValues as MissingValues, index_d_Mode as Mode, type index_d_MoveCategoryOptions as MoveCategoryOptions, type index_d_MoveCategoryRequest as MoveCategoryRequest, type index_d_MoveCategoryResponse as MoveCategoryResponse, type index_d_MoveCategoryResponseNonNullableFields as MoveCategoryResponseNonNullableFields, type index_d_MoveItemInCategoryRequest as MoveItemInCategoryRequest, index_d_MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPosition, type index_d_MoveItemInCategoryResponse as MoveItemInCategoryResponse, type index_d_NestedAggregation as NestedAggregation, type index_d_NestedAggregationItem as NestedAggregationItem, type index_d_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d_NestedAggregationResults as NestedAggregationResults, type index_d_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d_NestedAggregationType as NestedAggregationType, type index_d_NestedResultValue as NestedResultValue, type index_d_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d_NestedResults as NestedResults, type index_d_NestedValueAggregationResult as NestedValueAggregationResult, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, type index_d_Oembed as Oembed, type index_d_OffsetSearch as OffsetSearch, type index_d_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, type index_d_PDFSettings as PDFSettings, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadata as PagingMetadata, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_ParagraphData as ParagraphData, type index_d_ParentCategory as ParentCategory, type index_d_Permissions as Permissions, type index_d_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollSettings as PollSettings, index_d_Position as Position, type index_d_QueryCategoriesOptions as QueryCategoriesOptions, type index_d_QueryCategoriesRequest as QueryCategoriesRequest, type index_d_QueryCategoriesResponse as QueryCategoriesResponse, type index_d_QueryCategoriesResponseNonNullableFields as QueryCategoriesResponseNonNullableFields, type index_d_RangeAggregation as RangeAggregation, type index_d_RangeAggregationResult as RangeAggregationResult, type index_d_RangeBucket as RangeBucket, type index_d_RangeResult as RangeResult, type index_d_RangeResults as RangeResults, type index_d_Rel as Rel, index_d_RequestedFields as RequestedFields, type index_d_RestoreInfo as RestoreInfo, type index_d_Results as Results, type index_d_RichContent as RichContent, type index_d_ScalarAggregation as ScalarAggregation, type index_d_ScalarResult as ScalarResult, index_d_ScalarType as ScalarType, type index_d_SearchCategoriesOptions as SearchCategoriesOptions, type index_d_SearchCategoriesRequest as SearchCategoriesRequest, type index_d_SearchCategoriesResponse as SearchCategoriesResponse, type index_d_SearchCategoriesResponseNonNullableFields as SearchCategoriesResponseNonNullableFields, type index_d_SearchDetails as SearchDetails, type index_d_SeoSchema as SeoSchema, type index_d_SetArrangedItemsOptions as SetArrangedItemsOptions, type index_d_SetArrangedItemsRequest as SetArrangedItemsRequest, type index_d_SetArrangedItemsResponse as SetArrangedItemsResponse, type index_d_SetArrangedItemsResponseNonNullableFields as SetArrangedItemsResponseNonNullableFields, type index_d_Settings as Settings, index_d_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d_SortDirection as SortDirection, index_d_SortOrder as SortOrder, index_d_SortType as SortType, type index_d_Sorting as Sorting, index_d_Source as Source, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, type index_d_Styles as Styles, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, type index_d_Tag as Tag, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TreeReference as TreeReference, index_d_Type as Type, type index_d_URI as URI, type index_d_UpdateCategory as UpdateCategory, type index_d_UpdateCategoryOptions as UpdateCategoryOptions, type index_d_UpdateCategoryRequest as UpdateCategoryRequest, type index_d_UpdateCategoryResponse as UpdateCategoryResponse, type index_d_UpdateCategoryResponseNonNullableFields as UpdateCategoryResponseNonNullableFields, type index_d_UpdateCategoryVisibilityOptions as UpdateCategoryVisibilityOptions, type index_d_UpdateCategoryVisibilityRequest as UpdateCategoryVisibilityRequest, type index_d_UpdateCategoryVisibilityResponse as UpdateCategoryVisibilityResponse, type index_d_UpdateCategoryVisibilityResponseNonNullableFields as UpdateCategoryVisibilityResponseNonNullableFields, type index_d_ValueAggregation as ValueAggregation, type index_d_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d_ValueAggregationResult as ValueAggregationResult, type index_d_ValueResult as ValueResult, type index_d_ValueResults as ValueResults, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, index_d_bulkAddItemToCategories as bulkAddItemToCategories, index_d_bulkAddItemsToCategory as bulkAddItemsToCategory, index_d_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, index_d_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, index_d_bulkUpdateCategories as bulkUpdateCategories, index_d_countCategories as countCategories, index_d_createCategory as createCategory, index_d_deleteCategory as deleteCategory, index_d_getArrangedItems as getArrangedItems, index_d_getCategory as getCategory, index_d_listCategoriesForItem as listCategoriesForItem, index_d_listItemsInCategory as listItemsInCategory, index_d_listTrees as listTrees, index_d_moveCategory as moveCategory, index_d_onCategoryCreated as onCategoryCreated, index_d_onCategoryDeleted as onCategoryDeleted, index_d_onCategoryItemAddedToCategory as onCategoryItemAddedToCategory, index_d_onCategoryItemRemovedFromCategory as onCategoryItemRemovedFromCategory, index_d_onCategoryItemsArrangedInCategory as onCategoryItemsArrangedInCategory, index_d_onCategoryMoved as onCategoryMoved, index_d_onCategoryUpdated as onCategoryUpdated, index_d_queryCategories as queryCategories, index_d_searchCategories as searchCategories, index_d_setArrangedItems as setArrangedItems, index_d_updateCategory as updateCategory, index_d_updateCategoryVisibility as updateCategoryVisibility };
4257
+ export { type index_d_ActionEvent as ActionEvent, type index_d_Aggregation as Aggregation, type index_d_AggregationData as AggregationData, type index_d_AggregationKindOneOf as AggregationKindOneOf, type index_d_AggregationResults as AggregationResults, type index_d_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d_AggregationType as AggregationType, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_App as App, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreadcrumbItem as BreadcrumbItem, type index_d_BreadcrumbItemValues as BreadcrumbItemValues, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type index_d_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type index_d_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type index_d_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type index_d_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type index_d_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type index_d_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type index_d_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type index_d_BulkCategoriesResult as BulkCategoriesResult, type index_d_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type index_d_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type index_d_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type index_d_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type index_d_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type index_d_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type index_d_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type index_d_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type index_d_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type index_d_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type index_d_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type index_d_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type index_d_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type index_d_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type index_d_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type index_d_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type index_d_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type index_d_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type index_d_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type index_d_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type index_d_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type index_d_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type index_d_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type index_d_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type index_d_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, type index_d_CategoriesQueryBuilder as CategoriesQueryBuilder, type index_d_CategoriesQueryResult as CategoriesQueryResult, type index_d_Category as Category, type index_d_CategoryCreatedEnvelope as CategoryCreatedEnvelope, type index_d_CategoryDeletedEnvelope as CategoryDeletedEnvelope, type index_d_CategoryItemAddedToCategoryEnvelope as CategoryItemAddedToCategoryEnvelope, type index_d_CategoryItemRemovedFromCategoryEnvelope as CategoryItemRemovedFromCategoryEnvelope, type index_d_CategoryItemsArrangedInCategoryEnvelope as CategoryItemsArrangedInCategoryEnvelope, type index_d_CategoryMoved as CategoryMoved, type index_d_CategoryMovedEnvelope as CategoryMovedEnvelope, type index_d_CategoryNonNullableFields as CategoryNonNullableFields, type index_d_CategoryTreeNode as CategoryTreeNode, type index_d_CategoryUpdatedEnvelope as CategoryUpdatedEnvelope, type index_d_CellStyle as CellStyle, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CompactCategory as CompactCategory, type index_d_CountCategoriesOptions as CountCategoriesOptions, type index_d_CountCategoriesRequest as CountCategoriesRequest, type index_d_CountCategoriesResponse as CountCategoriesResponse, type index_d_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type index_d_CreateCategoryOptions as CreateCategoryOptions, type index_d_CreateCategoryRequest as CreateCategoryRequest, type index_d_CreateCategoryResponse as CreateCategoryResponse, type index_d_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_DateHistogramAggregation as DateHistogramAggregation, type index_d_DateHistogramResult as DateHistogramResult, type index_d_DateHistogramResults as DateHistogramResults, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DeleteCategoryRequest as DeleteCategoryRequest, type index_d_DeleteCategoryResponse as DeleteCategoryResponse, type index_d_DeprecatedSearchCategoriesWithOffsetRequest as DeprecatedSearchCategoriesWithOffsetRequest, type index_d_DeprecatedSearchCategoriesWithOffsetResponse as DeprecatedSearchCategoriesWithOffsetResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DividerData as DividerData, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_EventMetadata as EventMetadata, type index_d_ExtendedFields as ExtendedFields, type index_d_File as File, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetArrangedItemsRequest as GetArrangedItemsRequest, type index_d_GetArrangedItemsResponse as GetArrangedItemsResponse, type index_d_GetArrangedItemsResponseNonNullableFields as GetArrangedItemsResponseNonNullableFields, type index_d_GetCategoriesTreeRequest as GetCategoriesTreeRequest, type index_d_GetCategoriesTreeResponse as GetCategoriesTreeResponse, type index_d_GetCategoryOptions as GetCategoryOptions, type index_d_GetCategoryRequest as GetCategoryRequest, type index_d_GetCategoryResponse as GetCategoryResponse, type index_d_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_GroupByValueResults as GroupByValueResults, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, type index_d_ImageData as ImageData, type index_d_IncludeMissingValuesOptions as IncludeMissingValuesOptions, index_d_InitialExpandedItems as InitialExpandedItems, index_d_Interval as Interval, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_Item as Item, type index_d_ItemAddedToCategory as ItemAddedToCategory, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemReference as ItemReference, type index_d_ItemReferenceMetadata as ItemReferenceMetadata, type index_d_ItemRemovedFromCategory as ItemRemovedFromCategory, type index_d_ItemStyle as ItemStyle, type index_d_ItemsAddedToCategory as ItemsAddedToCategory, type index_d_ItemsArrangedInCategory as ItemsArrangedInCategory, type index_d_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type index_d_Keyword as Keyword, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, type index_d_ListCategoriesForItemOptions as ListCategoriesForItemOptions, type index_d_ListCategoriesForItemRequest as ListCategoriesForItemRequest, type index_d_ListCategoriesForItemResponse as ListCategoriesForItemResponse, type index_d_ListCategoriesForItemResponseNonNullableFields as ListCategoriesForItemResponseNonNullableFields, type index_d_ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequest, type index_d_ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponse, type index_d_ListItemsInCategoryOptions as ListItemsInCategoryOptions, type index_d_ListItemsInCategoryRequest as ListItemsInCategoryRequest, type index_d_ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOf, type index_d_ListItemsInCategoryResponse as ListItemsInCategoryResponse, type index_d_ListItemsInCategoryResponseNonNullableFields as ListItemsInCategoryResponseNonNullableFields, type index_d_ListTreesRequest as ListTreesRequest, type index_d_ListTreesResponse as ListTreesResponse, type index_d_ListTreesResponseNonNullableFields as ListTreesResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_MaskedCategory as MaskedCategory, type index_d_Media as Media, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_MissingValues as MissingValues, index_d_Mode as Mode, type index_d_MoveCategoryOptions as MoveCategoryOptions, type index_d_MoveCategoryRequest as MoveCategoryRequest, type index_d_MoveCategoryResponse as MoveCategoryResponse, type index_d_MoveCategoryResponseNonNullableFields as MoveCategoryResponseNonNullableFields, type index_d_MoveItemInCategoryRequest as MoveItemInCategoryRequest, index_d_MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPosition, type index_d_MoveItemInCategoryResponse as MoveItemInCategoryResponse, type index_d_NestedAggregation as NestedAggregation, type index_d_NestedAggregationItem as NestedAggregationItem, type index_d_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d_NestedAggregationResults as NestedAggregationResults, type index_d_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d_NestedAggregationType as NestedAggregationType, type index_d_NestedResultValue as NestedResultValue, type index_d_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d_NestedResults as NestedResults, type index_d_NestedValueAggregationResult as NestedValueAggregationResult, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, type index_d_Oembed as Oembed, type index_d_OffsetSearch as OffsetSearch, type index_d_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, type index_d_PDFSettings as PDFSettings, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadata as PagingMetadata, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_ParagraphData as ParagraphData, type index_d_ParentCategory as ParentCategory, type index_d_Permissions as Permissions, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollSettings as PollSettings, index_d_Position as Position, type index_d_QueryCategoriesOptions as QueryCategoriesOptions, type index_d_QueryCategoriesRequest as QueryCategoriesRequest, type index_d_QueryCategoriesResponse as QueryCategoriesResponse, type index_d_QueryCategoriesResponseNonNullableFields as QueryCategoriesResponseNonNullableFields, type index_d_RangeAggregation as RangeAggregation, type index_d_RangeAggregationResult as RangeAggregationResult, type index_d_RangeBucket as RangeBucket, type index_d_RangeResult as RangeResult, type index_d_RangeResults as RangeResults, type index_d_Rel as Rel, index_d_RequestedFields as RequestedFields, type index_d_RestoreInfo as RestoreInfo, type index_d_Results as Results, type index_d_RichContent as RichContent, type index_d_ScalarAggregation as ScalarAggregation, type index_d_ScalarResult as ScalarResult, index_d_ScalarType as ScalarType, type index_d_SearchCategoriesOptions as SearchCategoriesOptions, type index_d_SearchCategoriesRequest as SearchCategoriesRequest, type index_d_SearchCategoriesResponse as SearchCategoriesResponse, type index_d_SearchCategoriesResponseNonNullableFields as SearchCategoriesResponseNonNullableFields, type index_d_SearchDetails as SearchDetails, type index_d_SeoSchema as SeoSchema, type index_d_SetArrangedItemsOptions as SetArrangedItemsOptions, type index_d_SetArrangedItemsRequest as SetArrangedItemsRequest, type index_d_SetArrangedItemsResponse as SetArrangedItemsResponse, type index_d_SetArrangedItemsResponseNonNullableFields as SetArrangedItemsResponseNonNullableFields, type index_d_Settings as Settings, index_d_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, index_d_SortDirection as SortDirection, index_d_SortOrder as SortOrder, index_d_SortType as SortType, type index_d_Sorting as Sorting, index_d_Source as Source, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, type index_d_Styles as Styles, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, type index_d_Tag as Tag, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TreeReference as TreeReference, index_d_Type as Type, type index_d_URI as URI, type index_d_UpdateCategory as UpdateCategory, type index_d_UpdateCategoryOptions as UpdateCategoryOptions, type index_d_UpdateCategoryRequest as UpdateCategoryRequest, type index_d_UpdateCategoryResponse as UpdateCategoryResponse, type index_d_UpdateCategoryResponseNonNullableFields as UpdateCategoryResponseNonNullableFields, type index_d_UpdateCategoryVisibilityOptions as UpdateCategoryVisibilityOptions, type index_d_UpdateCategoryVisibilityRequest as UpdateCategoryVisibilityRequest, type index_d_UpdateCategoryVisibilityResponse as UpdateCategoryVisibilityResponse, type index_d_UpdateCategoryVisibilityResponseNonNullableFields as UpdateCategoryVisibilityResponseNonNullableFields, type index_d_ValueAggregation as ValueAggregation, type index_d_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d_ValueAggregationResult as ValueAggregationResult, type index_d_ValueResult as ValueResult, type index_d_ValueResults as ValueResults, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, type index_d__publicOnCategoryCreatedType as _publicOnCategoryCreatedType, type index_d__publicOnCategoryDeletedType as _publicOnCategoryDeletedType, type index_d__publicOnCategoryItemAddedToCategoryType as _publicOnCategoryItemAddedToCategoryType, type index_d__publicOnCategoryItemRemovedFromCategoryType as _publicOnCategoryItemRemovedFromCategoryType, type index_d__publicOnCategoryItemsArrangedInCategoryType as _publicOnCategoryItemsArrangedInCategoryType, type index_d__publicOnCategoryMovedType as _publicOnCategoryMovedType, type index_d__publicOnCategoryUpdatedType as _publicOnCategoryUpdatedType, index_d_bulkAddItemToCategories as bulkAddItemToCategories, index_d_bulkAddItemsToCategory as bulkAddItemsToCategory, index_d_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, index_d_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, index_d_bulkUpdateCategories as bulkUpdateCategories, index_d_countCategories as countCategories, index_d_createCategory as createCategory, index_d_deleteCategory as deleteCategory, index_d_getArrangedItems as getArrangedItems, index_d_getCategory as getCategory, index_d_listCategoriesForItem as listCategoriesForItem, index_d_listItemsInCategory as listItemsInCategory, index_d_listTrees as listTrees, index_d_moveCategory as moveCategory, index_d_onCategoryCreated as onCategoryCreated, index_d_onCategoryDeleted as onCategoryDeleted, index_d_onCategoryItemAddedToCategory as onCategoryItemAddedToCategory, index_d_onCategoryItemRemovedFromCategory as onCategoryItemRemovedFromCategory, index_d_onCategoryItemsArrangedInCategory as onCategoryItemsArrangedInCategory, index_d_onCategoryMoved as onCategoryMoved, index_d_onCategoryUpdated as onCategoryUpdated, onCategoryCreated$1 as publicOnCategoryCreated, onCategoryDeleted$1 as publicOnCategoryDeleted, onCategoryItemAddedToCategory$1 as publicOnCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory$1 as publicOnCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory$1 as publicOnCategoryItemsArrangedInCategory, onCategoryMoved$1 as publicOnCategoryMoved, onCategoryUpdated$1 as publicOnCategoryUpdated, index_d_queryCategories as queryCategories, index_d_searchCategories as searchCategories, index_d_setArrangedItems as setArrangedItems, index_d_updateCategory as updateCategory, index_d_updateCategoryVisibility as updateCategoryVisibility };
4035
4258
  }
4036
4259
 
4037
4260
  export { index_d as categories };