(input: RemoveArtifactInput)
| 5610 | // Hard delete: an artifact is not a connection, so there is no disabled or |
| 5611 | // archived state to fall back to. |
| 5612 | const artifactsRemove = (input: RemoveArtifactInput): Effect.Effect<void, StorageFailure> => |
| 5613 | core.deleteMany("artifact", { where: artifactById(input.id) }); |
| 5614 | |
| 5615 | // ------------------------------------------------------------------ |
| 5616 | // Elicitation |
nothing calls this directly
no test coverage detected