lucid-extension-sdk 0.0.307 → 0.0.309
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/commandtypes.d.ts +2 -0
- package/core/cardintegration/lucidcardintegration.d.ts +1 -0
- package/core/cardintegration/lucidcardintegrationregistry.js +3 -0
- package/core/data/fieldtypedefinition/lucidfields.d.ts +13 -1
- package/core/data/fieldtypedefinition/lucidfields.js +12 -0
- package/package.json +1 -1
package/commandtypes.d.ts
CHANGED
|
@@ -762,6 +762,8 @@ export type AddCardIntegrationQuery = {
|
|
|
762
762
|
/** Create card action */
|
|
763
763
|
'cc': string;
|
|
764
764
|
} | undefined;
|
|
765
|
+
/** Whether to enable dependency mapping for this integration */
|
|
766
|
+
'sdm'?: boolean;
|
|
765
767
|
};
|
|
766
768
|
export type AddCardIntegrationResult = undefined;
|
|
767
769
|
/** @ignore */
|
|
@@ -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);
|