@digitalculture/ochre-sdk 0.1.27 → 0.1.28
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.cjs +3 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1972,7 +1972,9 @@ async function fetchGallery(uuid, filter, page, perPage) {
|
|
|
1972
1972
|
if (!("gallery" in data.result)) {
|
|
1973
1973
|
throw new Error("Failed to fetch gallery");
|
|
1974
1974
|
}
|
|
1975
|
-
const galleryIdentification = parseIdentification(
|
|
1975
|
+
const galleryIdentification = parseIdentification(
|
|
1976
|
+
data.result.gallery.item.identification
|
|
1977
|
+
);
|
|
1976
1978
|
const galleryProjectIdentification = parseIdentification(
|
|
1977
1979
|
data.result.gallery.project.identification
|
|
1978
1980
|
);
|
package/dist/index.js
CHANGED
|
@@ -1895,7 +1895,9 @@ async function fetchGallery(uuid, filter, page, perPage) {
|
|
|
1895
1895
|
if (!("gallery" in data.result)) {
|
|
1896
1896
|
throw new Error("Failed to fetch gallery");
|
|
1897
1897
|
}
|
|
1898
|
-
const galleryIdentification = parseIdentification(
|
|
1898
|
+
const galleryIdentification = parseIdentification(
|
|
1899
|
+
data.result.gallery.item.identification
|
|
1900
|
+
);
|
|
1899
1901
|
const galleryProjectIdentification = parseIdentification(
|
|
1900
1902
|
data.result.gallery.project.identification
|
|
1901
1903
|
);
|
package/package.json
CHANGED