o2o-infinith-frontend/src/shared/api/model/contentStrategyData.ts

19 lines
536 B
TypeScript

/**
* Generated by orval v7.21.0 🍺
* Do not edit manually.
* FastAPI
* OpenAPI spec version: 0.1.0
*/
import type { ContentPillar } from './contentPillar';
import type { ContentTypeRow } from './contentTypeRow';
import type { WorkflowStep } from './workflowStep';
import type { RepurposingOutput } from './repurposingOutput';
export interface ContentStrategyData {
pillars: ContentPillar[];
typeMatrix: ContentTypeRow[];
workflow: WorkflowStep[];
repurposingSource: string;
repurposingOutputs: RepurposingOutput[];
}