Skip to content

UserJourneyFlow

reference
1 min readUpdated

Kind: Interface

Source: atloria-monorepo/libs/parser-core/src/interfaces/user-journey.interface.ts

A complete user journey flow

Represents an end-to-end user interaction flow through the application, including screens, actions, decisions, and navigation.

Properties

PropertyType
idstring
namestring
descriptionstring
framework`'angular'
componentstring
nodesUserJourneyNode[]
edgesUserJourneyEdge[]
startNodeIdstring
endNodeIdsstring[]
tagsstring[]
metadata`{
/** Estimated complexity (1-10) */
complexity?: number;

/** Number of user actions required */
actionCount?: number;

/** Number of decision points */
decisionCount?: number;

/** Number of screens involved */
screenCount?: number;

/** Is this a critical user flow? */
isCritical?: boolean;

/** Related state machine IDs */
relatedStateMachines?: string[];

[key: string]: any;

}` |

Was this page helpful?

Download as PDF