(value: string)
| 31 | // prefix. WorkOS org ids contain underscores, and a bare `_` in a LIKE pattern |
| 32 | // matches any character, which would widen the match to unrelated tenants. |
| 33 | const escapeLike = (value: string): string => value.replace(/[\\%_]/g, "\\$&"); |
| 34 | |
| 35 | /** |
| 36 | * Delete all rows owned by `organizationId`: every executor tenant table, the |
no test coverage detected