lucid-extension-sdk 0.0.313 → 0.0.315
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.
|
@@ -9,15 +9,15 @@
|
|
|
9
9
|
* Data Organization: Provides a structured approach to organizing and grouping data within the Lucid ecosystem.
|
|
10
10
|
*/
|
|
11
11
|
export declare enum SemanticRelationships {
|
|
12
|
-
RelatesTo = "
|
|
12
|
+
RelatesTo = "Relates To",
|
|
13
13
|
Duplicates = "Duplicates",
|
|
14
|
-
IsDuplicatedBy = "
|
|
14
|
+
IsDuplicatedBy = "Is Duplicated By",
|
|
15
15
|
Blocks = "Blocks",
|
|
16
|
-
IsBlockedBy = "
|
|
16
|
+
IsBlockedBy = "Is Blocked By",
|
|
17
17
|
Clones = "Clones",
|
|
18
|
-
IsClonedBy = "
|
|
19
|
-
IsParentOf = "
|
|
20
|
-
IsChildOf = "
|
|
18
|
+
IsClonedBy = "Is Cloned By",
|
|
19
|
+
IsParentOf = "Is Parent Of",
|
|
20
|
+
IsChildOf = "Is Child Of"
|
|
21
21
|
}
|
|
22
22
|
export declare function getInverseSemanticRelationship(relationship: SemanticRelationships): SemanticRelationships;
|
|
23
23
|
export declare const isSemanticRelationship: (x: unknown) => x is SemanticRelationships;
|
|
@@ -14,15 +14,15 @@ const validators_1 = require("../../validators/validators");
|
|
|
14
14
|
*/
|
|
15
15
|
var SemanticRelationships;
|
|
16
16
|
(function (SemanticRelationships) {
|
|
17
|
-
SemanticRelationships["RelatesTo"] = "
|
|
17
|
+
SemanticRelationships["RelatesTo"] = "Relates To";
|
|
18
18
|
SemanticRelationships["Duplicates"] = "Duplicates";
|
|
19
|
-
SemanticRelationships["IsDuplicatedBy"] = "
|
|
19
|
+
SemanticRelationships["IsDuplicatedBy"] = "Is Duplicated By";
|
|
20
20
|
SemanticRelationships["Blocks"] = "Blocks";
|
|
21
|
-
SemanticRelationships["IsBlockedBy"] = "
|
|
21
|
+
SemanticRelationships["IsBlockedBy"] = "Is Blocked By";
|
|
22
22
|
SemanticRelationships["Clones"] = "Clones";
|
|
23
|
-
SemanticRelationships["IsClonedBy"] = "
|
|
24
|
-
SemanticRelationships["IsParentOf"] = "
|
|
25
|
-
SemanticRelationships["IsChildOf"] = "
|
|
23
|
+
SemanticRelationships["IsClonedBy"] = "Is Cloned By";
|
|
24
|
+
SemanticRelationships["IsParentOf"] = "Is Parent Of";
|
|
25
|
+
SemanticRelationships["IsChildOf"] = "Is Child Of";
|
|
26
26
|
})(SemanticRelationships || (exports.SemanticRelationships = SemanticRelationships = {}));
|
|
27
27
|
function getInverseSemanticRelationship(relationship) {
|
|
28
28
|
switch (relationship) {
|
|
@@ -11,6 +11,7 @@ export declare enum DocumentElementType {
|
|
|
11
11
|
Rule = "Rule",
|
|
12
12
|
DocumentFormula = "Formula",
|
|
13
13
|
TaskCardFieldsConfig = "TaskCardFieldsConfig",
|
|
14
|
+
CachedExtensionMetadata = "CachedExtensionMetadata",
|
|
14
15
|
GeneratorView = "GeneratorView",
|
|
15
16
|
ShapeStylePreset = "ShapeStylePreset",
|
|
16
17
|
ShapeSpecificDefaultProperties = "ShapeSpecificDefaultProperties",
|
|
@@ -15,6 +15,7 @@ var DocumentElementType;
|
|
|
15
15
|
DocumentElementType["Rule"] = "Rule";
|
|
16
16
|
DocumentElementType["DocumentFormula"] = "Formula";
|
|
17
17
|
DocumentElementType["TaskCardFieldsConfig"] = "TaskCardFieldsConfig";
|
|
18
|
+
DocumentElementType["CachedExtensionMetadata"] = "CachedExtensionMetadata";
|
|
18
19
|
DocumentElementType["GeneratorView"] = "GeneratorView";
|
|
19
20
|
DocumentElementType["ShapeStylePreset"] = "ShapeStylePreset";
|
|
20
21
|
DocumentElementType["ShapeSpecificDefaultProperties"] = "ShapeSpecificDefaultProperties";
|