dromo-uploader-js 2.1.9 → 2.1.10
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 +9 -2
- package/package.json +1 -1
package/dist/interfaces.d.ts
CHANGED
|
@@ -461,7 +461,7 @@ export type IDeveloperSettings = {
|
|
|
461
461
|
importIdentifier: string;
|
|
462
462
|
title?: string | undefined;
|
|
463
463
|
allowInvalidSubmit?: boolean | undefined;
|
|
464
|
-
invalidDataBehavior?: ("BLOCK_SUBMIT" | "INCLUDE_INVALID_ROWS" | "REMOVE_INVALID_ROWS") | undefined;
|
|
464
|
+
invalidDataBehavior?: ("BLOCK_SUBMIT" | "INCLUDE_INVALID_ROWS" | "REMOVE_INVALID_ROWS" | "INCLUDE_INVALID_ROWS_AND_VALUES") | undefined;
|
|
465
465
|
allowEmptySubmit?: boolean;
|
|
466
466
|
backendSync?: boolean | undefined;
|
|
467
467
|
backendSyncMode?: ("DISABLED" | "FULL_DATA" | "MAPPINGS_ONLY") | undefined;
|
|
@@ -473,6 +473,11 @@ export type IDeveloperSettings = {
|
|
|
473
473
|
developmentMode?: boolean | undefined;
|
|
474
474
|
displayEncoding?: boolean;
|
|
475
475
|
styleOverrides?: IDeveloperStyleOverrides;
|
|
476
|
+
textOverrides?: {
|
|
477
|
+
errors?: {
|
|
478
|
+
[x: string]: string;
|
|
479
|
+
};
|
|
480
|
+
};
|
|
476
481
|
maxFileSize?: number;
|
|
477
482
|
webhookUrl?: string | null;
|
|
478
483
|
needsReviewWebhookUrl?: string | null;
|
|
@@ -503,6 +508,7 @@ export type IDeveloperSettings = {
|
|
|
503
508
|
allowAddingRows?: boolean;
|
|
504
509
|
allowRemovingRows?: boolean;
|
|
505
510
|
highlightAutoFixes?: boolean;
|
|
511
|
+
autoCreateUnmappedColumns?: boolean;
|
|
506
512
|
};
|
|
507
513
|
autoMapHeaders?: boolean;
|
|
508
514
|
delimiter?: string | undefined;
|
|
@@ -731,7 +737,8 @@ export interface IAllHooks {
|
|
|
731
737
|
export declare enum EInvalidDataBehavior {
|
|
732
738
|
BLOCK_SUBMIT = "BLOCK_SUBMIT",
|
|
733
739
|
REMOVE_INVALID_ROWS = "REMOVE_INVALID_ROWS",
|
|
734
|
-
INCLUDE_INVALID_ROWS = "INCLUDE_INVALID_ROWS"
|
|
740
|
+
INCLUDE_INVALID_ROWS = "INCLUDE_INVALID_ROWS",
|
|
741
|
+
INCLUDE_INVALID_ROWS_AND_VALUES = "INCLUDE_INVALID_ROWS_AND_VALUES"
|
|
735
742
|
}
|
|
736
743
|
export declare enum EBackendSyncMode {
|
|
737
744
|
DISABLED = "DISABLED",
|