```ts preconditions: ['AllStaff', 'BreakRoom'] ``` The above means AllStaff AND BreakRoom right? ```ts preconditions: [['AllStaff', 'BreakRoom']] ``` and then this would mean AllStaff OR BreakRoom?