js.documents 1.54.4 → 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 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-content-model ContentCellValue equivalent (binary/object column types are not representable) -- from declared type "${declaredType}"`);
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-content-model ContentCellValue equivalent (binary/object column types are not representable) -- from declared type "${declaredType}"`);
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.4",
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": {