@wix/categories 1.0.22 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/build/cjs/context.d.ts +1 -0
  2. package/build/cjs/context.js +28 -0
  3. package/build/cjs/context.js.map +1 -0
  4. package/build/cjs/index.js +5 -1
  5. package/build/cjs/index.js.map +1 -1
  6. package/build/cjs/index.typings.js +5 -1
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.js +5 -1
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/src/categories-v1-category.context.d.ts +20 -0
  11. package/build/cjs/src/categories-v1-category.context.js +203 -0
  12. package/build/cjs/src/categories-v1-category.context.js.map +1 -0
  13. package/build/cjs/src/categories-v1-category.http.js +664 -501
  14. package/build/cjs/src/categories-v1-category.http.js.map +1 -1
  15. package/build/cjs/src/categories-v1-category.meta.d.ts +1 -1
  16. package/build/cjs/src/categories-v1-category.meta.js +5 -1
  17. package/build/cjs/src/categories-v1-category.meta.js.map +1 -1
  18. package/build/cjs/src/categories-v1-category.public.d.ts +13 -12
  19. package/build/cjs/src/categories-v1-category.public.js +9 -1
  20. package/build/cjs/src/categories-v1-category.public.js.map +1 -1
  21. package/build/cjs/src/categories-v1-category.types.d.ts +168 -26
  22. package/build/cjs/src/categories-v1-category.types.js +69 -42
  23. package/build/cjs/src/categories-v1-category.types.js.map +1 -1
  24. package/build/cjs/src/categories-v1-category.universal.d.ts +327 -49
  25. package/build/cjs/src/categories-v1-category.universal.js +374 -155
  26. package/build/cjs/src/categories-v1-category.universal.js.map +1 -1
  27. package/build/es/context.d.ts +1 -0
  28. package/build/es/context.js +2 -0
  29. package/build/es/context.js.map +1 -0
  30. package/build/es/src/categories-v1-category.context.d.ts +20 -0
  31. package/build/es/src/categories-v1-category.context.js +182 -0
  32. package/build/es/src/categories-v1-category.context.js.map +1 -0
  33. package/build/es/src/categories-v1-category.http.js +664 -501
  34. package/build/es/src/categories-v1-category.http.js.map +1 -1
  35. package/build/es/src/categories-v1-category.meta.d.ts +1 -1
  36. package/build/es/src/categories-v1-category.public.d.ts +13 -12
  37. package/build/es/src/categories-v1-category.public.js +1 -0
  38. package/build/es/src/categories-v1-category.public.js.map +1 -1
  39. package/build/es/src/categories-v1-category.types.d.ts +168 -26
  40. package/build/es/src/categories-v1-category.types.js +29 -2
  41. package/build/es/src/categories-v1-category.types.js.map +1 -1
  42. package/build/es/src/categories-v1-category.universal.d.ts +327 -49
  43. package/build/es/src/categories-v1-category.universal.js +328 -113
  44. package/build/es/src/categories-v1-category.universal.js.map +1 -1
  45. package/context/package.json +6 -0
  46. package/package.json +12 -6
@@ -1372,6 +1372,8 @@ export interface ExtendedFields {
1372
1372
  * The value of each key is structured according to the schema defined when the extended fields were configured.
1373
1373
  *
1374
1374
  * You can only access fields for which you have the appropriate permissions.
1375
+ *
1376
+ * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
1375
1377
  */
1376
1378
  namespaces?: Record<string, Record<string, any>>;
1377
1379
  }
@@ -1526,13 +1528,12 @@ export interface PlatformPaging {
1526
1528
  offset?: number | null;
1527
1529
  }
