dromo-uploader-js 2.4.0 → 2.6.0

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.
@@ -553,6 +553,9 @@ export type IDeveloperSettings = {
553
553
  errors?: {
554
554
  [x: string]: string;
555
555
  };
556
+ ui?: {
557
+ [x: string]: string;
558
+ };
556
559
  };
557
560
  maxFileSize?: number;
558
561
  webhookUrl?: string | null;
@@ -598,6 +601,8 @@ export type IDeveloperSettings = {
598
601
  browserExcelParsing?: boolean;
599
602
  version?: string;
600
603
  alternateDomain?: string | null;
604
+ savePartialSession?: boolean;
605
+ sessionId?: string | null;
601
606
  };
602
607
  export type IUser = {
603
608
  id: string;
@@ -769,6 +774,7 @@ export declare enum EStepHook {
769
774
  export interface IUploadStepData {
770
775
  filename: string | null;
771
776
  dataPreview: any[][];
777
+ sessionId: string | null;
772
778
  }
773
779
  export interface IReviewStepData {
774
780
  rawHeaders: string[] | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dromo-uploader-js",
3
- "version": "2.4.0",
3
+ "version": "2.6.0",
4
4
  "description": "Easy to use data (CSV, TSV, Excel) importer",
5
5
  "author": "ankitgoyal100",
6
6
  "license": "MIT",