@pod-os/core 0.12.1-26d0f26.0 → 0.12.1-2722676.0

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.js CHANGED
@@ -13697,6 +13697,7 @@ var Thing = class {
13697
13697
  const values = statements.filter((it) => isLiteral(it.object)).reduce(accumulateValues, {});
13698
13698
  return Object.keys(values).map((predicate2) => ({
13699
13699
  predicate: predicate2,
13700
+ label: labelFromUri(predicate2),
13700
13701
  values: values[predicate2]
13701
13702
  }));
13702
13703
  }
package/lib/index.js CHANGED
@@ -49502,6 +49502,7 @@ var PodOS = (() => {
49502
49502
  const values = statements.filter((it) => isLiteral(it.object)).reduce(accumulateValues, {});
49503
49503
  return Object.keys(values).map((predicate2) => ({
49504
49504
  predicate: predicate2,
49505
+ label: labelFromUri(predicate2),
49505
49506
  values: values[predicate2]
49506
49507
  }));
49507
49508
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pod-os/core",
3
- "version": "0.12.1-26d0f26.0",
3
+ "version": "0.12.1-2722676.0",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./types/index.d.ts",
6
6
  "files": [
@@ -1,6 +1,7 @@
1
1
  import { IndexedFormula } from "rdflib";
2
2
  export interface Literal {
3
3
  predicate: string;
4
+ label: string;
4
5
  values: string[];
5
6
  }
6
7
  export interface Relation {