acquia-dam-sdk
Version:
Interact with the Acquia DAM API
11 lines (10 loc) • 369 B
TypeScript
export interface DeliverableStatusChangedEvent {
deliverable_key: string;
new_status: DeliverableStatus;
old_status: DeliverableStatus;
}
export interface ProjectCreatedEvent {
project_id: string;
title: string;
}
export type DeliverableStatus = 'NEEDS_SETUP' | 'NEEDS_PROOF' | 'NEEDS_PROOF_WITH_EDITS' | 'IN_REVIEW' | 'REVIEW_COMPLETE' | 'CLOSED';