@digitalculture/ochre-sdk 0.6.3 → 0.6.4
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 +1 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -843,6 +843,7 @@ function parseLicense(license) {
|
|
|
843
843
|
function parsePerson(person) {
|
|
844
844
|
return {
|
|
845
845
|
uuid: person.uuid,
|
|
846
|
+
category: "person",
|
|
846
847
|
publicationDateTime: person.publicationDateTime != null ? new Date(person.publicationDateTime) : null,
|
|
847
848
|
type: person.type ?? null,
|
|
848
849
|
date: person.date != null ? new Date(person.date) : null,
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -769,6 +769,7 @@ function parseLicense(license) {
|
|
|
769
769
|
function parsePerson(person) {
|
|
770
770
|
return {
|
|
771
771
|
uuid: person.uuid,
|
|
772
|
+
category: "person",
|
|
772
773
|
publicationDateTime: person.publicationDateTime != null ? new Date(person.publicationDateTime) : null,
|
|
773
774
|
type: person.type ?? null,
|
|
774
775
|
date: person.date != null ? new Date(person.date) : null,
|
package/package.json
CHANGED