dromo-uploader-js 1.2.18 → 1.2.19
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/interfaces.d.ts +3 -1
- package/package.json +1 -1
package/dist/interfaces.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export interface IDeveloperField {
|
|
|
9
9
|
label: string;
|
|
10
10
|
value: string;
|
|
11
11
|
}[];
|
|
12
|
+
invalidValueMessage?: string;
|
|
12
13
|
}
|
|
13
14
|
interface IAbstractValidator<ValidateKey> {
|
|
14
15
|
validate: ValidateKey;
|
|
@@ -181,6 +182,7 @@ export interface IRowHookOutputInternal extends IRowHookOutput {
|
|
|
181
182
|
}
|
|
182
183
|
export interface IResultMetadata {
|
|
183
184
|
id: string | null;
|
|
185
|
+
filename: string | null;
|
|
184
186
|
importIdentifier: string;
|
|
185
187
|
user: IUser;
|
|
186
188
|
rowsWithError: number[];
|
|
@@ -192,7 +194,7 @@ export declare enum EStepHook {
|
|
|
192
194
|
REVIEW_STEP_POST_HOOKS = "REVIEW_STEP_POST_HOOKS"
|
|
193
195
|
}
|
|
194
196
|
export interface IUploadStepData {
|
|
195
|
-
filename: string |
|
|
197
|
+
filename: string | null;
|
|
196
198
|
dataPreview: any[][];
|
|
197
199
|
}
|
|
198
200
|
export interface IReviewStepData {
|