@agility/management-sdk
Version:
Agility CMS Tyescript SDK for Management API.
27 lines (26 loc) • 578 B
TypeScript
/**
* Workflow operation types specifically for batch processing.
* Subset of BatchOperationType containing only workflow-related operations.
*/
export declare enum WorkflowOperationType {
/**
* Publish the items in the batch.
*/
Publish = 1,
/**
* Unpublish the items in the batch.
*/
Unpublish = 2,
/**
* Approve the items in the batch.
*/
Approve = 3,
/**
* Decline the items in the batch.
*/
Decline = 4,
/**
* Request approval for the items in the batch.
*/
RequestApproval = 5
}