dromo-uploader-js 2.0.20 → 2.0.22
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 +4 -1
- package/package.json +1 -1
package/dist/interfaces.d.ts
CHANGED
|
@@ -462,9 +462,10 @@ export type IDeveloperSettings = {
|
|
|
462
462
|
title?: string | undefined;
|
|
463
463
|
allowInvalidSubmit?: boolean | undefined;
|
|
464
464
|
invalidDataBehavior?: ("BLOCK_SUBMIT" | "INCLUDE_INVALID_ROWS" | "REMOVE_INVALID_ROWS") | undefined;
|
|
465
|
+
allowEmptySubmit?: boolean;
|
|
465
466
|
backendSync?: boolean | undefined;
|
|
466
467
|
backendSyncMode?: ("DISABLED" | "FULL_DATA" | "MAPPINGS_ONLY") | undefined;
|
|
467
|
-
manualInputDisabled?: boolean;
|
|
468
|
+
manualInputDisabled?: boolean | undefined;
|
|
468
469
|
manualInputOnly?: boolean;
|
|
469
470
|
allowCustomFields?: boolean;
|
|
470
471
|
passThroughUnmappedColumns?: boolean;
|
|
@@ -496,6 +497,8 @@ export type IDeveloperSettings = {
|
|
|
496
497
|
helpText?: string | null;
|
|
497
498
|
processingText?: string | null;
|
|
498
499
|
enableUserTransformations?: boolean;
|
|
500
|
+
allowAddingRows?: boolean;
|
|
501
|
+
allowRemovingRows?: boolean;
|
|
499
502
|
};
|
|
500
503
|
autoMapHeaders?: boolean;
|
|
501
504
|
delimiter?: string | undefined;
|