@evoke-platform/context 1.3.0-testing.1 → 1.3.0-testing.2

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: InputParameter;
233
+ input: BasicInputParameter;
233
234
  display?: DisplayConfiguration;
234
235
  documentMetadata?: Record<string, string>;
235
236
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evoke-platform/context",
3
- "version": "1.3.0-testing.1",
3
+ "version": "1.3.0-testing.2",
4
4
  "description": "Utilities that provide context to Evoke platform widgets",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",