ArchAstro. Types. SolutionDiffEntry
(archastro v0.2.0)
Copy Markdown
A single config entry in a solution upgrade diff, describing what action will be taken on a specific config key.
Summary
Types
@type t() :: %ArchAstro.Types.SolutionDiffEntry{ action: String.t(), content_changed: boolean(), id: String.t() | ArchAstro.Unset.t(), key: String.t(), kind: String.t() | ArchAstro.Unset.t(), lookup_key: String.t() | ArchAstro.Unset.t(), mime_type_changed: boolean(), referenced_by: [ArchAstro.Types.SolutionDiffReference.t()] | ArchAstro.Unset.t(), relative_path_changed: boolean(), role: String.t(), virtual_path: String.t() | ArchAstro.Unset.t() }
Functions
@spec from_map(ArchAstro.JSON.object()) :: t()
@spec matches?(ArchAstro.JSON.t()) :: boolean()
@spec to_map(t()) :: ArchAstro.JSON.object()