(input: RemoveArtifactInput)
| 4146 | // Hard delete: an artifact is not a connection, so there is no disabled or |
| 4147 | // archived state to fall back to. |
| 4148 | const artifactsRemove = (input: RemoveArtifactInput): Effect.Effect<void, StorageFailure> => |
| 4149 | core.deleteMany("artifact", { where: artifactById(input.id) }); |
| 4150 | |
| 4151 | // ------------------------------------------------------------------ |
| 4152 | // Elicitation |
nothing calls this directly
no test coverage detected