dromo-uploader-js 2.1.8 → 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 +10 -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;
|
|
@@ -483,6 +488,7 @@ export type IDeveloperSettings = {
|
|
|
483
488
|
uploadStep?: {
|
|
484
489
|
helpText?: string | null;
|
|
485
490
|
sheetOverride?: string | null;
|
|
491
|
+
sheetSelectionHelpText?: string | null;
|
|
486
492
|
};
|
|
487
493
|
matchingStep?: {
|
|
488
494
|
helpText?: string | null;
|
|
@@ -502,6 +508,7 @@ export type IDeveloperSettings = {
|
|
|
502
508
|
allowAddingRows?: boolean;
|
|
503
509
|
allowRemovingRows?: boolean;
|
|
504
510
|
highlightAutoFixes?: boolean;
|
|
511
|
+
autoCreateUnmappedColumns?: boolean;
|
|
505
512
|
};
|
|
506
513
|
autoMapHeaders?: boolean;
|
|
507
514
|
delimiter?: string | undefined;
|
|
@@ -730,7 +737,8 @@ export interface IAllHooks {
|
|
|
730
737
|
export declare enum EInvalidDataBehavior {
|
|
731
738
|
BLOCK_SUBMIT = "BLOCK_SUBMIT",
|
|
732
739
|
REMOVE_INVALID_ROWS = "REMOVE_INVALID_ROWS",
|
|
733
|
-
INCLUDE_INVALID_ROWS = "INCLUDE_INVALID_ROWS"
|
|
740
|
+
INCLUDE_INVALID_ROWS = "INCLUDE_INVALID_ROWS",
|
|
741
|
+
INCLUDE_INVALID_ROWS_AND_VALUES = "INCLUDE_INVALID_ROWS_AND_VALUES"
|
|
734
742
|
}
|
|
735
743
|
export declare enum EBackendSyncMode {
|
|
736
744
|
DISABLED = "DISABLED",
|