@stll/anonymize-docx 2.2.0 → 2.4.0

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/ATTRIBUTION.md CHANGED
@@ -4,5 +4,3 @@ This package includes the following runtime dependencies:
4
4
 
5
5
  - [fflate](https://github.com/101arrowz/fflate), MIT License: ZIP archive parsing
6
6
  and decompression.
7
- - [saxes](https://github.com/lddubeau/saxes), ISC License: namespace-aware XML
8
- parsing.
package/dist/index.d.mts CHANGED
@@ -182,6 +182,7 @@ declare const DOCX_RESTORATION_ERROR_CODES: {
182
182
  readonly invalidSession: "invalid-session";
183
183
  readonly restorationLimitExceeded: "restoration-limit-exceeded";
184
184
  readonly sessionMismatch: "session-mismatch";
185
+ readonly unsupportedDocument: "unsupported-document";
185
186
  };
186
187
  type DocxRestorationErrorCode = (typeof DOCX_RESTORATION_ERROR_CODES)[keyof typeof DOCX_RESTORATION_ERROR_CODES];
187
188
  declare const DOCX_REWRITE_ERROR_CODES: {