lucid-extension-sdk 0.0.391 → 0.0.393
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
CHANGED
|
@@ -757,7 +757,7 @@ export type AddCardIntegrationQuery = {
|
|
|
757
757
|
/** Items label */
|
|
758
758
|
'isl': string;
|
|
759
759
|
/** Item collection label */
|
|
760
|
-
'icl'
|
|
760
|
+
'icl'?: string | undefined;
|
|
761
761
|
/** Icon url. Replaced by iconConfiguration.primaryIconUrl */
|
|
762
762
|
'u': string;
|
|
763
763
|
/** Text style */
|
|
@@ -41,7 +41,11 @@ export declare enum FieldDisplayType {
|
|
|
41
41
|
* Given or string of name or an object containing iconUrl and name, display as
|
|
42
42
|
* an as a full name or an ImageBadge with full name (if name is present).
|
|
43
43
|
*/
|
|
44
|
-
UserProfile = "UserProfile"
|
|
44
|
+
UserProfile = "UserProfile",
|
|
45
|
+
/**
|
|
46
|
+
* Given an enum value, display the string representation of the enum value.
|
|
47
|
+
*/
|
|
48
|
+
CustomSingleSelectField = "CustomSingleSelectField"
|
|
45
49
|
}
|
|
46
50
|
export declare const isFieldDisplayType: (x: unknown) => x is FieldDisplayType;
|
|
47
51
|
/**
|
|
@@ -47,6 +47,10 @@ var FieldDisplayType;
|
|
|
47
47
|
* an as a full name or an ImageBadge with full name (if name is present).
|
|
48
48
|
*/
|
|
49
49
|
FieldDisplayType["UserProfile"] = "UserProfile";
|
|
50
|
+
/**
|
|
51
|
+
* Given an enum value, display the string representation of the enum value.
|
|
52
|
+
*/
|
|
53
|
+
FieldDisplayType["CustomSingleSelectField"] = "CustomSingleSelectField";
|
|
50
54
|
})(FieldDisplayType || (exports.FieldDisplayType = FieldDisplayType = {}));
|
|
51
55
|
exports.isFieldDisplayType = (0, validators_1.enumValidator)(FieldDisplayType);
|
|
52
56
|
/**
|