libs/nx/src/generators/journey-src/lib/extract-frame-data/extract-frame-data-options.ts
Properties |
|
| directory (Optional) | |
| Type |
string
|
|
Description
|
Application Directory |
| navigationSections | |
| Type |
SectionConfiguration[]
|
|
Description
|
Navigation section to be displayed in the progress indicator. |
| pagesJson | |
| Type |
PagesConfigurationWithTransformedDynamicForms
|
| showroom (Optional) | |
| Type |
boolean
|
|
Description
|
Generate the journey in showroom mode |
import { SectionConfiguration } from '@allianz/taly-core/schemas';
import { PagesConfigurationWithTransformedDynamicForms } from '@allianz/taly-sdk';
export interface ExtractFrameDataOptions {
/**
* Application Directory
*/
directory?: string;
pagesJson: PagesConfigurationWithTransformedDynamicForms;
/**
* Navigation section to be displayed in the progress indicator.
*/
navigationSections: SectionConfiguration[];
/**
* Generate the journey in showroom mode
*/
showroom?: boolean;
}