This commit is contained in:
35
packages/elixir/lib/kreuzberg/revision_delta.ex
generated
Normal file
35
packages/elixir/lib/kreuzberg/revision_delta.ex
generated
Normal file
@@ -0,0 +1,35 @@
|
||||
# This file is auto-generated by alef — DO NOT EDIT.
|
||||
# alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
|
||||
# To regenerate: alef generate
|
||||
# To verify freshness: alef verify --exit-code
|
||||
# Issues & docs: https://github.com/kreuzberg-dev/alef
|
||||
defmodule Kreuzberg.RevisionDelta do
|
||||
@moduledoc """
|
||||
The content changes that make up a single revision.
|
||||
|
||||
For insertions and deletions the `content` field carries the added/removed
|
||||
lines as `DiffLine::Added` / `DiffLine::Removed` entries. For format
|
||||
changes, `content` is empty — the property diff is left as a TODO for a
|
||||
later enrichment pass.
|
||||
"""
|
||||
|
||||
@typedoc "The content changes that make up a single revision."
|
||||
@type t :: %__MODULE__{
|
||||
content: [String.t() | nil],
|
||||
table_changes: [map()]
|
||||
}
|
||||
|
||||
defstruct content: [],
|
||||
table_changes: []
|
||||
|
||||
defimpl Jason.Encoder do
|
||||
@doc false
|
||||
def encode(value, opts) do
|
||||
value
|
||||
|> Map.from_struct()
|
||||
|> Enum.reject(fn {_k, v} -> v == nil end)
|
||||
|> Enum.into(%{})
|
||||
|> Jason.Encoder.encode(opts)
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user