(input: RemoveArtifactInput)
| 6230 | // Hard delete: an artifact is not a connection, so there is no disabled or |
| 6231 | // archived state to fall back to. |
| 6232 | const artifactsRemove = (input: RemoveArtifactInput): Effect.Effect<void, StorageFailure> => |
| 6233 | core.deleteMany("artifact", { where: artifactById(input.id) }); |
| 6234 | |
| 6235 | // ------------------------------------------------------------------ |
| 6236 | // Elicitation |
nothing calls this directly
no test coverage detected