zakeke-configurator-react 0.1.267 → 0.1.269

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.
@@ -1,19 +1,20 @@
1
- declare const MPlaza: any;
2
- interface ImageTaskOptions {
3
- convertEpsToSvg: boolean;
4
- convertPdfToSvg: boolean;
5
- convertAiToSvg: boolean;
6
- }
7
- export default class ImageUploadTask {
8
- culture: string;
9
- token: string;
10
- options: ImageTaskOptions;
11
- constructor(culture: string, token: string, options?: ImageTaskOptions);
12
- upload: (file: File, onProgress?: ((progress: number) => void) | undefined) => Promise<any[] | null | undefined>;
13
- addPrintingOptions: (printingOptions: MPlaza.PrintTypes | undefined) => void;
14
- private uploadFileChunked;
15
- private resumableUpload;
16
- private createImageTask;
17
- private getImageFromTask;
18
- }
19
- export {};
1
+ declare const MPlaza: any;
2
+ interface ImageTaskOptions {
3
+ convertEpsToSvg: boolean;
4
+ convertPdfToSvg: boolean;
5
+ convertAiToSvg: boolean;
6
+ IsPdfWithRasterAllowed: boolean;
7
+ }
8
+ export default class ImageUploadTask {
9
+ culture: string;
10
+ token: string;
11
+ options: ImageTaskOptions;
12
+ constructor(culture: string, token: string, options?: ImageTaskOptions);
13
+ upload: (file: File, onProgress?: ((progress: number) => void) | undefined) => Promise<any[] | null | undefined>;
14
+ addPrintingOptions: (printingOptions: MPlaza.PrintTypes | undefined) => void;
15
+ private uploadFileChunked;
16
+ private resumableUpload;
17
+ private createImageTask;
18
+ private getImageFromTask;
19
+ }
20
+ export {};