@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
31 lines • 1.18 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.RequestKey = void 0;
class RequestKey {
constructor(key) {
this._key = key;
}
get key() {
return this._key;
}
}
exports.RequestKey = RequestKey;
RequestKey.CREATE_PRE_SIGNED_URI = new RequestKey("create_pre_signed_uri");
RequestKey.CREATE_JOB = new RequestKey("create_job");
RequestKey.JOB_STATUS = new RequestKey("job_status");
RequestKey.GET_ASSET = new RequestKey("get_asset");
RequestKey.DELETE_ASSET = new RequestKey("delete_asset");
RequestKey.CLOUD_UPLOAD = new RequestKey("cloud_upload");
RequestKey.CLOUD_DOWNLOAD = new RequestKey("cloud_download");
RequestKey.AUTHN_PDF_SERVICES_SPC = new RequestKey("pdf_services.session_token");
//# sourceMappingURL=RequestKey.js.map