@evoke-platform/context 1.3.0-dev.2 → 1.3.0-dev.4
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.
|
@@ -113,6 +113,7 @@ export type InputStringValidation = StringValidation & {
|
|
|
113
113
|
maxLength?: number;
|
|
114
114
|
mask?: string;
|
|
115
115
|
};
|
|
116
|
+
export type BasicInputParameter = Omit<InputParameter, 'name' | 'required'>;
|
|
116
117
|
export type InputParameter = {
|
|
117
118
|
id: string;
|
|
118
119
|
name?: string;
|
|
@@ -229,7 +230,7 @@ export type ReadonlyField = {
|
|
|
229
230
|
};
|
|
230
231
|
export type InputField = {
|
|
231
232
|
type: 'inputField';
|
|
232
|
-
input:
|
|
233
|
+
input: BasicInputParameter;
|
|
233
234
|
display?: DisplayConfiguration;
|
|
234
235
|
documentMetadata?: Record<string, string>;
|
|
235
236
|
};
|