@slflows/sdk 0.8.0 → 0.9.0
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/dist/v1/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/v1/index.d.ts
CHANGED
|
@@ -946,6 +946,12 @@ interface SuggestValuesInput {
|
|
|
946
946
|
block: EntityContext;
|
|
947
947
|
/** Optional search phrase entered by the user to filter suggestions */
|
|
948
948
|
searchPhrase?: string;
|
|
949
|
+
/**
|
|
950
|
+
* Static input config values from other fields on the same input.
|
|
951
|
+
* Only present for input-level config fields. Contains the parsed values
|
|
952
|
+
* of sibling config fields whose expressions are static JSON values.
|
|
953
|
+
*/
|
|
954
|
+
staticInputConfig?: Record<string, unknown>;
|
|
949
955
|
}
|
|
950
956
|
/**
|
|
951
957
|
* Output from the suggestValues function.
|
|
@@ -953,6 +959,8 @@ interface SuggestValuesInput {
|
|
|
953
959
|
interface SuggestValuesOutput {
|
|
954
960
|
/** Array of suggested values to present to the user */
|
|
955
961
|
suggestedValues: SuggestedValue[];
|
|
962
|
+
/** Optional message to display above the suggestions list */
|
|
963
|
+
message?: string;
|
|
956
964
|
}
|
|
957
965
|
/**
|
|
958
966
|
* A single suggested value with a display label and actual value.
|