lucid-extension-sdk 0.0.307 → 0.0.308
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.
|
@@ -67,6 +67,18 @@ export declare enum LucidFields {
|
|
|
67
67
|
/**
|
|
68
68
|
* Refers to the URL of the image associated with this item
|
|
69
69
|
*/
|
|
70
|
-
ImageUrl = "url.image"
|
|
70
|
+
ImageUrl = "url.image",
|
|
71
|
+
/**
|
|
72
|
+
* Represents the sprint or time interval this item is assigned to.
|
|
73
|
+
*/
|
|
74
|
+
Sprint = "sprint",
|
|
75
|
+
/**
|
|
76
|
+
* Refers to the team associated with or responsible for this item.
|
|
77
|
+
*/
|
|
78
|
+
Team = "team",
|
|
79
|
+
/**
|
|
80
|
+
* Refers to the parent item this item belongs to.
|
|
81
|
+
*/
|
|
82
|
+
Parent = "parent"
|
|
71
83
|
}
|
|
72
84
|
export declare const isLucidFields: (x: unknown) => x is LucidFields;
|
|
@@ -73,5 +73,17 @@ var LucidFields;
|
|
|
73
73
|
* Refers to the URL of the image associated with this item
|
|
74
74
|
*/
|
|
75
75
|
LucidFields["ImageUrl"] = "url.image";
|
|
76
|
+
/**
|
|
77
|
+
* Represents the sprint or time interval this item is assigned to.
|
|
78
|
+
*/
|
|
79
|
+
LucidFields["Sprint"] = "sprint";
|
|
80
|
+
/**
|
|
81
|
+
* Refers to the team associated with or responsible for this item.
|
|
82
|
+
*/
|
|
83
|
+
LucidFields["Team"] = "team";
|
|
84
|
+
/**
|
|
85
|
+
* Refers to the parent item this item belongs to.
|
|
86
|
+
*/
|
|
87
|
+
LucidFields["Parent"] = "parent";
|
|
76
88
|
})(LucidFields || (exports.LucidFields = LucidFields = {}));
|
|
77
89
|
exports.isLucidFields = (0, validators_1.stringEnumValidator)(LucidFields);
|