/** * Filter on union or intersect search condition. */ export interface ContainsAllOrAny { /** * Match on all of the strings. */ containsAll?: Array; /** * Match on any of the strings. */ containsAny?: Array; }