@wix/categories 1.0.38 → 1.0.39
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.
- package/package.json +4 -4
- package/type-bundles/context.bundle.d.ts +36 -283
- package/type-bundles/index.bundle.d.ts +36 -283
- package/type-bundles/meta.bundle.d.ts +18 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/categories",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.39",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/categories_categories": "1.0.
|
|
21
|
+
"@wix/categories_categories": "1.0.16"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"glob": "^10.4.1",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles",
|
|
31
|
-
"build:dts-bundles": "test -f config/rollup-config.js && rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
|
|
31
|
+
"build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
|
|
32
32
|
"test": ":"
|
|
33
33
|
},
|
|
34
34
|
"wix": {
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"fqdn": ""
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
-
"falconPackageHash": "
|
|
45
|
+
"falconPackageHash": "60bc5552102065372744495bac2f692cf219e8a392ef6d8683b29bc6"
|
|
46
46
|
}
|
|
@@ -1463,9 +1463,9 @@ interface CreateCategoryRequest {
|
|
|
1463
1463
|
/** A reference to the tree that contains this category. */
|
|
1464
1464
|
treeReference: TreeReference;
|
|
1465
1465
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1466
|
-
fields?:
|
|
1466
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
1467
1467
|
}
|
|
1468
|
-
declare enum
|
|
1468
|
+
declare enum SingleEntityOpsRequestedFields {
|
|
1469
1469
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
1470
1470
|
BREADCRUMBS = "BREADCRUMBS"
|
|
1471
1471
|
}
|
|
@@ -1479,7 +1479,7 @@ interface GetCategoryRequest {
|
|
|
1479
1479
|
/** A reference to the tree that contains this category. */
|
|
1480
1480
|
treeReference: TreeReference;
|
|
1481
1481
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1482
|
-
fields?:
|
|
1482
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
1483
1483
|
}
|
|
1484
1484
|
interface GetCategoryResponse {
|
|
1485
1485
|
/** The retrieved Category. */
|
|
@@ -1491,7 +1491,7 @@ interface UpdateCategoryRequest {
|
|
|
1491
1491
|
/** A reference to the tree that contains this category. */
|
|
1492
1492
|
treeReference: TreeReference;
|
|
1493
1493
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1494
|
-
fields?:
|
|
1494
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
1495
1495
|
}
|
|
1496
1496
|
interface UpdateCategoryResponse {
|
|
1497
1497
|
/** The updated Category. */
|
|
@@ -1571,6 +1571,10 @@ interface CursorPaging {
|
|
|
1571
1571
|
*/
|
|
1572
1572
|
cursor?: string | null;
|
|
1573
1573
|
}
|
|
1574
|
+
declare enum RequestedFields {
|
|
1575
|
+
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
1576
|
+
BREADCRUMBS = "BREADCRUMBS"
|
|
1577
|
+
}
|
|
1574
1578
|
interface QueryCategoriesResponse {
|
|
1575
1579
|
/** Categories which satisfy the provided query. */
|
|
1576
1580
|
categories?: Category[];
|
|
@@ -2034,7 +2038,7 @@ interface AggregationResultsResultOneOf {
|
|
|
2034
2038
|
}
|
|
2035
2039
|
interface DeprecatedSearchCategoriesWithOffsetRequest {
|
|
2036
2040
|
/** WQL query expression. */
|
|
2037
|
-
search?:
|
|
2041
|
+
search?: OffsetSearch;
|
|
2038
2042
|
/** A reference to the tree that contains this category. */
|
|
2039
2043
|
treeReference?: TreeReference;
|
|
2040
2044
|
/** Whether to return categories with `visible:false`. Default: false so only visible categories will be in response. */
|
|
@@ -2042,248 +2046,32 @@ interface DeprecatedSearchCategoriesWithOffsetRequest {
|
|
|
2042
2046
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
2043
2047
|
fields?: RequestedFields[];
|
|
2044
2048
|
}
|
|
2045
|
-
interface
|
|
2049
|
+
interface OffsetSearch extends OffsetSearchPagingMethodOneOf {
|
|
2046
2050
|
/** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
|
|
2047
|
-
paging?:
|
|
2051
|
+
paging?: Paging;
|
|
2048
2052
|
/** A filter object. See documentation [here](https://bo.wix.com/wix-docs/rnd/platformization-guidelines/api-query-language#platformization-guidelines_api-query-language_defining-in-protobuf) */
|
|
2049
2053
|
filter?: Record<string, any> | null;
|
|
2050
2054
|
/** Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}] */
|
|
2051
|
-
sort?:
|
|
2055
|
+
sort?: Sorting[];
|
|
2052
2056
|
/** 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. */
|
|
2053
|
-
aggregations?:
|
|
2054
|
-
/**
|
|
2055
|
-
search?:
|
|
2056
|
-
}
|
|
2057
|
-
/** @oneof */
|
|
2058
|
-
interface PlatformOffsetSearchPagingMethodOneOf {
|
|
2059
|
-
/** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
|
|
2060
|
-
paging?: PlatformPaging;
|
|
2061
|
-
}
|
|
2062
|
-
interface CommonSorting {
|
|
2063
|
-
/** Name of the field to sort by. */
|
|
2064
|
-
fieldName?: string;
|
|
2065
|
-
/** Sort order. */
|
|
2066
|
-
order?: CommonSortOrder;
|
|
2067
|
-
}
|
|
2068
|
-
declare enum CommonSortOrder {
|
|
2069
|
-
ASC = "ASC",
|
|
2070
|
-
DESC = "DESC"
|
|
2071
|
-
}
|
|
2072
|
-
interface CommonAggregation extends CommonAggregationKindOneOf {
|
|
2073
|
-
/** Value aggregation */
|
|
2074
|
-
value?: AggregationValueAggregation;
|
|
2075
|
-
/** Range aggregation */
|
|
2076
|
-
range?: AggregationRangeAggregation;
|
|
2077
|
-
/** Scalar aggregation */
|
|
2078
|
-
scalar?: AggregationScalarAggregation;
|
|
2079
|
-
/** Date histogram aggregation */
|
|
2080
|
-
dateHistogram?: AggregationDateHistogramAggregation;
|
|
2081
|
-
/** Nested aggregation */
|
|
2082
|
-
nested?: AggregationNestedAggregation;
|
|
2083
|
-
/** User-defined name of aggregation, should be unique, will appear in aggregation results */
|
|
2084
|
-
name?: string | null;
|
|
2085
|
-
/** Type of aggregation, client must provide matching aggregation field below */
|
|
2086
|
-
type?: CommonAggregationType;
|
|
2087
|
-
/** Field to aggregate by, use dot notation to specify json path */
|
|
2088
|
-
fieldPath?: string;
|
|
2057
|
+
aggregations?: Aggregation[];
|
|
2058
|
+
/** Free text to match in searchable fields */
|
|
2059
|
+
search?: SearchDetails;
|
|
2089
2060
|
/**
|
|
2090
|
-
*
|
|
2091
|
-
*
|
|
2092
|
-
*
|
|
2093
|
-
*
|
|
2061
|
+
* UTC offset or IANA time zone. Valid values are
|
|
2062
|
+
* ISO 8601 UTC offsets, such as +02:00 or -06:00,
|
|
2063
|
+
* and IANA time zone IDs, such as Europe/Rome
|
|
2064
|
+
*
|
|
2065
|
+
* Affects all filters and aggregations returned values.
|
|
2066
|
+
* You may override this behavior in a specific filter by providing
|
|
2067
|
+
* timestamps including time zone. e.g. `"2023-12-20T10:52:34.795Z"`
|
|
2094
2068
|
*/
|
|
2095
|
-
|
|
2096
|
-
}
|
|
2097
|
-
/** @oneof */
|
|
2098
|
-
interface CommonAggregationKindOneOf {
|
|
2099
|
-
/** Value aggregation */
|
|
2100
|
-
value?: AggregationValueAggregation;
|
|
2101
|
-
/** Range aggregation */
|
|
2102
|
-
range?: AggregationRangeAggregation;
|
|
2103
|
-
/** Scalar aggregation */
|
|
2104
|
-
scalar?: AggregationScalarAggregation;
|
|
2105
|
-
/** Date histogram aggregation */
|
|
2106
|
-
dateHistogram?: AggregationDateHistogramAggregation;
|
|
2107
|
-
/** Nested aggregation */
|
|
2108
|
-
nested?: AggregationNestedAggregation;
|
|
2109
|
-
}
|
|
2110
|
-
interface RangeAggregationRangeBucket {
|
|
2111
|
-
/** Inclusive lower bound of the range. Required if to is not given */
|
|
2112
|
-
from?: number | null;
|
|
2113
|
-
/** Exclusive upper bound of the range. Required if from is not given */
|
|
2114
|
-
to?: number | null;
|
|
2115
|
-
}
|
|
2116
|
-
declare enum ValueAggregationSortType {
|
|
2117
|
-
/** Should sort by number of matches */
|
|
2118
|
-
COUNT = "COUNT",
|
|
2119
|
-
/** Should sort by value of the field alphabetically */
|
|
2120
|
-
VALUE = "VALUE"
|
|
2121
|
-
}
|
|
2122
|
-
declare enum ValueAggregationSortDirection {
|
|
2123
|
-
/** Should sort in descending order */
|
|
2124
|
-
DESC = "DESC",
|
|
2125
|
-
/** Should sort in ascending order */
|
|
2126
|
-
ASC = "ASC"
|
|
2127
|
-
}
|
|
2128
|
-
declare enum ValueAggregationMissingValues {
|
|
2129
|
-
/** Should missing values be excluded from the aggregation results */
|
|
2130
|
-
EXCLUDE = "EXCLUDE",
|
|
2131
|
-
/** Should missing values be included in the aggregation results */
|
|
2132
|
-
INCLUDE = "INCLUDE"
|
|
2133
|
-
}
|
|
2134
|
-
interface ValueAggregationIncludeMissingValuesOptions {
|
|
2135
|
-
/** Can specify custom bucket name. Defaults are [string -> "N/A"], [int -> "0"], [bool -> "false"] ... */
|
|
2136
|
-
addToBucket?: string;
|
|
2137
|
-
}
|
|
2138
|
-
declare enum CommonScalarType {
|
|
2139
|
-
UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
|
|
2140
|
-
/** Count of distinct values */
|
|
2141
|
-
COUNT_DISTINCT = "COUNT_DISTINCT",
|
|
2142
|
-
/** Minimum value */
|
|
2143
|
-
MIN = "MIN",
|
|
2144
|
-
/** Maximum value */
|
|
2145
|
-
MAX = "MAX",
|
|
2146
|
-
/** Sum of values */
|
|
2147
|
-
SUM = "SUM",
|
|
2148
|
-
/** Average of values */
|
|
2149
|
-
AVG = "AVG"
|
|
2150
|
-
}
|
|
2151
|
-
interface AggregationValueAggregation extends AggregationValueAggregationOptionsOneOf {
|
|
2152
|
-
/** Options for including missing values */
|
|
2153
|
-
includeOptions?: ValueAggregationIncludeMissingValuesOptions;
|
|
2154
|
-
/** Should sort by number of matches or value of the field */
|
|
2155
|
-
sortType?: ValueAggregationSortType;
|
|
2156
|
-
/** Should sort in ascending or descending order */
|
|
2157
|
-
sortDirection?: ValueAggregationSortDirection;
|
|
2158
|
-
/** How many aggregations would you like to return? Can be between 1 and 250. 10 is the default. */
|
|
2159
|
-
limit?: number | null;
|
|
2160
|
-
/** Should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
|
|
2161
|
-
missingValues?: ValueAggregationMissingValues;
|
|
2162
|
-
}
|
|
2163
|
-
/** @oneof */
|
|
2164
|
-
interface AggregationValueAggregationOptionsOneOf {
|
|
2165
|
-
/** Options for including missing values */
|
|
2166
|
-
includeOptions?: ValueAggregationIncludeMissingValuesOptions;
|
|
2167
|
-
}
|
|
2168
|
-
declare enum NestedAggregationNestedAggregationType {
|
|
2169
|
-
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
2170
|
-
/** An aggregation where result buckets are dynamically built - one per unique value */
|
|
2171
|
-
VALUE = "VALUE",
|
|
2172
|
-
/** An aggregation, where user can define set of ranges - each representing a bucket */
|
|
2173
|
-
RANGE = "RANGE",
|
|
2174
|
-
/** A single-value metric aggregation - e.g. min, max, sum, avg */
|
|
2175
|
-
SCALAR = "SCALAR",
|
|
2176
|
-
/** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
|
|
2177
|
-
DATE_HISTOGRAM = "DATE_HISTOGRAM"
|
|
2178
|
-
}
|
|
2179
|
-
interface AggregationRangeAggregation {
|
|
2180
|
-
/** List of range buckets, where during aggregation each entity will be placed in the first bucket where its value falls into based on provided range bounds */
|
|
2181
|
-
buckets?: RangeAggregationRangeBucket[];
|
|
2182
|
-
}
|
|
2183
|
-
interface AggregationScalarAggregation {
|
|
2184
|
-
/** Define the operator for the scalar aggregation */
|
|
2185
|
-
type?: CommonScalarType;
|
|
2186
|
-
}
|
|
2187
|
-
interface AggregationDateHistogramAggregation {
|
|
2188
|
-
/** Interval for date histogram aggregation */
|
|
2189
|
-
interval?: DateHistogramAggregationInterval;
|
|
2190
|
-
}
|
|
2191
|
-
declare enum DateHistogramAggregationInterval {
|
|
2192
|
-
UNKNOWN_INTERVAL = "UNKNOWN_INTERVAL",
|
|
2193
|
-
/** Yearly interval */
|
|
2194
|
-
YEAR = "YEAR",
|
|
2195
|
-
/** Monthly interval */
|
|
2196
|
-
MONTH = "MONTH",
|
|
2197
|
-
/** Weekly interval */
|
|
2198
|
-
WEEK = "WEEK",
|
|
2199
|
-
/** Daily interval */
|
|
2200
|
-
DAY = "DAY",
|
|
2201
|
-
/** Hourly interval */
|
|
2202
|
-
HOUR = "HOUR",
|
|
2203
|
-
/** Minute interval */
|
|
2204
|
-
MINUTE = "MINUTE",
|
|
2205
|
-
/** Second interval */
|
|
2206
|
-
SECOND = "SECOND"
|
|
2207
|
-
}
|
|
2208
|
-
interface NestedAggregationNestedAggregationItem extends NestedAggregationNestedAggregationItemKindOneOf {
|
|
2209
|
-
/** Value aggregation */
|
|
2210
|
-
value?: AggregationValueAggregation;
|
|
2211
|
-
/** Range aggregation */
|
|
2212
|
-
range?: AggregationRangeAggregation;
|
|
2213
|
-
/** Scalar aggregation */
|
|
2214
|
-
scalar?: AggregationScalarAggregation;
|
|
2215
|
-
/** Date histogram aggregation */
|
|
2216
|
-
dateHistogram?: AggregationDateHistogramAggregation;
|
|
2217
|
-
/** User-defined name of aggregation, should be unique, will appear in aggregation results */
|
|
2218
|
-
name?: string | null;
|
|
2219
|
-
/** Type of aggregation, client must provide matching aggregation field below */
|
|
2220
|
-
type?: NestedAggregationNestedAggregationType;
|
|
2221
|
-
/** Field to aggregate by, use dont notation to specify json path */
|
|
2222
|
-
fieldPath?: string;
|
|
2223
|
-
}
|
|
2224
|
-
/** @oneof */
|
|
2225
|
-
interface NestedAggregationNestedAggregationItemKindOneOf {
|
|
2226
|
-
/** Value aggregation */
|
|
2227
|
-
value?: AggregationValueAggregation;
|
|
2228
|
-
/** Range aggregation */
|
|
2229
|
-
range?: AggregationRangeAggregation;
|
|
2230
|
-
/** Scalar aggregation */
|
|
2231
|
-
scalar?: AggregationScalarAggregation;
|
|
2232
|
-
/** Date histogram aggregation */
|
|
2233
|
-
dateHistogram?: AggregationDateHistogramAggregation;
|
|
2234
|
-
}
|
|
2235
|
-
declare enum CommonAggregationType {
|
|
2236
|
-
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
2237
|
-
/** An aggregation where result buckets are dynamically built - one per unique value */
|
|
2238
|
-
VALUE = "VALUE",
|
|
2239
|
-
/** An aggregation, where user can define set of ranges - each representing a bucket */
|
|
2240
|
-
RANGE = "RANGE",
|
|
2241
|
-
/** A single-value metric aggregation - e.g. min, max, sum, avg */
|
|
2242
|
-
SCALAR = "SCALAR",
|
|
2243
|
-
/** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
|
|
2244
|
-
DATE_HISTOGRAM = "DATE_HISTOGRAM",
|
|
2245
|
-
/** Multi-level aggregation, where each next aggregation is nested within previous one */
|
|
2246
|
-
NESTED = "NESTED"
|
|
2247
|
-
}
|
|
2248
|
-
/** Nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
|
|
2249
|
-
interface AggregationNestedAggregation {
|
|
2250
|
-
/** Flattened list of aggregations, where each next aggregation is nested within previous one */
|
|
2251
|
-
nestedAggregations?: NestedAggregationNestedAggregationItem[];
|
|
2252
|
-
}
|
|
2253
|
-
interface GroupByAggregation extends GroupByAggregationKindOneOf {
|
|
2254
|
-
/** Value aggregation configuration */
|
|
2255
|
-
value?: AggregationValueAggregation;
|
|
2256
|
-
/** User-defined name of aggregation, should be unique, will appear in aggregation results */
|
|
2257
|
-
name?: string | null;
|
|
2258
|
-
/** Field to aggregate by */
|
|
2259
|
-
fieldPath?: string;
|
|
2069
|
+
timeZone?: string | null;
|
|
2260
2070
|
}
|
|
2261
2071
|
/** @oneof */
|
|
2262
|
-
interface
|
|
2263
|
-
/**
|
|
2264
|
-
|
|
2265
|
-
}
|
|
2266
|
-
interface CommonSearchDetails {
|
|
2267
|
-
/** Defines how separate search terms in `expression` are combined */
|
|
2268
|
-
mode?: SearchDetailsMode;
|
|
2269
|
-
/** Search term or expression */
|
|
2270
|
-
expression?: string | null;
|
|
2271
|
-
/** Fields to search in. If empty - will search in all searchable fields. Use dot notation to specify json path */
|
|
2272
|
-
fields?: string[];
|
|
2273
|
-
/** Flag if should use auto fuzzy search (allowing typos by a managed proximity algorithm) */
|
|
2274
|
-
fuzzy?: boolean;
|
|
2275
|
-
}
|
|
2276
|
-
declare enum SearchDetailsMode {
|
|
2277
|
-
/** Any of the search terms must be present */
|
|
2278
|
-
OR = "OR",
|
|
2279
|
-
/** All search terms must be present */
|
|
2280
|
-
AND = "AND"
|
|
2281
|
-
}
|
|
2282
|
-
interface PlatformPaging {
|
|
2283
|
-
/** Number of items to load. */
|
|
2284
|
-
limit?: number | null;
|
|
2285
|
-
/** Number of items to skip in the current sort order. */
|
|
2286
|
-
offset?: number | null;
|
|
2072
|
+
interface OffsetSearchPagingMethodOneOf {
|
|
2073
|
+
/** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
|
|
2074
|
+
paging?: Paging;
|
|
2287
2075
|
}
|
|
2288
2076
|
interface DeprecatedSearchCategoriesWithOffsetResponse {
|
|
2289
2077
|
/** Categories which satisfy the provided query. */
|
|
@@ -2444,7 +2232,7 @@ interface UpdateCategoryVisibilityRequest {
|
|
|
2444
2232
|
/** Latest revision of the category. */
|
|
2445
2233
|
revision: string | null;
|
|
2446
2234
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
2447
|
-
fields?:
|
|
2235
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
2448
2236
|
}
|
|
2449
2237
|
interface UpdateCategoryVisibilityResponse {
|
|
2450
2238
|
/** The updated Category. */
|
|
@@ -2490,8 +2278,6 @@ interface BulkUpdateCategoryVisibilityByFilterResponse {
|
|
|
2490
2278
|
interface BulkDeleteCategoriesRequest {
|
|
2491
2279
|
/** IDs of categories to be deleted. */
|
|
2492
2280
|
categoryIds?: string[];
|
|
2493
|
-
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
2494
|
-
fields?: RequestedFields[];
|
|
2495
2281
|
}
|
|
2496
2282
|
interface BulkDeleteCategoriesResponse {
|
|
2497
2283
|
/** Categories deleted by bulk action. */
|
|
@@ -3375,11 +3161,11 @@ interface CreateCategoryOptions {
|
|
|
3375
3161
|
/** A reference to the tree that contains this category. */
|
|
3376
3162
|
treeReference: TreeReference;
|
|
3377
3163
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3378
|
-
fields?:
|
|
3164
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3379
3165
|
}
|
|
3380
3166
|
interface GetCategoryOptions {
|
|
3381
3167
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3382
|
-
fields?:
|
|
3168
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3383
3169
|
}
|
|
3384
3170
|
interface UpdateCategory {
|
|
3385
3171
|
/** Category ID. */
|
|
@@ -3454,7 +3240,7 @@ interface UpdateCategoryOptions {
|
|
|
3454
3240
|
/** A reference to the tree that contains this category. */
|
|
3455
3241
|
treeReference: TreeReference;
|
|
3456
3242
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3457
|
-
fields?:
|
|
3243
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3458
3244
|
}
|
|
3459
3245
|
interface SearchCategoriesOptions {
|
|
3460
3246
|
/** WQL query expression. */
|
|
@@ -3523,7 +3309,7 @@ interface UpdateCategoryVisibilityOptions {
|
|
|
3523
3309
|
/** Latest revision of the category. */
|
|
3524
3310
|
revision: string | null;
|
|
3525
3311
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3526
|
-
fields?:
|
|
3312
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3527
3313
|
}
|
|
3528
3314
|
interface BulkAddItemsToCategoryOptions {
|
|
3529
3315
|
/** A reference to the tree that contains this category. */
|
|
@@ -3642,18 +3428,12 @@ declare const onCategoryItemsArrangedInCategory: ReturnType<typeof createEventMo
|
|
|
3642
3428
|
type context_ActionEvent = ActionEvent;
|
|
3643
3429
|
type context_Aggregation = Aggregation;
|
|
3644
3430
|
type context_AggregationData = AggregationData;
|
|
3645
|
-
type context_AggregationDateHistogramAggregation = AggregationDateHistogramAggregation;
|
|
3646
3431
|
type context_AggregationKindOneOf = AggregationKindOneOf;
|
|
3647
|
-
type context_AggregationNestedAggregation = AggregationNestedAggregation;
|
|
3648
|
-
type context_AggregationRangeAggregation = AggregationRangeAggregation;
|
|
3649
3432
|
type context_AggregationResults = AggregationResults;
|
|
3650
3433
|
type context_AggregationResultsResultOneOf = AggregationResultsResultOneOf;
|
|
3651
3434
|
type context_AggregationResultsScalarResult = AggregationResultsScalarResult;
|
|
3652
|
-
type context_AggregationScalarAggregation = AggregationScalarAggregation;
|
|
3653
3435
|
type context_AggregationType = AggregationType;
|
|
3654
3436
|
declare const context_AggregationType: typeof AggregationType;
|
|
3655
|
-
type context_AggregationValueAggregation = AggregationValueAggregation;
|
|
3656
|
-
type context_AggregationValueAggregationOptionsOneOf = AggregationValueAggregationOptionsOneOf;
|
|
3657
3437
|
type context_Alignment = Alignment;
|
|
3658
3438
|
declare const context_Alignment: typeof Alignment;
|
|
3659
3439
|
type context_AnchorData = AnchorData;
|
|
@@ -3728,17 +3508,7 @@ type context_CodeBlockData = CodeBlockData;
|
|
|
3728
3508
|
type context_CollapsibleListData = CollapsibleListData;
|
|
3729
3509
|
type context_ColorData = ColorData;
|
|
3730
3510
|
type context_Colors = Colors;
|
|
3731
|
-
type context_CommonAggregation = CommonAggregation;
|
|
3732
|
-
type context_CommonAggregationKindOneOf = CommonAggregationKindOneOf;
|
|
3733
|
-
type context_CommonAggregationType = CommonAggregationType;
|
|
3734
|
-
declare const context_CommonAggregationType: typeof CommonAggregationType;
|
|
3735
3511
|
type context_CommonCursors = CommonCursors;
|
|
3736
|
-
type context_CommonScalarType = CommonScalarType;
|
|
3737
|
-
declare const context_CommonScalarType: typeof CommonScalarType;
|
|
3738
|
-
type context_CommonSearchDetails = CommonSearchDetails;
|
|
3739
|
-
type context_CommonSortOrder = CommonSortOrder;
|
|
3740
|
-
declare const context_CommonSortOrder: typeof CommonSortOrder;
|
|
3741
|
-
type context_CommonSorting = CommonSorting;
|
|
3742
3512
|
type context_CompactCategory = CompactCategory;
|
|
3743
3513
|
type context_CountCategoriesOptions = CountCategoriesOptions;
|
|
3744
3514
|
type context_CountCategoriesRequest = CountCategoriesRequest;
|
|
@@ -3756,8 +3526,6 @@ type context_CursorSearch = CursorSearch;
|
|
|
3756
3526
|
type context_CursorSearchPagingMethodOneOf = CursorSearchPagingMethodOneOf;
|
|
3757
3527
|
type context_Cursors = Cursors;
|
|
3758
3528
|
type context_DateHistogramAggregation = DateHistogramAggregation;
|
|
3759
|
-
type context_DateHistogramAggregationInterval = DateHistogramAggregationInterval;
|
|
3760
|
-
declare const context_DateHistogramAggregationInterval: typeof DateHistogramAggregationInterval;
|
|
3761
3529
|
type context_DateHistogramResult = DateHistogramResult;
|
|
3762
3530
|
type context_DateHistogramResults = DateHistogramResults;
|
|
3763
3531
|
type context_Decoration = Decoration;
|
|
@@ -3805,8 +3573,6 @@ type context_GetCategoryRequest = GetCategoryRequest;
|
|
|
3805
3573
|
type context_GetCategoryResponse = GetCategoryResponse;
|
|
3806
3574
|
type context_GetCategoryResponseNonNullableFields = GetCategoryResponseNonNullableFields;
|
|
3807
3575
|
type context_Gradient = Gradient;
|
|
3808
|
-
type context_GroupByAggregation = GroupByAggregation;
|
|
3809
|
-
type context_GroupByAggregationKindOneOf = GroupByAggregationKindOneOf;
|
|
3810
3576
|
type context_GroupByValueResults = GroupByValueResults;
|
|
3811
3577
|
type context_HTMLData = HTMLData;
|
|
3812
3578
|
type context_HTMLDataDataOneOf = HTMLDataDataOneOf;
|
|
@@ -3883,10 +3649,6 @@ type context_MoveItemInCategoryResponse = MoveItemInCategoryResponse;
|
|
|
3883
3649
|
type context_NestedAggregation = NestedAggregation;
|
|
3884
3650
|
type context_NestedAggregationItem = NestedAggregationItem;
|
|
3885
3651
|
type context_NestedAggregationItemKindOneOf = NestedAggregationItemKindOneOf;
|
|
3886
|
-
type context_NestedAggregationNestedAggregationItem = NestedAggregationNestedAggregationItem;
|
|
3887
|
-
type context_NestedAggregationNestedAggregationItemKindOneOf = NestedAggregationNestedAggregationItemKindOneOf;
|
|
3888
|
-
type context_NestedAggregationNestedAggregationType = NestedAggregationNestedAggregationType;
|
|
3889
|
-
declare const context_NestedAggregationNestedAggregationType: typeof NestedAggregationNestedAggregationType;
|
|
3890
3652
|
type context_NestedAggregationResults = NestedAggregationResults;
|
|
3891
3653
|
type context_NestedAggregationResultsResultOneOf = NestedAggregationResultsResultOneOf;
|
|
3892
3654
|
type context_NestedAggregationType = NestedAggregationType;
|
|
@@ -3903,6 +3665,8 @@ declare const context_NodeType: typeof NodeType;
|
|
|
3903
3665
|
type context_NullValue = NullValue;
|
|
3904
3666
|
declare const context_NullValue: typeof NullValue;
|
|
3905
3667
|
type context_Oembed = Oembed;
|
|
3668
|
+
type context_OffsetSearch = OffsetSearch;
|
|
3669
|
+
type context_OffsetSearchPagingMethodOneOf = OffsetSearchPagingMethodOneOf;
|
|
3906
3670
|
type context_Option = Option;
|
|
3907
3671
|
type context_OptionDesign = OptionDesign;
|
|
3908
3672
|
type context_OptionLayout = OptionLayout;
|
|
@@ -3917,9 +3681,6 @@ type context_PagingMetadataV2 = PagingMetadataV2;
|
|
|
3917
3681
|
type context_ParagraphData = ParagraphData;
|
|
3918
3682
|
type context_ParentCategory = ParentCategory;
|
|
3919
3683
|
type context_Permissions = Permissions;
|
|
3920
|
-
type context_PlatformOffsetSearch = PlatformOffsetSearch;
|
|
3921
|
-
type context_PlatformOffsetSearchPagingMethodOneOf = PlatformOffsetSearchPagingMethodOneOf;
|
|
3922
|
-
type context_PlatformPaging = PlatformPaging;
|
|
3923
3684
|
type context_PlatformPagingMetadataV2 = PlatformPagingMetadataV2;
|
|
3924
3685
|
type context_PlaybackOptions = PlaybackOptions;
|
|
3925
3686
|
type context_PluginContainerData = PluginContainerData;
|
|
@@ -3944,7 +3705,6 @@ type context_QueryCategoriesResponse = QueryCategoriesResponse;
|
|
|
3944
3705
|
type context_QueryV2 = QueryV2;
|
|
3945
3706
|
type context_QueryV2PagingMethodOneOf = QueryV2PagingMethodOneOf;
|
|
3946
3707
|
type context_RangeAggregation = RangeAggregation;
|
|
3947
|
-
type context_RangeAggregationRangeBucket = RangeAggregationRangeBucket;
|
|
3948
3708
|
type context_RangeAggregationResult = RangeAggregationResult;
|
|
3949
3709
|
type context_RangeBucket = RangeBucket;
|
|
3950
3710
|
type context_RangeResult = RangeResult;
|
|
@@ -3964,14 +3724,14 @@ type context_SearchCategoriesRequest = SearchCategoriesRequest;
|
|
|
3964
3724
|
type context_SearchCategoriesResponse = SearchCategoriesResponse;
|
|
3965
3725
|
type context_SearchCategoriesResponseNonNullableFields = SearchCategoriesResponseNonNullableFields;
|
|
3966
3726
|
type context_SearchDetails = SearchDetails;
|
|
3967
|
-
type context_SearchDetailsMode = SearchDetailsMode;
|
|
3968
|
-
declare const context_SearchDetailsMode: typeof SearchDetailsMode;
|
|
3969
3727
|
type context_SeoSchema = SeoSchema;
|
|
3970
3728
|
type context_SetArrangedItemsOptions = SetArrangedItemsOptions;
|
|
3971
3729
|
type context_SetArrangedItemsRequest = SetArrangedItemsRequest;
|
|
3972
3730
|
type context_SetArrangedItemsResponse = SetArrangedItemsResponse;
|
|
3973
3731
|
type context_SetArrangedItemsResponseNonNullableFields = SetArrangedItemsResponseNonNullableFields;
|
|
3974
3732
|
type context_Settings = Settings;
|
|
3733
|
+
type context_SingleEntityOpsRequestedFields = SingleEntityOpsRequestedFields;
|
|
3734
|
+
declare const context_SingleEntityOpsRequestedFields: typeof SingleEntityOpsRequestedFields;
|
|
3975
3735
|
type context_SortDirection = SortDirection;
|
|
3976
3736
|
declare const context_SortDirection: typeof SortDirection;
|
|
3977
3737
|
type context_SortOrder = SortOrder;
|
|
@@ -4011,15 +3771,8 @@ type context_UpdateCategoryVisibilityRequest = UpdateCategoryVisibilityRequest;
|
|
|
4011
3771
|
type context_UpdateCategoryVisibilityResponse = UpdateCategoryVisibilityResponse;
|
|
4012
3772
|
type context_UpdateCategoryVisibilityResponseNonNullableFields = UpdateCategoryVisibilityResponseNonNullableFields;
|
|
4013
3773
|
type context_ValueAggregation = ValueAggregation;
|
|
4014
|
-
type context_ValueAggregationIncludeMissingValuesOptions = ValueAggregationIncludeMissingValuesOptions;
|
|
4015
|
-
type context_ValueAggregationMissingValues = ValueAggregationMissingValues;
|
|
4016
|
-
declare const context_ValueAggregationMissingValues: typeof ValueAggregationMissingValues;
|
|
4017
3774
|
type context_ValueAggregationOptionsOneOf = ValueAggregationOptionsOneOf;
|
|
4018
3775
|
type context_ValueAggregationResult = ValueAggregationResult;
|
|
4019
|
-
type context_ValueAggregationSortDirection = ValueAggregationSortDirection;
|
|
4020
|
-
declare const context_ValueAggregationSortDirection: typeof ValueAggregationSortDirection;
|
|
4021
|
-
type context_ValueAggregationSortType = ValueAggregationSortType;
|
|
4022
|
-
declare const context_ValueAggregationSortType: typeof ValueAggregationSortType;
|
|
4023
3776
|
type context_ValueResult = ValueResult;
|
|
4024
3777
|
type context_ValueResults = ValueResults;
|
|
4025
3778
|
type context_VerticalAlignment = VerticalAlignment;
|
|
@@ -4064,7 +3817,7 @@ declare const context_setArrangedItems: typeof setArrangedItems;
|
|
|
4064
3817
|
declare const context_updateCategory: typeof updateCategory;
|
|
4065
3818
|
declare const context_updateCategoryVisibility: typeof updateCategoryVisibility;
|
|
4066
3819
|
declare namespace context {
|
|
4067
|
-
export { type context_ActionEvent as ActionEvent, type context_Aggregation as Aggregation, type context_AggregationData as AggregationData, type context_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, type context_AggregationKindOneOf as AggregationKindOneOf, type context_AggregationNestedAggregation as AggregationNestedAggregation, type context_AggregationRangeAggregation as AggregationRangeAggregation, type context_AggregationResults as AggregationResults, type context_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context_AggregationResultsScalarResult as AggregationResultsScalarResult, type context_AggregationScalarAggregation as AggregationScalarAggregation, context_AggregationType as AggregationType, type context_AggregationValueAggregation as AggregationValueAggregation, type context_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_App as App, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BaseEventMetadata as BaseEventMetadata, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreadcrumbItem as BreadcrumbItem, type context_BreadcrumbItemValues as BreadcrumbItemValues, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type context_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type context_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type context_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type context_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type context_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type context_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type context_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type context_BulkCategoriesResult as BulkCategoriesResult, type context_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type context_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type context_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type context_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type context_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type context_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type context_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type context_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type context_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type context_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type context_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type context_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type context_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type context_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type context_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type context_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type context_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type context_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type context_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type context_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type context_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type context_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type context_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type context_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type context_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, type context_Category as Category, type context_CategoryCreatedEnvelope as CategoryCreatedEnvelope, type context_CategoryDeletedEnvelope as CategoryDeletedEnvelope, type context_CategoryItemAddedToCategoryEnvelope as CategoryItemAddedToCategoryEnvelope, type context_CategoryItemRemovedFromCategoryEnvelope as CategoryItemRemovedFromCategoryEnvelope, type context_CategoryItemsArrangedInCategoryEnvelope as CategoryItemsArrangedInCategoryEnvelope, type context_CategoryMoved as CategoryMoved, type context_CategoryMovedEnvelope as CategoryMovedEnvelope, type context_CategoryNonNullableFields as CategoryNonNullableFields, type context_CategoryTreeNode as CategoryTreeNode, type context_CategoryUpdatedEnvelope as CategoryUpdatedEnvelope, type context_CellStyle as CellStyle, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonAggregation as CommonAggregation, type context_CommonAggregationKindOneOf as CommonAggregationKindOneOf, context_CommonAggregationType as CommonAggregationType, type context_CommonCursors as CommonCursors, context_CommonScalarType as CommonScalarType, type context_CommonSearchDetails as CommonSearchDetails, context_CommonSortOrder as CommonSortOrder, type context_CommonSorting as CommonSorting, type context_CompactCategory as CompactCategory, type context_CountCategoriesOptions as CountCategoriesOptions, type context_CountCategoriesRequest as CountCategoriesRequest, type context_CountCategoriesResponse as CountCategoriesResponse, type context_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type context_CreateCategoryOptions as CreateCategoryOptions, type context_CreateCategoryRequest as CreateCategoryRequest, type context_CreateCategoryResponse as CreateCategoryResponse, type context_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_DateHistogramAggregation as DateHistogramAggregation, context_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context_DateHistogramResult as DateHistogramResult, type context_DateHistogramResults as DateHistogramResults, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DeleteCategoryRequest as DeleteCategoryRequest, type context_DeleteCategoryResponse as DeleteCategoryResponse, type context_DeprecatedSearchCategoriesWithOffsetRequest as DeprecatedSearchCategoriesWithOffsetRequest, type context_DeprecatedSearchCategoriesWithOffsetResponse as DeprecatedSearchCategoriesWithOffsetResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DividerData as DividerData, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_EventMetadata as EventMetadata, type context_ExtendedFields as ExtendedFields, type context_File as File, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetArrangedItemsRequest as GetArrangedItemsRequest, type context_GetArrangedItemsResponse as GetArrangedItemsResponse, type context_GetArrangedItemsResponseNonNullableFields as GetArrangedItemsResponseNonNullableFields, type context_GetCategoriesTreeRequest as GetCategoriesTreeRequest, type context_GetCategoriesTreeResponse as GetCategoriesTreeResponse, type context_GetCategoryOptions as GetCategoryOptions, type context_GetCategoryRequest as GetCategoryRequest, type context_GetCategoryResponse as GetCategoryResponse, type context_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type context_Gradient as Gradient, type context_GroupByAggregation as GroupByAggregation, type context_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context_GroupByValueResults as GroupByValueResults, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, type context_ImageData as ImageData, type context_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context_InitialExpandedItems as InitialExpandedItems, context_Interval as Interval, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_Item as Item, type context_ItemAddedToCategory as ItemAddedToCategory, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemReference as ItemReference, type context_ItemReferenceMetadata as ItemReferenceMetadata, type context_ItemRemovedFromCategory as ItemRemovedFromCategory, type context_ItemStyle as ItemStyle, type context_ItemsAddedToCategory as ItemsAddedToCategory, type context_ItemsArrangedInCategory as ItemsArrangedInCategory, type context_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context_Keyword as Keyword, type context_Layout as Layout, context_LayoutType as LayoutType, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, type context_ListCategoriesForItemOptions as ListCategoriesForItemOptions, type context_ListCategoriesForItemRequest as ListCategoriesForItemRequest, type context_ListCategoriesForItemResponse as ListCategoriesForItemResponse, type context_ListCategoriesForItemResponseNonNullableFields as ListCategoriesForItemResponseNonNullableFields, type context_ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequest, type context_ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponse, type context_ListItemsInCategoryOptions as ListItemsInCategoryOptions, type context_ListItemsInCategoryRequest as ListItemsInCategoryRequest, type context_ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOf, type context_ListItemsInCategoryResponse as ListItemsInCategoryResponse, type context_ListItemsInCategoryResponseNonNullableFields as ListItemsInCategoryResponseNonNullableFields, type context_ListTreesRequest as ListTreesRequest, type context_ListTreesResponse as ListTreesResponse, type context_ListTreesResponseNonNullableFields as ListTreesResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_MaskedCategory as MaskedCategory, type context_Media as Media, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_MissingValues as MissingValues, context_Mode as Mode, type context_MoveCategoryOptions as MoveCategoryOptions, type context_MoveCategoryRequest as MoveCategoryRequest, type context_MoveCategoryResponse as MoveCategoryResponse, type context_MoveCategoryResponseNonNullableFields as MoveCategoryResponseNonNullableFields, type context_MoveItemInCategoryRequest as MoveItemInCategoryRequest, context_MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPosition, type context_MoveItemInCategoryResponse as MoveItemInCategoryResponse, type context_NestedAggregation as NestedAggregation, type context_NestedAggregationItem as NestedAggregationItem, type context_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type context_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, context_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, type context_NestedAggregationResults as NestedAggregationResults, type context_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context_NestedAggregationType as NestedAggregationType, type context_NestedResultValue as NestedResultValue, type context_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context_NestedResults as NestedResults, type context_NestedValueAggregationResult as NestedValueAggregationResult, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, type context_Oembed as Oembed, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, type context_PDFSettings as PDFSettings, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadata as PagingMetadata, type context_PagingMetadataV2 as PagingMetadataV2, type context_ParagraphData as ParagraphData, type context_ParentCategory as ParentCategory, type context_Permissions as Permissions, type context_PlatformOffsetSearch as PlatformOffsetSearch, type context_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type context_PlatformPaging as PlatformPaging, type context_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollSettings as PollSettings, context_Position as Position, type context_QueryCategoriesRequest as QueryCategoriesRequest, type context_QueryCategoriesResponse as QueryCategoriesResponse, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_RangeAggregation as RangeAggregation, type context_RangeAggregationRangeBucket as RangeAggregationRangeBucket, type context_RangeAggregationResult as RangeAggregationResult, type context_RangeBucket as RangeBucket, type context_RangeResult as RangeResult, type context_RangeResults as RangeResults, type context_Rel as Rel, context_RequestedFields as RequestedFields, type context_RestoreInfo as RestoreInfo, type context_Results as Results, type context_RichContent as RichContent, type context_ScalarAggregation as ScalarAggregation, type context_ScalarResult as ScalarResult, context_ScalarType as ScalarType, type context_SearchCategoriesOptions as SearchCategoriesOptions, type context_SearchCategoriesRequest as SearchCategoriesRequest, type context_SearchCategoriesResponse as SearchCategoriesResponse, type context_SearchCategoriesResponseNonNullableFields as SearchCategoriesResponseNonNullableFields, type context_SearchDetails as SearchDetails, context_SearchDetailsMode as SearchDetailsMode, type context_SeoSchema as SeoSchema, type context_SetArrangedItemsOptions as SetArrangedItemsOptions, type context_SetArrangedItemsRequest as SetArrangedItemsRequest, type context_SetArrangedItemsResponse as SetArrangedItemsResponse, type context_SetArrangedItemsResponseNonNullableFields as SetArrangedItemsResponseNonNullableFields, type context_Settings as Settings, context_SortDirection as SortDirection, context_SortOrder as SortOrder, context_SortType as SortType, type context_Sorting as Sorting, context_Source as Source, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, type context_Styles as Styles, type context_TableCellData as TableCellData, type context_TableData as TableData, type context_Tag as Tag, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TreeReference as TreeReference, context_Type as Type, type context_URI as URI, type context_UpdateCategory as UpdateCategory, type context_UpdateCategoryOptions as UpdateCategoryOptions, type context_UpdateCategoryRequest as UpdateCategoryRequest, type context_UpdateCategoryResponse as UpdateCategoryResponse, type context_UpdateCategoryResponseNonNullableFields as UpdateCategoryResponseNonNullableFields, type context_UpdateCategoryVisibilityOptions as UpdateCategoryVisibilityOptions, type context_UpdateCategoryVisibilityRequest as UpdateCategoryVisibilityRequest, type context_UpdateCategoryVisibilityResponse as UpdateCategoryVisibilityResponse, type context_UpdateCategoryVisibilityResponseNonNullableFields as UpdateCategoryVisibilityResponseNonNullableFields, type context_ValueAggregation as ValueAggregation, type context_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, context_ValueAggregationMissingValues as ValueAggregationMissingValues, type context_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context_ValueAggregationResult as ValueAggregationResult, context_ValueAggregationSortDirection as ValueAggregationSortDirection, context_ValueAggregationSortType as ValueAggregationSortType, type context_ValueResult as ValueResult, type context_ValueResults as ValueResults, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, context_bulkAddItemToCategories as bulkAddItemToCategories, context_bulkAddItemsToCategory as bulkAddItemsToCategory, context_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, context_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, context_bulkUpdateCategories as bulkUpdateCategories, context_countCategories as countCategories, context_createCategory as createCategory, context_deleteCategory as deleteCategory, context_getArrangedItems as getArrangedItems, context_getCategory as getCategory, context_listCategoriesForItem as listCategoriesForItem, context_listItemsInCategory as listItemsInCategory, context_listTrees as listTrees, context_moveCategory as moveCategory, context_onCategoryCreated as onCategoryCreated, context_onCategoryDeleted as onCategoryDeleted, context_onCategoryItemAddedToCategory as onCategoryItemAddedToCategory, context_onCategoryItemRemovedFromCategory as onCategoryItemRemovedFromCategory, context_onCategoryItemsArrangedInCategory as onCategoryItemsArrangedInCategory, context_onCategoryMoved as onCategoryMoved, context_onCategoryUpdated as onCategoryUpdated, context_searchCategories as searchCategories, context_setArrangedItems as setArrangedItems, context_updateCategory as updateCategory, context_updateCategoryVisibility as updateCategoryVisibility };
|
|
3820
|
+
export { type context_ActionEvent as ActionEvent, type context_Aggregation as Aggregation, type context_AggregationData as AggregationData, type context_AggregationKindOneOf as AggregationKindOneOf, type context_AggregationResults as AggregationResults, type context_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context_AggregationResultsScalarResult as AggregationResultsScalarResult, context_AggregationType as AggregationType, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_App as App, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BaseEventMetadata as BaseEventMetadata, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreadcrumbItem as BreadcrumbItem, type context_BreadcrumbItemValues as BreadcrumbItemValues, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkAddItemToCategoriesOptions as BulkAddItemToCategoriesOptions, type context_BulkAddItemToCategoriesRequest as BulkAddItemToCategoriesRequest, type context_BulkAddItemToCategoriesResponse as BulkAddItemToCategoriesResponse, type context_BulkAddItemToCategoriesResponseNonNullableFields as BulkAddItemToCategoriesResponseNonNullableFields, type context_BulkAddItemsToCategoryOptions as BulkAddItemsToCategoryOptions, type context_BulkAddItemsToCategoryRequest as BulkAddItemsToCategoryRequest, type context_BulkAddItemsToCategoryResponse as BulkAddItemsToCategoryResponse, type context_BulkAddItemsToCategoryResponseNonNullableFields as BulkAddItemsToCategoryResponseNonNullableFields, type context_BulkCategoriesResult as BulkCategoriesResult, type context_BulkCreateCategoriesRequest as BulkCreateCategoriesRequest, type context_BulkCreateCategoriesResponse as BulkCreateCategoriesResponse, type context_BulkDeleteCategoriesByFilterRequest as BulkDeleteCategoriesByFilterRequest, type context_BulkDeleteCategoriesByFilterResponse as BulkDeleteCategoriesByFilterResponse, type context_BulkDeleteCategoriesRequest as BulkDeleteCategoriesRequest, type context_BulkDeleteCategoriesResponse as BulkDeleteCategoriesResponse, type context_BulkDeleteCategoriesResponseBulkCategoriesResult as BulkDeleteCategoriesResponseBulkCategoriesResult, type context_BulkItemToCategoriesResult as BulkItemToCategoriesResult, type context_BulkItemsToCategoryResult as BulkItemsToCategoryResult, type context_BulkRemoveItemFromCategoriesOptions as BulkRemoveItemFromCategoriesOptions, type context_BulkRemoveItemFromCategoriesRequest as BulkRemoveItemFromCategoriesRequest, type context_BulkRemoveItemFromCategoriesResponse as BulkRemoveItemFromCategoriesResponse, type context_BulkRemoveItemFromCategoriesResponseNonNullableFields as BulkRemoveItemFromCategoriesResponseNonNullableFields, type context_BulkRemoveItemsFromCategoryOptions as BulkRemoveItemsFromCategoryOptions, type context_BulkRemoveItemsFromCategoryRequest as BulkRemoveItemsFromCategoryRequest, type context_BulkRemoveItemsFromCategoryResponse as BulkRemoveItemsFromCategoryResponse, type context_BulkRemoveItemsFromCategoryResponseNonNullableFields as BulkRemoveItemsFromCategoryResponseNonNullableFields, type context_BulkUpdateCategoriesOptions as BulkUpdateCategoriesOptions, type context_BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequest, type context_BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponse, type context_BulkUpdateCategoriesResponseNonNullableFields as BulkUpdateCategoriesResponseNonNullableFields, type context_BulkUpdateCategoryVisibilityByFilterRequest as BulkUpdateCategoryVisibilityByFilterRequest, type context_BulkUpdateCategoryVisibilityByFilterResponse as BulkUpdateCategoryVisibilityByFilterResponse, type context_BulkUpdateCategoryVisibilityRequest as BulkUpdateCategoryVisibilityRequest, type context_BulkUpdateCategoryVisibilityResponse as BulkUpdateCategoryVisibilityResponse, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, type context_Category as Category, type context_CategoryCreatedEnvelope as CategoryCreatedEnvelope, type context_CategoryDeletedEnvelope as CategoryDeletedEnvelope, type context_CategoryItemAddedToCategoryEnvelope as CategoryItemAddedToCategoryEnvelope, type context_CategoryItemRemovedFromCategoryEnvelope as CategoryItemRemovedFromCategoryEnvelope, type context_CategoryItemsArrangedInCategoryEnvelope as CategoryItemsArrangedInCategoryEnvelope, type context_CategoryMoved as CategoryMoved, type context_CategoryMovedEnvelope as CategoryMovedEnvelope, type context_CategoryNonNullableFields as CategoryNonNullableFields, type context_CategoryTreeNode as CategoryTreeNode, type context_CategoryUpdatedEnvelope as CategoryUpdatedEnvelope, type context_CellStyle as CellStyle, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCursors as CommonCursors, type context_CompactCategory as CompactCategory, type context_CountCategoriesOptions as CountCategoriesOptions, type context_CountCategoriesRequest as CountCategoriesRequest, type context_CountCategoriesResponse as CountCategoriesResponse, type context_CountCategoriesResponseNonNullableFields as CountCategoriesResponseNonNullableFields, type context_CreateCategoryOptions as CreateCategoryOptions, type context_CreateCategoryRequest as CreateCategoryRequest, type context_CreateCategoryResponse as CreateCategoryResponse, type context_CreateCategoryResponseNonNullableFields as CreateCategoryResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_DateHistogramAggregation as DateHistogramAggregation, type context_DateHistogramResult as DateHistogramResult, type context_DateHistogramResults as DateHistogramResults, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DeleteCategoryRequest as DeleteCategoryRequest, type context_DeleteCategoryResponse as DeleteCategoryResponse, type context_DeprecatedSearchCategoriesWithOffsetRequest as DeprecatedSearchCategoriesWithOffsetRequest, type context_DeprecatedSearchCategoriesWithOffsetResponse as DeprecatedSearchCategoriesWithOffsetResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DividerData as DividerData, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_EventMetadata as EventMetadata, type context_ExtendedFields as ExtendedFields, type context_File as File, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetArrangedItemsRequest as GetArrangedItemsRequest, type context_GetArrangedItemsResponse as GetArrangedItemsResponse, type context_GetArrangedItemsResponseNonNullableFields as GetArrangedItemsResponseNonNullableFields, type context_GetCategoriesTreeRequest as GetCategoriesTreeRequest, type context_GetCategoriesTreeResponse as GetCategoriesTreeResponse, type context_GetCategoryOptions as GetCategoryOptions, type context_GetCategoryRequest as GetCategoryRequest, type context_GetCategoryResponse as GetCategoryResponse, type context_GetCategoryResponseNonNullableFields as GetCategoryResponseNonNullableFields, type context_Gradient as Gradient, type context_GroupByValueResults as GroupByValueResults, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, type context_ImageData as ImageData, type context_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context_InitialExpandedItems as InitialExpandedItems, context_Interval as Interval, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_Item as Item, type context_ItemAddedToCategory as ItemAddedToCategory, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemReference as ItemReference, type context_ItemReferenceMetadata as ItemReferenceMetadata, type context_ItemRemovedFromCategory as ItemRemovedFromCategory, type context_ItemStyle as ItemStyle, type context_ItemsAddedToCategory as ItemsAddedToCategory, type context_ItemsArrangedInCategory as ItemsArrangedInCategory, type context_ItemsRemovedFromCategory as ItemsRemovedFromCategory, type context_Keyword as Keyword, type context_Layout as Layout, context_LayoutType as LayoutType, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, type context_ListCategoriesForItemOptions as ListCategoriesForItemOptions, type context_ListCategoriesForItemRequest as ListCategoriesForItemRequest, type context_ListCategoriesForItemResponse as ListCategoriesForItemResponse, type context_ListCategoriesForItemResponseNonNullableFields as ListCategoriesForItemResponseNonNullableFields, type context_ListCompactCategoriesByIdsRequest as ListCompactCategoriesByIdsRequest, type context_ListCompactCategoriesByIdsResponse as ListCompactCategoriesByIdsResponse, type context_ListItemsInCategoryOptions as ListItemsInCategoryOptions, type context_ListItemsInCategoryRequest as ListItemsInCategoryRequest, type context_ListItemsInCategoryRequestPagingMethodOneOf as ListItemsInCategoryRequestPagingMethodOneOf, type context_ListItemsInCategoryResponse as ListItemsInCategoryResponse, type context_ListItemsInCategoryResponseNonNullableFields as ListItemsInCategoryResponseNonNullableFields, type context_ListTreesRequest as ListTreesRequest, type context_ListTreesResponse as ListTreesResponse, type context_ListTreesResponseNonNullableFields as ListTreesResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_MaskedCategory as MaskedCategory, type context_Media as Media, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_MissingValues as MissingValues, context_Mode as Mode, type context_MoveCategoryOptions as MoveCategoryOptions, type context_MoveCategoryRequest as MoveCategoryRequest, type context_MoveCategoryResponse as MoveCategoryResponse, type context_MoveCategoryResponseNonNullableFields as MoveCategoryResponseNonNullableFields, type context_MoveItemInCategoryRequest as MoveItemInCategoryRequest, context_MoveItemInCategoryRequestPosition as MoveItemInCategoryRequestPosition, type context_MoveItemInCategoryResponse as MoveItemInCategoryResponse, type context_NestedAggregation as NestedAggregation, type context_NestedAggregationItem as NestedAggregationItem, type context_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context_NestedAggregationResults as NestedAggregationResults, type context_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context_NestedAggregationType as NestedAggregationType, type context_NestedResultValue as NestedResultValue, type context_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context_NestedResults as NestedResults, type context_NestedValueAggregationResult as NestedValueAggregationResult, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, type context_Oembed as Oembed, type context_OffsetSearch as OffsetSearch, type context_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, type context_PDFSettings as PDFSettings, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadata as PagingMetadata, type context_PagingMetadataV2 as PagingMetadataV2, type context_ParagraphData as ParagraphData, type context_ParentCategory as ParentCategory, type context_Permissions as Permissions, type context_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollSettings as PollSettings, context_Position as Position, type context_QueryCategoriesRequest as QueryCategoriesRequest, type context_QueryCategoriesResponse as QueryCategoriesResponse, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_RangeAggregation as RangeAggregation, type context_RangeAggregationResult as RangeAggregationResult, type context_RangeBucket as RangeBucket, type context_RangeResult as RangeResult, type context_RangeResults as RangeResults, type context_Rel as Rel, context_RequestedFields as RequestedFields, type context_RestoreInfo as RestoreInfo, type context_Results as Results, type context_RichContent as RichContent, type context_ScalarAggregation as ScalarAggregation, type context_ScalarResult as ScalarResult, context_ScalarType as ScalarType, type context_SearchCategoriesOptions as SearchCategoriesOptions, type context_SearchCategoriesRequest as SearchCategoriesRequest, type context_SearchCategoriesResponse as SearchCategoriesResponse, type context_SearchCategoriesResponseNonNullableFields as SearchCategoriesResponseNonNullableFields, type context_SearchDetails as SearchDetails, type context_SeoSchema as SeoSchema, type context_SetArrangedItemsOptions as SetArrangedItemsOptions, type context_SetArrangedItemsRequest as SetArrangedItemsRequest, type context_SetArrangedItemsResponse as SetArrangedItemsResponse, type context_SetArrangedItemsResponseNonNullableFields as SetArrangedItemsResponseNonNullableFields, type context_Settings as Settings, context_SingleEntityOpsRequestedFields as SingleEntityOpsRequestedFields, context_SortDirection as SortDirection, context_SortOrder as SortOrder, context_SortType as SortType, type context_Sorting as Sorting, context_Source as Source, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, type context_Styles as Styles, type context_TableCellData as TableCellData, type context_TableData as TableData, type context_Tag as Tag, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TreeReference as TreeReference, context_Type as Type, type context_URI as URI, type context_UpdateCategory as UpdateCategory, type context_UpdateCategoryOptions as UpdateCategoryOptions, type context_UpdateCategoryRequest as UpdateCategoryRequest, type context_UpdateCategoryResponse as UpdateCategoryResponse, type context_UpdateCategoryResponseNonNullableFields as UpdateCategoryResponseNonNullableFields, type context_UpdateCategoryVisibilityOptions as UpdateCategoryVisibilityOptions, type context_UpdateCategoryVisibilityRequest as UpdateCategoryVisibilityRequest, type context_UpdateCategoryVisibilityResponse as UpdateCategoryVisibilityResponse, type context_UpdateCategoryVisibilityResponseNonNullableFields as UpdateCategoryVisibilityResponseNonNullableFields, type context_ValueAggregation as ValueAggregation, type context_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context_ValueAggregationResult as ValueAggregationResult, type context_ValueResult as ValueResult, type context_ValueResults as ValueResults, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, context_bulkAddItemToCategories as bulkAddItemToCategories, context_bulkAddItemsToCategory as bulkAddItemsToCategory, context_bulkRemoveItemFromCategories as bulkRemoveItemFromCategories, context_bulkRemoveItemsFromCategory as bulkRemoveItemsFromCategory, context_bulkUpdateCategories as bulkUpdateCategories, context_countCategories as countCategories, context_createCategory as createCategory, context_deleteCategory as deleteCategory, context_getArrangedItems as getArrangedItems, context_getCategory as getCategory, context_listCategoriesForItem as listCategoriesForItem, context_listItemsInCategory as listItemsInCategory, context_listTrees as listTrees, context_moveCategory as moveCategory, context_onCategoryCreated as onCategoryCreated, context_onCategoryDeleted as onCategoryDeleted, context_onCategoryItemAddedToCategory as onCategoryItemAddedToCategory, context_onCategoryItemRemovedFromCategory as onCategoryItemRemovedFromCategory, context_onCategoryItemsArrangedInCategory as onCategoryItemsArrangedInCategory, context_onCategoryMoved as onCategoryMoved, context_onCategoryUpdated as onCategoryUpdated, context_searchCategories as searchCategories, context_setArrangedItems as setArrangedItems, context_updateCategory as updateCategory, context_updateCategoryVisibility as updateCategoryVisibility };
|
|
4068
3821
|
}
|
|
4069
3822
|
|
|
4070
3823
|
export { context as categories };
|
|
@@ -1463,9 +1463,9 @@ interface CreateCategoryRequest {
|
|
|
1463
1463
|
/** A reference to the tree that contains this category. */
|
|
1464
1464
|
treeReference: TreeReference;
|
|
1465
1465
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1466
|
-
fields?:
|
|
1466
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
1467
1467
|
}
|
|
1468
|
-
declare enum
|
|
1468
|
+
declare enum SingleEntityOpsRequestedFields {
|
|
1469
1469
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
1470
1470
|
BREADCRUMBS = "BREADCRUMBS"
|
|
1471
1471
|
}
|
|
@@ -1479,7 +1479,7 @@ interface GetCategoryRequest {
|
|
|
1479
1479
|
/** A reference to the tree that contains this category. */
|
|
1480
1480
|
treeReference: TreeReference;
|
|
1481
1481
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1482
|
-
fields?:
|
|
1482
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
1483
1483
|
}
|
|
1484
1484
|
interface GetCategoryResponse {
|
|
1485
1485
|
/** The retrieved Category. */
|
|
@@ -1491,7 +1491,7 @@ interface UpdateCategoryRequest {
|
|
|
1491
1491
|
/** A reference to the tree that contains this category. */
|
|
1492
1492
|
treeReference: TreeReference;
|
|
1493
1493
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1494
|
-
fields?:
|
|
1494
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
1495
1495
|
}
|
|
1496
1496
|
interface UpdateCategoryResponse {
|
|
1497
1497
|
/** The updated Category. */
|
|
@@ -1571,6 +1571,10 @@ interface CursorPaging {
|
|
|
1571
1571
|
*/
|
|
1572
1572
|
cursor?: string | null;
|
|
1573
1573
|
}
|
|
1574
|
+
declare enum RequestedFields {
|
|
1575
|
+
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
1576
|
+
BREADCRUMBS = "BREADCRUMBS"
|
|
1577
|
+
}
|
|
1574
1578
|
interface QueryCategoriesResponse {
|
|
1575
1579
|
/** Categories which satisfy the provided query. */
|
|
1576
1580
|
categories?: Category[];
|
|
@@ -2034,7 +2038,7 @@ interface AggregationResultsResultOneOf {
|
|
|
2034
2038
|
}
|
|
2035
2039
|
interface DeprecatedSearchCategoriesWithOffsetRequest {
|
|
2036
2040
|
/** WQL query expression. */
|
|
2037
|
-
search?:
|
|
2041
|
+
search?: OffsetSearch;
|
|
2038
2042
|
/** A reference to the tree that contains this category. */
|
|
2039
2043
|
treeReference?: TreeReference;
|
|
2040
2044
|
/** Whether to return categories with `visible:false`. Default: false so only visible categories will be in response. */
|
|
@@ -2042,248 +2046,32 @@ interface DeprecatedSearchCategoriesWithOffsetRequest {
|
|
|
2042
2046
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
2043
2047
|
fields?: RequestedFields[];
|
|
2044
2048
|
}
|
|
2045
|
-
interface
|
|
2049
|
+
interface OffsetSearch extends OffsetSearchPagingMethodOneOf {
|
|
2046
2050
|
/** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
|
|
2047
|
-
paging?:
|
|
2051
|
+
paging?: Paging;
|
|
2048
2052
|
/** A filter object. See documentation [here](https://bo.wix.com/wix-docs/rnd/platformization-guidelines/api-query-language#platformization-guidelines_api-query-language_defining-in-protobuf) */
|
|
2049
2053
|
filter?: Record<string, any> | null;
|
|
2050
2054
|
/** Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}] */
|
|
2051
|
-
sort?:
|
|
2055
|
+
sort?: Sorting[];
|
|
2052
2056
|
/** 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. */
|
|
2053
|
-
aggregations?:
|
|
2054
|
-
/**
|
|
2055
|
-
search?:
|
|
2056
|
-
}
|
|
2057
|
-
/** @oneof */
|
|
2058
|
-
interface PlatformOffsetSearchPagingMethodOneOf {
|
|
2059
|
-
/** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
|
|
2060
|
-
paging?: PlatformPaging;
|
|
2061
|
-
}
|
|
2062
|
-
interface CommonSorting {
|
|
2063
|
-
/** Name of the field to sort by. */
|
|
2064
|
-
fieldName?: string;
|
|
2065
|
-
/** Sort order. */
|
|
2066
|
-
order?: CommonSortOrder;
|
|
2067
|
-
}
|
|
2068
|
-
declare enum CommonSortOrder {
|
|
2069
|
-
ASC = "ASC",
|
|
2070
|
-
DESC = "DESC"
|
|
2071
|
-
}
|
|
2072
|
-
interface CommonAggregation extends CommonAggregationKindOneOf {
|
|
2073
|
-
/** Value aggregation */
|
|
2074
|
-
value?: AggregationValueAggregation;
|
|
2075
|
-
/** Range aggregation */
|
|
2076
|
-
range?: AggregationRangeAggregation;
|
|
2077
|
-
/** Scalar aggregation */
|
|
2078
|
-
scalar?: AggregationScalarAggregation;
|
|
2079
|
-
/** Date histogram aggregation */
|
|
2080
|
-
dateHistogram?: AggregationDateHistogramAggregation;
|
|
2081
|
-
/** Nested aggregation */
|
|
2082
|
-
nested?: AggregationNestedAggregation;
|
|
2083
|
-
/** User-defined name of aggregation, should be unique, will appear in aggregation results */
|
|
2084
|
-
name?: string | null;
|
|
2085
|
-
/** Type of aggregation, client must provide matching aggregation field below */
|
|
2086
|
-
type?: CommonAggregationType;
|
|
2087
|
-
/** Field to aggregate by, use dot notation to specify json path */
|
|
2088
|
-
fieldPath?: string;
|
|
2057
|
+
aggregations?: Aggregation[];
|
|
2058
|
+
/** Free text to match in searchable fields */
|
|
2059
|
+
search?: SearchDetails;
|
|
2089
2060
|
/**
|
|
2090
|
-
*
|
|
2091
|
-
*
|
|
2092
|
-
*
|
|
2093
|
-
*
|
|
2061
|
+
* UTC offset or IANA time zone. Valid values are
|
|
2062
|
+
* ISO 8601 UTC offsets, such as +02:00 or -06:00,
|
|
2063
|
+
* and IANA time zone IDs, such as Europe/Rome
|
|
2064
|
+
*
|
|
2065
|
+
* Affects all filters and aggregations returned values.
|
|
2066
|
+
* You may override this behavior in a specific filter by providing
|
|
2067
|
+
* timestamps including time zone. e.g. `"2023-12-20T10:52:34.795Z"`
|
|
2094
2068
|
*/
|
|
2095
|
-
|
|
2096
|
-
}
|
|
2097
|
-
/** @oneof */
|
|
2098
|
-
interface CommonAggregationKindOneOf {
|
|
2099
|
-
/** Value aggregation */
|
|
2100
|
-
value?: AggregationValueAggregation;
|
|
2101
|
-
/** Range aggregation */
|
|
2102
|
-
range?: AggregationRangeAggregation;
|
|
2103
|
-
/** Scalar aggregation */
|
|
2104
|
-
scalar?: AggregationScalarAggregation;
|
|
2105
|
-
/** Date histogram aggregation */
|
|
2106
|
-
dateHistogram?: AggregationDateHistogramAggregation;
|
|
2107
|
-
/** Nested aggregation */
|
|
2108
|
-
nested?: AggregationNestedAggregation;
|
|
2109
|
-
}
|
|
2110
|
-
interface RangeAggregationRangeBucket {
|
|
2111
|
-
/** Inclusive lower bound of the range. Required if to is not given */
|
|
2112
|
-
from?: number | null;
|
|
2113
|
-
/** Exclusive upper bound of the range. Required if from is not given */
|
|
2114
|
-
to?: number | null;
|
|
2115
|
-
}
|
|
2116
|
-
declare enum ValueAggregationSortType {
|
|
2117
|
-
/** Should sort by number of matches */
|
|
2118
|
-
COUNT = "COUNT",
|
|
2119
|
-
/** Should sort by value of the field alphabetically */
|
|
2120
|
-
VALUE = "VALUE"
|
|
2121
|
-
}
|
|
2122
|
-
declare enum ValueAggregationSortDirection {
|
|
2123
|
-
/** Should sort in descending order */
|
|
2124
|
-
DESC = "DESC",
|
|
2125
|
-
/** Should sort in ascending order */
|
|
2126
|
-
ASC = "ASC"
|
|
2127
|
-
}
|
|
2128
|
-
declare enum ValueAggregationMissingValues {
|
|
2129
|
-
/** Should missing values be excluded from the aggregation results */
|
|
2130
|
-
EXCLUDE = "EXCLUDE",
|
|
2131
|
-
/** Should missing values be included in the aggregation results */
|
|
2132
|
-
INCLUDE = "INCLUDE"
|
|
2133
|
-
}
|
|
2134
|
-
interface ValueAggregationIncludeMissingValuesOptions {
|
|
2135
|
-
/** Can specify custom bucket name. Defaults are [string -> "N/A"], [int -> "0"], [bool -> "false"] ... */
|
|
2136
|
-
addToBucket?: string;
|
|
2137
|
-
}
|
|
2138
|
-
declare enum CommonScalarType {
|
|
2139
|
-
UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
|
|
2140
|
-
/** Count of distinct values */
|
|
2141
|
-
COUNT_DISTINCT = "COUNT_DISTINCT",
|
|
2142
|
-
/** Minimum value */
|
|
2143
|
-
MIN = "MIN",
|
|
2144
|
-
/** Maximum value */
|
|
2145
|
-
MAX = "MAX",
|
|
2146
|
-
/** Sum of values */
|
|
2147
|
-
SUM = "SUM",
|
|
2148
|
-
/** Average of values */
|
|
2149
|
-
AVG = "AVG"
|
|
2150
|
-
}
|
|
2151
|
-
interface AggregationValueAggregation extends AggregationValueAggregationOptionsOneOf {
|
|
2152
|
-
/** Options for including missing values */
|
|
2153
|
-
includeOptions?: ValueAggregationIncludeMissingValuesOptions;
|
|
2154
|
-
/** Should sort by number of matches or value of the field */
|
|
2155
|
-
sortType?: ValueAggregationSortType;
|
|
2156
|
-
/** Should sort in ascending or descending order */
|
|
2157
|
-
sortDirection?: ValueAggregationSortDirection;
|
|
2158
|
-
/** How many aggregations would you like to return? Can be between 1 and 250. 10 is the default. */
|
|
2159
|
-
limit?: number | null;
|
|
2160
|
-
/** Should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
|
|
2161
|
-
missingValues?: ValueAggregationMissingValues;
|
|
2162
|
-
}
|
|
2163
|
-
/** @oneof */
|
|
2164
|
-
interface AggregationValueAggregationOptionsOneOf {
|
|
2165
|
-
/** Options for including missing values */
|
|
2166
|
-
includeOptions?: ValueAggregationIncludeMissingValuesOptions;
|
|
2167
|
-
}
|
|
2168
|
-
declare enum NestedAggregationNestedAggregationType {
|
|
2169
|
-
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
2170
|
-
/** An aggregation where result buckets are dynamically built - one per unique value */
|
|
2171
|
-
VALUE = "VALUE",
|
|
2172
|
-
/** An aggregation, where user can define set of ranges - each representing a bucket */
|
|
2173
|
-
RANGE = "RANGE",
|
|
2174
|
-
/** A single-value metric aggregation - e.g. min, max, sum, avg */
|
|
2175
|
-
SCALAR = "SCALAR",
|
|
2176
|
-
/** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
|
|
2177
|
-
DATE_HISTOGRAM = "DATE_HISTOGRAM"
|
|
2178
|
-
}
|
|
2179
|
-
interface AggregationRangeAggregation {
|
|
2180
|
-
/** List of range buckets, where during aggregation each entity will be placed in the first bucket where its value falls into based on provided range bounds */
|
|
2181
|
-
buckets?: RangeAggregationRangeBucket[];
|
|
2182
|
-
}
|
|
2183
|
-
interface AggregationScalarAggregation {
|
|
2184
|
-
/** Define the operator for the scalar aggregation */
|
|
2185
|
-
type?: CommonScalarType;
|
|
2186
|
-
}
|
|
2187
|
-
interface AggregationDateHistogramAggregation {
|
|
2188
|
-
/** Interval for date histogram aggregation */
|
|
2189
|
-
interval?: DateHistogramAggregationInterval;
|
|
2190
|
-
}
|
|
2191
|
-
declare enum DateHistogramAggregationInterval {
|
|
2192
|
-
UNKNOWN_INTERVAL = "UNKNOWN_INTERVAL",
|
|
2193
|
-
/** Yearly interval */
|
|
2194
|
-
YEAR = "YEAR",
|
|
2195
|
-
/** Monthly interval */
|
|
2196
|
-
MONTH = "MONTH",
|
|
2197
|
-
/** Weekly interval */
|
|
2198
|
-
WEEK = "WEEK",
|
|
2199
|
-
/** Daily interval */
|
|
2200
|
-
DAY = "DAY",
|
|
2201
|
-
/** Hourly interval */
|
|
2202
|
-
HOUR = "HOUR",
|
|
2203
|
-
/** Minute interval */
|
|
2204
|
-
MINUTE = "MINUTE",
|
|
2205
|
-
/** Second interval */
|
|
2206
|
-
SECOND = "SECOND"
|
|
2207
|
-
}
|
|
2208
|
-
interface NestedAggregationNestedAggregationItem extends NestedAggregationNestedAggregationItemKindOneOf {
|
|
2209
|
-
/** Value aggregation */
|
|
2210
|
-
value?: AggregationValueAggregation;
|
|
2211
|
-
/** Range aggregation */
|
|
2212
|
-
range?: AggregationRangeAggregation;
|
|
2213
|
-
/** Scalar aggregation */
|
|
2214
|
-
scalar?: AggregationScalarAggregation;
|
|
2215
|
-
/** Date histogram aggregation */
|
|
2216
|
-
dateHistogram?: AggregationDateHistogramAggregation;
|
|
2217
|
-
/** User-defined name of aggregation, should be unique, will appear in aggregation results */
|
|
2218
|
-
name?: string | null;
|
|
2219
|
-
/** Type of aggregation, client must provide matching aggregation field below */
|
|
2220
|
-
type?: NestedAggregationNestedAggregationType;
|
|
2221
|
-
/** Field to aggregate by, use dont notation to specify json path */
|
|
2222
|
-
fieldPath?: string;
|
|
2223
|
-
}
|
|
2224
|
-
/** @oneof */
|
|
2225
|
-
interface NestedAggregationNestedAggregationItemKindOneOf {
|
|
2226
|
-
/** Value aggregation */
|
|
2227
|
-
value?: AggregationValueAggregation;
|
|
2228
|
-
/** Range aggregation */
|
|
2229
|
-
range?: AggregationRangeAggregation;
|
|
2230
|
-
/** Scalar aggregation */
|
|
2231
|
-
scalar?: AggregationScalarAggregation;
|
|
2232
|
-
/** Date histogram aggregation */
|
|
2233
|
-
dateHistogram?: AggregationDateHistogramAggregation;
|
|
2234
|
-
}
|
|
2235
|
-
declare enum CommonAggregationType {
|
|
2236
|
-
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
2237
|
-
/** An aggregation where result buckets are dynamically built - one per unique value */
|
|
2238
|
-
VALUE = "VALUE",
|
|
2239
|
-
/** An aggregation, where user can define set of ranges - each representing a bucket */
|
|
2240
|
-
RANGE = "RANGE",
|
|
2241
|
-
/** A single-value metric aggregation - e.g. min, max, sum, avg */
|
|
2242
|
-
SCALAR = "SCALAR",
|
|
2243
|
-
/** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
|
|
2244
|
-
DATE_HISTOGRAM = "DATE_HISTOGRAM",
|
|
2245
|
-
/** Multi-level aggregation, where each next aggregation is nested within previous one */
|
|
2246
|
-
NESTED = "NESTED"
|
|
2247
|
-
}
|
|
2248
|
-
/** Nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
|
|
2249
|
-
interface AggregationNestedAggregation {
|
|
2250
|
-
/** Flattened list of aggregations, where each next aggregation is nested within previous one */
|
|
2251
|
-
nestedAggregations?: NestedAggregationNestedAggregationItem[];
|
|
2252
|
-
}
|
|
2253
|
-
interface GroupByAggregation extends GroupByAggregationKindOneOf {
|
|
2254
|
-
/** Value aggregation configuration */
|
|
2255
|
-
value?: AggregationValueAggregation;
|
|
2256
|
-
/** User-defined name of aggregation, should be unique, will appear in aggregation results */
|
|
2257
|
-
name?: string | null;
|
|
2258
|
-
/** Field to aggregate by */
|
|
2259
|
-
fieldPath?: string;
|
|
2069
|
+
timeZone?: string | null;
|
|
2260
2070
|
}
|
|
2261
2071
|
/** @oneof */
|
|
2262
|
-
interface
|
|
2263
|
-
/**
|
|
2264
|
-
|
|
2265
|
-
}
|
|
2266
|
-
interface CommonSearchDetails {
|
|
2267
|
-
/** Defines how separate search terms in `expression` are combined */
|
|
2268
|
-
mode?: SearchDetailsMode;
|
|
2269
|
-
/** Search term or expression */
|
|
2270
|
-
expression?: string | null;
|
|
2271
|
-
/** Fields to search in. If empty - will search in all searchable fields. Use dot notation to specify json path */
|
|
2272
|
-
fields?: string[];
|
|
2273
|
-
/** Flag if should use auto fuzzy search (allowing typos by a managed proximity algorithm) */
|
|
2274
|
-
fuzzy?: boolean;
|
|
2275
|
-
}
|
|
2276
|
-
declare enum SearchDetailsMode {
|
|
2277
|
-
/** Any of the search terms must be present */
|
|
2278
|
-
OR = "OR",
|
|
2279
|
-
/** All search terms must be present */
|
|
2280
|
-
AND = "AND"
|
|
2281
|
-
}
|
|
2282
|
-
interface PlatformPaging {
|
|
2283
|
-
/** Number of items to load. */
|
|
2284
|
-
limit?: number | null;
|
|
2285
|
-
/** Number of items to skip in the current sort order. */
|
|
2286
|
-
offset?: number | null;
|
|
2072
|
+
interface OffsetSearchPagingMethodOneOf {
|
|
2073
|
+
/** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
|
|
2074
|
+
paging?: Paging;
|
|
2287
2075
|
}
|
|
2288
2076
|
interface DeprecatedSearchCategoriesWithOffsetResponse {
|
|
2289
2077
|
/** Categories which satisfy the provided query. */
|
|
@@ -2444,7 +2232,7 @@ interface UpdateCategoryVisibilityRequest {
|
|
|
2444
2232
|
/** Latest revision of the category. */
|
|
2445
2233
|
revision: string | null;
|
|
2446
2234
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
2447
|
-
fields?:
|
|
2235
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
2448
2236
|
}
|
|
2449
2237
|
interface UpdateCategoryVisibilityResponse {
|
|
2450
2238
|
/** The updated Category. */
|
|
@@ -2490,8 +2278,6 @@ interface BulkUpdateCategoryVisibilityByFilterResponse {
|
|
|
2490
2278
|
interface BulkDeleteCategoriesRequest {
|
|
2491
2279
|
/** IDs of categories to be deleted. */
|
|
2492
2280
|
categoryIds?: string[];
|
|
2493
|
-
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
2494
|
-
fields?: RequestedFields[];
|
|
2495
2281
|
}
|
|
2496
2282
|
interface BulkDeleteCategoriesResponse {
|
|
2497
2283
|
/** Categories deleted by bulk action. */
|
|
@@ -3375,11 +3161,11 @@ interface CreateCategoryOptions {
|
|
|
3375
3161
|
/** A reference to the tree that contains this category. */
|
|
3376
3162
|
treeReference: TreeReference;
|
|
3377
3163
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3378
|
-
fields?:
|
|
3164
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3379
3165
|
}
|
|
3380
3166
|
interface GetCategoryOptions {
|
|
3381
3167
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3382
|
-
fields?:
|
|
3168
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3383
3169
|
}
|
|
3384
3170
|
interface UpdateCategory {
|
|
3385
3171
|
/** Category ID. */
|
|
@@ -3454,7 +3240,7 @@ interface UpdateCategoryOptions {
|
|
|
3454
3240
|
/** A reference to the tree that contains this category. */
|
|
3455
3241
|
treeReference: TreeReference;
|
|
3456
3242
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3457
|
-
fields?:
|
|
3243
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3458
3244
|
}
|
|
3459
3245
|
interface SearchCategoriesOptions {
|
|
3460
3246
|
/** WQL query expression. */
|
|
@@ -3523,7 +3309,7 @@ interface UpdateCategoryVisibilityOptions {
|
|
|
3523
3309
|
/** Latest revision of the category. */
|
|
3524
3310
|
revision: string | null;
|
|
3525
3311
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3526
|
-
fields?:
|
|
3312
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3527
3313
|
}
|
|
3528
3314
|
interface BulkAddItemsToCategoryOptions {
|
|
3529
3315
|
/** A reference to the tree that contains this category. */
|
|
@@ -3642,18 +3428,12 @@ declare const onCategoryItemsArrangedInCategory: ReturnType<typeof createEventMo
|
|
|
3642
3428
|
type index_d_ActionEvent = ActionEvent;
|
|
3643
3429
|
type index_d_Aggregation = Aggregation;
|
|
3644
3430
|
type index_d_AggregationData = AggregationData;
|
|
3645
|
-
type index_d_AggregationDateHistogramAggregation = AggregationDateHistogramAggregation;
|
|
3646
3431
|
type index_d_AggregationKindOneOf = AggregationKindOneOf;
|
|
3647
|
-
type index_d_AggregationNestedAggregation = AggregationNestedAggregation;
|
|
3648
|
-
type index_d_AggregationRangeAggregation = AggregationRangeAggregation;
|
|
3649
3432
|
type index_d_AggregationResults = AggregationResults;
|
|
3650
3433
|
type index_d_AggregationResultsResultOneOf = AggregationResultsResultOneOf;
|
|
3651
3434
|
type index_d_AggregationResultsScalarResult = AggregationResultsScalarResult;
|
|
3652
|
-
type index_d_AggregationScalarAggregation = AggregationScalarAggregation;
|
|
3653
3435
|
type index_d_AggregationType = AggregationType;
|
|
3654
3436
|
declare const index_d_AggregationType: typeof AggregationType;
|
|
3655
|
-
type index_d_AggregationValueAggregation = AggregationValueAggregation;
|
|
3656
|
-
type index_d_AggregationValueAggregationOptionsOneOf = AggregationValueAggregationOptionsOneOf;
|
|
3657
3437
|
type index_d_Alignment = Alignment;
|
|
3658
3438
|
declare const index_d_Alignment: typeof Alignment;
|
|
3659
3439
|
type index_d_AnchorData = AnchorData;
|
|
@@ -3728,17 +3508,7 @@ type index_d_CodeBlockData = CodeBlockData;
|
|
|
3728
3508
|
type index_d_CollapsibleListData = CollapsibleListData;
|
|
3729
3509
|
type index_d_ColorData = ColorData;
|
|
3730
3510
|
type index_d_Colors = Colors;
|
|
3731
|
-
type index_d_CommonAggregation = CommonAggregation;
|
|
3732
|
-
type index_d_CommonAggregationKindOneOf = CommonAggregationKindOneOf;
|
|
3733
|
-
type index_d_CommonAggregationType = CommonAggregationType;
|
|
3734
|
-
declare const index_d_CommonAggregationType: typeof CommonAggregationType;
|
|
3735
3511
|
type index_d_CommonCursors = CommonCursors;
|
|
3736
|
-
type index_d_CommonScalarType = CommonScalarType;
|
|
3737
|
-
declare const index_d_CommonScalarType: typeof CommonScalarType;
|
|
3738
|
-
type index_d_CommonSearchDetails = CommonSearchDetails;
|
|
3739
|
-
type index_d_CommonSortOrder = CommonSortOrder;
|
|
3740
|
-
declare const index_d_CommonSortOrder: typeof CommonSortOrder;
|
|
3741
|
-
type index_d_CommonSorting = CommonSorting;
|
|
3742
3512
|
type index_d_CompactCategory = CompactCategory;
|
|
3743
3513
|
type index_d_CountCategoriesOptions = CountCategoriesOptions;
|
|
3744
3514
|
type index_d_CountCategoriesRequest = CountCategoriesRequest;
|
|
@@ -3756,8 +3526,6 @@ type index_d_CursorSearch = CursorSearch;
|
|
|
3756
3526
|
type index_d_CursorSearchPagingMethodOneOf = CursorSearchPagingMethodOneOf;
|
|
3757
3527
|
type index_d_Cursors = Cursors;
|
|
3758
3528
|
type index_d_DateHistogramAggregation = DateHistogramAggregation;
|
|
3759
|
-
type index_d_DateHistogramAggregationInterval = DateHistogramAggregationInterval;
|
|
3760
|
-
declare const index_d_DateHistogramAggregationInterval: typeof DateHistogramAggregationInterval;
|
|
3761
3529
|
type index_d_DateHistogramResult = DateHistogramResult;
|
|
3762
3530
|
type index_d_DateHistogramResults = DateHistogramResults;
|
|
3763
3531
|
type index_d_Decoration = Decoration;
|
|
@@ -3805,8 +3573,6 @@ type index_d_GetCategoryRequest = GetCategoryRequest;
|
|
|
3805
3573
|
type index_d_GetCategoryResponse = GetCategoryResponse;
|
|
3806
3574
|
type index_d_GetCategoryResponseNonNullableFields = GetCategoryResponseNonNullableFields;
|
|
3807
3575
|
type index_d_Gradient = Gradient;
|
|
3808
|
-
type index_d_GroupByAggregation = GroupByAggregation;
|
|
3809
|
-
type index_d_GroupByAggregationKindOneOf = GroupByAggregationKindOneOf;
|
|
3810
3576
|
type index_d_GroupByValueResults = GroupByValueResults;
|
|
3811
3577
|
type index_d_HTMLData = HTMLData;
|
|
3812
3578
|
type index_d_HTMLDataDataOneOf = HTMLDataDataOneOf;
|
|
@@ -3883,10 +3649,6 @@ type index_d_MoveItemInCategoryResponse = MoveItemInCategoryResponse;
|
|
|
3883
3649
|
type index_d_NestedAggregation = NestedAggregation;
|
|
3884
3650
|
type index_d_NestedAggregationItem = NestedAggregationItem;
|
|
3885
3651
|
type index_d_NestedAggregationItemKindOneOf = NestedAggregationItemKindOneOf;
|
|
3886
|
-
type index_d_NestedAggregationNestedAggregationItem = NestedAggregationNestedAggregationItem;
|
|
3887
|
-
type index_d_NestedAggregationNestedAggregationItemKindOneOf = NestedAggregationNestedAggregationItemKindOneOf;
|
|
3888
|
-
type index_d_NestedAggregationNestedAggregationType = NestedAggregationNestedAggregationType;
|
|
3889
|
-
declare const index_d_NestedAggregationNestedAggregationType: typeof NestedAggregationNestedAggregationType;
|
|
3890
3652
|
type index_d_NestedAggregationResults = NestedAggregationResults;
|
|
3891
3653
|
type index_d_NestedAggregationResultsResultOneOf = NestedAggregationResultsResultOneOf;
|
|
3892
3654
|
type index_d_NestedAggregationType = NestedAggregationType;
|
|
@@ -3903,6 +3665,8 @@ declare const index_d_NodeType: typeof NodeType;
|
|
|
3903
3665
|
type index_d_NullValue = NullValue;
|
|
3904
3666
|
declare const index_d_NullValue: typeof NullValue;
|
|
3905
3667
|
type index_d_Oembed = Oembed;
|
|
3668
|
+
type index_d_OffsetSearch = OffsetSearch;
|
|
3669
|
+
type index_d_OffsetSearchPagingMethodOneOf = OffsetSearchPagingMethodOneOf;
|
|
3906
3670
|
type index_d_Option = Option;
|
|
3907
3671
|
type index_d_OptionDesign = OptionDesign;
|
|
3908
3672
|
type index_d_OptionLayout = OptionLayout;
|
|
@@ -3917,9 +3681,6 @@ type index_d_PagingMetadataV2 = PagingMetadataV2;
|
|
|
3917
3681
|
type index_d_ParagraphData = ParagraphData;
|
|
3918
3682
|
type index_d_ParentCategory = ParentCategory;
|
|
3919
3683
|
type index_d_Permissions = Permissions;
|
|
3920
|
-
type index_d_PlatformOffsetSearch = PlatformOffsetSearch;
|
|
3921
|
-
type index_d_PlatformOffsetSearchPagingMethodOneOf = PlatformOffsetSearchPagingMethodOneOf;
|
|
3922
|
-
type index_d_PlatformPaging = PlatformPaging;
|
|
3923
3684
|
type index_d_PlatformPagingMetadataV2 = PlatformPagingMetadataV2;
|
|
3924
3685
|
type index_d_PlaybackOptions = PlaybackOptions;
|
|
3925
3686
|
type index_d_PluginContainerData = PluginContainerData;
|
|
@@ -3944,7 +3705,6 @@ type index_d_QueryCategoriesResponse = QueryCategoriesResponse;
|
|
|
3944
3705
|
type index_d_QueryV2 = QueryV2;
|
|
3945
3706
|
type index_d_QueryV2PagingMethodOneOf = QueryV2PagingMethodOneOf;
|
|
3946
3707
|
type index_d_RangeAggregation = RangeAggregation;
|
|
3947
|
-
type index_d_RangeAggregationRangeBucket = RangeAggregationRangeBucket;
|
|
3948
3708
|
type index_d_RangeAggregationResult = RangeAggregationResult;
|
|
3949
3709
|
type index_d_RangeBucket = RangeBucket;
|
|
3950
3710
|
type index_d_RangeResult = RangeResult;
|
|
@@ -3964,14 +3724,14 @@ type index_d_SearchCategoriesRequest = SearchCategoriesRequest;
|
|
|
3964
3724
|
type index_d_SearchCategoriesResponse = SearchCategoriesResponse;
|
|
3965
3725
|
type index_d_SearchCategoriesResponseNonNullableFields = SearchCategoriesResponseNonNullableFields;
|
|
3966
3726
|
type index_d_SearchDetails = SearchDetails;
|
|
3967
|
-
type index_d_SearchDetailsMode = SearchDetailsMode;
|
|
3968
|
-
declare const index_d_SearchDetailsMode: typeof SearchDetailsMode;
|
|
3969
3727
|
type index_d_SeoSchema = SeoSchema;
|
|
3970
3728
|
type index_d_SetArrangedItemsOptions = SetArrangedItemsOptions;
|
|
3971
3729
|
type index_d_SetArrangedItemsRequest = SetArrangedItemsRequest;
|
|
3972
3730
|
type index_d_SetArrangedItemsResponse = SetArrangedItemsResponse;
|
|
3973
3731
|
type index_d_SetArrangedItemsResponseNonNullableFields = SetArrangedItemsResponseNonNullableFields;
|
|
3974
3732
|
type index_d_Settings = Settings;
|
|
3733
|
+
type index_d_SingleEntityOpsRequestedFields = SingleEntityOpsRequestedFields;
|
|
3734
|
+
declare const index_d_SingleEntityOpsRequestedFields: typeof SingleEntityOpsRequestedFields;
|
|
3975
3735
|
type index_d_SortDirection = SortDirection;
|
|
3976
3736
|
declare const index_d_SortDirection: typeof SortDirection;
|
|
3977
3737
|
type index_d_SortOrder = SortOrder;
|
|
@@ -4011,15 +3771,8 @@ type index_d_UpdateCategoryVisibilityRequest = UpdateCategoryVisibilityRequest;
|
|
|
4011
3771
|
type index_d_UpdateCategoryVisibilityResponse = UpdateCategoryVisibilityResponse;
|
|
4012
3772
|
type index_d_UpdateCategoryVisibilityResponseNonNullableFields = UpdateCategoryVisibilityResponseNonNullableFields;
|
|
4013
3773
|
type index_d_ValueAggregation = ValueAggregation;
|
|
4014
|
-
type index_d_ValueAggregationIncludeMissingValuesOptions = ValueAggregationIncludeMissingValuesOptions;
|
|
4015
|
-
type index_d_ValueAggregationMissingValues = ValueAggregationMissingValues;
|
|
4016
|
-
declare const index_d_ValueAggregationMissingValues: typeof ValueAggregationMissingValues;
|
|
4017
3774
|
type index_d_ValueAggregationOptionsOneOf = ValueAggregationOptionsOneOf;
|
|
4018
3775
|
type index_d_ValueAggregationResult = ValueAggregationResult;
|
|
4019
|
-
type index_d_ValueAggregationSortDirection = ValueAggregationSortDirection;
|
|
4020
|
-
declare const index_d_ValueAggregationSortDirection: typeof ValueAggregationSortDirection;
|
|
4021
|
-
type index_d_ValueAggregationSortType = ValueAggregationSortType;
|
|
4022
|
-
declare const index_d_ValueAggregationSortType: typeof ValueAggregationSortType;
|
|
4023
3776
|
type index_d_ValueResult = ValueResult;
|
|
4024
3777
|
type index_d_ValueResults = ValueResults;
|
|
4025
3778
|
type index_d_VerticalAlignment = VerticalAlignment;
|
|
@@ -4064,7 +3817,7 @@ declare const index_d_setArrangedItems: typeof setArrangedItems;
|
|
|
4064
3817
|
declare const index_d_updateCategory: typeof updateCategory;
|
|
4065
3818
|
declare const index_d_updateCategoryVisibility: typeof updateCategoryVisibility;
|
|
4066
3819
|
declare namespace index_d {
|
|
4067
|
-
export { type index_d_ActionEvent as ActionEvent, type index_d_Aggregation as Aggregation, type index_d_AggregationData as AggregationData, type index_d_AggregationDateHistogramAggregation as AggregationDateHistogramAggregation, type index_d_AggregationKindOneOf as AggregationKindOneOf, type index_d_AggregationNestedAggregation as AggregationNestedAggregation, type index_d_AggregationRangeAggregation as AggregationRangeAggregation, type index_d_AggregationResults as AggregationResults, type index_d_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d_AggregationResultsScalarResult as AggregationResultsScalarResult, type index_d_AggregationScalarAggregation as AggregationScalarAggregation, index_d_AggregationType as AggregationType, type index_d_AggregationValueAggregation as AggregationValueAggregation, type index_d_AggregationValueAggregationOptionsOneOf as AggregationValueAggregationOptionsOneOf, 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_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_CommonAggregation as CommonAggregation, type index_d_CommonAggregationKindOneOf as CommonAggregationKindOneOf, index_d_CommonAggregationType as CommonAggregationType, type index_d_CommonCursors as CommonCursors, index_d_CommonScalarType as CommonScalarType, type index_d_CommonSearchDetails as CommonSearchDetails, index_d_CommonSortOrder as CommonSortOrder, type index_d_CommonSorting as CommonSorting, 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_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_DateHistogramAggregation as DateHistogramAggregation, index_d_DateHistogramAggregationInterval as DateHistogramAggregationInterval, 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_GroupByAggregation as GroupByAggregation, type index_d_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, 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_NestedAggregationNestedAggregationItem as NestedAggregationNestedAggregationItem, type index_d_NestedAggregationNestedAggregationItemKindOneOf as NestedAggregationNestedAggregationItemKindOneOf, index_d_NestedAggregationNestedAggregationType as NestedAggregationNestedAggregationType, 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_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_PlatformOffsetSearch as PlatformOffsetSearch, type index_d_PlatformOffsetSearchPagingMethodOneOf as PlatformOffsetSearchPagingMethodOneOf, type index_d_PlatformPaging as PlatformPaging, 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_QueryCategoriesRequest as QueryCategoriesRequest, type index_d_QueryCategoriesResponse as QueryCategoriesResponse, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_RangeAggregation as RangeAggregation, type index_d_RangeAggregationRangeBucket as RangeAggregationRangeBucket, 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, index_d_SearchDetailsMode as SearchDetailsMode, 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_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_ValueAggregationIncludeMissingValuesOptions as ValueAggregationIncludeMissingValuesOptions, index_d_ValueAggregationMissingValues as ValueAggregationMissingValues, type index_d_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d_ValueAggregationResult as ValueAggregationResult, index_d_ValueAggregationSortDirection as ValueAggregationSortDirection, index_d_ValueAggregationSortType as ValueAggregationSortType, 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_searchCategories as searchCategories, index_d_setArrangedItems as setArrangedItems, index_d_updateCategory as updateCategory, index_d_updateCategoryVisibility as updateCategoryVisibility };
|
|
3820
|
+
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_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_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_QueryCategoriesRequest as QueryCategoriesRequest, type index_d_QueryCategoriesResponse as QueryCategoriesResponse, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, 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_searchCategories as searchCategories, index_d_setArrangedItems as setArrangedItems, index_d_updateCategory as updateCategory, index_d_updateCategoryVisibility as updateCategoryVisibility };
|
|
4068
3821
|
}
|
|
4069
3822
|
|
|
4070
3823
|
export { index_d as categories };
|
|
@@ -1360,9 +1360,9 @@ interface CreateCategoryRequest$1 {
|
|
|
1360
1360
|
/** A reference to the tree that contains this category. */
|
|
1361
1361
|
treeReference: TreeReference$1;
|
|
1362
1362
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1363
|
-
fields?:
|
|
1363
|
+
fields?: SingleEntityOpsRequestedFields$1[];
|
|
1364
1364
|
}
|
|
1365
|
-
declare enum
|
|
1365
|
+
declare enum SingleEntityOpsRequestedFields$1 {
|
|
1366
1366
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
1367
1367
|
BREADCRUMBS = "BREADCRUMBS"
|
|
1368
1368
|
}
|
|
@@ -1376,7 +1376,7 @@ interface GetCategoryRequest$1 {
|
|
|
1376
1376
|
/** A reference to the tree that contains this category. */
|
|
1377
1377
|
treeReference: TreeReference$1;
|
|
1378
1378
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1379
|
-
fields?:
|
|
1379
|
+
fields?: SingleEntityOpsRequestedFields$1[];
|
|
1380
1380
|
}
|
|
1381
1381
|
interface GetCategoryResponse$1 {
|
|
1382
1382
|
/** The retrieved Category. */
|
|
@@ -1388,7 +1388,7 @@ interface UpdateCategoryRequest$1 {
|
|
|
1388
1388
|
/** A reference to the tree that contains this category. */
|
|
1389
1389
|
treeReference: TreeReference$1;
|
|
1390
1390
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1391
|
-
fields?:
|
|
1391
|
+
fields?: SingleEntityOpsRequestedFields$1[];
|
|
1392
1392
|
}
|
|
1393
1393
|
interface UpdateCategoryResponse$1 {
|
|
1394
1394
|
/** The updated Category. */
|
|
@@ -1423,6 +1423,10 @@ interface CursorPaging$1 {
|
|
|
1423
1423
|
*/
|
|
1424
1424
|
cursor?: string | null;
|
|
1425
1425
|
}
|
|
1426
|
+
declare enum RequestedFields$1 {
|
|
1427
|
+
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
1428
|
+
BREADCRUMBS = "BREADCRUMBS"
|
|
1429
|
+
}
|
|
1426
1430
|
interface SearchCategoriesRequest$1 {
|
|
1427
1431
|
/** WQL query expression. */
|
|
1428
1432
|
search?: CursorSearch$1;
|
|
@@ -1967,7 +1971,7 @@ interface UpdateCategoryVisibilityRequest$1 {
|
|
|
1967
1971
|
/** Latest revision of the category. */
|
|
1968
1972
|
revision: string | null;
|
|
1969
1973
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1970
|
-
fields?:
|
|
1974
|
+
fields?: SingleEntityOpsRequestedFields$1[];
|
|
1971
1975
|
}
|
|
1972
1976
|
interface UpdateCategoryVisibilityResponse$1 {
|
|
1973
1977
|
/** The updated Category. */
|
|
@@ -3900,9 +3904,9 @@ interface CreateCategoryRequest {
|
|
|
3900
3904
|
/** A reference to the tree that contains this category. */
|
|
3901
3905
|
treeReference: TreeReference;
|
|
3902
3906
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3903
|
-
fields?:
|
|
3907
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3904
3908
|
}
|
|
3905
|
-
declare enum
|
|
3909
|
+
declare enum SingleEntityOpsRequestedFields {
|
|
3906
3910
|
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
3907
3911
|
BREADCRUMBS = "BREADCRUMBS"
|
|
3908
3912
|
}
|
|
@@ -3916,7 +3920,7 @@ interface GetCategoryRequest {
|
|
|
3916
3920
|
/** A reference to the tree that contains this category. */
|
|
3917
3921
|
treeReference: TreeReference;
|
|
3918
3922
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3919
|
-
fields?:
|
|
3923
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3920
3924
|
}
|
|
3921
3925
|
interface GetCategoryResponse {
|
|
3922
3926
|
/** The retrieved Category. */
|
|
@@ -3928,7 +3932,7 @@ interface UpdateCategoryRequest {
|
|
|
3928
3932
|
/** A reference to the tree that contains this category. */
|
|
3929
3933
|
treeReference: TreeReference;
|
|
3930
3934
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
3931
|
-
fields?:
|
|
3935
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
3932
3936
|
}
|
|
3933
3937
|
interface UpdateCategoryResponse {
|
|
3934
3938
|
/** The updated Category. */
|
|
@@ -3963,6 +3967,10 @@ interface CursorPaging {
|
|
|
3963
3967
|
*/
|
|
3964
3968
|
cursor?: string | null;
|
|
3965
3969
|
}
|
|
3970
|
+
declare enum RequestedFields {
|
|
3971
|
+
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
3972
|
+
BREADCRUMBS = "BREADCRUMBS"
|
|
3973
|
+
}
|
|
3966
3974
|
interface SearchCategoriesRequest {
|
|
3967
3975
|
/** WQL query expression. */
|
|
3968
3976
|
search?: CursorSearch;
|
|
@@ -4507,7 +4515,7 @@ interface UpdateCategoryVisibilityRequest {
|
|
|
4507
4515
|
/** Latest revision of the category. */
|
|
4508
4516
|
revision: string | null;
|
|
4509
4517
|
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
4510
|
-
fields?:
|
|
4518
|
+
fields?: SingleEntityOpsRequestedFields[];
|
|
4511
4519
|
}
|
|
4512
4520
|
interface UpdateCategoryVisibilityResponse {
|
|
4513
4521
|
/** The updated Category. */
|