clarify audit log stuff, fix api descriptions

This commit is contained in:
shamoon
2026-02-12 22:48:33 -08:00
parent c929f1c94c
commit 08b4cdbdf0
2 changed files with 4 additions and 2 deletions

View File

@@ -315,13 +315,13 @@ The following methods are supported:
- `"doc": OUTPUT_DOCUMENT_INDEX` Optional index of the output document for split operations. - `"doc": OUTPUT_DOCUMENT_INDEX` Optional index of the output document for split operations.
- Optional `parameters`: - Optional `parameters`:
- `"delete_original": true` to delete the original documents after editing. - `"delete_original": true` to delete the original documents after editing.
- `"update_document": true` to update the existing document with the edited PDF. - `"update_document": true` to add the edited PDF as a new version of the selected/root document.
- `"include_metadata": true` to copy metadata from the original document to the edited document. - `"include_metadata": true` to copy metadata from the original document to the edited document.
- `remove_password` - `remove_password`
- Requires `parameters`: - Requires `parameters`:
- `"password": "PASSWORD_STRING"` The password to remove from the PDF documents. - `"password": "PASSWORD_STRING"` The password to remove from the PDF documents.
- Optional `parameters`: - Optional `parameters`:
- `"update_document": true` to replace the existing document with the password-less PDF. - `"update_document": true` to add the password-less PDF as a new version of the selected/root document.
- `"delete_original": true` to delete the original document after editing. - `"delete_original": true` to delete the original document after editing.
- `"include_metadata": true` to copy metadata from the original document to the new password-less document. - `"include_metadata": true` to copy metadata from the original document to the new password-less document.
- `merge` - `merge`

View File

@@ -2017,6 +2017,8 @@ class BulkEditView(PassUserMixin):
"modify_custom_fields": "custom_fields", "modify_custom_fields": "custom_fields",
"set_permissions": None, "set_permissions": None,
"delete": "deleted_at", "delete": "deleted_at",
# These operations create new documents/versions no longer altering
# fields on the selected document in place
"rotate": None, "rotate": None,
"delete_pages": None, "delete_pages": None,
"split": None, "split": None,