PublishToLynx: boolean | EditionName[] | [ArchiveFileName, EditionName][]

Lynx promotion options. Can either be a boolean to promote all editions in Lynx OR can be an array of specific edition names or arrays of archive file names and edition names to more specifically target which editions to promote.

Example

Promote all editions to Lynx.

const publishToLynx: boolean = true;

Promote only "media-interactive" editions.

const publishToLynx: EditionName[] = ['media-interactive'];

Promote only those "media-interactive" editions uploaded in an archive file named "media-en-map.zip"

const publishToLynx: [ArchiveFileName, EditionName][] = [
['media-en-map.zip', 'media-interactive'],
];

Generated using TypeDoc