dromo-uploader-js 2.0.20 → 2.0.21
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
|
@@ -464,7 +464,7 @@ export type IDeveloperSettings = {
|
|
|
464
464
|
invalidDataBehavior?: ("BLOCK_SUBMIT" | "INCLUDE_INVALID_ROWS" | "REMOVE_INVALID_ROWS") | undefined;
|
|
465
465
|
backendSync?: boolean | undefined;
|
|
466
466
|
backendSyncMode?: ("DISABLED" | "FULL_DATA" | "MAPPINGS_ONLY") | undefined;
|
|
467
|
-
manualInputDisabled?: boolean;
|
|
467
|
+
manualInputDisabled?: boolean | undefined;
|
|
468
468
|
manualInputOnly?: boolean;
|
|
469
469
|
allowCustomFields?: boolean;
|
|
470
470
|
passThroughUnmappedColumns?: boolean;
|
|
@@ -496,6 +496,8 @@ export type IDeveloperSettings = {
|
|
|
496
496
|
helpText?: string | null;
|
|
497
497
|
processingText?: string | null;
|
|
498
498
|
enableUserTransformations?: boolean;
|
|
499
|
+
allowAddingRows?: boolean;
|
|
500
|
+
allowRemovingRows?: boolean;
|
|
499
501
|
};
|
|
500
502
|
autoMapHeaders?: boolean;
|
|
501
503
|
delimiter?: string | undefined;
|