dromo-uploader-js 2.4.0 → 2.5.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.
- package/dist/interfaces.d.ts +3 -0
- package/package.json +1 -1
package/dist/interfaces.d.ts
CHANGED
|
@@ -598,6 +598,8 @@ export type IDeveloperSettings = {
|
|
|
598
598
|
browserExcelParsing?: boolean;
|
|
599
599
|
version?: string;
|
|
600
600
|
alternateDomain?: string | null;
|
|
601
|
+
savePartialSession?: boolean;
|
|
602
|
+
sessionId?: string | null;
|
|
601
603
|
};
|
|
602
604
|
export type IUser = {
|
|
603
605
|
id: string;
|
|
@@ -769,6 +771,7 @@ export declare enum EStepHook {
|
|
|
769
771
|
export interface IUploadStepData {
|
|
770
772
|
filename: string | null;
|
|
771
773
|
dataPreview: any[][];
|
|
774
|
+
sessionId: string | null;
|
|
772
775
|
}
|
|
773
776
|
export interface IReviewStepData {
|
|
774
777
|
rawHeaders: string[] | null;
|