@stll/anonymize-docx 2.2.0 → 2.3.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 +0 -2
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +148 -861
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/ATTRIBUTION.md
CHANGED
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: {
|