js.documents 1.54.3 → 1.54.5
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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -8803,7 +8803,7 @@ const LEADING_WORD_RE = /^([A-Za-z_][A-Za-z0-9_]*)/;
|
|
|
8803
8803
|
function resolveHsqldbTypeCode(declaredType) {
|
|
8804
8804
|
const word = LEADING_WORD_RE.exec(declaredType.trim())?.[1]?.toUpperCase();
|
|
8805
8805
|
if (word === void 0) throw new HsqldbRowFormatError(`cannot resolve a SQL type name from column type clause "${declaredType}"`);
|
|
8806
|
-
if (UNSUPPORTED_SQL_TYPE_NAMES.has(word)) throw new HsqldbRowFormatError(`column type "${word}" has no document-
|
|
8806
|
+
if (UNSUPPORTED_SQL_TYPE_NAMES.has(word)) throw new HsqldbRowFormatError(`column type "${word}" has no document-schema.js ContentCellValue equivalent (binary/object column types are not representable) -- from declared type "${declaredType}"`);
|
|
8807
8807
|
const code = SQL_TYPE_NAME_TO_CODE[word];
|
|
8808
8808
|
if (code === void 0) throw new HsqldbRowFormatError(`unrecognised HSQLDB column type "${word}" -- from declared type "${declaredType}"`);
|
|
8809
8809
|
return code;
|
package/dist/index.js
CHANGED
|
@@ -8802,7 +8802,7 @@ const LEADING_WORD_RE = /^([A-Za-z_][A-Za-z0-9_]*)/;
|
|
|
8802
8802
|
function resolveHsqldbTypeCode(declaredType) {
|
|
8803
8803
|
const word = LEADING_WORD_RE.exec(declaredType.trim())?.[1]?.toUpperCase();
|
|
8804
8804
|
if (word === void 0) throw new HsqldbRowFormatError(`cannot resolve a SQL type name from column type clause "${declaredType}"`);
|
|
8805
|
-
if (UNSUPPORTED_SQL_TYPE_NAMES.has(word)) throw new HsqldbRowFormatError(`column type "${word}" has no document-
|
|
8805
|
+
if (UNSUPPORTED_SQL_TYPE_NAMES.has(word)) throw new HsqldbRowFormatError(`column type "${word}" has no document-schema.js ContentCellValue equivalent (binary/object column types are not representable) -- from declared type "${declaredType}"`);
|
|
8806
8806
|
const code = SQL_TYPE_NAME_TO_CODE[word];
|
|
8807
8807
|
if (code === void 0) throw new HsqldbRowFormatError(`unrecognised HSQLDB column type "${word}" -- from declared type "${declaredType}"`);
|
|
8808
8808
|
return code;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "js.documents",
|
|
3
|
-
"version": "1.54.
|
|
3
|
+
"version": "1.54.5",
|
|
4
4
|
"description": "Bidirectional docx/pptx <-> PDF conversion and a read+write editable OOXML document model, built on ooxml.js and Zod 4 codecs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"document-schema.js": "^1.5.3",
|
|
54
54
|
"fflate": "^0.8.3",
|
|
55
|
-
"odf.js": "^1.10.
|
|
56
|
-
"ooxml.js": "^2.2.
|
|
57
|
-
"pdf-codec": "^1.
|
|
55
|
+
"odf.js": "^1.10.3",
|
|
56
|
+
"ooxml.js": "^2.2.3",
|
|
57
|
+
"pdf-codec": "^1.1.3",
|
|
58
58
|
"zod": "^4.4.3"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|