@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
36 lines • 1.6 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.DocumentLevelPermission = void 0;
/**
* A mapping of Document Level Permission used in {@link PDFElectronicSealParams}.
*/
var DocumentLevelPermission;
(function (DocumentLevelPermission) {
/**
* Represents NO_CHANGES_ALLOWED document level permission.
* No changes to the output document are permitted.
*/
DocumentLevelPermission["NO_CHANGES_ALLOWED"] = "NO_CHANGES_ALLOWED";
/**
* Represents FORM_FILLING document level permission.
* Allowed changes in the output document are filling in forms, instantiating page templates, and performing
* approval signatures.
*/
DocumentLevelPermission["FORM_FILLING"] = "FORM_FILLING";
/**
* Represents FORM_FILLING_AND_ANNOTATIONS document level permission.
* In addition to changes allowed in FORM_FILLING, annotation creation, deletion, and modification are also allowed.
*/
DocumentLevelPermission["FORM_FILLING_AND_ANNOTATIONS"] = "FORM_FILLING_AND_ANNOTATIONS";
})(DocumentLevelPermission || (exports.DocumentLevelPermission = DocumentLevelPermission = {}));
//# sourceMappingURL=DocumentLevelPermission.js.map