@postxl/generators 1.15.0 → 1.15.1
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.
|
@@ -373,7 +373,7 @@ async function toBuffer(value: unknown): Promise<Buffer> {
|
|
|
373
373
|
}
|
|
374
374
|
}
|
|
375
375
|
|
|
376
|
-
const buffer = Buffer.concat(chunks)
|
|
376
|
+
const buffer = Buffer.concat(chunks as any) // NOSONAR - type assertion to Buffer[] as else Frontend types does not match.
|
|
377
377
|
if (buffer.length === 0) {
|
|
378
378
|
throw new Error('xlport returned an empty Excel stream')
|
|
379
379
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postxl/generators",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.1",
|
|
4
4
|
"description": "Code generators for PXL - generates backend, frontend, Prisma schemas, and more",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"@prisma/prisma-schema-wasm": "7.2.0-4.0c8ef2ce45c83248ab3df073180d5eda9e8be7a3",
|
|
46
46
|
"exceljs": "^4.4.0",
|
|
47
47
|
"@postxl/generator": "^1.3.4",
|
|
48
|
-
"@postxl/schema": "^1.
|
|
49
|
-
"@postxl/ui-components": "^1.
|
|
48
|
+
"@postxl/schema": "^1.5.0",
|
|
49
|
+
"@postxl/ui-components": "^1.5.0",
|
|
50
50
|
"@postxl/utils": "^1.3.3"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {},
|