(message: string)
| 71 | type AnyConditionBuilder = ConditionBuilder<Record<string, AnyColumn>>; |
| 72 | |
| 73 | const policyViolation = (message: string): never => { |
| 74 | // oxlint-disable-next-line executor/no-try-catch-or-throw -- boundary: FumaDB table policy callbacks are promise callbacks, not Effect effects |
| 75 | throw new StorageError({ message, cause: undefined }); |
| 76 | }; |
| 77 | |
| 78 | const requireContext = ( |
| 79 | tableName: string, |
no outgoing calls
no test coverage detected