@dentira/dentira-bulk-upload-widget 0.0.607 → 0.0.609

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/types.d.ts CHANGED
@@ -64,7 +64,7 @@ export type DialogContextReturnType = {
64
64
  actions: {
65
65
  downloadTemplate: () => Promise<void>;
66
66
  cancelExit: () => void;
67
- acknowledgeJob: TriggerWithOptionsArgs<unknown, any, string, unknown>;
67
+ acknowledgeJob: (id: string | undefined) => Promise<void>;
68
68
  uploadFile: TriggerWithOptionsArgs<JobType, any, string, unknown>;
69
69
  downloadErrorFile: (fileName: string, downloadFolder: DownloadFolders) => Promise<void>;
70
70
  showExitWarning: () => void;
@@ -14,3 +14,6 @@ export declare const CSV = "CSV";
14
14
  export declare const CENTER = "center";
15
15
  export declare const ANIMATIONBASE = "https://s3.us-west-1.amazonaws.com/dentira.com/ui/icons";
16
16
  export declare const INCORRECT_USE_ERROR_MESSAGE = "useDialog must be used within a DialogProvider";
17
+ export declare const GET = "GET";
18
+ export declare const POST = "POST";
19
+ export declare const PUT = "PUT";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dentira/dentira-bulk-upload-widget",
3
- "version": "0.0.607",
3
+ "version": "0.0.609",
4
4
  "description": "React widget for Dentira bulk upload functionality",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",