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

    Type Alias ExpressionEvaluationResult

    type ExpressionEvaluationResult = {
        expression: string;
        referencedSecrets: ExpressionSecretReferenceItem[];
        result: unknown;
        warnings: ExpressionEvaluationWarningItem[];
    }
    Index
    expression: string

    The evaluated expression

    referencedSecrets: ExpressionSecretReferenceItem[]

    The secret references resolved from trusted sources while evaluating the expression: a camunda.secrets.<name> reference used directly in the expression, or a reference carried by a SECRET_REFERENCE-kind cluster variable the expression read. References appearing only in request-body variables or plain cluster variables are excluded. Callers use this to know which camunda.secrets.<name> occurrences in the result they may safely resolve.

    result: unknown

    The result value. Its type can vary.

    List of warnings generated during expression evaluation