From 287d817310c0790b7992aca546b405fe7f78042d Mon Sep 17 00:00:00 2001
From: stuartc Registry process to query and maintain a list of adaptors available for
writing jobs. Currently it queries NPM for all modules in the Usage Caching By default the results are cached to disk, and will be reused every start. In order to disable or configure caching pass see: The process uses Caching By default the results are cached to disk, and will be reused every start. In order to disable or configure caching pass see: The process uses Timeouts There is a 'general' timeout of 30s, this is used for GenServer calls like
Destructures an NPM style package name into module name and version. Example Destructures an NPM style package name into module name and version. Example Queries the AI assistant with the given content. Returns Example Queries the AI assistant with the given content. Returns Example Perform a DELETE request. See Perform a DELETE request. See Perform a DELETE request. See Perform a DELETE request. See Perform a GET request. See Perform a GET request. See Perform a GET request. See Perform a GET request. See Perform a HEAD request. See Perform a HEAD request. See Perform a HEAD request. See Perform a HEAD request. See Perform a OPTIONS request. See Perform a OPTIONS request. See Perform a OPTIONS request. See Perform a OPTIONS request. See Perform a PATCH request. See Perform a PATCH request. See Perform a PATCH request. See Perform a PATCH request. See Perform a POST request. See Perform a POST request. See Perform a POST request. See Perform a POST request. See Perform a PUT request. See Perform a PUT request. See Perform a PUT request. See Perform a PUT request. See Perform a TRACE request. See Perform a TRACE request. See Perform a TRACE request. See Perform a TRACE request. See The OpenFn CLI returns JSON formatted log lines, which are decoded and added
-to a There are two kinds of output: These are usually for general logging, and debugging. The above is the equivalent of the output of a commandapply_user_email(user, password, attrs)
Examples
-
+iex> apply_user_email(user, "valid password", %{email: ...})
-{:ok, %User{}}role: :superuser
-iex> apply_user_email(user, "invalid password", %{email: ...})
-{:error, %Ecto.Changeset{}}
iex> apply_user_email(user, "valid password", %{email: ...})
+{:ok, %User{}}role: :superuser
+iex> apply_user_email(user, "invalid password", %{email: ...})
+{:error, %Ecto.Changeset{}}
change_scheduled_deletion(user, attrs \\ %{
Examples
-
+iex> change_scheduled_deletion(user)
-%Ecto.Changeset{data: %User{}}
iex> change_scheduled_deletion(user)
+%Ecto.Changeset{data: %User{}}
change_superuser_registration(attrs \\ %{})
Examples
-
+iex> change_superuser_registration(user)
-%Ecto.Changeset{data: %User{}}
iex> change_superuser_registration(user)
+%Ecto.Changeset{data: %User{}}
change_user_email(user, attrs \\ %{})
Examples
-
+iex> change_user_email(user)
-%Ecto.Changeset{data: %User{}}
iex> change_user_email(user)
+%Ecto.Changeset{data: %User{}}
change_user_password(user, attrs \\ %{})
Examples
-
+iex> change_user_password(user)
-%Ecto.Changeset{data: %User{}}
iex> change_user_password(user)
+%Ecto.Changeset{data: %User{}}
change_user_registration(attrs \\ %{})
Examples
-
+iex> change_user_registration(user)
-%Ecto.Changeset{data: %User{}}
iex> change_user_registration(user)
+%Ecto.Changeset{data: %User{}}
delete_token(token)
Examples
-iex> delete_token(token)
-{:ok, %UserToken{}}
+
+iex> delete_token(token)
+{:error, %Ecto.Changeset{}}iex> delete_token(token)
+{:ok, %UserToken{}}
-iex> delete_token(token)
-{:error, %Ecto.Changeset{}}
delete_user(user)
Examples
-iex> delete_user(user)
-{:ok, %User{}}
+
+iex> delete_user(user)
+{:error, %Ecto.Changeset{}}iex> delete_user(user)
+{:ok, %User{}}
-iex> delete_user(user)
-{:error, %Ecto.Changeset{}}
deliver_user_confirmation_instructions(user
Examples
-
iex> deliver_user_confirmation_instructions(user)
-{:ok, %{to: ..., body: ...}}
+
+iex> deliver_user_confirmation_instructions(confirmed_user)
+{:error, :already_confirmed}iex> deliver_user_confirmation_instructions(user)
+{:ok, %{to: ..., body: ...}}
-iex> deliver_user_confirmation_instructions(confirmed_user)
-{:error, :already_confirmed}
deliver_user_reset_password_instructions(us
Examples
-
+iex> deliver_user_reset_password_instructions(user, &Routes.user_reset_password_url(conn, :edit, &1))
-{:ok, %{to: ..., body: ...}}
iex> deliver_user_reset_password_instructions(user, &Routes.user_reset_password_url(conn, :edit, &1))
+{:ok, %{to: ..., body: ...}}
get_preference(user, key)
Examples
-iex> get_preference(user, "editor.orientation")
+
iex> get_preference(user, "editor.orientation")
"vertical"
-iex> get_preference(user, "notifications.enabled")
+iex> get_preference(user, "notifications.enabled")
true
get_token!(id)
Examples
-iex> get_token!(123)
-%UserToken{}
+
@@ -1575,10 +1575,10 @@ iex> get_token!(123)
+%UserToken{}
-iex> get_token!(456)
+iex> get_token!(456)
** (Ecto.NoResultsError)
get_user(id)
Examples
-iex> get_user(123)
-%User{}
+
@@ -1673,10 +1673,10 @@ iex> get_user(123)
+%User{}
-iex> get_user!(456)
+iex> get_user!(456)
nil
get_user_by_email(email)
Examples
-iex> get_user_by_email("foo@example.com")
-%User{}
+
@@ -1705,10 +1705,10 @@ iex> get_user_by_email("foo@example.com")
+%User{}
-iex> get_user_by_email("unknown@example.com")
+iex> get_user_by_email("unknown@example.com")
nil
get_user_by_email_and_password(email, passw
Examples
-
iex> get_user_by_email_and_password("foo@example.com", "correct_password")
-%User{}
+
@@ -1737,10 +1737,10 @@ iex> get_user_by_email_and_password("foo@example.com", "correct_password")
+%User{}
-iex> get_user_by_email_and_password("foo@example.com", "invalid_password")
+iex> get_user_by_email_and_password("foo@example.com", "invalid_password")
nil
get_user_by_reset_password_token(token)
Examples
-iex> get_user_by_reset_password_token("validtoken")
-%User{}
+
@@ -1937,8 +1937,8 @@ iex> get_user_by_reset_password_token("validtoken")
+%User{}
-iex> get_user_by_reset_password_token("invalidtoken")
+iex> get_user_by_reset_password_token("invalidtoken")
nil
list_users()
Examples
-
+iex> list_users()
-[%User{}, ...]
iex> list_users()
+[%User{}, ...]
register_superuser(attrs)
Examples
-iex> register_superuser(%{field: value})
-{:ok, %User{}}
+
+iex> register_superuser(%{field: bad_value})
+{:error, %Ecto.Changeset{}}iex> register_superuser(%{field: value})
+{:ok, %User{}}
-iex> register_superuser(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
register_user(attrs)
Examples
-iex> register_user(%{field: value})
-{:ok, %User{}}
+
+iex> register_user(%{field: bad_value})
+{:error, %Ecto.Changeset{}}iex> register_user(%{field: value})
+{:ok, %User{}}
-iex> register_user(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
request_email_update(user, new_email)
Examples
-iex> request_email_update(user, new_email)
+
iex> request_email_update(user, new_email)
:ok
reset_user_password(user, attrs)
Examples
-iex> reset_user_password(user, %{password: "new long password", password_confirmation: "new long password"})
-{:ok, %User{}}
+
+iex> reset_user_password(user, %{password: "valid", password_confirmation: "not the same"})
+{:error, %Ecto.Changeset{}}iex> reset_user_password(user, %{password: "new long password", password_confirmation: "new long password"})
+{:ok, %User{}}
-iex> reset_user_password(user, %{password: "valid", password_confirmation: "not the same"})
-{:error, %Ecto.Changeset{}}
update_user_password(user, password, attrs)
Examples
-
iex> update_user_password(user, "valid password", %{password: ...})
-{:ok, %User{}}
+
+iex> update_user_password(user, "invalid password", %{password: ...})
+{:error, %Ecto.Changeset{}}iex> update_user_password(user, "valid password", %{password: ...})
+{:ok, %User{}}
-iex> update_user_password(user, "invalid password", %{password: ...})
-{:error, %Ecto.Changeset{}}
update_user_preference(user, key, value)
Examples
-
iex> update_user_preference(user, "editor.orientation", "vertical")
-{:ok, %User{}}
+
+iex> update_user_preference(user, "notifications.enabled", true)
+{:ok, %User{}}iex> update_user_preference(user, "editor.orientation", "vertical")
+{:ok, %User{}}
-iex> update_user_preference(user, "notifications.enabled", true)
-{:ok, %User{}}
update_user_preferences(user, preferences)<
Examples
-
+iex> update_user_preferences(%User{}, %{"editor.orientaion" => "vertical"})
iex> update_user_preferences(%User{}, %{"editor.orientaion" => "vertical"})
validate_change_user_email(user, params \\
Examples
-
+iex> validate_change_user_email(user, %{"email" => "new@example.com", "current_password" => "secret"})
-%Ecto.Changeset{...}
iex> validate_change_user_email(user, %{"email" => "new@example.com", "current_password" => "secret"})
+%Ecto.Changeset{...}
request(request)
Examples
-request = %HTTPoison.Request{
+
+request(request)request = %HTTPoison.Request{
method: :post,
url: "https://my.website.com",
body: "{\"foo\": 3}",
- headers: [{"Accept", "application/json"}]
-}
+ headers: [{"Accept", "application/json"}]
+}
-request(request)
request(method, url, body \\ "",
Examples
-
+request(:post, "https://my.website.com", "{\"foo\": 3}", [{"Accept", "application/json"}])
request(:post, "https://my.website.com", "{\"foo\": 3}", [{"Accept", "application/json"}])
@openfn
organization and
filters out modules that are known not to be adaptors.# Starting the process
-AdaptorRegistry.start_link()
+AdaptorRegistry.start_link()
# Getting a list of all adaptors
-Lightning.AdaptorRegistry.AdaptorRegistry.all()
start_link/1
.:continue
to return before the adaptors have been queried.
+start_link/1
.:continue
to return before the adaptors have been queried.
This does mean that the first call to the process will be delayed until
the handle_continue/2
has finished.all/1
and also internally when the modules are being queried. NPM can
@@ -432,10 +432,10 @@ resolve_package_name(package_name)
-
+iex> resolve_package_name("@openfn/language-salesforce@1.2.3")
-{ "@openfn/language-salesforce", "1.2.3" }
-iex> resolve_package_name("@openfn/language-salesforce")
-{ "@openfn/language-salesforce", nil }
iex> resolve_package_name("@openfn/language-salesforce@1.2.3")
+{ "@openfn/language-salesforce", "1.2.3" }
+iex> resolve_package_name("@openfn/language-salesforce")
+{ "@openfn/language-salesforce", nil }
query(session, content)
-{:ok, session}
if the query was successful, otherwise :error
.
+iex> AiAssistant.query(session, "fn()")
-{:ok, session}
{:ok, session}
if the query was successful, otherwise :error
.iex> AiAssistant.query(session, "fn()")
+{:ok, session}
delete(client, url, opts)
-request/1
or request/2
for options definition.
+delete("/users")
-delete("/users", query: [scope: "admin"])
-delete(client, "/users")
-delete(client, "/users", query: [scope: "admin"])
-delete(client, "/users", body: %{name: "Jon"})
request/1
or request/2
for options definition.delete("/users")
+delete("/users", query: [scope: "admin"])
+delete(client, "/users")
+delete(client, "/users", query: [scope: "admin"])
+delete(client, "/users", body: %{name: "Jon"})
delete!(client, url, opts)
-request!/1
or request!/2
for options definition.
+delete!("/users")
-delete!("/users", query: [scope: "admin"])
-delete!(client, "/users")
-delete!(client, "/users", query: [scope: "admin"])
-delete!(client, "/users", body: %{name: "Jon"})
request!/1
or request!/2
for options definition.delete!("/users")
+delete!("/users", query: [scope: "admin"])
+delete!(client, "/users")
+delete!(client, "/users", query: [scope: "admin"])
+delete!(client, "/users", body: %{name: "Jon"})
get(client, url, opts)
-request/1
or request/2
for options definition.
+get("/users")
-get("/users", query: [scope: "admin"])
-get(client, "/users")
-get(client, "/users", query: [scope: "admin"])
-get(client, "/users", body: %{name: "Jon"})
request/1
or request/2
for options definition.get("/users")
+get("/users", query: [scope: "admin"])
+get(client, "/users")
+get(client, "/users", query: [scope: "admin"])
+get(client, "/users", body: %{name: "Jon"})
get!(client, url, opts)
-request!/1
or request!/2
for options definition.
+get!("/users")
-get!("/users", query: [scope: "admin"])
-get!(client, "/users")
-get!(client, "/users", query: [scope: "admin"])
-get!(client, "/users", body: %{name: "Jon"})
request!/1
or request!/2
for options definition.get!("/users")
+get!("/users", query: [scope: "admin"])
+get!(client, "/users")
+get!(client, "/users", query: [scope: "admin"])
+get!(client, "/users", body: %{name: "Jon"})
head(client, url, opts)
-request/1
or request/2
for options definition.
+head("/users")
-head("/users", query: [scope: "admin"])
-head(client, "/users")
-head(client, "/users", query: [scope: "admin"])
-head(client, "/users", body: %{name: "Jon"})
request/1
or request/2
for options definition.head("/users")
+head("/users", query: [scope: "admin"])
+head(client, "/users")
+head(client, "/users", query: [scope: "admin"])
+head(client, "/users", body: %{name: "Jon"})
head!(client, url, opts)
-request!/1
or request!/2
for options definition.
+head!("/users")
-head!("/users", query: [scope: "admin"])
-head!(client, "/users")
-head!(client, "/users", query: [scope: "admin"])
-head!(client, "/users", body: %{name: "Jon"})
request!/1
or request!/2
for options definition.head!("/users")
+head!("/users", query: [scope: "admin"])
+head!(client, "/users")
+head!(client, "/users", query: [scope: "admin"])
+head!(client, "/users", body: %{name: "Jon"})
options(client, url, opts)
-request/1
or request/2
for options definition.
+options("/users")
-options("/users", query: [scope: "admin"])
-options(client, "/users")
-options(client, "/users", query: [scope: "admin"])
-options(client, "/users", body: %{name: "Jon"})
request/1
or request/2
for options definition.options("/users")
+options("/users", query: [scope: "admin"])
+options(client, "/users")
+options(client, "/users", query: [scope: "admin"])
+options(client, "/users", body: %{name: "Jon"})
options!(client, url, opts)
-request!/1
or request!/2
for options definition.
+options!("/users")
-options!("/users", query: [scope: "admin"])
-options!(client, "/users")
-options!(client, "/users", query: [scope: "admin"])
-options!(client, "/users", body: %{name: "Jon"})
request!/1
or request!/2
for options definition.options!("/users")
+options!("/users", query: [scope: "admin"])
+options!(client, "/users")
+options!(client, "/users", query: [scope: "admin"])
+options!(client, "/users", body: %{name: "Jon"})
patch(client, url, body, opts)
-request/1
or request/2
for options definition.
+patch("/users", %{name: "Jon"})
-patch("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch(client, "/users", %{name: "Jon"})
-patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
request/1
or request/2
for options definition.patch("/users", %{name: "Jon"})
+patch("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch(client, "/users", %{name: "Jon"})
+patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
patch!(client, url, body, opts)
-request!/1
or request!/2
for options definition.
+patch!("/users", %{name: "Jon"})
-patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch!(client, "/users", %{name: "Jon"})
-patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
request!/1
or request!/2
for options definition.patch!("/users", %{name: "Jon"})
+patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch!(client, "/users", %{name: "Jon"})
+patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
post(client, url, body, opts)
-request/1
or request/2
for options definition.
+post("/users", %{name: "Jon"})
-post("/users", %{name: "Jon"}, query: [scope: "admin"])
-post(client, "/users", %{name: "Jon"})
-post(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
request/1
or request/2
for options definition.post("/users", %{name: "Jon"})
+post("/users", %{name: "Jon"}, query: [scope: "admin"])
+post(client, "/users", %{name: "Jon"})
+post(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
post!(client, url, body, opts)
-request!/1
or request!/2
for options definition.
+post!("/users", %{name: "Jon"})
-post!("/users", %{name: "Jon"}, query: [scope: "admin"])
-post!(client, "/users", %{name: "Jon"})
-post!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
request!/1
or request!/2
for options definition.post!("/users", %{name: "Jon"})
+post!("/users", %{name: "Jon"}, query: [scope: "admin"])
+post!(client, "/users", %{name: "Jon"})
+post!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
put(client, url, body, opts)
-request/1
or request/2
for options definition.
+put("/users", %{name: "Jon"})
-put("/users", %{name: "Jon"}, query: [scope: "admin"])
-put(client, "/users", %{name: "Jon"})
-put(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
request/1
or request/2
for options definition.put("/users", %{name: "Jon"})
+put("/users", %{name: "Jon"}, query: [scope: "admin"])
+put(client, "/users", %{name: "Jon"})
+put(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
put!(client, url, body, opts)
-request!/1
or request!/2
for options definition.
+put!("/users", %{name: "Jon"})
-put!("/users", %{name: "Jon"}, query: [scope: "admin"])
-put!(client, "/users", %{name: "Jon"})
-put!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
request!/1
or request!/2
for options definition.put!("/users", %{name: "Jon"})
+put!("/users", %{name: "Jon"}, query: [scope: "admin"])
+put!(client, "/users", %{name: "Jon"})
+put!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
request(client \\ %Tesla.Client{}, options)
Examples
-
ExampleApi.request(method: :get, url: "/users/path")
+
+ExampleApi.get("/users/1")
+ExampleApi.post(client, "/users", %{name: "Jon"})ExampleApi.request(method: :get, url: "/users/path")
# use shortcut methods
-ExampleApi.get("/users/1")
-ExampleApi.post(client, "/users", %{name: "Jon"})
trace(client, url, opts)
-request/1
or request/2
for options definition.
+trace("/users")
-trace("/users", query: [scope: "admin"])
-trace(client, "/users")
-trace(client, "/users", query: [scope: "admin"])
-trace(client, "/users", body: %{name: "Jon"})
request/1
or request/2
for options definition.trace("/users")
+trace("/users", query: [scope: "admin"])
+trace(client, "/users")
+trace(client, "/users", query: [scope: "admin"])
+trace(client, "/users", body: %{name: "Jon"})
trace!(client, url, opts)
-request!/1
or request!/2
for options definition.
+trace!("/users")
-trace!("/users", query: [scope: "admin"])
-trace!(client, "/users")
-trace!(client, "/users", query: [scope: "admin"])
-trace!(client, "/users", body: %{name: "Jon"})
request!/1
or request!/2
for options definition.trace!("/users")
+trace!("/users", query: [scope: "admin"])
+trace!(client, "/users")
+trace!(client, "/users", query: [scope: "admin"])
+trace!(client, "/users", body: %{name: "Jon"})
request(request)
Examples
-request = %HTTPoison.Request{
+
+request(request)request = %HTTPoison.Request{
method: :post,
url: "https://my.website.com",
body: "{\"foo\": 3}",
- headers: [{"Accept", "application/json"}]
-}
+ headers: [{"Accept", "application/json"}]
+}
-request(request)
request(method, url, body \\ "",
Examples
-
+request(:post, "https://my.website.com", "{\"foo\": 3}", [{"Accept", "application/json"}])
request(:post, "https://my.website.com", "{\"foo\": 3}", [{"Accept", "application/json"}])
do_in(envs, list)
Examples
-do_in(:dev) do
- IO.puts("This will only be printed in the dev environment")
-end
+
+do_in([:dev, :test]) do
+ IO.puts("This will only be printed in the dev and test environments")
+enddo_in(:dev) do
+ IO.puts("This will only be printed in the dev environment")
+end
-do_in([:dev, :test]) do
- IO.puts("This will only be printed in the dev and test environments")
-end
Logs
Result
struct.{"level":"<<level>>","name":"<<module>>","message":"..."],"time":<<timestamp>>}
{"message":["<<message|filepath|output>>"]}
Result
struct.
There are two kinds of output:
{"level":"<<level>>","name":"<<module>>","message":"..."],"time":<<timestamp>>}
These are usually for general logging, and debugging.
{"message":["<<message|filepath|output>>"]}
The above is the equivalent of the output of a command
diff --git a/Lightning.Collections.html b/Lightning.Collections.html index 3ab80ae147..9e85204f67 100644 --- a/Lightning.Collections.html +++ b/Lightning.Collections.html @@ -314,11 +314,11 @@iex> create_collection(%{name: "New Collection", description: "Description here"})
-{:ok, %Collection{}}
+iex> create_collection(%{name: "New Collection", description: "Description here"})
+{:ok, %Collection{}}
-iex> create_collection(%{name: nil})
-{:error, %Ecto.Changeset{}}
+
iex> create_collection(%{name: nil})
+{:error, %Ecto.Changeset{}}
iex> list_collections()
-[%Collection{}, ...]
+iex> list_collections()
+[%Collection{}, ...]
-iex> list_collections(order_by: [asc: :inserted_at], preload: [:project, :user])
-[%Collection{}, ...]
+
iex> list_collections(order_by: [asc: :inserted_at], preload: [:project, :user])
+[%Collection{}, ...]
iex> update_collection(collection, %{name: "Updated Name"})
-{:ok, %Collection{}}
+iex> update_collection(collection, %{name: "Updated Name"})
+{:ok, %Collection{}}
-iex> update_collection(collection, %{name: nil})
-{:error, %Ecto.Changeset{}}
+
iex> update_collection(collection, %{name: nil})
+{:error, %Ecto.Changeset{}}
config/runtime.exs
) file.Sourcing envs
Internally this module uses
Dotenvy.source/1
to source environment variables from the.env
,.env.<config_env>
, and.env.<config_env>.override
files. It also sources the system environment variables.Calling
configure/0
without callingsource_envs/0
orDotenvy.source/2
-first will result in no environment variables being loaded.
Usage:
Lightning.Config.Bootstrap.source_envs()
-Lightning.Config.Bootstrap.configure()
+first will result in no environment variables being loaded.Usage:
Lightning.Config.Bootstrap.source_envs()
+Lightning.Config.Bootstrap.configure()
diff --git a/Lightning.Credentials.html b/Lightning.Credentials.html
index f470d87cc2..452f1d7dd3 100644
--- a/Lightning.Credentials.html
+++ b/Lightning.Credentials.html
@@ -406,8 +406,8 @@ iex> change_credential(credential)
-%Ecto.Changeset{data: %Credential{}}
+iex> change_credential(credential)
+%Ecto.Changeset{data: %Credential{}}
iex> create_credential(%{field: value})
-{:ok, %Credential{}}
+iex> create_credential(%{field: value})
+{:ok, %Credential{}}
-iex> create_credential(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_credential(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
iex> delete_credential(credential)
-{:ok, %Credential{}}
+iex> delete_credential(credential)
+{:ok, %Credential{}}
-iex> delete_credential(credential)
-{:error, %Ecto.Changeset{}}
+iex> delete_credential(credential)
+{:error, %Ecto.Changeset{}}
iex> get_credential!(123)
-%Credential{}
+iex> get_credential!(123)
+%Credential{}
-iex> get_credential!(456)
+iex> get_credential!(456)
** (Ecto.NoResultsError)
iex> has_activity_in_projects?(%Credential{id: some_id})
+iex> has_activity_in_projects?(%Credential{id: some_id})
true
-iex> has_activity_in_projects?(%Credential{id: another_id})
+iex> has_activity_in_projects?(%Credential{id: another_id})
false
@@ -659,11 +659,11 @@ invalid_projects_for_user(credential_id, us
Examples
-iex> can_credential_be_shared_to_user(credential_id, user_id)
-[]
+iex> can_credential_be_shared_to_user(credential_id, user_id)
+[]
-iex> can_credential_be_shared_to_user(credential_id, user_id)
-["52ea8758-6ce5-43d7-912f-6a1e1f11dc55"]
+iex> can_credential_be_shared_to_user(credential_id, user_id)
+["52ea8758-6ce5-43d7-912f-6a1e1f11dc55"]
@@ -703,9 +703,9 @@ list_credentials(project)
Examples
- When given a Project:
iex> list_credentials(%Project{id: 1})
-[%Credential{project_id: 1}, %Credential{project_id: 1}]
When given a User:
iex> list_credentials(%User{id: 123})
-[%Credential{user_id: 123}, %Credential{user_id: 123}]
+ When given a Project:
iex> list_credentials(%Project{id: 1})
+[%Credential{project_id: 1}, %Credential{project_id: 1}]
When given a User:
iex> list_credentials(%User{id: 123})
+[%Credential{user_id: 123}, %Credential{user_id: 123}]
@@ -816,11 +816,11 @@ schedule_credential_deletion(credential)
Examples
-iex> schedule_credential_deletion(%Credential{id: some_id})
-{:ok, %Credential{}}
+iex> schedule_credential_deletion(%Credential{id: some_id})
+{:ok, %Credential{}}
-iex> schedule_credential_deletion(%Credential{})
-{:error, %Ecto.Changeset{}}
+iex> schedule_credential_deletion(%Credential{})
+{:error, %Ecto.Changeset{}}
@@ -877,11 +877,11 @@ update_credential(credential, attrs)
Examples
-iex> update_credential(credential, %{field: new_value})
-{:ok, %Credential{}}
+iex> update_credential(credential, %{field: new_value})
+{:ok, %Credential{}}
-iex> update_credential(credential, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_credential(credential, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.Helpers.html b/Lightning.Helpers.html
index 006a024b2d..33c85fcada 100644
--- a/Lightning.Helpers.html
+++ b/Lightning.Helpers.html
@@ -325,10 +325,10 @@ copy_error(changeset, original_key, new_key
Example
-iex> changeset = %Ecto.Changeset{errors: [name: {"has already been taken", []}]}
-iex> updated_changeset = Lightning.Helpers.copy_error(changeset, :name, :raw_name)
+iex> changeset = %Ecto.Changeset{errors: [name: {"has already been taken", []}]}
+iex> updated_changeset = Lightning.Helpers.copy_error(changeset, :name, :raw_name)
iex> updated_changeset.errors
-[name: {"has already been taken", []}, raw_name: {"has already been taken", []}]
If the original_key
doesn't exist in the errors, or if the new_key
already exists and overwrite
is set to false
, the changeset is returned unchanged.
+[name: {"has already been taken", []}, raw_name: {"has already been taken", []}]
If the original_key
doesn't exist in the errors, or if the new_key
already exists and overwrite
is set to false
, the changeset is returned unchanged.
@@ -447,10 +447,10 @@ url_safe_name(name)
Examples
-iex> url_safe_name("My Project!!")
+iex> url_safe_name("My Project!!")
"my-project"
-iex> url_safe_name(nil)
+iex> url_safe_name(nil)
""
diff --git a/Lightning.Invocation.html b/Lightning.Invocation.html
index 84ab91dee6..d4fcd968a5 100644
--- a/Lightning.Invocation.html
+++ b/Lightning.Invocation.html
@@ -519,8 +519,8 @@ change_dataclip(dataclip, attrs \\ %{})
Examples
-iex> change_dataclip(dataclip)
-%Ecto.Changeset{data: %Dataclip{}}
+iex> change_dataclip(dataclip)
+%Ecto.Changeset{data: %Dataclip{}}
@@ -550,8 +550,8 @@ change_step(step, attrs \\ %{})
Examples
-iex> change_step(step)
-%Ecto.Changeset{data: %Step{}}
+iex> change_step(step)
+%Ecto.Changeset{data: %Step{}}
@@ -611,11 +611,11 @@ create_dataclip(attrs \\ %{})
Examples
-iex> create_dataclip(%{field: value})
-{:ok, %Dataclip{}}
+iex> create_dataclip(%{field: value})
+{:ok, %Dataclip{}}
-iex> create_dataclip(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_dataclip(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -643,11 +643,11 @@ delete_dataclip(dataclip)
Examples
-iex> delete_dataclip(dataclip)
-{:ok, %Dataclip{}}
+iex> delete_dataclip(dataclip)
+{:ok, %Dataclip{}}
-iex> delete_dataclip(dataclip)
-{:error, %Ecto.Changeset{}}
+iex> delete_dataclip(dataclip)
+{:error, %Ecto.Changeset{}}
@@ -682,14 +682,14 @@ get_dataclip(step)
Examples
-iex> get_dataclip("27b73932-16c7-4a72-86a3-85d805ccff98")
-%Dataclip{}
+iex> get_dataclip("27b73932-16c7-4a72-86a3-85d805ccff98")
+%Dataclip{}
-iex> get_dataclip("27b73932-16c7-4a72-86a3-85d805ccff98")
+iex> get_dataclip("27b73932-16c7-4a72-86a3-85d805ccff98")
nil
-iex> get_dataclip(%Step{id: "a uuid"})
-%Dataclip{}
+iex> get_dataclip(%Step{id: "a uuid"})
+%Dataclip{}
@@ -723,10 +723,10 @@ get_dataclip!(id)
Examples
-iex> get_dataclip!(123)
-%Dataclip{}
+iex> get_dataclip!(123)
+%Dataclip{}
-iex> get_dataclip!(456)
+iex> get_dataclip!(456)
** (Ecto.NoResultsError)
@@ -924,10 +924,10 @@ get_step!(id)
Examples
-iex> get_step!(123)
-%Step{}
+iex> get_step!(123)
+%Step{}
-iex> get_step!(456)
+iex> get_step!(456)
** (Ecto.NoResultsError)
@@ -1056,8 +1056,8 @@ list_dataclips()
Examples
-iex> list_dataclips()
-[%Dataclip{}, ...]
+iex> list_dataclips()
+[%Dataclip{}, ...]
@@ -1166,8 +1166,8 @@ list_steps()
Examples
-iex> list_steps()
-[%Step{}, ...]
+iex> list_steps()
+[%Step{}, ...]
@@ -1294,7 +1294,7 @@ search_workorders(project)
Example:
-search_workorders(%Project{id: 1}, %SearchParams{status: ["completed"]})
+search_workorders(%Project{id: 1}, %SearchParams{status: ["completed"]})
@@ -1400,11 +1400,11 @@ update_dataclip(dataclip, attrs)
Examples
-iex> update_dataclip(dataclip, %{field: new_value})
-{:ok, %Dataclip{}}
+iex> update_dataclip(dataclip, %{field: new_value})
+{:ok, %Dataclip{}}
-iex> update_dataclip(dataclip, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_dataclip(dataclip, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.Jobs.html b/Lightning.Jobs.html
index fb3314c34f..bb8fa7a224 100644
--- a/Lightning.Jobs.html
+++ b/Lightning.Jobs.html
@@ -306,8 +306,8 @@ change_job(job, attrs \\ %{})
Examples
-iex> change_job(job)
-%Ecto.Changeset{data: %Job{}}
+iex> change_job(job)
+%Ecto.Changeset{data: %Job{}}
@@ -337,11 +337,11 @@ create_job(attrs \\ %{})
Examples
-iex> create_job(%{field: value})
-{:ok, %Job{}}
+iex> create_job(%{field: value})
+{:ok, %Job{}}
-iex> create_job(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_job(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -405,10 +405,10 @@ get_job!(id)
Examples
-iex> get_job!(123)
-%Job{}
+iex> get_job!(123)
+%Job{}
-iex> get_job!(456)
+iex> get_job!(456)
** (Ecto.NoResultsError)
@@ -620,11 +620,11 @@ update_job(job, attrs)
Examples
-iex> update_job(job, %{field: new_value})
-{:ok, %Job{}}
+iex> update_job(job, %{field: new_value})
+{:ok, %Job{}}
-iex> update_job(job, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_job(job, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.KafkaTriggers.MessageRecovery.html b/Lightning.KafkaTriggers.MessageRecovery.html
index 0e9b3a1f63..cc526dadf8 100644
--- a/Lightning.KafkaTriggers.MessageRecovery.html
+++ b/Lightning.KafkaTriggers.MessageRecovery.html
@@ -152,7 +152,7 @@
an error during reprocessing. These files can be reprocessed if you think the
error was transient.
Usage:
alias Lightning.KafkaTriggers.MessageRecovery
case MessageRecovery.recover_messages(Lightning.Config.kafka_alternate_storage_file_path) do
:ok -> # Success code
-{:error, error_count} -> # Failure code
end
+{:error, error_count} -> # Failure code
end
diff --git a/Lightning.OauthClients.html b/Lightning.OauthClients.html
index 78eb01e1ed..6373d17b49 100644
--- a/Lightning.OauthClients.html
+++ b/Lightning.OauthClients.html
@@ -267,8 +267,8 @@ change_client(client, attrs \\ %{})
Examples
-iex> change_client(%OauthClient{}, %{name: "New Client"})
-%Ecto.Changeset{...}
+iex> change_client(%OauthClient{}, %{name: "New Client"})
+%Ecto.Changeset{...}
@@ -353,11 +353,11 @@ delete_client(client)
Examples
-iex> delete_client(client)
-{:ok, %OauthClient{}}
+iex> delete_client(client)
+{:ok, %OauthClient{}}
-iex> delete_client(client)
-{:error, %Ecto.Changeset{}}
+iex> delete_client(client)
+{:error, %Ecto.Changeset{}}
@@ -403,10 +403,10 @@ get_client!(id)
Examples
-iex> get_client!(123)
-%OauthClient{}
+iex> get_client!(123)
+%OauthClient{}
-iex> get_client!(456)
+iex> get_client!(456)
** (Ecto.NoResultsError)
@@ -447,9 +447,9 @@ list_clients(project)
Examples
- When given a Project:
iex> list_clients(%Project{id: 1})
-[%OauthClient{project_id: 1}, %OauthClient{project_id: 1}]
When given a User:
iex> list_clients(%User{id: 123})
-[%OauthClient{user_id: 123}, %OauthClient{user_id: 123}]
+ When given a Project:
iex> list_clients(%Project{id: 1})
+[%OauthClient{project_id: 1}, %OauthClient{project_id: 1}]
When given a User:
iex> list_clients(%User{id: 123})
+[%OauthClient{user_id: 123}, %OauthClient{user_id: 123}]
@@ -489,11 +489,11 @@ update_client(client, attrs)
Examples
-iex> update_client(client, %{field: new_value})
-{:ok, %OauthClient{}}
+iex> update_client(client, %{field: new_value})
+{:ok, %OauthClient{}}
-iex> update_client(client, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_client(client, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.Policies.Permissions.html b/Lightning.Policies.Permissions.html
index d8b698fdeb..d8dcad6820 100644
--- a/Lightning.Policies.Permissions.html
+++ b/Lightning.Policies.Permissions.html
@@ -138,13 +138,13 @@
This module defines a unique interface managing authorizations in Lightning.
Users in Lightning have instance-wide and project-wide roles which determine their level of access to resources in the application. Fo rmore details see the documentation.
These authorizations policies are all implemented under the lib/lightning/policies
folder. In that folder you can find 3 files:
- The
users.ex
file has all the policies for the instances wide access levels - The
project_users.ex
file has all the policies for the project wide access levels - The
permissions.ex
file defines the Lightning.Policies.Permissions.can/4
interface. Which is a wrapper around the Bodyguard.permit/4
function.
-We use that interface to be able to harmonize the use of policies accross the entire app.
All the policies are tested in the test/lightning/policies
folder. And the test are written in a way that allows the reader to quickly who can do what in the app.
We have two variants of the Lightning.Policies.Permissions.can/4
interface:
Lightning.Policies.Permissions.can(policy, action, actor, resource)
returns :ok
if the actor can perform the action on the resource and {:error, :unauthorized}
otherwise.Lightning.Policies.Permissions.can?(policy, action, actor, resource)
returns true
if the actor can perform the action on the resource and false
otherwise.
Here is an example of how we the Lightning.Policies.Permissions.can/4
interface to check if the a user can edit a job or not
can_edit_workflow = Lightning.Policies.ProjectUsers |> Lightning.Policies.Permissions.can?(:edit_workflow, socket.assigns.current_user, socket.assigns.project)
+We use that interface to be able to harmonize the use of policies accross the entire app.All the policies are tested in the test/lightning/policies
folder. And the test are written in a way that allows the reader to quickly who can do what in the app.
We have two variants of the Lightning.Policies.Permissions.can/4
interface:
Lightning.Policies.Permissions.can(policy, action, actor, resource)
returns :ok
if the actor can perform the action on the resource and {:error, :unauthorized}
otherwise.Lightning.Policies.Permissions.can?(policy, action, actor, resource)
returns true
if the actor can perform the action on the resource and false
otherwise.
Here is an example of how we the Lightning.Policies.Permissions.can/4
interface to check if the a user can edit a job or not
can_edit_workflow = Lightning.Policies.ProjectUsers |> Lightning.Policies.Permissions.can?(:edit_workflow, socket.assigns.current_user, socket.assigns.project)
-if can_edit_workflow do
+if can_edit_workflow do
# allow user to edit the workflow
-else
+else
# quick user out
-end
+end
@@ -220,11 +220,11 @@ can(policy, action, user, params \\ [])
Examples
-iex> can(Lightning.Policies.Users, :create_workflow, user, project)
+iex> can(Lightning.Policies.Users, :create_workflow, user, project)
:ok
-iex> can(Lightning.Policies.Users, :create_project, user, %{})
-{:error, :unauthorized}
+iex> can(Lightning.Policies.Users, :create_project, user, %{})
+{:error, :unauthorized}
@@ -254,10 +254,10 @@ can?(policy, action, user, params \\ [])
Examples
-iex> can(Lightning.Policies.Users, :create_workflow, user, project)
+iex> can(Lightning.Policies.Users, :create_workflow, user, project)
true
-iex> can(Lightning.Policies.Users, :create_project, user, %{})
+iex> can(Lightning.Policies.Users, :create_project, user, %{})
false
diff --git a/Lightning.Projects.html b/Lightning.Projects.html
index 87639ed305..ef9ac140fb 100644
--- a/Lightning.Projects.html
+++ b/Lightning.Projects.html
@@ -662,8 +662,8 @@ change_project(project, attrs \\ %{})
Examples
-iex> change_project(project)
-%Ecto.Changeset{data: %Project{}}
+iex> change_project(project)
+%Ecto.Changeset{data: %Project{}}
@@ -695,11 +695,11 @@ create_project(attrs \\ %{}, schedule_email
Examples
-iex> create_project(%{field: value})
-{:ok, %Project{}}
+iex> create_project(%{field: value})
+{:ok, %Project{}}
-iex> create_project(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_project(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -728,11 +728,11 @@ delete_project(project)
Examples
-iex> delete_project(project)
-{:ok, %Project{}}
+iex> delete_project(project)
+{:ok, %Project{}}
-iex> delete_project(project)
-{:error, %Ecto.Changeset{}}
+iex> delete_project(project)
+{:error, %Ecto.Changeset{}}
@@ -797,8 +797,8 @@ export_project(atom, project_id, snapshot_i
Examples
-iex> export_project(:yaml, project_id)
-{:ok, string}
+iex> export_project(:yaml, project_id)
+{:ok, string}
@@ -870,10 +870,10 @@ get_project!(id)
Examples
-iex> get_project!(123)
-%Project{}
+iex> get_project!(123)
+%Project{}
-iex> get_project!(456)
+iex> get_project!(456)
** (Ecto.NoResultsError)
@@ -968,10 +968,10 @@ get_project_user!(id)
Examples
-iex> get_project_user!(123)
-%ProjectUser{}
+iex> get_project_user!(123)
+%ProjectUser{}
-iex> get_project_user!(456)
+iex> get_project_user!(456)
** (Ecto.NoResultsError)
@@ -1001,16 +1001,16 @@ get_project_user_role(user, project)
Examples
-iex> get_project_user_role(user, project)
+iex> get_project_user_role(user, project)
:admin
-iex> get_project_user_role(user, project)
+iex> get_project_user_role(user, project)
:viewer
-iex> get_project_user_role(user, project)
+iex> get_project_user_role(user, project)
:editor
-iex> get_project_user_role(user, project)
+iex> get_project_user_role(user, project)
:owner
@@ -1061,10 +1061,10 @@ get_project_with_users!(id)
Examples
-iex> get_project!(123)
-%Project{}
+iex> get_project!(123)
+%Project{}
-iex> get_project!(456)
+iex> get_project!(456)
** (Ecto.NoResultsError)
@@ -1266,8 +1266,8 @@ list_projects()
Examples
-iex> list_projects()
-[%Project{}, ...]
+iex> list_projects()
+[%Project{}, ...]
@@ -1749,11 +1749,11 @@ update_project(project, attrs, user \\ nil)
Examples
-iex> update_project(project, %{field: new_value})
-{:ok, %Project{}}
+iex> update_project(project, %{field: new_value})
+{:ok, %Project{}}
-iex> update_project(project, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_project(project, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -1781,11 +1781,11 @@ update_project_user(project_user, attrs)
Examples
-iex> update_project_user(project_user, %{field: new_value})
-{:ok, %ProjectUser{}}
+iex> update_project_user(project_user, %{field: new_value})
+{:ok, %ProjectUser{}}
-iex> update_project_user(projectUser, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_project_user(projectUser, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -1844,8 +1844,8 @@ validate_for_deletion(project, attrs)
Examples
-iex> validate_for_deletion(project)
-%Ecto.Changeset{data: %Project{}}
+iex> validate_for_deletion(project)
+%Ecto.Changeset{data: %Project{}}
diff --git a/Lightning.PromEx.html b/Lightning.PromEx.html
index c3c15293d6..108bafa8ef 100644
--- a/Lightning.PromEx.html
+++ b/Lightning.PromEx.html
@@ -142,24 +142,24 @@
more details regarding configuring PromEx:config :lightning, Lightning.PromEx,
disabled: false,
manual_metrics_start_delay: :no_delay,
- drop_metrics_groups: [],
+ drop_metrics_groups: [],
grafana: :disabled,
metrics_server: :disabled
Add this module to your application supervision tree. It should be one of the first
things that is started so that no Telemetry events are missed. For example, if PromEx
is started after your Repo module, you will miss Ecto's init events and the dashboards
-will be missing some data points:
def start(_type, _args) do
- children = [
+will be missing some data points:def start(_type, _args) do
+ children = [
Lightning.PromEx,
...
- ]
+ ]
...
-end
Update your endpoint.ex
file to expose your metrics (or configure a standalone
+
end
Update your endpoint.ex
file to expose your metrics (or configure a standalone
server using the :metrics_server
config options). Be sure to put this plug before
your Plug.Telemetry
entry so that you can avoid having calls to your /metrics
endpoint create their own metrics and logs which can pollute your logs/metrics given
-that Prometheus will scrape at a regular interval and that can get noisy:
defmodule LightningWeb.Endpoint do
+that Prometheus will scrape at a regular interval and that can get noisy:defmodule LightningWeb.Endpoint do
use Phoenix.Endpoint, otp_app: :lightning
...
@@ -167,7 +167,7 @@
plug PromEx.Plug, prom_ex_module: Lightning.PromEx
...
-end
Update the list of plugins in the plugins/0
function return list to reflect your
+
end
Update the list of plugins in the plugins/0
function return list to reflect your
application's dependencies. Also update the list of dashboards that are to be uploaded
to Grafana in the dashboards/0
function.
diff --git a/Lightning.Repo.html b/Lightning.Repo.html
index 03eb554ae7..aacb8bfea8 100644
--- a/Lightning.Repo.html
+++ b/Lightning.Repo.html
@@ -1738,13 +1738,13 @@ transact(fun, opts \\ [])
A small wrapper around Repo.transaction/2
.
Commits the transaction if the lambda returns :ok
or {:ok, result}
,
rolling it back if the lambda returns :error
or {:error, reason}
. In both
-cases, the function returns the result of the lambda.
Example:
Repo.transact(fn ->
- with {:ok, user} <- Accounts.create_user(params),
- {:ok, _log} <- Logs.log_action(:user_registered, user),
- {:ok, _job} <- Mailer.enqueue_email_confirmation(user) do
- {:ok, user}
- end
-end)
From blog post found here
+cases, the function returns the result of the lambda.Example:
Repo.transact(fn ->
+ with {:ok, user} <- Accounts.create_user(params),
+ {:ok, _log} <- Logs.log_action(:user_registered, user),
+ {:ok, _job} <- Mailer.enqueue_email_confirmation(user) do
+ {:ok, user}
+ end
+end)
From blog post found here
diff --git a/Lightning.Runs.Query.html b/Lightning.Runs.Query.html
index 797c0abef0..89a2c457d2 100644
--- a/Lightning.Runs.Query.html
+++ b/Lightning.Runs.Query.html
@@ -241,7 +241,7 @@ eligible_for_claim()
This query does not currently take into account the priority of the run.
To allow for prioritization, the query should be updated to order by
-priority.
eligible_for_claim() |> prepend_order_by([:priority])
+priority.eligible_for_claim() |> prepend_order_by([:priority])
diff --git a/Lightning.Runs.html b/Lightning.Runs.html
index 2172310734..3f16712559 100644
--- a/Lightning.Runs.html
+++ b/Lightning.Runs.html
@@ -477,7 +477,7 @@ get(id, opts \\ [])
-Get a run by id.
Optionally preload associations by passing a list of atoms to :include
.
Lightning.Runs.get(id, include: [:workflow])
+Get a run by id.
Optionally preload associations by passing a list of atoms to :include
.
Lightning.Runs.get(id, include: [:workflow])
diff --git a/Lightning.Runtime.LogAgent.html b/Lightning.Runtime.LogAgent.html
index fe11e8b0f0..96e4a28856 100644
--- a/Lightning.Runtime.LogAgent.html
+++ b/Lightning.Runtime.LogAgent.html
@@ -138,9 +138,9 @@
Agent facility to consume STDOUT/STDERR byte by byte.
Since it works on a byte by byte basis, you will need to perform line-splitting
-yourself.
Usage:
{:ok, log} = LogAgent.start_link()
-"foo" = LogAgent.process_chunk(log, {:stdout, "foo"})
-"foobar" = LogAgent.process_chunk(log, {:stdout, "bar"})
+yourself.Usage:
{:ok, log} = LogAgent.start_link()
+"foo" = LogAgent.process_chunk(log, {:stdout, "foo"})
+"foobar" = LogAgent.process_chunk(log, {:stdout, "bar"})
diff --git a/Lightning.Runtime.RuntimeManager.html b/Lightning.Runtime.RuntimeManager.html
index f887c5e0f0..2f8ad58ebc 100644
--- a/Lightning.Runtime.RuntimeManager.html
+++ b/Lightning.Runtime.RuntimeManager.html
@@ -146,8 +146,8 @@
Sample:
config :lightining, Elixir.Lightning.Runtime.RuntimeManager,
version: "0.1.0",
start: true,
args: ~w(js/app.js --bundle --target=es2016 --outdir=../priv/static/assets),
-cd: Path.expand("../assets", __DIR__),
-env: %{}
Options:
:version
- the expected runtime version
:start
- flag to start the runtime manager. If false
the GenServer
+
cd: Path.expand("../assets", __DIR__),
+env: %{}
Options:
:version
- the expected runtime version
:start
- flag to start the runtime manager. If false
the GenServer
won't be started
:path
- the path to find the runtime executable at. By
default, it is automatically downloaded and placed inside
the _build
directory of your current app
Overriding the :path
is not recommended, as we will automatically
diff --git a/Lightning.Scrubber.html b/Lightning.Scrubber.html
index f6d5aa64c4..08633ac6df 100644
--- a/Lightning.Scrubber.html
+++ b/Lightning.Scrubber.html
@@ -137,11 +137,11 @@
-Process used to scrub strings of sensitive information.
Can be started via start_link/1
.
{:ok, scrubber} =
- Lightning.Scrubber.start_link(
+Process used to scrub strings of sensitive information.
Can be started via start_link/1
.
{:ok, scrubber} =
+ Lightning.Scrubber.start_link(
samples:
- Lightning.Credentials.sensitive_values_for(credential)
- )
Takes an optional :name
key, in case you need to name the process.
+ Lightning.Credentials.sensitive_values_for(credential)
+ )
Takes an optional :name
key, in case you need to name the process.
diff --git a/Lightning.Storage.GCS.html b/Lightning.Storage.GCS.html
index 9885a40b68..a22dbbe0bf 100644
--- a/Lightning.Storage.GCS.html
+++ b/Lightning.Storage.GCS.html
@@ -150,10 +150,10 @@
Example Usage
# Store a file in GCS
-Lightning.Storage.GCS.store("/path/to/source", "destination/path")
+Lightning.Storage.GCS.store("/path/to/source", "destination/path")
# Get a signed URL for the stored file
-{:ok, url} = Lightning.Storage.GCS.get_url("destination/path")
+
{:ok, url} = Lightning.Storage.GCS.get_url("destination/path")
diff --git a/Lightning.Storage.Local.html b/Lightning.Storage.Local.html
index 7a24fe899d..279ee0f5be 100644
--- a/Lightning.Storage.Local.html
+++ b/Lightning.Storage.Local.html
@@ -156,11 +156,11 @@ # Store a file
-{:ok, filename} =
- Lightning.Storage.Local.store("/path/to/source", "destination/path")
+{:ok, filename} =
+ Lightning.Storage.Local.store("/path/to/source", "destination/path")
# Get the URL for the stored file
-{:ok, url} = Lightning.Storage.Local.get_url("destination/path")
+{:ok, url} = Lightning.Storage.Local.get_url("destination/path")
diff --git a/Lightning.Storage.ProjectFileDefinition.html b/Lightning.Storage.ProjectFileDefinition.html
index ecbeecf5fd..a8584b5ee0 100644
--- a/Lightning.Storage.ProjectFileDefinition.html
+++ b/Lightning.Storage.ProjectFileDefinition.html
@@ -138,13 +138,13 @@ This module provides functionality for managing the storage and retrieval of project files.
It handles operations related to storing project files, generating URLs for accessing these files, and constructing storage paths for exported files. It serves as an abstraction layer over the underlying storage mechanism provided by the Lightning.Storage
module.
## Functions
store/2
: Stores a file from a given source path into the storage system based on the file's path.get_url/1
: Retrieves the URL for accessing a stored file.storage_path_for_exports/2
: Constructs a storage path for exported files, defaulting to a .zip
extension.## Example Usage
# Store a file
- Lightning.Storage.ProjectFileDefinition.store("/path/to/source", project_file)
+ Lightning.Storage.ProjectFileDefinition.store("/path/to/source", project_file)
# Get a URL for the stored file
- url = Lightning.Storage.ProjectFileDefinition.get_url(project_file)
+ url = Lightning.Storage.ProjectFileDefinition.get_url(project_file)
# Get the storage path for an exported file
- path = Lightning.Storage.ProjectFileDefinition.storage_path_for_exports(project_file)
+ path = Lightning.Storage.ProjectFileDefinition.storage_path_for_exports(project_file)
A TaskWorker with concurrency limits.
A simple concurrency limiter that wraps Task.Supervisor
, which already does
have the ability to specify max_children
; it throws an error when
that limit is exceeded.
To use it, start it like any other process; ideally in your supervision tree.
...,
- {Lightning.TaskWorker, name: :cli_task_worker, max_tasks: 4}
Options
:max_tasks
Defaults to the number of system schedulers available to the vm.Options
:max_tasks
Defaults to the number of system schedulers available to the vm.Validate that only one of the fields is set at a time.
Example:
changeset
-|> validate_exclusive(
- [:source_job_id, :source_trigger_id],
+|> validate_exclusive(
+ [:source_job_id, :source_trigger_id],
"source_job_id and source_trigger_id are mutually exclusive"
-)
+)
Perform a DELETE request.
See request/1
or request/2
for options definition.
delete("/users")
-delete("/users", query: [scope: "admin"])
-delete(client, "/users")
-delete(client, "/users", query: [scope: "admin"])
-delete(client, "/users", body: %{name: "Jon"})
+Perform a DELETE request.
See request/1
or request/2
for options definition.
delete("/users")
+delete("/users", query: [scope: "admin"])
+delete(client, "/users")
+delete(client, "/users", query: [scope: "admin"])
+delete(client, "/users", body: %{name: "Jon"})
Perform a DELETE request.
See request!/1
or request!/2
for options definition.
delete!("/users")
-delete!("/users", query: [scope: "admin"])
-delete!(client, "/users")
-delete!(client, "/users", query: [scope: "admin"])
-delete!(client, "/users", body: %{name: "Jon"})
+Perform a DELETE request.
See request!/1
or request!/2
for options definition.
delete!("/users")
+delete!("/users", query: [scope: "admin"])
+delete!(client, "/users")
+delete!(client, "/users", query: [scope: "admin"])
+delete!(client, "/users", body: %{name: "Jon"})
Perform a GET request.
See request/1
or request/2
for options definition.
get("/users")
-get("/users", query: [scope: "admin"])
-get(client, "/users")
-get(client, "/users", query: [scope: "admin"])
-get(client, "/users", body: %{name: "Jon"})
+Perform a GET request.
See request/1
or request/2
for options definition.
get("/users")
+get("/users", query: [scope: "admin"])
+get(client, "/users")
+get(client, "/users", query: [scope: "admin"])
+get(client, "/users", body: %{name: "Jon"})
Perform a GET request.
See request!/1
or request!/2
for options definition.
get!("/users")
-get!("/users", query: [scope: "admin"])
-get!(client, "/users")
-get!(client, "/users", query: [scope: "admin"])
-get!(client, "/users", body: %{name: "Jon"})
+Perform a GET request.
See request!/1
or request!/2
for options definition.
get!("/users")
+get!("/users", query: [scope: "admin"])
+get!(client, "/users")
+get!(client, "/users", query: [scope: "admin"])
+get!(client, "/users", body: %{name: "Jon"})
Perform a HEAD request.
See request/1
or request/2
for options definition.
head("/users")
-head("/users", query: [scope: "admin"])
-head(client, "/users")
-head(client, "/users", query: [scope: "admin"])
-head(client, "/users", body: %{name: "Jon"})
+Perform a HEAD request.
See request/1
or request/2
for options definition.
head("/users")
+head("/users", query: [scope: "admin"])
+head(client, "/users")
+head(client, "/users", query: [scope: "admin"])
+head(client, "/users", body: %{name: "Jon"})
Perform a HEAD request.
See request!/1
or request!/2
for options definition.
head!("/users")
-head!("/users", query: [scope: "admin"])
-head!(client, "/users")
-head!(client, "/users", query: [scope: "admin"])
-head!(client, "/users", body: %{name: "Jon"})
+Perform a HEAD request.
See request!/1
or request!/2
for options definition.
head!("/users")
+head!("/users", query: [scope: "admin"])
+head!(client, "/users")
+head!(client, "/users", query: [scope: "admin"])
+head!(client, "/users", body: %{name: "Jon"})
Perform a OPTIONS request.
See request/1
or request/2
for options definition.
options("/users")
-options("/users", query: [scope: "admin"])
-options(client, "/users")
-options(client, "/users", query: [scope: "admin"])
-options(client, "/users", body: %{name: "Jon"})
+Perform a OPTIONS request.
See request/1
or request/2
for options definition.
options("/users")
+options("/users", query: [scope: "admin"])
+options(client, "/users")
+options(client, "/users", query: [scope: "admin"])
+options(client, "/users", body: %{name: "Jon"})
Perform a OPTIONS request.
See request!/1
or request!/2
for options definition.
options!("/users")
-options!("/users", query: [scope: "admin"])
-options!(client, "/users")
-options!(client, "/users", query: [scope: "admin"])
-options!(client, "/users", body: %{name: "Jon"})
+Perform a OPTIONS request.
See request!/1
or request!/2
for options definition.
options!("/users")
+options!("/users", query: [scope: "admin"])
+options!(client, "/users")
+options!(client, "/users", query: [scope: "admin"])
+options!(client, "/users", body: %{name: "Jon"})
Perform a PATCH request.
See request/1
or request/2
for options definition.
patch("/users", %{name: "Jon"})
-patch("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch(client, "/users", %{name: "Jon"})
-patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PATCH request.
See request/1
or request/2
for options definition.
patch("/users", %{name: "Jon"})
+patch("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch(client, "/users", %{name: "Jon"})
+patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a PATCH request.
See request!/1
or request!/2
for options definition.
patch!("/users", %{name: "Jon"})
-patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch!(client, "/users", %{name: "Jon"})
-patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PATCH request.
See request!/1
or request!/2
for options definition.
patch!("/users", %{name: "Jon"})
+patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch!(client, "/users", %{name: "Jon"})
+patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a POST request.
See request/1
or request/2
for options definition.
post("/users", %{name: "Jon"})
-post("/users", %{name: "Jon"}, query: [scope: "admin"])
-post(client, "/users", %{name: "Jon"})
-post(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a POST request.
See request/1
or request/2
for options definition.
post("/users", %{name: "Jon"})
+post("/users", %{name: "Jon"}, query: [scope: "admin"])
+post(client, "/users", %{name: "Jon"})
+post(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a POST request.
See request!/1
or request!/2
for options definition.
post!("/users", %{name: "Jon"})
-post!("/users", %{name: "Jon"}, query: [scope: "admin"])
-post!(client, "/users", %{name: "Jon"})
-post!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a POST request.
See request!/1
or request!/2
for options definition.
post!("/users", %{name: "Jon"})
+post!("/users", %{name: "Jon"}, query: [scope: "admin"])
+post!(client, "/users", %{name: "Jon"})
+post!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a PUT request.
See request/1
or request/2
for options definition.
put("/users", %{name: "Jon"})
-put("/users", %{name: "Jon"}, query: [scope: "admin"])
-put(client, "/users", %{name: "Jon"})
-put(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PUT request.
See request/1
or request/2
for options definition.
put("/users", %{name: "Jon"})
+put("/users", %{name: "Jon"}, query: [scope: "admin"])
+put(client, "/users", %{name: "Jon"})
+put(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a PUT request.
See request!/1
or request!/2
for options definition.
put!("/users", %{name: "Jon"})
-put!("/users", %{name: "Jon"}, query: [scope: "admin"])
-put!(client, "/users", %{name: "Jon"})
-put!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PUT request.
See request!/1
or request!/2
for options definition.
put!("/users", %{name: "Jon"})
+put!("/users", %{name: "Jon"}, query: [scope: "admin"])
+put!(client, "/users", %{name: "Jon"})
+put!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
ExampleApi.request(method: :get, url: "/users/path")
+ExampleApi.request(method: :get, url: "/users/path")
# use shortcut methods
-ExampleApi.get("/users/1")
-ExampleApi.post(client, "/users", %{name: "Jon"})
+ExampleApi.get("/users/1")
+ExampleApi.post(client, "/users", %{name: "Jon"})
Perform a TRACE request.
See request/1
or request/2
for options definition.
trace("/users")
-trace("/users", query: [scope: "admin"])
-trace(client, "/users")
-trace(client, "/users", query: [scope: "admin"])
-trace(client, "/users", body: %{name: "Jon"})
+Perform a TRACE request.
See request/1
or request/2
for options definition.
trace("/users")
+trace("/users", query: [scope: "admin"])
+trace(client, "/users")
+trace(client, "/users", query: [scope: "admin"])
+trace(client, "/users", body: %{name: "Jon"})
Perform a TRACE request.
See request!/1
or request!/2
for options definition.
trace!("/users")
-trace!("/users", query: [scope: "admin"])
-trace!(client, "/users")
-trace!(client, "/users", query: [scope: "admin"])
-trace!(client, "/users", body: %{name: "Jon"})
+Perform a TRACE request.
See request!/1
or request!/2
for options definition.
trace!("/users")
+trace!("/users", query: [scope: "admin"])
+trace!(client, "/users")
+trace!(client, "/users", query: [scope: "admin"])
+trace!(client, "/users", body: %{name: "Jon"})
Creating a WebhookAuthMethod
without an associated trigger:
iex> create_auth_method(%{valid_attributes}, actor: %User{})
-{:ok, %WebhookAuthMethod{}}
+Creating a WebhookAuthMethod
without an associated trigger:
iex> create_auth_method(%{valid_attributes}, actor: %User{})
+{:ok, %WebhookAuthMethod{}}
-iex> create_auth_method(%{invalid_attributes}, actor: %User{})
-{:error, %Ecto.Changeset{}}
Creating a WebhookAuthMethod
with an associated trigger:
iex> create_auth_method(%Trigger{}, %{valid_attributes}, actor: %User{})
-{:ok, %WebhookAuthMethod{}}
+iex> create_auth_method(%{invalid_attributes}, actor: %User{})
+{:error, %Ecto.Changeset{}}
Creating a WebhookAuthMethod
with an associated trigger:
iex> create_auth_method(%Trigger{}, %{valid_attributes}, actor: %User{})
+{:ok, %WebhookAuthMethod{}}
-iex> create_auth_method(%Trigger{}, %{invalid_attributes}, actor: %User{})
-{:error, %Ecto.Changeset{}}
+
iex> create_auth_method(%Trigger{}, %{invalid_attributes}, actor: %User{})
+{:error, %Ecto.Changeset{}}
Creating a changeset for an API type auth method:
iex> Lightning.Workflows.create_changeset(%WebhookAuthMethod{auth_type: :api}, %{})
-%WebhookAuthMethod{api_key: some_new_api_key}
Creating a changeset for a non-API type auth method:
iex> Lightning.Workflows.create_changeset(%WebhookAuthMethod{auth_type: :other}, %{})
-%WebhookAuthMethod{}
Creating a changeset for an API type auth method:
iex> Lightning.Workflows.create_changeset(%WebhookAuthMethod{auth_type: :api}, %{})
+%WebhookAuthMethod{api_key: some_new_api_key}
Creating a changeset for a non-API type auth method:
iex> Lightning.Workflows.create_changeset(%WebhookAuthMethod{auth_type: :other}, %{})
+%WebhookAuthMethod{}
Successful deletion:
iex> delete_auth_method(%WebhookAuthMethod{id: "some_id"})
-{:ok, %WebhookAuthMethod{}}
Deletion fails due to the item not existing or other conflict:
iex> delete_auth_method(%WebhookAuthMethod{id: "non_existing_id"})
-{:error, reason}
Successful deletion:
iex> delete_auth_method(%WebhookAuthMethod{id: "some_id"})
+{:ok, %WebhookAuthMethod{}}
Deletion fails due to the item not existing or other conflict:
iex> delete_auth_method(%WebhookAuthMethod{id: "non_existing_id"})
+{:error, reason}
When a matching WebhookAuthMethod
is found:
iex> Lightning.Workflows.find_by_api_key("existing_api_key", %Project{id: "existing_project_id"})
-%WebhookAuthMethod{}
When there is no matching WebhookAuthMethod
:
iex> Lightning.Workflows.find_by_api_key("non_existing_api_key", %Project{id: "existing_project_id"})
+When a matching WebhookAuthMethod
is found:
iex> Lightning.Workflows.find_by_api_key("existing_api_key", %Project{id: "existing_project_id"})
+%WebhookAuthMethod{}
When there is no matching WebhookAuthMethod
:
iex> Lightning.Workflows.find_by_api_key("non_existing_api_key", %Project{id: "existing_project_id"})
nil
When a WebhookAuthMethod
with the given ID exists:
iex> Lightning.Workflows.find_by_id!("existing_id")
-%WebhookAuthMethod{}
When there is no WebhookAuthMethod
with the given ID:
iex> Lightning.Workflows.find_by_id!("non_existing_id")
+When a WebhookAuthMethod
with the given ID exists:
iex> Lightning.Workflows.find_by_id!("existing_id")
+%WebhookAuthMethod{}
When there is no WebhookAuthMethod
with the given ID:
iex> Lightning.Workflows.find_by_id!("non_existing_id")
** (Ecto.NoResultsError)
@@ -652,8 +652,8 @@ find_by_username_and_password(username, pas
Examples
-When a matching WebhookAuthMethod
is found and the password is valid:
iex> Lightning.Workflows.find_by_username_and_password("existing_username", "valid_password", %Project{id: "existing_project_id"})
-%WebhookAuthMethod{}
When the username is found but the password is invalid or no matching record is found:
iex> Lightning.Workflows.find_by_username_and_password("existing_username", "invalid_password", %Project{id: "existing_project_id"})
+When a matching WebhookAuthMethod
is found and the password is valid:
iex> Lightning.Workflows.find_by_username_and_password("existing_username", "valid_password", %Project{id: "existing_project_id"})
+%WebhookAuthMethod{}
When the username is found but the password is invalid or no matching record is found:
iex> Lightning.Workflows.find_by_username_and_password("existing_username", "invalid_password", %Project{id: "existing_project_id"})
nil
@@ -702,9 +702,9 @@ list_for_project(project)
Examples
-When the project exists and has associated auth methods:
iex> list_for_project(%Project{id: "existing_project_id"})
-[%WebhookAuthMethod{}, ...]
When the project does not exist or has no associated auth methods:
iex> list_for_project(%Project{id: "non_existing_project_id"})
-[]
+When the project exists and has associated auth methods:
iex> list_for_project(%Project{id: "existing_project_id"})
+[%WebhookAuthMethod{}, ...]
When the project does not exist or has no associated auth methods:
iex> list_for_project(%Project{id: "non_existing_project_id"})
+[]
@@ -752,9 +752,9 @@ list_for_trigger(trigger)
Examples
-When the Trigger
has associated WebhookAuthMethod
s not scheduled for deletion:
iex> Lightning.Workflows.list_for_trigger(%Trigger{id: "existing_trigger_id"})
-[%WebhookAuthMethod{}, ...]
When the Trigger
has no associated WebhookAuthMethod
s or they are all scheduled for deletion:
iex> Lightning.Workflows.list_for_trigger(%Trigger{id: "trigger_without_methods"})
-[]
+When the Trigger
has associated WebhookAuthMethod
s not scheduled for deletion:
iex> Lightning.Workflows.list_for_trigger(%Trigger{id: "existing_trigger_id"})
+[%WebhookAuthMethod{}, ...]
When the Trigger
has no associated WebhookAuthMethod
s or they are all scheduled for deletion:
iex> Lightning.Workflows.list_for_trigger(%Trigger{id: "trigger_without_methods"})
+[]
@@ -807,10 +807,10 @@ perform(job)
Example
-%Oban.Job{
-args: %{"type" => "purge_deleted"}
-}
-|> MyModule.perform()
+%Oban.Job{
+args: %{"type" => "purge_deleted"}
+}
+|> MyModule.perform()
# => {:ok, %{disassociated_count: 2, deleted_count: 2}}
@@ -864,9 +864,9 @@ schedule_for_deletion(webhook_auth_method,
Examples
-When a webhook auth method is successfully scheduled for deletion:
iex> Lightning.Workflows.schedule_for_deletion(%WebhookAuthMethod{id: some_id})
-{:ok, %WebhookAuthMethod{scheduled_deletion: deletion_date}}
When scheduling for deletion fails due to validation errors:
iex> Lightning.Workflows.schedule_for_deletion(%WebhookAuthMethod{})
-{:error, %Ecto.Changeset{}}
+When a webhook auth method is successfully scheduled for deletion:
iex> Lightning.Workflows.schedule_for_deletion(%WebhookAuthMethod{id: some_id})
+{:ok, %WebhookAuthMethod{scheduled_deletion: deletion_date}}
When scheduling for deletion fails due to validation errors:
iex> Lightning.Workflows.schedule_for_deletion(%WebhookAuthMethod{})
+{:error, %Ecto.Changeset{}}
@@ -916,9 +916,9 @@ update_auth_method(webhook_auth_method, att
Examples
-Successful update:
iex> update_auth_method(webhook_auth_method, %{field: new_value}, actor: %User{})
-{:ok, %WebhookAuthMethod{}}
Update fails due to invalid data:
iex> update_auth_method(webhook_auth_method, %{field: bad_value}, actor: %User{})
-{:error, %Ecto.Changeset{}}
+Successful update:
iex> update_auth_method(webhook_auth_method, %{field: new_value}, actor: %User{})
+{:ok, %WebhookAuthMethod{}}
Update fails due to invalid data:
iex> update_auth_method(webhook_auth_method, %{field: bad_value}, actor: %User{})
+{:error, %Ecto.Changeset{}}
@@ -974,9 +974,9 @@ update_trigger_auth_methods(trigger, auth_m
Examples
-Successful association update:
iex> update_trigger_auth_methods(trigger, [webhook_auth_method], actor: %User{})
-{:ok, %Trigger{}}
Update fails due to an invalid changeset:
iex> update_trigger_auth_methods(trigger, [invalid_webhook_auth_method], actor: %User{})
-{:error, %Ecto.Changeset{}}
+Successful association update:
iex> update_trigger_auth_methods(trigger, [webhook_auth_method], actor: %User{})
+{:ok, %Trigger{}}
Update fails due to an invalid changeset:
iex> update_trigger_auth_methods(trigger, [invalid_webhook_auth_method], actor: %User{})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.WorkOrders.ExportWorker.html b/Lightning.WorkOrders.ExportWorker.html
index 38531381fa..4d537b6888 100644
--- a/Lightning.WorkOrders.ExportWorker.html
+++ b/Lightning.WorkOrders.ExportWorker.html
@@ -138,7 +138,7 @@
This module handles the export of work orders for a given project. The export process is performed asynchronously using the Oban background job system.
## Responsibilities
- Enqueueing Export Jobs: The
enqueue_export/2
function creates and enqueues an Oban job for exporting work orders based on the given project and search parameters. - Processing Exports: The
perform/1
function is the main entry point for executing the export job. It retrieves the project, processes work orders, and handles the export process. - Export Logic: The export logic involves querying work orders, extracting relevant entities, processing logs and dataclips asynchronously, and writing the final export data to files.
- Error Handling: The module includes comprehensive error handling and logging to ensure that issues during the export process are recorded and can be diagnosed.
- Zip File Creation: After processing, the exported files are compressed into a zip file for easy download or further use.
## Usage
- To enqueue an export job, call
enqueue_export/2
with the project and search parameters. - The export process is triggered by Oban and runs in the
history_exports
queue, limited to a single attempt per job.
## Example
# Enqueue an export job
- Lightning.WorkOrders.ExportWorker.enqueue_export(project, search_params)
+ Lightning.WorkOrders.ExportWorker.enqueue_export(project, search_params)
# The job will run in the background and log the status of the export process.
This module is designed to handle potentially large datasets efficiently by using streaming, async processing, and error recovery mechanisms.
diff --git a/Lightning.WorkOrders.html b/Lightning.WorkOrders.html
index c2cc01581b..ae35dd8a65 100644
--- a/Lightning.WorkOrders.html
+++ b/Lightning.WorkOrders.html
@@ -451,7 +451,7 @@ create_for(target, multi \\ Multi.new(), op
-
Create a new Work Order.
For a webhook
create_for(trigger, workflow: workflow, dataclip: dataclip)
For a user
create_for(job, workflow: workflow, dataclip: dataclip, user: user)
+Create a new Work Order.
For a webhook
create_for(trigger, workflow: workflow, dataclip: dataclip)
For a user
create_for(job, workflow: workflow, dataclip: dataclip, user: user)
@@ -503,7 +503,7 @@ get(id, opts \\ [])
-Get a Work Order by id.
Optionally preload associations by passing a list of atoms to :include
.
Lightning.WorkOrders.get(id, include: [:runs])
+Get a Work Order by id.
Optionally preload associations by passing a list of atoms to :include
.
Lightning.WorkOrders.get(id, include: [:runs])
diff --git a/Lightning.Workflows.Job.html b/Lightning.Workflows.Job.html
index d69a13bff2..e6889f4896 100644
--- a/Lightning.Workflows.Job.html
+++ b/Lightning.Workflows.Job.html
@@ -356,17 +356,17 @@ put_workflow(changeset, workflow)
Attaches a workflow to a job, this is useful when you have an unpersisted
Workflow changeset - and want it to be created at the same time as a Job.
Example:
workflow =
- Ecto.Changeset.cast(
- %Lightning.Workflows.Workflow{},
- %{ "project_id" => attrs[:project_id], "id" => Ecto.UUID.generate() },
- [:project_id, :id]
- )
+ Ecto.Changeset.cast(
+ %Lightning.Workflows.Workflow{},
+ %{ "project_id" => attrs[:project_id], "id" => Ecto.UUID.generate() },
+ [:project_id, :id]
+ )
job =
- %Job{}
- |> Ecto.Changeset.change()
- |> Job.put_workflow(workflow)
- |> Job.changeset(attrs)
+
%Job{}
+ |> Ecto.Changeset.change()
+ |> Job.put_workflow(workflow)
+ |> Job.changeset(attrs)
diff --git a/Lightning.Workflows.Presence.html b/Lightning.Workflows.Presence.html
index b995d16d6a..22e492ff5e 100644
--- a/Lightning.Workflows.Presence.html
+++ b/Lightning.Workflows.Presence.html
@@ -352,27 +352,27 @@ build_presences_summary(presences, params)<
Examples
-iex> presences = [
-...> %{user: %{id: 1}, joined_at: ~N[2024-07-03 12:00:00], active_sessions: 1},
-...> %{user: %{id: 2}, joined_at: ~N[2024-07-03 12:05:00], active_sessions: 1},
-...> %{user: %{id: 3}, joined_at: ~N[2024-07-03 12:10:00], active_sessions: 1}
-...> ]
-iex> params = %{
-...> current_user_presence: %{user: %{id: 1}, joined_at: ~N[2024-07-03 12:00:00], active_sessions: 1},
-...> current_user: %{id: 1},
-...> view_only_users_ids: [2]
-...> }
-iex> build_presences_summary(presences, params)
-%{
- presences: [
- %{user: %{id: 1}, joined_at: ~N[2024-07-03 12:00:00], active_sessions: 1},
- %{user: %{id: 2}, joined_at: ~N[2024-07-03 12:05:00], active_sessions: 1},
- %{user: %{id: 3}, joined_at: ~N[2024-07-03 12:10:00], active_sessions: 1}
- ],
- prior_user_presence: %{user: %{id: 3}, joined_at: ~N[2024-07-03 12:10:00], active_sessions: 1},
- current_user_presence: %{user: %{id: 1}, joined_at: ~N[2024-07-03 12:00:00], active_sessions: 1},
+iex> presences = [
+...> %{user: %{id: 1}, joined_at: ~N[2024-07-03 12:00:00], active_sessions: 1},
+...> %{user: %{id: 2}, joined_at: ~N[2024-07-03 12:05:00], active_sessions: 1},
+...> %{user: %{id: 3}, joined_at: ~N[2024-07-03 12:10:00], active_sessions: 1}
+...> ]
+iex> params = %{
+...> current_user_presence: %{user: %{id: 1}, joined_at: ~N[2024-07-03 12:00:00], active_sessions: 1},
+...> current_user: %{id: 1},
+...> view_only_users_ids: [2]
+...> }
+iex> build_presences_summary(presences, params)
+%{
+ presences: [
+ %{user: %{id: 1}, joined_at: ~N[2024-07-03 12:00:00], active_sessions: 1},
+ %{user: %{id: 2}, joined_at: ~N[2024-07-03 12:05:00], active_sessions: 1},
+ %{user: %{id: 3}, joined_at: ~N[2024-07-03 12:10:00], active_sessions: 1}
+ ],
+ prior_user_presence: %{user: %{id: 3}, joined_at: ~N[2024-07-03 12:10:00], active_sessions: 1},
+ current_user_presence: %{user: %{id: 1}, joined_at: ~N[2024-07-03 12:00:00], active_sessions: 1},
has_presence_edit_priority: true
-}
+}
@@ -516,8 +516,8 @@ list_presences(topic)
Examples
-iex> Lightning.Workflows.Presence.list_presences("workflow:canvas")
-[%Lightning.Workflows.Presence{user: %User{id: 1}, ...}, ...]
+iex> Lightning.Workflows.Presence.list_presences("workflow:canvas")
+[%Lightning.Workflows.Presence{user: %User{id: 1}, ...}, ...]
@@ -553,12 +553,12 @@ new_user_presence(user, joined_at, active_s
Examples
-iex> Lightning.Workflows.Presence.new_user_presence(%User{id: 1}, 1625597762000000)
-%Lightning.Workflows.Presence{
- user: %User{id: 1},
+iex> Lightning.Workflows.Presence.new_user_presence(%User{id: 1}, 1625597762000000)
+%Lightning.Workflows.Presence{
+ user: %User{id: 1},
joined_at: 1625597762000000,
active_sessions: 0
-}
+}
@@ -636,7 +636,7 @@ track_user_presence(user, topic, pid)
Examples
-iex> Lightning.Workflows.Presence.track_user_presence(%User{id: 1}, "room:lobby", self())
+iex> Lightning.Workflows.Presence.track_user_presence(%User{id: 1}, "room:lobby", self())
:ok
diff --git a/Lightning.Workflows.html b/Lightning.Workflows.html
index ba456097c4..09200d367a 100644
--- a/Lightning.Workflows.html
+++ b/Lightning.Workflows.html
@@ -444,8 +444,8 @@ change_workflow(workflow, attrs \\ %{})
Examples
-iex> change_workflow(workflow)
-%Ecto.Changeset{data: %Workflow{}}
+iex> change_workflow(workflow)
+%Ecto.Changeset{data: %Workflow{}}
@@ -507,12 +507,12 @@ get_edge_by_trigger(trigger)
Examples
-trigger = %Trigger{id: 1, ...}
-Lightning.Workflows.get_edge_by_trigger(trigger)
+trigger = %Trigger{id: 1, ...}
+Lightning.Workflows.get_edge_by_trigger(trigger)
# => %Edge{source_trigger: %Trigger{}, target_job: %Job{}, ...}
-non_existent_trigger = %Trigger{id: 999, ...}
-Lightning.Workflows.get_edge_by_trigger(non_existent_trigger)
+non_existent_trigger = %Trigger{id: 999, ...}
+Lightning.Workflows.get_edge_by_trigger(non_existent_trigger)
# => nil
@@ -582,10 +582,10 @@ get_trigger_by_webhook(path)
Examples
-Lightning.Workflows.get_trigger_by_webhook("some_path_or_id")
+Lightning.Workflows.get_trigger_by_webhook("some_path_or_id")
# => %Trigger{id: 1, custom_path: "some_path_or_id", ...}
-Lightning.Workflows.get_trigger_by_webhook("non_existent_path_or_id")
+Lightning.Workflows.get_trigger_by_webhook("non_existent_path_or_id")
# => nil
@@ -660,10 +660,10 @@ get_workflow!(id)
Examples
-iex> get_workflow!(123)
-%Workflow{}
+iex> get_workflow!(123)
+%Workflow{}
-iex> get_workflow!(456)
+iex> get_workflow!(456)
** (Ecto.NoResultsError)
@@ -767,8 +767,8 @@ list_workflows()
Examples
-iex> list_workflows()
-[%Workflow{}, ...]
+iex> list_workflows()
+[%Workflow{}, ...]
@@ -798,8 +798,8 @@ mark_for_deletion(workflow, attrs \\ %{})
Examples
-iex> change_request_deletion(workflow)
-%Ecto.Changeset{data: %Workflow{}}
+iex> change_request_deletion(workflow)
+%Ecto.Changeset{data: %Workflow{}}
diff --git a/Lightning.epub b/Lightning.epub
index 3baf7da0f6bceb1328ce3e66df0bed85f337c242..becc04264bd4d3ad43e9bb3b5f4c76db5c40041e 100644
GIT binary patch
delta 192125
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 %tH~o44g7y3Ex801ieg?rjSy<
z;LkfAQpll<96RY8yIygoO3!1+uRuKA
}e8O8_9H=*^
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