@unito/integration-api 0.43.3 → 0.43.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/src/types.d.ts
CHANGED
|
@@ -280,6 +280,10 @@ export interface Relation {
|
|
|
280
280
|
* Whether the relation is searchable.
|
|
281
281
|
*/
|
|
282
282
|
searchable?: boolean;
|
|
283
|
+
/**
|
|
284
|
+
* The semantic of the relation.
|
|
285
|
+
*/
|
|
286
|
+
semantic?: RelationSemantic;
|
|
283
287
|
/**
|
|
284
288
|
* The shape of the relation.
|
|
285
289
|
*/
|
|
@@ -288,7 +292,7 @@ export interface Relation {
|
|
|
288
292
|
/**
|
|
289
293
|
* A summary of a relation.
|
|
290
294
|
*/
|
|
291
|
-
export type RelationSummary = Pick<Relation, 'name' | 'label' | 'schema'>;
|
|
295
|
+
export type RelationSummary = Pick<Relation, 'name' | 'label' | 'schema' | 'semantic'>;
|
|
292
296
|
/**
|
|
293
297
|
* A Relation Schema describes the shape of an item in a relation.
|
|
294
298
|
*/
|