Member Junction
    Preparing search index...

    Interface MJActionEntity_IRuntimeActionSandboxOptions

    Sandbox affordances the action needs beyond the default library set (lodash, date-fns, uuid, validator).

    interface MJActionEntity_IRuntimeActionSandboxOptions {
        additionalLibraries?: MJActionEntity_IRuntimeLibraryReference[];
        debugMode?: boolean;
    }
    Index

    Properties

    Additional libraries beyond the default set. Must be in the approved registry in @memberjunction/action-runtime — arbitrary npm packages are not allowed. Currently approved opt-in libraries:

    • mathjs (heavy math)
    • papaparse (CSV parsing)
    • cheerio (HTML parsing)
    • marked (markdown parsing)
    debugMode?: boolean

    Enable verbose console output in the sandbox. Default false.