@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias ExpressionEvaluationRequest

    type ExpressionEvaluationRequest = {
        expression: string;
        tenantId?: string;
        variables?: { [key: string]: unknown } | null;
    }
    Index

    Properties

    expression: string

    The expression to evaluate (e.g., "=x + y")

    tenantId?: string

    Required when the expression references tenant-scoped cluster variables

    variables?: { [key: string]: unknown } | null

    Optional variables for expression evaluation. These variables are only used for the current evaluation and do not persist beyond it.