Member Junction
    Preparing search index...

    Interface ParsedPathWithOperations

    Parsed path with operation restrictions

    interface ParsedPathWithOperations {
        allOperations: boolean;
        operations: PayloadOperation[];
        path: string;
    }
    Index

    Properties

    allOperations: boolean

    Whether all operations are allowed (backward compatibility)

    operations: PayloadOperation[]

    Allowed operations on this path. Empty array means no operations allowed.

    path: string

    The path pattern (e.g., "customer.*", "analysis.results")