@evoke-platform/context 1.3.0-testing.7 → 1.3.0-testing.9
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.
|
@@ -87,6 +87,8 @@ export type DocumentValidation = {
|
|
|
87
87
|
errorMessage?: string;
|
|
88
88
|
maxDocuments?: number;
|
|
89
89
|
minDocuments?: number;
|
|
90
|
+
allowedFileExtensions?: string[];
|
|
91
|
+
maxSizeInKB?: number;
|
|
90
92
|
};
|
|
91
93
|
export type PropertyValidation = StringValidation | NumericValidation | DateValidation | CriteriaValidation | DocumentValidation;
|
|
92
94
|
export type Property = {
|
|
@@ -304,6 +306,8 @@ export type ActionInput = {
|
|
|
304
306
|
minDocuments?: number;
|
|
305
307
|
maxDocuments?: number;
|
|
306
308
|
customMessage?: string;
|
|
309
|
+
allowedFileExtensions?: string[];
|
|
310
|
+
maxSizeInKB?: number;
|
|
307
311
|
};
|
|
308
312
|
/**
|
|
309
313
|
* An array of sub-components to be rendered inside sections.
|