Kind: Interface
Source: atloria-monorepo/packages/doc-automation/src/v2/types/cross-language.types.ts
WorkflowDocumentation - Full workflow documentation for users
Generated from combining frontend screens with backend business logic.
Properties
| Property | Type |
|---|---|
id | string |
name | string |
category | string |
description | string |
prerequisites | `{ |
roles: string[]; // ["Sales Rep", "Sales Manager"] permissions: string[]; // ["sales:orders:create"] priorSteps?: string[]; // ["Create a customer first"]
}| |steps|UserJourneyStep[]| |stateMachine|{
initialState: string; // "Draft"
transitions: Array<{
from: string; // "Draft"
to: string; // "Submitted"
action: string; // "Submit for approval"
conditions?: string[]; // ["All required fields filled"]
}>;
}| |relatedWorkflows|string[]` |
Was this page helpful?