ochre-sdk 1.0.0-beta.8 → 1.0.0-beta.9
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/dist/index.d.mts +59 -59
- package/dist/index.mjs +215 -215
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1700,141 +1700,141 @@ type SearchableProperty<T extends ReadonlyArray<string>> = Property<T> | SingleH
|
|
|
1700
1700
|
* Finds a property by its variable UUID in an array of properties.
|
|
1701
1701
|
*
|
|
1702
1702
|
* @param properties - Array of properties to search through
|
|
1703
|
-
* @param
|
|
1703
|
+
* @param variableUuid - The property variable UUID to search for
|
|
1704
1704
|
* @param options - Search options, including whether to include nested properties
|
|
1705
1705
|
* @returns The matching Property object, or null if not found
|
|
1706
1706
|
*/
|
|
1707
|
-
declare function
|
|
1708
|
-
declare function
|
|
1709
|
-
declare function
|
|
1710
|
-
declare function
|
|
1707
|
+
declare function getPropertyByVariableUuid<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<Property<T>>, variableUuid: string, options?: PropertyOptions): Property<T> | null;
|
|
1708
|
+
declare function getPropertyByVariableUuid<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchyProperty<T>>, variableUuid: string, options?: PropertyOptions): SingleHierarchyProperty<T> | null;
|
|
1709
|
+
declare function getPropertyByVariableUuid<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SimplifiedProperty<T>>, variableUuid: string, options?: PropertyOptions): SimplifiedProperty<T> | null;
|
|
1710
|
+
declare function getPropertyByVariableUuid<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchySimplifiedProperty<T>>, variableUuid: string, options?: PropertyOptions): SingleHierarchySimplifiedProperty<T> | null;
|
|
1711
1711
|
/**
|
|
1712
1712
|
* Retrieves all values for a property with the given variable UUID.
|
|
1713
1713
|
*
|
|
1714
1714
|
* @param properties - Array of properties to search through
|
|
1715
|
-
* @param
|
|
1715
|
+
* @param variableUuid - The property variable UUID to search for
|
|
1716
1716
|
* @param options - Search options, including whether to include nested properties
|
|
1717
1717
|
* @returns Array of property values, or null if property not found
|
|
1718
1718
|
*/
|
|
1719
|
-
declare function
|
|
1719
|
+
declare function getPropertyValuesByVariableUuid<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SearchableProperty<T>>, variableUuid: string, options?: PropertyOptions): Array<PropertyValueContent<T>> | null;
|
|
1720
1720
|
/**
|
|
1721
1721
|
* Retrieves all value contents for a property with the given variable UUID.
|
|
1722
1722
|
*
|
|
1723
1723
|
* @param properties - Array of properties to search through
|
|
1724
|
-
* @param
|
|
1724
|
+
* @param variableUuid - The property variable UUID to search for
|
|
1725
1725
|
* @param options - Search options, including whether to include nested properties
|
|
1726
1726
|
* @returns Array of property value contents, or null if property not found
|
|
1727
1727
|
*/
|
|
1728
|
-
declare function
|
|
1728
|
+
declare function getPropertyValueContentsByVariableUuid<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SearchableProperty<T>>, variableUuid: string, options?: PropertyOptions): Array<PropertyContent<T>> | null;
|
|
1729
1729
|
/**
|
|
1730
1730
|
* Gets the first value of a property with the given variable UUID.
|
|
1731
1731
|
*
|
|
1732
1732
|
* @param properties - Array of properties to search through
|
|
1733
|
-
* @param
|
|
1733
|
+
* @param variableUuid - The property variable UUID to search for
|
|
1734
1734
|
* @param options - Search options, including whether to include nested properties
|
|
1735
1735
|
* @returns The first property value, or null if property not found
|
|
1736
1736
|
*/
|
|
1737
|
-
declare function
|
|
1737
|
+
declare function getPropertyValueByVariableUuid<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SearchableProperty<T>>, variableUuid: string, options?: PropertyOptions): PropertyValueContent<T> | null;
|
|
1738
1738
|
/**
|
|
1739
1739
|
* Gets the first value content of a property with the given variable UUID.
|
|
1740
1740
|
*
|
|
1741
1741
|
* @param properties - Array of properties to search through
|
|
1742
|
-
* @param
|
|
1742
|
+
* @param variableUuid - The property variable UUID to search for
|
|
1743
1743
|
* @param options - Search options, including whether to include nested properties
|
|
1744
1744
|
* @returns The first property value content, or null if property not found
|
|
1745
1745
|
*/
|
|
1746
|
-
declare function
|
|
1746
|
+
declare function getPropertyValueContentByVariableUuid<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SearchableProperty<T>>, variableUuid: string, options?: PropertyOptions): PropertyContent<T> | null;
|
|
1747
1747
|
/**
|
|
1748
|
-
* Finds a property by its variable label
|
|
1748
|
+
* Finds a property by its variable label in an array of properties.
|
|
1749
1749
|
*
|
|
1750
1750
|
* @param properties - Array of properties to search through
|
|
1751
|
-
* @param
|
|
1751
|
+
* @param variableLabel - The property variable label to search for
|
|
1752
1752
|
* @param options - Search options, including whether to include nested properties
|
|
1753
1753
|
* @returns The matching Property object, or null if not found
|
|
1754
1754
|
*/
|
|
1755
|
-
declare function
|
|
1756
|
-
declare function
|
|
1757
|
-
declare function
|
|
1758
|
-
declare function
|
|
1755
|
+
declare function getPropertyByVariableLabel<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<Property<T>>, variableLabel: string, options?: PropertyOptions): Property<T> | null;
|
|
1756
|
+
declare function getPropertyByVariableLabel<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchyProperty<T>>, variableLabel: string, options?: PropertyOptions): SingleHierarchyProperty<T> | null;
|
|
1757
|
+
declare function getPropertyByVariableLabel<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SimplifiedProperty<T>>, variableLabel: string, options?: PropertyOptions): SimplifiedProperty<T> | null;
|
|
1758
|
+
declare function getPropertyByVariableLabel<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchySimplifiedProperty<T>>, variableLabel: string, options?: PropertyOptions): SingleHierarchySimplifiedProperty<T> | null;
|
|
1759
1759
|
/**
|
|
1760
|
-
* Finds a property by its variable label
|
|
1760
|
+
* Finds a property by its variable label and all values.
|
|
1761
1761
|
*
|
|
1762
1762
|
* @param properties - Array of properties to search through
|
|
1763
|
-
* @param
|
|
1763
|
+
* @param variableLabel - The property variable label to search for
|
|
1764
1764
|
* @param values - The property values to search for
|
|
1765
1765
|
* @param options - Search options, including whether to include nested properties
|
|
1766
1766
|
* @returns The matching Property object, or null if not found or all values do not match
|
|
1767
1767
|
*/
|
|
1768
|
-
declare function
|
|
1769
|
-
declare function
|
|
1770
|
-
declare function
|
|
1771
|
-
declare function
|
|
1768
|
+
declare function getPropertyByVariableLabelAndValues<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<Property<T>>, variableLabel: string, values: ReadonlyArray<PropertyValueContent<T>>, options?: PropertyOptions): Property<T> | null;
|
|
1769
|
+
declare function getPropertyByVariableLabelAndValues<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchyProperty<T>>, variableLabel: string, values: ReadonlyArray<PropertyValueContent<T>>, options?: PropertyOptions): SingleHierarchyProperty<T> | null;
|
|
1770
|
+
declare function getPropertyByVariableLabelAndValues<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SimplifiedProperty<T>>, variableLabel: string, values: ReadonlyArray<PropertyValueContent<T>>, options?: PropertyOptions): SimplifiedProperty<T> | null;
|
|
1771
|
+
declare function getPropertyByVariableLabelAndValues<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchySimplifiedProperty<T>>, variableLabel: string, values: ReadonlyArray<PropertyValueContent<T>>, options?: PropertyOptions): SingleHierarchySimplifiedProperty<T> | null;
|
|
1772
1772
|
/**
|
|
1773
|
-
* Finds a property by its variable label
|
|
1773
|
+
* Finds a property by its variable label and all value contents.
|
|
1774
1774
|
*
|
|
1775
1775
|
* @param properties - Array of properties to search through
|
|
1776
|
-
* @param
|
|
1776
|
+
* @param variableLabel - The property variable label to search for
|
|
1777
1777
|
* @param valueContents - The value contents to search for
|
|
1778
1778
|
* @param options - Search options, including whether to include nested properties
|
|
1779
1779
|
* @returns The matching Property object, or null if not found or all value contents do not match
|
|
1780
1780
|
*/
|
|
1781
|
-
declare function
|
|
1782
|
-
declare function
|
|
1783
|
-
declare function
|
|
1784
|
-
declare function
|
|
1781
|
+
declare function getPropertyByVariableLabelAndValueContents<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<Property<T>>, variableLabel: string, valueContents: ReadonlyArray<PropertyContent<T>>, options?: PropertyOptions): Property<T> | null;
|
|
1782
|
+
declare function getPropertyByVariableLabelAndValueContents<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchyProperty<T>>, variableLabel: string, valueContents: ReadonlyArray<PropertyContent<T>>, options?: PropertyOptions): SingleHierarchyProperty<T> | null;
|
|
1783
|
+
declare function getPropertyByVariableLabelAndValueContents<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SimplifiedProperty<T>>, variableLabel: string, valueContents: ReadonlyArray<PropertyContent<T>>, options?: PropertyOptions): SimplifiedProperty<T> | null;
|
|
1784
|
+
declare function getPropertyByVariableLabelAndValueContents<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchySimplifiedProperty<T>>, variableLabel: string, valueContents: ReadonlyArray<PropertyContent<T>>, options?: PropertyOptions): SingleHierarchySimplifiedProperty<T> | null;
|
|
1785
1785
|
/**
|
|
1786
|
-
* Finds a property by its variable label
|
|
1786
|
+
* Finds a property by its variable label and one value.
|
|
1787
1787
|
*
|
|
1788
1788
|
* @param properties - Array of properties to search through
|
|
1789
|
-
* @param
|
|
1789
|
+
* @param variableLabel - The property variable label to search for
|
|
1790
1790
|
* @param value - The property value to search for
|
|
1791
1791
|
* @param options - Search options, including whether to include nested properties
|
|
1792
1792
|
* @returns The matching Property object, or null if not found or value does not match
|
|
1793
1793
|
*/
|
|
1794
|
-
declare function
|
|
1795
|
-
declare function
|
|
1796
|
-
declare function
|
|
1797
|
-
declare function
|
|
1794
|
+
declare function getPropertyByVariableLabelAndValue<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<Property<T>>, variableLabel: string, value: PropertyValueContent<T>, options?: PropertyOptions): Property<T> | null;
|
|
1795
|
+
declare function getPropertyByVariableLabelAndValue<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchyProperty<T>>, variableLabel: string, value: PropertyValueContent<T>, options?: PropertyOptions): SingleHierarchyProperty<T> | null;
|
|
1796
|
+
declare function getPropertyByVariableLabelAndValue<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SimplifiedProperty<T>>, variableLabel: string, value: PropertyValueContent<T>, options?: PropertyOptions): SimplifiedProperty<T> | null;
|
|
1797
|
+
declare function getPropertyByVariableLabelAndValue<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchySimplifiedProperty<T>>, variableLabel: string, value: PropertyValueContent<T>, options?: PropertyOptions): SingleHierarchySimplifiedProperty<T> | null;
|
|
1798
1798
|
/**
|
|
1799
|
-
* Finds a property by its variable label
|
|
1799
|
+
* Finds a property by its variable label and one value content.
|
|
1800
1800
|
*
|
|
1801
1801
|
* @param properties - Array of properties to search through
|
|
1802
|
-
* @param
|
|
1802
|
+
* @param variableLabel - The property variable label to search for
|
|
1803
1803
|
* @param valueContent - The value content to search for
|
|
1804
1804
|
* @param options - Search options, including whether to include nested properties
|
|
1805
1805
|
* @returns The matching Property object, or null if not found or value content does not match
|
|
1806
1806
|
*/
|
|
1807
|
-
declare function
|
|
1808
|
-
declare function
|
|
1809
|
-
declare function
|
|
1810
|
-
declare function
|
|
1807
|
+
declare function getPropertyByVariableLabelAndValueContent<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<Property<T>>, variableLabel: string, valueContent: PropertyContent<T>, options?: PropertyOptions): Property<T> | null;
|
|
1808
|
+
declare function getPropertyByVariableLabelAndValueContent<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchyProperty<T>>, variableLabel: string, valueContent: PropertyContent<T>, options?: PropertyOptions): SingleHierarchyProperty<T> | null;
|
|
1809
|
+
declare function getPropertyByVariableLabelAndValueContent<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SimplifiedProperty<T>>, variableLabel: string, valueContent: PropertyContent<T>, options?: PropertyOptions): SimplifiedProperty<T> | null;
|
|
1810
|
+
declare function getPropertyByVariableLabelAndValueContent<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchySimplifiedProperty<T>>, variableLabel: string, valueContent: PropertyContent<T>, options?: PropertyOptions): SingleHierarchySimplifiedProperty<T> | null;
|
|
1811
1811
|
/**
|
|
1812
|
-
* Retrieves all values for a property with the given variable label
|
|
1812
|
+
* Retrieves all values for a property with the given variable label.
|
|
1813
1813
|
*
|
|
1814
1814
|
* @param properties - Array of properties to search through
|
|
1815
|
-
* @param
|
|
1815
|
+
* @param variableLabel - The property variable label to search for
|
|
1816
1816
|
* @param options - Search options, including whether to include nested properties
|
|
1817
1817
|
* @returns Array of property values, or null if property not found
|
|
1818
1818
|
*/
|
|
1819
|
-
declare function
|
|
1819
|
+
declare function getPropertyValuesByVariableLabel<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SearchableProperty<T>>, variableLabel: string, options?: PropertyOptions): Array<PropertyValueContent<T>> | null;
|
|
1820
1820
|
/**
|
|
1821
|
-
* Gets the first value of a property with the given variable label
|
|
1821
|
+
* Gets the first value of a property with the given variable label.
|
|
1822
1822
|
*
|
|
1823
1823
|
* @param properties - Array of properties to search through
|
|
1824
|
-
* @param
|
|
1824
|
+
* @param variableLabel - The property variable label to search for
|
|
1825
1825
|
* @param options - Search options, including whether to include nested properties
|
|
1826
1826
|
* @returns The first property value, or null if property not found
|
|
1827
1827
|
*/
|
|
1828
|
-
declare function
|
|
1828
|
+
declare function getPropertyValueByVariableLabel<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SearchableProperty<T>>, variableLabel: string, options?: PropertyOptions): PropertyValueContent<T> | null;
|
|
1829
1829
|
/**
|
|
1830
|
-
* Gets the first value content of a property with the given variable label
|
|
1830
|
+
* Gets the first value content of a property with the given variable label.
|
|
1831
1831
|
*
|
|
1832
1832
|
* @param properties - Array of properties to search through
|
|
1833
|
-
* @param
|
|
1833
|
+
* @param variableLabel - The property variable label to search for
|
|
1834
1834
|
* @param options - Search options, including whether to include nested properties
|
|
1835
1835
|
* @returns The first property value content, or null if property not found
|
|
1836
1836
|
*/
|
|
1837
|
-
declare function
|
|
1837
|
+
declare function getPropertyValueContentByVariableLabel<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SearchableProperty<T>>, variableLabel: string, options?: PropertyOptions): PropertyContent<T> | null;
|
|
1838
1838
|
/**
|
|
1839
1839
|
* Gets all unique properties from an array of properties.
|
|
1840
1840
|
*
|
|
@@ -1847,13 +1847,13 @@ declare function getUniqueProperties<T extends ReadonlyArray<string> = ReadonlyA
|
|
|
1847
1847
|
declare function getUniqueProperties<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SimplifiedProperty<T>>, options?: PropertyOptions): Array<SimplifiedProperty<T>>;
|
|
1848
1848
|
declare function getUniqueProperties<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SingleHierarchySimplifiedProperty<T>>, options?: PropertyOptions): Array<SingleHierarchySimplifiedProperty<T>>;
|
|
1849
1849
|
/**
|
|
1850
|
-
* Gets all unique property variable
|
|
1850
|
+
* Gets all unique property variable labels from an array of properties.
|
|
1851
1851
|
*
|
|
1852
1852
|
* @param properties - Array of properties to get unique property variable labels from
|
|
1853
1853
|
* @param options - Search options, including whether to include nested properties
|
|
1854
|
-
* @returns Array of unique property variable
|
|
1854
|
+
* @returns Array of unique property variable labels
|
|
1855
1855
|
*/
|
|
1856
|
-
declare function
|
|
1856
|
+
declare function getUniquePropertyVariableLabels<T extends ReadonlyArray<string> = ReadonlyArray<string>>(properties: ReadonlyArray<SearchableProperty<T>>, options?: PropertyOptions): Array<string>;
|
|
1857
1857
|
/**
|
|
1858
1858
|
* Get the leaf property values from an array of property values.
|
|
1859
1859
|
*
|
|
@@ -1862,17 +1862,17 @@ declare function getUniquePropertyLabelNames<T extends ReadonlyArray<string> = R
|
|
|
1862
1862
|
*/
|
|
1863
1863
|
declare function getLeafPropertyValues<T extends ReadonlyArray<string> = ReadonlyArray<string>>(propertyValues: ReadonlyArray<PropertyValueContent<T>>): Array<PropertyValueContent<T>>;
|
|
1864
1864
|
/**
|
|
1865
|
-
* Filters a property based on a variable label and value criterion.
|
|
1865
|
+
* Filters a property based on a variable label and value content criterion.
|
|
1866
1866
|
*
|
|
1867
1867
|
* @param property - The property to filter
|
|
1868
1868
|
* @param filter - Filter criteria containing variable label and value to match
|
|
1869
|
-
* @param filter.
|
|
1869
|
+
* @param filter.variableLabel - The variable label to filter by
|
|
1870
1870
|
* @param filter.value - The value to filter by
|
|
1871
1871
|
* @param options - Search options, including whether to include nested properties
|
|
1872
1872
|
* @returns True if the property matches the filter criteria, false otherwise
|
|
1873
1873
|
*/
|
|
1874
1874
|
declare function filterProperties<T extends ReadonlyArray<string> = ReadonlyArray<string>>(property: SearchableProperty<T>, filter: {
|
|
1875
|
-
|
|
1875
|
+
variableLabel: string;
|
|
1876
1876
|
value: PropertyValueContent<T>;
|
|
1877
1877
|
}, options?: PropertyOptions): boolean;
|
|
1878
1878
|
//#endregion
|
|
@@ -1891,4 +1891,4 @@ declare const DEFAULT_PAGE_SIZE = 48;
|
|
|
1891
1891
|
*/
|
|
1892
1892
|
declare function flattenItemProperties<U extends DataCategory = DataCategory, V extends HierarchyItemDataCategory<U> = HierarchyItemDataCategory<U>, T extends ReadonlyArray<string> = ReadonlyArray<string>, W extends ItemLocation = "topLevel">(item: Item<U, V, T, W>): FlattenedItem<Item<U, V, T, W>, T>;
|
|
1893
1893
|
//#endregion
|
|
1894
|
-
export { BaseItem, BaseItemLink, BelongsTo, Bibliography, BibliographyEntryInfo, BibliographyItemLink, BibliographySourceDocument, Concept, ConceptItemLink, Context, ContextDataCategory, ContextItem, ContextNode, ContextTree, ContextTreeFilterLevel, ContextTreeLevel, ContextTreeLevelItem, Coordinates, CoordinatesSource, DEFAULT_PAGE_SIZE, DataCategory, DictionaryUnitItemLink, Event, Gallery, Heading, HeadingDataCategory, HierarchyDataCategory, HierarchyItemCategoryFromOption, HierarchyItemCategoryOption, HierarchyItemDataCategory, Identification, Image, ImageMap, ImageMapArea, Interpretation, Item, ItemLink, ItemLinkCategory, ItemLinks, ItemLocation, ItemsDataCategory, License, Metadata, type MultilingualOptions, MultilingualString, type MultilingualStringEntry, type MultilingualStringInput, type MultilingualStringJSON, type MultilingualStringText, Note, Observation, Period, PeriodItemLink, Person, PersonItemLink, Property, PropertyOptions, PropertyValue, PropertyValueContent, PropertyValueItemLink, PropertyValueQueryItem, PropertyVariable, PropertyVariableItemLink, Query, QueryGroup, QueryLeaf, RecursiveDataCategory, Resource, ResourceItemLink, Scope, Section, Set, SetAttributeValueQueryItem, SetBibliography, SetConcept, SetItem, SetItemDataCategory, SetItemLink, SetItemsSort, SetItemsSortDirection, SetPeriod, SetResource, SetSpatialUnit, SetTree, SimplifiedProperty, SingleHierarchyProperty, SingleHierarchySimplifiedProperty, SpatialUnit, SpatialUnitItemLink, Style, StylesheetCategory, StylesheetItem, Text, TextItemLink, Tree, TreeItemLink, WebBlock, WebBlockLayout, WebElement, WebElementComponent, WebImage, WebSegment, WebSegmentItem, WebTitle, Webpage, Website, WebsitePropertyQuery, WebsitePropertyQueryNode, WebsiteType, defineLanguages, fetchGallery, fetchItem, fetchItemLinks, fetchSetItems, fetchSetPropertyValues, fetchWebsite, filterProperties, flattenItemProperties, getLeafPropertyValues,
|
|
1894
|
+
export { BaseItem, BaseItemLink, BelongsTo, Bibliography, BibliographyEntryInfo, BibliographyItemLink, BibliographySourceDocument, Concept, ConceptItemLink, Context, ContextDataCategory, ContextItem, ContextNode, ContextTree, ContextTreeFilterLevel, ContextTreeLevel, ContextTreeLevelItem, Coordinates, CoordinatesSource, DEFAULT_PAGE_SIZE, DataCategory, DictionaryUnitItemLink, Event, Gallery, Heading, HeadingDataCategory, HierarchyDataCategory, HierarchyItemCategoryFromOption, HierarchyItemCategoryOption, HierarchyItemDataCategory, Identification, Image, ImageMap, ImageMapArea, Interpretation, Item, ItemLink, ItemLinkCategory, ItemLinks, ItemLocation, ItemsDataCategory, License, Metadata, type MultilingualOptions, MultilingualString, type MultilingualStringEntry, type MultilingualStringInput, type MultilingualStringJSON, type MultilingualStringText, Note, Observation, Period, PeriodItemLink, Person, PersonItemLink, Property, PropertyOptions, PropertyValue, PropertyValueContent, PropertyValueItemLink, PropertyValueQueryItem, PropertyVariable, PropertyVariableItemLink, Query, QueryGroup, QueryLeaf, RecursiveDataCategory, Resource, ResourceItemLink, Scope, Section, Set, SetAttributeValueQueryItem, SetBibliography, SetConcept, SetItem, SetItemDataCategory, SetItemLink, SetItemsSort, SetItemsSortDirection, SetPeriod, SetResource, SetSpatialUnit, SetTree, SimplifiedProperty, SingleHierarchyProperty, SingleHierarchySimplifiedProperty, SpatialUnit, SpatialUnitItemLink, Style, StylesheetCategory, StylesheetItem, Text, TextItemLink, Tree, TreeItemLink, WebBlock, WebBlockLayout, WebElement, WebElementComponent, WebImage, WebSegment, WebSegmentItem, WebTitle, Webpage, Website, WebsitePropertyQuery, WebsitePropertyQueryNode, WebsiteType, defineLanguages, fetchGallery, fetchItem, fetchItemLinks, fetchSetItems, fetchSetPropertyValues, fetchWebsite, filterProperties, flattenItemProperties, getLeafPropertyValues, getPropertyByVariableLabel, getPropertyByVariableLabelAndValue, getPropertyByVariableLabelAndValueContent, getPropertyByVariableLabelAndValueContents, getPropertyByVariableLabelAndValues, getPropertyByVariableUuid, getPropertyValueByVariableLabel, getPropertyValueByVariableUuid, getPropertyValueContentByVariableLabel, getPropertyValueContentByVariableUuid, getPropertyValueContentsByVariableUuid, getPropertyValuesByVariableLabel, getPropertyValuesByVariableUuid, getUniqueProperties, getUniquePropertyVariableLabels, withLanguages };
|