lucid-extension-sdk 0.0.411 → 0.0.412
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.
|
@@ -17,7 +17,8 @@ export declare enum SemanticRelationships {
|
|
|
17
17
|
Clones = "Clones",
|
|
18
18
|
IsClonedBy = "Is Cloned By",
|
|
19
19
|
IsParentOf = "Is Parent Of",
|
|
20
|
-
IsChildOf = "Is Child Of"
|
|
20
|
+
IsChildOf = "Is Child Of",
|
|
21
|
+
Unknown = "Unknown"
|
|
21
22
|
}
|
|
22
23
|
export declare function getInverseSemanticRelationship(relationship: SemanticRelationships): SemanticRelationships;
|
|
23
24
|
export declare const isSemanticRelationship: (x: unknown) => x is SemanticRelationships;
|
|
@@ -23,6 +23,7 @@ var SemanticRelationships;
|
|
|
23
23
|
SemanticRelationships["IsClonedBy"] = "Is Cloned By";
|
|
24
24
|
SemanticRelationships["IsParentOf"] = "Is Parent Of";
|
|
25
25
|
SemanticRelationships["IsChildOf"] = "Is Child Of";
|
|
26
|
+
SemanticRelationships["Unknown"] = "Unknown";
|
|
26
27
|
})(SemanticRelationships || (exports.SemanticRelationships = SemanticRelationships = {}));
|
|
27
28
|
function getInverseSemanticRelationship(relationship) {
|
|
28
29
|
switch (relationship) {
|