(input: RemoveArtifactInput)
| 4218 | // Hard delete: an artifact is not a connection, so there is no disabled or |
| 4219 | // archived state to fall back to. |
| 4220 | const artifactsRemove = (input: RemoveArtifactInput): Effect.Effect<void, StorageFailure> => |
| 4221 | core.deleteMany("artifact", { where: artifactById(input.id) }); |
| 4222 | |
| 4223 | // ------------------------------------------------------------------ |
| 4224 | // Elicitation |
nothing calls this directly
no test coverage detected