1528
1530
  export interface CursorPaging {
1529
- /** Number of items to load. */
1531
+ /** Maximum number of items to return in the results. */
1530
1532
  limit?: number | null;
1531
1533
  /**
1532
1534
  * Pointer to the next or previous page in the list of results.
1533
1535
  *
1534
- * You can get the relevant cursor token
1535
- * from the `pagingMetadata` object in the previous call's response.
1536
+ * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
1536
1537
  * Not relevant for the first request.
1537
1538
  */
1538
1539
  cursor?: string | null;
@@ -1550,9 +1551,9 @@ export interface PlatformPagingMetadataV2 {
1550
1551
  cursors?: Cursors;
1551
1552
  }
1552
1553
  export interface Cursors {
1553
- /** Cursor pointing to next page in the list of results. */
1554
+ /** Cursor string pointing to the next page in the list of results. */
1554
1555
  next?: string | null;
1555
- /** Cursor pointing to previous page in the list of results. */
1556
+ /** Cursor pointing to the previous page in the list of results. */
1556
1557
  prev?: string | null;
1557
1558
  }
1558
1559
  export interface ListCompactCategoriesByIdsRequest {
@@ -1588,7 +1589,10 @@ export interface SearchCategoriesRequest {
1588
1589
  fields?: RequestedFields[];
1589
1590
  }
1590
1591
  export interface CursorSearch extends CursorSearchPagingMethodOneOf {
1591
- /** 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' */
1592
+ /**
1593
+ * Cursor pointing to page of results.
1594
+ * When requesting 'cursor_paging.cursor', no `filter`, `sort` or `search` can be provided.
1595
+ */
1592
1596
  cursorPaging?: CursorPaging;
1593
1597
  /** 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) */
1594
1598
  filter?: Record<string, any> | null;
@@ -1596,155 +1600,230 @@ export interface CursorSearch extends CursorSearchPagingMethodOneOf {
1596
1600
  sort?: Sorting[];
1597
1601
  /** 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. */
1598
1602
  aggregations?: Aggregation[];
1599
- /** free text to match in searchable fields */
1603
+ /** Free text to match in searchable fields */
1600
1604
  search?: SearchDetails;
1605
+ /**
1606
+ * UTC offset or IANA time zone. Valid values are
1607
+ * ISO 8601 UTC offsets, such as +02:00 or -06:00,
1608
+ * and IANA time zone IDs, such as Europe/Rome
1609
+ *
1610
+ * Affects all filters and aggregations returned values.
1611
+ * You may override this behavior in a specific filter by providing
1612
+ * timestamps including time zone. e.g. `"2023-12-20T10:52:34.795Z"`
1613
+ */
1614
+ timeZone?: string | null;
1601
1615
  }
1602
1616
  /** @oneof */
1603
1617
  export interface CursorSearchPagingMethodOneOf {
1604
- /** 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' */
1618
+ /**
1619
+ * Cursor pointing to page of results.
1620
+ * When requesting 'cursor_paging.cursor', no `filter`, `sort` or `search` can be provided.
1621
+ */
1605
1622
  cursorPaging?: CursorPaging;
1606
1623
  }
1607
1624
  export interface Aggregation extends AggregationKindOneOf {
1625
+ /** Value aggregation */
1608
1626
  value?: ValueAggregation;
1627
+ /** Range aggregation */
1609
1628
  range?: RangeAggregation;
1629
+ /** Scalar aggregation */
1610
1630
  scalar?: ScalarAggregation;
1631
+ /** Date histogram aggregation */
1611
1632
  dateHistogram?: DateHistogramAggregation;
1633
+ /** Nested aggregation */
1612
1634
  nested?: NestedAggregation;
1635
+ /** User-defined name of aggregation, should be unique, will appear in aggregation results */
1613
1636
  name?: string | null;
1637
+ /** Type of aggregation, client must provide matching aggregation field below */
1614
1638
  type?: AggregationType;
1639
+ /** Field to aggregate by, use dot notation to specify json path */
1615
1640
  fieldPath?: string;
1641
+ /** deprecated, use `nested` instead */
1616
1642
  groupBy?: GroupByAggregation;
1617
1643
  }
1618
1644
  /** @oneof */
1619
1645
  export interface AggregationKindOneOf {
1646
+ /** Value aggregation */
1620
1647
  value?: ValueAggregation;
1648
+ /** Range aggregation */
1621
1649
  range?: RangeAggregation;
1650
+ /** Scalar aggregation */
1622
1651
  scalar?: ScalarAggregation;
1652
+ /** Date histogram aggregation */
1623
1653
  dateHistogram?: DateHistogramAggregation;
1654
+ /** Nested aggregation */
1624
1655
  nested?: NestedAggregation;
1625
1656
  }
1626
1657
  export interface RangeBucket {
1627
- /** Inclusive lower bound of the range. Required if to is not given. */
1658
+ /** Inclusive lower bound of the range. Required if to is not given */
1628
1659
  from?: number | null;
1629
- /** Exclusive upper bound of the range. Required if from is not given. */
1660
+ /** Exclusive upper bound of the range. Required if from is not given */
1630
1661
  to?: number | null;
1631
1662
  }
1632
1663
  export declare enum SortType {
1664
+ /** Should sort by number of matches */
1633
1665
  COUNT = "COUNT",
1666
+ /** Should sort by value of the field alphabetically */
1634
1667
  VALUE = "VALUE"
1635
1668
  }
1636
1669
  export declare enum SortDirection {
1670
+ /** Should sort in descending order */
1637
1671
  DESC = "DESC",
1672
+ /** Should sort in ascending order */
1638
1673
  ASC = "ASC"
1639
1674
  }
1640
1675
  export declare enum MissingValues {
1676
+ /** Should missing values be excluded from the aggregation results */
1641
1677
  EXCLUDE = "EXCLUDE",
1678
+ /** Should missing values be included in the aggregation results */
1642
1679
  INCLUDE = "INCLUDE"
1643
1680
  }
1644
1681
  export interface IncludeMissingValuesOptions {
1645
- /** can specify custom bucket name. Defaults are [string -> "N/A"], [int -> "0"], [bool -> "false"] ... */
1682
+ /** Can specify custom bucket name. Defaults are [string -> "N/A"], [int -> "0"], [bool -> "false"] ... */
1646
1683
  addToBucket?: string;
1647
1684
  }
1648
1685
  export declare enum ScalarType {
1649
1686
  UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
1687
+ /** Count of distinct values */
1650
1688
  COUNT_DISTINCT = "COUNT_DISTINCT",
1689
+ /** Minimum value */
1651
1690
  MIN = "MIN",
1691
+ /** Maximum value */
1652
1692
  MAX = "MAX",
1693
+ /** Sum of values */
1653
1694
  SUM = "SUM",
1695
+ /** Average of values */
1654
1696
  AVG = "AVG"
1655
1697
  }
1656
1698
  export interface ValueAggregation extends ValueAggregationOptionsOneOf {
1657
- /** options for including missing values */
1699
+ /** Options for including missing values */
1658
1700
  includeOptions?: IncludeMissingValuesOptions;
1701
+ /** Should sort by number of matches or value of the field */
1659
1702
  sortType?: SortType;
1703
+ /** Should sort in ascending or descending order */
1660
1704
  sortDirection?: SortDirection;
1661
1705
  /** How many aggregations would you like to return? Can be between 1 and 250. 10 is the default. */
1662
1706
  limit?: number | null;
1663
- /** should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
1707
+ /** Should missing values be included or excluded from the aggregation results. Default is EXCLUDE */
1664
1708
  missingValues?: MissingValues;
1665
1709
  }
1666
1710
  /** @oneof */
1667
1711
  export interface ValueAggregationOptionsOneOf {
1668
- /** options for including missing values */
1712
+ /** Options for including missing values */
1669
1713
  includeOptions?: IncludeMissingValuesOptions;
1670
1714
  }
1671
1715
  export declare enum NestedAggregationType {
1672
1716
  UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
1717
+ /** An aggregation where result buckets are dynamically built - one per unique value */
1673
1718
  VALUE = "VALUE",
1719
+ /** An aggregation, where user can define set of ranges - each representing a bucket */
1674
1720
  RANGE = "RANGE",
1721
+ /** A single-value metric aggregation - e.g. min, max, sum, avg */
1675
1722
  SCALAR = "SCALAR",
1723
+ /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
1676
1724
  DATE_HISTOGRAM = "DATE_HISTOGRAM"
1677
1725
  }
1678
1726
  export interface RangeAggregation {
1727
+ /** 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 */
1679
1728
  buckets?: RangeBucket[];
1680
1729
  }
1681
1730
  export interface ScalarAggregation {
1731
+ /** Define the operator for the scalar aggregation */
1682
1732
  type?: ScalarType;
1683
1733
  }
1684
1734
  export interface DateHistogramAggregation {
1735
+ /** Interval for date histogram aggregation */
1685
1736
  interval?: Interval;
1686
1737
  }
1687
1738
  export declare enum Interval {
1688
1739
  UNKNOWN_INTERVAL = "UNKNOWN_INTERVAL",
1740
+ /** Yearly interval */
1689
1741
  YEAR = "YEAR",
1742
+ /** Monthly interval */
1690
1743
  MONTH = "MONTH",
1744
+ /** Weekly interval */
1691
1745
  WEEK = "WEEK",
1746
+ /** Daily interval */
1692
1747
  DAY = "DAY",
1748
+ /** Hourly interval */
1693
1749
  HOUR = "HOUR",
1750
+ /** Minute interval */
1694
1751
  MINUTE = "MINUTE",
1752
+ /** Second interval */
1695
1753
  SECOND = "SECOND"
1696
1754
  }
1697
1755
  export interface NestedAggregationItem extends NestedAggregationItemKindOneOf {
1756
+ /** Value aggregation */
1698
1757
  value?: ValueAggregation;
1758
+ /** Range aggregation */
1699
1759
  range?: RangeAggregation;
1760
+ /** Scalar aggregation */
1700
1761
  scalar?: ScalarAggregation;
1762
+ /** Date histogram aggregation */
1701
1763
  dateHistogram?: DateHistogramAggregation;
1764
+ /** User-defined name of aggregation, should be unique, will appear in aggregation results */
1702
1765
  name?: string | null;
1766
+ /** Type of aggregation, client must provide matching aggregation field below */
1703
1767
  type?: NestedAggregationType;
1768
+ /** Field to aggregate by, use dont notation to specify json path */
1704
1769
  fieldPath?: string;
1705
1770
  }
1706
1771
  /** @oneof */
1707
1772
  export interface NestedAggregationItemKindOneOf {
1773
+ /** Value aggregation */
1708
1774
  value?: ValueAggregation;
1775
+ /** Range aggregation */
1709
1776
  range?: RangeAggregation;
1777
+ /** Scalar aggregation */
1710
1778
  scalar?: ScalarAggregation;
1779
+ /** Date histogram aggregation */
1711
1780
  dateHistogram?: DateHistogramAggregation;
1712
1781
  }
1713
1782
  export declare enum AggregationType {
1714
1783
  UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
1784
+ /** An aggregation where result buckets are dynamically built - one per unique value */
1715
1785
  VALUE = "VALUE",
1786
+ /** An aggregation, where user can define set of ranges - each representing a bucket */
1716
1787
  RANGE = "RANGE",
1788
+ /** A single-value metric aggregation - e.g. min, max, sum, avg */
1717
1789
  SCALAR = "SCALAR",
1790
+ /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
1718
1791
  DATE_HISTOGRAM = "DATE_HISTOGRAM",
1792
+ /** Multi-level aggregation, where each next aggregation is nested within previous one */
1719
1793
  NESTED = "NESTED"
1720
1794
  }
1721
- /** nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
1795
+ /** Nested aggregation expressed through a list of aggregation where each next aggregation is nested within previous one */
1722
1796
  export interface NestedAggregation {
1797
+ /** Flattened list of aggregations, where each next aggregation is nested within previous one */
1723
1798
  nestedAggregations?: NestedAggregationItem[];
1724
1799
  }
1725
1800
  export interface GroupByAggregation extends GroupByAggregationKindOneOf {
1801
+ /** Value aggregation configuration */
1726
1802
  value?: ValueAggregation;
1803
+ /** User-defined name of aggregation, should be unique, will appear in aggregation results */
1727
1804
  name?: string | null;
1805
+ /** Field to aggregate by */
1728
1806
  fieldPath?: string;
1729
1807
  }
1730
1808
  /** @oneof */
1731
1809
  export interface GroupByAggregationKindOneOf {
1810
+ /** Value aggregation configuration */
1732
1811
  value?: ValueAggregation;
1733
1812
  }
1734
1813
  export interface SearchDetails {
1735
- /** boolean search mode */
1814
+ /** Defines how separate search terms in `expression` are combined */
1736
1815
  mode?: Mode;
1737
- /** search term or expression */
1816
+ /** Search term or expression */
1738
1817
  expression?: string | null;
1739
- /** fields to search in. if empty - server will search in own default fields */
1818
+ /** Fields to search in. If empty - will search in all searchable fields. Use dot notation to specify json path */
1740
1819
  fields?: string[];
1741
- /** flag if should use auto fuzzy search (allowing typos by a managed proximity algorithm) */
1820
+ /** Flag if should use auto fuzzy search (allowing typos by a managed proximity algorithm) */
1742
1821
  fuzzy?: boolean;
1743
1822
  }
1744
1823
  export declare enum Mode {
1745
- /** any */
1824
+ /** Any of the search terms must be present */
1746
1825
  OR = "OR",
1747
- /** all */
1826
+ /** All search terms must be present */
1748
1827
  AND = "AND"
1749
1828
  }
1750
1829
  export interface SearchCategoriesResponse {
@@ -1758,12 +1837,13 @@ export interface SearchCategoriesResponse {
1758
1837
  export interface CursorPagingMetadata {
1759
1838
  /** Number of items returned in the response. */
1760
1839
  count?: number | null;
1761
- /** Offset that was requested. */
1840
+ /** Cursor strings that point to the next page, previous page, or both. */
1762
1841
  cursors?: Cursors;
1763
1842
  /**
1764
- * Indicates if there are more results after the current page.
1765
- * If `true`, another page of results can be retrieved.
1766
- * If `false`, this is the last page.
1843
+ * Whether there are more pages to retrieve following the current page.
1844
+ *
1845
+ * + `true`: Another page of results can be retrieved.
1846
+ * + `false`: This is the last page.
1767
1847
  */
1768
1848
  hasNext?: boolean | null;
1769
1849
  }
@@ -1772,105 +1852,160 @@ export interface AggregationData {
1772
1852
  results?: AggregationResults[];
1773
1853
  }
1774
1854
  export interface ValueAggregationResult {
1855
+ /** Value of the field */
1775
1856
  value?: string;
1857
+ /** Count of entities with this value */
1776
1858
  count?: number;
1777
1859
  }
1778
1860
  export interface RangeAggregationResult {
1861
+ /** Inclusive lower bound of the range */
1779
1862
  from?: number | null;
1863
+ /** Exclusive upper bound of the range */
1780
1864
  to?: number | null;
1865
+ /** Count of entities in this range */
1781
1866
  count?: number;
1782
1867
  }
1783
1868
  export interface NestedAggregationResults extends NestedAggregationResultsResultOneOf {
1869
+ /** Value aggregation results */
1784
1870
  values?: ValueResults;
1871
+ /** Range aggregation results */
1785
1872
  ranges?: RangeResults;
1873
+ /** Scalar aggregation results */
1786
1874
  scalar?: ScalarResult;
1875
+ /** User-defined name of aggregation, matches the one provided in request */
1787
1876
  name?: string;
1877
+ /** Type of aggregation that matches result */
1788
1878
  type?: AggregationType;
1879
+ /** Field to aggregate by, matches the one provided in request */
1789
1880
  fieldPath?: string;
1790
1881
  }
1791
1882
  /** @oneof */
1792
1883
  export interface NestedAggregationResultsResultOneOf {
1884
+ /** Value aggregation results */
1793
1885
  values?: ValueResults;
1886
+ /** Range aggregation results */
1794
1887
  ranges?: RangeResults;
1888
+ /** Scalar aggregation results */
1795
1889
  scalar?: ScalarResult;
1796
1890
  }
1797
1891
  export interface ValueResults {
1892
+ /** List of value aggregations */
1798
1893
  results?: ValueAggregationResult[];
1799
1894
  }
1800
1895
  export interface RangeResults {
1896
+ /** List of ranges returned in same order as requested */
1801
1897
  results?: RangeAggregationResult[];
1802
1898
  }
1803
1899
  export interface ScalarResult {
1900
+ /** Type of scalar aggregation */
1804
1901
  type?: ScalarType;
1902
+ /** Value of the scalar aggregation */
1805
1903
  value?: number;
1806
1904
  }
1807
1905
  export interface NestedValueAggregationResult {
1906
+ /** Value of the field */
1808
1907
  value?: string;
1908
+ /** Nested aggregations */
1809
1909
  nestedResults?: NestedAggregationResults;
1810
1910
  }
1811
1911
  export interface ValueResult {
1912
+ /** Value of the field */
1812
1913
  value?: string;
1914
+ /** Count of entities with this value */
1813
1915
  count?: number | null;
1814
1916
  }
1815
1917
  export interface RangeResult {
1918
+ /** Inclusive lower bound of the range */
1816
1919
  from?: number | null;
1920
+ /** Exclusive upper bound of the range */
1817
1921
  to?: number | null;
1922
+ /** Count of entities in this range */
1818
1923
  count?: number | null;
1819
1924
  }
1820
1925
  export interface NestedResultsScalarResult {
1926
+ /** Value of the scalar aggregation */
1821
1927
  value?: number;
1822
1928
  }
1823
1929
  export interface NestedResultValue extends NestedResultValueResultOneOf {
1930
+ /** Value aggregation result */
1824
1931
  value?: ValueResult;
1932
+ /** Range aggregation result */
1825
1933
  range?: RangeResult;
1934
+ /** Scalar aggregation result */
1826
1935
  scalar?: NestedResultsScalarResult;
1936
+ /** Date histogram aggregation result */
1827
1937
  dateHistogram?: ValueResult;
1828
1938
  }
1829
1939
  /** @oneof */
1830
1940
  export interface NestedResultValueResultOneOf {
1941
+ /** Value aggregation result */
1831
1942
  value?: ValueResult;
1943
+ /** Range aggregation result */
1832
1944
  range?: RangeResult;
1945
+ /** Scalar aggregation result */
1833
1946
  scalar?: NestedResultsScalarResult;
1947
+ /** Date histogram aggregation result */
1834
1948
  dateHistogram?: ValueResult;
1835
1949
  }
1836
1950
  export interface Results {
1951
+ /** List of nested aggregations */
1837
1952
  results?: Record<string, NestedResultValue>;
1838
1953
  }
1839
1954
  export interface DateHistogramResult {
1955
+ /** Date in ISO 8601 format */
1840
1956
  value?: string;
1957
+ /** Count of documents in the bucket */
1841
1958
  count?: number;
1842
1959
  }
1843
1960
  export interface GroupByValueResults {
1961
+ /** List of value aggregations */
1844
1962
  results?: NestedValueAggregationResult[];
1845
1963
  }
1846
1964
  export interface DateHistogramResults {
1965
+ /** List of date histogram aggregations */
1847
1966
  results?: DateHistogramResult[];
1848
1967
  }
1849
1968
  /**
1850
- * results of `NESTED` aggregation type in a flattened form
1969
+ * Results of `NESTED` aggregation type in a flattened form
1851
1970
  * aggregations in resulting array are keyed by requested aggregation `name`.
1852
1971
  */
1853
1972
  export interface NestedResults {
1973
+ /** List of nested aggregations */
1854
1974
  results?: Results[];
1855
1975
  }
1856
1976
  export interface AggregationResults extends AggregationResultsResultOneOf {
1977
+ /** Value aggregation results */
1857
1978
  values?: ValueResults;
1979
+ /** Range aggregation results */
1858
1980
  ranges?: RangeResults;
1981
+ /** Scalar aggregation results */
1859
1982
  scalar?: ScalarResult;
1983
+ /** Group by value aggregation results */
1860
1984
  groupedByValue?: GroupByValueResults;
1985
+ /** Date histogram aggregation results */
1861
1986
  dateHistogram?: DateHistogramResults;
1987
+ /** Nested aggregation results */
1862
1988
  nested?: NestedResults;
1989
+ /** User-defined name of aggregation as derived from search request */
1863
1990
  name?: string;
1991
+ /** Type of aggregation that must match provided kind as derived from search request */
1864
1992
  type?: AggregationType;
1993
+ /** Field to aggregate by as derived from search request */
1865
1994
  fieldPath?: string;
1866
1995
  }
1867
1996
  /** @oneof */
1868
1997
  export interface AggregationResultsResultOneOf {
1998
+ /** Value aggregation results */
1869
1999
  values?: ValueResults;
2000
+ /** Range aggregation results */
1870
2001
  ranges?: RangeResults;
2002
+ /** Scalar aggregation results */
1871
2003
  scalar?: ScalarResult;
2004
+ /** Group by value aggregation results */
1872
2005
  groupedByValue?: GroupByValueResults;
2006
+ /** Date histogram aggregation results */
1873
2007
  dateHistogram?: DateHistogramResults;
2008
+ /** Nested aggregation results */
1874
2009
  nested?: NestedResults;
1875
2010
  }
1876
2011
  export interface DeprecatedSearchCategoriesWithOffsetRequest {
@@ -2301,6 +2436,11 @@ export interface MoveItemInCategoryResponse {
2301
2436
  /** Information about manually arranged items after move. */
2302
2437
  itemsAfterMove?: ItemReference[];
2303
2438
  }
2439
+ export interface ItemsArrangedInCategory {
2440
+ /** Category ID. */
2441
+ categoryId?: string;
2442
+ treeReference?: TreeReference;
2443
+ }
2304
2444
  export interface SetArrangedItemsRequest {
2305
2445
  /** ID of category. */
2306
2446
  categoryId: string;
@@ -2402,6 +2542,8 @@ export interface EntityUpdatedEvent {
2402
2542
  currentEntityAsJson?: string;
2403
2543
  }
2404
2544
  export interface EntityDeletedEvent {
2545
+ /** Entity that was deleted */
2546
+ deletedEntityAsJson?: string | null;
2405
2547
  }
2406
2548
  export interface ActionEvent {
2407
2549
  bodyAsJson?: string;
@@ -297,61 +297,88 @@ export var SortOrder;
297
297
  })(SortOrder || (SortOrder = {}));
298
298
  export var SortType;
299
299
  (function (SortType) {
300
+ /** Should sort by number of matches */
300
301
  SortType["COUNT"] = "COUNT";
302
+ /** Should sort by value of the field alphabetically */
301
303
  SortType["VALUE"] = "VALUE";
302
304
  })(SortType || (SortType = {}));
303
305
  export var SortDirection;
304
306
  (function (SortDirection) {
307
+ /** Should sort in descending order */
305
308
  SortDirection["DESC"] = "DESC";
309
+ /** Should sort in ascending order */
306
310
  SortDirection["ASC"] = "ASC";
307
311
  })(SortDirection || (SortDirection = {}));
308
312
  export var MissingValues;
309
313
  (function (MissingValues) {
314
+ /** Should missing values be excluded from the aggregation results */
310
315
  MissingValues["EXCLUDE"] = "EXCLUDE";
316
+ /** Should missing values be included in the aggregation results */
311
317
  MissingValues["INCLUDE"] = "INCLUDE";
312
318
  })(MissingValues || (MissingValues = {}));
313
319
  export var ScalarType;
314
320
  (function (ScalarType) {
315
321
  ScalarType["UNKNOWN_SCALAR_TYPE"] = "UNKNOWN_SCALAR_TYPE";
322
+ /** Count of distinct values */
316
323
  ScalarType["COUNT_DISTINCT"] = "COUNT_DISTINCT";
324
+ /** Minimum value */
317
325
  ScalarType["MIN"] = "MIN";
326
+ /** Maximum value */
318
327
  ScalarType["MAX"] = "MAX";
328
+ /** Sum of values */
319
329
  ScalarType["SUM"] = "SUM";
330
+ /** Average of values */
320
331
  ScalarType["AVG"] = "AVG";
321
332
  })(ScalarType || (ScalarType = {}));
322
333
  export var NestedAggregationType;
323
334
  (function (NestedAggregationType) {
324
335
  NestedAggregationType["UNKNOWN_AGGREGATION_TYPE"] = "UNKNOWN_AGGREGATION_TYPE";
336
+ /** An aggregation where result buckets are dynamically built - one per unique value */
325
337
  NestedAggregationType["VALUE"] = "VALUE";
338
+ /** An aggregation, where user can define set of ranges - each representing a bucket */
326
339
  NestedAggregationType["RANGE"] = "RANGE";
340
+ /** A single-value metric aggregation - e.g. min, max, sum, avg */
327
341
  NestedAggregationType["SCALAR"] = "SCALAR";
342
+ /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
328
343
  NestedAggregationType["DATE_HISTOGRAM"] = "DATE_HISTOGRAM";
329
344
  })(NestedAggregationType || (NestedAggregationType = {}));
330
345
  export var Interval;
331
346
  (function (Interval) {
332
347
  Interval["UNKNOWN_INTERVAL"] = "UNKNOWN_INTERVAL";
348
+ /** Yearly interval */
333
349
  Interval["YEAR"] = "YEAR";
350
+ /** Monthly interval */
334
351
  Interval["MONTH"] = "MONTH";
352
+ /** Weekly interval */
335
353
  Interval["WEEK"] = "WEEK";
354
+ /** Daily interval */
336
355
  Interval["DAY"] = "DAY";
356
+ /** Hourly interval */
337
357
  Interval["HOUR"] = "HOUR";
358
+ /** Minute interval */
338
359
  Interval["MINUTE"] = "MINUTE";
360
+ /** Second interval */
339
361
  Interval["SECOND"] = "SECOND";
340
362
  })(Interval || (Interval = {}));
341
363
  export var AggregationType;
342
364
  (function (AggregationType) {
343
365
  AggregationType["UNKNOWN_AGGREGATION_TYPE"] = "UNKNOWN_AGGREGATION_TYPE";
366
+ /** An aggregation where result buckets are dynamically built - one per unique value */
344
367
  AggregationType["VALUE"] = "VALUE";
368
+ /** An aggregation, where user can define set of ranges - each representing a bucket */
345
369
  AggregationType["RANGE"] = "RANGE";
370
+ /** A single-value metric aggregation - e.g. min, max, sum, avg */
346
371
  AggregationType["SCALAR"] = "SCALAR";
372
+ /** An aggregation, where result buckets are dynamically built - one per time interval (hour, day, week, etc.) */
347
373
  AggregationType["DATE_HISTOGRAM"] = "DATE_HISTOGRAM";
374
+ /** Multi-level aggregation, where each next aggregation is nested within previous one */
348
375
  AggregationType["NESTED"] = "NESTED";
349
376
  })(AggregationType || (AggregationType = {}));
350
377
  export var Mode;
351
378
  (function (Mode) {
352
- /** any */
379
+ /** Any of the search terms must be present */
353
380
  Mode["OR"] = "OR";
354
- /** all */
381
+ /** All search terms must be present */
355
382
  Mode["AND"] = "AND";
356
383
  })(Mode || (Mode = {}));
357
384
  export var MoveCategoryRequestPosition;
@@ -1 +1 @@
1
- {"version":3,"file":"categories-v1-category.types.js","sourceRoot":"","sources":["../../../src/categories-v1-category.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"categories-v1-category.types.js","sourceRoot":"","sources":["../../../src/categories-v1-category.types.ts"],"names":[],"mappings":"AA+SA,MAAM,CAAN,IAAY,QA+BX;AA/BD,WAAY,QAAQ;IAClB,mCAAuB,CAAA;IACvB,yBAAa,CAAA;IACb,+BAAmB,CAAA;IACnB,2CAA+B,CAAA;IAC/B,yCAA6B,CAAA;IAC7B,mCAAuB,CAAA;IACvB,qCAAyB,CAAA;IACzB,qCAAyB,CAAA;IACzB,2BAAe,CAAA;IACf,+BAAmB,CAAA;IACnB,yBAAa,CAAA;IACb,+BAAmB,CAAA;IACnB,uBAAW,CAAA;IACX,yBAAa,CAAA;IACb,2BAAe,CAAA;IACf,yCAA6B,CAAA;IAC7B,uBAAW,CAAA;IACX,yBAAa,CAAA;IACb,mCAAuB,CAAA;IACvB,6BAAiB,CAAA;IACjB,iDAAqC,CAAA;IACrC,2BAAe,CAAA;IACf,2BAAe,CAAA;IACf,iDAAqC,CAAA;IACrC,6DAAiD,CAAA;IACjD,2DAA+C,CAAA;IAC/C,qCAAyB,CAAA;IACzB,mCAAuB,CAAA;IACvB,iCAAqB,CAAA;IACrB,2BAAe,CAAA;AACjB,CAAC,EA/BW,QAAQ,KAAR,QAAQ,QA+BnB;AAqDD,MAAM,CAAN,IAAY,SASX;AATD,WAAY,SAAS;IACnB,sCAAsC;IACtC,gCAAmB,CAAA;IACnB,kBAAkB;IAClB,4BAAe,CAAA;IACf,gDAAgD;IAChD,kCAAqB,CAAA;IACrB,6BAA6B;IAC7B,sCAAyB,CAAA;AAC3B,CAAC,EATW,SAAS,KAAT,SAAS,QASpB;AA8BD,MAAM,CAAN,IAAY,4BAOX;AAPD,WAAY,4BAA4B;IACtC,uBAAuB;IACvB,iDAAiB,CAAA;IACjB,qBAAqB;IACrB,6CAAa,CAAA;IACb,sBAAsB;IACtB,+CAAe,CAAA;AACjB,CAAC,EAPW,4BAA4B,KAA5B,4BAA4B,QAOvC;AAgBD,MAAM,CAAN,IAAY,IAKX;AALD,WAAY,IAAI;IACd,0BAA0B;IAC1B,qBAAa,CAAA;IACb,qFAAqF;IACrF,yBAAiB,CAAA;AACnB,CAAC,EALW,IAAI,KAAJ,IAAI,QAKf;AAoCD,MAAM,CAAN,IAAY,MASX;AATD,WAAY,MAAM;IAChB,sFAAsF;IACtF,uBAAa,CAAA;IACb,uDAAuD;IACvD,yBAAe,CAAA;IACf,oDAAoD;IACpD,2BAAiB,CAAA;IACjB,+DAA+D;IAC/D,qBAAW,CAAA;AACb,CAAC,EATW,MAAM,KAAN,MAAM,QASjB;AAyBD,MAAM,CAAN,IAAY,aAWX;AAXD,WAAY,aAAa;IACvB,8CAA8C;IAC9C,8BAAa,CAAA;IACb,iBAAiB;IACjB,8BAAa,CAAA;IACb,kBAAkB;IAClB,gCAAe,CAAA;IACf,mBAAmB;IACnB,kCAAiB,CAAA;IACjB,gIAAgI;IAChI,oCAAmB,CAAA;AACrB,CAAC,EAXW,aAAa,KAAb,aAAa,QAWxB;AAaD,MAAM,CAAN,IAAY,SASX;AATD,WAAY,SAAS;IACnB,kBAAkB;IAClB,8BAAiB,CAAA;IACjB,kBAAkB;IAClB,8BAAiB,CAAA;IACjB,kBAAkB;IAClB,8BAAiB,CAAA;IACjB,kBAAkB;IAClB,8BAAiB,CAAA;AACnB,CAAC,EATW,SAAS,KAAT,SAAS,QASpB;AAED,MAAM,CAAN,IAAY,KAOX;AAPD,WAAY,KAAK;IACf,iBAAiB;IACjB,wBAAe,CAAA;IACf,kBAAkB;IAClB,0BAAiB,CAAA;IACjB,iBAAiB;IACjB,wBAAe,CAAA;AACjB,CAAC,EAPW,KAAK,KAAL,KAAK,QAOhB;AAED,MAAM,CAAN,IAAY,SAOX;AAPD,WAAY,SAAS;IACnB,uBAAuB;IACvB,8BAAiB,CAAA;IACjB,qBAAqB;IACrB,0BAAa,CAAA;IACb,sBAAsB;IACtB,4BAAe,CAAA;AACjB,CAAC,EAPW,SAAS,KAAT,SAAS,QAOpB;AAqBD,MAAM,CAAN,IAAY,QAOX;AAPD,WAAY,QAAQ;IAClB,kBAAkB;IAClB,yBAAa,CAAA;IACb,oBAAoB;IACpB,yBAAa,CAAA;IACb,oBAAoB;IACpB,yBAAa,CAAA;AACf,CAAC,EAPW,QAAQ,KAAR,QAAQ,QAOnB;AAuGD,MAAM,CAAN,IAAY,UAqBX;AArBD,WAAY,UAAU;IACpB,mBAAmB;IACnB,iCAAmB,CAAA;IACnB,mBAAmB;IACnB,iCAAmB,CAAA;IACnB,gBAAgB;IAChB,2BAAa,CAAA;IACb,qBAAqB;IACrB,qCAAuB,CAAA;IACvB,kBAAkB;IAClB,+BAAiB,CAAA;IACjB,qBAAqB;IACrB,qCAAuB,CAAA;IACvB,oBAAoB;IACpB,mCAAqB,CAAA;IACrB,kBAAkB;IAClB,+BAAiB,CAAA;IACjB,iBAAiB;IACjB,6BAAe,CAAA;IACf,2BAA2B;IAC3B,mCAAqB,CAAA;AACvB,CAAC,EArBW,UAAU,KAAV,UAAU,QAqBrB;AAED,MAAM,CAAN,IAAY,WAKX;AALD,WAAY,WAAW;IACrB,uBAAuB;IACvB,4BAAa,CAAA;IACb,0BAA0B;IAC1B,kCAAmB,CAAA;AACrB,CAAC,EALW,WAAW,KAAX,WAAW,QAKtB;AAED,MAAM,CAAN,IAAY,IAKX;AALD,WAAY,IAAI;IACd,mBAAmB;IACnB,qBAAa,CAAA;IACb,kBAAkB;IAClB,mBAAW,CAAA;AACb,CAAC,EALW,IAAI,KAAJ,IAAI,QAKf;AAED,MAAM,CAAN,IAAY,mBAWX;AAXD,WAAY,mBAAmB;IAC7B,oBAAoB;IACpB,kCAAW,CAAA;IACX,sBAAsB;IACtB,sCAAe,CAAA;IACf,uBAAuB;IACvB,wCAAiB,CAAA;IACjB,qBAAqB;IACrB,oCAAa,CAAA;IACb,mBAAmB;IACnB,oCAAa,CAAA;AACf,CAAC,EAXW,mBAAmB,KAAnB,mBAAmB,QAW9B;AAuFD,MAAM,CAAN,IAAY,MAGX;AAHD,WAAY,MAAM;IAChB,uBAAa,CAAA;IACb,6BAAmB,CAAA;AACrB,CAAC,EAHW,MAAM,KAAN,MAAM,QAGjB;AAkED,MAAM,CAAN,IAAY,OASX;AATD,WAAY,OAAO;IACjB,uBAAuB;IACvB,8BAAmB,CAAA;IACnB,yBAAyB;IACzB,gCAAqB,CAAA;IACrB,sBAAsB;IACtB,4BAAiB,CAAA;IACjB,uBAAuB;IACvB,8BAAmB,CAAA;AACrB,CAAC,EATW,OAAO,KAAP,OAAO,QASlB;AAoBD,MAAM,CAAN,IAAY,QAOX;AAPD,WAAY,QAAQ;IAClB,6CAA6C;IAC7C,+BAAmB,CAAA;IACnB,2CAA2C;IAC3C,6BAAiB,CAAA;IACjB,0DAA0D;IAC1D,iCAAqB,CAAA;AACvB,CAAC,EAPW,QAAQ,KAAR,QAAQ,QAOnB;AAED,MAAM,CAAN,IAAY,QAKX;AALD,WAAY,QAAQ;IAClB,uBAAuB;IACvB,yCAA6B,CAAA;IAC7B,aAAa;IACb,uBAAW,CAAA;AACb,CAAC,EALW,QAAQ,KAAR,QAAQ,QAKnB;AA6BD,MAAM,CAAN,IAAY,cAKX;AALD,WAAY,cAAc;IACxB,WAAW;IACX,+BAAa,CAAA;IACb,WAAW;IACX,+BAAa,CAAA;AACf,CAAC,EALW,cAAc,KAAd,cAAc,QAKzB;AAED,MAAM,CAAN,IAAY,mBAKX;AALD,WAAY,mBAAmB;IAC7B,oBAAoB;IACpB,kCAAW,CAAA;IACX,oBAAoB;IACpB,kCAAW,CAAA;AACb,CAAC,EALW,mBAAmB,KAAnB,mBAAmB,QAK9B;AAgBD,MAAM,CAAN,IAAY,cAOX;AAPD,WAAY,cAAc;IACxB,4BAA4B;IAC5B,iCAAe,CAAA;IACf,4BAA4B;IAC5B,iCAAe,CAAA;IACf,+BAA+B;IAC/B,uCAAqB,CAAA;AACvB,CAAC,EAPW,cAAc,KAAd,cAAc,QAOzB;AA0HD,MAAM,CAAN,IAAY,cAWX;AAXD,WAAY,cAAc;IACxB,+BAAa,CAAA;IACb,mCAAiB,CAAA;IACjB,yCAAuB,CAAA;IACvB,qCAAmB,CAAA;IACnB,mCAAiB,CAAA;IACjB,qCAAmB,CAAA;IACnB,+BAAa,CAAA;IACb,iCAAe,CAAA;IACf,yCAAuB,CAAA;IACvB,uCAAqB,CAAA;AACvB,CAAC,EAXW,cAAc,KAAd,cAAc,QAWzB;AAmCD,MAAM,CAAN,IAAY,QAGX;AAHD,WAAY,QAAQ;IAClB,qBAAS,CAAA;IACT,qBAAS,CAAA;AACX,CAAC,EAHW,QAAQ,KAAR,QAAQ,QAGnB;AA6BD,MAAM,CAAN,IAAY,OAIX;AAJD,WAAY,OAAO;IACjB,8BAAmB,CAAA;IACnB,0BAAe,CAAA;IACf,8BAAmB,CAAA;AACrB,CAAC,EAJW,OAAO,KAAP,OAAO,QAIlB;AA6FD,MAAM,CAAN,IAAY,oBAOX;AAPD,WAAY,oBAAoB;IAC9B,2CAA2C;IAC3C,uCAAe,CAAA;IACf,uCAAuC;IACvC,mCAAW,CAAA;IACX,mCAAmC;IACnC,qCAAa,CAAA;AACf,CAAC,EAPW,oBAAoB,KAApB,oBAAoB,QAO/B;AAED,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,oBAAoB;IACpB,wBAAW,CAAA;IACX,oBAAoB;IACpB,wBAAW,CAAA;AACb,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB;AA+BD,MAAM,CAAN,IAAY,iBAOX;AAPD,WAAY,iBAAiB;IAC3B,oBAAoB;IACpB,gCAAW,CAAA;IACX,uBAAuB;IACvB,sCAAiB,CAAA;IACjB,uBAAuB;IACvB,sCAAiB,CAAA;AACnB,CAAC,EAPW,iBAAiB,KAAjB,iBAAiB,QAO5B;AAoBD;;;;;GAKG;AACH,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,kBAAkB;IAClB,sCAAyB,CAAA;AAC3B,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AA4KD,MAAM,CAAN,IAAY,eAGX;AAHD,WAAY,eAAe;IACzB,sEAAmD,CAAA;IACnD,8CAA2B,CAAA;AAC7B,CAAC,EAHW,eAAe,KAAf,eAAe,QAG1B;AA6FD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AA2JD,MAAM,CAAN,IAAY,QAKX;AALD,WAAY,QAAQ;IAClB,uCAAuC;IACvC,2BAAe,CAAA;IACf,uDAAuD;IACvD,2BAAe,CAAA;AACjB,CAAC,EALW,QAAQ,KAAR,QAAQ,QAKnB;AAED,MAAM,CAAN,IAAY,aAKX;AALD,WAAY,aAAa;IACvB,sCAAsC;IACtC,8BAAa,CAAA;IACb,qCAAqC;IACrC,4BAAW,CAAA;AACb,CAAC,EALW,aAAa,KAAb,aAAa,QAKxB;AAED,MAAM,CAAN,IAAY,aAKX;AALD,WAAY,aAAa;IACvB,qEAAqE;IACrE,oCAAmB,CAAA;IACnB,mEAAmE;IACnE,oCAAmB,CAAA;AACrB,CAAC,EALW,aAAa,KAAb,aAAa,QAKxB;AAOD,MAAM,CAAN,IAAY,UAYX;AAZD,WAAY,UAAU;IACpB,yDAA2C,CAAA;IAC3C,+BAA+B;IAC/B,+CAAiC,CAAA;IACjC,oBAAoB;IACpB,yBAAW,CAAA;IACX,oBAAoB;IACpB,yBAAW,CAAA;IACX,oBAAoB;IACpB,yBAAW,CAAA;IACX,wBAAwB;IACxB,yBAAW,CAAA;AACb,CAAC,EAZW,UAAU,KAAV,UAAU,QAYrB;AAqBD,MAAM,CAAN,IAAY,qBAUX;AAVD,WAAY,qBAAqB;IAC/B,8EAAqD,CAAA;IACrD,uFAAuF;IACvF,wCAAe,CAAA;IACf,uFAAuF;IACvF,wCAAe,CAAA;IACf,kEAAkE;IAClE,0CAAiB,CAAA;IACjB,iHAAiH;IACjH,0DAAiC,CAAA;AACnC,CAAC,EAVW,qBAAqB,KAArB,qBAAqB,QAUhC;AAiBD,MAAM,CAAN,IAAY,QAgBX;AAhBD,WAAY,QAAQ;IAClB,iDAAqC,CAAA;IACrC,sBAAsB;IACtB,yBAAa,CAAA;IACb,uBAAuB;IACvB,2BAAe,CAAA;IACf,sBAAsB;IACtB,yBAAa,CAAA;IACb,qBAAqB;IACrB,uBAAW,CAAA;IACX,sBAAsB;IACtB,yBAAa,CAAA;IACb,sBAAsB;IACtB,6BAAiB,CAAA;IACjB,sBAAsB;IACtB,6BAAiB,CAAA;AACnB,CAAC,EAhBW,QAAQ,KAAR,QAAQ,QAgBnB;AA+BD,MAAM,CAAN,IAAY,eAYX;AAZD,WAAY,eAAe;IACzB,wEAAqD,CAAA;IACrD,uFAAuF;IACvF,kCAAe,CAAA;IACf,uFAAuF;IACvF,kCAAe,CAAA;IACf,kEAAkE;IAClE,oCAAiB,CAAA;IACjB,iHAAiH;IACjH,oDAAiC,CAAA;IACjC,yFAAyF;IACzF,oCAAiB,CAAA;AACnB,CAAC,EAZW,eAAe,KAAf,eAAe,QAY1B;AAkCD,MAAM,CAAN,IAAY,IAKX;AALD,WAAY,IAAI;IACd,8CAA8C;IAC9C,iBAAS,CAAA;IACT,uCAAuC;IACvC,mBAAW,CAAA;AACb,CAAC,EALW,IAAI,KAAJ,IAAI,QAKf;AAgTD,MAAM,CAAN,IAAY,2BAKX;AALD,WAAY,2BAA2B;IACrC,oEAAqC,CAAA;IACrC,8CAAe,CAAA;IACf,4CAAa,CAAA;IACb,gDAAiB,CAAA;AACnB,CAAC,EALW,2BAA2B,KAA3B,2BAA2B,QAKtC;AAkXD,MAAM,CAAN,IAAY,QAMX;AAND,WAAY,QAAQ;IAClB,iDAAqC,CAAA;IACrC,2BAAe,CAAA;IACf,yBAAa,CAAA;IACb,6BAAiB,CAAA;IACjB,yBAAa,CAAA;AACf,CAAC,EANW,QAAQ,KAAR,QAAQ,QAMnB"}