@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
32 lines • 1.16 kB
JavaScript
;
/*
* Copyright 2024 Adobe
* All Rights Reserved.
*
* NOTICE: Adobe permits you to use, modify, and distribute this file in
* accordance with the terms of the Adobe license agreement accompanying
* it. If you have received this file from a source other than Adobe,
* then your use, modification, or distribution of it requires the prior
* written permission of Adobe.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContentEncryption = void 0;
/**
* Supported types of content to encrypt for {@link ProtectPDFJob}
*/
var ContentEncryption;
(function (ContentEncryption) {
/**
* Encrypts all the content of the PDF file
*/
ContentEncryption["ALL_CONTENT"] = "ALL_CONTENT";
/**
* Encrypts all the content except the metadata of the PDF file
*/
ContentEncryption["ALL_CONTENT_EXCEPT_METADATA"] = "ALL_CONTENT_EXCEPT_METADATA";
/**
* Encrypts only embedded files
*/
ContentEncryption["ONLY_EMBEDDED_FILES"] = "ONLY_EMBEDDED_FILES";
})(ContentEncryption || (exports.ContentEncryption = ContentEncryption = {}));
//# sourceMappingURL=ContentEncryption.js.map