hplx-feature-library 1.0.134 → 1.0.135

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.
@@ -23345,7 +23345,9 @@ function HS({ isOpen: o, document: u, onClose: C, onSave: P }) {
23345
23345
  reportType: R === Vf.REPORT_TYPE_UNSPECIFIED ? "" : R,
23346
23346
  createdAt: new Date(p).toISOString(),
23347
23347
  filePath: u.filePath,
23348
- mimeType: u.mimeType
23348
+ mimeType: u.mimeType,
23349
+ downloadPath: u.downloadPath,
23350
+ fileName: u.fileName
23349
23351
  };
23350
23352
  await P(D), C();
23351
23353
  } catch (D) {
@@ -30,6 +30,8 @@ export interface I_DOCUMENT {
30
30
  id: string;
31
31
  mimeType: E_DOCUMENT_FORMAT;
32
32
  thumbnail?: string;
33
+ downloadPath: string;
34
+ fileName: string;
33
35
  }
34
36
  export interface I_DOCUMENT_GROUP {
35
37
  id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hplx-feature-library",
3
3
  "private": false,
4
- "version": "1.0.134",
4
+ "version": "1.0.135",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "npm i hplx-react-elements-dev@qa && vite",