@prismatic-io/spectral 10.4.4 → 10.5.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/types/Inputs.d.ts
CHANGED
|
@@ -87,6 +87,8 @@ interface BaseInputField {
|
|
|
87
87
|
example?: string;
|
|
88
88
|
/** Indicate if this InputField is required. */
|
|
89
89
|
required?: boolean;
|
|
90
|
+
/** Key of the data source that can be used to set the value of this input. */
|
|
91
|
+
dataSource?: string;
|
|
90
92
|
}
|
|
91
93
|
type CollectionOptions<T> = SingleValue<T> | ValueListCollection<T> | KeyValueListCollection<T>;
|
|
92
94
|
interface SingleValue<T> {
|