@wix/auto_sdk_categories_categories 1.0.74 → 1.0.75

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.
@@ -1861,6 +1861,27 @@ interface BorderColors {
1861
1861
  */
1862
1862
  bottom?: string | null;
1863
1863
  }
1864
+ /**
1865
+ * `NullValue` is a singleton enumeration to represent the null value for the
1866
+ * `Value` type union.
1867
+ *
1868
+ * The JSON representation for `NullValue` is JSON `null`.
1869
+ */
1870
+ declare enum NullValue {
1871
+ /** Null value. */
1872
+ NULL_VALUE = "NULL_VALUE"
1873
+ }
1874
+ /** @enumType */
1875
+ type NullValueWithLiterals = NullValue | 'NULL_VALUE';
1876
+ /**
1877
+ * `ListValue` is a wrapper around a repeated field of values.
1878
+ *
1879
+ * The JSON representation for `ListValue` is JSON array.
1880
+ */
1881
+ interface ListValue {
1882
+ /** Repeated field of dynamically typed values. */
1883
+ values?: any[];
1884
+ }
1864
1885
  interface AudioData {
1865
1886
  /** Styling for the audio node's container. */
1866
1887
  containerData?: PluginContainerData;
@@ -1974,6 +1995,143 @@ interface ExtendedFields {
1974
1995
  */
1975
1996
  namespaces?: Record<string, Record<string, any>>;
1976
1997
  }
1998
+ interface InvalidateCache extends InvalidateCacheGetByOneOf {
1999
+ /**
2000
+ * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
2001
+ * @format GUID
2002
+ */
2003
+ metaSiteId?: string;
2004
+ /**
2005
+ * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
2006
+ * @format GUID
2007
+ */
2008
+ siteId?: string;
2009
+ /** Invalidate by App */
2010
+ app?: App;
2011
+ /** Invalidate by page id */
2012
+ page?: Page;
2013
+ /** Invalidate by URI path */
2014
+ uri?: URI;
2015
+ /** Invalidate by file (for media files such as PDFs) */
2016
+ file?: File;
2017
+ /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
2018
+ customTag?: CustomTag;
2019
+ /**
2020
+ * tell us why you're invalidating the cache. You don't need to add your app name
2021
+ * @maxLength 256
2022
+ */
2023
+ reason?: string | null;
2024
+ /** Is local DS */
2025
+ localDc?: boolean;
2026
+ hardPurge?: boolean;
2027
+ }
2028
+ /** @oneof */
2029
+ interface InvalidateCacheGetByOneOf {
2030
+ /**
2031
+ * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
2032
+ * @format GUID
2033
+ */
2034
+ metaSiteId?: string;
2035
+ /**
2036
+ * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
2037
+ * @format GUID
2038
+ */
2039
+ siteId?: string;
2040
+ /** Invalidate by App */
2041
+ app?: App;
2042
+ /** Invalidate by page id */
2043
+ page?: Page;
2044
+ /** Invalidate by URI path */
2045
+ uri?: URI;
2046
+ /** Invalidate by file (for media files such as PDFs) */
2047
+ file?: File;
2048
+ /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
2049
+ customTag?: CustomTag;
2050
+ }
2051
+ interface App {
2052
+ /**
2053
+ * The AppDefId
2054
+ * @minLength 1
2055
+ */
2056
+ appDefId?: string;
2057
+ /**
2058
+ * The instance Id
2059
+ * @format GUID
2060
+ */
2061
+ instanceId?: string;
2062
+ }
2063
+ interface Page {
2064
+ /**
2065
+ * the msid the page is on
2066
+ * @format GUID
2067
+ */
2068
+ metaSiteId?: string;
2069
+ /**
2070
+ * Invalidate by Page ID
2071
+ * @minLength 1
2072
+ */
2073
+ pageId?: string;
2074
+ }
2075
+ interface URI {
2076
+ /**
2077
+ * the msid the URI is on
2078
+ * @format GUID
2079
+ */
2080
+ metaSiteId?: string;
2081
+ /**
2082
+ * URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes
2083
+ * @minLength 1
2084
+ */
2085
+ uriPath?: string;
2086
+ }
2087
+ interface File {
2088
+ /**
2089
+ * the msid the file is related to
2090
+ * @format GUID
2091
+ */
2092
+ metaSiteId?: string;
2093
+ /**
2094
+ * Invalidate by filename (for media files such as PDFs)
2095
+ * @minLength 1
2096
+ * @maxLength 256
2097
+ */
2098
+ fileName?: string;
2099
+ }
2100
+ interface CustomTag {
2101
+ /**
2102
+ * the msid the tag is related to
2103
+ * @format GUID
2104
+ */
2105
+ metaSiteId?: string;
2106
+ /**
2107
+ * Tag to invalidate by
2108
+ * @minLength 1
2109
+ * @maxLength 256
2110
+ */
2111
+ tag?: string;
2112
+ }
2113
+ interface CategoryMoved {
2114
+ /**
2115
+ * Category ID.
2116
+ * @format GUID
2117
+ */
2118
+ categoryId?: string;
2119
+ /** Parent category details. */
2120
+ parentCategory?: ParentCategory;
2121
+ /** Category tree reference details. */
2122
+ treeReference?: TreeReference;
2123
+ }
2124
+ interface ItemAddedToCategory {
2125
+ /**
2126
+ * Category ID.
2127
+ * @format GUID
2128
+ */
2129
+ categoryId?: string;
2130
+ /** Details about the added item. */
2131
+ addedItem?: ItemReference;
2132
+ /** Category tree reference details. */
2133
+ treeReference?: TreeReference;
2134
+ }
1977
2135
  interface ItemReference {
1978
2136
  /**
1979
2137
  * ID of the item within the catalog it belongs to.
@@ -1997,6 +2155,54 @@ interface ItemReference {
1997
2155
  */
1998
2156
  appId?: string;
1999
2157
  }
2158
+ interface ItemsAddedToCategory {
2159
+ /**
2160
+ * Category ID.
2161
+ * @format GUID
2162
+ */
2163
+ categoryId?: string;
2164
+ /**
2165
+ * List of added items.
2166
+ * @maxSize 100
2167
+ */
2168
+ addedItems?: ItemReference[];
2169
+ /** Category tree reference details. */
2170
+ treeReference?: TreeReference;
2171
+ }
2172
+ interface ItemRemovedFromCategory {
2173
+ /**
2174
+ * Category ID.
2175
+ * @format GUID
2176
+ */
2177
+ categoryId?: string;
2178
+ /** Details about the removed item. */
2179
+ removedItem?: ItemReference;
2180
+ /** Category tree reference details. */
2181
+ treeReference?: TreeReference;
2182
+ }
2183
+ interface ItemsRemovedFromCategory {
2184
+ /**
2185
+ * Category ID.
2186
+ * @format GUID
2187
+ */
2188
+ categoryId?: string;
2189
+ /**
2190
+ * List of removed items.
2191
+ * @maxSize 100
2192
+ */
2193
+ removedItems?: ItemReference[];
2194
+ /** Category tree reference details. */
2195
+ treeReference?: TreeReference;
2196
+ }
2197
+ interface ItemsArrangedInCategory {
2198
+ /**
2199
+ * Category ID.
2200
+ * @format GUID
2201
+ */
2202
+ categoryId?: string;
2203
+ /** Category tree reference details. */
2204
+ treeReference?: TreeReference;
2205
+ }
2000
2206
  interface CreateCategoryRequest {
2001
2207
  /** Category to create. */
2002
2208
  category: Category;
@@ -2179,6 +2385,34 @@ interface Cursors {
2179
2385
  */
2180
2386
  prev?: string | null;
2181
2387
  }
2388
+ interface ListCompactCategoriesByIdsRequest {
2389
+ /**
2390
+ * List of category ids.
2391
+ * @format GUID
2392
+ * @minSize 1
2393
+ * @maxSize 1000
2394
+ */
2395
+ categoryIds?: string[];
2396
+ /** A reference to the tree that contains the categories. */
2397
+ treeReference?: TreeReference;
2398
+ }
2399
+ interface ListCompactCategoriesByIdsResponse {
2400
+ /** Categories which satisfy the provided ids. */
2401
+ categories?: CompactCategory[];
2402
+ }
2403
+ interface CompactCategory {
2404
+ /**
2405
+ * Category ID.
2406
+ * @format GUID
2407
+ */
2408
+ id?: string | null;
2409
+ /**
2410
+ * Category name.
2411
+ * @minLength 1
2412
+ * @maxLength 80
2413
+ */
2414
+ name?: string | null;
2415
+ }
2182
2416
  interface SearchCategoriesRequest {
2183
2417
  /**
2184
2418
  * Search criteria including filter, sort, aggregations, and paging options.
@@ -2723,6 +2957,83 @@ interface AggregationResultsResultOneOf {
2723
2957
  /** Nested aggregation results. */
2724
2958
  nested?: NestedResults;
2725
2959
  }
2960
+ interface DeprecatedSearchCategoriesWithOffsetRequest {
2961
+ /** WQL query expression. */
2962
+ search?: OffsetSearch;
2963
+ /** Category tree reference details. */
2964
+ treeReference?: TreeReference;
2965
+ /** Whether to return categories with `visible:false`. Default: false so only visible categories will be in response. */
2966
+ returnNonVisibleCategories?: boolean;
2967
+ /**
2968
+ * Fields to include in the response.
2969
+ * @maxSize 100
2970
+ */
2971
+ fields?: RequestedFieldsWithLiterals[];
2972
+ }
2973
+ interface OffsetSearch extends OffsetSearchPagingMethodOneOf {
2974
+ /** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
2975
+ paging?: Paging;
2976
+ /** A filter object. Learn more about [API query language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language). */
2977
+ filter?: Record<string, any> | null;
2978
+ /**
2979
+ * Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]
2980
+ * @maxSize 10
2981
+ */
2982
+ sort?: Sorting[];
2983
+ /**
2984
+ * Aggregations | Faceted search: refers to a way to explore large amounts of data by displaying summaries about various partitions of the data and later allowing to narrow the navigation to a specific partition.
2985
+ * @maxSize 10
2986
+ */
2987
+ aggregations?: Aggregation[];
2988
+ /** Free text to match in searchable fields */
2989
+ search?: SearchDetails;
2990
+ /**
2991
+ * UTC offset or IANA time zone. Valid values are
2992
+ * ISO 8601 UTC offsets, such as +02:00 or -06:00,
2993
+ * and IANA time zone IDs, such as Europe/Rome
2994
+ *
2995
+ * Affects all filters and aggregations returned values.
2996
+ * You may override this behavior in a specific filter by providing
2997
+ * timestamps including time zone. e.g. `"2023-12-20T10:52:34.795Z"`
2998
+ * @maxLength 50
2999
+ */
3000
+ timeZone?: string | null;
3001
+ }
3002
+ /** @oneof */
3003
+ interface OffsetSearchPagingMethodOneOf {
3004
+ /** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
3005
+ paging?: Paging;
3006
+ }
3007
+ interface Paging {
3008
+ /**
3009
+ * Number of items to load.
3010
+ * @max 1000
3011
+ */
3012
+ limit?: number | null;
3013
+ /** Number of items to skip in the current sort order. */
3014
+ offset?: number | null;
3015
+ }
3016
+ interface DeprecatedSearchCategoriesWithOffsetResponse {
3017
+ /**
3018
+ * Categories which satisfy the provided query.
3019
+ * @maxSize 1000
3020
+ */
3021
+ categories?: Category[];
3022
+ /** Paging metadata. */
3023
+ pagingMetadata?: PagingMetadata;
3024
+ /** Aggregation data. */
3025
+ aggregationData?: AggregationData;
3026
+ }
3027
+ interface PagingMetadata {
3028
+ /** Number of items returned in the response. */
3029
+ count?: number | null;
3030
+ /** Offset that was requested. */
3031
+ offset?: number | null;
3032
+ /** Total number of items that match the query. */
3033
+ total?: number | null;
3034
+ /** Flag that indicates the server failed to calculate the `total` field. */
3035
+ tooManyToCount?: boolean | null;
3036
+ }
2726
3037
  interface CountCategoriesRequest {
2727
3038
  /**
2728
3039
  * Filter object.
@@ -2931,6 +3242,29 @@ interface BulkShowCategoriesResponse {
2931
3242
  /** Bulk action metadata. */
2932
3243
  bulkActionMetadata?: BulkActionMetadata;
2933
3244
  }
3245
+ interface BulkDeleteCategoriesRequest {
3246
+ /**
3247
+ * IDs of categories to be deleted.
3248
+ * @format GUID
3249
+ * @minSize 1
3250
+ * @maxSize 100
3251
+ */
3252
+ categoryIds?: string[];
3253
+ }
3254
+ interface BulkDeleteCategoriesResponse {
3255
+ /**
3256
+ * Categories deleted by bulk action.
3257
+ * @minSize 1
3258
+ * @maxSize 100
3259
+ */
3260
+ results?: BulkDeleteCategoriesResponseBulkCategoriesResult[];
3261
+ /** Bulk action metadata. */
3262
+ bulkActionMetadata?: BulkActionMetadata;
3263
+ }
3264
+ interface BulkDeleteCategoriesResponseBulkCategoriesResult {
3265
+ /** Information about successful action or error for failure. */
3266
+ itemMetadata?: ItemMetadata;
3267
+ }
2934
3268
  interface BulkAddItemsToCategoryRequest {
2935
3269
  /**
2936
3270
  * Category ID.
@@ -3164,6 +3498,43 @@ interface ListTreesResponse {
3164
3498
  */
3165
3499
  trees?: TreeReference[];
3166
3500
  }
3501
+ interface MoveItemInCategoryRequest {
3502
+ /**
3503
+ * Category ID.
3504
+ * @format GUID
3505
+ */
3506
+ categoryId?: string;
3507
+ /** Category tree reference details. */
3508
+ treeReference?: TreeReference;
3509
+ /** Item to move. */
3510
+ item?: ItemReference;
3511
+ /**
3512
+ * Where to move item.
3513
+ * `FIRST` - make `item` first item with manual arrangement. If before this operation category already has 100 manually arranged items, the 100th item will be removed from list of items with manual arrangement.
3514
+ * `LAST` - make `item` last item with manual arrangement. If before this operation category already has 100 manually arranged items, moving item will be not last but 100th.
3515
+ * `BEFORE` - requires `before_item`, `item` will be moved before it. If `before_item` was 100th item in category it will be removed from list of items with manual arrangement.
3516
+ * `NONE` - don't use manual arrangement for `item`, it will be shown after all items with manual arrangement according to default sorting.
3517
+ */
3518
+ position?: MoveItemInCategoryRequestPositionWithLiterals;
3519
+ /** Required when `position` is `BEFORE`. `before_item` must be manually arranged item. */
3520
+ beforeItem?: ItemReference;
3521
+ }
3522
+ declare enum MoveItemInCategoryRequestPosition {
3523
+ UNKNOWN_POSITION = "UNKNOWN_POSITION",
3524
+ FIRST = "FIRST",
3525
+ LAST = "LAST",
3526
+ BEFORE = "BEFORE",
3527
+ NONE = "NONE"
3528
+ }
3529
+ /** @enumType */
3530
+ type MoveItemInCategoryRequestPositionWithLiterals = MoveItemInCategoryRequestPosition | 'UNKNOWN_POSITION' | 'FIRST' | 'LAST' | 'BEFORE' | 'NONE';
3531
+ interface MoveItemInCategoryResponse {
3532
+ /**
3533
+ * Information about manually arranged items after move.
3534
+ * @maxSize 100
3535
+ */
3536
+ itemsAfterMove?: ItemReference[];
3537
+ }
3167
3538
  interface SetArrangedItemsRequest {
3168
3539
  /**
3169
3540
  * Category ID.
@@ -3221,6 +3592,278 @@ interface BulkSetItemCategoriesResponse {
3221
3592
  /** Bulk action metadata */
3222
3593
  bulkActionMetadata?: BulkActionMetadata;
3223
3594
  }
3595
+ interface GetCategoriesTreeRequest {
3596
+ /** Category tree reference details. */
3597
+ treeReference?: TreeReference;
3598
+ }
3599
+ interface GetCategoriesTreeResponse {
3600
+ /** Categories tree. */
3601
+ categoriesTree?: CategoryTreeNode[];
3602
+ }
3603
+ /** Represents a node in the view of categories tree */
3604
+ interface CategoryTreeNode {
3605
+ /** Category ID. */
3606
+ id?: Uint8Array;
3607
+ /**
3608
+ * List of subcategories.
3609
+ * @maxSize 1000
3610
+ */
3611
+ subcategories?: CategoryTreeNode[];
3612
+ }
3613
+ interface DomainEvent extends DomainEventBodyOneOf {
3614
+ createdEvent?: EntityCreatedEvent;
3615
+ updatedEvent?: EntityUpdatedEvent;
3616
+ deletedEvent?: EntityDeletedEvent;
3617
+ actionEvent?: ActionEvent;
3618
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
3619
+ id?: string;
3620
+ /**
3621
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
3622
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
3623
+ */
3624
+ entityFqdn?: string;
3625
+ /**
3626
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
3627
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
3628
+ */
3629
+ slug?: string;
3630
+ /** ID of the entity associated with the event. */
3631
+ entityId?: string;
3632
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
3633
+ eventTime?: Date | null;
3634
+ /**
3635
+ * Whether the event was triggered as a result of a privacy regulation application
3636
+ * (for example, GDPR).
3637
+ */
3638
+ triggeredByAnonymizeRequest?: boolean | null;
3639
+ /** If present, indicates the action that triggered the event. */
3640
+ originatedFrom?: string | null;
3641
+ /**
3642
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
3643
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
3644
+ */
3645
+ entityEventSequence?: string | null;
3646
+ }
3647
+ /** @oneof */
3648
+ interface DomainEventBodyOneOf {
3649
+ createdEvent?: EntityCreatedEvent;
3650
+ updatedEvent?: EntityUpdatedEvent;
3651
+ deletedEvent?: EntityDeletedEvent;
3652
+ actionEvent?: ActionEvent;
3653
+ }
3654
+ interface EntityCreatedEvent {
3655
+ entityAsJson?: string;
3656
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
3657
+ restoreInfo?: RestoreInfo;
3658
+ }
3659
+ interface RestoreInfo {
3660
+ deletedDate?: Date | null;
3661
+ }
3662
+ interface EntityUpdatedEvent {
3663
+ /**
3664
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
3665
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
3666
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
3667
+ */
3668
+ currentEntityAsJson?: string;
3669
+ }
3670
+ interface EntityDeletedEvent {
3671
+ /** Entity that was deleted. */
3672
+ deletedEntityAsJson?: string | null;
3673
+ }
3674
+ interface ActionEvent {
3675
+ bodyAsJson?: string;
3676
+ }
3677
+ interface Empty {
3678
+ }
3679
+ interface MessageEnvelope {
3680
+ /**
3681
+ * App instance ID.
3682
+ * @format GUID
3683
+ */
3684
+ instanceId?: string | null;
3685
+ /**
3686
+ * Event type.
3687
+ * @maxLength 150
3688
+ */
3689
+ eventType?: string;
3690
+ /** The identification type and identity data. */
3691
+ identity?: IdentificationData;
3692
+ /** Stringify payload. */
3693
+ data?: string;
3694
+ }
3695
+ interface IdentificationData extends IdentificationDataIdOneOf {
3696
+ /**
3697
+ * ID of a site visitor that has not logged in to the site.
3698
+ * @format GUID
3699
+ */
3700
+ anonymousVisitorId?: string;
3701
+ /**
3702
+ * ID of a site visitor that has logged in to the site.
3703
+ * @format GUID
3704
+ */
3705
+ memberId?: string;
3706
+ /**
3707
+ * ID of a Wix user (site owner, contributor, etc.).
3708
+ * @format GUID
3709
+ */
3710
+ wixUserId?: string;
3711
+ /**
3712
+ * ID of an app.
3713
+ * @format GUID
3714
+ */
3715
+ appId?: string;
3716
+ /** @readonly */
3717
+ identityType?: WebhookIdentityTypeWithLiterals;
3718
+ }
3719
+ /** @oneof */
3720
+ interface IdentificationDataIdOneOf {
3721
+ /**
3722
+ * ID of a site visitor that has not logged in to the site.
3723
+ * @format GUID
3724
+ */
3725
+ anonymousVisitorId?: string;
3726
+ /**
3727
+ * ID of a site visitor that has logged in to the site.
3728
+ * @format GUID
3729
+ */
3730
+ memberId?: string;
3731
+ /**
3732
+ * ID of a Wix user (site owner, contributor, etc.).
3733
+ * @format GUID
3734
+ */
3735
+ wixUserId?: string;
3736
+ /**
3737
+ * ID of an app.
3738
+ * @format GUID
3739
+ */
3740
+ appId?: string;
3741
+ }
3742
+ declare enum WebhookIdentityType {
3743
+ UNKNOWN = "UNKNOWN",
3744
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
3745
+ MEMBER = "MEMBER",
3746
+ WIX_USER = "WIX_USER",
3747
+ APP = "APP"
3748
+ }
3749
+ /** @enumType */
3750
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3751
+ /** @docsIgnore */
3752
+ type CreateCategoryApplicationErrors = {
3753
+ code?: 'NAMESPACE_NOT_FOUND_IN_DEV_CENTER';
3754
+ description?: string;
3755
+ data?: Record<string, any>;
3756
+ } | {
3757
+ code?: 'DUPLICATE_SLUG';
3758
+ description?: string;
3759
+ data?: Record<string, any>;
3760
+ } | {
3761
+ code?: 'CATEGORIES_LIMIT_PER_TREE_EXCEEDED';
3762
+ description?: string;
3763
+ data?: Record<string, any>;
3764
+ } | {
3765
+ code?: 'PARENT_CATEGORY_NOT_IN_TREE';
3766
+ description?: string;
3767
+ data?: Record<string, any>;
3768
+ } | {
3769
+ code?: 'TREES_LIMIT_EXCEEDED';
3770
+ description?: string;
3771
+ data?: Record<string, any>;
3772
+ } | {
3773
+ code?: 'CATEGORY_DEPTH_LIMIT_EXCEEDED';
3774
+ description?: string;
3775
+ data?: Record<string, any>;
3776
+ } | {
3777
+ code?: 'PARENT_CATEGORY_HIDDEN';
3778
+ description?: string;
3779
+ data?: Record<string, any>;
3780
+ };
3781
+ /** @docsIgnore */
3782
+ type UpdateCategoryApplicationErrors = {
3783
+ code?: 'DUPLICATE_SLUG';
3784
+ description?: string;
3785
+ data?: Record<string, any>;
3786
+ } | {
3787
+ code?: 'REMOVED_SLUG';
3788
+ description?: string;
3789
+ data?: Record<string, any>;
3790
+ };
3791
+ /** @docsIgnore */
3792
+ type DeleteCategoryApplicationErrors = {
3793
+ code?: 'MANAGED_CATEGORY_OPERATION_NOT_ALLOWED';
3794
+ description?: string;
3795
+ data?: Record<string, any>;
3796
+ };
3797
+ /** @docsIgnore */
3798
+ type MoveCategoryApplicationErrors = {
3799
+ code?: 'PARENT_CATEGORY_NOT_IN_TREE';
3800
+ description?: string;
3801
+ data?: Record<string, any>;
3802
+ } | {
3803
+ code?: 'CATEGORY_DEPTH_LIMIT_EXCEEDED';
3804
+ description?: string;
3805
+ data?: Record<string, any>;
3806
+ } | {
3807
+ code?: 'TREE_CYCLE_DETECTED';
3808
+ description?: string;
3809
+ data?: Record<string, any>;
3810
+ } | {
3811
+ code?: 'MISSING_AFTER_CATEGORY';
3812
+ description?: string;
3813
+ data?: Record<string, any>;
3814
+ } | {
3815
+ code?: 'AFTER_CATEGORY_NOT_IN_PARENT';
3816
+ description?: string;
3817
+ data?: Record<string, any>;
3818
+ };
3819
+ /** @docsIgnore */
3820
+ type BulkUpdateCategoriesApplicationErrors = {
3821
+ code?: 'UPDATE_OF_FIELD_NOT_ALLOWED';
3822
+ description?: string;
3823
+ data?: Record<string, any>;
3824
+ };
3825
+ /** @docsIgnore */
3826
+ type UpdateCategoryVisibilityApplicationErrors = {
3827
+ code?: 'PARENT_CATEGORY_HIDDEN';
3828
+ description?: string;
3829
+ data?: Record<string, any>;
3830
+ };
3831
+ /** @docsIgnore */
3832
+ type BulkAddItemsToCategoryApplicationErrors = {
3833
+ code?: 'MANAGED_CATEGORY_OPERATION_NOT_ALLOWED';
3834
+ description?: string;
3835
+ data?: Record<string, any>;
3836
+ };
3837
+ /** @docsIgnore */
3838
+ type BulkAddItemToCategoriesApplicationErrors = {
3839
+ code?: 'MANAGED_CATEGORY_OPERATION_NOT_ALLOWED';
3840
+ description?: string;
3841
+ data?: Record<string, any>;
3842
+ };
3843
+ /** @docsIgnore */
3844
+ type BulkRemoveItemsFromCategoryApplicationErrors = {
3845
+ code?: 'MANAGED_CATEGORY_OPERATION_NOT_ALLOWED';
3846
+ description?: string;
3847
+ data?: Record<string, any>;
3848
+ };
3849
+ /** @docsIgnore */
3850
+ type BulkRemoveItemFromCategoriesApplicationErrors = {
3851
+ code?: 'MANAGED_CATEGORY_OPERATION_NOT_ALLOWED';
3852
+ description?: string;
3853
+ data?: Record<string, any>;
3854
+ };
3855
+ /** @docsIgnore */
3856
+ type SetArrangedItemsApplicationErrors = {
3857
+ code?: 'ITEM_NOT_IN_CATEGORY';
3858
+ description?: string;
3859
+ data?: Record<string, any>;
3860
+ };
3861
+ /** @docsIgnore */
3862
+ type BulkSetItemCategoriesApplicationErrors = {
3863
+ code?: 'MANAGED_CATEGORY_OPERATION_NOT_ALLOWED';
3864
+ description?: string;
3865
+ data?: Record<string, any>;
3866
+ };
3224
3867
 
3225
3868
  type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
3226
3869
  getUrl: (context: any) => string;
@@ -3273,4 +3916,4 @@ declare function getArrangedItems(): __PublicMethodMetaInfo<'GET', {
3273
3916
  }, GetArrangedItemsRequest$1, GetArrangedItemsRequest, GetArrangedItemsResponse$1, GetArrangedItemsResponse>;
3274
3917
  declare function bulkSetItemCategories(): __PublicMethodMetaInfo<'POST', {}, BulkSetItemCategoriesRequest$1, BulkSetItemCategoriesRequest, BulkSetItemCategoriesResponse$1, BulkSetItemCategoriesResponse>;
3275
3918
 
3276
- export { type __PublicMethodMetaInfo, bulkAddItemToCategories, bulkAddItemsToCategory, bulkRemoveItemFromCategories, bulkRemoveItemsFromCategory, bulkSetItemCategories, bulkShowCategories, bulkUpdateCategories, countCategories, createCategory, deleteCategory, getArrangedItems, getCategory, listCategoriesForItem, listCategoriesForItems, listItemsInCategory, listTrees, moveCategory, queryCategories, searchCategories, setArrangedItems, updateCategory, updateCategoryVisibility };
3919
+ export { type ActionEvent as ActionEventOriginal, type AggregationData as AggregationDataOriginal, type AggregationKindOneOf as AggregationKindOneOfOriginal, type Aggregation as AggregationOriginal, type AggregationResults as AggregationResultsOriginal, type AggregationResultsResultOneOf as AggregationResultsResultOneOfOriginal, type AggregationResultsScalarResult as AggregationResultsScalarResultOriginal, AggregationType as AggregationTypeOriginal, type AggregationTypeWithLiterals as AggregationTypeWithLiteralsOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, type App as AppOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type Breadcrumb as BreadcrumbOriginal, type BreadcrumbsInfo as BreadcrumbsInfoOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkAddItemToCategoriesApplicationErrors as BulkAddItemToCategoriesApplicationErrorsOriginal, type BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequestOriginal, type BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponseOriginal, type BulkAddItemsToCategoryApplicationErrors as BulkAddItemsToCategoryApplicationErrorsOriginal, type BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequestOriginal, type BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponseOriginal, type BulkCategoriesResult as BulkCategoriesResultOriginal, type BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequestOriginal, type BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResultOriginal, type BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponseOriginal, type BulkItemToCategoriesResult as BulkItemToCategoriesResultOriginal, type BulkItemsToCategoryResult as BulkItemsToCategoryResultOriginal, type BulkRemoveItemFromCategoriesApplicationErrors as BulkRemoveItemFromCategoriesApplicationErrorsOriginal, type BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequestOriginal, type BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponseOriginal, type BulkRemoveItemsFromCategoryApplicationErrors as BulkRemoveItemsFromCategoryApplicationErrorsOriginal, type BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequestOriginal, type BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponseOriginal, type BulkSetItemCategoriesApplicationErrors as BulkSetItemCategoriesApplicationErrorsOriginal, type BulkSetItemCategoriesRequest as BulkSetItemCategoriesRequestOriginal, type BulkSetItemCategoriesResponse as BulkSetItemCategoriesResponseOriginal, type BulkShowCategoriesRequest as BulkShowCategoriesRequestOriginal, type BulkShowCategoriesResponse as BulkShowCategoriesResponseOriginal, type BulkUpdateCategoriesApplicationErrors as BulkUpdateCategoriesApplicationErrorsOriginal, type BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequestOriginal, type BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CategoryMoved as CategoryMovedOriginal, type Category as CategoryOriginal, type CategoryTreeNode as CategoryTreeNodeOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CompactCategory as CompactCategoryOriginal, type CountCategoriesRequest as CountCategoriesRequestOriginal, type CountCategoriesResponse as CountCategoriesResponseOriginal, type CreateCategoryApplicationErrors as CreateCategoryApplicationErrorsOriginal, type CreateCategoryRequest as CreateCategoryRequestOriginal, type CreateCategoryResponse as CreateCategoryResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type CursorSearch as CursorSearchOriginal, type CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomTag as CustomTagOriginal, type DateHistogramAggregation as DateHistogramAggregationOriginal, type DateHistogramResult as DateHistogramResultOriginal, type DateHistogramResults as DateHistogramResultsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteCategoryApplicationErrors as DeleteCategoryApplicationErrorsOriginal, type DeleteCategoryRequest as DeleteCategoryRequestOriginal, type DeleteCategoryResponse as DeleteCategoryResponseOriginal, type DeprecatedSearchCategoriesWithOffsetRequest as DeprecatedSearchCategoriesWithOffsetRequestOriginal, type DeprecatedSearchCategoriesWithOffsetResponse as DeprecatedSearchCategoriesWithOffsetResponseOriginal, type Design as DesignOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type ExtendedFields as ExtendedFieldsOriginal, type FileData as FileDataOriginal, type File as FileOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetArrangedItemsRequest as GetArrangedItemsRequestOriginal, type GetArrangedItemsResponse as GetArrangedItemsResponseOriginal, type GetCategoriesTreeRequest as GetCategoriesTreeRequestOriginal, type GetCategoriesTreeResponse as GetCategoriesTreeResponseOriginal, type GetCategoryRequest as GetCategoryRequestOriginal, type GetCategoryResponse as GetCategoryResponseOriginal, type Gradient as GradientOriginal, type GroupByValueResults as GroupByValueResultsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, type ImageStyles as ImageStylesOriginal, ImageStylesPosition as ImageStylesPositionOriginal, type ImageStylesPositionWithLiterals as ImageStylesPositionWithLiteralsOriginal, type IncludeMissingValuesOptions as IncludeMissingValuesOptionsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, Interval as IntervalOriginal, type IntervalWithLiterals as IntervalWithLiteralsOriginal, type InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal, type InvalidateCache as InvalidateCacheOriginal, type ItemAddedToCategory as ItemAddedToCategoryOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemReferenceMetadata as ItemReferenceMetadataOriginal, type ItemReference as ItemReferenceOriginal, type ItemRemovedFromCategory as ItemRemovedFromCategoryOriginal, type ItemStyle as ItemStyleOriginal, type ItemsAddedToCategory as ItemsAddedToCategoryOriginal, type ItemsArrangedInCategory as ItemsArrangedInCategoryOriginal, type ItemsRemovedFromCategory as ItemsRemovedFromCategoryOriginal, type Keyword as KeywordOriginal, type LayoutCellData as LayoutCellDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListCategoriesForItemRequest as ListCategoriesForItemRequestOriginal, type ListCategoriesForItemResponse as ListCategoriesForItemResponseOriginal, type ListCategoriesForItemsRequest as ListCategoriesForItemsRequestOriginal, type ListCategoriesForItemsResponse as ListCategoriesForItemsResponseOriginal, type ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequestOriginal, type ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponseOriginal, type ListItemsInCategoryRequest as ListItemsInCategoryRequestOriginal, type ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOfOriginal, type ListItemsInCategoryResponse as ListItemsInCategoryResponseOriginal, type ListTreesRequest as ListTreesRequestOriginal, type ListTreesResponse as ListTreesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapItemToCategories as MapItemToCategoriesOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MaskedCategory as MaskedCategoryOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, MissingValues as MissingValuesOriginal, type MissingValuesWithLiterals as MissingValuesWithLiteralsOriginal, Mode as ModeOriginal, type ModeWithLiterals as ModeWithLiteralsOriginal, type MoveCategoryApplicationErrors as MoveCategoryApplicationErrorsOriginal, type MoveCategoryRequest as MoveCategoryRequestOriginal, type MoveCategoryResponse as MoveCategoryResponseOriginal, type MoveItemInCategoryRequest as MoveItemInCategoryRequestOriginal, MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPositionOriginal, type MoveItemInCategoryRequestPositionWithLiterals as MoveItemInCategoryRequestPositionWithLiteralsOriginal, type MoveItemInCategoryResponse as MoveItemInCategoryResponseOriginal, type NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOfOriginal, type NestedAggregationItem as NestedAggregationItemOriginal, type NestedAggregation as NestedAggregationOriginal, type NestedAggregationResults as NestedAggregationResultsOriginal, type NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOfOriginal, NestedAggregationType as NestedAggregationTypeOriginal, type NestedAggregationTypeWithLiterals as NestedAggregationTypeWithLiteralsOriginal, type NestedResultValue as NestedResultValueOriginal, type NestedResultValueResultOneOf as NestedResultValueResultOneOfOriginal, type NestedResults as NestedResultsOriginal, type NestedValueAggregationResult as NestedValueAggregationResultOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OffsetSearch as OffsetSearchOriginal, type OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOfOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type Page as PageOriginal, type PagingMetadata as PagingMetadataOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type ParentCategory as ParentCategoryOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type QueryCategoriesRequest as QueryCategoriesRequestOriginal, type QueryCategoriesResponse as QueryCategoriesResponseOriginal, type RangeAggregation as RangeAggregationOriginal, type RangeAggregationResult as RangeAggregationResultOriginal, type RangeBucket as RangeBucketOriginal, type RangeResult as RangeResultOriginal, type RangeResults as RangeResultsOriginal, type Rel as RelOriginal, RequestedFields as RequestedFieldsOriginal, type RequestedFieldsWithLiterals as RequestedFieldsWithLiteralsOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type Results as ResultsOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type ScalarAggregation as ScalarAggregationOriginal, type ScalarResult as ScalarResultOriginal, ScalarType as ScalarTypeOriginal, type ScalarTypeWithLiterals as ScalarTypeWithLiteralsOriginal, type SearchCategoriesRequest as SearchCategoriesRequestOriginal, type SearchCategoriesResponse as SearchCategoriesResponseOriginal, type SearchDetails as SearchDetailsOriginal, type SeoSchema as SeoSchemaOriginal, type SetArrangedItemsApplicationErrors as SetArrangedItemsApplicationErrorsOriginal, type SetArrangedItemsRequest as SetArrangedItemsRequestOriginal, type SetArrangedItemsResponse as SetArrangedItemsResponseOriginal, type Settings as SettingsOriginal, SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFieldsOriginal, type SingleEntityOpsRequestedFieldsWithLiterals as SingleEntityOpsRequestedFieldsWithLiteralsOriginal, SortDirection as SortDirectionOriginal, type SortDirectionWithLiterals as SortDirectionWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, SortType as SortTypeOriginal, type SortTypeWithLiterals as SortTypeWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TreeReference as TreeReferenceOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type URI as URIOriginal, type UpdateCategoryApplicationErrors as UpdateCategoryApplicationErrorsOriginal, type UpdateCategoryRequest as UpdateCategoryRequestOriginal, type UpdateCategoryResponse as UpdateCategoryResponseOriginal, type UpdateCategoryVisibilityApplicationErrors as UpdateCategoryVisibilityApplicationErrorsOriginal, type UpdateCategoryVisibilityRequest as UpdateCategoryVisibilityRequestOriginal, type UpdateCategoryVisibilityResponse as UpdateCategoryVisibilityResponseOriginal, type ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOfOriginal, type ValueAggregation as ValueAggregationOriginal, type ValueAggregationResult as ValueAggregationResultOriginal, type ValueResult as ValueResultOriginal, type ValueResults as ValueResultsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkAddItemToCategories, bulkAddItemsToCategory, bulkRemoveItemFromCategories, bulkRemoveItemsFromCategory, bulkSetItemCategories, bulkShowCategories, bulkUpdateCategories, countCategories, createCategory, deleteCategory, getArrangedItems, getCategory, listCategoriesForItem, listCategoriesForItems, listItemsInCategory, listTrees, moveCategory, queryCategories, searchCategories, setArrangedItems, updateCategory, updateCategoryVisibility };