@digitalculture/ochre-sdk 0.13.9 → 0.13.10

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 CHANGED
@@ -654,7 +654,6 @@ type WebElementComponent = {
654
654
  fileSize: number | null;
655
655
  isInteractive: boolean;
656
656
  isControlsDisplayed: boolean;
657
- isLightingDisplayed: boolean;
658
657
  } | {
659
658
  component: "advanced-search";
660
659
  boundElementUuid: string | null;
package/dist/index.mjs CHANGED
@@ -1716,9 +1716,6 @@ function parseWebElementProperties(componentProperty, elementResource) {
1716
1716
  let isControlsDisplayed = true;
1717
1717
  const isControlsDisplayedProperty = getPropertyValueByLabel(componentProperty.properties, "controls-displayed");
1718
1718
  if (isControlsDisplayedProperty !== null) isControlsDisplayed = isControlsDisplayedProperty === true;
1719
- let isLightingDisplayed = true;
1720
- const isLightingDisplayedProperty = getPropertyValueByLabel(componentProperty.properties, "lighting-displayed");
1721
- if (isLightingDisplayedProperty !== null) isLightingDisplayed = isLightingDisplayedProperty === true;
1722
1719
  properties.resourceId = resourceLink.uuid;
1723
1720
  properties.fileSize = resourceLink.fileSize;
1724
1721
  properties.isInteractive = isInteractive;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitalculture/ochre-sdk",
3
- "version": "0.13.9",
3
+ "version": "0.13.10",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Node.js library for working with OCHRE (Online Cultural and Historical Research Environment) data",