@agility/management-sdk
Version:
Agility CMS Tyescript SDK for Management API.
31 lines (30 loc) • 1.12 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WorkflowOperationType = void 0;
/**
* Workflow operation types specifically for batch processing.
* Subset of BatchOperationType containing only workflow-related operations.
*/
var WorkflowOperationType;
(function (WorkflowOperationType) {
/**
* Publish the items in the batch.
*/
WorkflowOperationType[WorkflowOperationType["Publish"] = 1] = "Publish";
/**
* Unpublish the items in the batch.
*/
WorkflowOperationType[WorkflowOperationType["Unpublish"] = 2] = "Unpublish";
/**
* Approve the items in the batch.
*/
WorkflowOperationType[WorkflowOperationType["Approve"] = 3] = "Approve";
/**
* Decline the items in the batch.
*/
WorkflowOperationType[WorkflowOperationType["Decline"] = 4] = "Decline";
/**
* Request approval for the items in the batch.
*/
WorkflowOperationType[WorkflowOperationType["RequestApproval"] = 5] = "RequestApproval";
})(WorkflowOperationType = exports.WorkflowOperationType || (exports.WorkflowOperationType = {}));