chore: update typespecs

This commit is contained in:
Zach Daniel 2023-12-11 08:09:55 -05:00
parent 852f27dfb6
commit 3800c360ad

View file

@ -92,7 +92,10 @@ defmodule Ash.Resource.Change do
end
@type context :: %{
optional(:actor) => Ash.Resource.record(),
optional(:actor) => Ash.Resource.record() | nil,
optional(:tenant) => String.t() | nil,
optional(:authorize?) => boolean() | nil,
optional(:tracer) => Ash.Tracer.t() | [Ash.Tracer.t()] | nil,
optional(any) => any
}