(input: RemoveArtifactInput)
| 4059 | // Hard delete: an artifact is not a connection, so there is no disabled or |
| 4060 | // archived state to fall back to. |
| 4061 | const artifactsRemove = (input: RemoveArtifactInput): Effect.Effect<void, StorageFailure> => |
| 4062 | core.deleteMany("artifact", { where: artifactById(input.id) }); |
| 4063 | |
| 4064 | // ------------------------------------------------------------------ |
| 4065 | // Elicitation |
nothing calls this directly
no test coverage detected