Frodo Library - v4.0.2-0
    Preparing search index...

    Interface ScriptFilterCondition

    interface ScriptFilterCondition {
        field: string;
        value: string | string[];
    }
    Index

    Properties

    Properties

    field: string

    Script property to filter by.

    Supported built-in fields:

    • language: the script engine (field: 'language'), such as JAVASCRIPT or GROOVY
    • context / use: the AM script use (field: 'context' or field: 'use'), such as AUTHENTICATION_TREE_DECISION_NODE or OAUTH2_ACCESS_TOKEN_MODIFICATION
    • evaluatorVersion: the script evaluator schema version (field: 'evaluatorVersion'), such as 1.0 (legacy) or 2.0 (nextgen)

    Any other script property name is matched directly against the script object.

    value: string | string[]

    One or more values to match against the selected field. Multiple values are OR-ed together.

    Examples:

    • value: 'javascript'
    • value: ['AUTHENTICATION_TREE_DECISION_NODE', 'OAUTH2_ACCESS_TOKEN_MODIFICATION']
    • value: '2.0'