UNPKG

@agility/management-sdk

Version:
31 lines (30 loc) 1.11 kB
"use strict"; 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 = WorkflowOperationType = {}));