libs/nx/src/models/showroom-json.ts
Schema Definition for a file, which can be used to provide additional configuration in showroom journeys
Properties |
|
allowedPfeActions (Optional) | |
Type |
literal type
|
Description
|
List of PFE action types that should run in the showroom journey. |
initialPfeState (Optional) | |
Type |
literal type
|
Description
|
Data to be stored in the PFE state when a journey starts. |
export interface ShowroomJsonSchema {
/**
* List of PFE action types that should run in the showroom journey.
*/
allowedPfeActions?: {
types?: string[];
};
/**
* Data to be stored in the PFE state when a journey starts.
*/
initialPfeState?: { [key: string]: unknown };
}