@wix/categories 1.0.12 → 1.0.14
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/build/cjs/src/categories-v1-category.http.d.ts +3 -1
- package/build/cjs/src/categories-v1-category.http.js +90 -1
- package/build/cjs/src/categories-v1-category.http.js.map +1 -1
- package/build/cjs/src/categories-v1-category.meta.d.ts +1 -0
- package/build/cjs/src/categories-v1-category.meta.js +20 -1
- package/build/cjs/src/categories-v1-category.meta.js.map +1 -1
- package/build/cjs/src/categories-v1-category.public.d.ts +4 -3
- package/build/cjs/src/categories-v1-category.public.js +14 -1
- package/build/cjs/src/categories-v1-category.public.js.map +1 -1
- package/build/cjs/src/categories-v1-category.types.d.ts +760 -0
- package/build/cjs/src/categories-v1-category.types.js +39 -1
- package/build/cjs/src/categories-v1-category.types.js.map +1 -1
- package/build/cjs/src/categories-v1-category.universal.d.ts +782 -10
- package/build/cjs/src/categories-v1-category.universal.js +100 -1
- package/build/cjs/src/categories-v1-category.universal.js.map +1 -1
- package/build/es/src/categories-v1-category.http.d.ts +3 -1
- package/build/es/src/categories-v1-category.http.js +88 -0
- package/build/es/src/categories-v1-category.http.js.map +1 -1
- package/build/es/src/categories-v1-category.meta.d.ts +1 -0
- package/build/es/src/categories-v1-category.meta.js +18 -0
- package/build/es/src/categories-v1-category.meta.js.map +1 -1
- package/build/es/src/categories-v1-category.public.d.ts +4 -3
- package/build/es/src/categories-v1-category.public.js +7 -2
- package/build/es/src/categories-v1-category.public.js.map +1 -1
- package/build/es/src/categories-v1-category.types.d.ts +760 -0
- package/build/es/src/categories-v1-category.types.js +38 -0
- package/build/es/src/categories-v1-category.types.js.map +1 -1
- package/build/es/src/categories-v1-category.universal.d.ts +782 -10
- package/build/es/src/categories-v1-category.universal.js +97 -0
- package/build/es/src/categories-v1-category.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -1555,6 +1555,216 @@ export interface Cursors {
|
|
|
1555
1555
|
/** Cursor pointing to previous page in the list of results. */
|
|
1556
1556
|
prev?: string | null;
|
|
1557
1557
|
}
|
|
1558
|
+
export interface SearchCategoriesRequest {
|
|
1559
|
+
/** WQL query expression. */
|
|
1560
|
+
search?: CursorSearch;
|
|
1561
|
+
/**
|
|
1562
|
+
* A reference to the tree that contains this category.
|
|
1563
|
+
* Used only in the first request. Following requests use the cursor token.
|
|
1564
|
+
*/
|
|
1565
|
+
treeReference: TreeReference;
|
|
1566
|
+
/**
|
|
1567
|
+
* Whether hidden categories should be included in the response. Default is `false`.
|
|
1568
|
+
* Used only in the first request. Following requests use the cursor token.
|
|
1569
|
+
*/
|
|
1570
|
+
includeHidden?: boolean;
|
|
1571
|
+
/** Fields to return in the response. When not provided, these fields are not returned. */
|
|
1572
|
+
fields?: RequestedFields[];
|
|
1573
|
+
}
|
|
1574
|
+
export interface CursorSearch extends CursorSearchPagingMethodOneOf {
|
|
1575
|
+
/** Cursor pointing to page of results. Can't be used together with 'paging'. 'cursor_paging.cursor' can not be used together with 'filter' or 'sort' */
|
|
1576
|
+
cursorPaging?: CursorPaging;
|
|
1577
|
+
/** 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) */
|
|
1578
|
+
filter?: Record<string, any> | null;
|
|
1579
|
+
/** Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}] */
|
|
1580
|
+
sort?: Sorting[];
|
|
1581
|
+
/** 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. */
|
|
1582
|
+
aggregations?: Aggregation[];
|
|
1583
|
+
/** free text to match in searchable fields */
|
|
1584
|
+
search?: SearchDetails;
|
|
1585
|
+
}
|
|
1586
|
+
/** @oneof */
|
|
1587
|
+
export interface CursorSearchPagingMethodOneOf {
|
|
1588
|
+
/** Cursor pointing to page of results. Can't be used together with 'paging'. 'cursor_paging.cursor' can not be used together with 'filter' or 'sort' */
|
|
1589
|
+
cursorPaging?: CursorPaging;
|
|
1590
|
+
}
|
|
1591
|
+
export interface Aggregation extends AggregationKindOneOf {
|
|
1592
|
+
value?: ValueAggregation;
|
|
1593
|
+
range?: RangeAggregation;
|
|
1594
|
+
scalar?: ScalarAggregation;
|
|
1595
|
+
name?: string | null;
|
|
1596
|
+
type?: AggregationType;
|
|
1597
|
+
fieldPath?: string;
|
|
1598
|
+
groupBy?: GroupByAggregation;
|
|
1599
|
+
}
|
|
1600
|
+
/** @oneof */
|
|
1601
|
+
export interface AggregationKindOneOf {
|
|
1602
|
+
value?: ValueAggregation;
|
|
1603
|
+
range?: RangeAggregation;
|
|
1604
|
+
scalar?: ScalarAggregation;
|
|
1605
|
+
}
|
|
1606
|
+
export interface RangeBucket {
|
|
1607
|
+
/** Inclusive lower bound of the range. Required if to is not given. */
|
|
1608
|
+
from?: number | null;
|
|
1609
|
+
/** Exclusive upper bound of the range. Required if from is not given. */
|
|
1610
|
+
to?: number | null;
|
|
1611
|
+
}
|
|
1612
|
+
export declare enum SortType {
|
|
1613
|
+
COUNT = "COUNT",
|
|
1614
|
+
VALUE = "VALUE"
|
|
1615
|
+
}
|
|
1616
|
+
export declare enum SortDirection {
|
|
1617
|
+
DESC = "DESC",
|
|
1618
|
+
ASC = "ASC"
|
|
1619
|
+
}
|
|
1620
|
+
export declare enum MissingValues {
|
|
1621
|
+
EXCLUDE = "EXCLUDE",
|
|
1622
|
+
INCLUDE = "INCLUDE"
|
|
1623
|
+
}
|
|
1624
|
+
export interface IncludeMissingValuesOptions {
|
|
1625
|
+
/** can specify custom bucket name. Defaults are [string -> "N/A"], [int -> "0"], [bool -> "false"] ... */
|
|
1626
|
+
addToBucket?: string;
|
|
1627
|
+
}
|
|
1628
|
+
export declare enum ScalarType {
|
|
1629
|
+
UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
|
|
1630
|
+
COUNT_DISTINCT = "COUNT_DISTINCT",
|
|
1631
|
+
MIN = "MIN",
|
|
1632
|
+
MAX = "MAX",
|
|
1633
|
+
SUM = "SUM",
|
|
1634
|
+
AVG = "AVG"
|
|
1635
|
+
}
|
|
1636
|
+
export interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
1637
|
+
/** options for including missing values */
|
|
1638
|
+
includeOptions?: IncludeMissingValuesOptions;
|
|
1639
|
+
sortType?: SortType;
|
|
1640
|
+
sortDirection?: SortDirection;
|
|
1641
|
+
/** How many aggregations would you like to return? Can be between 1 and 250. 10 is the default. */
|
|
1642
|
+
limit?: number | null;
|
|
1643
|
+
/** should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
|
|
1644
|
+
missingValues?: MissingValues;
|
|
1645
|
+
}
|
|
1646
|
+
/** @oneof */
|
|
1647
|
+
export interface ValueAggregationOptionsOneOf {
|
|
1648
|
+
/** options for including missing values */
|
|
1649
|
+
includeOptions?: IncludeMissingValuesOptions;
|
|
1650
|
+
}
|
|
1651
|
+
export declare enum AggregationType {
|
|
1652
|
+
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
1653
|
+
VALUE = "VALUE",
|
|
1654
|
+
RANGE = "RANGE",
|
|
1655
|
+
SCALAR = "SCALAR"
|
|
1656
|
+
}
|
|
1657
|
+
export interface RangeAggregation {
|
|
1658
|
+
buckets?: RangeBucket[];
|
|
1659
|
+
}
|
|
1660
|
+
export interface ScalarAggregation {
|
|
1661
|
+
type?: ScalarType;
|
|
1662
|
+
}
|
|
1663
|
+
export interface GroupByAggregation extends GroupByAggregationKindOneOf {
|
|
1664
|
+
value?: ValueAggregation;
|
|
1665
|
+
name?: string | null;
|
|
1666
|
+
fieldPath?: string;
|
|
1667
|
+
}
|
|
1668
|
+
/** @oneof */
|
|
1669
|
+
export interface GroupByAggregationKindOneOf {
|
|
1670
|
+
value?: ValueAggregation;
|
|
1671
|
+
}
|
|
1672
|
+
export interface SearchDetails {
|
|
1673
|
+
/** boolean search mode */
|
|
1674
|
+
mode?: Mode;
|
|
1675
|
+
/** search term or expression */
|
|
1676
|
+
expression?: string | null;
|
|
1677
|
+
/** fields to search in. if empty - server will search in own default fields */
|
|
1678
|
+
fields?: string[];
|
|
1679
|
+
/** flag if should use auto fuzzy search (allowing typos by a managed proximity algorithm) */
|
|
1680
|
+
fuzzy?: boolean;
|
|
1681
|
+
}
|
|
1682
|
+
export declare enum Mode {
|
|
1683
|
+
/** any */
|
|
1684
|
+
OR = "OR",
|
|
1685
|
+
/** all */
|
|
1686
|
+
AND = "AND"
|
|
1687
|
+
}
|
|
1688
|
+
export interface SearchCategoriesResponse {
|
|
1689
|
+
/** Categories which satisfy the provided query. */
|
|
1690
|
+
categories?: Category[];
|
|
1691
|
+
/** Paging metadata. Contains cursor which can be used in next query. */
|
|
1692
|
+
pagingMetadata?: CursorPagingMetadata;
|
|
1693
|
+
/** Aggregation data. */
|
|
1694
|
+
aggregationData?: AggregationData;
|
|
1695
|
+
}
|
|
1696
|
+
export interface CursorPagingMetadata {
|
|
1697
|
+
/** Number of items returned in the response. */
|
|
1698
|
+
count?: number | null;
|
|
1699
|
+
/** Offset that was requested. */
|
|
1700
|
+
cursors?: Cursors;
|
|
1701
|
+
/**
|
|
1702
|
+
* Indicates if there are more results after the current page.
|
|
1703
|
+
* If `true`, another page of results can be retrieved.
|
|
1704
|
+
* If `false`, this is the last page.
|
|
1705
|
+
*/
|
|
1706
|
+
hasNext?: boolean | null;
|
|
1707
|
+
}
|
|
1708
|
+
export interface AggregationData {
|
|
1709
|
+
/** key = aggregation name (as derived from search request) */
|
|
1710
|
+
results?: AggregationResults[];
|
|
1711
|
+
}
|
|
1712
|
+
export interface ValueAggregationResult {
|
|
1713
|
+
value?: string;
|
|
1714
|
+
count?: number;
|
|
1715
|
+
}
|
|
1716
|
+
export interface RangeAggregationResult {
|
|
1717
|
+
from?: number | null;
|
|
1718
|
+
to?: number | null;
|
|
1719
|
+
count?: number;
|
|
1720
|
+
}
|
|
1721
|
+
export interface NestedAggregationResults extends NestedAggregationResultsResultOneOf {
|
|
1722
|
+
values?: ValueResults;
|
|
1723
|
+
ranges?: RangeResults;
|
|
1724
|
+
scalar?: ScalarResult;
|
|
1725
|
+
name?: string;
|
|
1726
|
+
type?: AggregationType;
|
|
1727
|
+
fieldPath?: string;
|
|
1728
|
+
}
|
|
1729
|
+
/** @oneof */
|
|
1730
|
+
export interface NestedAggregationResultsResultOneOf {
|
|
1731
|
+
values?: ValueResults;
|
|
1732
|
+
ranges?: RangeResults;
|
|
1733
|
+
scalar?: ScalarResult;
|
|
1734
|
+
}
|
|
1735
|
+
export interface ValueResults {
|
|
1736
|
+
results?: ValueAggregationResult[];
|
|
1737
|
+
}
|
|
1738
|
+
export interface RangeResults {
|
|
1739
|
+
results?: RangeAggregationResult[];
|
|
1740
|
+
}
|
|
1741
|
+
export interface ScalarResult {
|
|
1742
|
+
type?: ScalarType;
|
|
1743
|
+
value?: number;
|
|
1744
|
+
}
|
|
1745
|
+
export interface NestedValueAggregationResult {
|
|
1746
|
+
value?: string;
|
|
1747
|
+
nestedResults?: NestedAggregationResults;
|
|
1748
|
+
}
|
|
1749
|
+
export interface GroupByValueResults {
|
|
1750
|
+
results?: NestedValueAggregationResult[];
|
|
1751
|
+
}
|
|
1752
|
+
export interface AggregationResults extends AggregationResultsResultOneOf {
|
|
1753
|
+
values?: ValueResults;
|
|
1754
|
+
ranges?: RangeResults;
|
|
1755
|
+
scalar?: ScalarResult;
|
|
1756
|
+
groupedByValue?: GroupByValueResults;
|
|
1757
|
+
name?: string;
|
|
1758
|
+
type?: AggregationType;
|
|
1759
|
+
fieldPath?: string;
|
|
1760
|
+
}
|
|
1761
|
+
/** @oneof */
|
|
1762
|
+
export interface AggregationResultsResultOneOf {
|
|
1763
|
+
values?: ValueResults;
|
|
1764
|
+
ranges?: RangeResults;
|
|
1765
|
+
scalar?: ScalarResult;
|
|
1766
|
+
groupedByValue?: GroupByValueResults;
|
|
1767
|
+
}
|
|
1558
1768
|
export interface MoveCategoryRequest {
|
|
1559
1769
|
/** ID of category to place. */
|
|
1560
1770
|
categoryId: string;
|
|
@@ -4035,6 +4245,556 @@ export interface QueryCategoriesResponseNonNullableFields {
|
|
|
4035
4245
|
};
|
|
4036
4246
|
}[];
|
|
4037
4247
|
}
|
|
4248
|
+
export interface SearchCategoriesResponseNonNullableFields {
|
|
4249
|
+
categories: {
|
|
4250
|
+
image?: {
|
|
4251
|
+
id: string;
|
|
4252
|
+
url: string;
|
|
4253
|
+
height: number;
|
|
4254
|
+
width: number;
|
|
4255
|
+
};
|
|
4256
|
+
numberOfItems: number;
|
|
4257
|
+
totalNumberOfItems: number;
|
|
4258
|
+
breadcrumbs?: {
|
|
4259
|
+
values: {
|
|
4260
|
+
categoryId: string;
|
|
4261
|
+
categoryName: string;
|
|
4262
|
+
categorySlug: string;
|
|
4263
|
+
}[];
|
|
4264
|
+
};
|
|
4265
|
+
seoData?: {
|
|
4266
|
+
tags: {
|
|
4267
|
+
type: string;
|
|
4268
|
+
children: string;
|
|
4269
|
+
custom: boolean;
|
|
4270
|
+
disabled: boolean;
|
|
4271
|
+
}[];
|
|
4272
|
+
settings?: {
|
|
4273
|
+
preventAutoRedirect: boolean;
|
|
4274
|
+
keywords: {
|
|
4275
|
+
term: string;
|
|
4276
|
+
isMain: boolean;
|
|
4277
|
+
}[];
|
|
4278
|
+
};
|
|
4279
|
+
};
|
|
4280
|
+
richContentDescription?: {
|
|
4281
|
+
nodes: {
|
|
4282
|
+
buttonData?: {
|
|
4283
|
+
containerData?: {
|
|
4284
|
+
width?: {
|
|
4285
|
+
size: WidthType;
|
|
4286
|
+
};
|
|
4287
|
+
alignment: PluginContainerDataAlignment;
|
|
4288
|
+
};
|
|
4289
|
+
type: Type;
|
|
4290
|
+
link?: {
|
|
4291
|
+
url: string;
|
|
4292
|
+
anchor: string;
|
|
4293
|
+
target: Target;
|
|
4294
|
+
};
|
|
4295
|
+
};
|
|
4296
|
+
codeBlockData?: {
|
|
4297
|
+
textStyle?: {
|
|
4298
|
+
textAlignment: TextAlignment;
|
|
4299
|
+
};
|
|
4300
|
+
};
|
|
4301
|
+
dividerData?: {
|
|
4302
|
+
containerData?: {
|
|
4303
|
+
width?: {
|
|
4304
|
+
size: WidthType;
|
|
4305
|
+
};
|
|
4306
|
+
alignment: PluginContainerDataAlignment;
|
|
4307
|
+
};
|
|
4308
|
+
lineStyle: LineStyle;
|
|
4309
|
+
width: Width;
|
|
4310
|
+
alignment: Alignment;
|
|
4311
|
+
};
|
|
4312
|
+
fileData?: {
|
|
4313
|
+
containerData?: {
|
|
4314
|
+
width?: {
|
|
4315
|
+
size: WidthType;
|
|
4316
|
+
};
|
|
4317
|
+
alignment: PluginContainerDataAlignment;
|
|
4318
|
+
};
|
|
4319
|
+
pdfSettings?: {
|
|
4320
|
+
viewMode: ViewMode;
|
|
4321
|
+
};
|
|
4322
|
+
};
|
|
4323
|
+
galleryData?: {
|
|
4324
|
+
containerData?: {
|
|
4325
|
+
width?: {
|
|
4326
|
+
size: WidthType;
|
|
4327
|
+
};
|
|
4328
|
+
alignment: PluginContainerDataAlignment;
|
|
4329
|
+
};
|
|
4330
|
+
items: {
|
|
4331
|
+
image?: {
|
|
4332
|
+
link?: {
|
|
4333
|
+
url: string;
|
|
4334
|
+
anchor: string;
|
|
4335
|
+
target: Target;
|
|
4336
|
+
};
|
|
4337
|
+
};
|
|
4338
|
+
}[];
|
|
4339
|
+
options?: {
|
|
4340
|
+
layout?: {
|
|
4341
|
+
type: LayoutType;
|
|
4342
|
+
orientation: Orientation;
|
|
4343
|
+
};
|
|
4344
|
+
item?: {
|
|
4345
|
+
crop: Crop;
|
|
4346
|
+
};
|
|
4347
|
+
thumbnails?: {
|
|
4348
|
+
placement: ThumbnailsAlignment;
|
|
4349
|
+
};
|
|
4350
|
+
};
|
|
4351
|
+
};
|
|
4352
|
+
gifData?: {
|
|
4353
|
+
containerData?: {
|
|
4354
|
+
width?: {
|
|
4355
|
+
size: WidthType;
|
|
4356
|
+
};
|
|
4357
|
+
alignment: PluginContainerDataAlignment;
|
|
4358
|
+
};
|
|
4359
|
+
height: number;
|
|
4360
|
+
width: number;
|
|
4361
|
+
};
|
|
4362
|
+
headingData?: {
|
|
4363
|
+
level: number;
|
|
4364
|
+
textStyle?: {
|
|
4365
|
+
textAlignment: TextAlignment;
|
|
4366
|
+
};
|
|
4367
|
+
};
|
|
4368
|
+
htmlData?: {
|
|
4369
|
+
url: string;
|
|
4370
|
+
html: string;
|
|
4371
|
+
containerData?: {
|
|
4372
|
+
width?: {
|
|
4373
|
+
size: WidthType;
|
|
4374
|
+
};
|
|
4375
|
+
alignment: PluginContainerDataAlignment;
|
|
4376
|
+
};
|
|
4377
|
+
source: Source;
|
|
4378
|
+
};
|
|
4379
|
+
imageData?: {
|
|
4380
|
+
containerData?: {
|
|
4381
|
+
width?: {
|
|
4382
|
+
size: WidthType;
|
|
4383
|
+
};
|
|
4384
|
+
alignment: PluginContainerDataAlignment;
|
|
4385
|
+
};
|
|
4386
|
+
link?: {
|
|
4387
|
+
url: string;
|
|
4388
|
+
anchor: string;
|
|
4389
|
+
target: Target;
|
|
4390
|
+
};
|
|
4391
|
+
};
|
|
4392
|
+
linkPreviewData?: {
|
|
4393
|
+
containerData?: {
|
|
4394
|
+
width?: {
|
|
4395
|
+
size: WidthType;
|
|
4396
|
+
};
|
|
4397
|
+
alignment: PluginContainerDataAlignment;
|
|
4398
|
+
};
|
|
4399
|
+
link?: {
|
|
4400
|
+
url: string;
|
|
4401
|
+
anchor: string;
|
|
4402
|
+
target: Target;
|
|
4403
|
+
};
|
|
4404
|
+
};
|
|
4405
|
+
mapData?: {
|
|
4406
|
+
containerData?: {
|
|
4407
|
+
width?: {
|
|
4408
|
+
size: WidthType;
|
|
4409
|
+
};
|
|
4410
|
+
alignment: PluginContainerDataAlignment;
|
|
4411
|
+
};
|
|
4412
|
+
mapSettings?: {
|
|
4413
|
+
mapType: MapType;
|
|
4414
|
+
};
|
|
4415
|
+
};
|
|
4416
|
+
paragraphData?: {
|
|
4417
|
+
textStyle?: {
|
|
4418
|
+
textAlignment: TextAlignment;
|
|
4419
|
+
};
|
|
4420
|
+
};
|
|
4421
|
+
pollData?: {
|
|
4422
|
+
containerData?: {
|
|
4423
|
+
width?: {
|
|
4424
|
+
size: WidthType;
|
|
4425
|
+
};
|
|
4426
|
+
alignment: PluginContainerDataAlignment;
|
|
4427
|
+
};
|
|
4428
|
+
poll?: {
|
|
4429
|
+
options: Option[];
|
|
4430
|
+
settings?: {
|
|
4431
|
+
permissions?: {
|
|
4432
|
+
view: ViewRole;
|
|
4433
|
+
vote: VoteRole;
|
|
4434
|
+
};
|
|
4435
|
+
};
|
|
4436
|
+
};
|
|
4437
|
+
layout?: {
|
|
4438
|
+
poll?: {
|
|
4439
|
+
type: PollLayoutType;
|
|
4440
|
+
direction: PollLayoutDirection;
|
|
4441
|
+
};
|
|
4442
|
+
};
|
|
4443
|
+
design?: {
|
|
4444
|
+
poll?: {
|
|
4445
|
+
background?: {
|
|
4446
|
+
type: BackgroundType;
|
|
4447
|
+
};
|
|
4448
|
+
};
|
|
4449
|
+
};
|
|
4450
|
+
};
|
|
4451
|
+
textData?: {
|
|
4452
|
+
text: string;
|
|
4453
|
+
decorations: {
|
|
4454
|
+
anchorData?: {
|
|
4455
|
+
anchor: string;
|
|
4456
|
+
};
|
|
4457
|
+
linkData?: {
|
|
4458
|
+
link?: {
|
|
4459
|
+
url: string;
|
|
4460
|
+
anchor: string;
|
|
4461
|
+
target: Target;
|
|
4462
|
+
};
|
|
4463
|
+
};
|
|
4464
|
+
mentionData?: {
|
|
4465
|
+
name: string;
|
|
4466
|
+
slug: string;
|
|
4467
|
+
};
|
|
4468
|
+
fontSizeData?: {
|
|
4469
|
+
unit: FontType;
|
|
4470
|
+
};
|
|
4471
|
+
type: DecorationType;
|
|
4472
|
+
}[];
|
|
4473
|
+
};
|
|
4474
|
+
appEmbedData?: {
|
|
4475
|
+
type: AppType;
|
|
4476
|
+
};
|
|
4477
|
+
videoData?: {
|
|
4478
|
+
containerData?: {
|
|
4479
|
+
width?: {
|
|
4480
|
+
size: WidthType;
|
|
4481
|
+
};
|
|
4482
|
+
alignment: PluginContainerDataAlignment;
|
|
4483
|
+
};
|
|
4484
|
+
};
|
|
4485
|
+
embedData?: {
|
|
4486
|
+
containerData?: {
|
|
4487
|
+
width?: {
|
|
4488
|
+
size: WidthType;
|
|
4489
|
+
};
|
|
4490
|
+
alignment: PluginContainerDataAlignment;
|
|
4491
|
+
};
|
|
4492
|
+
};
|
|
4493
|
+
collapsibleListData?: {
|
|
4494
|
+
containerData?: {
|
|
4495
|
+
width?: {
|
|
4496
|
+
size: WidthType;
|
|
4497
|
+
};
|
|
4498
|
+
alignment: PluginContainerDataAlignment;
|
|
4499
|
+
};
|
|
4500
|
+
initialExpandedItems: InitialExpandedItems;
|
|
4501
|
+
direction: Direction;
|
|
4502
|
+
};
|
|
4503
|
+
tableData?: {
|
|
4504
|
+
containerData?: {
|
|
4505
|
+
width?: {
|
|
4506
|
+
size: WidthType;
|
|
4507
|
+
};
|
|
4508
|
+
alignment: PluginContainerDataAlignment;
|
|
4509
|
+
};
|
|
4510
|
+
dimensions?: {
|
|
4511
|
+
colsWidthRatio: number[];
|
|
4512
|
+
rowsHeight: number[];
|
|
4513
|
+
colsMinWidth: number[];
|
|
4514
|
+
};
|
|
4515
|
+
};
|
|
4516
|
+
tableCellData?: {
|
|
4517
|
+
cellStyle?: {
|
|
4518
|
+
verticalAlignment: VerticalAlignment;
|
|
4519
|
+
};
|
|
4520
|
+
};
|
|
4521
|
+
audioData?: {
|
|
4522
|
+
containerData?: {
|
|
4523
|
+
width?: {
|
|
4524
|
+
size: WidthType;
|
|
4525
|
+
};
|
|
4526
|
+
alignment: PluginContainerDataAlignment;
|
|
4527
|
+
};
|
|
4528
|
+
};
|
|
4529
|
+
orderedListData?: {
|
|
4530
|
+
indentation: number;
|
|
4531
|
+
};
|
|
4532
|
+
bulletedListData?: {
|
|
4533
|
+
indentation: number;
|
|
4534
|
+
};
|
|
4535
|
+
blockquoteData?: {
|
|
4536
|
+
indentation: number;
|
|
4537
|
+
};
|
|
4538
|
+
type: NodeType;
|
|
4539
|
+
id: string;
|
|
4540
|
+
nodes: NonNullable<NonNullable<NonNullable<SearchCategoriesResponseNonNullableFields>['categories'][0]>['richContentDescription']>['nodes'][];
|
|
4541
|
+
}[];
|
|
4542
|
+
metadata?: {
|
|
4543
|
+
version: number;
|
|
4544
|
+
};
|
|
4545
|
+
documentStyle?: {
|
|
4546
|
+
headerOne?: {
|
|
4547
|
+
decorations: {
|
|
4548
|
+
anchorData?: {
|
|
4549
|
+
anchor: string;
|
|
4550
|
+
};
|
|
4551
|
+
linkData?: {
|
|
4552
|
+
link?: {
|
|
4553
|
+
url: string;
|
|
4554
|
+
anchor: string;
|
|
4555
|
+
target: Target;
|
|
4556
|
+
};
|
|
4557
|
+
};
|
|
4558
|
+
mentionData?: {
|
|
4559
|
+
name: string;
|
|
4560
|
+
slug: string;
|
|
4561
|
+
};
|
|
4562
|
+
fontSizeData?: {
|
|
4563
|
+
unit: FontType;
|
|
4564
|
+
};
|
|
4565
|
+
type: DecorationType;
|
|
4566
|
+
}[];
|
|
4567
|
+
};
|
|
4568
|
+
headerTwo?: {
|
|
4569
|
+
decorations: {
|
|
4570
|
+
anchorData?: {
|
|
4571
|
+
anchor: string;
|
|
4572
|
+
};
|
|
4573
|
+
linkData?: {
|
|
4574
|
+
link?: {
|
|
4575
|
+
url: string;
|
|
4576
|
+
anchor: string;
|
|
4577
|
+
target: Target;
|
|
4578
|
+
};
|
|
4579
|
+
};
|
|
4580
|
+
mentionData?: {
|
|
4581
|
+
name: string;
|
|
4582
|
+
slug: string;
|
|
4583
|
+
};
|
|
4584
|
+
fontSizeData?: {
|
|
4585
|
+
unit: FontType;
|
|
4586
|
+
};
|
|
4587
|
+
type: DecorationType;
|
|
4588
|
+
}[];
|
|
4589
|
+
};
|
|
4590
|
+
headerThree?: {
|
|
4591
|
+
decorations: {
|
|
4592
|
+
anchorData?: {
|
|
4593
|
+
anchor: string;
|
|
4594
|
+
};
|
|
4595
|
+
linkData?: {
|
|
4596
|
+
link?: {
|
|
4597
|
+
url: string;
|
|
4598
|
+
anchor: string;
|
|
4599
|
+
target: Target;
|
|
4600
|
+
};
|
|
4601
|
+
};
|
|
4602
|
+
mentionData?: {
|
|
4603
|
+
name: string;
|
|
4604
|
+
slug: string;
|
|
4605
|
+
};
|
|
4606
|
+
fontSizeData?: {
|
|
4607
|
+
unit: FontType;
|
|
4608
|
+
};
|
|
4609
|
+
type: DecorationType;
|
|
4610
|
+
}[];
|
|
4611
|
+
};
|
|
4612
|
+
headerFour?: {
|
|
4613
|
+
decorations: {
|
|
4614
|
+
anchorData?: {
|
|
4615
|
+
anchor: string;
|
|
4616
|
+
};
|
|
4617
|
+
linkData?: {
|
|
4618
|
+
link?: {
|
|
4619
|
+
url: string;
|
|
4620
|
+
anchor: string;
|
|
4621
|
+
target: Target;
|
|
4622
|
+
};
|
|
4623
|
+
};
|
|
4624
|
+
mentionData?: {
|
|
4625
|
+
name: string;
|
|
4626
|
+
slug: string;
|
|
4627
|
+
};
|
|
4628
|
+
fontSizeData?: {
|
|
4629
|
+
unit: FontType;
|
|
4630
|
+
};
|
|
4631
|
+
type: DecorationType;
|
|
4632
|
+
}[];
|
|
4633
|
+
};
|
|
4634
|
+
headerFive?: {
|
|
4635
|
+
decorations: {
|
|
4636
|
+
anchorData?: {
|
|
4637
|
+
anchor: string;
|
|
4638
|
+
};
|
|
4639
|
+
linkData?: {
|
|
4640
|
+
link?: {
|
|
4641
|
+
url: string;
|
|
4642
|
+
anchor: string;
|
|
4643
|
+
target: Target;
|
|
4644
|
+
};
|
|
4645
|
+
};
|
|
4646
|
+
mentionData?: {
|
|
4647
|
+
name: string;
|
|
4648
|
+
slug: string;
|
|
4649
|
+
};
|
|
4650
|
+
fontSizeData?: {
|
|
4651
|
+
unit: FontType;
|
|
4652
|
+
};
|
|
4653
|
+
type: DecorationType;
|
|
4654
|
+
}[];
|
|
4655
|
+
};
|
|
4656
|
+
headerSix?: {
|
|
4657
|
+
decorations: {
|
|
4658
|
+
anchorData?: {
|
|
4659
|
+
anchor: string;
|
|
4660
|
+
};
|
|
4661
|
+
linkData?: {
|
|
4662
|
+
link?: {
|
|
4663
|
+
url: string;
|
|
4664
|
+
anchor: string;
|
|
4665
|
+
target: Target;
|
|
4666
|
+
};
|
|
4667
|
+
};
|
|
4668
|
+
mentionData?: {
|
|
4669
|
+
name: string;
|
|
4670
|
+
slug: string;
|
|
4671
|
+
};
|
|
4672
|
+
fontSizeData?: {
|
|
4673
|
+
unit: FontType;
|
|
4674
|
+
};
|
|
4675
|
+
type: DecorationType;
|
|
4676
|
+
}[];
|
|
4677
|
+
};
|
|
4678
|
+
paragraph?: {
|
|
4679
|
+
decorations: {
|
|
4680
|
+
anchorData?: {
|
|
4681
|
+
anchor: string;
|
|
4682
|
+
};
|
|
4683
|
+
linkData?: {
|
|
4684
|
+
link?: {
|
|
4685
|
+
url: string;
|
|
4686
|
+
anchor: string;
|
|
4687
|
+
target: Target;
|
|
4688
|
+
};
|
|
4689
|
+
};
|
|
4690
|
+
mentionData?: {
|
|
4691
|
+
name: string;
|
|
4692
|
+
slug: string;
|
|
4693
|
+
};
|
|
4694
|
+
fontSizeData?: {
|
|
4695
|
+
unit: FontType;
|
|
4696
|
+
};
|
|
4697
|
+
type: DecorationType;
|
|
4698
|
+
}[];
|
|
4699
|
+
};
|
|
4700
|
+
blockquote?: {
|
|
4701
|
+
decorations: {
|
|
4702
|
+
anchorData?: {
|
|
4703
|
+
anchor: string;
|
|
4704
|
+
};
|
|
4705
|
+
linkData?: {
|
|
4706
|
+
link?: {
|
|
4707
|
+
url: string;
|
|
4708
|
+
anchor: string;
|
|
4709
|
+
target: Target;
|
|
4710
|
+
};
|
|
4711
|
+
};
|
|
4712
|
+
mentionData?: {
|
|
4713
|
+
name: string;
|
|
4714
|
+
slug: string;
|
|
4715
|
+
};
|
|
4716
|
+
fontSizeData?: {
|
|
4717
|
+
unit: FontType;
|
|
4718
|
+
};
|
|
4719
|
+
type: DecorationType;
|
|
4720
|
+
}[];
|
|
4721
|
+
};
|
|
4722
|
+
codeBlock?: {
|
|
4723
|
+
decorations: {
|
|
4724
|
+
anchorData?: {
|
|
4725
|
+
anchor: string;
|
|
4726
|
+
};
|
|
4727
|
+
linkData?: {
|
|
4728
|
+
link?: {
|
|
4729
|
+
url: string;
|
|
4730
|
+
anchor: string;
|
|
4731
|
+
target: Target;
|
|
4732
|
+
};
|
|
4733
|
+
};
|
|
4734
|
+
mentionData?: {
|
|
4735
|
+
name: string;
|
|
4736
|
+
slug: string;
|
|
4737
|
+
};
|
|
4738
|
+
fontSizeData?: {
|
|
4739
|
+
unit: FontType;
|
|
4740
|
+
};
|
|
4741
|
+
type: DecorationType;
|
|
4742
|
+
}[];
|
|
4743
|
+
};
|
|
4744
|
+
};
|
|
4745
|
+
};
|
|
4746
|
+
treeReference?: {
|
|
4747
|
+
appNamespace: string;
|
|
4748
|
+
};
|
|
4749
|
+
}[];
|
|
4750
|
+
aggregationData?: {
|
|
4751
|
+
results: {
|
|
4752
|
+
values?: {
|
|
4753
|
+
results: {
|
|
4754
|
+
value: string;
|
|
4755
|
+
count: number;
|
|
4756
|
+
}[];
|
|
4757
|
+
};
|
|
4758
|
+
ranges?: {
|
|
4759
|
+
results: {
|
|
4760
|
+
count: number;
|
|
4761
|
+
}[];
|
|
4762
|
+
};
|
|
4763
|
+
scalar?: {
|
|
4764
|
+
type: ScalarType;
|
|
4765
|
+
value: number;
|
|
4766
|
+
};
|
|
4767
|
+
groupedByValue?: {
|
|
4768
|
+
results: {
|
|
4769
|
+
value: string;
|
|
4770
|
+
nestedResults?: {
|
|
4771
|
+
values?: {
|
|
4772
|
+
results: {
|
|
4773
|
+
value: string;
|
|
4774
|
+
count: number;
|
|
4775
|
+
}[];
|
|
4776
|
+
};
|
|
4777
|
+
ranges?: {
|
|
4778
|
+
results: {
|
|
4779
|
+
count: number;
|
|
4780
|
+
}[];
|
|
4781
|
+
};
|
|
4782
|
+
scalar?: {
|
|
4783
|
+
type: ScalarType;
|
|
4784
|
+
value: number;
|
|
4785
|
+
};
|
|
4786
|
+
name: string;
|
|
4787
|
+
type: AggregationType;
|
|
4788
|
+
fieldPath: string;
|
|
4789
|
+
};
|
|
4790
|
+
}[];
|
|
4791
|
+
};
|
|
4792
|
+
name: string;
|
|
4793
|
+
type: AggregationType;
|
|
4794
|
+
fieldPath: string;
|
|
4795
|
+
}[];
|
|
4796
|
+
};
|
|
4797
|
+
}
|
|
4038
4798
|
export interface MoveCategoryResponseNonNullableFields {
|
|
4039
4799
|
categoriesAfterMove: string[];
|
|
4040
4800
|
}
|