multermate 2.1.1 → 2.2.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/types/index.d.ts CHANGED
@@ -7,6 +7,7 @@ export declare class MultermateError extends Error {
7
7
  }
8
8
  export interface UploadSingleOptions {
9
9
  destination?: string;
10
+ absoluteDestination?: string;
10
11
  filename?: string;
11
12
  fileTypes?: string[];
12
13
  customMimeTypes?: string[];
@@ -22,6 +23,7 @@ export interface FieldConfig {
22
23
  export interface UploadMultipleOptions {
23
24
  fields: FieldConfig[];
24
25
  destination?: string;
26
+ absoluteDestination?: string;
25
27
  customMimeTypes?: string[];
26
28
  fileSizeLimit?: number;
27
29
  preservePath?: boolean;