diff --git a/.build b/.build index e0875f9df6..e85258ef26 100644 --- a/.build +++ b/.build @@ -196,8 +196,8 @@ dist/merriweather-latin-ext-300-normal-K6L27CZ5.woff2 dist/merriweather-vietnamese-300-italic-EHHNZPUO.woff2 dist/merriweather-vietnamese-300-normal-U376L4Z4.woff2 dist/remixicon-NKANDIL5.woff2 -dist/search_items-95D23B54.js -dist/sidebar_items-B421EB7A.js +dist/search_items-A12C05D1.js +dist/sidebar_items-4C678A97.js index.html provisioning.html readme.html diff --git a/404.html b/404.html index 5c47eb0a6e..80cf6522e8 100644 --- a/404.html +++ b/404.html @@ -5,15 +5,15 @@ - + -
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{}}
iex> change_scheduled_deletion(user)
-%Ecto.Changeset{data: %User{}}
+iex> change_scheduled_deletion(user)
+%Ecto.Changeset{data: %User{}}
iex> change_superuser_registration(user)
-%Ecto.Changeset{data: %User{}}
+iex> change_superuser_registration(user)
+%Ecto.Changeset{data: %User{}}
iex> change_user_email(user)
-%Ecto.Changeset{data: %User{}}
+iex> change_user_email(user)
+%Ecto.Changeset{data: %User{}}
iex> change_user_password(user)
-%Ecto.Changeset{data: %User{}}
+iex> change_user_password(user)
+%Ecto.Changeset{data: %User{}}
iex> change_user_registration(user)
-%Ecto.Changeset{data: %User{}}
+iex> change_user_registration(user)
+%Ecto.Changeset{data: %User{}}
iex> delete_token(token)
-{:ok, %UserToken{}}
+iex> delete_token(token)
+{:ok, %UserToken{}}
-iex> delete_token(token)
-{:error, %Ecto.Changeset{}}
+iex> delete_token(token)
+{:error, %Ecto.Changeset{}}
iex> delete_user(user)
-{:ok, %User{}}
+iex> delete_user(user)
+{:ok, %User{}}
-iex> delete_user(user)
-{:error, %Ecto.Changeset{}}
+iex> delete_user(user)
+{:error, %Ecto.Changeset{}}
iex> deliver_update_email_instructions(user, current_email, &Routes.user_update_email_url(conn, :edit, &1))
-{:ok, %{to: ..., body: ...}}
+iex> deliver_update_email_instructions(user, current_email, &Routes.user_update_email_url(conn, :edit, &1))
+{:ok, %{to: ..., body: ...}}
iex> deliver_user_confirmation_instructions(user, &Routes.user_confirmation_url(conn, :edit, &1))
-{:ok, %{to: ..., body: ...}}
+iex> deliver_user_confirmation_instructions(user, &Routes.user_confirmation_url(conn, :edit, &1))
+{:ok, %{to: ..., body: ...}}
-iex> deliver_user_confirmation_instructions(confirmed_user, &Routes.user_confirmation_url(conn, :edit, &1))
-{:error, :already_confirmed}
+iex> deliver_user_confirmation_instructions(confirmed_user, &Routes.user_confirmation_url(conn, :edit, &1))
+{:error, :already_confirmed}
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: ...}}
iex> get_token!(123)
-%UserToken{}
+iex> get_token!(123)
+%UserToken{}
-iex> get_token!(456)
+iex> get_token!(456)
** (Ecto.NoResultsError)
iex> get_user!(123)
-%User{}
+iex> get_user!(123)
+%User{}
-iex> get_user!(456)
+iex> get_user!(456)
** (Ecto.NoResultsError)
@@ -1348,10 +1348,10 @@ get_user_by_email(email)
Examples
-iex> get_user_by_email("foo@example.com")
-%User{}
+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
@@ -1380,10 +1380,10 @@ get_user_by_email_and_password(email, passw
Examples
-iex> get_user_by_email_and_password("foo@example.com", "correct_password")
-%User{}
+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
@@ -1412,10 +1412,10 @@ get_user_by_reset_password_token(token)
Examples
-iex> get_user_by_reset_password_token("validtoken")
-%User{}
+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
@@ -1583,8 +1583,8 @@ list_users()
Examples
-iex> list_users()
-[%User{}, ...]
+iex> list_users()
+[%User{}, ...]
@@ -1662,11 +1662,11 @@ register_superuser(attrs)
Examples
-iex> register_superuser(%{field: value})
-{:ok, %User{}}
+iex> register_superuser(%{field: value})
+{:ok, %User{}}
-iex> register_superuser(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> register_superuser(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -1704,11 +1704,11 @@ register_user(attrs)
Examples
-iex> register_user(%{field: value})
-{:ok, %User{}}
+iex> register_user(%{field: value})
+{:ok, %User{}}
-iex> register_user(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> register_user(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -1736,11 +1736,11 @@ 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: "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: "valid", password_confirmation: "not the same"})
+{:error, %Ecto.Changeset{}}
@@ -1840,11 +1840,11 @@ update_user_password(user, password, attrs)
Examples
-iex> update_user_password(user, "valid password", %{password: ...})
-{:ok, %User{}}
+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, "invalid password", %{password: ...})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.AdaptorRegistry.Npm.html b/Lightning.AdaptorRegistry.Npm.html
index 2a429408fd..4963215573 100644
--- a/Lightning.AdaptorRegistry.Npm.html
+++ b/Lightning.AdaptorRegistry.Npm.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AdaptorRegistry.Npm — Lightning v0.7.1
+ Lightning.AdaptorRegistry.Npm — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AdaptorRegistry.Npm
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -1659,14 +1659,14 @@ request(request)
Examples
-
request = %HTTPoison.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(request)
@@ -1724,7 +1724,7 @@ 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"}])
diff --git a/Lightning.AdaptorRegistry.html b/Lightning.AdaptorRegistry.html
index 463b63b54f..1e3ade5b6c 100644
--- a/Lightning.AdaptorRegistry.html
+++ b/Lightning.AdaptorRegistry.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AdaptorRegistry — Lightning v0.7.1
+ Lightning.AdaptorRegistry — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AdaptorRegistry
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -117,9 +117,9 @@
Registry process to query and maintain a list of adaptors available for
writing jobs.
Currently it queries NPM for all modules in the @openfn
organization and
filters out modules that are known not to be adaptors.
Usage
# Starting the process
-AdaptorRegistry.start_link()
+AdaptorRegistry.start_link()
# Getting a list of all adaptors
-Lightning.AdaptorRegistry.AdaptorRegistry.all()
Caching
By default the results are cached to disk, and will be reused every start.
In order to disable or configure caching pass see: start_link/1
.
The process uses :continue
to return before the adaptors have been queried.
+
Lightning.AdaptorRegistry.AdaptorRegistry.all()
Caching
By default the results are cached to disk, and will be reused every start.
In order to disable or configure caching pass see: start_link/1
.
The process uses :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.
Timeouts
There is a 'general' timeout of 30s, this is used for GenServer calls like
all/1
and also internally when the modules are being queried. NPM can
@@ -411,10 +411,10 @@
resolve_package_name(package_name)
-Destructures an NPM style package name into module name and version.
Example
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 }
+Destructures an NPM style package name into module name and version.
Example
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 }
diff --git a/Lightning.AdaptorService.html b/Lightning.AdaptorService.html
index 6d6f076e47..5bbcdc1f4f 100644
--- a/Lightning.AdaptorService.html
+++ b/Lightning.AdaptorService.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AdaptorService — Lightning v0.7.1
+ Lightning.AdaptorService — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AdaptorService
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Attempt.html b/Lightning.Attempt.html
index bb3cf41468..7c9666df6f 100644
--- a/Lightning.Attempt.html
+++ b/Lightning.Attempt.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Attempt — Lightning v0.7.1
+ Lightning.Attempt — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Attempt
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.AttemptRun.html b/Lightning.AttemptRun.html
index 205ca903d0..e5d40ee07d 100644
--- a/Lightning.AttemptRun.html
+++ b/Lightning.AttemptRun.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AttemptRun — Lightning v0.7.1
+ Lightning.AttemptRun — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AttemptRun
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.AttemptService.html b/Lightning.AttemptService.html
index 3b7488bc0e..ad04805340 100644
--- a/Lightning.AttemptService.html
+++ b/Lightning.AttemptService.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AttemptService — Lightning v0.7.1
+ Lightning.AttemptService — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AttemptService
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -354,11 +354,11 @@ create_attempt(work_order, job, reason)
Examples
-
iex> create_attempt(%{field: value})
-{:ok, %Attempt{}}
+iex> create_attempt(%{field: value})
+{:ok, %Attempt{}}
-iex> create_attempt(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_attempt(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.Auditing.Model.html b/Lightning.Auditing.Model.html
index 8bf02c2e09..5184487680 100644
--- a/Lightning.Auditing.Model.html
+++ b/Lightning.Auditing.Model.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Auditing.Model — Lightning v0.7.1
+ Lightning.Auditing.Model — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Auditing.Model
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Auditing.html b/Lightning.Auditing.html
index 5bf5bd8b33..36e599940d 100644
--- a/Lightning.Auditing.html
+++ b/Lightning.Auditing.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Auditing — Lightning v0.7.1
+ Lightning.Auditing — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Auditing
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.AuthProviders.AuthConfig.html b/Lightning.AuthProviders.AuthConfig.html
index a48e9d3f58..2aa8517ca0 100644
--- a/Lightning.AuthProviders.AuthConfig.html
+++ b/Lightning.AuthProviders.AuthConfig.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.AuthConfig — Lightning v0.7.1
+ Lightning.AuthProviders.AuthConfig — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AuthProviders.AuthConfig
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.AuthProviders.CacheWarmer.html b/Lightning.AuthProviders.CacheWarmer.html
index e3cee853f2..22742f4a32 100644
--- a/Lightning.AuthProviders.CacheWarmer.html
+++ b/Lightning.AuthProviders.CacheWarmer.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.CacheWarmer — Lightning v0.7.1
+ Lightning.AuthProviders.CacheWarmer — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AuthProviders.CacheWarmer
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.AuthProviders.Google.html b/Lightning.AuthProviders.Google.html
index eb3bd3e455..64c49bab06 100644
--- a/Lightning.AuthProviders.Google.html
+++ b/Lightning.AuthProviders.Google.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.Google — Lightning v0.7.1
+ Lightning.AuthProviders.Google — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AuthProviders.Google
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.AuthProviders.Handler.html b/Lightning.AuthProviders.Handler.html
index 555ac70020..f27aa54702 100644
--- a/Lightning.AuthProviders.Handler.html
+++ b/Lightning.AuthProviders.Handler.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.Handler — Lightning v0.7.1
+ Lightning.AuthProviders.Handler — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AuthProviders.Handler
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.AuthProviders.Store.html b/Lightning.AuthProviders.Store.html
index 63aafde58a..b8d96e187e 100644
--- a/Lightning.AuthProviders.Store.html
+++ b/Lightning.AuthProviders.Store.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.Store — Lightning v0.7.1
+ Lightning.AuthProviders.Store — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AuthProviders.Store
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.AuthProviders.WellKnown.html b/Lightning.AuthProviders.WellKnown.html
index d7882e5851..f228d3599a 100644
--- a/Lightning.AuthProviders.WellKnown.html
+++ b/Lightning.AuthProviders.WellKnown.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders.WellKnown — Lightning v0.7.1
+ Lightning.AuthProviders.WellKnown — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AuthProviders.WellKnown
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -1834,14 +1834,14 @@ request(request)
Examples
-
request = %HTTPoison.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(request)
@@ -1899,7 +1899,7 @@ 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"}])
diff --git a/Lightning.AuthProviders.html b/Lightning.AuthProviders.html
index ba0f0771e6..a39e334701 100644
--- a/Lightning.AuthProviders.html
+++ b/Lightning.AuthProviders.html
@@ -5,15 +5,15 @@
-
+
- Lightning.AuthProviders — Lightning v0.7.1
+ Lightning.AuthProviders — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.AuthProviders
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.CLI.Result.html b/Lightning.CLI.Result.html
index 16d402e769..6e3476bbef 100644
--- a/Lightning.CLI.Result.html
+++ b/Lightning.CLI.Result.html
@@ -5,15 +5,15 @@
-
+
- Lightning.CLI.Result — Lightning v0.7.1
+ Lightning.CLI.Result — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.CLI.Result
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -121,7 +121,7 @@
Logs
The OpenFn CLI returns JSON formatted log lines, which are decoded and added
-to a 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
+to a 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.CLI.html b/Lightning.CLI.html
index 12759a2e30..8f32f25040 100644
--- a/Lightning.CLI.html
+++ b/Lightning.CLI.html
@@ -5,15 +5,15 @@
-
+
- Lightning.CLI — Lightning v0.7.1
+ Lightning.CLI — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.CLI
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Credentials.Audit.html b/Lightning.Credentials.Audit.html
index 25cd11ef1c..ef5f68ac5b 100644
--- a/Lightning.Credentials.Audit.html
+++ b/Lightning.Credentials.Audit.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials.Audit — Lightning v0.7.1
+ Lightning.Credentials.Audit — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Credentials.Audit
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Credentials.Credential.html b/Lightning.Credentials.Credential.html
index c1fd7fe3cb..1404a5ec3c 100644
--- a/Lightning.Credentials.Credential.html
+++ b/Lightning.Credentials.Credential.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials.Credential — Lightning v0.7.1
+ Lightning.Credentials.Credential — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Credentials.Credential
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Credentials.Schema.html b/Lightning.Credentials.Schema.html
index db610e1d34..a08cf491f2 100644
--- a/Lightning.Credentials.Schema.html
+++ b/Lightning.Credentials.Schema.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials.Schema — Lightning v0.7.1
+ Lightning.Credentials.Schema — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Credentials.Schema
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Credentials.SchemaDocument.html b/Lightning.Credentials.SchemaDocument.html
index 91c1057673..8188fe4725 100644
--- a/Lightning.Credentials.SchemaDocument.html
+++ b/Lightning.Credentials.SchemaDocument.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials.SchemaDocument — Lightning v0.7.1
+ Lightning.Credentials.SchemaDocument — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Credentials.SchemaDocument
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Credentials.SensitiveValues.html b/Lightning.Credentials.SensitiveValues.html
index 944b039eab..6f141d8e8d 100644
--- a/Lightning.Credentials.SensitiveValues.html
+++ b/Lightning.Credentials.SensitiveValues.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials.SensitiveValues — Lightning v0.7.1
+ Lightning.Credentials.SensitiveValues — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Credentials.SensitiveValues
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Credentials.html b/Lightning.Credentials.html
index 53ac352114..05f61ada18 100644
--- a/Lightning.Credentials.html
+++ b/Lightning.Credentials.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Credentials — Lightning v0.7.1
+ Lightning.Credentials — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Credentials
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -277,8 +277,8 @@ change_credential(credential, attrs \\ %{})
Examples
-iex> change_credential(credential)
-%Ecto.Changeset{data: %Credential{}}
+iex> change_credential(credential)
+%Ecto.Changeset{data: %Credential{}}
@@ -308,11 +308,11 @@ create_credential(attrs \\ %{})
Examples
-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{}}
@@ -340,11 +340,11 @@ delete_credential(credential)
Examples
-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{}}
@@ -372,10 +372,10 @@ get_credential!(id)
Examples
-iex> get_credential!(123)
-%Credential{}
+iex> get_credential!(123)
+%Credential{}
-iex> get_credential!(456)
+iex> get_credential!(456)
** (Ecto.NoResultsError)
@@ -406,11 +406,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"]
@@ -438,8 +438,8 @@ list_credentials()
Examples
-iex> list_credentials()
-[%Credential{}, ...]
+iex> list_credentials()
+[%Credential{}, ...]
@@ -489,8 +489,8 @@ list_credentials_for_user(user_id)
Examples
-iex> list_credentials_for_user(123)
-[%Credential{user_id: 123}, %Credential{user_id: 123},...]
+iex> list_credentials_for_user(123)
+[%Credential{user_id: 123}, %Credential{user_id: 123},...]
@@ -576,11 +576,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.Demo.html b/Lightning.Demo.html
index 6aaa6ae444..4c5c04ac59 100644
--- a/Lightning.Demo.html
+++ b/Lightning.Demo.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Demo — Lightning v0.7.1
+ Lightning.Demo — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Demo
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.ExportUtils.html b/Lightning.ExportUtils.html
index 57426c9a13..68736a6ae3 100644
--- a/Lightning.ExportUtils.html
+++ b/Lightning.ExportUtils.html
@@ -5,15 +5,15 @@
-
+
- Lightning.ExportUtils — Lightning v0.7.1
+ Lightning.ExportUtils — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.ExportUtils
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.FailureNotifierView.html b/Lightning.FailureNotifierView.html
index 5382645fd4..d061a647cb 100644
--- a/Lightning.FailureNotifierView.html
+++ b/Lightning.FailureNotifierView.html
@@ -5,15 +5,15 @@
-
+
- Lightning.FailureNotifierView — Lightning v0.7.1
+ Lightning.FailureNotifierView — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.FailureNotifierView
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Helpers.html b/Lightning.Helpers.html
index 3c971278b5..38f1b9b8d6 100644
--- a/Lightning.Helpers.html
+++ b/Lightning.Helpers.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Helpers — Lightning v0.7.1
+ Lightning.Helpers — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Helpers
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Invocation.Dataclip.html b/Lightning.Invocation.Dataclip.html
index 5113b93a55..3d50f15c97 100644
--- a/Lightning.Invocation.Dataclip.html
+++ b/Lightning.Invocation.Dataclip.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Invocation.Dataclip — Lightning v0.7.1
+ Lightning.Invocation.Dataclip — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Invocation.Dataclip
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Invocation.LogLine.html b/Lightning.Invocation.LogLine.html
index 1f469be666..522021ddd7 100644
--- a/Lightning.Invocation.LogLine.html
+++ b/Lightning.Invocation.LogLine.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Invocation.LogLine — Lightning v0.7.1
+ Lightning.Invocation.LogLine — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Invocation.LogLine
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Invocation.Query.html b/Lightning.Invocation.Query.html
index f31e125eeb..079eb9c081 100644
--- a/Lightning.Invocation.Query.html
+++ b/Lightning.Invocation.Query.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Invocation.Query — Lightning v0.7.1
+ Lightning.Invocation.Query — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Invocation.Query
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Invocation.Run.html b/Lightning.Invocation.Run.html
index 5d6b89762c..1ccac259c4 100644
--- a/Lightning.Invocation.Run.html
+++ b/Lightning.Invocation.Run.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Invocation.Run — Lightning v0.7.1
+ Lightning.Invocation.Run — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Invocation.Run
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Invocation.html b/Lightning.Invocation.html
index f1fed2dd0b..11b2a00c86 100644
--- a/Lightning.Invocation.html
+++ b/Lightning.Invocation.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Invocation — Lightning v0.7.1
+ Lightning.Invocation — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Invocation
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -476,8 +476,8 @@ change_dataclip(dataclip, attrs \\ %{})
Examples
-
iex> change_dataclip(dataclip)
-%Ecto.Changeset{data: %Dataclip{}}
+iex> change_dataclip(dataclip)
+%Ecto.Changeset{data: %Dataclip{}}
@@ -507,8 +507,8 @@ change_run(run, attrs \\ %{})
Examples
-iex> change_run(run)
-%Ecto.Changeset{data: %Run{}}
+iex> change_run(run)
+%Ecto.Changeset{data: %Run{}}
@@ -546,11 +546,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{}}
@@ -602,11 +602,11 @@ create_run(attrs \\ %{})
Examples
-iex> create_run(%{field: value})
-{:ok, %Run{}}
+iex> create_run(%{field: value})
+{:ok, %Run{}}
-iex> create_run(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_run(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -634,11 +634,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{}}
@@ -666,11 +666,11 @@ delete_run(run)
Examples
-iex> delete_run(run)
-{:ok, %Run{}}
+iex> delete_run(run)
+{:ok, %Run{}}
-iex> delete_run(run)
-{:error, %Ecto.Changeset{}}
+iex> delete_run(run)
+{:error, %Ecto.Changeset{}}
@@ -859,14 +859,14 @@ get_dataclip(run)
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(%Run{id: "a uuid"})
-%Dataclip{}
+iex> get_dataclip(%Run{id: "a uuid"})
+%Dataclip{}
@@ -900,10 +900,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)
@@ -982,10 +982,10 @@ get_run!(id)
Examples
-iex> get_run!(123)
-%Run{}
+iex> get_run!(123)
+%Run{}
-iex> get_run!(456)
+iex> get_run!(456)
** (Ecto.NoResultsError)
@@ -1064,8 +1064,8 @@ list_dataclips()
Examples
-iex> list_dataclips()
-[%Dataclip{}, ...]
+iex> list_dataclips()
+[%Dataclip{}, ...]
@@ -1174,8 +1174,8 @@ list_runs()
Examples
-iex> list_runs()
-[%Run{}, ...]
+iex> list_runs()
+[%Run{}, ...]
@@ -1330,11 +1330,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{}}
@@ -1362,11 +1362,11 @@ update_run(run, attrs)
Examples
-iex> update_run(run, %{field: new_value})
-{:ok, %Run{}}
+iex> update_run(run, %{field: new_value})
+{:ok, %Run{}}
-iex> update_run(run, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_run(run, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.InvocationReason.html b/Lightning.InvocationReason.html
index 3397b2ffd4..61bd0500c4 100644
--- a/Lightning.InvocationReason.html
+++ b/Lightning.InvocationReason.html
@@ -5,15 +5,15 @@
-
+
- Lightning.InvocationReason — Lightning v0.7.1
+ Lightning.InvocationReason — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.InvocationReason
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.InvocationReasons.html b/Lightning.InvocationReasons.html
index 5f34ea88bc..e57776c798 100644
--- a/Lightning.InvocationReasons.html
+++ b/Lightning.InvocationReasons.html
@@ -5,15 +5,15 @@
-
+
- Lightning.InvocationReasons — Lightning v0.7.1
+ Lightning.InvocationReasons — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.InvocationReasons
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -273,11 +273,11 @@ create_reason(attrs \\ %{})
Examples
-
iex> create_reason(%{field: value})
-{:ok, %InvocationReason{}}
+iex> create_reason(%{field: value})
+{:ok, %InvocationReason{}}
-iex> create_reason(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_reason(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.Jobs.Job.html b/Lightning.Jobs.Job.html
index 9dcc404ef7..5c14527109 100644
--- a/Lightning.Jobs.Job.html
+++ b/Lightning.Jobs.Job.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Jobs.Job — Lightning v0.7.1
+ Lightning.Jobs.Job — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Jobs.Job
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -336,17 +336,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.Jobs.Query.html b/Lightning.Jobs.Query.html
index ef2e4b3716..2ba8dc2887 100644
--- a/Lightning.Jobs.Query.html
+++ b/Lightning.Jobs.Query.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Jobs.Query — Lightning v0.7.1
+ Lightning.Jobs.Query — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Jobs.Query
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Jobs.Scheduler.html b/Lightning.Jobs.Scheduler.html
index e4ef3aee93..9cc4175c20 100644
--- a/Lightning.Jobs.Scheduler.html
+++ b/Lightning.Jobs.Scheduler.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Jobs.Scheduler — Lightning v0.7.1
+ Lightning.Jobs.Scheduler — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Jobs.Scheduler
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Jobs.Trigger.html b/Lightning.Jobs.Trigger.html
index 7207743c31..b4742c2e6b 100644
--- a/Lightning.Jobs.Trigger.html
+++ b/Lightning.Jobs.Trigger.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Jobs.Trigger — Lightning v0.7.1
+ Lightning.Jobs.Trigger — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Jobs.Trigger
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Jobs.html b/Lightning.Jobs.html
index 9052df3552..8a54deebed 100644
--- a/Lightning.Jobs.html
+++ b/Lightning.Jobs.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Jobs — Lightning v0.7.1
+ Lightning.Jobs — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Jobs
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -295,8 +295,8 @@ change_job(job, attrs \\ %{})
Examples
-
iex> change_job(job)
-%Ecto.Changeset{data: %Job{}}
+iex> change_job(job)
+%Ecto.Changeset{data: %Job{}}
@@ -326,11 +326,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{}}
@@ -358,11 +358,11 @@ delete_job(job)
Examples
-iex> delete_job(job)
-{:ok, %Job{}}
+iex> delete_job(job)
+{:ok, %Job{}}
-iex> delete_job(job)
-{:error, %Ecto.Changeset{}}
+iex> delete_job(job)
+{:error, %Ecto.Changeset{}}
@@ -448,10 +448,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)
@@ -637,11 +637,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.MetadataService.Error.html b/Lightning.MetadataService.Error.html
index 7a69782da7..06feaaed91 100644
--- a/Lightning.MetadataService.Error.html
+++ b/Lightning.MetadataService.Error.html
@@ -5,15 +5,15 @@
-
+
- Lightning.MetadataService.Error — Lightning v0.7.1
+ Lightning.MetadataService.Error — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.MetadataService.Error exception
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.MetadataService.html b/Lightning.MetadataService.html
index 86773d54e0..dc0bea77a7 100644
--- a/Lightning.MetadataService.html
+++ b/Lightning.MetadataService.html
@@ -5,15 +5,15 @@
-
+
- Lightning.MetadataService — Lightning v0.7.1
+ Lightning.MetadataService — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.MetadataService
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Name.html b/Lightning.Name.html
index 4837a64def..536c52ec76 100644
--- a/Lightning.Name.html
+++ b/Lightning.Name.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Name — Lightning v0.7.1
+ Lightning.Name — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Name
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.ObanManager.html b/Lightning.ObanManager.html
index 181049877d..132c47bd5f 100644
--- a/Lightning.ObanManager.html
+++ b/Lightning.ObanManager.html
@@ -5,15 +5,15 @@
-
+
- Lightning.ObanManager — Lightning v0.7.1
+ Lightning.ObanManager — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.ObanManager
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Pipeline.Runner.Handler.html b/Lightning.Pipeline.Runner.Handler.html
index a4b8f5b2fe..88525e8c5e 100644
--- a/Lightning.Pipeline.Runner.Handler.html
+++ b/Lightning.Pipeline.Runner.Handler.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Pipeline.Runner.Handler — Lightning v0.7.1
+ Lightning.Pipeline.Runner.Handler — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Pipeline.Runner.Handler
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Pipeline.Runner.html b/Lightning.Pipeline.Runner.html
index 28d473c823..7b158da52a 100644
--- a/Lightning.Pipeline.Runner.html
+++ b/Lightning.Pipeline.Runner.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Pipeline.Runner — Lightning v0.7.1
+ Lightning.Pipeline.Runner — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Pipeline.Runner
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Pipeline.StateAssembler.html b/Lightning.Pipeline.StateAssembler.html
index 733a960f73..ebc5853285 100644
--- a/Lightning.Pipeline.StateAssembler.html
+++ b/Lightning.Pipeline.StateAssembler.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Pipeline.StateAssembler — Lightning v0.7.1
+ Lightning.Pipeline.StateAssembler — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Pipeline.StateAssembler
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -121,7 +121,7 @@
How state is assembled
For the most common jobs, an inbound webhook will store an :http_request
type
-dataclip. The reason that is created is associated with the dataclip.
At runtime, the initial state for a Run will be in the shape of:
{ "data": <the dataclip>, "configuration": <the job's credential> }
+dataclip. The reason that is created is associated with the dataclip.
At runtime, the initial state for a Run will be in the shape of:
{ "data": <the dataclip>, "configuration": <the job's credential> }
saved-inputs
diff --git a/Lightning.Pipeline.html b/Lightning.Pipeline.html
index a13282f2b8..baf4ac1bc7 100644
--- a/Lightning.Pipeline.html
+++ b/Lightning.Pipeline.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Pipeline — Lightning v0.7.1
+ Lightning.Pipeline — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Pipeline
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Policies.Permissions.html b/Lightning.Policies.Permissions.html
index df22eda200..4e0c211488 100644
--- a/Lightning.Policies.Permissions.html
+++ b/Lightning.Policies.Permissions.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Policies.Permissions — Lightning v0.7.1
+ Lightning.Policies.Permissions — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,20 +108,20 @@
Lightning.Policies.Permissions
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
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_job = Lightning.Policies.ProjectUsers |> Lightning.Policies.Permissions.can?(:edit_job, 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_job = Lightning.Policies.ProjectUsers |> Lightning.Policies.Permissions.can?(:edit_job, socket.assigns.current_user, socket.assigns.project)
-if can_edit_job do
+if can_edit_job do
# allow user to edit the job
-else
+else
# quick user out
-end
+
end
@@ -199,11 +199,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}
@@ -233,10 +233,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.Policies.ProjectUsers.html b/Lightning.Policies.ProjectUsers.html
index fe26f19c3f..5ca9d50486 100644
--- a/Lightning.Policies.ProjectUsers.html
+++ b/Lightning.Policies.ProjectUsers.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Policies.ProjectUsers — Lightning v0.7.1
+ Lightning.Policies.ProjectUsers — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Policies.ProjectUsers
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Policies.Provisioning.html b/Lightning.Policies.Provisioning.html
index 9dd495efdd..1c0ab2f36a 100644
--- a/Lightning.Policies.Provisioning.html
+++ b/Lightning.Policies.Provisioning.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Policies.Provisioning — Lightning v0.7.1
+ Lightning.Policies.Provisioning — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Policies.Provisioning
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Policies.Users.html b/Lightning.Policies.Users.html
index 6cf3afc765..f5fe812e89 100644
--- a/Lightning.Policies.Users.html
+++ b/Lightning.Policies.Users.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Policies.Users — Lightning v0.7.1
+ Lightning.Policies.Users — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Policies.Users
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Projects.Project.html b/Lightning.Projects.Project.html
index d1a5cd9b56..d77d27b002 100644
--- a/Lightning.Projects.Project.html
+++ b/Lightning.Projects.Project.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.Project — Lightning v0.7.1
+ Lightning.Projects.Project — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Projects.Project
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Projects.ProjectCredential.html b/Lightning.Projects.ProjectCredential.html
index f877f7dbe9..5df5a1cc9f 100644
--- a/Lightning.Projects.ProjectCredential.html
+++ b/Lightning.Projects.ProjectCredential.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.ProjectCredential — Lightning v0.7.1
+ Lightning.Projects.ProjectCredential — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Projects.ProjectCredential
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Projects.ProjectUser.DigestEnum.html b/Lightning.Projects.ProjectUser.DigestEnum.html
index 731abe7767..9e215080cb 100644
--- a/Lightning.Projects.ProjectUser.DigestEnum.html
+++ b/Lightning.Projects.ProjectUser.DigestEnum.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.ProjectUser.DigestEnum — Lightning v0.7.1
+ Lightning.Projects.ProjectUser.DigestEnum — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Projects.ProjectUser.DigestEnum
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Projects.ProjectUser.RolesEnum.html b/Lightning.Projects.ProjectUser.RolesEnum.html
index e7b4b083e4..9f6ac18e86 100644
--- a/Lightning.Projects.ProjectUser.RolesEnum.html
+++ b/Lightning.Projects.ProjectUser.RolesEnum.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.ProjectUser.RolesEnum — Lightning v0.7.1
+ Lightning.Projects.ProjectUser.RolesEnum — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Projects.ProjectUser.RolesEnum
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Projects.ProjectUser.html b/Lightning.Projects.ProjectUser.html
index 937890729e..8797030799 100644
--- a/Lightning.Projects.ProjectUser.html
+++ b/Lightning.Projects.ProjectUser.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.ProjectUser — Lightning v0.7.1
+ Lightning.Projects.ProjectUser — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Projects.ProjectUser
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Projects.Provisioner.html b/Lightning.Projects.Provisioner.html
index 555d3b96a1..f2e4df51cb 100644
--- a/Lightning.Projects.Provisioner.html
+++ b/Lightning.Projects.Provisioner.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects.Provisioner — Lightning v0.7.1
+ Lightning.Projects.Provisioner — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Projects.Provisioner
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Projects.html b/Lightning.Projects.html
index 0e67ecc207..31e7b25221 100644
--- a/Lightning.Projects.html
+++ b/Lightning.Projects.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Projects — Lightning v0.7.1
+ Lightning.Projects — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Projects
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -540,8 +540,8 @@ change_project(project, attrs \\ %{})
Examples
-
iex> change_project(project)
-%Ecto.Changeset{data: %Project{}}
+iex> change_project(project)
+%Ecto.Changeset{data: %Project{}}
@@ -571,11 +571,11 @@ create_project(attrs \\ %{})
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{}}
@@ -604,11 +604,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{}}
@@ -642,8 +642,8 @@ export_project(atom, project_id)
Examples
-iex> export_project(:yaml, project_id)
-{:ok, string}
+iex> export_project(:yaml, project_id)
+{:ok, string}
@@ -693,10 +693,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)
@@ -791,10 +791,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)
@@ -824,16 +824,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
@@ -862,10 +862,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)
@@ -976,8 +976,8 @@ list_projects()
Examples
-iex> list_projects()
-[%Project{}, ...]
+iex> list_projects()
+[%Project{}, ...]
@@ -1435,11 +1435,11 @@ update_project(project, attrs)
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{}}
@@ -1467,11 +1467,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{}}
@@ -1521,8 +1521,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.Release.html b/Lightning.Release.html
index eb5a786836..522087b6f3 100644
--- a/Lightning.Release.html
+++ b/Lightning.Release.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Release — Lightning v0.7.1
+ Lightning.Release — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Release
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Repo.html b/Lightning.Repo.html
index 86ad3a620c..ee11ed680b 100644
--- a/Lightning.Repo.html
+++ b/Lightning.Repo.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Repo — Lightning v0.7.1
+ Lightning.Repo — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Repo
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.RunSearchForm.html b/Lightning.RunSearchForm.html
index e09b1607b9..787bf71a42 100644
--- a/Lightning.RunSearchForm.html
+++ b/Lightning.RunSearchForm.html
@@ -5,15 +5,15 @@
-
+
- Lightning.RunSearchForm — Lightning v0.7.1
+ Lightning.RunSearchForm — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.RunSearchForm
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Runtime.ChildProcess.html b/Lightning.Runtime.ChildProcess.html
index 56fb0d7ed3..863c44d744 100644
--- a/Lightning.Runtime.ChildProcess.html
+++ b/Lightning.Runtime.ChildProcess.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.ChildProcess — Lightning v0.7.1
+ Lightning.Runtime.ChildProcess — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Runtime.ChildProcess
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Runtime.Handler.html b/Lightning.Runtime.Handler.html
index 0d28092163..0ff7ed8abe 100644
--- a/Lightning.Runtime.Handler.html
+++ b/Lightning.Runtime.Handler.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.Handler — Lightning v0.7.1
+ Lightning.Runtime.Handler — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Runtime.Handler behaviour
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Runtime.LogAgent.StringBuffer.html b/Lightning.Runtime.LogAgent.StringBuffer.html
index 106671da61..9cbfbe12d1 100644
--- a/Lightning.Runtime.LogAgent.StringBuffer.html
+++ b/Lightning.Runtime.LogAgent.StringBuffer.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.LogAgent.StringBuffer — Lightning v0.7.1
+ Lightning.Runtime.LogAgent.StringBuffer — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Runtime.LogAgent.StringBuffer
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Runtime.LogAgent.html b/Lightning.Runtime.LogAgent.html
index 476d2f06bc..d7109cb5e6 100644
--- a/Lightning.Runtime.LogAgent.html
+++ b/Lightning.Runtime.LogAgent.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.LogAgent — Lightning v0.7.1
+ Lightning.Runtime.LogAgent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,16 +108,16 @@
Lightning.Runtime.LogAgent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
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.Result.html b/Lightning.Runtime.Result.html
index 94e5ab07e5..a44f20af49 100644
--- a/Lightning.Runtime.Result.html
+++ b/Lightning.Runtime.Result.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.Result — Lightning v0.7.1
+ Lightning.Runtime.Result — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Runtime.Result
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Runtime.RunSpec.html b/Lightning.Runtime.RunSpec.html
index 0b2732c082..fb12576ff0 100644
--- a/Lightning.Runtime.RunSpec.html
+++ b/Lightning.Runtime.RunSpec.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Runtime.RunSpec — Lightning v0.7.1
+ Lightning.Runtime.RunSpec — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Runtime.RunSpec
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.SafetyString.html b/Lightning.SafetyString.html
index ccc3e00475..9c0e1f06e4 100644
--- a/Lightning.SafetyString.html
+++ b/Lightning.SafetyString.html
@@ -5,15 +5,15 @@
-
+
- Lightning.SafetyString — Lightning v0.7.1
+ Lightning.SafetyString — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.SafetyString
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Scrubber.html b/Lightning.Scrubber.html
index 16e67ae541..b57f8d211c 100644
--- a/Lightning.Scrubber.html
+++ b/Lightning.Scrubber.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Scrubber — Lightning v0.7.1
+ Lightning.Scrubber — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,17 +108,17 @@
Lightning.Scrubber
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
-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.SetupUtils.html b/Lightning.SetupUtils.html
index 6c0667b5ed..5eb8a961d6 100644
--- a/Lightning.SetupUtils.html
+++ b/Lightning.SetupUtils.html
@@ -5,15 +5,15 @@
-
+
- Lightning.SetupUtils — Lightning v0.7.1
+ Lightning.SetupUtils — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.SetupUtils
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.TaskWorker.html b/Lightning.TaskWorker.html
index e02c2e19b6..ddff0c58db 100644
--- a/Lightning.TaskWorker.html
+++ b/Lightning.TaskWorker.html
@@ -5,15 +5,15 @@
-
+
- Lightning.TaskWorker — Lightning v0.7.1
+ Lightning.TaskWorker — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.TaskWorker
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -117,7 +117,7 @@
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.
+ {Lightning.TaskWorker, name: :cli_task_worker, max_tasks: 4}
Options
:max_tasks
Defaults to the number of system schedulers available to the vm.
diff --git a/Lightning.Validators.html b/Lightning.Validators.html
index d2071918e5..b06ae2bb67 100644
--- a/Lightning.Validators.html
+++ b/Lightning.Validators.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Validators — Lightning v0.7.1
+ Lightning.Validators — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Validators
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -192,10 +192,10 @@ validate_exclusive(changeset, fields, messa
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"
-)
+)
diff --git a/Lightning.Vault.html b/Lightning.Vault.html
index c7072125d6..53338e3d5d 100644
--- a/Lightning.Vault.html
+++ b/Lightning.Vault.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Vault — Lightning v0.7.1
+ Lightning.Vault — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Vault
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.WorkOrder.html b/Lightning.WorkOrder.html
index ebbd5211d1..0bae394dd5 100644
--- a/Lightning.WorkOrder.html
+++ b/Lightning.WorkOrder.html
@@ -5,15 +5,15 @@
-
+
- Lightning.WorkOrder — Lightning v0.7.1
+ Lightning.WorkOrder — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.WorkOrder
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.WorkOrderService.html b/Lightning.WorkOrderService.html
index ed10b86acd..e89f22713e 100644
--- a/Lightning.WorkOrderService.html
+++ b/Lightning.WorkOrderService.html
@@ -5,15 +5,15 @@
-
+
- Lightning.WorkOrderService — Lightning v0.7.1
+ Lightning.WorkOrderService — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.WorkOrderService
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -342,11 +342,11 @@ create_work_order(attrs \\ %{})
Examples
-
iex> create_work_order(%{field: value})
-{:ok, %WorkOrder{}}
+iex> create_work_order(%{field: value})
+{:ok, %WorkOrder{}}
-iex> create_work_order(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_work_order(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.Workflows.Edge.html b/Lightning.Workflows.Edge.html
index 0da2cea92f..9a4ae741c8 100644
--- a/Lightning.Workflows.Edge.html
+++ b/Lightning.Workflows.Edge.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.Edge — Lightning v0.7.1
+ Lightning.Workflows.Edge — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Workflows.Edge
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Workflows.Graph.html b/Lightning.Workflows.Graph.html
index 33a590ca7f..465b2972aa 100644
--- a/Lightning.Workflows.Graph.html
+++ b/Lightning.Workflows.Graph.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.Graph — Lightning v0.7.1
+ Lightning.Workflows.Graph — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Workflows.Graph
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Workflows.Workflow.html b/Lightning.Workflows.Workflow.html
index 2a57220f51..c0e23ffd15 100644
--- a/Lightning.Workflows.Workflow.html
+++ b/Lightning.Workflows.Workflow.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows.Workflow — Lightning v0.7.1
+ Lightning.Workflows.Workflow — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Workflows.Workflow
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.Workflows.html b/Lightning.Workflows.html
index 44700b4f23..eacbf27599 100644
--- a/Lightning.Workflows.html
+++ b/Lightning.Workflows.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workflows — Lightning v0.7.1
+ Lightning.Workflows — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Workflows
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -349,8 +349,8 @@ change_workflow(workflow, attrs \\ %{})
Examples
-
iex> change_workflow(workflow)
-%Ecto.Changeset{data: %Workflow{}}
+iex> change_workflow(workflow)
+%Ecto.Changeset{data: %Workflow{}}
@@ -402,11 +402,11 @@ create_workflow(attrs \\ %{})
Examples
-iex> create_workflow(%{field: value})
-{:ok, %Workflow{}}
+iex> create_workflow(%{field: value})
+{:ok, %Workflow{}}
-iex> create_workflow(%{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> create_workflow(%{field: bad_value})
+{:error, %Ecto.Changeset{}}
@@ -434,11 +434,11 @@ delete_workflow(workflow)
Examples
-iex> delete_workflow(workflow)
-{:ok, %Workflow{}}
+iex> delete_workflow(workflow)
+{:ok, %Workflow{}}
-iex> delete_workflow(workflow)
-{:error, %Ecto.Changeset{}}
+iex> delete_workflow(workflow)
+{:error, %Ecto.Changeset{}}
@@ -539,10 +539,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)
@@ -623,8 +623,8 @@ list_workflows()
Examples
-iex> list_workflows()
-[%Workflow{}, ...]
+iex> list_workflows()
+[%Workflow{}, ...]
@@ -654,8 +654,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{}}
@@ -733,11 +733,11 @@ update_workflow(workflow, attrs)
Examples
-iex> update_workflow(workflow, %{field: new_value})
-{:ok, %Workflow{}}
+iex> update_workflow(workflow, %{field: new_value})
+{:ok, %Workflow{}}
-iex> update_workflow(workflow, %{field: bad_value})
-{:error, %Ecto.Changeset{}}
+iex> update_workflow(workflow, %{field: bad_value})
+{:error, %Ecto.Changeset{}}
diff --git a/Lightning.Workorders.SearchParams.html b/Lightning.Workorders.SearchParams.html
index fb1bcd3286..d65db2971c 100644
--- a/Lightning.Workorders.SearchParams.html
+++ b/Lightning.Workorders.SearchParams.html
@@ -5,15 +5,15 @@
-
+
- Lightning.Workorders.SearchParams — Lightning v0.7.1
+ Lightning.Workorders.SearchParams — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning.Workorders.SearchParams
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Lightning.epub b/Lightning.epub
index 3ce154d10f..125d2d08cb 100644
Binary files a/Lightning.epub and b/Lightning.epub differ
diff --git a/Lightning.html b/Lightning.html
index 58c869ac93..6f339c14aa 100644
--- a/Lightning.html
+++ b/Lightning.html
@@ -5,15 +5,15 @@
-
+
- Lightning — Lightning v0.7.1
+ Lightning — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Lightning
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.API.Helpers.html b/LightningWeb.API.Helpers.html
index 76aab0bdcb..55cdeb280e 100644
--- a/LightningWeb.API.Helpers.html
+++ b/LightningWeb.API.Helpers.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.API.Helpers — Lightning v0.7.1
+ LightningWeb.API.Helpers — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.API.Helpers
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.API.JobController.html b/LightningWeb.API.JobController.html
index 8ffcb752f9..802dbc026f 100644
--- a/LightningWeb.API.JobController.html
+++ b/LightningWeb.API.JobController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.API.JobController — Lightning v0.7.1
+ LightningWeb.API.JobController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.API.JobController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.API.ProjectController.html b/LightningWeb.API.ProjectController.html
index 67aa57ca83..ca992d4528 100644
--- a/LightningWeb.API.ProjectController.html
+++ b/LightningWeb.API.ProjectController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.API.ProjectController — Lightning v0.7.1
+ LightningWeb.API.ProjectController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.API.ProjectController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.API.ProvisioningController.html b/LightningWeb.API.ProvisioningController.html
index 4fa05e1d25..10530656a9 100644
--- a/LightningWeb.API.ProvisioningController.html
+++ b/LightningWeb.API.ProvisioningController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.API.ProvisioningController — Lightning v0.7.1
+ LightningWeb.API.ProvisioningController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.API.ProvisioningController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.API.RunController.html b/LightningWeb.API.RunController.html
index 0456aa4e44..4c072079ad 100644
--- a/LightningWeb.API.RunController.html
+++ b/LightningWeb.API.RunController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.API.RunController — Lightning v0.7.1
+ LightningWeb.API.RunController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.API.RunController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.AuditLive.Index.html b/LightningWeb.AuditLive.Index.html
index 249c7125a8..a4ab60c6e0 100644
--- a/LightningWeb.AuditLive.Index.html
+++ b/LightningWeb.AuditLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.AuditLive.Index — Lightning v0.7.1
+ LightningWeb.AuditLive.Index — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.AuditLive.Index
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.AuthProvidersLive.FormComponent.html b/LightningWeb.AuthProvidersLive.FormComponent.html
index f5108adba4..a29ae85e75 100644
--- a/LightningWeb.AuthProvidersLive.FormComponent.html
+++ b/LightningWeb.AuthProvidersLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.AuthProvidersLive.FormComponent — Lightning v0.7.1
+ LightningWeb.AuthProvidersLive.FormComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.AuthProvidersLive.FormComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.AuthProvidersLive.Index.html b/LightningWeb.AuthProvidersLive.Index.html
index ee6b643041..6e81a81b5f 100644
--- a/LightningWeb.AuthProvidersLive.Index.html
+++ b/LightningWeb.AuthProvidersLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.AuthProvidersLive.Index — Lightning v0.7.1
+ LightningWeb.AuthProvidersLive.Index — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.AuthProvidersLive.Index
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ChangesetJSON.html b/LightningWeb.ChangesetJSON.html
index 28a70fd6bc..bdb9d804d3 100644
--- a/LightningWeb.ChangesetJSON.html
+++ b/LightningWeb.ChangesetJSON.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ChangesetJSON — Lightning v0.7.1
+ LightningWeb.ChangesetJSON — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ChangesetJSON
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ChangesetView.html b/LightningWeb.ChangesetView.html
index 4527154c7e..231f716d04 100644
--- a/LightningWeb.ChangesetView.html
+++ b/LightningWeb.ChangesetView.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ChangesetView — Lightning v0.7.1
+ LightningWeb.ChangesetView — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ChangesetView
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.Components.Modal.html b/LightningWeb.Components.Modal.html
index 7ab37fa9a7..f8780ee631 100644
--- a/LightningWeb.Components.Modal.html
+++ b/LightningWeb.Components.Modal.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Components.Modal — Lightning v0.7.1
+ LightningWeb.Components.Modal — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.Components.Modal
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.CredentialLive.Edit.html b/LightningWeb.CredentialLive.Edit.html
index 3b0f2d69d0..65ac0cf7bf 100644
--- a/LightningWeb.CredentialLive.Edit.html
+++ b/LightningWeb.CredentialLive.Edit.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.Edit — Lightning v0.7.1
+ LightningWeb.CredentialLive.Edit — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.CredentialLive.Edit
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.CredentialLive.FormComponent.html b/LightningWeb.CredentialLive.FormComponent.html
index e98b0f10d4..85cd25d1d5 100644
--- a/LightningWeb.CredentialLive.FormComponent.html
+++ b/LightningWeb.CredentialLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.FormComponent — Lightning v0.7.1
+ LightningWeb.CredentialLive.FormComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.CredentialLive.FormComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.CredentialLive.GoogleSheetsComponent.html b/LightningWeb.CredentialLive.GoogleSheetsComponent.html
index 868f88fbc8..83996f26f3 100644
--- a/LightningWeb.CredentialLive.GoogleSheetsComponent.html
+++ b/LightningWeb.CredentialLive.GoogleSheetsComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.GoogleSheetsComponent — Lightning v0.7.1
+ LightningWeb.CredentialLive.GoogleSheetsComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.CredentialLive.GoogleSheetsComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.CredentialLive.Index.html b/LightningWeb.CredentialLive.Index.html
index 28f2d8dcaf..54de5d8428 100644
--- a/LightningWeb.CredentialLive.Index.html
+++ b/LightningWeb.CredentialLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.Index — Lightning v0.7.1
+ LightningWeb.CredentialLive.Index — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.CredentialLive.Index
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.CredentialLive.JsonSchemaBodyComponent.html b/LightningWeb.CredentialLive.JsonSchemaBodyComponent.html
index 4609e2f2b3..c893303648 100644
--- a/LightningWeb.CredentialLive.JsonSchemaBodyComponent.html
+++ b/LightningWeb.CredentialLive.JsonSchemaBodyComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.JsonSchemaBodyComponent — Lightning v0.7.1
+ LightningWeb.CredentialLive.JsonSchemaBodyComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.CredentialLive.JsonSchemaBodyComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.CredentialLive.RawBodyComponent.html b/LightningWeb.CredentialLive.RawBodyComponent.html
index 0b659284ba..13facd5af9 100644
--- a/LightningWeb.CredentialLive.RawBodyComponent.html
+++ b/LightningWeb.CredentialLive.RawBodyComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.RawBodyComponent — Lightning v0.7.1
+ LightningWeb.CredentialLive.RawBodyComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.CredentialLive.RawBodyComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.CredentialLive.TypePicker.html b/LightningWeb.CredentialLive.TypePicker.html
index b02b2a1abf..bada7dbaa0 100644
--- a/LightningWeb.CredentialLive.TypePicker.html
+++ b/LightningWeb.CredentialLive.TypePicker.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.CredentialLive.TypePicker — Lightning v0.7.1
+ LightningWeb.CredentialLive.TypePicker — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.CredentialLive.TypePicker
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.DataclipLive.Edit.html b/LightningWeb.DataclipLive.Edit.html
index 20d5d1a375..49da0a7f3a 100644
--- a/LightningWeb.DataclipLive.Edit.html
+++ b/LightningWeb.DataclipLive.Edit.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.DataclipLive.Edit — Lightning v0.7.1
+ LightningWeb.DataclipLive.Edit — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.DataclipLive.Edit
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.DataclipLive.FormComponent.html b/LightningWeb.DataclipLive.FormComponent.html
index f8c1d2874a..ea649fab58 100644
--- a/LightningWeb.DataclipLive.FormComponent.html
+++ b/LightningWeb.DataclipLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.DataclipLive.FormComponent — Lightning v0.7.1
+ LightningWeb.DataclipLive.FormComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.DataclipLive.FormComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.DataclipLive.Index.html b/LightningWeb.DataclipLive.Index.html
index 6446e3bcb1..fec2d39f2e 100644
--- a/LightningWeb.DataclipLive.Index.html
+++ b/LightningWeb.DataclipLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.DataclipLive.Index — Lightning v0.7.1
+ LightningWeb.DataclipLive.Index — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.DataclipLive.Index
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.DownloadsController.html b/LightningWeb.DownloadsController.html
index b4da23a7e5..2c7c087599 100644
--- a/LightningWeb.DownloadsController.html
+++ b/LightningWeb.DownloadsController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.DownloadsController — Lightning v0.7.1
+ LightningWeb.DownloadsController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.DownloadsController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.Endpoint.html b/LightningWeb.Endpoint.html
index 772c85c58d..c6e26c3202 100644
--- a/LightningWeb.Endpoint.html
+++ b/LightningWeb.Endpoint.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Endpoint — Lightning v0.7.1
+ LightningWeb.Endpoint — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.Endpoint
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ErrorView.html b/LightningWeb.ErrorView.html
index 1f73944f8b..ba25941db0 100644
--- a/LightningWeb.ErrorView.html
+++ b/LightningWeb.ErrorView.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ErrorView — Lightning v0.7.1
+ LightningWeb.ErrorView — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ErrorView
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.FallbackController.html b/LightningWeb.FallbackController.html
index 98d2131eac..144f4bba3a 100644
--- a/LightningWeb.FallbackController.html
+++ b/LightningWeb.FallbackController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.FallbackController — Lightning v0.7.1
+ LightningWeb.FallbackController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.FallbackController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.FirstSetupLive.Superuser.html b/LightningWeb.FirstSetupLive.Superuser.html
index 1086cd8f20..2251d3b3c6 100644
--- a/LightningWeb.FirstSetupLive.Superuser.html
+++ b/LightningWeb.FirstSetupLive.Superuser.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.FirstSetupLive.Superuser — Lightning v0.7.1
+ LightningWeb.FirstSetupLive.Superuser — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.FirstSetupLive.Superuser
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.FormHelpers.html b/LightningWeb.FormHelpers.html
index 61e9da7f98..1e15ccbb45 100644
--- a/LightningWeb.FormHelpers.html
+++ b/LightningWeb.FormHelpers.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.FormHelpers — Lightning v0.7.1
+ LightningWeb.FormHelpers — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.FormHelpers
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.Gettext.html b/LightningWeb.Gettext.html
index bdee0c5fdd..fc0f5ce7df 100644
--- a/LightningWeb.Gettext.html
+++ b/LightningWeb.Gettext.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Gettext — Lightning v0.7.1
+ LightningWeb.Gettext — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.Gettext
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -118,15 +118,15 @@
your module gains a set of macros for translations, for example:import LightningWeb.Gettext
# Simple translation
-gettext("Here is the string to translate")
+gettext("Here is the string to translate")
# Plural translation
-ngettext("Here is the string to translate",
+ngettext("Here is the string to translate",
"Here are the strings to translate",
- 3)
+ 3)
# Domain-based translation
-dgettext("errors", "Here is the error message to translate")
See the Gettext Docs for detailed usage.
+
dgettext("errors", "Here is the error message to translate")
See the Gettext Docs for detailed usage.
diff --git a/LightningWeb.HealthCheck.html b/LightningWeb.HealthCheck.html
index 19e44ddd08..646ff756f8 100644
--- a/LightningWeb.HealthCheck.html
+++ b/LightningWeb.HealthCheck.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.HealthCheck — Lightning v0.7.1
+ LightningWeb.HealthCheck — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.HealthCheck
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.Hooks.html b/LightningWeb.Hooks.html
index 17bb2a6bea..4665eb7b90 100644
--- a/LightningWeb.Hooks.html
+++ b/LightningWeb.Hooks.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Hooks — Lightning v0.7.1
+ LightningWeb.Hooks — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.Hooks
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.InitAssigns.html b/LightningWeb.InitAssigns.html
index 9813587c95..23e90ee664 100644
--- a/LightningWeb.InitAssigns.html
+++ b/LightningWeb.InitAssigns.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.InitAssigns — Lightning v0.7.1
+ LightningWeb.InitAssigns — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.InitAssigns
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.JobLive.AdaptorPicker.html b/LightningWeb.JobLive.AdaptorPicker.html
index 38c31b0dc0..9c58777703 100644
--- a/LightningWeb.JobLive.AdaptorPicker.html
+++ b/LightningWeb.JobLive.AdaptorPicker.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.AdaptorPicker — Lightning v0.7.1
+ LightningWeb.JobLive.AdaptorPicker — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.JobLive.AdaptorPicker
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.JobLive.CredentialPicker.html b/LightningWeb.JobLive.CredentialPicker.html
index 5f820cd071..63e83f9c5a 100644
--- a/LightningWeb.JobLive.CredentialPicker.html
+++ b/LightningWeb.JobLive.CredentialPicker.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.CredentialPicker — Lightning v0.7.1
+ LightningWeb.JobLive.CredentialPicker — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.JobLive.CredentialPicker
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.JobLive.CronSetupComponent.html b/LightningWeb.JobLive.CronSetupComponent.html
index 9059dbccbb..ae7b6a2d11 100644
--- a/LightningWeb.JobLive.CronSetupComponent.html
+++ b/LightningWeb.JobLive.CronSetupComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.CronSetupComponent — Lightning v0.7.1
+ LightningWeb.JobLive.CronSetupComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.JobLive.CronSetupComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.JobLive.JobBuilder.html b/LightningWeb.JobLive.JobBuilder.html
index aff8f782e3..45de62d210 100644
--- a/LightningWeb.JobLive.JobBuilder.html
+++ b/LightningWeb.JobLive.JobBuilder.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.JobBuilder — Lightning v0.7.1
+ LightningWeb.JobLive.JobBuilder — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.JobLive.JobBuilder
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.JobLive.JobBuilderComponents.html b/LightningWeb.JobLive.JobBuilderComponents.html
index 17990f2450..a5b7e4c72c 100644
--- a/LightningWeb.JobLive.JobBuilderComponents.html
+++ b/LightningWeb.JobLive.JobBuilderComponents.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.JobBuilderComponents — Lightning v0.7.1
+ LightningWeb.JobLive.JobBuilderComponents — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.JobLive.JobBuilderComponents
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.JobLive.ManualRunComponent.ManualWorkorder.html b/LightningWeb.JobLive.ManualRunComponent.ManualWorkorder.html
index 93a1a6ace7..b5590c0f76 100644
--- a/LightningWeb.JobLive.ManualRunComponent.ManualWorkorder.html
+++ b/LightningWeb.JobLive.ManualRunComponent.ManualWorkorder.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.ManualRunComponent.ManualWorkorder — Lightning v0.7.1
+ LightningWeb.JobLive.ManualRunComponent.ManualWorkorder — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.JobLive.ManualRunComponent.ManualWorkorder
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.JobLive.ManualRunComponent.html b/LightningWeb.JobLive.ManualRunComponent.html
index f89b356f6f..18854d155b 100644
--- a/LightningWeb.JobLive.ManualRunComponent.html
+++ b/LightningWeb.JobLive.ManualRunComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.JobLive.ManualRunComponent — Lightning v0.7.1
+ LightningWeb.JobLive.ManualRunComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.JobLive.ManualRunComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.LiveHelpers.html b/LightningWeb.LiveHelpers.html
index 657999e280..f3a56ecef7 100644
--- a/LightningWeb.LiveHelpers.html
+++ b/LightningWeb.LiveHelpers.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.LiveHelpers — Lightning v0.7.1
+ LightningWeb.LiveHelpers — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.LiveHelpers
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ModalPortal.html b/LightningWeb.ModalPortal.html
index 08069f0e44..0773bb8d82 100644
--- a/LightningWeb.ModalPortal.html
+++ b/LightningWeb.ModalPortal.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ModalPortal — Lightning v0.7.1
+ LightningWeb.ModalPortal — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ModalPortal
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.OauthCredentialHelper.html b/LightningWeb.OauthCredentialHelper.html
index b9b4ad17aa..b4831cc667 100644
--- a/LightningWeb.OauthCredentialHelper.html
+++ b/LightningWeb.OauthCredentialHelper.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.OauthCredentialHelper — Lightning v0.7.1
+ LightningWeb.OauthCredentialHelper — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.OauthCredentialHelper
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -240,10 +240,10 @@ broadcast_forward(subscription_id, mod, opt
Broadcast a message specifically for forwarding a message to a component.
It expects a subscription_id
, the module of the component and opts
being a keyword list containing an :id
key of the specific component.
See: Phoenix.LiveView.send_update/3
for more info.
A corresponding LiveView (that is subscribed) is expected to have a matching
-handle_info/2
that looks like this:
def handle_info({:forward, mod, opts}, socket) do
- send_update(mod, opts)
- {:noreply, socket}
-end
+handle_info/2
that looks like this:def handle_info({:forward, mod, opts}, socket) do
+ send_update(mod, opts)
+ {:noreply, socket}
+end
diff --git a/LightningWeb.OidcController.html b/LightningWeb.OidcController.html
index e34712955e..f52d703274 100644
--- a/LightningWeb.OidcController.html
+++ b/LightningWeb.OidcController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.OidcController — Lightning v0.7.1
+ LightningWeb.OidcController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.OidcController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.PageView.html b/LightningWeb.PageView.html
index 1566068bcb..3d56fba1cd 100644
--- a/LightningWeb.PageView.html
+++ b/LightningWeb.PageView.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.PageView — Lightning v0.7.1
+ LightningWeb.PageView — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.PageView
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.Pagination.html b/LightningWeb.Pagination.html
index 05dd27a3e2..01798bfbc1 100644
--- a/LightningWeb.Pagination.html
+++ b/LightningWeb.Pagination.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Pagination — Lightning v0.7.1
+ LightningWeb.Pagination — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.Pagination
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -243,13 +243,13 @@ raw_pagination_links(paginator, options \\
Returns the raw data in order to generate the proper HTML for pagination links. Data
is returned in a {text, page_number}
format where text
is intended to be the text
of the link and page_number
is the page it should go to. Defaults are already supplied
-and they are as follows:
[distance: 5, next: :next, previous: :previous, first: true, last: true, ellipsis: :ellipsis]
distance
must be a positive non-zero integer or an exception is raised. next
and previous
should be
+and they are as follows:
[distance: 5, next: :next, previous: :previous, first: true, last: true, ellipsis: :ellipsis]
distance
must be a positive non-zero integer or an exception is raised. next
and previous
should be
strings but can be anything you want as long as it is truthy, falsey values will remove
them from the output. first
and last
are only booleans, and they just include/remove
-their respective link from output. An example of the data returned:
iex> Scrivener.HTML.raw_pagination_links(%{total_pages: 10, page_number: 5})
-[{"<<", 4}, {1, 1}, {2, 2}, {3, 3}, {4, 4}, {5, 5}, {6, 6}, {7, 7}, {8, 8}, {9, 9}, {10, 10}, {">>", 6}]
-iex> Scrivener.HTML.raw_pagination_links(%{total_pages: 20, page_number: 10}, first: ["←"], last: ["→"])
-[{"<<", 9}, {["←"], 1}, {:ellipsis, {:safe, "…"}}, {5, 5}, {6, 6},{7, 7}, {8, 8}, {9, 9}, {10, 10}, {11, 11}, {12, 12}, {13, 13}, {14, 14},{15, 15}, {:ellipsis, {:safe, "…"}}, {["→"], 20}, {">>", 11}]
Simply loop and pattern match over each item and transform it to your custom HTML.
+their respective link from output. An example of the data returned:iex> Scrivener.HTML.raw_pagination_links(%{total_pages: 10, page_number: 5})
+[{"<<", 4}, {1, 1}, {2, 2}, {3, 3}, {4, 4}, {5, 5}, {6, 6}, {7, 7}, {8, 8}, {9, 9}, {10, 10}, {">>", 6}]
+iex> Scrivener.HTML.raw_pagination_links(%{total_pages: 20, page_number: 10}, first: ["←"], last: ["→"])
+[{"<<", 9}, {["←"], 1}, {:ellipsis, {:safe, "…"}}, {5, 5}, {6, 6},{7, 7}, {8, 8}, {9, 9}, {10, 10}, {11, 11}, {12, 12}, {13, 13}, {14, 14},{15, 15}, {:ellipsis, {:safe, "…"}}, {["→"], 20}, {">>", 11}]
Simply loop and pattern match over each item and transform it to your custom HTML.
diff --git a/LightningWeb.Plugs.FirstSetup.html b/LightningWeb.Plugs.FirstSetup.html
index 18b878d96a..9e742c3599 100644
--- a/LightningWeb.Plugs.FirstSetup.html
+++ b/LightningWeb.Plugs.FirstSetup.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Plugs.FirstSetup — Lightning v0.7.1
+ LightningWeb.Plugs.FirstSetup — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.Plugs.FirstSetup
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ProfileLive.Edit.html b/LightningWeb.ProfileLive.Edit.html
index 41b1dfd560..fe56004dac 100644
--- a/LightningWeb.ProfileLive.Edit.html
+++ b/LightningWeb.ProfileLive.Edit.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProfileLive.Edit — Lightning v0.7.1
+ LightningWeb.ProfileLive.Edit — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ProfileLive.Edit
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ProfileLive.FormComponent.html b/LightningWeb.ProfileLive.FormComponent.html
index aa244798f4..c7cd7e7de7 100644
--- a/LightningWeb.ProfileLive.FormComponent.html
+++ b/LightningWeb.ProfileLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProfileLive.FormComponent — Lightning v0.7.1
+ LightningWeb.ProfileLive.FormComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ProfileLive.FormComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ProfileLive.MfaComponent.html b/LightningWeb.ProfileLive.MfaComponent.html
index cc9eb14976..e8551ddd14 100644
--- a/LightningWeb.ProfileLive.MfaComponent.html
+++ b/LightningWeb.ProfileLive.MfaComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProfileLive.MfaComponent — Lightning v0.7.1
+ LightningWeb.ProfileLive.MfaComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ProfileLive.MfaComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ProjectLive.FormComponent.html b/LightningWeb.ProjectLive.FormComponent.html
index 65e4dbedc7..caf1404adc 100644
--- a/LightningWeb.ProjectLive.FormComponent.html
+++ b/LightningWeb.ProjectLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProjectLive.FormComponent — Lightning v0.7.1
+ LightningWeb.ProjectLive.FormComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ProjectLive.FormComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ProjectLive.Index.html b/LightningWeb.ProjectLive.Index.html
index ab547b0c64..c1588df29d 100644
--- a/LightningWeb.ProjectLive.Index.html
+++ b/LightningWeb.ProjectLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProjectLive.Index — Lightning v0.7.1
+ LightningWeb.ProjectLive.Index — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ProjectLive.Index
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ProjectLive.MFARequired.html b/LightningWeb.ProjectLive.MFARequired.html
index daf8f23be6..e0858f5f32 100644
--- a/LightningWeb.ProjectLive.MFARequired.html
+++ b/LightningWeb.ProjectLive.MFARequired.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProjectLive.MFARequired — Lightning v0.7.1
+ LightningWeb.ProjectLive.MFARequired — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ProjectLive.MFARequired
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.ProjectLive.Settings.html b/LightningWeb.ProjectLive.Settings.html
index 7dac9c90a7..42a9fe8df0 100644
--- a/LightningWeb.ProjectLive.Settings.html
+++ b/LightningWeb.ProjectLive.Settings.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.ProjectLive.Settings — Lightning v0.7.1
+ LightningWeb.ProjectLive.Settings — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.ProjectLive.Settings
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.RouteHelpers.html b/LightningWeb.RouteHelpers.html
index 91caffb855..9d1b2af88b 100644
--- a/LightningWeb.RouteHelpers.html
+++ b/LightningWeb.RouteHelpers.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RouteHelpers — Lightning v0.7.1
+ LightningWeb.RouteHelpers — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.RouteHelpers
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.Router.html b/LightningWeb.Router.html
index 4a9dfa12f8..fb23591921 100644
--- a/LightningWeb.Router.html
+++ b/LightningWeb.Router.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Router — Lightning v0.7.1
+ LightningWeb.Router — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.Router
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.RunLive.Index.html b/LightningWeb.RunLive.Index.html
index a200e653ef..3a5e70a249 100644
--- a/LightningWeb.RunLive.Index.html
+++ b/LightningWeb.RunLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RunLive.Index — Lightning v0.7.1
+ LightningWeb.RunLive.Index — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.RunLive.Index
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.RunLive.RerunJobComponent.html b/LightningWeb.RunLive.RerunJobComponent.html
index a4bab3945c..475f629013 100644
--- a/LightningWeb.RunLive.RerunJobComponent.html
+++ b/LightningWeb.RunLive.RerunJobComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RunLive.RerunJobComponent — Lightning v0.7.1
+ LightningWeb.RunLive.RerunJobComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.RunLive.RerunJobComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.RunLive.RunViewerLive.html b/LightningWeb.RunLive.RunViewerLive.html
index 74bdc3e10a..5bf5cef4d1 100644
--- a/LightningWeb.RunLive.RunViewerLive.html
+++ b/LightningWeb.RunLive.RunViewerLive.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RunLive.RunViewerLive — Lightning v0.7.1
+ LightningWeb.RunLive.RunViewerLive — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.RunLive.RunViewerLive
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.RunLive.Show.html b/LightningWeb.RunLive.Show.html
index 3f083129d8..4bd89efe78 100644
--- a/LightningWeb.RunLive.Show.html
+++ b/LightningWeb.RunLive.Show.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RunLive.Show — Lightning v0.7.1
+ LightningWeb.RunLive.Show — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.RunLive.Show
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.RunLive.WorkOrderComponent.html b/LightningWeb.RunLive.WorkOrderComponent.html
index 73d85131b1..cae3ebfbeb 100644
--- a/LightningWeb.RunLive.WorkOrderComponent.html
+++ b/LightningWeb.RunLive.WorkOrderComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.RunLive.WorkOrderComponent — Lightning v0.7.1
+ LightningWeb.RunLive.WorkOrderComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.RunLive.WorkOrderComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.Telemetry.html b/LightningWeb.Telemetry.html
index 37be2992ec..014e716405 100644
--- a/LightningWeb.Telemetry.html
+++ b/LightningWeb.Telemetry.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.Telemetry — Lightning v0.7.1
+ LightningWeb.Telemetry — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.Telemetry
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.TokensLive.Index.html b/LightningWeb.TokensLive.Index.html
index d9aaa1c602..42640ed31c 100644
--- a/LightningWeb.TokensLive.Index.html
+++ b/LightningWeb.TokensLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.TokensLive.Index — Lightning v0.7.1
+ LightningWeb.TokensLive.Index — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.TokensLive.Index
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.UserAuth.html b/LightningWeb.UserAuth.html
index 9d9b9d93e6..69cf1cd91b 100644
--- a/LightningWeb.UserAuth.html
+++ b/LightningWeb.UserAuth.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserAuth — Lightning v0.7.1
+ LightningWeb.UserAuth — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.UserAuth
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.UserConfirmationController.html b/LightningWeb.UserConfirmationController.html
index 2ce261b9ba..620ae5a16d 100644
--- a/LightningWeb.UserConfirmationController.html
+++ b/LightningWeb.UserConfirmationController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserConfirmationController — Lightning v0.7.1
+ LightningWeb.UserConfirmationController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.UserConfirmationController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.UserLive.Edit.html b/LightningWeb.UserLive.Edit.html
index 0087e2d22e..edbd25b92c 100644
--- a/LightningWeb.UserLive.Edit.html
+++ b/LightningWeb.UserLive.Edit.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserLive.Edit — Lightning v0.7.1
+ LightningWeb.UserLive.Edit — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.UserLive.Edit
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.UserLive.FormComponent.html b/LightningWeb.UserLive.FormComponent.html
index 4b3400e453..c0d912fd5e 100644
--- a/LightningWeb.UserLive.FormComponent.html
+++ b/LightningWeb.UserLive.FormComponent.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserLive.FormComponent — Lightning v0.7.1
+ LightningWeb.UserLive.FormComponent — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.UserLive.FormComponent
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.UserLive.Index.html b/LightningWeb.UserLive.Index.html
index 93d78fbb69..33e2c7b48b 100644
--- a/LightningWeb.UserLive.Index.html
+++ b/LightningWeb.UserLive.Index.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserLive.Index — Lightning v0.7.1
+ LightningWeb.UserLive.Index — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.UserLive.Index
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.UserRegistrationController.html b/LightningWeb.UserRegistrationController.html
index 76e88b8222..3a32c86791 100644
--- a/LightningWeb.UserRegistrationController.html
+++ b/LightningWeb.UserRegistrationController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserRegistrationController — Lightning v0.7.1
+ LightningWeb.UserRegistrationController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.UserRegistrationController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.UserResetPasswordController.html b/LightningWeb.UserResetPasswordController.html
index 122a841269..5777fb5d58 100644
--- a/LightningWeb.UserResetPasswordController.html
+++ b/LightningWeb.UserResetPasswordController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserResetPasswordController — Lightning v0.7.1
+ LightningWeb.UserResetPasswordController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.UserResetPasswordController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.UserSessionController.html b/LightningWeb.UserSessionController.html
index 0bbcc2c9ab..9e98bd20d3 100644
--- a/LightningWeb.UserSessionController.html
+++ b/LightningWeb.UserSessionController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserSessionController — Lightning v0.7.1
+ LightningWeb.UserSessionController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.UserSessionController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.UserTOTPController.html b/LightningWeb.UserTOTPController.html
index f0f22bab75..0c709db059 100644
--- a/LightningWeb.UserTOTPController.html
+++ b/LightningWeb.UserTOTPController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.UserTOTPController — Lightning v0.7.1
+ LightningWeb.UserTOTPController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.UserTOTPController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.WebhooksController.html b/LightningWeb.WebhooksController.html
index 0b288cb383..e2a2beb422 100644
--- a/LightningWeb.WebhooksController.html
+++ b/LightningWeb.WebhooksController.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WebhooksController — Lightning v0.7.1
+ LightningWeb.WebhooksController — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.WebhooksController
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.WorkflowLive.EditorPane.html b/LightningWeb.WorkflowLive.EditorPane.html
index ff402359d1..c067d9ec91 100644
--- a/LightningWeb.WorkflowLive.EditorPane.html
+++ b/LightningWeb.WorkflowLive.EditorPane.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WorkflowLive.EditorPane — Lightning v0.7.1
+ LightningWeb.WorkflowLive.EditorPane — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.WorkflowLive.EditorPane
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.WorkflowLive.JobView.html b/LightningWeb.WorkflowLive.JobView.html
index 6c610134ad..65a1774b61 100644
--- a/LightningWeb.WorkflowLive.JobView.html
+++ b/LightningWeb.WorkflowLive.JobView.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WorkflowLive.JobView — Lightning v0.7.1
+ LightningWeb.WorkflowLive.JobView — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.WorkflowLive.JobView
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.WorkflowNewLive.WorkflowParams.html b/LightningWeb.WorkflowNewLive.WorkflowParams.html
index dfec381471..e55a112b1d 100644
--- a/LightningWeb.WorkflowNewLive.WorkflowParams.html
+++ b/LightningWeb.WorkflowNewLive.WorkflowParams.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb.WorkflowNewLive.WorkflowParams — Lightning v0.7.1
+ LightningWeb.WorkflowNewLive.WorkflowParams — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb.WorkflowNewLive.WorkflowParams
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/LightningWeb.html b/LightningWeb.html
index 5295eb4aef..ffb1d389c9 100644
--- a/LightningWeb.html
+++ b/LightningWeb.html
@@ -5,15 +5,15 @@
-
+
- LightningWeb — Lightning v0.7.1
+ LightningWeb — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
LightningWeb
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Mix.Tasks.Lightning.GenEncryptionKey.html b/Mix.Tasks.Lightning.GenEncryptionKey.html
index 0983923f2e..d490b74afb 100644
--- a/Mix.Tasks.Lightning.GenEncryptionKey.html
+++ b/Mix.Tasks.Lightning.GenEncryptionKey.html
@@ -5,15 +5,15 @@
-
+
- mix lightning.gen_encryption_key — Lightning v0.7.1
+ mix lightning.gen_encryption_key — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
mix lightning.gen_encryption_key
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Mix.Tasks.Lightning.InstallRuntime.html b/Mix.Tasks.Lightning.InstallRuntime.html
index 0b4ae1ca15..0a1e96cbb7 100644
--- a/Mix.Tasks.Lightning.InstallRuntime.html
+++ b/Mix.Tasks.Lightning.InstallRuntime.html
@@ -5,15 +5,15 @@
-
+
- mix lightning.install_runtime — Lightning v0.7.1
+ mix lightning.install_runtime — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
mix lightning.install_runtime
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Mix.Tasks.Lightning.InstallSchemas.html b/Mix.Tasks.Lightning.InstallSchemas.html
index 26aa468b97..29fb72d0d1 100644
--- a/Mix.Tasks.Lightning.InstallSchemas.html
+++ b/Mix.Tasks.Lightning.InstallSchemas.html
@@ -5,15 +5,15 @@
-
+
- mix lightning.install_schemas — Lightning v0.7.1
+ mix lightning.install_schemas — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
mix lightning.install_schemas
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
@@ -1797,14 +1797,14 @@ request(request)
Examples
-
request = %HTTPoison.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(request)
@@ -1862,7 +1862,7 @@ 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"}])
diff --git a/ObanPruner.html b/ObanPruner.html
index 5cf40df701..2f119c713b 100644
--- a/ObanPruner.html
+++ b/ObanPruner.html
@@ -5,15 +5,15 @@
-
+
- ObanPruner — Lightning v0.7.1
+ ObanPruner — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
ObanPruner
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/Storybook.Root.html b/Storybook.Root.html
index 89d5e64ac3..71bb82fbb0 100644
--- a/Storybook.Root.html
+++ b/Storybook.Root.html
@@ -5,15 +5,15 @@
-
+
- Storybook.Root — Lightning v0.7.1
+ Storybook.Root — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -108,7 +108,7 @@
Storybook.Root
- (Lightning v0.7.1)
+ (Lightning v0.7.2)
diff --git a/api-reference.html b/api-reference.html
index 117dec9be3..2fda320fb2 100644
--- a/api-reference.html
+++ b/api-reference.html
@@ -5,15 +5,15 @@
-
+
- API Reference — Lightning v0.7.1
+ API Reference — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -103,7 +103,7 @@
- API Reference Lightning v0.7.1
+ API Reference Lightning v0.7.2
diff --git a/benchmarking.html b/benchmarking.html
index 3c16cc0fd3..d30070c83f 100644
--- a/benchmarking.html
+++ b/benchmarking.html
@@ -5,15 +5,15 @@
-
+
- Benchmarking — Lightning v0.7.1
+ Benchmarking — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
diff --git a/changelog.html b/changelog.html
index 9db7f44c00..6b5b91df5d 100644
--- a/changelog.html
+++ b/changelog.html
@@ -5,15 +5,15 @@
-
+
- Changelog — Lightning v0.7.1
+ Changelog — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -137,11 +137,11 @@
Fixed
-
-
- v0-7-1-2023-08-04
+
+
+ v0-7-2-2023-08-10
- [v0.7.1] - 2023-08-04
+ [v0.7.2] - 2023-08-10
@@ -161,11 +161,11 @@
Fixed
-- Fixed flickery icons on new workflow job creation.
-
- v0-7-0-2023-08-04
+- NodeJs security patch 1009
+
+ v0-7-1-2023-08-04
- [v0.7.0] - 2023-08-04
+ [v0.7.1] - 2023-08-04
@@ -173,33 +173,23 @@
Added
-- Project owners can require MFA for their users
-892
+
changed-2
Changed
-- Moved to Elixir 1.15 and Erlang 26.0.2 to sort our an annoying ElixirLS issue
-that was slowing down our engineers.
- Update Debian base to use bookworm (Debian 12) for our Docker images
- Change new credential modal to take up less space on the screen
-#931
- Placeholder nodes are now purely handled client-side
+
fixed-2
Fixed
-- Fix issue creating a new credential from the Job editor where the new
-credential was not being set on the job.
-#951
- Fix issue where checking a credential type radio button shows as unchecked on
-first click. #976
- Return the pre-filled workflow names
-#971
- Fix version reporting and external reset_demo() call via
-Application.spec()#1010
- Fixed issue where entering a placeholder name through the form would result an
-in unsaveable workflow
-#1001
- Ensure the DownloadController checks for authentication and authorisation.
-
- v0-7-0-pre5-2023-07-28
+- Fixed flickery icons on new workflow job creation.
+
+ v0-7-0-2023-08-04
- [v0.7.0-pre5] - 2023-07-28
+ [v0.7.0] - 2023-08-04
@@ -207,24 +197,33 @@
Added
-
+- Project owners can require MFA for their users
+892
changed-3
Changed
-- Unless otherwise specified, only show workorders with activity in last 14 days
-#968
+- Moved to Elixir 1.15 and Erlang 26.0.2 to sort our an annoying ElixirLS issue
+that was slowing down our engineers.
- Update Debian base to use bookworm (Debian 12) for our Docker images
- Change new credential modal to take up less space on the screen
+#931
- Placeholder nodes are now purely handled client-side
fixed-3
Fixed
-
-
- v0-7-0-pre4-2023-07-27
+- Fix issue creating a new credential from the Job editor where the new
+credential was not being set on the job.
+#951
- Fix issue where checking a credential type radio button shows as unchecked on
+first click. #976
- Return the pre-filled workflow names
+#971
- Fix version reporting and external reset_demo() call via
+Application.spec()#1010
- Fixed issue where entering a placeholder name through the form would result an
+in unsaveable workflow
+#1001
- Ensure the DownloadController checks for authentication and authorisation.
+
+ v0-7-0-pre5-2023-07-28
- [v0.7.0-pre4] - 2023-07-27
+ [v0.7.0-pre5] - 2023-07-28
@@ -238,18 +237,18 @@
Changed
-- Don't add cast fragments if the search_term is nil
+
- Unless otherwise specified, only show workorders with activity in last 14 days
#968
fixed-4
Fixed
-
-
- v0-7-0-pre3-2023-07-26
+
+
+ v0-7-0-pre4-2023-07-27
- [v0.7.0-pre3] - 2023-07-26
+ [v0.7.0-pre4] - 2023-07-27
@@ -263,12 +262,37 @@
Changed
-
+- Don't add cast fragments if the search_term is nil
+#968
fixed-5
Fixed
+
+
+ v0-7-0-pre3-2023-07-26
+
+ [v0.7.0-pre3] - 2023-07-26
+
+
+
+ added-6
+
+ Added
+
+
+
+ changed-6
+
+ Changed
+
+
+
+ fixed-6
+
+ Fixed
+
- Fixed an issue with newly created edges that prevented downstream jobs
977
@@ -277,9 +301,9 @@
[v0.7.0-pre2] - 2023-07-26
Note that this is a pre-release with a couple of known bugs that are tracked in
-the Nodes and Edges epic.
-
- added-6
+the Nodes and Edges epic.
+
+ added-7
Added
@@ -287,18 +311,18 @@
Authy, Google Authenticator etc
#890
- Write/run sql script to convert triggers
#875
- Export projects as
.yaml
via UI
-#249
-
- changed-6
+#249
+
+ changed-7
Changed
- In
v0.7.0
we change the underlying workflow building and execution
infrastructure to align with a standard "nodes and edges" design for directed
acyclic graphs (DAGs). Make sure to run the migrations!
-793
-
- fixed-6
+793
+
+ fixed-7
Fixed
@@ -311,23 +335,23 @@
[0.6.7] - 2023-07-13
-
-
- added-7
+
+
+ added-8
Added
- Add feature to bulk rerun work orders from a specific step in their workflow;
e.g., "rerun these 50 work orders, starting each at step 4."
-#906
-
- changed-7
+#906
+
+ changed-8
Changed
-
-
- fixed-7
+
+
+ fixed-8
Fixed
@@ -338,16 +362,16 @@
[0.6.6] - 2023-06-30
-
-
- added-8
+
+
+ added-9
Added
- Add public API token to the demo site setup script
- Check and renew OAuth credentials when running a job
-#646
-
- fixed-8
+#646
+
+ fixed-9
Fixed
@@ -360,17 +384,17 @@
[0.6.5] - 2023-06-22
-
-
- added-9
+
+
+ added-10
Added
- Ability to rerun workorders from start by selecting one of more of them from
the History page and clicking the "Rerun" button.
-#659
-
- fixed-9
+#659
+
+ fixed-10
Fixed
@@ -381,9 +405,9 @@
[0.6.3] - 2023-06-15
-
-
- fixed-10
+
+
+ fixed-11
Fixed
@@ -394,9 +418,9 @@
[0.6.2] - 2023-06-09
-
-
- fixed-11
+
+
+ fixed-12
Fixed
@@ -407,9 +431,9 @@
[0.6.1] - 2023-06-08
-
-
- fixed-12
+
+
+ fixed-13
Fixed
@@ -421,9 +445,9 @@
[0.6.0]- 2023-04-12
-
-
- added-10
+
+
+ added-11
Added
@@ -432,16 +456,16 @@
workflows See: PROVISIONING.md
#641
Add ability for a superuser
to schedule deletion, cancel deletion, and
delete projects #757 Add ability for a project owner
to schedule deletion, cancel deletion, and
-delete projects #746
-
- changed-8
+delete projects #746
+
+ changed-9
Changed
- Ability to store run log lines as rows in a separate table
-#514
-
- fixed-13
+#514
+
+ fixed-14
Fixed
@@ -455,9 +479,9 @@
[0.5.2]
-
-
- added-11
+
+
+ added-12
Added
@@ -465,16 +489,16 @@
implementation #794
Stamped credential_id
on run directly for easier auditing of the history
interface. Admins can now see which credential was used to run a run.
#800 Better errors when using magic functions: "no magic yet" and "check
-credential" #812
-
- changed-9
+credential" #812
+
+ changed-10
Changed
- The
delete-project
function now delete all associated activities
-#759
-
- fixed-14
+#759
+
+ fixed-15
Fixed
@@ -484,9 +508,9 @@
[0.5.1] - 2023-04-12
-
-
- added-12
+
+
+ added-13
Added
@@ -496,16 +520,16 @@
save new or updated jobs job panel will not close. (Click elsewhere in the
canvas or click the "Close" button to close.)
#568
Add filtered search params to the history page URL
-#660
-
- changed-10
+#660
+
+ changed-11
Changed
- The secret scrubber now ignores booleans
-690
-
- fixed-15
+690
+
+ fixed-16
Fixed
@@ -519,9 +543,9 @@
[0.5.0] - 2023-04-03
-
-
- added-13
+
+
+ added-14
Added
@@ -532,9 +556,9 @@
and fill in their orgUnit codes upon
enter.)670
A "metadata explorer" to browse actual system metadata for connected
instances. 658 Resizable job builder panel for the main canvas/workflow view.
-681
-
- changed-11
+681
+
+ changed-12
Changed
@@ -546,9 +570,9 @@
variable to 0
will make automatic purging never occur but will still make
"deleted" projects and users unavailable. This has been requested by certain
organizations that must retain audit logs in a Lightning instance.
-758
-
- fixed-16
+758
+
+ fixed-17
Fixed
@@ -559,25 +583,25 @@
[0.4.8] - 2023-03-29
-
-
- added-14
+
+
+ added-15
Added
- Added a test harness for monitoring critical parts of the app using Telemetry
-#654
-
- changed-12
+#654
+
+ changed-13
Changed
- Set log level to
info
for runs. Most of the debug
logging is useful for
the CLI, but not for Lightning. In the future the log level will be
configurable at instance > project > job level by the superuser
and any
-project admin
. - Renamed license file so that automagic github icon is less confusing
-
- fixed-17
+project admin
.Renamed license file so that automagic github icon is less confusing
+
+ fixed-18
Fixed
@@ -591,9 +615,9 @@
[0.4.6] - 2023-03-23
-
-
- added-15
+
+
+ added-16
Added
@@ -603,17 +627,17 @@
OpenHIE demo workflow 448
Phoenix Storybook for improved component development Load test for webhook endpoint performance
#645 Notify user via email when they're added to a project
#306 Added notify user via email when their account is created
-#307
-
- changed-13
+#307
+
+ changed-14
Changed
- Improved errors when decoding encryption keys for use with Cloak.
#684
- Allow users to run ANY job with a custom input.
-#629
-
- fixed-18
+#629
+
+ fixed-19
Fixed
@@ -624,23 +648,23 @@
[0.4.4] - 2023-03-10
-
-
- added-16
+
+
+ added-17
Added
-
- changed-14
+#585
+
+ changed-15
Changed
-
-
- fixed-19
+
+
+ fixed-20
Fixed
@@ -650,22 +674,22 @@
[0.4.3] - 2023-03-06
-
-
- added-17
+
+
+ added-18
Added
- Tooltips on Job Builder panel
-#650
-
- changed-15
+#650
+
+ changed-16
Changed
-- Upgraded to Phoenix 1.7 (3945856)
-
- fixed-20
+- Upgraded to Phoenix 1.7 (3945856)
+
+ fixed-21
Fixed
@@ -675,9 +699,9 @@
[0.4.2] - 2023-02-24
-
-
- added-18
+
+
+ added-19
Added
@@ -686,16 +710,16 @@
location for credential schemas
#604
Added the ability to configure Google Sheets credentials
#536 Function to import a project
-#574
-
- changed-16
+#574
+
+ changed-17
Changed
- Users cannot register if they have not selected the terms and conditions
-#531
-
- fixed-21
+#531
+
+ fixed-22
Fixed
@@ -706,26 +730,26 @@
[0.4.0] - 2023-02-08
-
-
- added-19
+
+
+ added-20
Added
- Added a Delete job button in Inspector
- Filter workflow runs by text/value in run logs or input body
- Drop "configuration" key from Run output dataclips after completion
- Ability to 'rerun' a run from the Run list
- Attempts and Runs update themselves in the Runs list
- Configure a project and workflow for a new registering user
- Run a job with a custom input
- Added plausible analytics
- Allow user to click on Webhook Trigger Node to copy webhook URL on workflow
diagram
- Allow any user to delete a credential that they own
- Create any credential through a form except for OAuth
- Refit all diagram nodes on browser and container resize
- Enable distributed Erlang, allowing any number of redundant Lightning nodes to
-communicate with each other.
- Users can set up realtime alerts for a project
-
- changed-17
+communicate with each other.Users can set up realtime alerts for a project
+
+ changed-18
Changed
- Better code-assist and intelliense in the Job Editor
- Updated @openfn/workflow-diagram to 0.4.0
- Make plus button part of job nodes in Workflow Diagram
- Updated @openfn/adaptor-docs to 0.0.5
- Updated @openfn/describe-package to 0.0.10
- Create an follow a manual Run from the Job Inspector
- View all workflows in a project on the workflows index page
- Move @openfn/workflow-diagram into the application, the NPM module is now
deprecated.
- Remove workflow name from first node
- Move the used parts of
@openfn/engine
into the application. - [BREAKING CHANGE] Ported
mix openfn.install.runtime
into application, use
mix lightning.install_runtime
. - [BREAKING CHANGE] Introduced
@openfn/cli
as the new runtime for Jobs - Rename a workflow through the page heading
- Hide the dataclips tab for beta
- Make adaptor default to common@latest
- Remove jobs list page
- Better error handling in the docs panel
- Disable credential ownership transfer in dev and prod environments
- Add project settings page
- Change Workorder filters to apply to the aggregate state of the workorder and
-not the run directly
- Enable jobs by default
- Set log level to info
- Add Beta checkbox to register page
- User roles and permissions
-
- fixed-22
+not the run directlyEnable jobs by default Set log level to info Add Beta checkbox to register page User roles and permissions
+
+ fixed-23
Fixed
@@ -735,9 +759,9 @@
[0.3.1] - 2022-11-22
-
-
- fixed-23
+
+
+ fixed-24
Fixed
@@ -748,15 +772,15 @@
[0.3.0] - 2022-11-21
-
-
- added-20
+
+
+ added-21
Added
-- Add seed data for demo site
- Create adaptor credentials through a form
- Configure cron expressions through a form
- View runs grouped by workorders and attempts
- Run an existing Job with any dataclip uuid from the Job form
-
- changed-18
+- Add seed data for demo site
- Create adaptor credentials through a form
- Configure cron expressions through a form
- View runs grouped by workorders and attempts
- Run an existing Job with any dataclip uuid from the Job form
+
+ changed-19
Changed
@@ -768,9 +792,9 @@
[0.2.0] - 2022-09-12
-
-
- changed-19
+
+
+ changed-20
Changed
@@ -787,9 +811,9 @@
[0.1.13] - 2022-08-29
-
-
- added-21
+
+
+ added-22
Added
@@ -797,9 +821,9 @@
this is just for authenticating, not yet for creating new accounts via OIDC)
Add Monaco editor to the step/job panel Allow users to delete their own accounts. Schedule their user and credentials
data for deletion when they do. Allow superusers to delete a user account. Schedule the user's credentials and
user data for deletion when they do. If a user is scheduled for deletion, disable their account and prevent them
-from logging in. The 'User profile' and 'Credentials' page now have a sidebar menu
-
- changed-20
+from logging in.The 'User profile' and 'Credentials' page now have a sidebar menu
+
+ changed-21
Changed
@@ -810,9 +834,9 @@
[0.1.12] - 2022-08-15
-
-
- added-22
+
+
+ added-23
Added
@@ -821,9 +845,9 @@
e.g., language-dhis2
provides a single schema which defines the required
attributes for state.configuration
, while language-common
provides multiple
credential schemas like "oauth" or "basic auth" which define attributes for
-state.configuration
and which might be used by lots of different jobs.)
-
- fixed-24
+state.configuration
and which might be used by lots of different jobs.)
+
+ fixed-25
Fixed
@@ -833,9 +857,9 @@
[0.1.11] - 2022-08-05
-
-
- fixed-25
+
+
+ fixed-26
Fixed
@@ -846,15 +870,15 @@
[0.1.10] - 2022-08-05
-
-
- added-23
+
+
+ added-24
Added
-- Credential auditing
- Build/version information display for easier debugging
-
- fixed-26
+- Credential auditing
- Build/version information display for easier debugging
+
+ fixed-27
Fixed
@@ -864,23 +888,23 @@
[0.1.9] - 2022-07-27
-
-
- added-24
+
+
+ added-25
Added
- Navigate to user profile or credentials page and log out through the user icon
dropdown
- Create and edit dataclips
- Add a production tag to credentials
- View a dropdown of operations and their description for the language-common
-
v2.0.0-rc2
adaptor (this pattern to be rolled out across adaptors)
-
- changed-21
+v2.0.0-rc2
adaptor (this pattern to be rolled out across adaptors)
+
+ changed-22
Changed
-- Navigate between projects through a project picker on the navbar
-
- fixed-27
+- Navigate between projects through a project picker on the navbar
+
+ fixed-28
Fixed
@@ -896,9 +920,9 @@
[0.1.7] - 2022-06-24
-
-
- added-25
+
+
+ added-26
Added
@@ -908,17 +932,17 @@
[0.1.6] - 2022-06-07
-
-
- added-26
+
+
+ added-27
Added
Register, log in and log out of an account
Allow superusers and admin users to create projects
Allow admin users to create or disable a user’s account
Allow superusers for local deployments to create users and give them access to
project spaces
Create and edit a job with a webhook, flow/fail or cron trigger
Create and edit credentials for a job
Copy a job's webhook URL
View all workflows in a project visually
Deploy lightning locally with Docker
Enable a job to automatically process incoming requests
Run a job with a webhook or flow/fail trigger
View job runs along with their logs, exit code, start and end time
View data clips that have initiated job runs (http requests for webhooks, run
-results)
-
- changed-22
+results)
+
+ changed-23
Changed
diff --git a/deployment.html b/deployment.html
index df01692d64..4037f57fe8 100644
--- a/deployment.html
+++ b/deployment.html
@@ -5,15 +5,15 @@
-
+
- Deployment — Lightning v0.7.1
+ Deployment — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
diff --git a/dist/search_items-95D23B54.js b/dist/search_items-A12C05D1.js
similarity index 92%
rename from dist/search_items-95D23B54.js
rename to dist/search_items-A12C05D1.js
index ff27a577ca..759a60fb19 100644
--- a/dist/search_items-95D23B54.js
+++ b/dist/search_items-A12C05D1.js
@@ -1 +1 @@
-searchNodes=[{"type":"module","title":"Lightning","doc":"Lightning keeps the contexts that define your domain and business logic. Contexts are also responsible for managing your data, regardless if it comes from the database, an external API or others.","ref":"Lightning.html"},{"type":"module","title":"Lightning.AdaptorRegistry","doc":"Registry process to query and maintain a list of adaptors available for writing jobs. Currently it queries NPM for all modules in the @openfn organization and filters out modules that are known not to be adaptors. Usage # Starting the process AdaptorRegistry . start_link ( ) # Getting a list of all adaptors Lightning.AdaptorRegistry.AdaptorRegistry . all ( ) Caching By default the results are cached to disk, and will be reused every start. In order to disable or configure caching pass see: start_link/1 . The process uses :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. Timeouts There is a 'general' timeout of 30s, this is used for GenServer calls like all/1 and also internally when the modules are being queried. NPM can be extremely fast to respond if the package is cached on their side, but can take a couple of seconds if not cached.","ref":"Lightning.AdaptorRegistry.html"},{"type":"function","title":"Lightning.AdaptorRegistry.all/1","doc":"Get the current in-process list of adaptors. This call will wait behind the :continue message when the process starts up, so it may take a while the first time it is called (and the list hasn't been fetched yet).","ref":"Lightning.AdaptorRegistry.html#all/1"},{"type":"function","title":"Lightning.AdaptorRegistry.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.AdaptorRegistry.html#child_spec/1"},{"type":"function","title":"Lightning.AdaptorRegistry.fetch/0","doc":"Fetch a list of packages for the @openfn organisation","ref":"Lightning.AdaptorRegistry.html#fetch/0"},{"type":"function","title":"Lightning.AdaptorRegistry.latest_for/2","doc":"Get a latest version for a given module.","ref":"Lightning.AdaptorRegistry.html#latest_for/2"},{"type":"function","title":"Lightning.AdaptorRegistry.resolve_adaptor/1","doc":"","ref":"Lightning.AdaptorRegistry.html#resolve_adaptor/1"},{"type":"function","title":"Lightning.AdaptorRegistry.resolve_package_name/1","doc":"Destructures an NPM style package name into module name and version. Example 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 }","ref":"Lightning.AdaptorRegistry.html#resolve_package_name/1"},{"type":"function","title":"Lightning.AdaptorRegistry.resolve_package_name!/1","doc":"Same as resolve_package_name/1 except will throw an exception if a package name cannot be matched.","ref":"Lightning.AdaptorRegistry.html#resolve_package_name!/1"},{"type":"function","title":"Lightning.AdaptorRegistry.start_link/1","doc":"Starts the AdaptorRegistry Options :use_cache (defaults to false) - stores the last set of results on disk and uses the cached file for every subsequent start. It can either be a boolean, or a string - the latter being a file path to set where the cache file is located. :name (defaults to AdaptorRegistry) - the name of the process, useful for testing and/or running multiple versions of the registry","ref":"Lightning.AdaptorRegistry.html#start_link/1"},{"type":"function","title":"Lightning.AdaptorRegistry.versions_for/2","doc":"Get a list of versions for a given module.","ref":"Lightning.AdaptorRegistry.html#versions_for/2"},{"type":"module","title":"Lightning.AdaptorRegistry.Npm","doc":"NPM API functions","ref":"Lightning.AdaptorRegistry.Npm.html"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.delete/3","doc":"Issues a DELETE request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#delete/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.delete!/3","doc":"Issues a DELETE request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#delete!/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.get/3","doc":"Issues a GET request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#get/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.get!/3","doc":"Issues a GET request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#get!/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.head/3","doc":"Issues a HEAD request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#head/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.head!/3","doc":"Issues a HEAD request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#head!/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.options/3","doc":"Issues an OPTIONS request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#options/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.options!/3","doc":"Issues a OPTIONS request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#options!/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.package_detail/1","doc":"Retrieve all details for an NPM package","ref":"Lightning.AdaptorRegistry.Npm.html#package_detail/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.patch/4","doc":"Issues a PATCH request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#patch/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.patch!/4","doc":"Issues a PATCH request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#patch!/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.post/4","doc":"Issues a POST request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#post/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.post!/4","doc":"Issues a POST request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#post!/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_headers/1","doc":"Callback implementation for HTTPoison.Base.process_headers/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_headers/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_request_body/1","doc":"Callback implementation for HTTPoison.Base.process_request_body/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_request_body/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_request_headers/1","doc":"Callback implementation for HTTPoison.Base.process_request_headers/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_request_headers/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_request_options/1","doc":"Callback implementation for HTTPoison.Base.process_request_options/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_request_options/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_request_params/1","doc":"Callback implementation for HTTPoison.Base.process_request_params/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_request_params/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_response/1","doc":"Callback implementation for HTTPoison.Base.process_response/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_response/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_response_chunk/1","doc":"Callback implementation for HTTPoison.Base.process_response_chunk/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_response_chunk/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_response_headers/1","doc":"Callback implementation for HTTPoison.Base.process_response_headers/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_response_headers/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_response_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_response_status_code/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_response_status_code/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_status_code/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_status_code/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_url/1","doc":"Callback implementation for HTTPoison.Base.process_url/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_url/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.put/4","doc":"Issues a PUT request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#put/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.put!/4","doc":"Issues a PUT request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#put!/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.request/1","doc":"Issues an HTTP request using a Request struct. This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request = % HTTPoison.Request { method : :post , url : "https://my.website.com" , body : "{ \\" foo \\" : 3}" , headers : [ { "Accept" , "application/json" } ] } request ( request )","ref":"Lightning.AdaptorRegistry.Npm.html#request/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.request/5","doc":"Issues an HTTP request with the given method to the given url. This function is usually used indirectly by get/3 , post/4 , put/4 , etc Args: method - HTTP method as an atom ( :get , :head , :post , :put , :delete , etc.) url - target url as a binary string or char list body - request body. See more below headers - HTTP headers as an orddict (e.g., [{"Accept", "application/json"}] ) options - Keyword list of options Body: see type HTTPoison.Request Options: see type HTTPoison.Request This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request ( :post , "https://my.website.com" , "{ \\" foo \\" : 3}" , [ { "Accept" , "application/json" } ] )","ref":"Lightning.AdaptorRegistry.Npm.html#request/5"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.request!/5","doc":"Issues an HTTP request with the given method to the given url, raising an exception in case of failure. request!/5 works exactly like request/5 but it returns just the response in case of a successful request, raising an exception in case the request fails.","ref":"Lightning.AdaptorRegistry.Npm.html#request!/5"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.start/0","doc":"Starts HTTPoison and its dependencies.","ref":"Lightning.AdaptorRegistry.Npm.html#start/0"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.stream_next/1","doc":"Requests the next message to be streamed for a given HTTPoison.AsyncResponse . See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#stream_next/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.user_packages/1","doc":"Retrieve all packages for a given user or organization. Return empty list if application cannot connect to NPM. (E.g., because it's started offline.)","ref":"Lightning.AdaptorRegistry.Npm.html#user_packages/1"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.body/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:body/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.headers/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:headers/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.method/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:method/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.options/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:options/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.params/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:params/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.request/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:request/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.url/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:url/0"},{"type":"module","title":"Lightning.AdaptorService","doc":"The Adaptor Service is use to query and install adaptors in order to run jobs. On startup, it queries the filesystem for package.json files and builds up a list of available adaptors. Configuration The service requires at least :adaptors_path , which is used to both query which adaptors are installed and when to install new adaptors. Another optional setting is: :repo , which must point at a module that will be used to do the querying and installing. Installing Adaptors Using the install/2 function an adaptor can be installed, which will also add it to the list of available adaptors. The adaptor is marked as :installing , to allow for conditional behaviour elsewhere such as delaying or rejecting processing until the adaptor becomes available. Looking up adaptors The module leans on Elixir's built-in Version module to provide version lookups. When looking up an adaptor, either a string or a tuple can be used. In the case of requesting the latest version, any one of these will return the latest version the service is aware of. @openfn/language-http @openfn/language-http@latest {"@openfn/language-http", nil} {"@openfn/language-http", "latest"} {~r/language-http/, "latest"} You can also request a specific version, or use a range specification: @openfn/language-http@1.2.3 {"@openfn/language-http", "~> 1.2.0"} {"@openfn/language-http", "< 2.0.0"} NOTE More complex npm style install strings like: ">=0.1.0 <0.2.0" are not supported. Generally the tuple style is preferred when using range specifications as the npm style strings have a simplistic regex splitter. See Version for more details on matching versions.","ref":"Lightning.AdaptorService.html"},{"type":"function","title":"Lightning.AdaptorService.build_aliased_name/1","doc":"Turns a package name and version into a string for NPM. Since multiple versions of the same package can be installed, it's important to rely on npms built-in package aliasing. E.g. @openfn/language-http@1.2.8 turns into: ` @openfn / language - http - 1.2 . 8 @npm : @openfn / language - http @ 1.2 . 8 ` Which is pretty long winded but necessary for the reason above. If using this module as a base, it's likely you would need to adaptor this to suit your particular naming strategy.","ref":"Lightning.AdaptorService.html#build_aliased_name/1"},{"type":"function","title":"Lightning.AdaptorService.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.AdaptorService.html#child_spec/1"},{"type":"function","title":"Lightning.AdaptorService.find_adaptor/2","doc":"","ref":"Lightning.AdaptorService.html#find_adaptor/2"},{"type":"function","title":"Lightning.AdaptorService.get_adaptors/1","doc":"","ref":"Lightning.AdaptorService.html#get_adaptors/1"},{"type":"function","title":"Lightning.AdaptorService.install/2","doc":"","ref":"Lightning.AdaptorService.html#install/2"},{"type":"function","title":"Lightning.AdaptorService.install!/2","doc":"","ref":"Lightning.AdaptorService.html#install!/2"},{"type":"function","title":"Lightning.AdaptorService.installed?/2","doc":"","ref":"Lightning.AdaptorService.html#installed?/2"},{"type":"function","title":"Lightning.AdaptorService.resolve_package_name/1","doc":"","ref":"Lightning.AdaptorService.html#resolve_package_name/1"},{"type":"function","title":"Lightning.AdaptorService.start_link/1","doc":"","ref":"Lightning.AdaptorService.html#start_link/1"},{"type":"type","title":"Lightning.AdaptorService.package_spec/0","doc":"","ref":"Lightning.AdaptorService.html#t:package_spec/0"},{"type":"module","title":"Lightning.Attempt","doc":"Ecto model for Attempts.","ref":"Lightning.Attempt.html"},{"type":"function","title":"Lightning.Attempt.new/1","doc":"","ref":"Lightning.Attempt.html#new/1"},{"type":"type","title":"Lightning.Attempt.t/0","doc":"","ref":"Lightning.Attempt.html#t:t/0"},{"type":"module","title":"Lightning.AttemptRun","doc":"Ecto model for an Attempts Runs.","ref":"Lightning.AttemptRun.html"},{"type":"function","title":"Lightning.AttemptRun.new/1","doc":"","ref":"Lightning.AttemptRun.html#new/1"},{"type":"function","title":"Lightning.AttemptRun.new/2","doc":"","ref":"Lightning.AttemptRun.html#new/2"},{"type":"type","title":"Lightning.AttemptRun.t/0","doc":"","ref":"Lightning.AttemptRun.html#t:t/0"},{"type":"module","title":"Lightning.AttemptService","doc":"The Attempts context.","ref":"Lightning.AttemptService.html"},{"type":"function","title":"Lightning.AttemptService.append/2","doc":"Adds an Attempt to an unsaved Run When given an Attempt, it simply adds the Run to a new AttemptRun. However when given an AttemptRun, the Run (from the AttemptRun) is set as the previous Run for the new unsaved Run.","ref":"Lightning.AttemptService.html#append/2"},{"type":"function","title":"Lightning.AttemptService.build_attempt/2","doc":"","ref":"Lightning.AttemptService.html#build_attempt/2"},{"type":"function","title":"Lightning.AttemptService.calculate_runs/3","doc":"","ref":"Lightning.AttemptService.html#calculate_runs/3"},{"type":"function","title":"Lightning.AttemptService.create_attempt/3","doc":"Create an attempt Examples iex> create_attempt ( %{ field : value } ) { :ok , % Attempt { } } iex> create_attempt ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.AttemptService.html#create_attempt/3"},{"type":"function","title":"Lightning.AttemptService.get_for_rerun/2","doc":"","ref":"Lightning.AttemptService.html#get_for_rerun/2"},{"type":"function","title":"Lightning.AttemptService.get_last_attempt_for/1","doc":"Get the latest attempt associated to a given run","ref":"Lightning.AttemptService.html#get_last_attempt_for/1"},{"type":"function","title":"Lightning.AttemptService.get_workflow_for/1","doc":"","ref":"Lightning.AttemptService.html#get_workflow_for/1"},{"type":"function","title":"Lightning.AttemptService.list_for_rerun_from_job/2","doc":"Returns a list of AttemptRun structs that should be rerun for the given list of workorder ids that are associated to the given Job","ref":"Lightning.AttemptService.html#list_for_rerun_from_job/2"},{"type":"function","title":"Lightning.AttemptService.list_for_rerun_from_start/1","doc":"Returns a list of AttemptRun structs that should be rerun for the given list of work order ids.","ref":"Lightning.AttemptService.html#list_for_rerun_from_start/1"},{"type":"function","title":"Lightning.AttemptService.retry/3","doc":"Creates a new Attempt starting from a given run. All upstream/prior Runs that were performed on that attempt are associated with the new Attempt, where as the specified run is used to create a new one and is added to the Attempt. Any runs downstream from the Run given are ignored.","ref":"Lightning.AttemptService.html#retry/3"},{"type":"function","title":"Lightning.AttemptService.retry_many/2","doc":"Creates new Attempts for each pair of corresponding AttemptRun and InvocationReason.","ref":"Lightning.AttemptService.html#retry_many/2"},{"type":"module","title":"Lightning.Auditing","doc":"Context for working with Audit records.","ref":"Lightning.Auditing.html"},{"type":"function","title":"Lightning.Auditing.list_all/1","doc":"","ref":"Lightning.Auditing.html#list_all/1"},{"type":"module","title":"Lightning.Auditing.Model","doc":"Macro module to add common model behaviour to a given Ecto model","ref":"Lightning.Auditing.Model.html"},{"type":"function","title":"Lightning.Auditing.Model.event/5","doc":"Creates a schema changeset for the event identified by row_id and caused by actor_id . The given metadata can be either nil , Ecto.Changeset , struct or map. It returns :no_changes in case of an Ecto.Changeset metadata that changed nothing or an Ecto.Changeset with the event ready to be inserted.","ref":"Lightning.Auditing.Model.html#event/5"},{"type":"function","title":"Lightning.Auditing.Model.save/2","doc":"Saves the event to the Repo . In case of nothing changes, do nothing. It returns {:ok, :no_changes} if nothing changed, {:ok, struct} if the log has been successfully saved or {:error, changeset} in case of error.","ref":"Lightning.Auditing.Model.html#save/2"},{"type":"module","title":"Lightning.AuthProviders","doc":"Context module for dealing with external Auth Providers.","ref":"Lightning.AuthProviders.html"},{"type":"function","title":"Lightning.AuthProviders.build_handler/2","doc":"","ref":"Lightning.AuthProviders.html#build_handler/2"},{"type":"function","title":"Lightning.AuthProviders.create/1","doc":"","ref":"Lightning.AuthProviders.html#create/1"},{"type":"function","title":"Lightning.AuthProviders.create_handler/1","doc":"","ref":"Lightning.AuthProviders.html#create_handler/1"},{"type":"function","title":"Lightning.AuthProviders.delete!/1","doc":"","ref":"Lightning.AuthProviders.html#delete!/1"},{"type":"function","title":"Lightning.AuthProviders.get_authorize_url/1","doc":"Retrieve the authorization url for a given handler or handler name.","ref":"Lightning.AuthProviders.html#get_authorize_url/1"},{"type":"function","title":"Lightning.AuthProviders.get_existing/0","doc":"","ref":"Lightning.AuthProviders.html#get_existing/0"},{"type":"function","title":"Lightning.AuthProviders.get_existing/1","doc":"","ref":"Lightning.AuthProviders.html#get_existing/1"},{"type":"function","title":"Lightning.AuthProviders.get_handler/1","doc":"","ref":"Lightning.AuthProviders.html#get_handler/1"},{"type":"function","title":"Lightning.AuthProviders.get_handlers/0","doc":"","ref":"Lightning.AuthProviders.html#get_handlers/0"},{"type":"function","title":"Lightning.AuthProviders.new/0","doc":"","ref":"Lightning.AuthProviders.html#new/0"},{"type":"function","title":"Lightning.AuthProviders.remove_handler/1","doc":"","ref":"Lightning.AuthProviders.html#remove_handler/1"},{"type":"function","title":"Lightning.AuthProviders.update/2","doc":"","ref":"Lightning.AuthProviders.html#update/2"},{"type":"module","title":"Lightning.AuthProviders.AuthConfig","doc":"AuthProvider model","ref":"Lightning.AuthProviders.AuthConfig.html"},{"type":"type","title":"Lightning.AuthProviders.AuthConfig.t/0","doc":"","ref":"Lightning.AuthProviders.AuthConfig.html#t:t/0"},{"type":"module","title":"Lightning.AuthProviders.CacheWarmer","doc":"Dummy warmer which caches database rows every 30s.","ref":"Lightning.AuthProviders.CacheWarmer.html"},{"type":"function","title":"Lightning.AuthProviders.CacheWarmer.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.AuthProviders.CacheWarmer.html#child_spec/1"},{"type":"function","title":"Lightning.AuthProviders.CacheWarmer.execute/1","doc":"Executes this cache warmer with a connection.","ref":"Lightning.AuthProviders.CacheWarmer.html#execute/1"},{"type":"function","title":"Lightning.AuthProviders.CacheWarmer.interval/0","doc":"Returns the interval for this warmer.","ref":"Lightning.AuthProviders.CacheWarmer.html#interval/0"},{"type":"module","title":"Lightning.AuthProviders.Google","doc":"","ref":"Lightning.AuthProviders.Google.html"},{"type":"function","title":"Lightning.AuthProviders.Google.authorize_url/2","doc":"","ref":"Lightning.AuthProviders.Google.html#authorize_url/2"},{"type":"function","title":"Lightning.AuthProviders.Google.build_client/1","doc":"Builds a new client","ref":"Lightning.AuthProviders.Google.html#build_client/1"},{"type":"function","title":"Lightning.AuthProviders.Google.get_config/0","doc":"","ref":"Lightning.AuthProviders.Google.html#get_config/0"},{"type":"function","title":"Lightning.AuthProviders.Google.get_token/2","doc":"","ref":"Lightning.AuthProviders.Google.html#get_token/2"},{"type":"function","title":"Lightning.AuthProviders.Google.get_userinfo/2","doc":"","ref":"Lightning.AuthProviders.Google.html#get_userinfo/2"},{"type":"function","title":"Lightning.AuthProviders.Google.get_wellknown/0","doc":"","ref":"Lightning.AuthProviders.Google.html#get_wellknown/0"},{"type":"function","title":"Lightning.AuthProviders.Google.get_wellknown!/0","doc":"","ref":"Lightning.AuthProviders.Google.html#get_wellknown!/0"},{"type":"function","title":"Lightning.AuthProviders.Google.refresh_token/2","doc":"","ref":"Lightning.AuthProviders.Google.html#refresh_token/2"},{"type":"module","title":"Lightning.AuthProviders.Handler","doc":"Module which wraps Oauth configuration and a WellKnown document into a convenient struct that can be used to authenticate users against any OIDC compliant provider.","ref":"Lightning.AuthProviders.Handler.html"},{"type":"function","title":"Lightning.AuthProviders.Handler.authorize_url/1","doc":"","ref":"Lightning.AuthProviders.Handler.html#authorize_url/1"},{"type":"function","title":"Lightning.AuthProviders.Handler.from_model/1","doc":"Returns a Handler from a given AuthConfig","ref":"Lightning.AuthProviders.Handler.html#from_model/1"},{"type":"function","title":"Lightning.AuthProviders.Handler.get_token/2","doc":"","ref":"Lightning.AuthProviders.Handler.html#get_token/2"},{"type":"function","title":"Lightning.AuthProviders.Handler.get_userinfo/2","doc":"","ref":"Lightning.AuthProviders.Handler.html#get_userinfo/2"},{"type":"function","title":"Lightning.AuthProviders.Handler.new/2","doc":"Create a new Provider struct, expects a name and opts: :client_id - The providers issued id :client_secret - Secret for the client :redirect_uri - The URI for redirecting after authentication, usually the callback url in the router. :wellknown - A AuthProviders.WellKnown struct with the providers .well-known/openid-configuration .","ref":"Lightning.AuthProviders.Handler.html#new/2"},{"type":"type","title":"Lightning.AuthProviders.Handler.opts/0","doc":"","ref":"Lightning.AuthProviders.Handler.html#t:opts/0"},{"type":"type","title":"Lightning.AuthProviders.Handler.t/0","doc":"","ref":"Lightning.AuthProviders.Handler.html#t:t/0"},{"type":"module","title":"Lightning.AuthProviders.Store","doc":"Store module for caching Handlers. Since Handlers often have to fetch their .well-known files when being initialized we cache these in order to avoid repeatedly making HTTP requests to a providers API.","ref":"Lightning.AuthProviders.Store.html"},{"type":"function","title":"Lightning.AuthProviders.Store.get_handler/2","doc":"","ref":"Lightning.AuthProviders.Store.html#get_handler/2"},{"type":"function","title":"Lightning.AuthProviders.Store.get_handlers/0","doc":"","ref":"Lightning.AuthProviders.Store.html#get_handlers/0"},{"type":"function","title":"Lightning.AuthProviders.Store.put_handler/2","doc":"","ref":"Lightning.AuthProviders.Store.html#put_handler/2"},{"type":"function","title":"Lightning.AuthProviders.Store.remove_handler/1","doc":"","ref":"Lightning.AuthProviders.Store.html#remove_handler/1"},{"type":"type","title":"Lightning.AuthProviders.Store.finder/0","doc":"","ref":"Lightning.AuthProviders.Store.html#t:finder/0"},{"type":"module","title":"Lightning.AuthProviders.WellKnown","doc":"A datastructure to fetch and hold information about a given OIDC/OAuth provider","ref":"Lightning.AuthProviders.WellKnown.html"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.delete/3","doc":"Issues a DELETE request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#delete/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.delete!/3","doc":"Issues a DELETE request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#delete!/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.fetch/1","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#fetch/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.fetch!/1","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#fetch!/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.get/3","doc":"Issues a GET request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#get/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.get!/3","doc":"Issues a GET request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#get!/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.head/3","doc":"Issues a HEAD request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#head/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.head!/3","doc":"Issues a HEAD request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#head!/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.new/1","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#new/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.options/3","doc":"Issues an OPTIONS request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#options/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.options!/3","doc":"Issues a OPTIONS request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#options!/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.patch/4","doc":"Issues a PATCH request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#patch/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.patch!/4","doc":"Issues a PATCH request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#patch!/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.post/4","doc":"Issues a POST request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#post/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.post!/4","doc":"Issues a POST request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#post!/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_headers/1","doc":"Callback implementation for HTTPoison.Base.process_headers/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_headers/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_request_body/1","doc":"Callback implementation for HTTPoison.Base.process_request_body/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_request_body/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_request_headers/1","doc":"Callback implementation for HTTPoison.Base.process_request_headers/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_request_headers/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_request_options/1","doc":"Callback implementation for HTTPoison.Base.process_request_options/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_request_options/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_request_params/1","doc":"Callback implementation for HTTPoison.Base.process_request_params/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_request_params/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_request_url/1","doc":"Callback implementation for HTTPoison.Base.process_request_url/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_request_url/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_response/1","doc":"Callback implementation for HTTPoison.Base.process_response/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_response/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_response_body/1","doc":"Callback implementation for HTTPoison.Base.process_response_body/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_response_body/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_response_chunk/1","doc":"Callback implementation for HTTPoison.Base.process_response_chunk/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_response_chunk/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_response_headers/1","doc":"Callback implementation for HTTPoison.Base.process_response_headers/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_response_headers/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_response_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_response_status_code/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_response_status_code/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_status_code/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_status_code/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_url/1","doc":"Callback implementation for HTTPoison.Base.process_url/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_url/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.put/4","doc":"Issues a PUT request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#put/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.put!/4","doc":"Issues a PUT request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#put!/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.request/1","doc":"Issues an HTTP request using a Request struct. This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request = % HTTPoison.Request { method : :post , url : "https://my.website.com" , body : "{ \\" foo \\" : 3}" , headers : [ { "Accept" , "application/json" } ] } request ( request )","ref":"Lightning.AuthProviders.WellKnown.html#request/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.request/5","doc":"Issues an HTTP request with the given method to the given url. This function is usually used indirectly by get/3 , post/4 , put/4 , etc Args: method - HTTP method as an atom ( :get , :head , :post , :put , :delete , etc.) url - target url as a binary string or char list body - request body. See more below headers - HTTP headers as an orddict (e.g., [{"Accept", "application/json"}] ) options - Keyword list of options Body: see type HTTPoison.Request Options: see type HTTPoison.Request This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request ( :post , "https://my.website.com" , "{ \\" foo \\" : 3}" , [ { "Accept" , "application/json" } ] )","ref":"Lightning.AuthProviders.WellKnown.html#request/5"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.request!/5","doc":"Issues an HTTP request with the given method to the given url, raising an exception in case of failure. request!/5 works exactly like request/5 but it returns just the response in case of a successful request, raising an exception in case the request fails.","ref":"Lightning.AuthProviders.WellKnown.html#request!/5"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.start/0","doc":"Starts HTTPoison and its dependencies.","ref":"Lightning.AuthProviders.WellKnown.html#start/0"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.stream_next/1","doc":"Requests the next message to be streamed for a given HTTPoison.AsyncResponse . See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#stream_next/1"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.body/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:body/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.headers/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:headers/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.method/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:method/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.options/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:options/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.params/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:params/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.request/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:request/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.t/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:t/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.url/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:url/0"},{"type":"module","title":"Lightning.CLI","doc":"Module providing facilities to make calls to the OpenFn CLI. See @openfn/cli","ref":"Lightning.CLI.html"},{"type":"function","title":"Lightning.CLI.execute/1","doc":"Execute a command in a child process and parse the results.","ref":"Lightning.CLI.html#execute/1"},{"type":"function","title":"Lightning.CLI.metadata/2","doc":"Retrieve metadata for a given adaptor and configuration.","ref":"Lightning.CLI.html#metadata/2"},{"type":"module","title":"Lightning.CLI.Result","doc":"Struct that wraps the output of an OpenFn CLI call. Containing the keys: start_time end_time status logs Logs The OpenFn CLI returns JSON formatted log lines, which are decoded and added to a 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","ref":"Lightning.CLI.Result.html"},{"type":"function","title":"Lightning.CLI.Result.get_messages/1","doc":"Returns message type log lines from a Result .","ref":"Lightning.CLI.Result.html#get_messages/1"},{"type":"function","title":"Lightning.CLI.Result.new/1","doc":"","ref":"Lightning.CLI.Result.html#new/1"},{"type":"function","title":"Lightning.CLI.Result.parse/2","doc":"","ref":"Lightning.CLI.Result.html#parse/2"},{"type":"type","title":"Lightning.CLI.Result.t/0","doc":"","ref":"Lightning.CLI.Result.html#t:t/0"},{"type":"module","title":"Lightning.Demo","doc":"Demo encapsulates logic for setting up a demonstration site.","ref":"Lightning.Demo.html"},{"type":"function","title":"Lightning.Demo.reset_demo/0","doc":"Deletes everything in the database including the superuser and creates a set of publicly available users for a demo site via a command that can be run on Kubernetes-deployed systems.","ref":"Lightning.Demo.html#reset_demo/0"},{"type":"module","title":"Lightning.ExportUtils","doc":"Module that expose a function generating a complete and valid yaml string from a project and its workflows.","ref":"Lightning.ExportUtils.html"},{"type":"function","title":"Lightning.ExportUtils.build_yaml_tree/2","doc":"","ref":"Lightning.ExportUtils.html#build_yaml_tree/2"},{"type":"function","title":"Lightning.ExportUtils.generate_new_yaml/1","doc":"","ref":"Lightning.ExportUtils.html#generate_new_yaml/1"},{"type":"module","title":"Lightning.FailureNotifierView","doc":"","ref":"Lightning.FailureNotifierView.html"},{"type":"function","title":"Lightning.FailureNotifierView.__resource__/0","doc":"The resource name, as an atom, for this view","ref":"Lightning.FailureNotifierView.html#__resource__/0"},{"type":"function","title":"Lightning.FailureNotifierView.failure_alert.html/1","doc":"","ref":"Lightning.FailureNotifierView.html#failure_alert.html/1"},{"type":"function","title":"Lightning.FailureNotifierView.render/2","doc":"Renders the given template locally.","ref":"Lightning.FailureNotifierView.html#render/2"},{"type":"function","title":"Lightning.FailureNotifierView.template_not_found/2","doc":"Callback invoked when no template is found. By default it raises but can be customized to render a particular template.","ref":"Lightning.FailureNotifierView.html#template_not_found/2"},{"type":"module","title":"Lightning.Helpers","doc":"Common functions for the context","ref":"Lightning.Helpers.html"},{"type":"function","title":"Lightning.Helpers.coerce_json_field/2","doc":"Changes a given maps field from a json string to a map. If it cannot be converted, it leaves the original value","ref":"Lightning.Helpers.html#coerce_json_field/2"},{"type":"function","title":"Lightning.Helpers.indefinite_article/1","doc":"","ref":"Lightning.Helpers.html#indefinite_article/1"},{"type":"function","title":"Lightning.Helpers.json_safe/1","doc":"Recursively ensures a given map is safe to convert to JSON, where all keys are strings and all values are json safe (primitive values).","ref":"Lightning.Helpers.html#json_safe/1"},{"type":"function","title":"Lightning.Helpers.ms_to_human/1","doc":"Converts milliseconds (integer) to a human duration, such as "1 minute" or "45 years, 6 months, 5 days, 21 hours, 12 minutes, 34 seconds" using Timex.Format.Duration.Formatters.Humanized.format() .","ref":"Lightning.Helpers.html#ms_to_human/1"},{"type":"module","title":"Lightning.MetadataService","doc":"Retrieves metadata for a given credential and adaptor using the OpenFn CLI.","ref":"Lightning.MetadataService.html"},{"type":"function","title":"Lightning.MetadataService.fetch/2","doc":"Retrieve metadata for a given adaptor and credential. The adaptor must be an npm specification.","ref":"Lightning.MetadataService.html#fetch/2"},{"type":"module","title":"Lightning.Name","doc":"Generates a random names.","ref":"Lightning.Name.html"},{"type":"function","title":"Lightning.Name.generate/1","doc":"","ref":"Lightning.Name.html#generate/1"},{"type":"module","title":"Lightning.ObanManager","doc":"The Oban Manager","ref":"Lightning.ObanManager.html"},{"type":"function","title":"Lightning.ObanManager.handle_event/4","doc":"","ref":"Lightning.ObanManager.html#handle_event/4"},{"type":"module","title":"Lightning.Policies.Permissions","doc":"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_job = Lightning.Policies.ProjectUsers |> Lightning.Policies.Permissions . can? ( :edit_job , socket . assigns . current_user , socket . assigns . project ) if can_edit_job do # allow user to edit the job else # quick user out end","ref":"Lightning.Policies.Permissions.html"},{"type":"function","title":"Lightning.Policies.Permissions.can/4","doc":"checks if user has the permissions to apply action using some policy module Returns :ok if user can apply action and {:error, :unauthorized} otherwise Examples iex> can ( Lightning.Policies.Users , :create_workflow , user , project ) :ok iex> can ( Lightning.Policies.Users , :create_project , user , %{ } ) { :error , :unauthorized }","ref":"Lightning.Policies.Permissions.html#can/4"},{"type":"function","title":"Lightning.Policies.Permissions.can?/4","doc":"same as can/4 but returns true if user can apply action and false otherwise Examples iex> can ( Lightning.Policies.Users , :create_workflow , user , project ) true iex> can ( Lightning.Policies.Users , :create_project , user , %{ } ) false","ref":"Lightning.Policies.Permissions.html#can?/4"},{"type":"module","title":"Lightning.Policies.ProjectUsers","doc":"The Bodyguard Policy module for projects members roles.","ref":"Lightning.Policies.ProjectUsers.html"},{"type":"function","title":"Lightning.Policies.ProjectUsers.authorize/3","doc":"authorize/3 takes an action, a user, and a project. It checks the user's role for this project and returns true if the user can perform the action in that project and false if they cannot. Note that permissions are grouped by action, rather than by user role. We deny by default, so if a user's role is not added to the allow roles list for a particular action they are denied.","ref":"Lightning.Policies.ProjectUsers.html#authorize/3"},{"type":"type","title":"Lightning.Policies.ProjectUsers.actions/0","doc":"","ref":"Lightning.Policies.ProjectUsers.html#t:actions/0"},{"type":"module","title":"Lightning.Policies.Provisioning","doc":"The Bodyguard Policy module for users roles.","ref":"Lightning.Policies.Provisioning.html"},{"type":"function","title":"Lightning.Policies.Provisioning.authorize/3","doc":"authorize/3 takes an action, a user, and a project. It checks the user's role for this project and returns true if the user can perform the action and false if they cannot. Note that permissions are grouped by action. We deny by default, so if a user's role is not added to the allow roles list for a particular action they are denied. Only a superuser can provision a new project. Owners and admins can update existing projects.","ref":"Lightning.Policies.Provisioning.html#authorize/3"},{"type":"type","title":"Lightning.Policies.Provisioning.actions/0","doc":"","ref":"Lightning.Policies.Provisioning.html#t:actions/0"},{"type":"module","title":"Lightning.Policies.Users","doc":"The Bodyguard Policy module for users roles.","ref":"Lightning.Policies.Users.html"},{"type":"function","title":"Lightning.Policies.Users.authorize/3","doc":"authorize/3 takes an action, a user, and a project. It checks the user's role for this project and returns true if the user can perform the action and false if they cannot. Note that permissions are grouped by action. We deny by default, so if a user's role is not added to the allow roles list for a particular action they are denied.","ref":"Lightning.Policies.Users.html#authorize/3"},{"type":"type","title":"Lightning.Policies.Users.actions/0","doc":"","ref":"Lightning.Policies.Users.html#t:actions/0"},{"type":"module","title":"Lightning.Release","doc":"Used for executing DB release tasks when run in production without Mix installed.","ref":"Lightning.Release.html"},{"type":"function","title":"Lightning.Release.create_db/0","doc":"","ref":"Lightning.Release.html#create_db/0"},{"type":"function","title":"Lightning.Release.load_app/0","doc":"","ref":"Lightning.Release.html#load_app/0"},{"type":"function","title":"Lightning.Release.migrate/0","doc":"","ref":"Lightning.Release.html#migrate/0"},{"type":"function","title":"Lightning.Release.rollback/2","doc":"","ref":"Lightning.Release.html#rollback/2"},{"type":"module","title":"Lightning.Repo","doc":"","ref":"Lightning.Repo.html"},{"type":"function","title":"Lightning.Repo.aggregate/3","doc":"Callback implementation for Ecto.Repo.aggregate/3 .","ref":"Lightning.Repo.html#aggregate/3"},{"type":"function","title":"Lightning.Repo.aggregate/4","doc":"Callback implementation for Ecto.Repo.aggregate/4 .","ref":"Lightning.Repo.html#aggregate/4"},{"type":"function","title":"Lightning.Repo.all/2","doc":"Callback implementation for Ecto.Repo.all/2 .","ref":"Lightning.Repo.html#all/2"},{"type":"function","title":"Lightning.Repo.checked_out?/0","doc":"Callback implementation for Ecto.Repo.checked_out?/0 .","ref":"Lightning.Repo.html#checked_out?/0"},{"type":"function","title":"Lightning.Repo.checkout/2","doc":"Callback implementation for Ecto.Repo.checkout/2 .","ref":"Lightning.Repo.html#checkout/2"},{"type":"function","title":"Lightning.Repo.child_spec/1","doc":"","ref":"Lightning.Repo.html#child_spec/1"},{"type":"function","title":"Lightning.Repo.config/0","doc":"Callback implementation for Ecto.Repo.config/0 .","ref":"Lightning.Repo.html#config/0"},{"type":"function","title":"Lightning.Repo.default_options/1","doc":"Callback implementation for Ecto.Repo.default_options/1 .","ref":"Lightning.Repo.html#default_options/1"},{"type":"function","title":"Lightning.Repo.delete/2","doc":"Callback implementation for Ecto.Repo.delete/2 .","ref":"Lightning.Repo.html#delete/2"},{"type":"function","title":"Lightning.Repo.delete!/2","doc":"Callback implementation for Ecto.Repo.delete!/2 .","ref":"Lightning.Repo.html#delete!/2"},{"type":"function","title":"Lightning.Repo.delete_all/2","doc":"Callback implementation for Ecto.Repo.delete_all/2 .","ref":"Lightning.Repo.html#delete_all/2"},{"type":"function","title":"Lightning.Repo.disconnect_all/2","doc":"A convenience function for SQL-based repositories that forces all connections in the pool to disconnect within the given interval. See Ecto.Adapters.SQL.disconnect_all/3 for more information.","ref":"Lightning.Repo.html#disconnect_all/2"},{"type":"function","title":"Lightning.Repo.exists?/2","doc":"Callback implementation for Ecto.Repo.exists?/2 .","ref":"Lightning.Repo.html#exists?/2"},{"type":"function","title":"Lightning.Repo.explain/3","doc":"A convenience function for SQL-based repositories that executes an EXPLAIN statement or similar depending on the adapter to obtain statistics for the given query. See Ecto.Adapters.SQL.explain/4 for more information.","ref":"Lightning.Repo.html#explain/3"},{"type":"function","title":"Lightning.Repo.get/3","doc":"Callback implementation for Ecto.Repo.get/3 .","ref":"Lightning.Repo.html#get/3"},{"type":"function","title":"Lightning.Repo.get!/3","doc":"Callback implementation for Ecto.Repo.get!/3 .","ref":"Lightning.Repo.html#get!/3"},{"type":"function","title":"Lightning.Repo.get_by/3","doc":"Callback implementation for Ecto.Repo.get_by/3 .","ref":"Lightning.Repo.html#get_by/3"},{"type":"function","title":"Lightning.Repo.get_by!/3","doc":"Callback implementation for Ecto.Repo.get_by!/3 .","ref":"Lightning.Repo.html#get_by!/3"},{"type":"function","title":"Lightning.Repo.get_dynamic_repo/0","doc":"Callback implementation for Ecto.Repo.get_dynamic_repo/0 .","ref":"Lightning.Repo.html#get_dynamic_repo/0"},{"type":"function","title":"Lightning.Repo.in_transaction?/0","doc":"Callback implementation for Ecto.Repo.in_transaction?/0 .","ref":"Lightning.Repo.html#in_transaction?/0"},{"type":"function","title":"Lightning.Repo.insert/2","doc":"Callback implementation for Ecto.Repo.insert/2 .","ref":"Lightning.Repo.html#insert/2"},{"type":"function","title":"Lightning.Repo.insert!/2","doc":"Callback implementation for Ecto.Repo.insert!/2 .","ref":"Lightning.Repo.html#insert!/2"},{"type":"function","title":"Lightning.Repo.insert_all/3","doc":"Callback implementation for Ecto.Repo.insert_all/3 .","ref":"Lightning.Repo.html#insert_all/3"},{"type":"function","title":"Lightning.Repo.insert_or_update/2","doc":"Callback implementation for Ecto.Repo.insert_or_update/2 .","ref":"Lightning.Repo.html#insert_or_update/2"},{"type":"function","title":"Lightning.Repo.insert_or_update!/2","doc":"Callback implementation for Ecto.Repo.insert_or_update!/2 .","ref":"Lightning.Repo.html#insert_or_update!/2"},{"type":"function","title":"Lightning.Repo.load/2","doc":"Callback implementation for Ecto.Repo.load/2 .","ref":"Lightning.Repo.html#load/2"},{"type":"function","title":"Lightning.Repo.one/2","doc":"Callback implementation for Ecto.Repo.one/2 .","ref":"Lightning.Repo.html#one/2"},{"type":"function","title":"Lightning.Repo.one!/2","doc":"Callback implementation for Ecto.Repo.one!/2 .","ref":"Lightning.Repo.html#one!/2"},{"type":"function","title":"Lightning.Repo.paginate/2","doc":"","ref":"Lightning.Repo.html#paginate/2"},{"type":"function","title":"Lightning.Repo.preload/3","doc":"Callback implementation for Ecto.Repo.preload/3 .","ref":"Lightning.Repo.html#preload/3"},{"type":"function","title":"Lightning.Repo.prepare_query/3","doc":"Callback implementation for Ecto.Repo.prepare_query/3 .","ref":"Lightning.Repo.html#prepare_query/3"},{"type":"function","title":"Lightning.Repo.put_dynamic_repo/1","doc":"Callback implementation for Ecto.Repo.put_dynamic_repo/1 .","ref":"Lightning.Repo.html#put_dynamic_repo/1"},{"type":"function","title":"Lightning.Repo.query/3","doc":"A convenience function for SQL-based repositories that executes the given query. See Ecto.Adapters.SQL.query/4 for more information.","ref":"Lightning.Repo.html#query/3"},{"type":"function","title":"Lightning.Repo.query!/3","doc":"A convenience function for SQL-based repositories that executes the given query. See Ecto.Adapters.SQL.query!/4 for more information.","ref":"Lightning.Repo.html#query!/3"},{"type":"function","title":"Lightning.Repo.query_many/3","doc":"A convenience function for SQL-based repositories that executes the given multi-result query. See Ecto.Adapters.SQL.query_many/4 for more information.","ref":"Lightning.Repo.html#query_many/3"},{"type":"function","title":"Lightning.Repo.query_many!/3","doc":"A convenience function for SQL-based repositories that executes the given multi-result query. See Ecto.Adapters.SQL.query_many!/4 for more information.","ref":"Lightning.Repo.html#query_many!/3"},{"type":"function","title":"Lightning.Repo.reload/2","doc":"Callback implementation for Ecto.Repo.reload/2 .","ref":"Lightning.Repo.html#reload/2"},{"type":"function","title":"Lightning.Repo.reload!/2","doc":"Callback implementation for Ecto.Repo.reload!/2 .","ref":"Lightning.Repo.html#reload!/2"},{"type":"function","title":"Lightning.Repo.rollback/1","doc":"Callback implementation for Ecto.Repo.rollback/1 .","ref":"Lightning.Repo.html#rollback/1"},{"type":"function","title":"Lightning.Repo.scrivener_defaults/0","doc":"","ref":"Lightning.Repo.html#scrivener_defaults/0"},{"type":"function","title":"Lightning.Repo.start_link/1","doc":"Callback implementation for Ecto.Repo.start_link/1 .","ref":"Lightning.Repo.html#start_link/1"},{"type":"function","title":"Lightning.Repo.stop/1","doc":"Callback implementation for Ecto.Repo.stop/1 .","ref":"Lightning.Repo.html#stop/1"},{"type":"function","title":"Lightning.Repo.stream/2","doc":"Callback implementation for Ecto.Repo.stream/2 .","ref":"Lightning.Repo.html#stream/2"},{"type":"function","title":"Lightning.Repo.to_sql/2","doc":"A convenience function for SQL-based repositories that translates the given query to SQL. See Ecto.Adapters.SQL.to_sql/3 for more information.","ref":"Lightning.Repo.html#to_sql/2"},{"type":"function","title":"Lightning.Repo.transaction/2","doc":"Callback implementation for Ecto.Repo.transaction/2 .","ref":"Lightning.Repo.html#transaction/2"},{"type":"function","title":"Lightning.Repo.update/2","doc":"Callback implementation for Ecto.Repo.update/2 .","ref":"Lightning.Repo.html#update/2"},{"type":"function","title":"Lightning.Repo.update!/2","doc":"Callback implementation for Ecto.Repo.update!/2 .","ref":"Lightning.Repo.html#update!/2"},{"type":"function","title":"Lightning.Repo.update_all/3","doc":"Callback implementation for Ecto.Repo.update_all/3 .","ref":"Lightning.Repo.html#update_all/3"},{"type":"module","title":"Lightning.RunSearchForm","doc":"Run filtering search form.","ref":"Lightning.RunSearchForm.html"},{"type":"module","title":"Lightning.SafetyString","doc":"Utilities for securely encoding serializable structs, lists and strings into URL-safe strings. In order to pass the state around in a URL, in a manner that protects secrets from leaking - and allows us to avoid persistance we take a set of parameters and: Encode into a URI query string gzip it to save characters encrypt the string base64 encode it for URI encoding safety","ref":"Lightning.SafetyString.html"},{"type":"function","title":"Lightning.SafetyString.decode/1","doc":"","ref":"Lightning.SafetyString.html#decode/1"},{"type":"function","title":"Lightning.SafetyString.encode/1","doc":"","ref":"Lightning.SafetyString.html#encode/1"},{"type":"module","title":"Lightning.Scrubber","doc":"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.","ref":"Lightning.Scrubber.html"},{"type":"function","title":"Lightning.Scrubber.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.Scrubber.html#child_spec/1"},{"type":"function","title":"Lightning.Scrubber.encode_samples/1","doc":"Prepare a list of sensitive samples (strings) into a potentially bigger list composed of variations a sample may appear.","ref":"Lightning.Scrubber.html#encode_samples/1"},{"type":"function","title":"Lightning.Scrubber.samples/1","doc":"","ref":"Lightning.Scrubber.html#samples/1"},{"type":"function","title":"Lightning.Scrubber.scrub/2","doc":"","ref":"Lightning.Scrubber.html#scrub/2"},{"type":"function","title":"Lightning.Scrubber.start_link/1","doc":"","ref":"Lightning.Scrubber.html#start_link/1"},{"type":"module","title":"Lightning.SetupUtils","doc":"SetupUtils encapsulates logic for setting up initial data for various sites.","ref":"Lightning.SetupUtils.html"},{"type":"function","title":"Lightning.SetupUtils.add_and_update_runs/3","doc":"","ref":"Lightning.SetupUtils.html#add_and_update_runs/3"},{"type":"function","title":"Lightning.SetupUtils.create_dhis2_project/1","doc":"","ref":"Lightning.SetupUtils.html#create_dhis2_project/1"},{"type":"function","title":"Lightning.SetupUtils.create_openhie_project/1","doc":"","ref":"Lightning.SetupUtils.html#create_openhie_project/1"},{"type":"function","title":"Lightning.SetupUtils.create_starter_project/2","doc":"","ref":"Lightning.SetupUtils.html#create_starter_project/2"},{"type":"function","title":"Lightning.SetupUtils.setup_demo/1","doc":"Creates initial data and returns the created records.","ref":"Lightning.SetupUtils.html#setup_demo/1"},{"type":"function","title":"Lightning.SetupUtils.tear_down/1","doc":"","ref":"Lightning.SetupUtils.html#tear_down/1"},{"type":"module","title":"Lightning.TaskWorker","doc":"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.","ref":"Lightning.TaskWorker.html"},{"type":"function","title":"Lightning.TaskWorker.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.TaskWorker.html#child_spec/1"},{"type":"function","title":"Lightning.TaskWorker.get_status/1","doc":"","ref":"Lightning.TaskWorker.html#get_status/1"},{"type":"function","title":"Lightning.TaskWorker.start_link/1","doc":"","ref":"Lightning.TaskWorker.html#start_link/1"},{"type":"function","title":"Lightning.TaskWorker.start_task/2","doc":"","ref":"Lightning.TaskWorker.html#start_task/2"},{"type":"module","title":"Lightning.Validators","doc":"Extra validators for Ecto.Changeset.","ref":"Lightning.Validators.html"},{"type":"function","title":"Lightning.Validators.validate_exclusive/3","doc":"Validate that only one of the fields is set at a time. Example: changeset |> validate_exclusive ( [ :source_job_id , :source_trigger_id ] , "source_job_id and source_trigger_id are mutually exclusive" )","ref":"Lightning.Validators.html#validate_exclusive/3"},{"type":"function","title":"Lightning.Validators.validate_one_required/3","doc":"Validate that at least one of the fields is set.","ref":"Lightning.Validators.html#validate_one_required/3"},{"type":"module","title":"Lightning.Vault","doc":"Module for handling the encryption and decryption of database fields.","ref":"Lightning.Vault.html"},{"type":"function","title":"Lightning.Vault.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.Vault.html#child_spec/1"},{"type":"function","title":"Lightning.Vault.start_link/1","doc":"","ref":"Lightning.Vault.html#start_link/1"},{"type":"module","title":"Lightning.WorkOrder","doc":"Ecto model for Workorders.","ref":"Lightning.WorkOrder.html"},{"type":"function","title":"Lightning.WorkOrder.new/0","doc":"","ref":"Lightning.WorkOrder.html#new/0"},{"type":"type","title":"Lightning.WorkOrder.t/0","doc":"","ref":"Lightning.WorkOrder.html#t:t/0"},{"type":"module","title":"Lightning.WorkOrderService","doc":"The WorkOrderService.","ref":"Lightning.WorkOrderService.html"},{"type":"function","title":"Lightning.WorkOrderService.attempt_updated/1","doc":"","ref":"Lightning.WorkOrderService.html#attempt_updated/1"},{"type":"function","title":"Lightning.WorkOrderService.build/2","doc":"","ref":"Lightning.WorkOrderService.html#build/2"},{"type":"function","title":"Lightning.WorkOrderService.create_manual_workorder/3","doc":"","ref":"Lightning.WorkOrderService.html#create_manual_workorder/3"},{"type":"function","title":"Lightning.WorkOrderService.create_webhook_workorder/2","doc":"","ref":"Lightning.WorkOrderService.html#create_webhook_workorder/2"},{"type":"function","title":"Lightning.WorkOrderService.create_work_order/1","doc":"Creates a work_order. Examples iex> create_work_order ( %{ field : value } ) { :ok , % WorkOrder { } } iex> create_work_order ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.WorkOrderService.html#create_work_order/1"},{"type":"function","title":"Lightning.WorkOrderService.multi_for/3","doc":"","ref":"Lightning.WorkOrderService.html#multi_for/3"},{"type":"function","title":"Lightning.WorkOrderService.multi_for_manual/3","doc":"","ref":"Lightning.WorkOrderService.html#multi_for_manual/3"},{"type":"function","title":"Lightning.WorkOrderService.retry_attempt_run/2","doc":"","ref":"Lightning.WorkOrderService.html#retry_attempt_run/2"},{"type":"function","title":"Lightning.WorkOrderService.retry_attempt_runs/2","doc":"","ref":"Lightning.WorkOrderService.html#retry_attempt_runs/2"},{"type":"function","title":"Lightning.WorkOrderService.subscribe/1","doc":"","ref":"Lightning.WorkOrderService.html#subscribe/1"},{"type":"module","title":"Lightning.Workflows","doc":"The Workflows context.","ref":"Lightning.Workflows.html"},{"type":"function","title":"Lightning.Workflows.build_trigger/1","doc":"Builds a Trigger","ref":"Lightning.Workflows.html#build_trigger/1"},{"type":"function","title":"Lightning.Workflows.change_workflow/2","doc":"Returns an %Ecto.Changeset{} for tracking workflow changes. Examples iex> change_workflow ( workflow ) % Ecto.Changeset { data : % Workflow { } }","ref":"Lightning.Workflows.html#change_workflow/2"},{"type":"function","title":"Lightning.Workflows.create_edge/1","doc":"Creates an edge","ref":"Lightning.Workflows.html#create_edge/1"},{"type":"function","title":"Lightning.Workflows.create_workflow/1","doc":"Creates a workflow. Examples iex> create_workflow ( %{ field : value } ) { :ok , % Workflow { } } iex> create_workflow ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Workflows.html#create_workflow/1"},{"type":"function","title":"Lightning.Workflows.delete_workflow/1","doc":"Deletes a workflow. Examples iex> delete_workflow ( workflow ) { :ok , % Workflow { } } iex> delete_workflow ( workflow ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Workflows.html#delete_workflow/1"},{"type":"function","title":"Lightning.Workflows.get_edge_by_webhook/1","doc":"Gets a Single Edge by it's webhook trigger.","ref":"Lightning.Workflows.html#get_edge_by_webhook/1"},{"type":"function","title":"Lightning.Workflows.get_edges_for_cron_execution/1","doc":"Returns a list of edges with jobs to execute, given a current timestamp in Unix. This is used by the scheduler, which calls this function once every minute.","ref":"Lightning.Workflows.html#get_edges_for_cron_execution/1"},{"type":"function","title":"Lightning.Workflows.get_workflow/1","doc":"","ref":"Lightning.Workflows.html#get_workflow/1"},{"type":"function","title":"Lightning.Workflows.get_workflow!/1","doc":"Gets a single workflow. Raises Ecto.NoResultsError if the Workflow does not exist. Examples iex> get_workflow! ( 123 ) % Workflow { } iex> get_workflow! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Workflows.html#get_workflow!/1"},{"type":"function","title":"Lightning.Workflows.get_workflows_for/1","doc":"Retrieves a list of Workflows with their jobs and triggers preloaded.","ref":"Lightning.Workflows.html#get_workflows_for/1"},{"type":"function","title":"Lightning.Workflows.get_workflows_for_query/1","doc":"","ref":"Lightning.Workflows.html#get_workflows_for_query/1"},{"type":"function","title":"Lightning.Workflows.list_workflows/0","doc":"Returns the list of workflows. Examples iex> list_workflows ( ) [ % Workflow { } , ... ]","ref":"Lightning.Workflows.html#list_workflows/0"},{"type":"function","title":"Lightning.Workflows.mark_for_deletion/2","doc":"Returns an %Ecto.Changeset{} for changing the workflow request_deletion. Examples iex> change_request_deletion ( workflow ) % Ecto.Changeset { data : % Workflow { } }","ref":"Lightning.Workflows.html#mark_for_deletion/2"},{"type":"function","title":"Lightning.Workflows.to_project_space/1","doc":"","ref":"Lightning.Workflows.html#to_project_space/1"},{"type":"function","title":"Lightning.Workflows.update_trigger/2","doc":"Updates a trigger","ref":"Lightning.Workflows.html#update_trigger/2"},{"type":"function","title":"Lightning.Workflows.update_workflow/2","doc":"Updates a workflow. Examples iex> update_workflow ( workflow , %{ field : new_value } ) { :ok , % Workflow { } } iex> update_workflow ( workflow , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Workflows.html#update_workflow/2"},{"type":"module","title":"Lightning.Workflows.Edge","doc":"Ecto model for Workflow Edges. A Workflow Edge represents a connection between two jobs (or a trigger and a job) in a workflow. The source of the edge is either a job or a trigger. The target of the edge is always a job.","ref":"Lightning.Workflows.Edge.html"},{"type":"function","title":"Lightning.Workflows.Edge.changeset/2","doc":"","ref":"Lightning.Workflows.Edge.html#changeset/2"},{"type":"function","title":"Lightning.Workflows.Edge.new/1","doc":"","ref":"Lightning.Workflows.Edge.html#new/1"},{"type":"function","title":"Lightning.Workflows.Edge.validate/1","doc":"","ref":"Lightning.Workflows.Edge.html#validate/1"},{"type":"type","title":"Lightning.Workflows.Edge.edge_condition/0","doc":"","ref":"Lightning.Workflows.Edge.html#t:edge_condition/0"},{"type":"type","title":"Lightning.Workflows.Edge.t/0","doc":"","ref":"Lightning.Workflows.Edge.html#t:t/0"},{"type":"module","title":"Lightning.Workflows.Graph","doc":"Utility to construct and manipulate a graph/plan made out of Jobs","ref":"Lightning.Workflows.Graph.html"},{"type":"function","title":"Lightning.Workflows.Graph.new/1","doc":"","ref":"Lightning.Workflows.Graph.html#new/1"},{"type":"function","title":"Lightning.Workflows.Graph.remove/2","doc":"","ref":"Lightning.Workflows.Graph.html#remove/2"},{"type":"function","title":"Lightning.Workflows.Graph.vertices/1","doc":"","ref":"Lightning.Workflows.Graph.html#vertices/1"},{"type":"type","title":"Lightning.Workflows.Graph.t/0","doc":"","ref":"Lightning.Workflows.Graph.html#t:t/0"},{"type":"type","title":"Lightning.Workflows.Graph.vertex/0","doc":"","ref":"Lightning.Workflows.Graph.html#t:vertex/0"},{"type":"module","title":"Lightning.Workflows.Workflow","doc":"Ecto model for Workflows. A Workflow contains the fields for defining a workflow. name A plain text identifier","ref":"Lightning.Workflows.Workflow.html"},{"type":"function","title":"Lightning.Workflows.Workflow.request_deletion_changeset/2","doc":"","ref":"Lightning.Workflows.Workflow.html#request_deletion_changeset/2"},{"type":"function","title":"Lightning.Workflows.Workflow.validate/1","doc":"","ref":"Lightning.Workflows.Workflow.html#validate/1"},{"type":"type","title":"Lightning.Workflows.Workflow.t/0","doc":"","ref":"Lightning.Workflows.Workflow.html#t:t/0"},{"type":"module","title":"Lightning.Workorders.SearchParams","doc":"This module is used to parse search parameters for workorders and provide a query to the database.","ref":"Lightning.Workorders.SearchParams.html"},{"type":"function","title":"Lightning.Workorders.SearchParams.new/1","doc":"","ref":"Lightning.Workorders.SearchParams.html#new/1"},{"type":"function","title":"Lightning.Workorders.SearchParams.to_uri_params/1","doc":"","ref":"Lightning.Workorders.SearchParams.html#to_uri_params/1"},{"type":"type","title":"Lightning.Workorders.SearchParams.t/0","doc":"","ref":"Lightning.Workorders.SearchParams.html#t:t/0"},{"type":"module","title":"LightningWeb","doc":"The entrypoint for defining your web interface, such as controllers, views, channels and so on. This can be used in your application as: use LightningWeb , :controller use LightningWeb , :view The definitions below will be executed for every view, controller, etc, so keep them short and clean, focused on imports, uses and aliases. Do NOT define functions inside the quoted expressions below. Instead, define any helper function in modules and import those modules here.","ref":"LightningWeb.html"},{"type":"macro","title":"LightningWeb.__using__/1","doc":"When used, dispatch to the appropriate controller/view/etc.","ref":"LightningWeb.html#__using__/1"},{"type":"function","title":"LightningWeb.channel/0","doc":"","ref":"LightningWeb.html#channel/0"},{"type":"function","title":"LightningWeb.component/0","doc":"","ref":"LightningWeb.html#component/0"},{"type":"function","title":"LightningWeb.controller/0","doc":"","ref":"LightningWeb.html#controller/0"},{"type":"function","title":"LightningWeb.html/0","doc":"","ref":"LightningWeb.html#html/0"},{"type":"function","title":"LightningWeb.live_component/0","doc":"","ref":"LightningWeb.html#live_component/0"},{"type":"function","title":"LightningWeb.live_view/1","doc":"","ref":"LightningWeb.html#live_view/1"},{"type":"function","title":"LightningWeb.router/0","doc":"","ref":"LightningWeb.html#router/0"},{"type":"function","title":"LightningWeb.static_paths/0","doc":"","ref":"LightningWeb.html#static_paths/0"},{"type":"function","title":"LightningWeb.verified_routes/0","doc":"","ref":"LightningWeb.html#verified_routes/0"},{"type":"function","title":"LightningWeb.view/0","doc":"","ref":"LightningWeb.html#view/0"},{"type":"module","title":"LightningWeb.API.Helpers","doc":"Helpers for the API views","ref":"LightningWeb.API.Helpers.html"},{"type":"function","title":"LightningWeb.API.Helpers.pagination_link/3","doc":"","ref":"LightningWeb.API.Helpers.html#pagination_link/3"},{"type":"function","title":"LightningWeb.API.Helpers.pagination_links/2","doc":"","ref":"LightningWeb.API.Helpers.html#pagination_links/2"},{"type":"function","title":"LightningWeb.API.Helpers.url_for/2","doc":"","ref":"LightningWeb.API.Helpers.html#url_for/2"},{"type":"module","title":"LightningWeb.API.JobController","doc":"","ref":"LightningWeb.API.JobController.html"},{"type":"function","title":"LightningWeb.API.JobController.index/2","doc":"","ref":"LightningWeb.API.JobController.html#index/2"},{"type":"function","title":"LightningWeb.API.JobController.show/2","doc":"","ref":"LightningWeb.API.JobController.html#show/2"},{"type":"module","title":"LightningWeb.API.ProjectController","doc":"","ref":"LightningWeb.API.ProjectController.html"},{"type":"function","title":"LightningWeb.API.ProjectController.index/2","doc":"","ref":"LightningWeb.API.ProjectController.html#index/2"},{"type":"function","title":"LightningWeb.API.ProjectController.show/2","doc":"","ref":"LightningWeb.API.ProjectController.html#show/2"},{"type":"module","title":"LightningWeb.API.ProvisioningController","doc":"","ref":"LightningWeb.API.ProvisioningController.html"},{"type":"function","title":"LightningWeb.API.ProvisioningController.create/2","doc":"","ref":"LightningWeb.API.ProvisioningController.html#create/2"},{"type":"function","title":"LightningWeb.API.ProvisioningController.show/2","doc":"","ref":"LightningWeb.API.ProvisioningController.html#show/2"},{"type":"module","title":"LightningWeb.API.RunController","doc":"","ref":"LightningWeb.API.RunController.html"},{"type":"function","title":"LightningWeb.API.RunController.index/2","doc":"","ref":"LightningWeb.API.RunController.html#index/2"},{"type":"function","title":"LightningWeb.API.RunController.show/2","doc":"","ref":"LightningWeb.API.RunController.html#show/2"},{"type":"module","title":"LightningWeb.AuditLive.Index","doc":"LiveView for listing Audit events","ref":"LightningWeb.AuditLive.Index.html"},{"type":"function","title":"LightningWeb.AuditLive.Index.diff/1","doc":"","ref":"LightningWeb.AuditLive.Index.html#diff/1"},{"type":"function","title":"LightningWeb.AuditLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.AuditLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.AuthProvidersLive.FormComponent","doc":"Form Component for working with a single Job A Job's adaptor field is a combination of the module name and the version. It's formatted as an NPM style string. The form allows the user to select a module by name and then it's version, while the version dropdown itself references adaptor directly. Meaning the adaptor_name dropdown and assigns value is not persisted.","ref":"LightningWeb.AuthProvidersLive.FormComponent.html"},{"type":"module","title":"LightningWeb.AuthProvidersLive.Index","doc":"LiveView for listing and managing Projects","ref":"LightningWeb.AuthProvidersLive.Index.html"},{"type":"module","title":"LightningWeb.ChangesetJSON","doc":"Renders changesets as JSON.","ref":"LightningWeb.ChangesetJSON.html"},{"type":"function","title":"LightningWeb.ChangesetJSON.error/1","doc":"","ref":"LightningWeb.ChangesetJSON.html#error/1"},{"type":"module","title":"LightningWeb.ChangesetView","doc":"","ref":"LightningWeb.ChangesetView.html"},{"type":"function","title":"LightningWeb.ChangesetView.__resource__/0","doc":"The resource name, as an atom, for this view","ref":"LightningWeb.ChangesetView.html#__resource__/0"},{"type":"function","title":"LightningWeb.ChangesetView.render/2","doc":"Renders the given template locally.","ref":"LightningWeb.ChangesetView.html#render/2"},{"type":"function","title":"LightningWeb.ChangesetView.template_not_found/2","doc":"Callback invoked when no template is found. By default it raises but can be customized to render a particular template.","ref":"LightningWeb.ChangesetView.html#template_not_found/2"},{"type":"function","title":"LightningWeb.ChangesetView.translate_errors/1","doc":"Traverses and translates changeset errors. See Ecto.Changeset.traverse_errors/2 and LightningWeb.ErrorHelpers.translate_error/1 for more details.","ref":"LightningWeb.ChangesetView.html#translate_errors/1"},{"type":"module","title":"LightningWeb.Components.Modal","doc":"A modal component that can be used to display a modal on the page. This currently isn't used anywhere but should be used in the future to replace the existing modal implementations.","ref":"LightningWeb.Components.Modal.html"},{"type":"module","title":"LightningWeb.CredentialLive.Edit","doc":"LiveView for editing a single Credential, which inturn uses LightningWeb.CredentialLive.FormComponent for common functionality.","ref":"LightningWeb.CredentialLive.Edit.html"},{"type":"function","title":"LightningWeb.CredentialLive.Edit.handle_info/2","doc":"A generic handler for forwarding updates from PubSub","ref":"LightningWeb.CredentialLive.Edit.html#handle_info/2"},{"type":"module","title":"LightningWeb.CredentialLive.FormComponent","doc":"Form Component for working with a single Credential","ref":"LightningWeb.CredentialLive.FormComponent.html"},{"type":"function","title":"LightningWeb.CredentialLive.FormComponent.credential_transfer/1","doc":"Attributes users ( :list ) (required) form ( :map ) (required)","ref":"LightningWeb.CredentialLive.FormComponent.html#credential_transfer/1"},{"type":"function","title":"LightningWeb.CredentialLive.FormComponent.form_component/1","doc":"Switcher components for different types of credentials. Attributes type ( :string ) (required) form ( :map ) (required) update_body ( :any ) Slots inner_block","ref":"LightningWeb.CredentialLive.FormComponent.html#form_component/1"},{"type":"function","title":"LightningWeb.CredentialLive.FormComponent.project_credentials/1","doc":"Attributes form ( :map ) (required) projects ( :list ) (required) selected ( :map ) (required) phx_target ( :any ) - Defaults to nil .","ref":"LightningWeb.CredentialLive.FormComponent.html#project_credentials/1"},{"type":"module","title":"LightningWeb.CredentialLive.GoogleSheetsComponent","doc":"Form component to setup a Google Sheets component. This component has several moving parts: Subscribes to a PubSub topic specially link to the component id See: LightningWeb.OauthCredentialHelper . Uses the Lightning.Google module to set up an OAuth client for generating urls, exchanging the code and requesting a new access_token . The flow for creating a new token is: Generate an authorization link which contains: The authorization url from the Google client with the applications callback_url A state string that is an encrypted set of data with the components module and id in it Once the user authorizes the client the callback is requested with a code The LightningWeb.OidcController decodes the state returned to it and does a 'broadcast_forward' which is simply a message expected to be received by a LiveView and applied to Phoenix.LiveView.send_update/3 . The component receives the code and requests a token. Any changes to the token (Credential body) are still handled by the parent component and so a update_body function is passed in to send params changes back up to update the form.","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html"},{"type":"function","title":"LightningWeb.CredentialLive.GoogleSheetsComponent.authorize_button/1","doc":"","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html#authorize_button/1"},{"type":"function","title":"LightningWeb.CredentialLive.GoogleSheetsComponent.disabled_authorize_button/1","doc":"","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html#disabled_authorize_button/1"},{"type":"function","title":"LightningWeb.CredentialLive.GoogleSheetsComponent.error_block/1","doc":"","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html#error_block/1"},{"type":"function","title":"LightningWeb.CredentialLive.GoogleSheetsComponent.fieldset/1","doc":"Attributes form ( :map ) (required) update_body ( :any ) (required) Slots inner_block","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html#fieldset/1"},{"type":"function","title":"LightningWeb.CredentialLive.GoogleSheetsComponent.userinfo/1","doc":"","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html#userinfo/1"},{"type":"module","title":"LightningWeb.CredentialLive.Index","doc":"LiveView for listing and managing credentials","ref":"LightningWeb.CredentialLive.Index.html"},{"type":"function","title":"LightningWeb.CredentialLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.CredentialLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.CredentialLive.JsonSchemaBodyComponent","doc":"","ref":"LightningWeb.CredentialLive.JsonSchemaBodyComponent.html"},{"type":"function","title":"LightningWeb.CredentialLive.JsonSchemaBodyComponent.fieldset/1","doc":"Attributes form ( :map ) (required) Slots inner_block","ref":"LightningWeb.CredentialLive.JsonSchemaBodyComponent.html#fieldset/1"},{"type":"function","title":"LightningWeb.CredentialLive.JsonSchemaBodyComponent.schema_input/1","doc":"Attributes form ( :map ) (required) schema ( :map ) (required) field ( :any ) (required)","ref":"LightningWeb.CredentialLive.JsonSchemaBodyComponent.html#schema_input/1"},{"type":"module","title":"LightningWeb.CredentialLive.RawBodyComponent","doc":"","ref":"LightningWeb.CredentialLive.RawBodyComponent.html"},{"type":"function","title":"LightningWeb.CredentialLive.RawBodyComponent.fieldset/1","doc":"Attributes form ( :map ) (required) Slots inner_block","ref":"LightningWeb.CredentialLive.RawBodyComponent.html#fieldset/1"},{"type":"module","title":"LightningWeb.CredentialLive.TypePicker","doc":"","ref":"LightningWeb.CredentialLive.TypePicker.html"},{"type":"module","title":"LightningWeb.DataclipLive.Edit","doc":"LiveView for editing a single dataclip.","ref":"LightningWeb.DataclipLive.Edit.html"},{"type":"function","title":"LightningWeb.DataclipLive.Edit.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.DataclipLive.Edit.html#render/1"},{"type":"module","title":"LightningWeb.DataclipLive.FormComponent","doc":"Form Component for working with a single dataclip","ref":"LightningWeb.DataclipLive.FormComponent.html"},{"type":"function","title":"LightningWeb.DataclipLive.FormComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.DataclipLive.FormComponent.html#render/1"},{"type":"module","title":"LightningWeb.DataclipLive.Index","doc":"LiveView for listing and working with a list of Dataclips","ref":"LightningWeb.DataclipLive.Index.html"},{"type":"function","title":"LightningWeb.DataclipLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.DataclipLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.DownloadsController","doc":"","ref":"LightningWeb.DownloadsController.html"},{"type":"function","title":"LightningWeb.DownloadsController.download_project_yaml/2","doc":"","ref":"LightningWeb.DownloadsController.html#download_project_yaml/2"},{"type":"module","title":"LightningWeb.Endpoint","doc":"","ref":"LightningWeb.Endpoint.html"},{"type":"function","title":"LightningWeb.Endpoint.broadcast/3","doc":"Callback implementation for Phoenix.Endpoint.broadcast/3 .","ref":"LightningWeb.Endpoint.html#broadcast/3"},{"type":"function","title":"LightningWeb.Endpoint.broadcast!/3","doc":"Callback implementation for Phoenix.Endpoint.broadcast!/3 .","ref":"LightningWeb.Endpoint.html#broadcast!/3"},{"type":"function","title":"LightningWeb.Endpoint.broadcast_from/4","doc":"Callback implementation for Phoenix.Endpoint.broadcast_from/4 .","ref":"LightningWeb.Endpoint.html#broadcast_from/4"},{"type":"function","title":"LightningWeb.Endpoint.broadcast_from!/4","doc":"Callback implementation for Phoenix.Endpoint.broadcast_from!/4 .","ref":"LightningWeb.Endpoint.html#broadcast_from!/4"},{"type":"function","title":"LightningWeb.Endpoint.call/2","doc":"Callback implementation for Plug.call/2 .","ref":"LightningWeb.Endpoint.html#call/2"},{"type":"function","title":"LightningWeb.Endpoint.child_spec/1","doc":"Returns the child specification to start the endpoint under a supervision tree.","ref":"LightningWeb.Endpoint.html#child_spec/1"},{"type":"function","title":"LightningWeb.Endpoint.config/2","doc":"Returns the endpoint configuration for key Returns default if the key does not exist.","ref":"LightningWeb.Endpoint.html#config/2"},{"type":"function","title":"LightningWeb.Endpoint.config_change/2","doc":"Reloads the configuration given the application environment changes.","ref":"LightningWeb.Endpoint.html#config_change/2"},{"type":"function","title":"LightningWeb.Endpoint.host/0","doc":"Returns the host for the given endpoint.","ref":"LightningWeb.Endpoint.html#host/0"},{"type":"function","title":"LightningWeb.Endpoint.init/1","doc":"Callback implementation for Plug.init/1 .","ref":"LightningWeb.Endpoint.html#init/1"},{"type":"function","title":"LightningWeb.Endpoint.local_broadcast/3","doc":"Callback implementation for Phoenix.Endpoint.local_broadcast/3 .","ref":"LightningWeb.Endpoint.html#local_broadcast/3"},{"type":"function","title":"LightningWeb.Endpoint.local_broadcast_from/4","doc":"Callback implementation for Phoenix.Endpoint.local_broadcast_from/4 .","ref":"LightningWeb.Endpoint.html#local_broadcast_from/4"},{"type":"function","title":"LightningWeb.Endpoint.path/1","doc":"Generates the path information when routing to this endpoint.","ref":"LightningWeb.Endpoint.html#path/1"},{"type":"function","title":"LightningWeb.Endpoint.script_name/0","doc":"Generates the script name.","ref":"LightningWeb.Endpoint.html#script_name/0"},{"type":"function","title":"LightningWeb.Endpoint.start_link/1","doc":"Starts the endpoint supervision tree. All other options are merged into the endpoint configuration.","ref":"LightningWeb.Endpoint.html#start_link/1"},{"type":"function","title":"LightningWeb.Endpoint.static_integrity/1","doc":"Generates a base64-encoded cryptographic hash (sha512) to a static file in priv/static . Meant to be used for Subresource Integrity with CDNs.","ref":"LightningWeb.Endpoint.html#static_integrity/1"},{"type":"function","title":"LightningWeb.Endpoint.static_lookup/1","doc":"Returns a two item tuple with the first item being the static_path and the second item being the static_integrity .","ref":"LightningWeb.Endpoint.html#static_lookup/1"},{"type":"function","title":"LightningWeb.Endpoint.static_path/1","doc":"Generates a route to a static file in priv/static .","ref":"LightningWeb.Endpoint.html#static_path/1"},{"type":"function","title":"LightningWeb.Endpoint.static_url/0","doc":"Generates the static URL without any path information. It uses the configuration under :static_url to generate such. It falls back to :url if :static_url is not set.","ref":"LightningWeb.Endpoint.html#static_url/0"},{"type":"function","title":"LightningWeb.Endpoint.struct_url/0","doc":"Generates the endpoint base URL but as a URI struct. It uses the configuration under :url to generate such. Useful for manipulating the URL data and passing it to URL helpers.","ref":"LightningWeb.Endpoint.html#struct_url/0"},{"type":"function","title":"LightningWeb.Endpoint.subscribe/2","doc":"Callback implementation for Phoenix.Endpoint.subscribe/2 .","ref":"LightningWeb.Endpoint.html#subscribe/2"},{"type":"function","title":"LightningWeb.Endpoint.unsubscribe/1","doc":"Callback implementation for Phoenix.Endpoint.unsubscribe/1 .","ref":"LightningWeb.Endpoint.html#unsubscribe/1"},{"type":"function","title":"LightningWeb.Endpoint.url/0","doc":"Generates the endpoint base URL without any path information. It uses the configuration under :url to generate such.","ref":"LightningWeb.Endpoint.html#url/0"},{"type":"module","title":"LightningWeb.ErrorView","doc":"","ref":"LightningWeb.ErrorView.html"},{"type":"function","title":"LightningWeb.ErrorView.__resource__/0","doc":"The resource name, as an atom, for this view","ref":"LightningWeb.ErrorView.html#__resource__/0"},{"type":"function","title":"LightningWeb.ErrorView.render/2","doc":"Renders the given template locally.","ref":"LightningWeb.ErrorView.html#render/2"},{"type":"function","title":"LightningWeb.ErrorView.template_not_found/2","doc":"Callback invoked when no template is found. By default it raises but can be customized to render a particular template.","ref":"LightningWeb.ErrorView.html#template_not_found/2"},{"type":"module","title":"LightningWeb.FallbackController","doc":"Translates controller action results into valid Plug.Conn responses. See Phoenix.Controller.action_fallback/1 for more details.","ref":"LightningWeb.FallbackController.html"},{"type":"module","title":"LightningWeb.FirstSetupLive.Superuser","doc":"Superuser setup liveview Allows the creation on the first user in the system. It has only one action: :show","ref":"LightningWeb.FirstSetupLive.Superuser.html"},{"type":"function","title":"LightningWeb.FirstSetupLive.Superuser.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.FirstSetupLive.Superuser.html#render/1"},{"type":"module","title":"LightningWeb.FormHelpers","doc":"Conveniences for building forms.","ref":"LightningWeb.FormHelpers.html"},{"type":"module","title":"LightningWeb.Gettext","doc":"A module providing Internationalization with a gettext-based API. By using Gettext , your module gains a set of macros for translations, for example: import LightningWeb.Gettext # Simple translation gettext ( "Here is the string to translate" ) # Plural translation ngettext ( "Here is the string to translate" , "Here are the strings to translate" , 3 ) # Domain-based translation dgettext ( "errors" , "Here is the error message to translate" ) See the Gettext Docs for detailed usage.","ref":"LightningWeb.Gettext.html"},{"type":"macro","title":"LightningWeb.Gettext.dgettext/3","doc":"Callback implementation for Gettext.Backend.dgettext/3 .","ref":"LightningWeb.Gettext.html#dgettext/3"},{"type":"macro","title":"LightningWeb.Gettext.dgettext_noop/2","doc":"Callback implementation for Gettext.Backend.dgettext_noop/2 .","ref":"LightningWeb.Gettext.html#dgettext_noop/2"},{"type":"macro","title":"LightningWeb.Gettext.dngettext/5","doc":"Callback implementation for Gettext.Backend.dngettext/5 .","ref":"LightningWeb.Gettext.html#dngettext/5"},{"type":"macro","title":"LightningWeb.Gettext.dngettext_noop/3","doc":"Callback implementation for Gettext.Backend.dngettext_noop/3 .","ref":"LightningWeb.Gettext.html#dngettext_noop/3"},{"type":"macro","title":"LightningWeb.Gettext.dpgettext/4","doc":"Callback implementation for Gettext.Backend.dpgettext/4 .","ref":"LightningWeb.Gettext.html#dpgettext/4"},{"type":"macro","title":"LightningWeb.Gettext.dpgettext_noop/3","doc":"","ref":"LightningWeb.Gettext.html#dpgettext_noop/3"},{"type":"macro","title":"LightningWeb.Gettext.dpngettext/6","doc":"Callback implementation for Gettext.Backend.dpngettext/6 .","ref":"LightningWeb.Gettext.html#dpngettext/6"},{"type":"macro","title":"LightningWeb.Gettext.dpngettext_noop/4","doc":"","ref":"LightningWeb.Gettext.html#dpngettext_noop/4"},{"type":"macro","title":"LightningWeb.Gettext.gettext/2","doc":"Callback implementation for Gettext.Backend.gettext/2 .","ref":"LightningWeb.Gettext.html#gettext/2"},{"type":"macro","title":"LightningWeb.Gettext.gettext_comment/1","doc":"Callback implementation for Gettext.Backend.gettext_comment/1 .","ref":"LightningWeb.Gettext.html#gettext_comment/1"},{"type":"macro","title":"LightningWeb.Gettext.gettext_noop/1","doc":"Callback implementation for Gettext.Backend.gettext_noop/1 .","ref":"LightningWeb.Gettext.html#gettext_noop/1"},{"type":"function","title":"LightningWeb.Gettext.handle_missing_bindings/2","doc":"Callback implementation for Gettext.Backend.handle_missing_bindings/2 .","ref":"LightningWeb.Gettext.html#handle_missing_bindings/2"},{"type":"function","title":"LightningWeb.Gettext.handle_missing_plural_translation/7","doc":"Callback implementation for Gettext.Backend.handle_missing_plural_translation/7 .","ref":"LightningWeb.Gettext.html#handle_missing_plural_translation/7"},{"type":"function","title":"LightningWeb.Gettext.handle_missing_translation/5","doc":"Callback implementation for Gettext.Backend.handle_missing_translation/5 .","ref":"LightningWeb.Gettext.html#handle_missing_translation/5"},{"type":"function","title":"LightningWeb.Gettext.lgettext/5","doc":"","ref":"LightningWeb.Gettext.html#lgettext/5"},{"type":"function","title":"LightningWeb.Gettext.lngettext/7","doc":"","ref":"LightningWeb.Gettext.html#lngettext/7"},{"type":"macro","title":"LightningWeb.Gettext.ngettext/4","doc":"Callback implementation for Gettext.Backend.ngettext/4 .","ref":"LightningWeb.Gettext.html#ngettext/4"},{"type":"macro","title":"LightningWeb.Gettext.ngettext_noop/2","doc":"Callback implementation for Gettext.Backend.ngettext_noop/2 .","ref":"LightningWeb.Gettext.html#ngettext_noop/2"},{"type":"macro","title":"LightningWeb.Gettext.pgettext/3","doc":"Callback implementation for Gettext.Backend.pgettext/3 .","ref":"LightningWeb.Gettext.html#pgettext/3"},{"type":"macro","title":"LightningWeb.Gettext.pgettext_noop/2","doc":"","ref":"LightningWeb.Gettext.html#pgettext_noop/2"},{"type":"macro","title":"LightningWeb.Gettext.pngettext/5","doc":"Callback implementation for Gettext.Backend.pngettext/5 .","ref":"LightningWeb.Gettext.html#pngettext/5"},{"type":"macro","title":"LightningWeb.Gettext.pngettext_noop/3","doc":"","ref":"LightningWeb.Gettext.html#pngettext_noop/3"},{"type":"module","title":"LightningWeb.HealthCheck","doc":"","ref":"LightningWeb.HealthCheck.html"},{"type":"function","title":"LightningWeb.HealthCheck.call/2","doc":"Callback implementation for Plug.call/2 .","ref":"LightningWeb.HealthCheck.html#call/2"},{"type":"function","title":"LightningWeb.HealthCheck.init/1","doc":"Callback implementation for Plug.init/1 .","ref":"LightningWeb.HealthCheck.html#init/1"},{"type":"module","title":"LightningWeb.Hooks","doc":"LiveView Hooks","ref":"LightningWeb.Hooks.html"},{"type":"function","title":"LightningWeb.Hooks.on_mount/4","doc":"Finds and assigns a project to the socket, if a user doesn't have access they are redirected and shown a 'No Access' screen via a :nav flash message. There is a fallthru function, when there is no project_id in the params - this is for liveviews that may or may not have a project_id depending on usage - like DashboardLive .","ref":"LightningWeb.Hooks.html#on_mount/4"},{"type":"module","title":"LightningWeb.InitAssigns","doc":"Ensures common assigns are applied to all LiveViews attaching this hook.","ref":"LightningWeb.InitAssigns.html"},{"type":"function","title":"LightningWeb.InitAssigns.on_mount/4","doc":"","ref":"LightningWeb.InitAssigns.html#on_mount/4"},{"type":"module","title":"LightningWeb.JobLive.AdaptorPicker","doc":"Component allowing selecting an adaptor and it's version","ref":"LightningWeb.JobLive.AdaptorPicker.html"},{"type":"function","title":"LightningWeb.JobLive.AdaptorPicker.display_name_for_adaptor/1","doc":"Converts standard adaptor names into "label","value" lists and returns non-standard names as merely "value"; both can be passed directly into a select option list.","ref":"LightningWeb.JobLive.AdaptorPicker.html#display_name_for_adaptor/1"},{"type":"function","title":"LightningWeb.JobLive.AdaptorPicker.get_adaptor_version_options/1","doc":"","ref":"LightningWeb.JobLive.AdaptorPicker.html#get_adaptor_version_options/1"},{"type":"function","title":"LightningWeb.JobLive.AdaptorPicker.render/1","doc":"Attributes form ( :map ) (required) on_change ( :any ) - Defaults to nil . disabled ( :boolean ) - Defaults to false .","ref":"LightningWeb.JobLive.AdaptorPicker.html#render/1"},{"type":"module","title":"LightningWeb.JobLive.CredentialPicker","doc":"Component allowing selecting a credential or creating a new one via a modal.","ref":"LightningWeb.JobLive.CredentialPicker.html"},{"type":"function","title":"LightningWeb.JobLive.CredentialPicker.render/1","doc":"Attributes form ( :map ) (required) disabled ( :boolean ) - Defaults to false . credentials ( :list ) (required) on_change ( :any ) - Defaults to nil .","ref":"LightningWeb.JobLive.CredentialPicker.html#render/1"},{"type":"module","title":"LightningWeb.JobLive.CronSetupComponent","doc":"A live component for managing cron setup in a form. The CronSetupComponent provides an interactive form for configuring cron settings. It includes fields for specifying the frequency, minute, hour, weekday, monthday, and cron expression. Usage Include the CronSetupComponent in your live view or template. Pass the necessary assigns to the component, such as form , on_change , and disabled . Handle the cron_expression_change event to capture changes in the form inputs. Use the updated cron_expression in your application logic.","ref":"LightningWeb.JobLive.CronSetupComponent.html"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.build_cron_expression/2","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#build_cron_expression/2"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.frequency_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#frequency_field/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.get_cron_data/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#get_cron_data/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.hour_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#hour_field/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.minute_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#minute_field/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.monthday_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#monthday_field/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.render/1","doc":"Attributes id ( :string ) (required) form ( :map ) (required) on_change ( :any ) (required) disabled ( :boolean ) (required)","ref":"LightningWeb.JobLive.CronSetupComponent.html#render/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.time_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#time_field/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.weekday_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#weekday_field/1"},{"type":"module","title":"LightningWeb.JobLive.JobBuilder","doc":"Job Builder Panel","ref":"LightningWeb.JobLive.JobBuilder.html"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.delete_title/2","doc":"","ref":"LightningWeb.JobLive.JobBuilder.html#delete_title/2"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.follow_run/2","doc":"","ref":"LightningWeb.JobLive.JobBuilder.html#follow_run/2"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.render/1","doc":"Attributes return_to ( :string ) (required) params ( :map ) - Defaults to %{} . can_edit_job ( :boolean ) (required) can_run_job ( :boolean ) (required)","ref":"LightningWeb.JobLive.JobBuilder.html#render/1"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.send_adaptor/2","doc":"","ref":"LightningWeb.JobLive.JobBuilder.html#send_adaptor/2"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.send_credential/2","doc":"","ref":"LightningWeb.JobLive.JobBuilder.html#send_credential/2"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.update_cron_expression/2","doc":"","ref":"LightningWeb.JobLive.JobBuilder.html#update_cron_expression/2"},{"type":"module","title":"LightningWeb.JobLive.JobBuilderComponents","doc":"","ref":"LightningWeb.JobLive.JobBuilderComponents.html"},{"type":"function","title":"LightningWeb.JobLive.JobBuilderComponents.job_editor_component/1","doc":"Attributes adaptor ( :string ) (required) disabled ( :boolean ) - Defaults to false . source ( :string ) (required) change_event ( :string ) - Defaults to "job_body_changed" . Global attributes are accepted.","ref":"LightningWeb.JobLive.JobBuilderComponents.html#job_editor_component/1"},{"type":"function","title":"LightningWeb.JobLive.JobBuilderComponents.trigger_picker/1","doc":"Attributes form ( :map ) (required) upstream_jobs ( :list ) (required) on_cron_change ( :any ) (required) disabled ( :boolean ) - Defaults to true .","ref":"LightningWeb.JobLive.JobBuilderComponents.html#trigger_picker/1"},{"type":"function","title":"LightningWeb.JobLive.JobBuilderComponents.when_invalid/1","doc":"Attributes changeset ( :map ) (required) field ( :atom ) (required) Slots inner_block (required)","ref":"LightningWeb.JobLive.JobBuilderComponents.html#when_invalid/1"},{"type":"module","title":"LightningWeb.JobLive.ManualRunComponent","doc":"","ref":"LightningWeb.JobLive.ManualRunComponent.html"},{"type":"function","title":"LightningWeb.JobLive.ManualRunComponent.render/1","doc":"Attributes job ( :map ) (required) on_run ( :any ) (required) user ( :map ) (required) selected_dataclip_id ( :string ) (required)","ref":"LightningWeb.JobLive.ManualRunComponent.html#render/1"},{"type":"module","title":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder","doc":"","ref":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder.html"},{"type":"function","title":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder.changeset/2","doc":"","ref":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder.html#changeset/2"},{"type":"module","title":"LightningWeb.LiveHelpers","doc":"General purpose LiveView helper functions","ref":"LightningWeb.LiveHelpers.html"},{"type":"function","title":"LightningWeb.LiveHelpers.display_short_uuid/1","doc":"","ref":"LightningWeb.LiveHelpers.html#display_short_uuid/1"},{"type":"function","title":"LightningWeb.LiveHelpers.fade_in/1","doc":"","ref":"LightningWeb.LiveHelpers.html#fade_in/1"},{"type":"function","title":"LightningWeb.LiveHelpers.fade_out/1","doc":"","ref":"LightningWeb.LiveHelpers.html#fade_out/1"},{"type":"function","title":"LightningWeb.LiveHelpers.live_error_block/1","doc":"","ref":"LightningWeb.LiveHelpers.html#live_error_block/1"},{"type":"function","title":"LightningWeb.LiveHelpers.live_info_block/1","doc":"","ref":"LightningWeb.LiveHelpers.html#live_info_block/1"},{"type":"function","title":"LightningWeb.LiveHelpers.live_nav_block/1","doc":"","ref":"LightningWeb.LiveHelpers.html#live_nav_block/1"},{"type":"module","title":"LightningWeb.ModalPortal","doc":"Component for rendering content inside layout without full DOM patch.","ref":"LightningWeb.ModalPortal.html"},{"type":"function","title":"LightningWeb.ModalPortal.close_modal/0","doc":"","ref":"LightningWeb.ModalPortal.html#close_modal/0"},{"type":"function","title":"LightningWeb.ModalPortal.handle_event/3","doc":"Callback implementation for Phoenix.LiveComponent.handle_event/3 .","ref":"LightningWeb.ModalPortal.html#handle_event/3"},{"type":"function","title":"LightningWeb.ModalPortal.on_hide/2","doc":"","ref":"LightningWeb.ModalPortal.html#on_hide/2"},{"type":"function","title":"LightningWeb.ModalPortal.on_show/2","doc":"","ref":"LightningWeb.ModalPortal.html#on_show/2"},{"type":"function","title":"LightningWeb.ModalPortal.open_modal/2","doc":"","ref":"LightningWeb.ModalPortal.html#open_modal/2"},{"type":"function","title":"LightningWeb.ModalPortal.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.ModalPortal.html#render/1"},{"type":"function","title":"LightningWeb.ModalPortal.update/2","doc":"Callback implementation for Phoenix.LiveComponent.update/2 .","ref":"LightningWeb.ModalPortal.html#update/2"},{"type":"module","title":"LightningWeb.OauthCredentialHelper","doc":"A set of helper functions to encodes state and coordinate OAuth callbacks back to a LiveView component.","ref":"LightningWeb.OauthCredentialHelper.html"},{"type":"function","title":"LightningWeb.OauthCredentialHelper.broadcast/2","doc":"","ref":"LightningWeb.OauthCredentialHelper.html#broadcast/2"},{"type":"function","title":"LightningWeb.OauthCredentialHelper.broadcast_forward/3","doc":"Broadcast a message specifically for forwarding a message to a component. It expects a subscription_id , the module of the component and opts being a keyword list containing an :id key of the specific component. See: Phoenix.LiveView.send_update/3 for more info. A corresponding LiveView (that is subscribed) is expected to have a matching handle_info/2 that looks like this: def handle_info ( { :forward , mod , opts } , socket ) do send_update ( mod , opts ) { :noreply , socket } end","ref":"LightningWeb.OauthCredentialHelper.html#broadcast_forward/3"},{"type":"function","title":"LightningWeb.OauthCredentialHelper.build_state/3","doc":"Encode and encrypt the callback data which will be sent so a provider as the state key in the request. The values are: subscription_id The same ID used to subscribe. The component module The LiveView component that is going to receive update The component id The ID of the component","ref":"LightningWeb.OauthCredentialHelper.html#build_state/3"},{"type":"function","title":"LightningWeb.OauthCredentialHelper.decode_state/1","doc":"","ref":"LightningWeb.OauthCredentialHelper.html#decode_state/1"},{"type":"function","title":"LightningWeb.OauthCredentialHelper.subscribe/1","doc":"Subscribe to the oauth_credential topic. It expects the a unique ID for the topic, usually the LiveView's socket.id .","ref":"LightningWeb.OauthCredentialHelper.html#subscribe/1"},{"type":"module","title":"LightningWeb.OidcController","doc":"","ref":"LightningWeb.OidcController.html"},{"type":"function","title":"LightningWeb.OidcController.new/2","doc":"Once the user has completed the authorization flow from above, they are returned here, and the authorization code is used to log them in.","ref":"LightningWeb.OidcController.html#new/2"},{"type":"function","title":"LightningWeb.OidcController.show/2","doc":"Given a known provider, redirect them to the authorize url on the provider","ref":"LightningWeb.OidcController.html#show/2"},{"type":"module","title":"LightningWeb.PageView","doc":"","ref":"LightningWeb.PageView.html"},{"type":"function","title":"LightningWeb.PageView.__resource__/0","doc":"The resource name, as an atom, for this view","ref":"LightningWeb.PageView.html#__resource__/0"},{"type":"function","title":"LightningWeb.PageView.render/2","doc":"Renders the given template locally.","ref":"LightningWeb.PageView.html#render/2"},{"type":"function","title":"LightningWeb.PageView.template_not_found/2","doc":"Callback invoked when no template is found. By default it raises but can be customized to render a particular template.","ref":"LightningWeb.PageView.html#template_not_found/2"},{"type":"module","title":"LightningWeb.Pagination","doc":"Pagination Components This has been extracted and adapted from scrivener_html . See: https://github.com/mgwidmann/scrivener_html","ref":"LightningWeb.Pagination.html"},{"type":"function","title":"LightningWeb.Pagination.page_link/1","doc":"","ref":"LightningWeb.Pagination.html#page_link/1"},{"type":"function","title":"LightningWeb.Pagination.pagination_bar/1","doc":"","ref":"LightningWeb.Pagination.html#pagination_bar/1"},{"type":"function","title":"LightningWeb.Pagination.raw_pagination_links/2","doc":"Returns the raw data in order to generate the proper HTML for pagination links. Data is returned in a {text, page_number} format where text is intended to be the text of the link and page_number is the page it should go to. Defaults are already supplied and they are as follows: [ distance : 5 , next : :next , previous : :previous , first : true , last : true , ellipsis : :ellipsis ] distance must be a positive non-zero integer or an exception is raised. next and previous should be strings but can be anything you want as long as it is truthy, falsey values will remove them from the output. first and last are only booleans, and they just include/remove their respective link from output. An example of the data returned: iex> Scrivener.HTML . raw_pagination_links ( %{ total_pages : 10 , page_number : 5 } ) [ { "<<" , 4 } , { 1 , 1 } , { 2 , 2 } , { 3 , 3 } , { 4 , 4 } , { 5 , 5 } , { 6 , 6 } , { 7 , 7 } , { 8 , 8 } , { 9 , 9 } , { 10 , 10 } , { ">>" , 6 } ] iex> Scrivener.HTML . raw_pagination_links ( %{ total_pages : 20 , page_number : 10 } , first : [ "←" ] , last : [ "→" ] ) [ { "<<" , 9 } , { [ "←" ] , 1 } , { :ellipsis , { :safe , "…" } } , { 5 , 5 } , { 6 , 6 } , { 7 , 7 } , { 8 , 8 } , { 9 , 9 } , { 10 , 10 } , { 11 , 11 } , { 12 , 12 } , { 13 , 13 } , { 14 , 14 } , { 15 , 15 } , { :ellipsis , { :safe , "…" } } , { [ "→" ] , 20 } , { ">>" , 11 } ] Simply loop and pattern match over each item and transform it to your custom HTML.","ref":"LightningWeb.Pagination.html#raw_pagination_links/2"},{"type":"module","title":"LightningWeb.Plugs.FirstSetup","doc":"Plug to redirect HTTP requests to /first_setup if there are no superusers in the system yet.","ref":"LightningWeb.Plugs.FirstSetup.html"},{"type":"module","title":"LightningWeb.ProfileLive.Edit","doc":"LiveView for user profile page.","ref":"LightningWeb.ProfileLive.Edit.html"},{"type":"function","title":"LightningWeb.ProfileLive.Edit.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.ProfileLive.Edit.html#render/1"},{"type":"module","title":"LightningWeb.ProfileLive.FormComponent","doc":"Form component update profile email and password","ref":"LightningWeb.ProfileLive.FormComponent.html"},{"type":"function","title":"LightningWeb.ProfileLive.FormComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.ProfileLive.FormComponent.html#render/1"},{"type":"module","title":"LightningWeb.ProfileLive.MfaComponent","doc":"Component to enable MFA on a User's account","ref":"LightningWeb.ProfileLive.MfaComponent.html"},{"type":"function","title":"LightningWeb.ProfileLive.MfaComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.ProfileLive.MfaComponent.html#render/1"},{"type":"module","title":"LightningWeb.ProjectLive.FormComponent","doc":"Form Component for working with a single Job A Job's adaptor field is a combination of the module name and the version. It's formatted as an NPM style string. The form allows the user to select a module by name and then it's version, while the version dropdown itself references adaptor directly. Meaning the adaptor_name dropdown and assigns value is not persisted.","ref":"LightningWeb.ProjectLive.FormComponent.html"},{"type":"function","title":"LightningWeb.ProjectLive.FormComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.ProjectLive.FormComponent.html#render/1"},{"type":"module","title":"LightningWeb.ProjectLive.Index","doc":"LiveView for listing and managing Projects","ref":"LightningWeb.ProjectLive.Index.html"},{"type":"function","title":"LightningWeb.ProjectLive.Index.delete_action/1","doc":"","ref":"LightningWeb.ProjectLive.Index.html#delete_action/1"},{"type":"function","title":"LightningWeb.ProjectLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.ProjectLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.ProjectLive.MFARequired","doc":"Liveview for project access denied error messages","ref":"LightningWeb.ProjectLive.MFARequired.html"},{"type":"function","title":"LightningWeb.ProjectLive.MFARequired.on_mount/4","doc":"","ref":"LightningWeb.ProjectLive.MFARequired.html#on_mount/4"},{"type":"function","title":"LightningWeb.ProjectLive.MFARequired.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.ProjectLive.MFARequired.html#render/1"},{"type":"module","title":"LightningWeb.ProjectLive.Settings","doc":"Index Liveview for Runs","ref":"LightningWeb.ProjectLive.Settings.html"},{"type":"function","title":"LightningWeb.ProjectLive.Settings.digest/1","doc":"","ref":"LightningWeb.ProjectLive.Settings.html#digest/1"},{"type":"function","title":"LightningWeb.ProjectLive.Settings.failure_alert/1","doc":"","ref":"LightningWeb.ProjectLive.Settings.html#failure_alert/1"},{"type":"function","title":"LightningWeb.ProjectLive.Settings.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.ProjectLive.Settings.html#render/1"},{"type":"function","title":"LightningWeb.ProjectLive.Settings.role/1","doc":"","ref":"LightningWeb.ProjectLive.Settings.html#role/1"},{"type":"function","title":"LightningWeb.ProjectLive.Settings.user/1","doc":"","ref":"LightningWeb.ProjectLive.Settings.html#user/1"},{"type":"module","title":"LightningWeb.RouteHelpers","doc":"Convenience functions for generating paths.","ref":"LightningWeb.RouteHelpers.html"},{"type":"function","title":"LightningWeb.RouteHelpers.oidc_callback_url/0","doc":"","ref":"LightningWeb.RouteHelpers.html#oidc_callback_url/0"},{"type":"function","title":"LightningWeb.RouteHelpers.show_run_url/2","doc":"","ref":"LightningWeb.RouteHelpers.html#show_run_url/2"},{"type":"module","title":"LightningWeb.Router","doc":"","ref":"LightningWeb.Router.html"},{"type":"function","title":"LightningWeb.Router.api/2","doc":"","ref":"LightningWeb.Router.html#api/2"},{"type":"function","title":"LightningWeb.Router.browser/2","doc":"","ref":"LightningWeb.Router.html#browser/2"},{"type":"function","title":"LightningWeb.Router.call/2","doc":"Callback invoked by Plug on every request.","ref":"LightningWeb.Router.html#call/2"},{"type":"function","title":"LightningWeb.Router.init/1","doc":"Callback required by Plug that initializes the router for serving web requests.","ref":"LightningWeb.Router.html#init/1"},{"type":"function","title":"LightningWeb.Router.storybook_assets/2","doc":"","ref":"LightningWeb.Router.html#storybook_assets/2"},{"type":"function","title":"LightningWeb.Router.storybook_browser/2","doc":"","ref":"LightningWeb.Router.html#storybook_browser/2"},{"type":"module","title":"LightningWeb.RunLive.Index","doc":"Index Liveview for Runs","ref":"LightningWeb.RunLive.Index.html"},{"type":"function","title":"LightningWeb.RunLive.Index.checked/2","doc":"","ref":"LightningWeb.RunLive.Index.html#checked/2"},{"type":"function","title":"LightningWeb.RunLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.RunLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.RunLive.RerunJobComponent","doc":"Rerun job component","ref":"LightningWeb.RunLive.RerunJobComponent.html"},{"type":"function","title":"LightningWeb.RunLive.RerunJobComponent.handle_event/3","doc":"Callback implementation for Phoenix.LiveComponent.handle_event/3 .","ref":"LightningWeb.RunLive.RerunJobComponent.html#handle_event/3"},{"type":"function","title":"LightningWeb.RunLive.RerunJobComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.RunLive.RerunJobComponent.html#render/1"},{"type":"function","title":"LightningWeb.RunLive.RerunJobComponent.update/2","doc":"Callback implementation for Phoenix.LiveComponent.update/2 .","ref":"LightningWeb.RunLive.RerunJobComponent.html#update/2"},{"type":"module","title":"LightningWeb.RunLive.RunViewerLive","doc":"","ref":"LightningWeb.RunLive.RunViewerLive.html"},{"type":"function","title":"LightningWeb.RunLive.RunViewerLive.handle_info/2","doc":"Reload the run when any update messages arrive.","ref":"LightningWeb.RunLive.RunViewerLive.html#handle_info/2"},{"type":"module","title":"LightningWeb.RunLive.Show","doc":"Show page for individual runs.","ref":"LightningWeb.RunLive.Show.html"},{"type":"function","title":"LightningWeb.RunLive.Show.apply_action/3","doc":"","ref":"LightningWeb.RunLive.Show.html#apply_action/3"},{"type":"module","title":"LightningWeb.RunLive.WorkOrderComponent","doc":"Workorder component","ref":"LightningWeb.RunLive.WorkOrderComponent.html"},{"type":"function","title":"LightningWeb.RunLive.WorkOrderComponent.render/1","doc":"Attributes show_details ( :boolean ) - Defaults to false . entry_selected ( :boolean ) - Defaults to false .","ref":"LightningWeb.RunLive.WorkOrderComponent.html#render/1"},{"type":"module","title":"LightningWeb.Telemetry","doc":"Assorted metrics to collect during runtime. See https://hexdocs.pm/phoenix/telemetry.html","ref":"LightningWeb.Telemetry.html"},{"type":"function","title":"LightningWeb.Telemetry.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"LightningWeb.Telemetry.html#child_spec/1"},{"type":"function","title":"LightningWeb.Telemetry.metrics/0","doc":"","ref":"LightningWeb.Telemetry.html#metrics/0"},{"type":"function","title":"LightningWeb.Telemetry.start_link/1","doc":"","ref":"LightningWeb.Telemetry.html#start_link/1"},{"type":"module","title":"LightningWeb.TokensLive.Index","doc":"LiveView for listing and managing tokens","ref":"LightningWeb.TokensLive.Index.html"},{"type":"function","title":"LightningWeb.TokensLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.TokensLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.UserAuth","doc":"The UserAuth controller.","ref":"LightningWeb.UserAuth.html"},{"type":"function","title":"LightningWeb.UserAuth.authenticate_bearer/2","doc":"","ref":"LightningWeb.UserAuth.html#authenticate_bearer/2"},{"type":"function","title":"LightningWeb.UserAuth.fetch_current_user/2","doc":"Authenticates the user by looking into the session and remember me token.","ref":"LightningWeb.UserAuth.html#fetch_current_user/2"},{"type":"function","title":"LightningWeb.UserAuth.log_in_user/2","doc":"Logs the user in by creating a new session token.","ref":"LightningWeb.UserAuth.html#log_in_user/2"},{"type":"function","title":"LightningWeb.UserAuth.log_out_user/1","doc":"Logs the user out. It clears all session data for safety. See renew_session.","ref":"LightningWeb.UserAuth.html#log_out_user/1"},{"type":"function","title":"LightningWeb.UserAuth.mark_totp_pending/1","doc":"","ref":"LightningWeb.UserAuth.html#mark_totp_pending/1"},{"type":"function","title":"LightningWeb.UserAuth.new_session/2","doc":"Assigns the token to a new session. It renews the session ID and clears the whole session to avoid fixation attacks. See the renew_session function to customize this behaviour. It also sets a :live_socket_id key in the session, so LiveView sessions are identified and automatically disconnected on log out. The line can be safely removed if you are not using LiveView.","ref":"LightningWeb.UserAuth.html#new_session/2"},{"type":"function","title":"LightningWeb.UserAuth.redirect_if_user_is_authenticated/2","doc":"Used for routes that require the user to not be authenticated.","ref":"LightningWeb.UserAuth.html#redirect_if_user_is_authenticated/2"},{"type":"function","title":"LightningWeb.UserAuth.redirect_with_return_to/2","doc":"Returns to or redirects to the dashboard and potentially set remember_me token.","ref":"LightningWeb.UserAuth.html#redirect_with_return_to/2"},{"type":"function","title":"LightningWeb.UserAuth.require_authenticated_user/2","doc":"Used for routes that require the user to be authenticated. If you want to enforce the user email is confirmed before they use the application at all, here would be a good place.","ref":"LightningWeb.UserAuth.html#require_authenticated_user/2"},{"type":"function","title":"LightningWeb.UserAuth.totp_pending?/1","doc":"","ref":"LightningWeb.UserAuth.html#totp_pending?/1"},{"type":"function","title":"LightningWeb.UserAuth.totp_validated/1","doc":"","ref":"LightningWeb.UserAuth.html#totp_validated/1"},{"type":"module","title":"LightningWeb.UserConfirmationController","doc":"","ref":"LightningWeb.UserConfirmationController.html"},{"type":"function","title":"LightningWeb.UserConfirmationController.confirm_email/2","doc":"","ref":"LightningWeb.UserConfirmationController.html#confirm_email/2"},{"type":"function","title":"LightningWeb.UserConfirmationController.create/2","doc":"","ref":"LightningWeb.UserConfirmationController.html#create/2"},{"type":"function","title":"LightningWeb.UserConfirmationController.edit/2","doc":"","ref":"LightningWeb.UserConfirmationController.html#edit/2"},{"type":"function","title":"LightningWeb.UserConfirmationController.new/2","doc":"","ref":"LightningWeb.UserConfirmationController.html#new/2"},{"type":"function","title":"LightningWeb.UserConfirmationController.update/2","doc":"","ref":"LightningWeb.UserConfirmationController.html#update/2"},{"type":"module","title":"LightningWeb.UserLive.Edit","doc":"LiveView for editing a single job, which inturn uses LightningWeb.JobLive.BigFormComponent for common functionality.","ref":"LightningWeb.UserLive.Edit.html"},{"type":"function","title":"LightningWeb.UserLive.Edit.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.UserLive.Edit.html#render/1"},{"type":"module","title":"LightningWeb.UserLive.FormComponent","doc":"Form component for creating and editing users","ref":"LightningWeb.UserLive.FormComponent.html"},{"type":"function","title":"LightningWeb.UserLive.FormComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.UserLive.FormComponent.html#render/1"},{"type":"module","title":"LightningWeb.UserLive.Index","doc":"Index page for listing users","ref":"LightningWeb.UserLive.Index.html"},{"type":"function","title":"LightningWeb.UserLive.Index.delete_action/1","doc":"","ref":"LightningWeb.UserLive.Index.html#delete_action/1"},{"type":"function","title":"LightningWeb.UserLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.UserLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.UserRegistrationController","doc":"","ref":"LightningWeb.UserRegistrationController.html"},{"type":"function","title":"LightningWeb.UserRegistrationController.create/2","doc":"","ref":"LightningWeb.UserRegistrationController.html#create/2"},{"type":"function","title":"LightningWeb.UserRegistrationController.new/2","doc":"","ref":"LightningWeb.UserRegistrationController.html#new/2"},{"type":"module","title":"LightningWeb.UserResetPasswordController","doc":"","ref":"LightningWeb.UserResetPasswordController.html"},{"type":"function","title":"LightningWeb.UserResetPasswordController.create/2","doc":"","ref":"LightningWeb.UserResetPasswordController.html#create/2"},{"type":"function","title":"LightningWeb.UserResetPasswordController.edit/2","doc":"","ref":"LightningWeb.UserResetPasswordController.html#edit/2"},{"type":"function","title":"LightningWeb.UserResetPasswordController.new/2","doc":"","ref":"LightningWeb.UserResetPasswordController.html#new/2"},{"type":"function","title":"LightningWeb.UserResetPasswordController.update/2","doc":"","ref":"LightningWeb.UserResetPasswordController.html#update/2"},{"type":"module","title":"LightningWeb.UserSessionController","doc":"","ref":"LightningWeb.UserSessionController.html"},{"type":"function","title":"LightningWeb.UserSessionController.auth_handler_url/0","doc":"","ref":"LightningWeb.UserSessionController.html#auth_handler_url/0"},{"type":"function","title":"LightningWeb.UserSessionController.create/2","doc":"","ref":"LightningWeb.UserSessionController.html#create/2"},{"type":"function","title":"LightningWeb.UserSessionController.delete/2","doc":"","ref":"LightningWeb.UserSessionController.html#delete/2"},{"type":"function","title":"LightningWeb.UserSessionController.exchange_token/2","doc":"","ref":"LightningWeb.UserSessionController.html#exchange_token/2"},{"type":"function","title":"LightningWeb.UserSessionController.new/2","doc":"","ref":"LightningWeb.UserSessionController.html#new/2"},{"type":"module","title":"LightningWeb.UserTOTPController","doc":"","ref":"LightningWeb.UserTOTPController.html"},{"type":"function","title":"LightningWeb.UserTOTPController.create/2","doc":"","ref":"LightningWeb.UserTOTPController.html#create/2"},{"type":"function","title":"LightningWeb.UserTOTPController.new/2","doc":"","ref":"LightningWeb.UserTOTPController.html#new/2"},{"type":"module","title":"LightningWeb.WebhooksController","doc":"","ref":"LightningWeb.WebhooksController.html"},{"type":"function","title":"LightningWeb.WebhooksController.create/2","doc":"","ref":"LightningWeb.WebhooksController.html#create/2"},{"type":"module","title":"LightningWeb.WorkflowLive.EditorPane","doc":"","ref":"LightningWeb.WorkflowLive.EditorPane.html"},{"type":"function","title":"LightningWeb.WorkflowLive.EditorPane.render/1","doc":"Attributes id ( :string ) (required) disabled ( :boolean ) - Defaults to false . class ( :string ) - Defaults to "" . on_change ( :any ) (required) adaptor ( :string ) (required) source ( :string ) (required) job_id ( :string ) (required)","ref":"LightningWeb.WorkflowLive.EditorPane.html#render/1"},{"type":"module","title":"LightningWeb.WorkflowLive.JobView","doc":"","ref":"LightningWeb.WorkflowLive.JobView.html"},{"type":"function","title":"LightningWeb.WorkflowLive.JobView.container/1","doc":"Attributes id ( :string ) (required) Slots top column - Accepts attributes: class ( :string ) - Extra CSS classes for the column. bottom","ref":"LightningWeb.WorkflowLive.JobView.html#container/1"},{"type":"function","title":"LightningWeb.WorkflowLive.JobView.input_pane/1","doc":"Attributes job ( :map ) (required) user ( :map ) (required) project ( :map ) (required) on_run ( :any ) (required) - Callback to run a job manually. can_run_job ( :boolean ) - Defaults to true .","ref":"LightningWeb.WorkflowLive.JobView.html#input_pane/1"},{"type":"function","title":"LightningWeb.WorkflowLive.JobView.job_edit_view/1","doc":"Attributes job ( :map ) (required) form ( :map ) (required) - A form built from a job. current_user ( :map ) (required) project ( :map ) (required) close_url ( :any ) (required) socket ( :any ) (required) on_run ( :any ) (required) - Callback to run a job manually. follow_run_id ( :any ) - Defaults to nil . Slots footer","ref":"LightningWeb.WorkflowLive.JobView.html#job_edit_view/1"},{"type":"module","title":"LightningWeb.WorkflowNewLive.WorkflowParams","doc":"Various function for reconciling changes to a workflow params map. The front end editor uses JSON patches to represent changes to the workflow.","ref":"LightningWeb.WorkflowNewLive.WorkflowParams.html"},{"type":"function","title":"LightningWeb.WorkflowNewLive.WorkflowParams.apply_form_params/2","doc":"Produce a new set of params by applying the given form params to the current params.","ref":"LightningWeb.WorkflowNewLive.WorkflowParams.html#apply_form_params/2"},{"type":"function","title":"LightningWeb.WorkflowNewLive.WorkflowParams.apply_patches/2","doc":"Produce a new set of params by applying the given patches to the current parms","ref":"LightningWeb.WorkflowNewLive.WorkflowParams.html#apply_patches/2"},{"type":"function","title":"LightningWeb.WorkflowNewLive.WorkflowParams.to_map/1","doc":"Convert a changeset to a serializable map of workflow params, suitable for sending to the front end editor. It uses Lightning.Helpers.json_safe/1 to ensure that the map is safe to serialize to JSON. This is necessary because the underlying model may contain atom values.","ref":"LightningWeb.WorkflowNewLive.WorkflowParams.html#to_map/1"},{"type":"function","title":"LightningWeb.WorkflowNewLive.WorkflowParams.to_patches/2","doc":"Produce a set of patches that represent the difference between the initial params and the target params. This usually is used to produce a set of patches that represent the changes introduced by a changeset.","ref":"LightningWeb.WorkflowNewLive.WorkflowParams.html#to_patches/2"},{"type":"task","title":"Mix.Tasks.Lightning.GenEncryptionKey","doc":"Helper to generate a unique encryption key for Vault","ref":"Mix.Tasks.Lightning.GenEncryptionKey.html"},{"type":"task","title":"Mix.Tasks.Lightning.InstallRuntime","doc":"Installs the following NodeJS packages: core language-common","ref":"Mix.Tasks.Lightning.InstallRuntime.html"},{"type":"function","title":"Mix.Tasks.Lightning.InstallRuntime.packages/0","doc":"","ref":"Mix.Tasks.Lightning.InstallRuntime.html#packages/0"},{"type":"function","title":"Mix.Tasks.Lightning.InstallRuntime.run/1","doc":"Callback implementation for Mix.Task.run/1 .","ref":"Mix.Tasks.Lightning.InstallRuntime.html#run/1"},{"type":"task","title":"Mix.Tasks.Lightning.InstallSchemas","doc":"Install the credential json schemas Use --exclude language-package1, language-package2 to exclude specific packages","ref":"Mix.Tasks.Lightning.InstallSchemas.html"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.delete/3","doc":"Issues a DELETE request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#delete/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.delete!/3","doc":"Issues a DELETE request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#delete!/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.fetch_schemas/2","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#fetch_schemas/2"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.get/3","doc":"Issues a GET request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#get/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.get!/3","doc":"Issues a GET request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#get!/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.head/3","doc":"Issues a HEAD request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#head/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.head!/3","doc":"Issues a HEAD request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#head!/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.options/3","doc":"Issues an OPTIONS request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#options/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.options!/3","doc":"Issues a OPTIONS request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#options!/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.parse_excluded/1","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#parse_excluded/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.patch/4","doc":"Issues a PATCH request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#patch/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.patch!/4","doc":"Issues a PATCH request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#patch!/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.persist_schema/2","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#persist_schema/2"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.post/4","doc":"Issues a POST request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#post/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.post!/4","doc":"Issues a POST request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#post!/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_headers/1","doc":"Callback implementation for HTTPoison.Base.process_headers/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_headers/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_request_body/1","doc":"Callback implementation for HTTPoison.Base.process_request_body/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_request_body/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_request_headers/1","doc":"Callback implementation for HTTPoison.Base.process_request_headers/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_request_headers/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_request_options/1","doc":"Callback implementation for HTTPoison.Base.process_request_options/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_request_options/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_request_params/1","doc":"Callback implementation for HTTPoison.Base.process_request_params/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_request_params/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_request_url/1","doc":"Callback implementation for HTTPoison.Base.process_request_url/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_request_url/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_response/1","doc":"Callback implementation for HTTPoison.Base.process_response/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_response/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_response_body/1","doc":"Callback implementation for HTTPoison.Base.process_response_body/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_response_body/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_response_chunk/1","doc":"Callback implementation for HTTPoison.Base.process_response_chunk/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_response_chunk/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_response_headers/1","doc":"Callback implementation for HTTPoison.Base.process_response_headers/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_response_headers/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_response_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_response_status_code/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_response_status_code/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_status_code/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_status_code/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_url/1","doc":"Callback implementation for HTTPoison.Base.process_url/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_url/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.put/4","doc":"Issues a PUT request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#put/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.put!/4","doc":"Issues a PUT request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#put!/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.request/1","doc":"Issues an HTTP request using a Request struct. This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request = % HTTPoison.Request { method : :post , url : "https://my.website.com" , body : "{ \\" foo \\" : 3}" , headers : [ { "Accept" , "application/json" } ] } request ( request )","ref":"Mix.Tasks.Lightning.InstallSchemas.html#request/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.request/5","doc":"Issues an HTTP request with the given method to the given url. This function is usually used indirectly by get/3 , post/4 , put/4 , etc Args: method - HTTP method as an atom ( :get , :head , :post , :put , :delete , etc.) url - target url as a binary string or char list body - request body. See more below headers - HTTP headers as an orddict (e.g., [{"Accept", "application/json"}] ) options - Keyword list of options Body: see type HTTPoison.Request Options: see type HTTPoison.Request This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request ( :post , "https://my.website.com" , "{ \\" foo \\" : 3}" , [ { "Accept" , "application/json" } ] )","ref":"Mix.Tasks.Lightning.InstallSchemas.html#request/5"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.request!/5","doc":"Issues an HTTP request with the given method to the given url, raising an exception in case of failure. request!/5 works exactly like request/5 but it returns just the response in case of a successful request, raising an exception in case the request fails.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#request!/5"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.run/1","doc":"Callback implementation for Mix.Task.run/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#run/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.start/0","doc":"Starts HTTPoison and its dependencies.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#start/0"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.stream_next/1","doc":"Requests the next message to be streamed for a given HTTPoison.AsyncResponse . See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#stream_next/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.write_schema/3","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#write_schema/3"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.body/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:body/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.headers/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:headers/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.method/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:method/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.options/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:options/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.params/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:params/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.request/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:request/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.url/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:url/0"},{"type":"module","title":"ObanPruner","doc":"The Oban Pruner removes completed Oban jobs. It leaves everything else for manual inspection.","ref":"ObanPruner.html"},{"type":"function","title":"ObanPruner.perform/1","doc":"Deletes completed Oban jobs, leaving discarded for manual inspection.","ref":"ObanPruner.html#perform/1"},{"type":"module","title":"Storybook.Root","doc":"","ref":"Storybook.Root.html"},{"type":"module","title":"Lightning.Accounts","doc":"The Accounts context.","ref":"Lightning.Accounts.html"},{"type":"function","title":"Lightning.Accounts.apply_user_email/3","doc":"Emulates that the email will change without actually changing it in the database. Examples iex> apply_user_email ( user , "valid password" , %{ email : ... } ) { :ok , % User { } } role : :superuser iex> apply_user_email ( user , "invalid password" , %{ email : ... } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#apply_user_email/3"},{"type":"function","title":"Lightning.Accounts.cancel_scheduled_deletion/1","doc":"","ref":"Lightning.Accounts.html#cancel_scheduled_deletion/1"},{"type":"function","title":"Lightning.Accounts.change_scheduled_deletion/2","doc":"Returns an %Ecto.Changeset{} for changing the user scheduled_deletion. Examples iex> change_scheduled_deletion ( user ) % Ecto.Changeset { data : % User { } }","ref":"Lightning.Accounts.html#change_scheduled_deletion/2"},{"type":"function","title":"Lightning.Accounts.change_superuser_registration/1","doc":"Returns an %Ecto.Changeset{} for tracking superuser changes. Examples iex> change_superuser_registration ( user ) % Ecto.Changeset { data : % User { } }","ref":"Lightning.Accounts.html#change_superuser_registration/1"},{"type":"function","title":"Lightning.Accounts.change_user_details/2","doc":"","ref":"Lightning.Accounts.html#change_user_details/2"},{"type":"function","title":"Lightning.Accounts.change_user_email/2","doc":"Returns an %Ecto.Changeset{} for changing the user email. Examples iex> change_user_email ( user ) % Ecto.Changeset { data : % User { } }","ref":"Lightning.Accounts.html#change_user_email/2"},{"type":"function","title":"Lightning.Accounts.change_user_password/2","doc":"Returns an %Ecto.Changeset{} for changing the user password. Examples iex> change_user_password ( user ) % Ecto.Changeset { data : % User { } }","ref":"Lightning.Accounts.html#change_user_password/2"},{"type":"function","title":"Lightning.Accounts.change_user_registration/1","doc":"Returns an %Ecto.Changeset{} for tracking user changes. Examples iex> change_user_registration ( user ) % Ecto.Changeset { data : % User { } }","ref":"Lightning.Accounts.html#change_user_registration/1"},{"type":"function","title":"Lightning.Accounts.confirm_user/1","doc":"Confirms a user by the given token. If the token matches, the user account is marked as confirmed and the token is deleted.","ref":"Lightning.Accounts.html#confirm_user/1"},{"type":"function","title":"Lightning.Accounts.delete_auth_token/1","doc":"Deletes the signed token with the given context.","ref":"Lightning.Accounts.html#delete_auth_token/1"},{"type":"function","title":"Lightning.Accounts.delete_session_token/1","doc":"Deletes the signed token with the given context.","ref":"Lightning.Accounts.html#delete_session_token/1"},{"type":"function","title":"Lightning.Accounts.delete_token/1","doc":"Deletes a token. Examples iex> delete_token ( token ) { :ok , % UserToken { } } iex> delete_token ( token ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#delete_token/1"},{"type":"function","title":"Lightning.Accounts.delete_user/1","doc":"Deletes a user. Examples iex> delete_user ( user ) { :ok , % User { } } iex> delete_user ( user ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#delete_user/1"},{"type":"function","title":"Lightning.Accounts.delete_user_totp/1","doc":"Deletes the given user's TOTP","ref":"Lightning.Accounts.html#delete_user_totp/1"},{"type":"function","title":"Lightning.Accounts.deliver_update_email_instructions/3","doc":"Delivers the update email instructions to the given user. Examples iex> deliver_update_email_instructions ( user , current_email , & Routes . user_update_email_url ( conn , :edit , &1 ) ) { :ok , %{ to : ... , body : ... } }","ref":"Lightning.Accounts.html#deliver_update_email_instructions/3"},{"type":"function","title":"Lightning.Accounts.deliver_user_confirmation_instructions/2","doc":"Delivers the confirmation email instructions to the given user. Examples iex> deliver_user_confirmation_instructions ( user , & Routes . user_confirmation_url ( conn , :edit , &1 ) ) { :ok , %{ to : ... , body : ... } } iex> deliver_user_confirmation_instructions ( confirmed_user , & Routes . user_confirmation_url ( conn , :edit , &1 ) ) { :error , :already_confirmed }","ref":"Lightning.Accounts.html#deliver_user_confirmation_instructions/2"},{"type":"function","title":"Lightning.Accounts.deliver_user_confirmation_instructions/3","doc":"","ref":"Lightning.Accounts.html#deliver_user_confirmation_instructions/3"},{"type":"function","title":"Lightning.Accounts.deliver_user_reset_password_instructions/2","doc":"Delivers the reset password email to the given user. Examples iex> deliver_user_reset_password_instructions ( user , & Routes . user_reset_password_url ( conn , :edit , &1 ) ) { :ok , %{ to : ... , body : ... } }","ref":"Lightning.Accounts.html#deliver_user_reset_password_instructions/2"},{"type":"function","title":"Lightning.Accounts.exchange_auth_token/1","doc":"Exchanges an auth token for a session token. The auth token is removed from the database if successful.","ref":"Lightning.Accounts.html#exchange_auth_token/1"},{"type":"function","title":"Lightning.Accounts.generate_api_token/1","doc":"Generates an API token for a user.","ref":"Lightning.Accounts.html#generate_api_token/1"},{"type":"function","title":"Lightning.Accounts.generate_auth_token/1","doc":"Generates an auth token.","ref":"Lightning.Accounts.html#generate_auth_token/1"},{"type":"function","title":"Lightning.Accounts.generate_user_session_token/1","doc":"Generates a session token.","ref":"Lightning.Accounts.html#generate_user_session_token/1"},{"type":"function","title":"Lightning.Accounts.get_token!/1","doc":"Gets a single token. Raises Ecto.NoResultsError if the UserToken does not exist. Examples iex> get_token! ( 123 ) % UserToken { } iex> get_token! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Accounts.html#get_token!/1"},{"type":"function","title":"Lightning.Accounts.get_user!/1","doc":"Gets a single user. Raises Ecto.NoResultsError if the User does not exist. Examples iex> get_user! ( 123 ) % User { } iex> get_user! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Accounts.html#get_user!/1"},{"type":"function","title":"Lightning.Accounts.get_user_by_api_token/1","doc":"Gets the user with the given signed token.","ref":"Lightning.Accounts.html#get_user_by_api_token/1"},{"type":"function","title":"Lightning.Accounts.get_user_by_auth_token/1","doc":"Gets the user with the given signed token.","ref":"Lightning.Accounts.html#get_user_by_auth_token/1"},{"type":"function","title":"Lightning.Accounts.get_user_by_email/1","doc":"Gets a user by email. Examples iex> get_user_by_email ( "foo@example.com" ) % User { } iex> get_user_by_email ( "unknown@example.com" ) nil","ref":"Lightning.Accounts.html#get_user_by_email/1"},{"type":"function","title":"Lightning.Accounts.get_user_by_email_and_password/2","doc":"Gets a user by email and password. Examples 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" ) nil","ref":"Lightning.Accounts.html#get_user_by_email_and_password/2"},{"type":"function","title":"Lightning.Accounts.get_user_by_reset_password_token/1","doc":"Gets the user by reset password token. Examples iex> get_user_by_reset_password_token ( "validtoken" ) % User { } iex> get_user_by_reset_password_token ( "invalidtoken" ) nil","ref":"Lightning.Accounts.html#get_user_by_reset_password_token/1"},{"type":"function","title":"Lightning.Accounts.get_user_by_session_token/1","doc":"Gets the user with the given signed token.","ref":"Lightning.Accounts.html#get_user_by_session_token/1"},{"type":"function","title":"Lightning.Accounts.get_user_totp/1","doc":"Gets a single UserTOTP if any exists.","ref":"Lightning.Accounts.html#get_user_totp/1"},{"type":"function","title":"Lightning.Accounts.get_users_to_alert_for_project/1","doc":"Gets all users to alert of workflow failure for a project","ref":"Lightning.Accounts.html#get_users_to_alert_for_project/1"},{"type":"function","title":"Lightning.Accounts.has_activity_in_projects?/1","doc":"","ref":"Lightning.Accounts.html#has_activity_in_projects?/1"},{"type":"function","title":"Lightning.Accounts.has_one_superuser?/0","doc":"Used to determine if there is at least one Superuser in the system. This triggers the setup page on fresh installs.","ref":"Lightning.Accounts.html#has_one_superuser?/0"},{"type":"function","title":"Lightning.Accounts.list_api_tokens/1","doc":"Lists all user tokens","ref":"Lightning.Accounts.html#list_api_tokens/1"},{"type":"function","title":"Lightning.Accounts.list_users/0","doc":"Returns the list of users. Examples iex> list_users ( ) [ % User { } , ... ]","ref":"Lightning.Accounts.html#list_users/0"},{"type":"function","title":"Lightning.Accounts.perform/1","doc":"Perform, when called with %{"type" => "purge_deleted"} will find users that are ready for permanent deletion and purge them.","ref":"Lightning.Accounts.html#perform/1"},{"type":"function","title":"Lightning.Accounts.purge_user/1","doc":"","ref":"Lightning.Accounts.html#purge_user/1"},{"type":"function","title":"Lightning.Accounts.register_superuser/1","doc":"Registers a superuser. Examples iex> register_superuser ( %{ field : value } ) { :ok , % User { } } iex> register_superuser ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#register_superuser/1"},{"type":"function","title":"Lightning.Accounts.register_user/1","doc":"Registers a user. Examples iex> register_user ( %{ field : value } ) { :ok , % User { } } iex> register_user ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#register_user/1"},{"type":"function","title":"Lightning.Accounts.reset_user_password/2","doc":"Resets the user password. 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 { } }","ref":"Lightning.Accounts.html#reset_user_password/2"},{"type":"function","title":"Lightning.Accounts.schedule_user_deletion/2","doc":"Given a user and a confirmation email, this function sets a scheduled deletion date based on the PURGE_DELETED_AFTER_DAYS environment variable. If no ENV is set, this date defaults to NOW but the automatic user purge cronjob will never run. (Note that subsequent logins will be blocked for users pending deletion.)","ref":"Lightning.Accounts.html#schedule_user_deletion/2"},{"type":"function","title":"Lightning.Accounts.update_user_details/2","doc":"","ref":"Lightning.Accounts.html#update_user_details/2"},{"type":"function","title":"Lightning.Accounts.update_user_email/2","doc":"Updates the user email using the given token. If the token matches, the user email is updated and the token is deleted. The confirmed_at date is also updated to the current time.","ref":"Lightning.Accounts.html#update_user_email/2"},{"type":"function","title":"Lightning.Accounts.update_user_password/3","doc":"Updates the user password. Examples iex> update_user_password ( user , "valid password" , %{ password : ... } ) { :ok , % User { } } iex> update_user_password ( user , "invalid password" , %{ password : ... } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#update_user_password/3"},{"type":"function","title":"Lightning.Accounts.upsert_user_totp/2","doc":"Updates or Inserts the user's TOTP","ref":"Lightning.Accounts.html#upsert_user_totp/2"},{"type":"function","title":"Lightning.Accounts.valid_user_totp?/2","doc":"Validates if the given TOTP code is valid.","ref":"Lightning.Accounts.html#valid_user_totp?/2"},{"type":"function","title":"Lightning.Accounts.validate_change_user_email/2","doc":"","ref":"Lightning.Accounts.html#validate_change_user_email/2"},{"type":"module","title":"Lightning.Accounts.User","doc":"The User model.","ref":"Lightning.Accounts.User.html"},{"type":"function","title":"Lightning.Accounts.User.confirm_changeset/1","doc":"Confirms the account by setting confirmed_at .","ref":"Lightning.Accounts.User.html#confirm_changeset/1"},{"type":"function","title":"Lightning.Accounts.User.details_changeset/2","doc":"A user changeset for user details: email first_name last_name role","ref":"Lightning.Accounts.User.html#details_changeset/2"},{"type":"function","title":"Lightning.Accounts.User.email_changeset/2","doc":"A user changeset for changing the email. It requires the email to change otherwise an error is added.","ref":"Lightning.Accounts.User.html#email_changeset/2"},{"type":"function","title":"Lightning.Accounts.User.password_changeset/3","doc":"A user changeset for changing the password. Options :hash_password - Hashes the password so it can be stored securely in the database and ensures the password field is cleared to prevent leaks in the logs. If password hashing is not needed and clearing the password field is not desired (like when using this changeset for validations on a LiveView form), this option can be set to false . Defaults to true .","ref":"Lightning.Accounts.User.html#password_changeset/3"},{"type":"function","title":"Lightning.Accounts.User.scheduled_deletion_changeset/2","doc":"A user changeset for changing the scheduled_deletion property.","ref":"Lightning.Accounts.User.html#scheduled_deletion_changeset/2"},{"type":"function","title":"Lightning.Accounts.User.superuser_registration_changeset/2","doc":"A superuser changeset for registration. It is important to validate the length of both email and password. Otherwise databases may truncate the email without warnings, which could lead to unpredictable or insecure behaviour. Long passwords may also be very expensive to hash for certain algorithms. Options :hash_password - Hashes the password so it can be stored securely in the database and ensures the password field is cleared to prevent leaks in the logs. If password hashing is not needed and clearing the password field is not desired (like when using this changeset for validations on a LiveView form), this option can be set to false . Defaults to true .","ref":"Lightning.Accounts.User.html#superuser_registration_changeset/2"},{"type":"function","title":"Lightning.Accounts.User.user_registration_changeset/2","doc":"A user changeset for registration. It is important to validate the length of both email and password. Otherwise databases may truncate the email without warnings, which could lead to unpredictable or insecure behaviour. Long passwords may also be very expensive to hash for certain algorithms. Options :hash_password - Hashes the password so it can be stored securely in the database and ensures the password field is cleared to prevent leaks in the logs. If password hashing is not needed and clearing the password field is not desired (like when using this changeset for validations on a LiveView form), this option can be set to false . Defaults to true .","ref":"Lightning.Accounts.User.html#user_registration_changeset/2"},{"type":"function","title":"Lightning.Accounts.User.valid_password?/2","doc":"Verifies the password. If there is no user or the user doesn't have a password, we call Bcrypt.no_user_verify/0 to avoid timing attacks.","ref":"Lightning.Accounts.User.html#valid_password?/2"},{"type":"function","title":"Lightning.Accounts.User.validate_current_password/2","doc":"Validates the current password otherwise adds an error to the changeset.","ref":"Lightning.Accounts.User.html#validate_current_password/2"},{"type":"type","title":"Lightning.Accounts.User.t/0","doc":"","ref":"Lightning.Accounts.User.html#t:t/0"},{"type":"module","title":"Lightning.Accounts.User.RolesEnum","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.cast/1","doc":"Callback implementation for Ecto.Type.cast/1 .","ref":"Lightning.Accounts.User.RolesEnum.html#cast/1"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.create_type/0","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#create_type/0"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.drop_type/0","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#drop_type/0"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.dump/1","doc":"Callback implementation for Ecto.Type.dump/1 .","ref":"Lightning.Accounts.User.RolesEnum.html#dump/1"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.embed_as/1","doc":"Callback implementation for Ecto.Type.embed_as/1 .","ref":"Lightning.Accounts.User.RolesEnum.html#embed_as/1"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.equal?/2","doc":"Callback implementation for Ecto.Type.equal?/2 .","ref":"Lightning.Accounts.User.RolesEnum.html#equal?/2"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.load/1","doc":"Callback implementation for Ecto.Type.load/1 .","ref":"Lightning.Accounts.User.RolesEnum.html#load/1"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.schema/0","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#schema/0"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.schemaless_type/0","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#schemaless_type/0"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.type/0","doc":"Callback implementation for Ecto.Type.type/0 .","ref":"Lightning.Accounts.User.RolesEnum.html#type/0"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.valid_value?/1","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#valid_value?/1"},{"type":"type","title":"Lightning.Accounts.User.RolesEnum.t/0","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#t:t/0"},{"type":"module","title":"Lightning.Accounts.UserNotifier","doc":"The UserNotifier module.","ref":"Lightning.Accounts.UserNotifier.html"},{"type":"function","title":"Lightning.Accounts.UserNotifier.build_digest_url/3","doc":"","ref":"Lightning.Accounts.UserNotifier.html#build_digest_url/3"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_confirmation_instructions/2","doc":"Deliver instructions to confirm account.","ref":"Lightning.Accounts.UserNotifier.html#deliver_confirmation_instructions/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_confirmation_instructions/3","doc":"Deliver instructions to confirm account.","ref":"Lightning.Accounts.UserNotifier.html#deliver_confirmation_instructions/3"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_project_addition_notification/2","doc":"Deliver email to notify user of his addition of a project.","ref":"Lightning.Accounts.UserNotifier.html#deliver_project_addition_notification/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_project_digest/2","doc":"Deliver a project digest of daily/weekly or monthly activity to a user.","ref":"Lightning.Accounts.UserNotifier.html#deliver_project_digest/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_reset_password_instructions/2","doc":"Deliver instructions to reset a user password.","ref":"Lightning.Accounts.UserNotifier.html#deliver_reset_password_instructions/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_update_email_instructions/2","doc":"Deliver instructions to update a user email.","ref":"Lightning.Accounts.UserNotifier.html#deliver_update_email_instructions/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_update_email_warning/2","doc":"Deliver warning to update a user email.","ref":"Lightning.Accounts.UserNotifier.html#deliver_update_email_warning/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.notify_project_deletion/2","doc":"","ref":"Lightning.Accounts.UserNotifier.html#notify_project_deletion/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.send_deletion_notification_email/1","doc":"Deliver an email to notify the user about their account being deleted","ref":"Lightning.Accounts.UserNotifier.html#send_deletion_notification_email/1"},{"type":"module","title":"Lightning.Accounts.UserTOTP","doc":"User Time based OTPs schema","ref":"Lightning.Accounts.UserTOTP.html"},{"type":"function","title":"Lightning.Accounts.UserTOTP.changeset/2","doc":"","ref":"Lightning.Accounts.UserTOTP.html#changeset/2"},{"type":"function","title":"Lightning.Accounts.UserTOTP.valid_totp?/2","doc":"","ref":"Lightning.Accounts.UserTOTP.html#valid_totp?/2"},{"type":"type","title":"Lightning.Accounts.UserTOTP.t/0","doc":"","ref":"Lightning.Accounts.UserTOTP.html#t:t/0"},{"type":"module","title":"Lightning.Accounts.UserToken","doc":"The UserToken model. The reason why we store session tokens in the database, even though Phoenix already provides a session cookie, is because Phoenix' default session cookies are not persisted, they are simply signed and potentially encrypted. This means they are valid indefinitely, unless you change the signing/encryption salt. Therefore, storing them allows individual user sessions to be expired. The token system can also be extended to store additional data, such as the device used for logging in. You could then use this information to display all valid sessions and devices in the UI and allow users to explicitly expire any session they deem invalid.","ref":"Lightning.Accounts.UserToken.html"},{"type":"function","title":"Lightning.Accounts.UserToken.build_email_token/3","doc":"Builds a token and its hash to be delivered to the user's email. The non-hashed token is sent to the user email while the hashed part is stored in the database. The original token cannot be reconstructed, which means anyone with read-only access to the database cannot directly use the token in the application to gain access. Furthermore, if the user changes their email in the system, the tokens sent to the previous email are no longer valid. Users can easily adapt the existing code to provide other types of delivery methods, for example, by phone numbers.","ref":"Lightning.Accounts.UserToken.html#build_email_token/3"},{"type":"function","title":"Lightning.Accounts.UserToken.build_token/2","doc":"Generates a token that will be stored in a signed place, such as session or cookie. As they are signed, those tokens do not need to be hashed.","ref":"Lightning.Accounts.UserToken.html#build_token/2"},{"type":"function","title":"Lightning.Accounts.UserToken.changeset/2","doc":"","ref":"Lightning.Accounts.UserToken.html#changeset/2"},{"type":"function","title":"Lightning.Accounts.UserToken.generate_and_sign/2","doc":"Combines generate_claims/1 and encode_and_sign/2","ref":"Lightning.Accounts.UserToken.html#generate_and_sign/2"},{"type":"function","title":"Lightning.Accounts.UserToken.generate_and_sign!/2","doc":"Same as generate_and_sign/2 but raises if error","ref":"Lightning.Accounts.UserToken.html#generate_and_sign!/2"},{"type":"function","title":"Lightning.Accounts.UserToken.last_used_changeset/1","doc":"Update when the api token was last used by setting last_used_at .","ref":"Lightning.Accounts.UserToken.html#last_used_changeset/1"},{"type":"function","title":"Lightning.Accounts.UserToken.token_and_context_query/2","doc":"Returns the token struct for the given token value and context.","ref":"Lightning.Accounts.UserToken.html#token_and_context_query/2"},{"type":"function","title":"Lightning.Accounts.UserToken.user_and_contexts_query/2","doc":"Gets all tokens for the given user for the given contexts.","ref":"Lightning.Accounts.UserToken.html#user_and_contexts_query/2"},{"type":"function","title":"Lightning.Accounts.UserToken.verify_and_validate/3","doc":"Combines verify/2 and validate/2","ref":"Lightning.Accounts.UserToken.html#verify_and_validate/3"},{"type":"function","title":"Lightning.Accounts.UserToken.verify_and_validate!/3","doc":"Same as verify_and_validate/2 but raises if error","ref":"Lightning.Accounts.UserToken.html#verify_and_validate!/3"},{"type":"function","title":"Lightning.Accounts.UserToken.verify_change_email_token_query/2","doc":"Checks if the token is valid and returns its underlying lookup query. The query returns the user found by the token, if any. This is used to validate requests to change the user email. It is different from verify_email_token_query/2 precisely because verify_email_token_query/2 validates the email has not changed, which is the starting point by this function. The given token is valid if it matches its hashed counterpart in the database and if it has not expired (after @change_email_validity_in_days). The context must always start with "change:".","ref":"Lightning.Accounts.UserToken.html#verify_change_email_token_query/2"},{"type":"function","title":"Lightning.Accounts.UserToken.verify_email_token_query/2","doc":"Checks if the token is valid and returns its underlying lookup query. The query returns the user found by the token, if any. The given token is valid if it matches its hashed counterpart in the database and the user email has not changed. This function also checks if the token is being used within a certain period, depending on the context. The default contexts supported by this function are either "confirm", for account confirmation emails, and "reset_password", for resetting the password. For verifying requests to change the email, see verify_change_email_token_query/2 .","ref":"Lightning.Accounts.UserToken.html#verify_email_token_query/2"},{"type":"function","title":"Lightning.Accounts.UserToken.verify_token_query/2","doc":"Checks if the token is valid and returns its underlying lookup query. The query returns the user found by the token, if any. The token is valid if it matches the value in the database and it has not expired (after @auth_validity_in_seconds or @session_validity_in_days).","ref":"Lightning.Accounts.UserToken.html#verify_token_query/2"},{"type":"module","title":"Lightning.Credentials","doc":"The Credentials context.","ref":"Lightning.Credentials.html"},{"type":"function","title":"Lightning.Credentials.change_credential/2","doc":"Returns an %Ecto.Changeset{} for tracking credential changes. Examples iex> change_credential ( credential ) % Ecto.Changeset { data : % Credential { } }","ref":"Lightning.Credentials.html#change_credential/2"},{"type":"function","title":"Lightning.Credentials.create_credential/1","doc":"Creates a credential. Examples iex> create_credential ( %{ field : value } ) { :ok , % Credential { } } iex> create_credential ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Credentials.html#create_credential/1"},{"type":"function","title":"Lightning.Credentials.delete_credential/1","doc":"Deletes a credential. Examples iex> delete_credential ( credential ) { :ok , % Credential { } } iex> delete_credential ( credential ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Credentials.html#delete_credential/1"},{"type":"function","title":"Lightning.Credentials.get_credential!/1","doc":"Gets a single credential. Raises Ecto.NoResultsError if the Credential does not exist. Examples iex> get_credential! ( 123 ) % Credential { } iex> get_credential! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Credentials.html#get_credential!/1"},{"type":"function","title":"Lightning.Credentials.invalid_projects_for_user/2","doc":"Given a credential and a user, returns a list of invalid projects—i.e., those that the credential is shared with but that the user does not have access to. This is used to generate a validation error when a credential cannot be transferred. Examples 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" ]","ref":"Lightning.Credentials.html#invalid_projects_for_user/2"},{"type":"function","title":"Lightning.Credentials.list_credentials/0","doc":"Returns the list of credentials. Examples iex> list_credentials ( ) [ % Credential { } , ... ]","ref":"Lightning.Credentials.html#list_credentials/0"},{"type":"function","title":"Lightning.Credentials.list_credentials/1","doc":"","ref":"Lightning.Credentials.html#list_credentials/1"},{"type":"function","title":"Lightning.Credentials.list_credentials_for_user/1","doc":"Returns the list of credentials for a given user. Examples iex> list_credentials_for_user ( 123 ) [ % Credential { user_id : 123 } , % Credential { user_id : 123 } , ... ]","ref":"Lightning.Credentials.html#list_credentials_for_user/1"},{"type":"function","title":"Lightning.Credentials.maybe_refresh_token/1","doc":"","ref":"Lightning.Credentials.html#maybe_refresh_token/1"},{"type":"function","title":"Lightning.Credentials.sensitive_values_for/1","doc":"","ref":"Lightning.Credentials.html#sensitive_values_for/1"},{"type":"function","title":"Lightning.Credentials.update_credential/2","doc":"Updates a credential. Examples iex> update_credential ( credential , %{ field : new_value } ) { :ok , % Credential { } } iex> update_credential ( credential , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Credentials.html#update_credential/2"},{"type":"module","title":"Lightning.Credentials.Audit","doc":"Model for storing changes to Credentials","ref":"Lightning.Credentials.Audit.html"},{"type":"function","title":"Lightning.Credentials.Audit.event/4","doc":"","ref":"Lightning.Credentials.Audit.html#event/4"},{"type":"function","title":"Lightning.Credentials.Audit.save/1","doc":"","ref":"Lightning.Credentials.Audit.html#save/1"},{"type":"module","title":"Lightning.Credentials.Credential","doc":"The Credential model.","ref":"Lightning.Credentials.Credential.html"},{"type":"type","title":"Lightning.Credentials.Credential.t/0","doc":"","ref":"Lightning.Credentials.Credential.html#t:t/0"},{"type":"module","title":"Lightning.Credentials.Schema","doc":"Structure that can parse JsonSchemas (using ExJsonSchema ) and validate changesets for a given schema.","ref":"Lightning.Credentials.Schema.html"},{"type":"function","title":"Lightning.Credentials.Schema.new/2","doc":"","ref":"Lightning.Credentials.Schema.html#new/2"},{"type":"function","title":"Lightning.Credentials.Schema.properties/2","doc":"","ref":"Lightning.Credentials.Schema.html#properties/2"},{"type":"function","title":"Lightning.Credentials.Schema.required?/2","doc":"","ref":"Lightning.Credentials.Schema.html#required?/2"},{"type":"function","title":"Lightning.Credentials.Schema.validate/2","doc":"","ref":"Lightning.Credentials.Schema.html#validate/2"},{"type":"type","title":"Lightning.Credentials.Schema.t/0","doc":"","ref":"Lightning.Credentials.Schema.html#t:t/0"},{"type":"module","title":"Lightning.Credentials.SchemaDocument","doc":"Provides facilities to dynamically create and validate a changeset for a given Schema","ref":"Lightning.Credentials.SchemaDocument.html"},{"type":"function","title":"Lightning.Credentials.SchemaDocument.changeset/3","doc":"","ref":"Lightning.Credentials.SchemaDocument.html#changeset/3"},{"type":"module","title":"Lightning.Credentials.SensitiveValues","doc":"Functions to pull out sensitive values inside a credential. These values are used to scrub logs for leaked secrets.","ref":"Lightning.Credentials.SensitiveValues.html"},{"type":"function","title":"Lightning.Credentials.SensitiveValues.flatten_map/1","doc":"Keys that are not considered sensitive","ref":"Lightning.Credentials.SensitiveValues.html#flatten_map/1"},{"type":"function","title":"Lightning.Credentials.SensitiveValues.secret_values/1","doc":"Given a map, find all values allowed (via @safe_keys ) and return them as a list.","ref":"Lightning.Credentials.SensitiveValues.html#secret_values/1"},{"type":"type","title":"Lightning.Credentials.SensitiveValues.pairs/0","doc":"","ref":"Lightning.Credentials.SensitiveValues.html#t:pairs/0"},{"type":"type","title":"Lightning.Credentials.SensitiveValues.raw_pairs/0","doc":"","ref":"Lightning.Credentials.SensitiveValues.html#t:raw_pairs/0"},{"type":"module","title":"Lightning.Invocation","doc":"The Invocation context.","ref":"Lightning.Invocation.html"},{"type":"function","title":"Lightning.Invocation.change_dataclip/2","doc":"Returns an %Ecto.Changeset{} for tracking dataclip changes. Examples iex> change_dataclip ( dataclip ) % Ecto.Changeset { data : % Dataclip { } }","ref":"Lightning.Invocation.html#change_dataclip/2"},{"type":"function","title":"Lightning.Invocation.change_run/2","doc":"Returns an %Ecto.Changeset{} for tracking run changes. Examples iex> change_run ( run ) % Ecto.Changeset { data : % Run { } }","ref":"Lightning.Invocation.html#change_run/2"},{"type":"function","title":"Lightning.Invocation.create_dataclip/1","doc":"Creates a dataclip. Examples iex> create_dataclip ( %{ field : value } ) { :ok , % Dataclip { } } iex> create_dataclip ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#create_dataclip/1"},{"type":"function","title":"Lightning.Invocation.create_log_line/2","doc":"","ref":"Lightning.Invocation.html#create_log_line/2"},{"type":"function","title":"Lightning.Invocation.create_run/1","doc":"Creates a run. Examples iex> create_run ( %{ field : value } ) { :ok , % Run { } } iex> create_run ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#create_run/1"},{"type":"function","title":"Lightning.Invocation.delete_dataclip/1","doc":"Deletes a dataclip. Examples iex> delete_dataclip ( dataclip ) { :ok , % Dataclip { } } iex> delete_dataclip ( dataclip ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#delete_dataclip/1"},{"type":"function","title":"Lightning.Invocation.delete_run/1","doc":"Deletes a run. Examples iex> delete_run ( run ) { :ok , % Run { } } iex> delete_run ( run ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#delete_run/1"},{"type":"function","title":"Lightning.Invocation.filter_run_body_and_logs_where/2","doc":"","ref":"Lightning.Invocation.html#filter_run_body_and_logs_where/2"},{"type":"function","title":"Lightning.Invocation.filter_run_finished_after_where/1","doc":"","ref":"Lightning.Invocation.html#filter_run_finished_after_where/1"},{"type":"function","title":"Lightning.Invocation.filter_run_finished_before_where/1","doc":"","ref":"Lightning.Invocation.html#filter_run_finished_before_where/1"},{"type":"function","title":"Lightning.Invocation.filter_run_status_where/1","doc":"","ref":"Lightning.Invocation.html#filter_run_status_where/1"},{"type":"function","title":"Lightning.Invocation.filter_workflow_where/1","doc":"","ref":"Lightning.Invocation.html#filter_workflow_where/1"},{"type":"function","title":"Lightning.Invocation.filter_workorder_insert_after_where/1","doc":"","ref":"Lightning.Invocation.html#filter_workorder_insert_after_where/1"},{"type":"function","title":"Lightning.Invocation.filter_workorder_insert_before_where/1","doc":"","ref":"Lightning.Invocation.html#filter_workorder_insert_before_where/1"},{"type":"function","title":"Lightning.Invocation.get_dataclip/1","doc":"Gets a single dataclip given one of: a Dataclip uuid a Run model Returns nil if the Dataclip does not exist. Examples iex> get_dataclip ( "27b73932-16c7-4a72-86a3-85d805ccff98" ) % Dataclip { } iex> get_dataclip ( "27b73932-16c7-4a72-86a3-85d805ccff98" ) nil iex> get_dataclip ( % Run { id : "a uuid" } ) % Dataclip { }","ref":"Lightning.Invocation.html#get_dataclip/1"},{"type":"function","title":"Lightning.Invocation.get_dataclip!/1","doc":"Gets a single dataclip. Raises Ecto.NoResultsError if the Dataclip does not exist. Examples iex> get_dataclip! ( 123 ) % Dataclip { } iex> get_dataclip! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Invocation.html#get_dataclip!/1"},{"type":"function","title":"Lightning.Invocation.get_dataclip_query/1","doc":"Query for retrieving the dataclip that a runs starting dataclip.","ref":"Lightning.Invocation.html#get_dataclip_query/1"},{"type":"function","title":"Lightning.Invocation.get_result_dataclip_query/1","doc":"Query for retrieving the dataclip that was the result of a successful run.","ref":"Lightning.Invocation.html#get_result_dataclip_query/1"},{"type":"function","title":"Lightning.Invocation.get_run!/1","doc":"Gets a single run. Raises Ecto.NoResultsError if the Run does not exist. Examples iex> get_run! ( 123 ) % Run { } iex> get_run! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Invocation.html#get_run!/1"},{"type":"function","title":"Lightning.Invocation.get_run_with_job!/1","doc":"Fetches a run and preloads the job via the run's event.","ref":"Lightning.Invocation.html#get_run_with_job!/1"},{"type":"function","title":"Lightning.Invocation.get_workorders_by_ids/1","doc":"","ref":"Lightning.Invocation.html#get_workorders_by_ids/1"},{"type":"function","title":"Lightning.Invocation.list_dataclips/0","doc":"Returns the list of dataclips. Examples iex> list_dataclips ( ) [ % Dataclip { } , ... ]","ref":"Lightning.Invocation.html#list_dataclips/0"},{"type":"function","title":"Lightning.Invocation.list_dataclips/1","doc":"","ref":"Lightning.Invocation.html#list_dataclips/1"},{"type":"function","title":"Lightning.Invocation.list_dataclips_for_job/1","doc":"","ref":"Lightning.Invocation.html#list_dataclips_for_job/1"},{"type":"function","title":"Lightning.Invocation.list_dataclips_query/1","doc":"","ref":"Lightning.Invocation.html#list_dataclips_query/1"},{"type":"function","title":"Lightning.Invocation.list_runs/0","doc":"Returns the list of runs. Examples iex> list_runs ( ) [ % Run { } , ... ]","ref":"Lightning.Invocation.html#list_runs/0"},{"type":"function","title":"Lightning.Invocation.list_runs_for_project/2","doc":"","ref":"Lightning.Invocation.html#list_runs_for_project/2"},{"type":"function","title":"Lightning.Invocation.list_runs_for_project_query/1","doc":"","ref":"Lightning.Invocation.html#list_runs_for_project_query/1"},{"type":"function","title":"Lightning.Invocation.list_work_orders_for_project_query/2","doc":"","ref":"Lightning.Invocation.html#list_work_orders_for_project_query/2"},{"type":"function","title":"Lightning.Invocation.search_workorders/1","doc":"","ref":"Lightning.Invocation.html#search_workorders/1"},{"type":"function","title":"Lightning.Invocation.search_workorders/3","doc":"","ref":"Lightning.Invocation.html#search_workorders/3"},{"type":"function","title":"Lightning.Invocation.update_dataclip/2","doc":"Updates a dataclip. Examples iex> update_dataclip ( dataclip , %{ field : new_value } ) { :ok , % Dataclip { } } iex> update_dataclip ( dataclip , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#update_dataclip/2"},{"type":"function","title":"Lightning.Invocation.update_run/2","doc":"Updates a run. Examples iex> update_run ( run , %{ field : new_value } ) { :ok , % Run { } } iex> update_run ( run , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#update_run/2"},{"type":"function","title":"Lightning.Invocation.with_attempts/1","doc":"","ref":"Lightning.Invocation.html#with_attempts/1"},{"type":"module","title":"Lightning.Invocation.Dataclip","doc":"Ecto model for Dataclips. Dataclips represent some data that arrived in the system, and records both the data and the source of the data. Types :http_request The data arrived via a webhook. :global Was created manually, and is intended to be used multiple times. When repetitive static data is needed to be maintained, instead of hard-coding into a Job - a more convenient solution is to create a :global Dataclip and access it inside the Job. :run_result The final state of a successful run. :saved_input An arbitrary input, created by a user. (Only configuration will be overwritten.)","ref":"Lightning.Invocation.Dataclip.html"},{"type":"function","title":"Lightning.Invocation.Dataclip.get_types/0","doc":"","ref":"Lightning.Invocation.Dataclip.html#get_types/0"},{"type":"function","title":"Lightning.Invocation.Dataclip.new/1","doc":"","ref":"Lightning.Invocation.Dataclip.html#new/1"},{"type":"function","title":"Lightning.Invocation.Dataclip.validate_by_type/1","doc":"Append validations based on the type of the Dataclip. :run_result must have an associated Run model.","ref":"Lightning.Invocation.Dataclip.html#validate_by_type/1"},{"type":"type","title":"Lightning.Invocation.Dataclip.source_type/0","doc":"","ref":"Lightning.Invocation.Dataclip.html#t:source_type/0"},{"type":"type","title":"Lightning.Invocation.Dataclip.t/0","doc":"","ref":"Lightning.Invocation.Dataclip.html#t:t/0"},{"type":"module","title":"Lightning.Invocation.LogLine","doc":"Ecto model for run logs.","ref":"Lightning.Invocation.LogLine.html"},{"type":"function","title":"Lightning.Invocation.LogLine.validate/1","doc":"","ref":"Lightning.Invocation.LogLine.html#validate/1"},{"type":"type","title":"Lightning.Invocation.LogLine.t/0","doc":"","ref":"Lightning.Invocation.LogLine.html#t:t/0"},{"type":"module","title":"Lightning.Invocation.Query","doc":"Query functions for working with Runs and Dataclips","ref":"Lightning.Invocation.Query.html"},{"type":"function","title":"Lightning.Invocation.Query.last_run_for_job/1","doc":"The last run for a job","ref":"Lightning.Invocation.Query.html#last_run_for_job/1"},{"type":"function","title":"Lightning.Invocation.Query.last_successful_run_for_job/1","doc":"The last run for a job for a particular exit code, used in scheduler","ref":"Lightning.Invocation.Query.html#last_successful_run_for_job/1"},{"type":"function","title":"Lightning.Invocation.Query.runs_for/1","doc":"Runs for a specific user","ref":"Lightning.Invocation.Query.html#runs_for/1"},{"type":"function","title":"Lightning.Invocation.Query.runs_with_code/2","doc":"The last run for a job for a particular exit code, used in scheduler","ref":"Lightning.Invocation.Query.html#runs_with_code/2"},{"type":"module","title":"Lightning.Invocation.Run","doc":"Ecto model for Runs. A run represents the work initiated for a Job with an input dataclip. Once completed (successfully) it will have an output_dataclip associated with it as well.","ref":"Lightning.Invocation.Run.html"},{"type":"function","title":"Lightning.Invocation.Run.new/1","doc":"","ref":"Lightning.Invocation.Run.html#new/1"},{"type":"function","title":"Lightning.Invocation.Run.new_from/1","doc":"Creates a new Run changeset, but copies over certain fields. This is used to create new runs for retrys.","ref":"Lightning.Invocation.Run.html#new_from/1"},{"type":"type","title":"Lightning.Invocation.Run.t/0","doc":"","ref":"Lightning.Invocation.Run.html#t:t/0"},{"type":"module","title":"Lightning.InvocationReason","doc":"Ecto model for InvocationReasons.","ref":"Lightning.InvocationReason.html"},{"type":"function","title":"Lightning.InvocationReason.new/1","doc":"","ref":"Lightning.InvocationReason.html#new/1"},{"type":"function","title":"Lightning.InvocationReason.validate_by_trigger_type/1","doc":"","ref":"Lightning.InvocationReason.html#validate_by_trigger_type/1"},{"type":"type","title":"Lightning.InvocationReason.source_type/0","doc":"","ref":"Lightning.InvocationReason.html#t:source_type/0"},{"type":"type","title":"Lightning.InvocationReason.t/0","doc":"","ref":"Lightning.InvocationReason.html#t:t/0"},{"type":"module","title":"Lightning.InvocationReasons","doc":"The InvocationReasons context.","ref":"Lightning.InvocationReasons.html"},{"type":"function","title":"Lightning.InvocationReasons.build/2","doc":"","ref":"Lightning.InvocationReasons.html#build/2"},{"type":"function","title":"Lightning.InvocationReasons.create_reason/1","doc":"Creates a reason. Examples iex> create_reason ( %{ field : value } ) { :ok , % InvocationReason { } } iex> create_reason ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.InvocationReasons.html#create_reason/1"},{"type":"type","title":"Lightning.InvocationReasons.reason_type/0","doc":"","ref":"Lightning.InvocationReasons.html#t:reason_type/0"},{"type":"module","title":"Lightning.Pipeline","doc":"Service class to coordinate the running of jobs, and their downstream jobs.","ref":"Lightning.Pipeline.html"},{"type":"function","title":"Lightning.Pipeline.assemble_logs_for_run/1","doc":"Return all logs for a run as a string of text, separated by new line breaks","ref":"Lightning.Pipeline.html#assemble_logs_for_run/1"},{"type":"function","title":"Lightning.Pipeline.logs_for_run/1","doc":"Return all logs for a run as a list","ref":"Lightning.Pipeline.html#logs_for_run/1"},{"type":"function","title":"Lightning.Pipeline.process/1","doc":"","ref":"Lightning.Pipeline.html#process/1"},{"type":"module","title":"Lightning.Pipeline.Runner","doc":"Job running entrypoint","ref":"Lightning.Pipeline.Runner.html"},{"type":"function","title":"Lightning.Pipeline.Runner.create_dataclip_from_result/2","doc":"Creates a dataclip linked to the run that just finished. If either the file doesn't exist or there is a JSON decoding error, it logs and returns an error tuple.","ref":"Lightning.Pipeline.Runner.html#create_dataclip_from_result/2"},{"type":"function","title":"Lightning.Pipeline.Runner.find_or_install_adaptor/1","doc":"Make sure an adaptor matching the name is available. If it is available, return it's Engine.Adaptor struct - if not then install it.","ref":"Lightning.Pipeline.Runner.html#find_or_install_adaptor/1"},{"type":"function","title":"Lightning.Pipeline.Runner.scrub_result/1","doc":"Scrubs values from all keys in configuration, will be replaced by extensions to scrubber.ex, which is currently only used for logs.","ref":"Lightning.Pipeline.Runner.html#scrub_result/1"},{"type":"function","title":"Lightning.Pipeline.Runner.start/2","doc":"Execute a Run. Given a valid run: Persist the Dataclip and the Job's body to disk Create a blank output file on disk Build up a %Lightning.Runtime.Runspec{} with the paths, and adaptor module name And start it via Handler.start/2 . The callbacks implemented on Handler ( c:Handler.on_start/1 and c:Handler.on_finish/2 ) update the run when a Run is started and when it's finished, attaching the exit_code and log when they are available.","ref":"Lightning.Pipeline.Runner.html#start/2"},{"type":"module","title":"Lightning.Pipeline.Runner.Handler","doc":"Custom handler callbacks for Lightnings use of Engine to execute runs.","ref":"Lightning.Pipeline.Runner.Handler.html"},{"type":"function","title":"Lightning.Pipeline.Runner.Handler.on_start/1","doc":"The on_start handler updates the run, setting the started_at time and stamping the run with the ID of the credential that was used, if any, to facilitate easier auditing.","ref":"Lightning.Pipeline.Runner.Handler.html#on_start/1"},{"type":"function","title":"Lightning.Pipeline.Runner.Handler.stop/1","doc":"","ref":"Lightning.Pipeline.Runner.Handler.html#stop/1"},{"type":"type","title":"Lightning.Pipeline.Runner.Handler.handler_opts/0","doc":"","ref":"Lightning.Pipeline.Runner.Handler.html#t:handler_opts/0"},{"type":"module","title":"Lightning.Pipeline.StateAssembler","doc":"Facilities for building the state for a Run How state is assembled For the most common jobs, an inbound webhook will store an :http_request type dataclip. The reason that is created is associated with the dataclip. At runtime, the initial state for a Run will be in the shape of: { "data" : < the dataclip > , "configuration" : < the job ' s credential > } Saved inputs Saved custom inputs will only have state.configuration changed, everything else will remain as displayed. Flow Jobs When a Job is triggered by a previous Jobs success or failure these are the rules for constructing that Jobs state: For jobs that trigger on it's upstream jobs failure, the event will have the previous runs input dataclip as its input dataclip. The state will also have the log of the previous run attached on the error key. For Jobs triggered by a previous success, the run will have the previous runs output dataclip as its input dataclip. :run_result dataclips are expected to already have a data key, and are merged into the root.","ref":"Lightning.Pipeline.StateAssembler.html"},{"type":"function","title":"Lightning.Pipeline.StateAssembler.assemble/1","doc":"Assemble state for use in a Run.","ref":"Lightning.Pipeline.StateAssembler.html#assemble/1"},{"type":"module","title":"Lightning.Jobs","doc":"The Jobs context.","ref":"Lightning.Jobs.html"},{"type":"function","title":"Lightning.Jobs.change_job/2","doc":"Returns an %Ecto.Changeset{} for tracking job changes. Examples iex> change_job ( job ) % Ecto.Changeset { data : % Job { } }","ref":"Lightning.Jobs.html#change_job/2"},{"type":"function","title":"Lightning.Jobs.create_job/1","doc":"Creates a job. Examples iex> create_job ( %{ field : value } ) { :ok , % Job { } } iex> create_job ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Jobs.html#create_job/1"},{"type":"function","title":"Lightning.Jobs.delete_job/1","doc":"Deletes a job. Examples iex> delete_job ( job ) { :ok , % Job { } } iex> delete_job ( job ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Jobs.html#delete_job/1"},{"type":"function","title":"Lightning.Jobs.get_downstream_jobs_for/2","doc":"Returns the list of downstream jobs for a given job, optionally matching a specific trigger type. When downstream_jobs_for is called without a trigger that means its between jobs when it called with a trigger that means we are starting from outside the pipeline","ref":"Lightning.Jobs.html#get_downstream_jobs_for/2"},{"type":"function","title":"Lightning.Jobs.get_job/1","doc":"","ref":"Lightning.Jobs.html#get_job/1"},{"type":"function","title":"Lightning.Jobs.get_job!/1","doc":"Gets a single job. Raises Ecto.NoResultsError if the Job does not exist. Examples iex> get_job! ( 123 ) % Job { } iex> get_job! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Jobs.html#get_job!/1"},{"type":"function","title":"Lightning.Jobs.get_upstream_jobs_for/1","doc":"Returns the list of jobs excluding the one given.","ref":"Lightning.Jobs.html#get_upstream_jobs_for/1"},{"type":"function","title":"Lightning.Jobs.jobs_for_project/1","doc":"","ref":"Lightning.Jobs.html#jobs_for_project/1"},{"type":"function","title":"Lightning.Jobs.jobs_for_project_query/1","doc":"","ref":"Lightning.Jobs.html#jobs_for_project_query/1"},{"type":"function","title":"Lightning.Jobs.list_active_cron_jobs/0","doc":"","ref":"Lightning.Jobs.html#list_active_cron_jobs/0"},{"type":"function","title":"Lightning.Jobs.list_jobs/0","doc":"Returns the list of jobs.","ref":"Lightning.Jobs.html#list_jobs/0"},{"type":"function","title":"Lightning.Jobs.list_jobs_for_workflow/1","doc":"","ref":"Lightning.Jobs.html#list_jobs_for_workflow/1"},{"type":"function","title":"Lightning.Jobs.update_job/2","doc":"Updates a job. Examples iex> update_job ( job , %{ field : new_value } ) { :ok , % Job { } } iex> update_job ( job , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Jobs.html#update_job/2"},{"type":"module","title":"Lightning.Jobs.Job","doc":"Ecto model for Jobs. A Job contains the fields for defining a job. body The expression/javascript code name A plain text identifier adaptor An NPM style string that contains both the module name and it's version. E.g. @openfn/language-http@v1.2.3 or @openfn/language-foo@latest . While the version suffix isn't enforced here as it's not strictly necessary in this context, the front end will ensure a version is stated ( @latest being the default).","ref":"Lightning.Jobs.Job.html"},{"type":"function","title":"Lightning.Jobs.Job.new/1","doc":"","ref":"Lightning.Jobs.Job.html#new/1"},{"type":"function","title":"Lightning.Jobs.Job.put_project_credential/2","doc":"","ref":"Lightning.Jobs.Job.html#put_project_credential/2"},{"type":"function","title":"Lightning.Jobs.Job.put_workflow/2","doc":"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 ] ) job = % Job { } |> Ecto.Changeset . change ( ) |> Job . put_workflow ( workflow ) |> Job . changeset ( attrs )","ref":"Lightning.Jobs.Job.html#put_workflow/2"},{"type":"function","title":"Lightning.Jobs.Job.validate/1","doc":"","ref":"Lightning.Jobs.Job.html#validate/1"},{"type":"type","title":"Lightning.Jobs.Job.t/0","doc":"","ref":"Lightning.Jobs.Job.html#t:t/0"},{"type":"module","title":"Lightning.Jobs.Query","doc":"Query module for finding Jobs.","ref":"Lightning.Jobs.Query.html"},{"type":"function","title":"Lightning.Jobs.Query.enabled_cron_jobs_by_edge/0","doc":"Returns active jobs with their cron triggers for use in the cron scheduling service.","ref":"Lightning.Jobs.Query.html#enabled_cron_jobs_by_edge/0"},{"type":"function","title":"Lightning.Jobs.Query.jobs_for/1","doc":"Returns all jobs accessible to a user, via their projects or all jobs in a given project.","ref":"Lightning.Jobs.Query.html#jobs_for/1"},{"type":"module","title":"Lightning.Jobs.Scheduler","doc":"The Scheduler is responsible for finding jobs that are ready to run based on their cron schedule, and then running them.","ref":"Lightning.Jobs.Scheduler.html"},{"type":"function","title":"Lightning.Jobs.Scheduler.enqueue_cronjobs/0","doc":"Find and start any cronjobs that are scheduled to run for a given time (defaults to the current time).","ref":"Lightning.Jobs.Scheduler.html#enqueue_cronjobs/0"},{"type":"function","title":"Lightning.Jobs.Scheduler.enqueue_cronjobs/1","doc":"","ref":"Lightning.Jobs.Scheduler.html#enqueue_cronjobs/1"},{"type":"module","title":"Lightning.Jobs.Trigger","doc":"Ecto model for Triggers. Triggers represent the criteria in which a Job might be invoked. Types Webhook (default) A webhook trigger allows a Job to invoked (via Lightning.Invocation ) when it's endpoint is called.","ref":"Lightning.Jobs.Trigger.html"},{"type":"function","title":"Lightning.Jobs.Trigger.new/1","doc":"","ref":"Lightning.Jobs.Trigger.html#new/1"},{"type":"function","title":"Lightning.Jobs.Trigger.validate/1","doc":"","ref":"Lightning.Jobs.Trigger.html#validate/1"},{"type":"type","title":"Lightning.Jobs.Trigger.t/0","doc":"","ref":"Lightning.Jobs.Trigger.html#t:t/0"},{"type":"type","title":"Lightning.Jobs.Trigger.trigger_type/0","doc":"","ref":"Lightning.Jobs.Trigger.html#t:trigger_type/0"},{"type":"module","title":"Lightning.Projects","doc":"The Projects context.","ref":"Lightning.Projects.html"},{"type":"function","title":"Lightning.Projects.cancel_scheduled_deletion/1","doc":"","ref":"Lightning.Projects.html#cancel_scheduled_deletion/1"},{"type":"function","title":"Lightning.Projects.change_project/2","doc":"Returns an %Ecto.Changeset{} for tracking project changes. Examples iex> change_project ( project ) % Ecto.Changeset { data : % Project { } }","ref":"Lightning.Projects.html#change_project/2"},{"type":"function","title":"Lightning.Projects.create_project/1","doc":"Creates a project. Examples iex> create_project ( %{ field : value } ) { :ok , % Project { } } iex> create_project ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Projects.html#create_project/1"},{"type":"function","title":"Lightning.Projects.delete_project/1","doc":"Deletes a project and its related data, including workflows, work orders, runs, jobs, attempts, triggers, project users, project credentials, and dataclips Examples iex> delete_project ( project ) { :ok , % Project { } } iex> delete_project ( project ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Projects.html#delete_project/1"},{"type":"function","title":"Lightning.Projects.export_project/2","doc":"Exports a project as yaml. Examples iex> export_project ( :yaml , project_id ) { :ok , string }","ref":"Lightning.Projects.html#export_project/2"},{"type":"function","title":"Lightning.Projects.get_project/1","doc":"","ref":"Lightning.Projects.html#get_project/1"},{"type":"function","title":"Lightning.Projects.get_project!/1","doc":"Gets a single project. Raises Ecto.NoResultsError if the Project does not exist. Examples iex> get_project! ( 123 ) % Project { } iex> get_project! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Projects.html#get_project!/1"},{"type":"function","title":"Lightning.Projects.get_project_credential/2","doc":"","ref":"Lightning.Projects.html#get_project_credential/2"},{"type":"function","title":"Lightning.Projects.get_project_user/1","doc":"","ref":"Lightning.Projects.html#get_project_user/1"},{"type":"function","title":"Lightning.Projects.get_project_user/2","doc":"","ref":"Lightning.Projects.html#get_project_user/2"},{"type":"function","title":"Lightning.Projects.get_project_user!/1","doc":"Gets a single project_user. Raises Ecto.NoResultsError if the ProjectUser does not exist. Examples iex> get_project_user! ( 123 ) % ProjectUser { } iex> get_project_user! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Projects.html#get_project_user!/1"},{"type":"function","title":"Lightning.Projects.get_project_user_role/2","doc":"Returns the role of a user in a project. Possible roles are :admin, :viewer, :editor, and :owner Examples iex> get_project_user_role ( user , project ) :admin iex> get_project_user_role ( user , project ) :viewer iex> get_project_user_role ( user , project ) :editor iex> get_project_user_role ( user , project ) :owner","ref":"Lightning.Projects.html#get_project_user_role/2"},{"type":"function","title":"Lightning.Projects.get_project_with_users!/1","doc":"Gets a single project with it's members via project_users . Raises Ecto.NoResultsError if the Project does not exist. Examples iex> get_project! ( 123 ) % Project { } iex> get_project! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Projects.html#get_project_with_users!/1"},{"type":"function","title":"Lightning.Projects.get_projects_for_user/1","doc":"","ref":"Lightning.Projects.html#get_projects_for_user/1"},{"type":"function","title":"Lightning.Projects.is_member_of?/2","doc":"","ref":"Lightning.Projects.html#is_member_of?/2"},{"type":"function","title":"Lightning.Projects.list_project_credentials/1","doc":"","ref":"Lightning.Projects.html#list_project_credentials/1"},{"type":"function","title":"Lightning.Projects.list_projects/0","doc":"Returns the list of projects. Examples iex> list_projects ( ) [ % Project { } , ... ]","ref":"Lightning.Projects.html#list_projects/0"},{"type":"function","title":"Lightning.Projects.perform/1","doc":"Perform, when called with %{"type" => "purge_deleted"} will find projects that are ready for permanent deletion and purge them.","ref":"Lightning.Projects.html#perform/1"},{"type":"function","title":"Lightning.Projects.project_attempt_run_query/1","doc":"","ref":"Lightning.Projects.html#project_attempt_run_query/1"},{"type":"function","title":"Lightning.Projects.project_attempts_query/1","doc":"","ref":"Lightning.Projects.html#project_attempts_query/1"},{"type":"function","title":"Lightning.Projects.project_credentials_query/1","doc":"","ref":"Lightning.Projects.html#project_credentials_query/1"},{"type":"function","title":"Lightning.Projects.project_dataclip_invocation_reason/1","doc":"","ref":"Lightning.Projects.html#project_dataclip_invocation_reason/1"},{"type":"function","title":"Lightning.Projects.project_dataclips_query/1","doc":"","ref":"Lightning.Projects.html#project_dataclips_query/1"},{"type":"function","title":"Lightning.Projects.project_jobs_query/1","doc":"","ref":"Lightning.Projects.html#project_jobs_query/1"},{"type":"function","title":"Lightning.Projects.project_run_invocation_reasons/1","doc":"","ref":"Lightning.Projects.html#project_run_invocation_reasons/1"},{"type":"function","title":"Lightning.Projects.project_runs_query/1","doc":"","ref":"Lightning.Projects.html#project_runs_query/1"},{"type":"function","title":"Lightning.Projects.project_trigger_invocation_reason/1","doc":"","ref":"Lightning.Projects.html#project_trigger_invocation_reason/1"},{"type":"function","title":"Lightning.Projects.project_triggers_query/1","doc":"","ref":"Lightning.Projects.html#project_triggers_query/1"},{"type":"function","title":"Lightning.Projects.project_user_role_query/2","doc":"","ref":"Lightning.Projects.html#project_user_role_query/2"},{"type":"function","title":"Lightning.Projects.project_users_query/1","doc":"","ref":"Lightning.Projects.html#project_users_query/1"},{"type":"function","title":"Lightning.Projects.project_workflows_query/1","doc":"","ref":"Lightning.Projects.html#project_workflows_query/1"},{"type":"function","title":"Lightning.Projects.project_workorders_query/1","doc":"","ref":"Lightning.Projects.html#project_workorders_query/1"},{"type":"function","title":"Lightning.Projects.projects_for_user_query/1","doc":"","ref":"Lightning.Projects.html#projects_for_user_query/1"},{"type":"function","title":"Lightning.Projects.schedule_project_deletion/1","doc":"Given a project, this function sets a scheduled deletion date based on the PURGE_DELETED_AFTER_DAYS environment variable. If no ENV is set, this date defaults to NOW but the automatic project purge cronjob will never run. (Note that subsequent logins will be blocked for projects pending deletion.)","ref":"Lightning.Projects.html#schedule_project_deletion/1"},{"type":"function","title":"Lightning.Projects.select_first_project_for_user/1","doc":"","ref":"Lightning.Projects.html#select_first_project_for_user/1"},{"type":"function","title":"Lightning.Projects.update_project/2","doc":"Updates a project. Examples iex> update_project ( project , %{ field : new_value } ) { :ok , % Project { } } iex> update_project ( project , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Projects.html#update_project/2"},{"type":"function","title":"Lightning.Projects.update_project_user/2","doc":"Updates a project user. Examples iex> update_project_user ( project_user , %{ field : new_value } ) { :ok , % ProjectUser { } } iex> update_project_user ( projectUser , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Projects.html#update_project_user/2"},{"type":"function","title":"Lightning.Projects.url_safe_project_name/1","doc":"","ref":"Lightning.Projects.html#url_safe_project_name/1"},{"type":"function","title":"Lightning.Projects.validate_for_deletion/2","doc":"Returns an %Ecto.Changeset{} for changing the project scheduled_deletion. Examples iex> validate_for_deletion ( project ) % Ecto.Changeset { data : % Project { } }","ref":"Lightning.Projects.html#validate_for_deletion/2"},{"type":"module","title":"Lightning.Projects.Project","doc":"Project model","ref":"Lightning.Projects.Project.html"},{"type":"function","title":"Lightning.Projects.Project.deletion_changeset/2","doc":"Changeset to validate a project deletion request, the user must enter the projects name to confirm.","ref":"Lightning.Projects.Project.html#deletion_changeset/2"},{"type":"function","title":"Lightning.Projects.Project.validate/1","doc":"","ref":"Lightning.Projects.Project.html#validate/1"},{"type":"type","title":"Lightning.Projects.Project.t/0","doc":"","ref":"Lightning.Projects.Project.html#t:t/0"},{"type":"module","title":"Lightning.Projects.ProjectCredential","doc":"Join table to assign credentials to a project","ref":"Lightning.Projects.ProjectCredential.html"},{"type":"type","title":"Lightning.Projects.ProjectCredential.t/0","doc":"","ref":"Lightning.Projects.ProjectCredential.html#t:t/0"},{"type":"module","title":"Lightning.Projects.ProjectUser","doc":"Join table to assign users to a project","ref":"Lightning.Projects.ProjectUser.html"},{"type":"type","title":"Lightning.Projects.ProjectUser.t/0","doc":"","ref":"Lightning.Projects.ProjectUser.html#t:t/0"},{"type":"module","title":"Lightning.Projects.ProjectUser.DigestEnum","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.cast/1","doc":"Callback implementation for Ecto.Type.cast/1 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#cast/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.create_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#create_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.drop_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#drop_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.dump/1","doc":"Callback implementation for Ecto.Type.dump/1 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#dump/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.embed_as/1","doc":"Callback implementation for Ecto.Type.embed_as/1 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#embed_as/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.equal?/2","doc":"Callback implementation for Ecto.Type.equal?/2 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#equal?/2"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.load/1","doc":"Callback implementation for Ecto.Type.load/1 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#load/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.schema/0","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#schema/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.schemaless_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#schemaless_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.type/0","doc":"Callback implementation for Ecto.Type.type/0 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.valid_value?/1","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#valid_value?/1"},{"type":"type","title":"Lightning.Projects.ProjectUser.DigestEnum.t/0","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#t:t/0"},{"type":"module","title":"Lightning.Projects.ProjectUser.RolesEnum","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.cast/1","doc":"Callback implementation for Ecto.Type.cast/1 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#cast/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.create_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#create_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.drop_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#drop_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.dump/1","doc":"Callback implementation for Ecto.Type.dump/1 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#dump/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.embed_as/1","doc":"Callback implementation for Ecto.Type.embed_as/1 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#embed_as/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.equal?/2","doc":"Callback implementation for Ecto.Type.equal?/2 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#equal?/2"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.load/1","doc":"Callback implementation for Ecto.Type.load/1 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#load/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.schema/0","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#schema/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.schemaless_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#schemaless_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.type/0","doc":"Callback implementation for Ecto.Type.type/0 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.valid_value?/1","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#valid_value?/1"},{"type":"type","title":"Lightning.Projects.ProjectUser.RolesEnum.t/0","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#t:t/0"},{"type":"module","title":"Lightning.Projects.Provisioner","doc":"Provides functions for importing projects. This module is used by the provisioning HTTP API. When providing a project to import, all records must have an id field. It's up to the caller to ensure that the id is unique and generated ahead of time in the case of new records.","ref":"Lightning.Projects.Provisioner.html"},{"type":"function","title":"Lightning.Projects.Provisioner.import_document/3","doc":"Import a project.","ref":"Lightning.Projects.Provisioner.html#import_document/3"},{"type":"function","title":"Lightning.Projects.Provisioner.load_project/1","doc":"Load a project by ID, including all workflows and their associated jobs, triggers and edges. Returns nil if the project does not exist.","ref":"Lightning.Projects.Provisioner.html#load_project/1"},{"type":"function","title":"Lightning.Projects.Provisioner.parse_document/2","doc":"","ref":"Lightning.Projects.Provisioner.html#parse_document/2"},{"type":"function","title":"Lightning.Projects.Provisioner.validate_extraneous_params/1","doc":"Validate that there are no extraneous parameters in the changeset. For all params in the changeset, ensure that the param is in the list of known fields in the schema.","ref":"Lightning.Projects.Provisioner.html#validate_extraneous_params/1"},{"type":"module","title":"Lightning.Runtime.ChildProcess","doc":"Provides an interface between a RunSpec and the shell. Internally it calls node , and more specifically the OpenFn core CLI.","ref":"Lightning.Runtime.ChildProcess.html"},{"type":"function","title":"Lightning.Runtime.ChildProcess.build_command/1","doc":"Builds up a string for shell execution based on the RunSpec","ref":"Lightning.Runtime.ChildProcess.html#build_command/1"},{"type":"function","title":"Lightning.Runtime.ChildProcess.build_env/2","doc":"","ref":"Lightning.Runtime.ChildProcess.html#build_env/2"},{"type":"function","title":"Lightning.Runtime.ChildProcess.run/2","doc":"","ref":"Lightning.Runtime.ChildProcess.html#run/2"},{"type":"behaviour","title":"Lightning.Runtime.Handler","doc":"A strategy for executing things via ChildProcess. This module handles the dirty bits, setting up processes and coordinating results (and logs) as they arrive. Since it is a macro, see Lightning.Pipeline.Runner.Handler for a usage example.","ref":"Lightning.Runtime.Handler.html"},{"type":"function","title":"Lightning.Runtime.Handler.env/2","doc":"","ref":"Lightning.Runtime.Handler.html#env/2"},{"type":"callback","title":"Lightning.Runtime.Handler.env/2","doc":"","ref":"Lightning.Runtime.Handler.html#c:env/2"},{"type":"callback","title":"Lightning.Runtime.Handler.log_callback/3","doc":"","ref":"Lightning.Runtime.Handler.html#c:log_callback/3"},{"type":"function","title":"Lightning.Runtime.Handler.on_finish/2","doc":"","ref":"Lightning.Runtime.Handler.html#on_finish/2"},{"type":"callback","title":"Lightning.Runtime.Handler.on_finish/2","doc":"","ref":"Lightning.Runtime.Handler.html#c:on_finish/2"},{"type":"function","title":"Lightning.Runtime.Handler.on_log_emit/2","doc":"","ref":"Lightning.Runtime.Handler.html#on_log_emit/2"},{"type":"callback","title":"Lightning.Runtime.Handler.on_log_emit/2","doc":"","ref":"Lightning.Runtime.Handler.html#c:on_log_emit/2"},{"type":"function","title":"Lightning.Runtime.Handler.on_start/1","doc":"","ref":"Lightning.Runtime.Handler.html#on_start/1"},{"type":"callback","title":"Lightning.Runtime.Handler.on_start/1","doc":"Called with context, if any - when the Run has been started.","ref":"Lightning.Runtime.Handler.html#c:on_start/1"},{"type":"callback","title":"Lightning.Runtime.Handler.start/2","doc":"The entrypoint for executing a run.","ref":"Lightning.Runtime.Handler.html#c:start/2"},{"type":"type","title":"Lightning.Runtime.Handler.t/0","doc":"","ref":"Lightning.Runtime.Handler.html#t:t/0"},{"type":"module","title":"Lightning.Runtime.LogAgent","doc":"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" } )","ref":"Lightning.Runtime.LogAgent.html"},{"type":"function","title":"Lightning.Runtime.LogAgent.buffer/1","doc":"","ref":"Lightning.Runtime.LogAgent.html#buffer/1"},{"type":"function","title":"Lightning.Runtime.LogAgent.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.Runtime.LogAgent.html#child_spec/1"},{"type":"function","title":"Lightning.Runtime.LogAgent.process_chunk/2","doc":"","ref":"Lightning.Runtime.LogAgent.html#process_chunk/2"},{"type":"function","title":"Lightning.Runtime.LogAgent.start_link/1","doc":"","ref":"Lightning.Runtime.LogAgent.html#start_link/1"},{"type":"type","title":"Lightning.Runtime.LogAgent.logline/0","doc":"","ref":"Lightning.Runtime.LogAgent.html#t:logline/0"},{"type":"module","title":"Lightning.Runtime.LogAgent.StringBuffer","doc":"Internal datastructure to hold and process new bytes for a list of characters. By checking the if the buffer is a complete grapheme, emitting the buffer once valid and returning nil otherwise. In the case of emojis and other language character sets, a character (in UTF-8) can be between 1-4 bytes - when streaming logs for example it's quite easy to receive less than the whole character which can result in crashes or corrupt text.","ref":"Lightning.Runtime.LogAgent.StringBuffer.html"},{"type":"function","title":"Lightning.Runtime.LogAgent.StringBuffer.buffer/1","doc":"","ref":"Lightning.Runtime.LogAgent.StringBuffer.html#buffer/1"},{"type":"function","title":"Lightning.Runtime.LogAgent.StringBuffer.new/0","doc":"","ref":"Lightning.Runtime.LogAgent.StringBuffer.html#new/0"},{"type":"function","title":"Lightning.Runtime.LogAgent.StringBuffer.process_chunk/2","doc":"","ref":"Lightning.Runtime.LogAgent.StringBuffer.html#process_chunk/2"},{"type":"function","title":"Lightning.Runtime.LogAgent.StringBuffer.reduce_chunk/2","doc":"","ref":"Lightning.Runtime.LogAgent.StringBuffer.html#reduce_chunk/2"},{"type":"type","title":"Lightning.Runtime.LogAgent.StringBuffer.t/0","doc":"","ref":"Lightning.Runtime.LogAgent.StringBuffer.html#t:t/0"},{"type":"module","title":"Lightning.Runtime.Result","doc":"Data structure used to represent the result of a Run executed by Lightning.Runtime.ChildProcess .","ref":"Lightning.Runtime.Result.html"},{"type":"function","title":"Lightning.Runtime.Result.new/1","doc":"","ref":"Lightning.Runtime.Result.html#new/1"},{"type":"type","title":"Lightning.Runtime.Result.t/0","doc":"","ref":"Lightning.Runtime.Result.html#t:t/0"},{"type":"module","title":"Lightning.Runtime.RunSpec","doc":"A struct containing all the parameters required to execute a Job.","ref":"Lightning.Runtime.RunSpec.html"},{"type":"function","title":"Lightning.Runtime.RunSpec.new/1","doc":"","ref":"Lightning.Runtime.RunSpec.html#new/1"},{"type":"type","title":"Lightning.Runtime.RunSpec.t/0","doc":"","ref":"Lightning.Runtime.RunSpec.html#t:t/0"},{"type":"exception","title":"Lightning.MetadataService.Error","doc":"","ref":"Lightning.MetadataService.Error.html"},{"type":"function","title":"Lightning.MetadataService.Error.message/1","doc":"Callback implementation for Exception.message/1 .","ref":"Lightning.MetadataService.Error.html#message/1"},{"type":"function","title":"Lightning.MetadataService.Error.new/1","doc":"","ref":"Lightning.MetadataService.Error.html#new/1"},{"type":"type","title":"Lightning.MetadataService.Error.t/0","doc":"","ref":"Lightning.MetadataService.Error.html#t:t/0"},{"type":"extras","title":"Lightning","doc":"OpenFn/Lightning is a fully open source, workflow automation platform that's used to automate critical business processes and integrate information systems. From last-mile services to national-level reporting, it boosts efficiency & effectiveness while enabling secure, stable, scalable interoperability at all levels. Read more about Lightning on OpenFn/Docs . Lightning is the latest "v2" of OpenFn, the Digital Public Good for workflow automation . Use Lightning to visually build, execute and manage workflows. The latest version of the OpenFn technology - first launched in 2014, now tried and tested by NGOs in over 40 countries Fully open source (no premium features or community edition, you get the same product whether using SaaS or self-hosted) Recognised as a Digital Public Good by the DPGA and a Global Good for Health by Digital Square","ref":"readme.html"},{"type":"extras","title":"Lightning - Contents","doc":"Demo Sign up for the BETA Features Getting started Run Lightning via Docker Deploy Lightning on Docker or Kubernetes Run Lightning on your local machine (contributors) Troubleshooting Contribute Project Configuration Quickstart Generate the documentation Security and standards Server specs for self-hosting Questions or feedback?","ref":"readme.html#contents"},{"type":"extras","title":"Lightning - Demo","doc":"Watch a quick demo here: https://www.youtube.com/watch?v=BNaxlHAWb5I Explore our demo app* with username: demo@openfn.org , password: welcome123 , or read through the features section to view screenshots of the app. *Note that the demo app refreshes daily, so do not configure workflows you want to save.","ref":"readme.html#demo"},{"type":"extras","title":"Lightning - Register for a Beta account","doc":"Register for a Beta account at app.openfn.org and go through the quick-start guide to get familiar with the app.","ref":"readme.html#register-for-a-beta-account"},{"type":"extras","title":"Lightning - Features","doc":"Build Plan and build workflows using Lightning's visual interface to quickly define when, where and what you want your automation to do. Use our CLI to quickly build, edit and deploy projects from the comfort of your own code editor. Monitor Monitor all workflow activity in one place. Filter and search runs to identify issues that need addressing and follow how a specific request has been processed Configure alerts to be notified on run failures Receive a project digest for a daily/weekly/monthly summary of your project activity Manage Manage users and access by project Roles and permissions Authorization is a central part of Lightning. As such, users are given different roles which determine what level of access they have for resources in the application. For more details about roles and permissions in Lightning, please refer to our documentation . Roadmap View our public roadmap here .","ref":"readme.html#features"},{"type":"extras","title":"Lightning - Getting Started","doc":"If you only want to RUN Lightning on your own server, we recommend using Docker. If you want to DEPLOY Lightning, we recommend Docker builds and Kubernetes. If you want to CONTRIBUTE to the project, we recommend running Lightning on your local machine .","ref":"readme.html#getting-started"},{"type":"extras","title":"Lightning - Run via Docker","doc":"Install the latest version of Docker Clone this repo using git Copy the .env.example file to .env Run docker compose run --rm web mix ecto.migrate By default the application will be running at localhost:4000 . You can then rebuild and run with docker compose build and docker compose up . See "Problems with Docker" for additional troubleshooting help. Note that you can also create your own docker-compose.yml file, configuring a postgres database and using a pre-built image from Dockerhub.","ref":"readme.html#run-via-docker"},{"type":"extras","title":"Lightning - Deploy on external infrastructure","doc":"See Deployment for more detailed information.","ref":"readme.html#deploy-on-external-infrastructure"},{"type":"extras","title":"Lightning - Run Lightning locally","doc":"Clone the repo and optionally set ENVs git clone git@github.com:OpenFn/Lightning.git # or from YOUR fork! cd Lightning cp .env.example .env # and adjust as necessary! Take note of database names and ports in particular—they've got to match across your Postgres setup and your ENVs. You can run lightning without any ENVs assuming a vanilla postgres setup (see below), but you may want to make adjustments. Database Setup If you're already using Postgres locally, create a new database called lightning_dev , for example. If you'd rather use Docker to set up a Postgres DB, create a new volume and image: docker volume create lightning-postgres-data docker create \\ --name lightning-postgres \\ --mount source=lightning-postgres-data,target=/var/lib/postgresql/data \\ --publish 5432:5432 \\ -e POSTGRES_PASSWORD=postgres \\ postgres:15.3-alpine docker start lightning-postgres Elixir & Ecto Setup We use asdf to configure our local environments. Included in the repo is a .tool-versions file that is read by asdf in order to dynamically make the specified versions of Elixir and Erlang available. You'll need asdf plugins for Erlang , NodeJs Elixir and k6 . asdf install # Install language versions mix local.hex mix deps.get mix local.rebar --force mix ecto.create # Create a development database in Postgres mix ecto.migrate [[ $(uname -m) == 'arm64' ]] && mix compile.rambo # Force compile rambo if on M1 mix lightning.install_runtime mix lightning.install_schemas npm install --prefix assets Run the app Lightning is a web app. To run it in interactive Elixir mode, start the development server by running with your environment variables by running: iex -S mix phx.server or if you have set up custom environment variables, run: env $(cat .env | grep -v "#" | xargs ) iex -S mix phx.server Once the server has started, head to localhost:4000 in your browser. Run the tests Before the first time running the tests, you need a test database setup. MIX_ENV=test mix ecto.create And then after that run the tests using: MIX_ENV=test mix test We also have test.watch installed which can be used to rerun the tests on file changes.","ref":"readme.html#run-lightning-locally"},{"type":"extras","title":"Lightning - Benchmarking","doc":"We are using k6 to benchmark Lightning. Under benchmarking folder you can find a script for benchmarking Webhook Workflows. See Benchmarking for more detailed information.","ref":"readme.html#benchmarking"},{"type":"extras","title":"Lightning - Troubleshooting","doc":"Trouble with environment variables For troubleshooting custom environment variable configuration it's important to know how an Elixir app loads and modifies configuration. The order is as follows: Stuff in config.exs is loaded. That is then modified (think: overwritten ) by stuff your ENV-specific config: dev.exs , prod.exs or test.exs . That is then modified by runtime.exs which is where you are allowed to use System.env() Finally init/2 (if present in a child application) gets called (which takes the config which has been set in steps 1-3) when that child application is started during the parent app startup defined in application.ex . Problems with Postgres If you're having connecting issues with Postgres, check the database section of your .env to ensure the DB url is correctly set for your environment — note that composing a DB url out of other, earlier declared variables, does not work while using xargs . Problems with Debian If you're getting this error on debian == > earmark_parser Compiling 1 file ( . yrl ) / usr / lib / erlang / lib / parsetools - 2.3 . 1 / include / yeccpre . hrl : no such file or directory could not compile dependency :earmark_parser , "mix compile" failed . You can recompile this dependency with "mix deps.compile earmark_parser" , update it with "mix deps.update earmark_parser" or clean it with "mix deps.clean earmark_parser" You need to install erlang development environment sudo apt install erlang-dev refer to this issue Problems with Docker Versions The build may not work on old versions of Docker and Docker compose. It has been tested against: Docker version 20.10 . 17 , build 100 c701 Docker Compose version v2 . 6.0 Problems with rambo When running mix compile.rambo on Apple Silicon (an Apple M1/M2, macarm , aarch64-apple-darwin ) and encountering the following error: ** (RuntimeError) Rambo does not ship with binaries for your environment. aarch64 - apple - darwin22 . 3.0 detected Install the Rust compiler so a binary can be prepared for you . lib / mix / tasks / compile . rambo . ex : 89 : Mix.Tasks.Compile.Rambo . compile! / 0 lib / mix / tasks / compile . rambo . ex : 51 : Mix.Tasks.Compile.Rambo . run / 1 ( mix 1.14 . 2 ) lib / mix / task . ex : 421 : anonymous fn / 3 in Mix.Task . run_task / 4 ( mix 1.14 . 2 ) lib / mix / cli . ex : 84 : Mix.CLI . run_task / 2 You can resolve this error by installing the Rust compiler using Homebrew. Run the following command in your terminal: brew install rust If you have already compiled Rambo explicitly via mix compile.rambo , and you are still seeing the following error: sh : / path_to_directory / Lightning / _build / dev / lib / rambo / priv / rambo : No such file or directory sh : line 0 : exec : / path_to_directory / Lightning / _build / dev / lib / rambo / priv / rambo : cannot execute : No such file or directory You can try renaming deps/rambo/priv/rambo-mac to deps/rambo/priv/rambo . If neither of the approaches above work, please raise an issue. Starting from scratch If you're actively working with docker, you start experiencing issues, and you would like to start from scratch you can clean up everything and start over like this: # To remove any ignored files and reset your .env to it's example git clean -fdx && cp .env.example .env # You can skip the line below if you want to keep your database docker compose down --rmi all --volumes docker compose build --no-cache web && \\ docker compose create --force-recreate docker compose run --rm web mix ecto.migrate docker compose up","ref":"readme.html#troubleshooting"},{"type":"extras","title":"Lightning - Project Configuration Quickstart","doc":"For help getting started with your OpenFn/Lightning Project and Workflows configuration, check out the Lightning Quickstart Guidance on OpenFn/Docs.","ref":"readme.html#project-configuration-quickstart"},{"type":"extras","title":"Lightning - Contribute to this project","doc":"First, thanks for being here! You're contributing to a digital public good that will always be free and open source and aimed at serving innovative NGOs, governments, and social impact organizations the world over! You rock. ❤️ FYI, Lightning is built in Elixir , harnessing the Phoenix Framework . Currently, the only unbundled dependency is a PostgreSQL database. If you'd like to contribute to this projects, follow the steps below: Assign yourself to an issue Read through the existing issues , assign yourself to the issue you have chosen. Leave a comment on the issue to let us know you'll be working on it, and if you have any questions of clarifications that would help you get started ask them there - we will get back to you as soon as possible. If there isn't already an issue for the feature you would like to contribute, please start a discussion in our community forum . Open a pull request Clone the Lightning repository, then fork it . Run through setting up your environment and make your changes. Make sure you have written your tests and updated /CHANGELOG.md (in the 'Unreleased' section, add a short description of the changes you are making, along with a link to your issue). Open a draft pull request by clicking "Contribute > Open Pull Request" from your forked repository. Fill out the pull request template (this will be added automatically for you), then make sure to self-review your code and go through the 'Review checklist'. Don't worry about the QA checkbox, our product manager Amber will tick that once she has reviewed your PR. You can leave any notes for the reviewer in a comment. Once you're ready to submit a pull request, you can mark your draft PR as 'Ready for review' and assign @stuartc or @taylordowns2000.","ref":"readme.html#contribute-to-this-project"},{"type":"extras","title":"Lightning - Generating Documentation","doc":"You can generate the HTML and EPUB documentation locally using: mix docs and opening doc/index.html in your browser.","ref":"readme.html#generating-documentation"},{"type":"extras","title":"Lightning - Security and Standards","doc":"We use a host of common Elixir static analysis tools to help us avoid common pitfalls and make sure we keep everything clean and consistent. In addition to our test suite, you can run the following commands: mix format --check-formatted Code formatting checker, run again without the --check-formatted flag to have your code automatically changed. mix dialyzer Static analysis for type mismatches and other common warnings. See dialyxir . mix credo Static analysis for consistency, and coding standards. See Credo . mix sobelow Check for commonly known security exploits. See Sobelow . MIX_ENV=test mix coveralls Test coverage reporter. This command also runs the test suite, and can be used in place of mix test when checking everything before pushing your code. See excoveralls . For convenience there is a verify mix task that runs all of the above and defaults the MIX_ENV to test . For more guidance on security best practices for workflow automation implementations, check out OpenFn Docs: docs.openfn.org/documentation/getting-started/security","ref":"readme.html#security-and-standards"},{"type":"extras","title":"Lightning - Server Specs for Self-Hosting","doc":"For recommend server specifications for self-hosting of Lightning, check out this Community topic: community.openfn.org/t/specs-for-self-hosting-lightning/292","ref":"readme.html#server-specs-for-self-hosting"},{"type":"extras","title":"Lightning - Support","doc":"If you have any questions, feedback, or issues, please: Post on the OpenFn Community at community.openfn.org Open an issue directly on this Github Repo: github.com/OpenFn/Lightning/issues","ref":"readme.html#support"},{"type":"extras","title":"Deployment","doc":"","ref":"deployment.html"},{"type":"extras","title":"Deployment - Encryption","doc":"Lightning enforces encryption at rest for Credentials, for which an encryption key must be provided when running in production. The key is expected to be a randomized set of bytes, 32 long; and Base64 encoded when setting the environment variable. There is a mix task that can generate keys in the correct shape for use as an environment variable: mix lightning.gen_encryption_key 0bJ9w+hn4ebQrsCaWXuA9JY49fP9kbHmywGd5K7k+/s= Copy your key (NOT THIS ONE) and set it as PRIMARY_ENCRYPTION_KEY in your environment.","ref":"deployment.html#encryption"},{"type":"extras","title":"Deployment - Environment Variables","doc":"Note that for secure deployments, it's recommended to use a combination of secrets and configMaps to generate secure environment variables. ADAPTORS_PATH - where you store your locally installed adaptors DISABLE_DB_SSL - in production the use of an SSL conntection to Postgres is required by default, setting this to "true" allows unencrypted connections to the database. This is strongly discouraged in real production environment. K8S_HEADLESS_SERVICE - this environment variable is automatically set if you're running on GKE and it is used to establish an Erlang node cluster. Note that if you're not using Kubernetes, the "gossip" strategy is used for establish clusters. LISTEN_ADDRESS " - the address the web server should bind to, defaults to 127.0.0.1 to block access from other machines. LOG_LEVEL - how noisy you want the logs to be (e.g. debug , info ) MAX_RUN_DURATION - the maximum time (in milliseconds) that jobs are allowed to run (keep this below your termination_grace_period if using kubernetes) MIX_ENV - your mix env, likely prod for deployment NODE_ENV - node env, likely production for deployment ORIGINS - the allowed origins for web traffic to the backend PORT - the port your Phoenix app runs on PRIMARY_ENCRYPTION_KEY - a base64 encoded 32 character long string. See Encryption . SCHEMAS_PATH - path to the credential schemas that provide forms for different adaptors SECRET_KEY_BASE - a secret key used as a base to generate secrets for encrypting and signing data. SENTRY_DSN - if using Sentry for error monitoring, your DSN URL_HOST - the host, used for writing urls (e.g., demo.openfn.org ) URL_PORT - the port, usually 443 for production URL_SCHEME - the scheme for writing urls, (e.g., https ) Google Using your Google Cloud account, provision a new OAuth 2.0 Client with the 'Web application' type. Set the callback url to: https://<ENDPOINT DOMAIN>/authenticate/callback . Replacing ENDPOINT DOMAIN with the host name of your instance. Once the client has been created, get/download the OAuth client JSON and set the following environment variables: GOOGLE_CLIENT_ID - Which is client_id from the client details. GOOGLE_CLIENT_SECRET - client_secret from the client details.","ref":"deployment.html#environment-variables"},{"type":"extras","title":"Benchmarking","doc":"Execute the following steps to run a benchmark on Lightning: Make sure you have k6 installed locally. If you're using asdf you can run asdf install in the project root. Spin up your Lightning local instance Run the demo setup script: mix run --no-start priv/repo/demo.exs The webhookURL is already set to default to the webhook created in the demo data In another terminal (do not stop the Lightning server) run the benchmarking/script.js file using the following command k6 run benchmarking/script.js If the script exits succesfully, this means the app met the defined performance thresholds. To collect the benchmarking data in a CSV file, run the previous command with the --out filename option. k6 run --out csv=test_results.csv benchmarking/script.js See results output for other available output formats.","ref":"benchmarking.html"},{"type":"extras","title":"Provisioning","doc":"Lightning offers the ability to configure projects via the HTTP API. By providing a JSON document with the desired configuration, the project can be configured to your liking.","ref":"provisioning.html"},{"type":"extras","title":"Provisioning - Using the API","doc":"The API is available at /api/provision , and expects an application/json Content-Type. Authentication The API requires a valid auth token to be provided in the Authorization header. Example Request curl -X POST \\ -d @project.json \\ -H "Authorization: Bearer $TOKEN" \\ -H "Content-Type: application/json" \\ $ENDPOINT/api/provision","ref":"provisioning.html#using-the-api"},{"type":"extras","title":"Provisioning - Document Structure","doc":"The provisioning document is a JSON document with the project at the root. All entities must have an id field, which is a UUIDv4 string. In the case of new entities, this must be generated by the client. The API is idempotent, and the distinction between creating and updating is determined by the presence of the id field. { "id": "<<project-id>>", "name": "<<project-name>>", "workflows": [ { "id": "<<workflow-id>>", "name": "<<workflow-name>>", "jobs": [ { "id": "<<job-id>>", "name": "<<job-name>>", "body": "<<job-body>>", "adaptor": "<<adaptor-name>>", "enabled": true } // ... more jobs ], "triggers": [ { "id": "<<trigger-id>>", "name": "<<trigger-name>>", "type": "webhook" } // ... more triggers ], "edges": [ { "id": "<<edge-id>>", "source_trigger_id": "<<trigger-id>>", "target_job_id": "<<job-id>>" } // ... more edges ] } // ... more workflows ] }","ref":"provisioning.html#document-structure"},{"type":"extras","title":"Provisioning - API Behaviour","doc":"The API expects all existing entities to be provided in the provisioning document. If the document provided is out of date (e.g. a new job was added on the server), a new reference document should be fetched and the changes applied to it. Deleting Entities Entities can be deleted by setting the disabled key to true . Example: { "id": "<<project-id>>", "workflows": [ { "id": "<<workflow-id>>", "jobs": [ { "id": "<<job-id>>", "delete": true // <== delete this job } ] } ] }","ref":"provisioning.html#api-behaviour"},{"type":"extras","title":"Provisioning - Relationship with Projects as Code","doc":"The Projects as Code spec is a superset of the provisioning API. Projects as Code allows for the user to specify a key for each entity, which makes it easier to manage the project in the future. For example: name: my-project workflows: workflow-one: jobs: job-one: body: | console.log("Hello World"); adaptor: '@openfn/language-common' enabled: true triggers: trigger-one: type: webhook edges: - source_trigger: trigger-one target_job: job-one The above YAML document illustrates the use of keys being used to identify entities. Allowing the user to provision the same project to multiple environments. The API is unaware of 'keys', and expects IDs to be provided by the client. In order to convert the above YAML document to a provisioning document, the CLI uses a local state file (if available) to map the keys to UUIDs. Using the example above a state file might look like this: { "id": "f6ba9a8c-b687-473a-908e-e250686f1eed", "workflows": { "workflow-one": { "id": "f206aa85-4fce-492e-94eb-ffd32c75d178", "jobs": {}, "triggers": {} } } } The state file shows that the project and workflow already exist, but the job, trigger and edge do not. In order to create these new entities, IDs will be applied them. On a successful application of the provisioning document, the state file will be updated to reflect the new IDs and entities. { "id": "f6ba9a8c-b687-473a-908e-e250686f1eed", "workflows": { "workflow-one": { "id": "f206aa85-4fce-492e-94eb-ffd32c75d178", "jobs": { "job-one": { "id": "18ed71de-caf8-4822-aefc-5b19351f4016" } }, "triggers": { "trigger-one": { "id": "e0b9f357-9cf9-4206-9924-4d5674aad830" } }, "edges": [ { "id": "c239d994-6662-4637-90f8-0293c924b461", "source_trigger_id": "e0b9f357-9cf9-4206-9924-4d5674aad830", "target_job_id": "18ed71de-caf8-4822-aefc-5b19351f4016" } ] } } }","ref":"provisioning.html#relationship-with-projects-as-code"},{"type":"extras","title":"Changelog","doc":"All notable changes to this project will be documented in this file. The format is based on Keep a Changelog , and this project adheres to Semantic Versioning .","ref":"changelog.html"},{"type":"extras","title":"Changelog - [Unreleased]","doc":"Added Changed Fixed","ref":"changelog.html#unreleased"},{"type":"extras","title":"Changelog - [v0.7.1] - 2023-08-04","doc":"Added Changed Fixed Fixed flickery icons on new workflow job creation.","ref":"changelog.html#v0-7-1-2023-08-04"},{"type":"extras","title":"Changelog - [v0.7.0] - 2023-08-04","doc":"Added Project owners can require MFA for their users 892 Changed Moved to Elixir 1.15 and Erlang 26.0.2 to sort our an annoying ElixirLS issue that was slowing down our engineers. Update Debian base to use bookworm (Debian 12) for our Docker images Change new credential modal to take up less space on the screen #931 Placeholder nodes are now purely handled client-side Fixed Fix issue creating a new credential from the Job editor where the new credential was not being set on the job. #951 Fix issue where checking a credential type radio button shows as unchecked on first click. #976 Return the pre-filled workflow names #971 Fix version reporting and external reset_demo() call via Application.spec() #1010 Fixed issue where entering a placeholder name through the form would result an in unsaveable workflow #1001 Ensure the DownloadController checks for authentication and authorisation.","ref":"changelog.html#v0-7-0-2023-08-04"},{"type":"extras","title":"Changelog - [v0.7.0-pre5] - 2023-07-28","doc":"Added Changed Unless otherwise specified, only show workorders with activity in last 14 days #968 Fixed","ref":"changelog.html#v0-7-0-pre5-2023-07-28"},{"type":"extras","title":"Changelog - [v0.7.0-pre4] - 2023-07-27","doc":"Added Changed Don't add cast fragments if the search_term is nil #968 Fixed","ref":"changelog.html#v0-7-0-pre4-2023-07-27"},{"type":"extras","title":"Changelog - [v0.7.0-pre3] - 2023-07-26","doc":"Added Changed Fixed Fixed an issue with newly created edges that prevented downstream jobs 977","ref":"changelog.html#v0-7-0-pre3-2023-07-26"},{"type":"extras","title":"Changelog - [v0.7.0-pre2] - 2023-07-26","doc":"Note that this is a pre-release with a couple of known bugs that are tracked in the Nodes and Edges epic . Added Added ability for a user to enable MFA on their account; using 2FA apps like Authy, Google Authenticator etc #890 Write/run sql script to convert triggers #875 Export projects as .yaml via UI #249 Changed In v0.7.0 we change the underlying workflow building and execution infrastructure to align with a standard "nodes and edges" design for directed acyclic graphs (DAGs). Make sure to run the migrations! 793 Fixed Propagate url pushState/changes to Workflow Diagram selection #944 Fix issue when deleting nodes from the workflow editor #830 Fix issue when clicking a trigger on a new/unsaved workflow #954","ref":"changelog.html#v0-7-0-pre2-2023-07-26"},{"type":"extras","title":"Changelog - [0.6.7] - 2023-07-13","doc":"Added Add feature to bulk rerun work orders from a specific step in their workflow; e.g., "rerun these 50 work orders, starting each at step 4." #906 Changed Fixed Oban exception: "value too long" when log lines are longer than 255 chars #929","ref":"changelog.html#0-6-7-2023-07-13"},{"type":"extras","title":"Changelog - [0.6.6] - 2023-06-30","doc":"Added Add public API token to the demo site setup script Check and renew OAuth credentials when running a job #646 Fixed Remove google sheets from adaptors list until supporting oauth flow #792 Remove duplicate google sheets adaptor display on credential type picklist #663 Fix demo setup script for calling from outside the app on Kubernetes deployments #917","ref":"changelog.html#0-6-6-2023-06-30"},{"type":"extras","title":"Changelog - [0.6.5] - 2023-06-22","doc":"Added Ability to rerun workorders from start by selecting one of more of them from the History page and clicking the "Rerun" button. #659 Fixed Example runs for demo incorrect #856","ref":"changelog.html#0-6-5-2023-06-22"},{"type":"extras","title":"Changelog - [0.6.3] - 2023-06-15","doc":"Fixed Prevent saving null log lines to the database, fix issue with run display #866","ref":"changelog.html#0-6-3-2023-06-15"},{"type":"extras","title":"Changelog - [0.6.2] - 2023-06-09","doc":"Fixed Fixed viewer permissions for delete workflow Fixed bug with workflow cards #859","ref":"changelog.html#0-6-2-2023-06-09"},{"type":"extras","title":"Changelog - [0.6.1] - 2023-06-08","doc":"Fixed Fixed bug with run logs #864 Correctly stagger demo runs to maintain order #856 Remove Timex use from SetupUtils in favor of DateTime to fix issue when calling it in escript.","ref":"changelog.html#0-6-1-2023-06-08"},{"type":"extras","title":"Changelog - [0.6.0]- 2023-04-12","doc":"Added Create sample runs when generating sample workflow #821 Added a provisioning api for creating and updating projects and their workflows See: PROVISIONING.md #641 Add ability for a superuser to schedule deletion, cancel deletion, and delete projects #757 Add ability for a project owner to schedule deletion, cancel deletion, and delete projects #746 Changed Ability to store run log lines as rows in a separate table #514 Fixed Incorrect project digest queries #768 ] Fix issue when purging deleted users #747 Generate a random name for Workflows when creating one via the UI. #828 Handle error when deleting a job with runs. #814","ref":"changelog.html#0-6-0-2023-04-12"},{"type":"extras","title":"Changelog - [0.5.2]","doc":"Added Add workflow_edges table in preparation for new workflow editor implementation #794 Stamped credential_id on run directly for easier auditing of the history interface. Admins can now see which credential was used to run a run. #800 Better errors when using magic functions: "no magic yet" and "check credential" #812 Changed The delete-project function now delete all associated activities #759 Fixed","ref":"changelog.html#0-5-2"},{"type":"extras","title":"Changelog - [0.5.1] - 2023-04-12","doc":"Added Added ability to create and revoke personal API tokens #147 Add last-used at to API tokens #722 Improved "save" for job builder; users can now press Ctrl + S or ⌘ + S to save new or updated jobs job panel will not close. (Click elsewhere in the canvas or click the "Close" button to close.) #568 Add filtered search params to the history page URL #660 Changed The secret scrubber now ignores booleans 690 Fixed The secret scrubber now properly handles integer secrets from credentials 690 Updated describe-package dependency, fixing sparkles in adaptor-docs 657 Clicks on the workflow canvas were not lining up with the nodes users clicked on; they are now 733 Job panel behaves better when collapsed 774","ref":"changelog.html#0-5-1-2023-04-12"},{"type":"extras","title":"Changelog - [0.5.0] - 2023-04-03","doc":"Added Magic functions that fetch real metadata from connected systems via credentials and suggest completions in the job builder (e.g., pressing control-space when setting the orgUnit attribute for a DHIS2 create operation will pull the actual list of orgUnits with human readable labels and fill in their orgUnit codes upon enter.) 670 A "metadata explorer" to browse actual system metadata for connected instances. 658 Resizable job builder panel for the main canvas/workflow view. 681 Changed Display timezone for cron schedule—it is always UTC. #716 Instance administrators can now configure the interval between when a project owner or user requests deletion and when these records are purged from the database. It defaults to 7, but by providing a PURGE_DELETED_AFTER_DAYS environment variable the grace period can be altered. Note that setting this variable to 0 will make automatic purging never occur but will still make "deleted" projects and users unavailable. This has been requested by certain organizations that must retain audit logs in a Lightning instance. 758 Fixed Locked CLI version to @openfn/cli@0.0.35 . #761","ref":"changelog.html#0-5-0-2023-04-03"},{"type":"extras","title":"Changelog - [0.4.8] - 2023-03-29","doc":"Added Added a test harness for monitoring critical parts of the app using Telemetry #654 Changed Set log level to info for runs. Most of the debug logging is useful for the CLI, but not for Lightning. In the future the log level will be configurable at instance > project > job level by the superuser and any project admin . Renamed license file so that automagic github icon is less confusing Fixed Broken links in failure alert email #732 Registration Submission on app.openfn.org shows internal server error in browser #686 Run the correct runtime install mix task in Dockerfile-dev #541 Users not disabled when scheduled for deletion #719","ref":"changelog.html#0-4-8-2023-03-29"},{"type":"extras","title":"Changelog - [0.4.6] - 2023-03-23","doc":"Added Implement roles and permissions across entire app #645 Fix webhook URL ( https://<<HOST_URL>>/i/cae544ab-03dc-4ccc-a09c-fb4edb255d7a ) for the OpenHIE demo workflow 448 Phoenix Storybook for improved component development Load test for webhook endpoint performance #645 Notify user via email when they're added to a project #306 Added notify user via email when their account is created #307 Changed Improved errors when decoding encryption keys for use with Cloak. #684 Allow users to run ANY job with a custom input. #629 Fixed Ensure JSON schema form inputs are in the same order as they are written in the schema #685","ref":"changelog.html#0-4-6-2023-03-23"},{"type":"extras","title":"Changelog - [0.4.4] - 2023-03-10","doc":"Added Users can receive a digest email reporting on a specified project. #638 #585 Changed Fixed","ref":"changelog.html#0-4-4-2023-03-10"},{"type":"extras","title":"Changelog - [0.4.3] - 2023-03-06","doc":"Added Tooltips on Job Builder panel #650 Changed Upgraded to Phoenix 1.7 (3945856) Fixed Issue with FailureAlerter configuration missing in prod mode.","ref":"changelog.html#0-4-3-2023-03-06"},{"type":"extras","title":"Changelog - [0.4.2] - 2023-02-24","doc":"Added A user can change their own email #247 Added a SCHEMAS_PATH environment variable to override the default folder location for credential schemas #604 Added the ability to configure Google Sheets credentials #536 Function to import a project #574 Changed Users cannot register if they have not selected the terms and conditions #531 Fixed Jobs panel slow for first open after restart #567","ref":"changelog.html#0-4-2-2023-02-24"},{"type":"extras","title":"Changelog - [0.4.0] - 2023-02-08","doc":"Added Added a Delete job button in Inspector Filter workflow runs by text/value in run logs or input body Drop "configuration" key from Run output dataclips after completion Ability to 'rerun' a run from the Run list Attempts and Runs update themselves in the Runs list Configure a project and workflow for a new registering user Run a job with a custom input Added plausible analytics Allow user to click on Webhook Trigger Node to copy webhook URL on workflow diagram Allow any user to delete a credential that they own Create any credential through a form except for OAuth Refit all diagram nodes on browser and container resize Enable distributed Erlang, allowing any number of redundant Lightning nodes to communicate with each other. Users can set up realtime alerts for a project Changed Better code-assist and intelliense in the Job Editor Updated @openfn/workflow-diagram to 0.4.0 Make plus button part of job nodes in Workflow Diagram Updated @openfn/adaptor-docs to 0.0.5 Updated @openfn/describe-package to 0.0.10 Create an follow a manual Run from the Job Inspector View all workflows in a project on the workflows index page Move @openfn/workflow-diagram into the application, the NPM module is now deprecated. Remove workflow name from first node Move the used parts of @openfn/engine into the application. [BREAKING CHANGE] Ported mix openfn.install.runtime into application, use mix lightning.install_runtime . [BREAKING CHANGE] Introduced @openfn/cli as the new runtime for Jobs Rename a workflow through the page heading Hide the dataclips tab for beta Make adaptor default to common@latest Remove jobs list page Better error handling in the docs panel Disable credential ownership transfer in dev and prod environments Add project settings page Change Workorder filters to apply to the aggregate state of the workorder and not the run directly Enable jobs by default Set log level to info Add Beta checkbox to register page User roles and permissions Fixed Don't consider disabled jobs when calculating subsequent runs Fixed overflow on Job Editor Tooltips Fixed auto-scroll when adding a new snippet in the Job Editor Fixed common operation typings in Job Editor","ref":"changelog.html#0-4-0-2023-02-08"},{"type":"extras","title":"Changelog - [0.3.1] - 2022-11-22","doc":"Fixed Fixed bug that attempted to execute HTML scripts in dataclips Fixed bug that prevented workorders from displaying in the order of their last run, descending. Remove alerts after set timeout or close","ref":"changelog.html#0-3-1-2022-11-22"},{"type":"extras","title":"Changelog - [0.3.0] - 2022-11-21","doc":"Added Add seed data for demo site Create adaptor credentials through a form Configure cron expressions through a form View runs grouped by workorders and attempts Run an existing Job with any dataclip uuid from the Job form Changed Redirect users to projects list page when they click on Admin Settings menu Move job, project, input and output Dataclips to Run table Reverse the relationship between Jobs and Triggers. Triggers now can exist on their own; setting the stage for branching and merging workflows Updated Elixir and frontend dependencies [BREAKING CHANGE] Pipeline now uses WorkOrders, previous data is not compatible. Runs, Dataclips and Attempts now all correctly use usec resolution timestamps. Upgraded LiveView to 0.18.0 Upgraded Elixir to 1.14.1 and OTP 25 Workflow Job editor now behaves like a panel Split JobLive.InspectorFormComponent into different plug-able subcomponents Ensure new jobs with cron triggers receive a default frequency Webhooks are now referenced by the trigger id instead of job id. Filter runs by status Filter runs by workflow Filter runs by date View a job run from the runs history View latest matching inputs to run a job with","ref":"changelog.html#0-3-0-2022-11-21"},{"type":"extras","title":"Changelog - [0.2.0] - 2022-09-12","doc":"Changed [BREAKING CHANGE] Add Workflow model, Jobs now belong to a Workflow This is a breaking change to the schema. Use Node.js 18, soon to be in LTS. Visualize success/fail triggers in workflow diagram. Move WorkflowDiagram related actions from DashboardLive into WorkflowLive Move WorkflowDiagram component into liveview, so that we can subscribe to channels (i.e. updating of the diagram when someone changes something). Integrate @openfn/workflow-diagram@0.0.8 and use the new Store interface for updating it. Remove component_mounted event from WorkflowDiagram hook, using a MutationObserver and a Base64 encoded JSON payload. Fixed an issue where the compiler component would try and load a 'nothing adaptor', added a condition to check an adaptor is actually selected. Removed previous Workflow CTE queries, replaced by the introduction of the Workflow model, see ( https://github.com/OpenFn/Lightning/blob/53da6883483e7d8d078783f348da327d1dd72d20/lib/lightning/workflows.ex#L111-L119 ).","ref":"changelog.html#0-2-0-2022-09-12"},{"type":"extras","title":"Changelog - [0.1.13] - 2022-08-29","doc":"Added Allow administrators to configure OIDC providers for authentication (note that this is just for authenticating, not yet for creating new accounts via OIDC) Add Monaco editor to the step/job panel Allow users to delete their own accounts. Schedule their user and credentials data for deletion when they do. Allow superusers to delete a user account. Schedule the user's credentials and user data for deletion when they do. If a user is scheduled for deletion, disable their account and prevent them from logging in. The 'User profile' and 'Credentials' page now have a sidebar menu Changed Project users now have one of the following roles: viewer, editor, admin, owner Users only have the following roles: user, superuser","ref":"changelog.html#0-1-13-2022-08-29"},{"type":"extras","title":"Changelog - [0.1.12] - 2022-08-15","doc":"Added Transfer credential ownership to another user. Create credentials via a form interface* Show "projects with access" in credentials list view. Show job in runs list and run view. Added roles and permissions to workflows and history page #645 *The form is defined by a JSON schema provided by an adaptor, in most cases: e.g., language-dhis2 provides a single schema which defines the required attributes for state.configuration , while language-common provides multiple credential schemas like "oauth" or "basic auth" which define attributes for state.configuration and which might be used by lots of different jobs.) Fixed User menu (top right) appears on top of all other components. User profile screen integrated with the rest of the liveview app.","ref":"changelog.html#0-1-12-2022-08-15"},{"type":"extras","title":"Changelog - [0.1.11] - 2022-08-05","doc":"Fixed Fixed logging in Runner when :debug log level used; note that this caused crashes in Oban","ref":"changelog.html#0-1-11-2022-08-05"},{"type":"extras","title":"Changelog - [0.1.10] - 2022-08-05","doc":"Added Credential auditing Build/version information display for easier debugging Fixed Fixed a bug that enqueued cron-triggered jobs even when they were disabled","ref":"changelog.html#0-1-10-2022-08-05"},{"type":"extras","title":"Changelog - [0.1.9] - 2022-07-27","doc":"Added Navigate to user profile or credentials page and log out through the user icon dropdown Create and edit dataclips Add a production tag to credentials View a dropdown of operations and their description for the language-common v2.0.0-rc2 adaptor (this pattern to be rolled out across adaptors) Changed Navigate between projects through a project picker on the navbar Fixed Run Lightning with docker Security Sensitive credential values are scrubbed from run logs All credentials are encrypted at REST","ref":"changelog.html#0-1-9-2022-07-27"},{"type":"extras","title":"Changelog - [0.1.7] - 2022-06-24","doc":"Added Run a job with a cron trigger Queue jobs via Oban/Postgres Edit jobs via the workflow canvas","ref":"changelog.html#0-1-7-2022-06-24"},{"type":"extras","title":"Changelog - [0.1.6] - 2022-06-07","doc":"Added Register, log in and log out of an account Allow superusers and admin users to create projects Allow admin users to create or disable a user’s account Allow superusers for local deployments to create users and give them access to project spaces Create and edit a job with a webhook, flow/fail or cron trigger Create and edit credentials for a job Copy a job's webhook URL View all workflows in a project visually Deploy lightning locally with Docker Enable a job to automatically process incoming requests Run a job with a webhook or flow/fail trigger View job runs along with their logs, exit code, start and end time View data clips that have initiated job runs (http requests for webhooks, run results) Changed - Removed -","ref":"changelog.html#0-1-6-2022-06-07"}]
\ No newline at end of file
+searchNodes=[{"type":"module","title":"Lightning","doc":"Lightning keeps the contexts that define your domain and business logic. Contexts are also responsible for managing your data, regardless if it comes from the database, an external API or others.","ref":"Lightning.html"},{"type":"module","title":"Lightning.AdaptorRegistry","doc":"Registry process to query and maintain a list of adaptors available for writing jobs. Currently it queries NPM for all modules in the @openfn organization and filters out modules that are known not to be adaptors. Usage # Starting the process AdaptorRegistry . start_link ( ) # Getting a list of all adaptors Lightning.AdaptorRegistry.AdaptorRegistry . all ( ) Caching By default the results are cached to disk, and will be reused every start. In order to disable or configure caching pass see: start_link/1 . The process uses :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. Timeouts There is a 'general' timeout of 30s, this is used for GenServer calls like all/1 and also internally when the modules are being queried. NPM can be extremely fast to respond if the package is cached on their side, but can take a couple of seconds if not cached.","ref":"Lightning.AdaptorRegistry.html"},{"type":"function","title":"Lightning.AdaptorRegistry.all/1","doc":"Get the current in-process list of adaptors. This call will wait behind the :continue message when the process starts up, so it may take a while the first time it is called (and the list hasn't been fetched yet).","ref":"Lightning.AdaptorRegistry.html#all/1"},{"type":"function","title":"Lightning.AdaptorRegistry.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.AdaptorRegistry.html#child_spec/1"},{"type":"function","title":"Lightning.AdaptorRegistry.fetch/0","doc":"Fetch a list of packages for the @openfn organisation","ref":"Lightning.AdaptorRegistry.html#fetch/0"},{"type":"function","title":"Lightning.AdaptorRegistry.latest_for/2","doc":"Get a latest version for a given module.","ref":"Lightning.AdaptorRegistry.html#latest_for/2"},{"type":"function","title":"Lightning.AdaptorRegistry.resolve_adaptor/1","doc":"","ref":"Lightning.AdaptorRegistry.html#resolve_adaptor/1"},{"type":"function","title":"Lightning.AdaptorRegistry.resolve_package_name/1","doc":"Destructures an NPM style package name into module name and version. Example 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 }","ref":"Lightning.AdaptorRegistry.html#resolve_package_name/1"},{"type":"function","title":"Lightning.AdaptorRegistry.resolve_package_name!/1","doc":"Same as resolve_package_name/1 except will throw an exception if a package name cannot be matched.","ref":"Lightning.AdaptorRegistry.html#resolve_package_name!/1"},{"type":"function","title":"Lightning.AdaptorRegistry.start_link/1","doc":"Starts the AdaptorRegistry Options :use_cache (defaults to false) - stores the last set of results on disk and uses the cached file for every subsequent start. It can either be a boolean, or a string - the latter being a file path to set where the cache file is located. :name (defaults to AdaptorRegistry) - the name of the process, useful for testing and/or running multiple versions of the registry","ref":"Lightning.AdaptorRegistry.html#start_link/1"},{"type":"function","title":"Lightning.AdaptorRegistry.versions_for/2","doc":"Get a list of versions for a given module.","ref":"Lightning.AdaptorRegistry.html#versions_for/2"},{"type":"module","title":"Lightning.AdaptorRegistry.Npm","doc":"NPM API functions","ref":"Lightning.AdaptorRegistry.Npm.html"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.delete/3","doc":"Issues a DELETE request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#delete/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.delete!/3","doc":"Issues a DELETE request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#delete!/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.get/3","doc":"Issues a GET request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#get/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.get!/3","doc":"Issues a GET request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#get!/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.head/3","doc":"Issues a HEAD request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#head/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.head!/3","doc":"Issues a HEAD request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#head!/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.options/3","doc":"Issues an OPTIONS request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#options/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.options!/3","doc":"Issues a OPTIONS request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#options!/3"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.package_detail/1","doc":"Retrieve all details for an NPM package","ref":"Lightning.AdaptorRegistry.Npm.html#package_detail/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.patch/4","doc":"Issues a PATCH request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#patch/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.patch!/4","doc":"Issues a PATCH request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#patch!/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.post/4","doc":"Issues a POST request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#post/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.post!/4","doc":"Issues a POST request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#post!/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_headers/1","doc":"Callback implementation for HTTPoison.Base.process_headers/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_headers/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_request_body/1","doc":"Callback implementation for HTTPoison.Base.process_request_body/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_request_body/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_request_headers/1","doc":"Callback implementation for HTTPoison.Base.process_request_headers/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_request_headers/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_request_options/1","doc":"Callback implementation for HTTPoison.Base.process_request_options/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_request_options/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_request_params/1","doc":"Callback implementation for HTTPoison.Base.process_request_params/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_request_params/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_response/1","doc":"Callback implementation for HTTPoison.Base.process_response/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_response/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_response_chunk/1","doc":"Callback implementation for HTTPoison.Base.process_response_chunk/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_response_chunk/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_response_headers/1","doc":"Callback implementation for HTTPoison.Base.process_response_headers/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_response_headers/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_response_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_response_status_code/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_response_status_code/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_status_code/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_status_code/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.process_url/1","doc":"Callback implementation for HTTPoison.Base.process_url/1 .","ref":"Lightning.AdaptorRegistry.Npm.html#process_url/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.put/4","doc":"Issues a PUT request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#put/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.put!/4","doc":"Issues a PUT request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#put!/4"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.request/1","doc":"Issues an HTTP request using a Request struct. This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request = % HTTPoison.Request { method : :post , url : "https://my.website.com" , body : "{ \\" foo \\" : 3}" , headers : [ { "Accept" , "application/json" } ] } request ( request )","ref":"Lightning.AdaptorRegistry.Npm.html#request/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.request/5","doc":"Issues an HTTP request with the given method to the given url. This function is usually used indirectly by get/3 , post/4 , put/4 , etc Args: method - HTTP method as an atom ( :get , :head , :post , :put , :delete , etc.) url - target url as a binary string or char list body - request body. See more below headers - HTTP headers as an orddict (e.g., [{"Accept", "application/json"}] ) options - Keyword list of options Body: see type HTTPoison.Request Options: see type HTTPoison.Request This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request ( :post , "https://my.website.com" , "{ \\" foo \\" : 3}" , [ { "Accept" , "application/json" } ] )","ref":"Lightning.AdaptorRegistry.Npm.html#request/5"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.request!/5","doc":"Issues an HTTP request with the given method to the given url, raising an exception in case of failure. request!/5 works exactly like request/5 but it returns just the response in case of a successful request, raising an exception in case the request fails.","ref":"Lightning.AdaptorRegistry.Npm.html#request!/5"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.start/0","doc":"Starts HTTPoison and its dependencies.","ref":"Lightning.AdaptorRegistry.Npm.html#start/0"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.stream_next/1","doc":"Requests the next message to be streamed for a given HTTPoison.AsyncResponse . See request!/5 for more detailed information.","ref":"Lightning.AdaptorRegistry.Npm.html#stream_next/1"},{"type":"function","title":"Lightning.AdaptorRegistry.Npm.user_packages/1","doc":"Retrieve all packages for a given user or organization. Return empty list if application cannot connect to NPM. (E.g., because it's started offline.)","ref":"Lightning.AdaptorRegistry.Npm.html#user_packages/1"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.body/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:body/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.headers/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:headers/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.method/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:method/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.options/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:options/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.params/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:params/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.request/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:request/0"},{"type":"type","title":"Lightning.AdaptorRegistry.Npm.url/0","doc":"","ref":"Lightning.AdaptorRegistry.Npm.html#t:url/0"},{"type":"module","title":"Lightning.AdaptorService","doc":"The Adaptor Service is use to query and install adaptors in order to run jobs. On startup, it queries the filesystem for package.json files and builds up a list of available adaptors. Configuration The service requires at least :adaptors_path , which is used to both query which adaptors are installed and when to install new adaptors. Another optional setting is: :repo , which must point at a module that will be used to do the querying and installing. Installing Adaptors Using the install/2 function an adaptor can be installed, which will also add it to the list of available adaptors. The adaptor is marked as :installing , to allow for conditional behaviour elsewhere such as delaying or rejecting processing until the adaptor becomes available. Looking up adaptors The module leans on Elixir's built-in Version module to provide version lookups. When looking up an adaptor, either a string or a tuple can be used. In the case of requesting the latest version, any one of these will return the latest version the service is aware of. @openfn/language-http @openfn/language-http@latest {"@openfn/language-http", nil} {"@openfn/language-http", "latest"} {~r/language-http/, "latest"} You can also request a specific version, or use a range specification: @openfn/language-http@1.2.3 {"@openfn/language-http", "~> 1.2.0"} {"@openfn/language-http", "< 2.0.0"} NOTE More complex npm style install strings like: ">=0.1.0 <0.2.0" are not supported. Generally the tuple style is preferred when using range specifications as the npm style strings have a simplistic regex splitter. See Version for more details on matching versions.","ref":"Lightning.AdaptorService.html"},{"type":"function","title":"Lightning.AdaptorService.build_aliased_name/1","doc":"Turns a package name and version into a string for NPM. Since multiple versions of the same package can be installed, it's important to rely on npms built-in package aliasing. E.g. @openfn/language-http@1.2.8 turns into: ` @openfn / language - http - 1.2 . 8 @npm : @openfn / language - http @ 1.2 . 8 ` Which is pretty long winded but necessary for the reason above. If using this module as a base, it's likely you would need to adaptor this to suit your particular naming strategy.","ref":"Lightning.AdaptorService.html#build_aliased_name/1"},{"type":"function","title":"Lightning.AdaptorService.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.AdaptorService.html#child_spec/1"},{"type":"function","title":"Lightning.AdaptorService.find_adaptor/2","doc":"","ref":"Lightning.AdaptorService.html#find_adaptor/2"},{"type":"function","title":"Lightning.AdaptorService.get_adaptors/1","doc":"","ref":"Lightning.AdaptorService.html#get_adaptors/1"},{"type":"function","title":"Lightning.AdaptorService.install/2","doc":"","ref":"Lightning.AdaptorService.html#install/2"},{"type":"function","title":"Lightning.AdaptorService.install!/2","doc":"","ref":"Lightning.AdaptorService.html#install!/2"},{"type":"function","title":"Lightning.AdaptorService.installed?/2","doc":"","ref":"Lightning.AdaptorService.html#installed?/2"},{"type":"function","title":"Lightning.AdaptorService.resolve_package_name/1","doc":"","ref":"Lightning.AdaptorService.html#resolve_package_name/1"},{"type":"function","title":"Lightning.AdaptorService.start_link/1","doc":"","ref":"Lightning.AdaptorService.html#start_link/1"},{"type":"type","title":"Lightning.AdaptorService.package_spec/0","doc":"","ref":"Lightning.AdaptorService.html#t:package_spec/0"},{"type":"module","title":"Lightning.Attempt","doc":"Ecto model for Attempts.","ref":"Lightning.Attempt.html"},{"type":"function","title":"Lightning.Attempt.new/1","doc":"","ref":"Lightning.Attempt.html#new/1"},{"type":"type","title":"Lightning.Attempt.t/0","doc":"","ref":"Lightning.Attempt.html#t:t/0"},{"type":"module","title":"Lightning.AttemptRun","doc":"Ecto model for an Attempts Runs.","ref":"Lightning.AttemptRun.html"},{"type":"function","title":"Lightning.AttemptRun.new/1","doc":"","ref":"Lightning.AttemptRun.html#new/1"},{"type":"function","title":"Lightning.AttemptRun.new/2","doc":"","ref":"Lightning.AttemptRun.html#new/2"},{"type":"type","title":"Lightning.AttemptRun.t/0","doc":"","ref":"Lightning.AttemptRun.html#t:t/0"},{"type":"module","title":"Lightning.AttemptService","doc":"The Attempts context.","ref":"Lightning.AttemptService.html"},{"type":"function","title":"Lightning.AttemptService.append/2","doc":"Adds an Attempt to an unsaved Run When given an Attempt, it simply adds the Run to a new AttemptRun. However when given an AttemptRun, the Run (from the AttemptRun) is set as the previous Run for the new unsaved Run.","ref":"Lightning.AttemptService.html#append/2"},{"type":"function","title":"Lightning.AttemptService.build_attempt/2","doc":"","ref":"Lightning.AttemptService.html#build_attempt/2"},{"type":"function","title":"Lightning.AttemptService.calculate_runs/3","doc":"","ref":"Lightning.AttemptService.html#calculate_runs/3"},{"type":"function","title":"Lightning.AttemptService.create_attempt/3","doc":"Create an attempt Examples iex> create_attempt ( %{ field : value } ) { :ok , % Attempt { } } iex> create_attempt ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.AttemptService.html#create_attempt/3"},{"type":"function","title":"Lightning.AttemptService.get_for_rerun/2","doc":"","ref":"Lightning.AttemptService.html#get_for_rerun/2"},{"type":"function","title":"Lightning.AttemptService.get_last_attempt_for/1","doc":"Get the latest attempt associated to a given run","ref":"Lightning.AttemptService.html#get_last_attempt_for/1"},{"type":"function","title":"Lightning.AttemptService.get_workflow_for/1","doc":"","ref":"Lightning.AttemptService.html#get_workflow_for/1"},{"type":"function","title":"Lightning.AttemptService.list_for_rerun_from_job/2","doc":"Returns a list of AttemptRun structs that should be rerun for the given list of workorder ids that are associated to the given Job","ref":"Lightning.AttemptService.html#list_for_rerun_from_job/2"},{"type":"function","title":"Lightning.AttemptService.list_for_rerun_from_start/1","doc":"Returns a list of AttemptRun structs that should be rerun for the given list of work order ids.","ref":"Lightning.AttemptService.html#list_for_rerun_from_start/1"},{"type":"function","title":"Lightning.AttemptService.retry/3","doc":"Creates a new Attempt starting from a given run. All upstream/prior Runs that were performed on that attempt are associated with the new Attempt, where as the specified run is used to create a new one and is added to the Attempt. Any runs downstream from the Run given are ignored.","ref":"Lightning.AttemptService.html#retry/3"},{"type":"function","title":"Lightning.AttemptService.retry_many/2","doc":"Creates new Attempts for each pair of corresponding AttemptRun and InvocationReason.","ref":"Lightning.AttemptService.html#retry_many/2"},{"type":"module","title":"Lightning.Auditing","doc":"Context for working with Audit records.","ref":"Lightning.Auditing.html"},{"type":"function","title":"Lightning.Auditing.list_all/1","doc":"","ref":"Lightning.Auditing.html#list_all/1"},{"type":"module","title":"Lightning.Auditing.Model","doc":"Macro module to add common model behaviour to a given Ecto model","ref":"Lightning.Auditing.Model.html"},{"type":"function","title":"Lightning.Auditing.Model.event/5","doc":"Creates a schema changeset for the event identified by row_id and caused by actor_id . The given metadata can be either nil , Ecto.Changeset , struct or map. It returns :no_changes in case of an Ecto.Changeset metadata that changed nothing or an Ecto.Changeset with the event ready to be inserted.","ref":"Lightning.Auditing.Model.html#event/5"},{"type":"function","title":"Lightning.Auditing.Model.save/2","doc":"Saves the event to the Repo . In case of nothing changes, do nothing. It returns {:ok, :no_changes} if nothing changed, {:ok, struct} if the log has been successfully saved or {:error, changeset} in case of error.","ref":"Lightning.Auditing.Model.html#save/2"},{"type":"module","title":"Lightning.AuthProviders","doc":"Context module for dealing with external Auth Providers.","ref":"Lightning.AuthProviders.html"},{"type":"function","title":"Lightning.AuthProviders.build_handler/2","doc":"","ref":"Lightning.AuthProviders.html#build_handler/2"},{"type":"function","title":"Lightning.AuthProviders.create/1","doc":"","ref":"Lightning.AuthProviders.html#create/1"},{"type":"function","title":"Lightning.AuthProviders.create_handler/1","doc":"","ref":"Lightning.AuthProviders.html#create_handler/1"},{"type":"function","title":"Lightning.AuthProviders.delete!/1","doc":"","ref":"Lightning.AuthProviders.html#delete!/1"},{"type":"function","title":"Lightning.AuthProviders.get_authorize_url/1","doc":"Retrieve the authorization url for a given handler or handler name.","ref":"Lightning.AuthProviders.html#get_authorize_url/1"},{"type":"function","title":"Lightning.AuthProviders.get_existing/0","doc":"","ref":"Lightning.AuthProviders.html#get_existing/0"},{"type":"function","title":"Lightning.AuthProviders.get_existing/1","doc":"","ref":"Lightning.AuthProviders.html#get_existing/1"},{"type":"function","title":"Lightning.AuthProviders.get_handler/1","doc":"","ref":"Lightning.AuthProviders.html#get_handler/1"},{"type":"function","title":"Lightning.AuthProviders.get_handlers/0","doc":"","ref":"Lightning.AuthProviders.html#get_handlers/0"},{"type":"function","title":"Lightning.AuthProviders.new/0","doc":"","ref":"Lightning.AuthProviders.html#new/0"},{"type":"function","title":"Lightning.AuthProviders.remove_handler/1","doc":"","ref":"Lightning.AuthProviders.html#remove_handler/1"},{"type":"function","title":"Lightning.AuthProviders.update/2","doc":"","ref":"Lightning.AuthProviders.html#update/2"},{"type":"module","title":"Lightning.AuthProviders.AuthConfig","doc":"AuthProvider model","ref":"Lightning.AuthProviders.AuthConfig.html"},{"type":"type","title":"Lightning.AuthProviders.AuthConfig.t/0","doc":"","ref":"Lightning.AuthProviders.AuthConfig.html#t:t/0"},{"type":"module","title":"Lightning.AuthProviders.CacheWarmer","doc":"Dummy warmer which caches database rows every 30s.","ref":"Lightning.AuthProviders.CacheWarmer.html"},{"type":"function","title":"Lightning.AuthProviders.CacheWarmer.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.AuthProviders.CacheWarmer.html#child_spec/1"},{"type":"function","title":"Lightning.AuthProviders.CacheWarmer.execute/1","doc":"Executes this cache warmer with a connection.","ref":"Lightning.AuthProviders.CacheWarmer.html#execute/1"},{"type":"function","title":"Lightning.AuthProviders.CacheWarmer.interval/0","doc":"Returns the interval for this warmer.","ref":"Lightning.AuthProviders.CacheWarmer.html#interval/0"},{"type":"module","title":"Lightning.AuthProviders.Google","doc":"","ref":"Lightning.AuthProviders.Google.html"},{"type":"function","title":"Lightning.AuthProviders.Google.authorize_url/2","doc":"","ref":"Lightning.AuthProviders.Google.html#authorize_url/2"},{"type":"function","title":"Lightning.AuthProviders.Google.build_client/1","doc":"Builds a new client","ref":"Lightning.AuthProviders.Google.html#build_client/1"},{"type":"function","title":"Lightning.AuthProviders.Google.get_config/0","doc":"","ref":"Lightning.AuthProviders.Google.html#get_config/0"},{"type":"function","title":"Lightning.AuthProviders.Google.get_token/2","doc":"","ref":"Lightning.AuthProviders.Google.html#get_token/2"},{"type":"function","title":"Lightning.AuthProviders.Google.get_userinfo/2","doc":"","ref":"Lightning.AuthProviders.Google.html#get_userinfo/2"},{"type":"function","title":"Lightning.AuthProviders.Google.get_wellknown/0","doc":"","ref":"Lightning.AuthProviders.Google.html#get_wellknown/0"},{"type":"function","title":"Lightning.AuthProviders.Google.get_wellknown!/0","doc":"","ref":"Lightning.AuthProviders.Google.html#get_wellknown!/0"},{"type":"function","title":"Lightning.AuthProviders.Google.refresh_token/2","doc":"","ref":"Lightning.AuthProviders.Google.html#refresh_token/2"},{"type":"module","title":"Lightning.AuthProviders.Handler","doc":"Module which wraps Oauth configuration and a WellKnown document into a convenient struct that can be used to authenticate users against any OIDC compliant provider.","ref":"Lightning.AuthProviders.Handler.html"},{"type":"function","title":"Lightning.AuthProviders.Handler.authorize_url/1","doc":"","ref":"Lightning.AuthProviders.Handler.html#authorize_url/1"},{"type":"function","title":"Lightning.AuthProviders.Handler.from_model/1","doc":"Returns a Handler from a given AuthConfig","ref":"Lightning.AuthProviders.Handler.html#from_model/1"},{"type":"function","title":"Lightning.AuthProviders.Handler.get_token/2","doc":"","ref":"Lightning.AuthProviders.Handler.html#get_token/2"},{"type":"function","title":"Lightning.AuthProviders.Handler.get_userinfo/2","doc":"","ref":"Lightning.AuthProviders.Handler.html#get_userinfo/2"},{"type":"function","title":"Lightning.AuthProviders.Handler.new/2","doc":"Create a new Provider struct, expects a name and opts: :client_id - The providers issued id :client_secret - Secret for the client :redirect_uri - The URI for redirecting after authentication, usually the callback url in the router. :wellknown - A AuthProviders.WellKnown struct with the providers .well-known/openid-configuration .","ref":"Lightning.AuthProviders.Handler.html#new/2"},{"type":"type","title":"Lightning.AuthProviders.Handler.opts/0","doc":"","ref":"Lightning.AuthProviders.Handler.html#t:opts/0"},{"type":"type","title":"Lightning.AuthProviders.Handler.t/0","doc":"","ref":"Lightning.AuthProviders.Handler.html#t:t/0"},{"type":"module","title":"Lightning.AuthProviders.Store","doc":"Store module for caching Handlers. Since Handlers often have to fetch their .well-known files when being initialized we cache these in order to avoid repeatedly making HTTP requests to a providers API.","ref":"Lightning.AuthProviders.Store.html"},{"type":"function","title":"Lightning.AuthProviders.Store.get_handler/2","doc":"","ref":"Lightning.AuthProviders.Store.html#get_handler/2"},{"type":"function","title":"Lightning.AuthProviders.Store.get_handlers/0","doc":"","ref":"Lightning.AuthProviders.Store.html#get_handlers/0"},{"type":"function","title":"Lightning.AuthProviders.Store.put_handler/2","doc":"","ref":"Lightning.AuthProviders.Store.html#put_handler/2"},{"type":"function","title":"Lightning.AuthProviders.Store.remove_handler/1","doc":"","ref":"Lightning.AuthProviders.Store.html#remove_handler/1"},{"type":"type","title":"Lightning.AuthProviders.Store.finder/0","doc":"","ref":"Lightning.AuthProviders.Store.html#t:finder/0"},{"type":"module","title":"Lightning.AuthProviders.WellKnown","doc":"A datastructure to fetch and hold information about a given OIDC/OAuth provider","ref":"Lightning.AuthProviders.WellKnown.html"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.delete/3","doc":"Issues a DELETE request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#delete/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.delete!/3","doc":"Issues a DELETE request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#delete!/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.fetch/1","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#fetch/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.fetch!/1","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#fetch!/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.get/3","doc":"Issues a GET request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#get/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.get!/3","doc":"Issues a GET request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#get!/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.head/3","doc":"Issues a HEAD request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#head/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.head!/3","doc":"Issues a HEAD request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#head!/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.new/1","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#new/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.options/3","doc":"Issues an OPTIONS request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#options/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.options!/3","doc":"Issues a OPTIONS request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#options!/3"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.patch/4","doc":"Issues a PATCH request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#patch/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.patch!/4","doc":"Issues a PATCH request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#patch!/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.post/4","doc":"Issues a POST request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#post/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.post!/4","doc":"Issues a POST request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#post!/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_headers/1","doc":"Callback implementation for HTTPoison.Base.process_headers/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_headers/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_request_body/1","doc":"Callback implementation for HTTPoison.Base.process_request_body/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_request_body/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_request_headers/1","doc":"Callback implementation for HTTPoison.Base.process_request_headers/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_request_headers/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_request_options/1","doc":"Callback implementation for HTTPoison.Base.process_request_options/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_request_options/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_request_params/1","doc":"Callback implementation for HTTPoison.Base.process_request_params/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_request_params/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_request_url/1","doc":"Callback implementation for HTTPoison.Base.process_request_url/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_request_url/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_response/1","doc":"Callback implementation for HTTPoison.Base.process_response/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_response/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_response_body/1","doc":"Callback implementation for HTTPoison.Base.process_response_body/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_response_body/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_response_chunk/1","doc":"Callback implementation for HTTPoison.Base.process_response_chunk/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_response_chunk/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_response_headers/1","doc":"Callback implementation for HTTPoison.Base.process_response_headers/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_response_headers/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_response_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_response_status_code/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_response_status_code/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_status_code/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_status_code/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.process_url/1","doc":"Callback implementation for HTTPoison.Base.process_url/1 .","ref":"Lightning.AuthProviders.WellKnown.html#process_url/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.put/4","doc":"Issues a PUT request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#put/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.put!/4","doc":"Issues a PUT request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#put!/4"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.request/1","doc":"Issues an HTTP request using a Request struct. This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request = % HTTPoison.Request { method : :post , url : "https://my.website.com" , body : "{ \\" foo \\" : 3}" , headers : [ { "Accept" , "application/json" } ] } request ( request )","ref":"Lightning.AuthProviders.WellKnown.html#request/1"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.request/5","doc":"Issues an HTTP request with the given method to the given url. This function is usually used indirectly by get/3 , post/4 , put/4 , etc Args: method - HTTP method as an atom ( :get , :head , :post , :put , :delete , etc.) url - target url as a binary string or char list body - request body. See more below headers - HTTP headers as an orddict (e.g., [{"Accept", "application/json"}] ) options - Keyword list of options Body: see type HTTPoison.Request Options: see type HTTPoison.Request This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request ( :post , "https://my.website.com" , "{ \\" foo \\" : 3}" , [ { "Accept" , "application/json" } ] )","ref":"Lightning.AuthProviders.WellKnown.html#request/5"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.request!/5","doc":"Issues an HTTP request with the given method to the given url, raising an exception in case of failure. request!/5 works exactly like request/5 but it returns just the response in case of a successful request, raising an exception in case the request fails.","ref":"Lightning.AuthProviders.WellKnown.html#request!/5"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.start/0","doc":"Starts HTTPoison and its dependencies.","ref":"Lightning.AuthProviders.WellKnown.html#start/0"},{"type":"function","title":"Lightning.AuthProviders.WellKnown.stream_next/1","doc":"Requests the next message to be streamed for a given HTTPoison.AsyncResponse . See request!/5 for more detailed information.","ref":"Lightning.AuthProviders.WellKnown.html#stream_next/1"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.body/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:body/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.headers/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:headers/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.method/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:method/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.options/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:options/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.params/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:params/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.request/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:request/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.t/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:t/0"},{"type":"type","title":"Lightning.AuthProviders.WellKnown.url/0","doc":"","ref":"Lightning.AuthProviders.WellKnown.html#t:url/0"},{"type":"module","title":"Lightning.CLI","doc":"Module providing facilities to make calls to the OpenFn CLI. See @openfn/cli","ref":"Lightning.CLI.html"},{"type":"function","title":"Lightning.CLI.execute/1","doc":"Execute a command in a child process and parse the results.","ref":"Lightning.CLI.html#execute/1"},{"type":"function","title":"Lightning.CLI.metadata/2","doc":"Retrieve metadata for a given adaptor and configuration.","ref":"Lightning.CLI.html#metadata/2"},{"type":"module","title":"Lightning.CLI.Result","doc":"Struct that wraps the output of an OpenFn CLI call. Containing the keys: start_time end_time status logs Logs The OpenFn CLI returns JSON formatted log lines, which are decoded and added to a 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","ref":"Lightning.CLI.Result.html"},{"type":"function","title":"Lightning.CLI.Result.get_messages/1","doc":"Returns message type log lines from a Result .","ref":"Lightning.CLI.Result.html#get_messages/1"},{"type":"function","title":"Lightning.CLI.Result.new/1","doc":"","ref":"Lightning.CLI.Result.html#new/1"},{"type":"function","title":"Lightning.CLI.Result.parse/2","doc":"","ref":"Lightning.CLI.Result.html#parse/2"},{"type":"type","title":"Lightning.CLI.Result.t/0","doc":"","ref":"Lightning.CLI.Result.html#t:t/0"},{"type":"module","title":"Lightning.Demo","doc":"Demo encapsulates logic for setting up a demonstration site.","ref":"Lightning.Demo.html"},{"type":"function","title":"Lightning.Demo.reset_demo/0","doc":"Deletes everything in the database including the superuser and creates a set of publicly available users for a demo site via a command that can be run on Kubernetes-deployed systems.","ref":"Lightning.Demo.html#reset_demo/0"},{"type":"module","title":"Lightning.ExportUtils","doc":"Module that expose a function generating a complete and valid yaml string from a project and its workflows.","ref":"Lightning.ExportUtils.html"},{"type":"function","title":"Lightning.ExportUtils.build_yaml_tree/2","doc":"","ref":"Lightning.ExportUtils.html#build_yaml_tree/2"},{"type":"function","title":"Lightning.ExportUtils.generate_new_yaml/1","doc":"","ref":"Lightning.ExportUtils.html#generate_new_yaml/1"},{"type":"module","title":"Lightning.FailureNotifierView","doc":"","ref":"Lightning.FailureNotifierView.html"},{"type":"function","title":"Lightning.FailureNotifierView.__resource__/0","doc":"The resource name, as an atom, for this view","ref":"Lightning.FailureNotifierView.html#__resource__/0"},{"type":"function","title":"Lightning.FailureNotifierView.failure_alert.html/1","doc":"","ref":"Lightning.FailureNotifierView.html#failure_alert.html/1"},{"type":"function","title":"Lightning.FailureNotifierView.render/2","doc":"Renders the given template locally.","ref":"Lightning.FailureNotifierView.html#render/2"},{"type":"function","title":"Lightning.FailureNotifierView.template_not_found/2","doc":"Callback invoked when no template is found. By default it raises but can be customized to render a particular template.","ref":"Lightning.FailureNotifierView.html#template_not_found/2"},{"type":"module","title":"Lightning.Helpers","doc":"Common functions for the context","ref":"Lightning.Helpers.html"},{"type":"function","title":"Lightning.Helpers.coerce_json_field/2","doc":"Changes a given maps field from a json string to a map. If it cannot be converted, it leaves the original value","ref":"Lightning.Helpers.html#coerce_json_field/2"},{"type":"function","title":"Lightning.Helpers.indefinite_article/1","doc":"","ref":"Lightning.Helpers.html#indefinite_article/1"},{"type":"function","title":"Lightning.Helpers.json_safe/1","doc":"Recursively ensures a given map is safe to convert to JSON, where all keys are strings and all values are json safe (primitive values).","ref":"Lightning.Helpers.html#json_safe/1"},{"type":"function","title":"Lightning.Helpers.ms_to_human/1","doc":"Converts milliseconds (integer) to a human duration, such as "1 minute" or "45 years, 6 months, 5 days, 21 hours, 12 minutes, 34 seconds" using Timex.Format.Duration.Formatters.Humanized.format() .","ref":"Lightning.Helpers.html#ms_to_human/1"},{"type":"module","title":"Lightning.MetadataService","doc":"Retrieves metadata for a given credential and adaptor using the OpenFn CLI.","ref":"Lightning.MetadataService.html"},{"type":"function","title":"Lightning.MetadataService.fetch/2","doc":"Retrieve metadata for a given adaptor and credential. The adaptor must be an npm specification.","ref":"Lightning.MetadataService.html#fetch/2"},{"type":"module","title":"Lightning.Name","doc":"Generates a random names.","ref":"Lightning.Name.html"},{"type":"function","title":"Lightning.Name.generate/1","doc":"","ref":"Lightning.Name.html#generate/1"},{"type":"module","title":"Lightning.ObanManager","doc":"The Oban Manager","ref":"Lightning.ObanManager.html"},{"type":"function","title":"Lightning.ObanManager.handle_event/4","doc":"","ref":"Lightning.ObanManager.html#handle_event/4"},{"type":"module","title":"Lightning.Policies.Permissions","doc":"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_job = Lightning.Policies.ProjectUsers |> Lightning.Policies.Permissions . can? ( :edit_job , socket . assigns . current_user , socket . assigns . project ) if can_edit_job do # allow user to edit the job else # quick user out end","ref":"Lightning.Policies.Permissions.html"},{"type":"function","title":"Lightning.Policies.Permissions.can/4","doc":"checks if user has the permissions to apply action using some policy module Returns :ok if user can apply action and {:error, :unauthorized} otherwise Examples iex> can ( Lightning.Policies.Users , :create_workflow , user , project ) :ok iex> can ( Lightning.Policies.Users , :create_project , user , %{ } ) { :error , :unauthorized }","ref":"Lightning.Policies.Permissions.html#can/4"},{"type":"function","title":"Lightning.Policies.Permissions.can?/4","doc":"same as can/4 but returns true if user can apply action and false otherwise Examples iex> can ( Lightning.Policies.Users , :create_workflow , user , project ) true iex> can ( Lightning.Policies.Users , :create_project , user , %{ } ) false","ref":"Lightning.Policies.Permissions.html#can?/4"},{"type":"module","title":"Lightning.Policies.ProjectUsers","doc":"The Bodyguard Policy module for projects members roles.","ref":"Lightning.Policies.ProjectUsers.html"},{"type":"function","title":"Lightning.Policies.ProjectUsers.authorize/3","doc":"authorize/3 takes an action, a user, and a project. It checks the user's role for this project and returns true if the user can perform the action in that project and false if they cannot. Note that permissions are grouped by action, rather than by user role. We deny by default, so if a user's role is not added to the allow roles list for a particular action they are denied.","ref":"Lightning.Policies.ProjectUsers.html#authorize/3"},{"type":"type","title":"Lightning.Policies.ProjectUsers.actions/0","doc":"","ref":"Lightning.Policies.ProjectUsers.html#t:actions/0"},{"type":"module","title":"Lightning.Policies.Provisioning","doc":"The Bodyguard Policy module for users roles.","ref":"Lightning.Policies.Provisioning.html"},{"type":"function","title":"Lightning.Policies.Provisioning.authorize/3","doc":"authorize/3 takes an action, a user, and a project. It checks the user's role for this project and returns true if the user can perform the action and false if they cannot. Note that permissions are grouped by action. We deny by default, so if a user's role is not added to the allow roles list for a particular action they are denied. Only a superuser can provision a new project. Owners and admins can update existing projects.","ref":"Lightning.Policies.Provisioning.html#authorize/3"},{"type":"type","title":"Lightning.Policies.Provisioning.actions/0","doc":"","ref":"Lightning.Policies.Provisioning.html#t:actions/0"},{"type":"module","title":"Lightning.Policies.Users","doc":"The Bodyguard Policy module for users roles.","ref":"Lightning.Policies.Users.html"},{"type":"function","title":"Lightning.Policies.Users.authorize/3","doc":"authorize/3 takes an action, a user, and a project. It checks the user's role for this project and returns true if the user can perform the action and false if they cannot. Note that permissions are grouped by action. We deny by default, so if a user's role is not added to the allow roles list for a particular action they are denied.","ref":"Lightning.Policies.Users.html#authorize/3"},{"type":"type","title":"Lightning.Policies.Users.actions/0","doc":"","ref":"Lightning.Policies.Users.html#t:actions/0"},{"type":"module","title":"Lightning.Release","doc":"Used for executing DB release tasks when run in production without Mix installed.","ref":"Lightning.Release.html"},{"type":"function","title":"Lightning.Release.create_db/0","doc":"","ref":"Lightning.Release.html#create_db/0"},{"type":"function","title":"Lightning.Release.load_app/0","doc":"","ref":"Lightning.Release.html#load_app/0"},{"type":"function","title":"Lightning.Release.migrate/0","doc":"","ref":"Lightning.Release.html#migrate/0"},{"type":"function","title":"Lightning.Release.rollback/2","doc":"","ref":"Lightning.Release.html#rollback/2"},{"type":"module","title":"Lightning.Repo","doc":"","ref":"Lightning.Repo.html"},{"type":"function","title":"Lightning.Repo.aggregate/3","doc":"Callback implementation for Ecto.Repo.aggregate/3 .","ref":"Lightning.Repo.html#aggregate/3"},{"type":"function","title":"Lightning.Repo.aggregate/4","doc":"Callback implementation for Ecto.Repo.aggregate/4 .","ref":"Lightning.Repo.html#aggregate/4"},{"type":"function","title":"Lightning.Repo.all/2","doc":"Callback implementation for Ecto.Repo.all/2 .","ref":"Lightning.Repo.html#all/2"},{"type":"function","title":"Lightning.Repo.checked_out?/0","doc":"Callback implementation for Ecto.Repo.checked_out?/0 .","ref":"Lightning.Repo.html#checked_out?/0"},{"type":"function","title":"Lightning.Repo.checkout/2","doc":"Callback implementation for Ecto.Repo.checkout/2 .","ref":"Lightning.Repo.html#checkout/2"},{"type":"function","title":"Lightning.Repo.child_spec/1","doc":"","ref":"Lightning.Repo.html#child_spec/1"},{"type":"function","title":"Lightning.Repo.config/0","doc":"Callback implementation for Ecto.Repo.config/0 .","ref":"Lightning.Repo.html#config/0"},{"type":"function","title":"Lightning.Repo.default_options/1","doc":"Callback implementation for Ecto.Repo.default_options/1 .","ref":"Lightning.Repo.html#default_options/1"},{"type":"function","title":"Lightning.Repo.delete/2","doc":"Callback implementation for Ecto.Repo.delete/2 .","ref":"Lightning.Repo.html#delete/2"},{"type":"function","title":"Lightning.Repo.delete!/2","doc":"Callback implementation for Ecto.Repo.delete!/2 .","ref":"Lightning.Repo.html#delete!/2"},{"type":"function","title":"Lightning.Repo.delete_all/2","doc":"Callback implementation for Ecto.Repo.delete_all/2 .","ref":"Lightning.Repo.html#delete_all/2"},{"type":"function","title":"Lightning.Repo.disconnect_all/2","doc":"A convenience function for SQL-based repositories that forces all connections in the pool to disconnect within the given interval. See Ecto.Adapters.SQL.disconnect_all/3 for more information.","ref":"Lightning.Repo.html#disconnect_all/2"},{"type":"function","title":"Lightning.Repo.exists?/2","doc":"Callback implementation for Ecto.Repo.exists?/2 .","ref":"Lightning.Repo.html#exists?/2"},{"type":"function","title":"Lightning.Repo.explain/3","doc":"A convenience function for SQL-based repositories that executes an EXPLAIN statement or similar depending on the adapter to obtain statistics for the given query. See Ecto.Adapters.SQL.explain/4 for more information.","ref":"Lightning.Repo.html#explain/3"},{"type":"function","title":"Lightning.Repo.get/3","doc":"Callback implementation for Ecto.Repo.get/3 .","ref":"Lightning.Repo.html#get/3"},{"type":"function","title":"Lightning.Repo.get!/3","doc":"Callback implementation for Ecto.Repo.get!/3 .","ref":"Lightning.Repo.html#get!/3"},{"type":"function","title":"Lightning.Repo.get_by/3","doc":"Callback implementation for Ecto.Repo.get_by/3 .","ref":"Lightning.Repo.html#get_by/3"},{"type":"function","title":"Lightning.Repo.get_by!/3","doc":"Callback implementation for Ecto.Repo.get_by!/3 .","ref":"Lightning.Repo.html#get_by!/3"},{"type":"function","title":"Lightning.Repo.get_dynamic_repo/0","doc":"Callback implementation for Ecto.Repo.get_dynamic_repo/0 .","ref":"Lightning.Repo.html#get_dynamic_repo/0"},{"type":"function","title":"Lightning.Repo.in_transaction?/0","doc":"Callback implementation for Ecto.Repo.in_transaction?/0 .","ref":"Lightning.Repo.html#in_transaction?/0"},{"type":"function","title":"Lightning.Repo.insert/2","doc":"Callback implementation for Ecto.Repo.insert/2 .","ref":"Lightning.Repo.html#insert/2"},{"type":"function","title":"Lightning.Repo.insert!/2","doc":"Callback implementation for Ecto.Repo.insert!/2 .","ref":"Lightning.Repo.html#insert!/2"},{"type":"function","title":"Lightning.Repo.insert_all/3","doc":"Callback implementation for Ecto.Repo.insert_all/3 .","ref":"Lightning.Repo.html#insert_all/3"},{"type":"function","title":"Lightning.Repo.insert_or_update/2","doc":"Callback implementation for Ecto.Repo.insert_or_update/2 .","ref":"Lightning.Repo.html#insert_or_update/2"},{"type":"function","title":"Lightning.Repo.insert_or_update!/2","doc":"Callback implementation for Ecto.Repo.insert_or_update!/2 .","ref":"Lightning.Repo.html#insert_or_update!/2"},{"type":"function","title":"Lightning.Repo.load/2","doc":"Callback implementation for Ecto.Repo.load/2 .","ref":"Lightning.Repo.html#load/2"},{"type":"function","title":"Lightning.Repo.one/2","doc":"Callback implementation for Ecto.Repo.one/2 .","ref":"Lightning.Repo.html#one/2"},{"type":"function","title":"Lightning.Repo.one!/2","doc":"Callback implementation for Ecto.Repo.one!/2 .","ref":"Lightning.Repo.html#one!/2"},{"type":"function","title":"Lightning.Repo.paginate/2","doc":"","ref":"Lightning.Repo.html#paginate/2"},{"type":"function","title":"Lightning.Repo.preload/3","doc":"Callback implementation for Ecto.Repo.preload/3 .","ref":"Lightning.Repo.html#preload/3"},{"type":"function","title":"Lightning.Repo.prepare_query/3","doc":"Callback implementation for Ecto.Repo.prepare_query/3 .","ref":"Lightning.Repo.html#prepare_query/3"},{"type":"function","title":"Lightning.Repo.put_dynamic_repo/1","doc":"Callback implementation for Ecto.Repo.put_dynamic_repo/1 .","ref":"Lightning.Repo.html#put_dynamic_repo/1"},{"type":"function","title":"Lightning.Repo.query/3","doc":"A convenience function for SQL-based repositories that executes the given query. See Ecto.Adapters.SQL.query/4 for more information.","ref":"Lightning.Repo.html#query/3"},{"type":"function","title":"Lightning.Repo.query!/3","doc":"A convenience function for SQL-based repositories that executes the given query. See Ecto.Adapters.SQL.query!/4 for more information.","ref":"Lightning.Repo.html#query!/3"},{"type":"function","title":"Lightning.Repo.query_many/3","doc":"A convenience function for SQL-based repositories that executes the given multi-result query. See Ecto.Adapters.SQL.query_many/4 for more information.","ref":"Lightning.Repo.html#query_many/3"},{"type":"function","title":"Lightning.Repo.query_many!/3","doc":"A convenience function for SQL-based repositories that executes the given multi-result query. See Ecto.Adapters.SQL.query_many!/4 for more information.","ref":"Lightning.Repo.html#query_many!/3"},{"type":"function","title":"Lightning.Repo.reload/2","doc":"Callback implementation for Ecto.Repo.reload/2 .","ref":"Lightning.Repo.html#reload/2"},{"type":"function","title":"Lightning.Repo.reload!/2","doc":"Callback implementation for Ecto.Repo.reload!/2 .","ref":"Lightning.Repo.html#reload!/2"},{"type":"function","title":"Lightning.Repo.rollback/1","doc":"Callback implementation for Ecto.Repo.rollback/1 .","ref":"Lightning.Repo.html#rollback/1"},{"type":"function","title":"Lightning.Repo.scrivener_defaults/0","doc":"","ref":"Lightning.Repo.html#scrivener_defaults/0"},{"type":"function","title":"Lightning.Repo.start_link/1","doc":"Callback implementation for Ecto.Repo.start_link/1 .","ref":"Lightning.Repo.html#start_link/1"},{"type":"function","title":"Lightning.Repo.stop/1","doc":"Callback implementation for Ecto.Repo.stop/1 .","ref":"Lightning.Repo.html#stop/1"},{"type":"function","title":"Lightning.Repo.stream/2","doc":"Callback implementation for Ecto.Repo.stream/2 .","ref":"Lightning.Repo.html#stream/2"},{"type":"function","title":"Lightning.Repo.to_sql/2","doc":"A convenience function for SQL-based repositories that translates the given query to SQL. See Ecto.Adapters.SQL.to_sql/3 for more information.","ref":"Lightning.Repo.html#to_sql/2"},{"type":"function","title":"Lightning.Repo.transaction/2","doc":"Callback implementation for Ecto.Repo.transaction/2 .","ref":"Lightning.Repo.html#transaction/2"},{"type":"function","title":"Lightning.Repo.update/2","doc":"Callback implementation for Ecto.Repo.update/2 .","ref":"Lightning.Repo.html#update/2"},{"type":"function","title":"Lightning.Repo.update!/2","doc":"Callback implementation for Ecto.Repo.update!/2 .","ref":"Lightning.Repo.html#update!/2"},{"type":"function","title":"Lightning.Repo.update_all/3","doc":"Callback implementation for Ecto.Repo.update_all/3 .","ref":"Lightning.Repo.html#update_all/3"},{"type":"module","title":"Lightning.RunSearchForm","doc":"Run filtering search form.","ref":"Lightning.RunSearchForm.html"},{"type":"module","title":"Lightning.SafetyString","doc":"Utilities for securely encoding serializable structs, lists and strings into URL-safe strings. In order to pass the state around in a URL, in a manner that protects secrets from leaking - and allows us to avoid persistance we take a set of parameters and: Encode into a URI query string gzip it to save characters encrypt the string base64 encode it for URI encoding safety","ref":"Lightning.SafetyString.html"},{"type":"function","title":"Lightning.SafetyString.decode/1","doc":"","ref":"Lightning.SafetyString.html#decode/1"},{"type":"function","title":"Lightning.SafetyString.encode/1","doc":"","ref":"Lightning.SafetyString.html#encode/1"},{"type":"module","title":"Lightning.Scrubber","doc":"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.","ref":"Lightning.Scrubber.html"},{"type":"function","title":"Lightning.Scrubber.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.Scrubber.html#child_spec/1"},{"type":"function","title":"Lightning.Scrubber.encode_samples/1","doc":"Prepare a list of sensitive samples (strings) into a potentially bigger list composed of variations a sample may appear.","ref":"Lightning.Scrubber.html#encode_samples/1"},{"type":"function","title":"Lightning.Scrubber.samples/1","doc":"","ref":"Lightning.Scrubber.html#samples/1"},{"type":"function","title":"Lightning.Scrubber.scrub/2","doc":"","ref":"Lightning.Scrubber.html#scrub/2"},{"type":"function","title":"Lightning.Scrubber.start_link/1","doc":"","ref":"Lightning.Scrubber.html#start_link/1"},{"type":"module","title":"Lightning.SetupUtils","doc":"SetupUtils encapsulates logic for setting up initial data for various sites.","ref":"Lightning.SetupUtils.html"},{"type":"function","title":"Lightning.SetupUtils.add_and_update_runs/3","doc":"","ref":"Lightning.SetupUtils.html#add_and_update_runs/3"},{"type":"function","title":"Lightning.SetupUtils.create_dhis2_project/1","doc":"","ref":"Lightning.SetupUtils.html#create_dhis2_project/1"},{"type":"function","title":"Lightning.SetupUtils.create_openhie_project/1","doc":"","ref":"Lightning.SetupUtils.html#create_openhie_project/1"},{"type":"function","title":"Lightning.SetupUtils.create_starter_project/2","doc":"","ref":"Lightning.SetupUtils.html#create_starter_project/2"},{"type":"function","title":"Lightning.SetupUtils.setup_demo/1","doc":"Creates initial data and returns the created records.","ref":"Lightning.SetupUtils.html#setup_demo/1"},{"type":"function","title":"Lightning.SetupUtils.tear_down/1","doc":"","ref":"Lightning.SetupUtils.html#tear_down/1"},{"type":"module","title":"Lightning.TaskWorker","doc":"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.","ref":"Lightning.TaskWorker.html"},{"type":"function","title":"Lightning.TaskWorker.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.TaskWorker.html#child_spec/1"},{"type":"function","title":"Lightning.TaskWorker.get_status/1","doc":"","ref":"Lightning.TaskWorker.html#get_status/1"},{"type":"function","title":"Lightning.TaskWorker.start_link/1","doc":"","ref":"Lightning.TaskWorker.html#start_link/1"},{"type":"function","title":"Lightning.TaskWorker.start_task/2","doc":"","ref":"Lightning.TaskWorker.html#start_task/2"},{"type":"module","title":"Lightning.Validators","doc":"Extra validators for Ecto.Changeset.","ref":"Lightning.Validators.html"},{"type":"function","title":"Lightning.Validators.validate_exclusive/3","doc":"Validate that only one of the fields is set at a time. Example: changeset |> validate_exclusive ( [ :source_job_id , :source_trigger_id ] , "source_job_id and source_trigger_id are mutually exclusive" )","ref":"Lightning.Validators.html#validate_exclusive/3"},{"type":"function","title":"Lightning.Validators.validate_one_required/3","doc":"Validate that at least one of the fields is set.","ref":"Lightning.Validators.html#validate_one_required/3"},{"type":"module","title":"Lightning.Vault","doc":"Module for handling the encryption and decryption of database fields.","ref":"Lightning.Vault.html"},{"type":"function","title":"Lightning.Vault.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.Vault.html#child_spec/1"},{"type":"function","title":"Lightning.Vault.start_link/1","doc":"","ref":"Lightning.Vault.html#start_link/1"},{"type":"module","title":"Lightning.WorkOrder","doc":"Ecto model for Workorders.","ref":"Lightning.WorkOrder.html"},{"type":"function","title":"Lightning.WorkOrder.new/0","doc":"","ref":"Lightning.WorkOrder.html#new/0"},{"type":"type","title":"Lightning.WorkOrder.t/0","doc":"","ref":"Lightning.WorkOrder.html#t:t/0"},{"type":"module","title":"Lightning.WorkOrderService","doc":"The WorkOrderService.","ref":"Lightning.WorkOrderService.html"},{"type":"function","title":"Lightning.WorkOrderService.attempt_updated/1","doc":"","ref":"Lightning.WorkOrderService.html#attempt_updated/1"},{"type":"function","title":"Lightning.WorkOrderService.build/2","doc":"","ref":"Lightning.WorkOrderService.html#build/2"},{"type":"function","title":"Lightning.WorkOrderService.create_manual_workorder/3","doc":"","ref":"Lightning.WorkOrderService.html#create_manual_workorder/3"},{"type":"function","title":"Lightning.WorkOrderService.create_webhook_workorder/2","doc":"","ref":"Lightning.WorkOrderService.html#create_webhook_workorder/2"},{"type":"function","title":"Lightning.WorkOrderService.create_work_order/1","doc":"Creates a work_order. Examples iex> create_work_order ( %{ field : value } ) { :ok , % WorkOrder { } } iex> create_work_order ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.WorkOrderService.html#create_work_order/1"},{"type":"function","title":"Lightning.WorkOrderService.multi_for/3","doc":"","ref":"Lightning.WorkOrderService.html#multi_for/3"},{"type":"function","title":"Lightning.WorkOrderService.multi_for_manual/3","doc":"","ref":"Lightning.WorkOrderService.html#multi_for_manual/3"},{"type":"function","title":"Lightning.WorkOrderService.retry_attempt_run/2","doc":"","ref":"Lightning.WorkOrderService.html#retry_attempt_run/2"},{"type":"function","title":"Lightning.WorkOrderService.retry_attempt_runs/2","doc":"","ref":"Lightning.WorkOrderService.html#retry_attempt_runs/2"},{"type":"function","title":"Lightning.WorkOrderService.subscribe/1","doc":"","ref":"Lightning.WorkOrderService.html#subscribe/1"},{"type":"module","title":"Lightning.Workflows","doc":"The Workflows context.","ref":"Lightning.Workflows.html"},{"type":"function","title":"Lightning.Workflows.build_trigger/1","doc":"Builds a Trigger","ref":"Lightning.Workflows.html#build_trigger/1"},{"type":"function","title":"Lightning.Workflows.change_workflow/2","doc":"Returns an %Ecto.Changeset{} for tracking workflow changes. Examples iex> change_workflow ( workflow ) % Ecto.Changeset { data : % Workflow { } }","ref":"Lightning.Workflows.html#change_workflow/2"},{"type":"function","title":"Lightning.Workflows.create_edge/1","doc":"Creates an edge","ref":"Lightning.Workflows.html#create_edge/1"},{"type":"function","title":"Lightning.Workflows.create_workflow/1","doc":"Creates a workflow. Examples iex> create_workflow ( %{ field : value } ) { :ok , % Workflow { } } iex> create_workflow ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Workflows.html#create_workflow/1"},{"type":"function","title":"Lightning.Workflows.delete_workflow/1","doc":"Deletes a workflow. Examples iex> delete_workflow ( workflow ) { :ok , % Workflow { } } iex> delete_workflow ( workflow ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Workflows.html#delete_workflow/1"},{"type":"function","title":"Lightning.Workflows.get_edge_by_webhook/1","doc":"Gets a Single Edge by it's webhook trigger.","ref":"Lightning.Workflows.html#get_edge_by_webhook/1"},{"type":"function","title":"Lightning.Workflows.get_edges_for_cron_execution/1","doc":"Returns a list of edges with jobs to execute, given a current timestamp in Unix. This is used by the scheduler, which calls this function once every minute.","ref":"Lightning.Workflows.html#get_edges_for_cron_execution/1"},{"type":"function","title":"Lightning.Workflows.get_workflow/1","doc":"","ref":"Lightning.Workflows.html#get_workflow/1"},{"type":"function","title":"Lightning.Workflows.get_workflow!/1","doc":"Gets a single workflow. Raises Ecto.NoResultsError if the Workflow does not exist. Examples iex> get_workflow! ( 123 ) % Workflow { } iex> get_workflow! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Workflows.html#get_workflow!/1"},{"type":"function","title":"Lightning.Workflows.get_workflows_for/1","doc":"Retrieves a list of Workflows with their jobs and triggers preloaded.","ref":"Lightning.Workflows.html#get_workflows_for/1"},{"type":"function","title":"Lightning.Workflows.get_workflows_for_query/1","doc":"","ref":"Lightning.Workflows.html#get_workflows_for_query/1"},{"type":"function","title":"Lightning.Workflows.list_workflows/0","doc":"Returns the list of workflows. Examples iex> list_workflows ( ) [ % Workflow { } , ... ]","ref":"Lightning.Workflows.html#list_workflows/0"},{"type":"function","title":"Lightning.Workflows.mark_for_deletion/2","doc":"Returns an %Ecto.Changeset{} for changing the workflow request_deletion. Examples iex> change_request_deletion ( workflow ) % Ecto.Changeset { data : % Workflow { } }","ref":"Lightning.Workflows.html#mark_for_deletion/2"},{"type":"function","title":"Lightning.Workflows.to_project_space/1","doc":"","ref":"Lightning.Workflows.html#to_project_space/1"},{"type":"function","title":"Lightning.Workflows.update_trigger/2","doc":"Updates a trigger","ref":"Lightning.Workflows.html#update_trigger/2"},{"type":"function","title":"Lightning.Workflows.update_workflow/2","doc":"Updates a workflow. Examples iex> update_workflow ( workflow , %{ field : new_value } ) { :ok , % Workflow { } } iex> update_workflow ( workflow , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Workflows.html#update_workflow/2"},{"type":"module","title":"Lightning.Workflows.Edge","doc":"Ecto model for Workflow Edges. A Workflow Edge represents a connection between two jobs (or a trigger and a job) in a workflow. The source of the edge is either a job or a trigger. The target of the edge is always a job.","ref":"Lightning.Workflows.Edge.html"},{"type":"function","title":"Lightning.Workflows.Edge.changeset/2","doc":"","ref":"Lightning.Workflows.Edge.html#changeset/2"},{"type":"function","title":"Lightning.Workflows.Edge.new/1","doc":"","ref":"Lightning.Workflows.Edge.html#new/1"},{"type":"function","title":"Lightning.Workflows.Edge.validate/1","doc":"","ref":"Lightning.Workflows.Edge.html#validate/1"},{"type":"type","title":"Lightning.Workflows.Edge.edge_condition/0","doc":"","ref":"Lightning.Workflows.Edge.html#t:edge_condition/0"},{"type":"type","title":"Lightning.Workflows.Edge.t/0","doc":"","ref":"Lightning.Workflows.Edge.html#t:t/0"},{"type":"module","title":"Lightning.Workflows.Graph","doc":"Utility to construct and manipulate a graph/plan made out of Jobs","ref":"Lightning.Workflows.Graph.html"},{"type":"function","title":"Lightning.Workflows.Graph.new/1","doc":"","ref":"Lightning.Workflows.Graph.html#new/1"},{"type":"function","title":"Lightning.Workflows.Graph.remove/2","doc":"","ref":"Lightning.Workflows.Graph.html#remove/2"},{"type":"function","title":"Lightning.Workflows.Graph.vertices/1","doc":"","ref":"Lightning.Workflows.Graph.html#vertices/1"},{"type":"type","title":"Lightning.Workflows.Graph.t/0","doc":"","ref":"Lightning.Workflows.Graph.html#t:t/0"},{"type":"type","title":"Lightning.Workflows.Graph.vertex/0","doc":"","ref":"Lightning.Workflows.Graph.html#t:vertex/0"},{"type":"module","title":"Lightning.Workflows.Workflow","doc":"Ecto model for Workflows. A Workflow contains the fields for defining a workflow. name A plain text identifier","ref":"Lightning.Workflows.Workflow.html"},{"type":"function","title":"Lightning.Workflows.Workflow.request_deletion_changeset/2","doc":"","ref":"Lightning.Workflows.Workflow.html#request_deletion_changeset/2"},{"type":"function","title":"Lightning.Workflows.Workflow.validate/1","doc":"","ref":"Lightning.Workflows.Workflow.html#validate/1"},{"type":"type","title":"Lightning.Workflows.Workflow.t/0","doc":"","ref":"Lightning.Workflows.Workflow.html#t:t/0"},{"type":"module","title":"Lightning.Workorders.SearchParams","doc":"This module is used to parse search parameters for workorders and provide a query to the database.","ref":"Lightning.Workorders.SearchParams.html"},{"type":"function","title":"Lightning.Workorders.SearchParams.new/1","doc":"","ref":"Lightning.Workorders.SearchParams.html#new/1"},{"type":"function","title":"Lightning.Workorders.SearchParams.to_uri_params/1","doc":"","ref":"Lightning.Workorders.SearchParams.html#to_uri_params/1"},{"type":"type","title":"Lightning.Workorders.SearchParams.t/0","doc":"","ref":"Lightning.Workorders.SearchParams.html#t:t/0"},{"type":"module","title":"LightningWeb","doc":"The entrypoint for defining your web interface, such as controllers, views, channels and so on. This can be used in your application as: use LightningWeb , :controller use LightningWeb , :view The definitions below will be executed for every view, controller, etc, so keep them short and clean, focused on imports, uses and aliases. Do NOT define functions inside the quoted expressions below. Instead, define any helper function in modules and import those modules here.","ref":"LightningWeb.html"},{"type":"macro","title":"LightningWeb.__using__/1","doc":"When used, dispatch to the appropriate controller/view/etc.","ref":"LightningWeb.html#__using__/1"},{"type":"function","title":"LightningWeb.channel/0","doc":"","ref":"LightningWeb.html#channel/0"},{"type":"function","title":"LightningWeb.component/0","doc":"","ref":"LightningWeb.html#component/0"},{"type":"function","title":"LightningWeb.controller/0","doc":"","ref":"LightningWeb.html#controller/0"},{"type":"function","title":"LightningWeb.html/0","doc":"","ref":"LightningWeb.html#html/0"},{"type":"function","title":"LightningWeb.live_component/0","doc":"","ref":"LightningWeb.html#live_component/0"},{"type":"function","title":"LightningWeb.live_view/1","doc":"","ref":"LightningWeb.html#live_view/1"},{"type":"function","title":"LightningWeb.router/0","doc":"","ref":"LightningWeb.html#router/0"},{"type":"function","title":"LightningWeb.static_paths/0","doc":"","ref":"LightningWeb.html#static_paths/0"},{"type":"function","title":"LightningWeb.verified_routes/0","doc":"","ref":"LightningWeb.html#verified_routes/0"},{"type":"function","title":"LightningWeb.view/0","doc":"","ref":"LightningWeb.html#view/0"},{"type":"module","title":"LightningWeb.API.Helpers","doc":"Helpers for the API views","ref":"LightningWeb.API.Helpers.html"},{"type":"function","title":"LightningWeb.API.Helpers.pagination_link/3","doc":"","ref":"LightningWeb.API.Helpers.html#pagination_link/3"},{"type":"function","title":"LightningWeb.API.Helpers.pagination_links/2","doc":"","ref":"LightningWeb.API.Helpers.html#pagination_links/2"},{"type":"function","title":"LightningWeb.API.Helpers.url_for/2","doc":"","ref":"LightningWeb.API.Helpers.html#url_for/2"},{"type":"module","title":"LightningWeb.API.JobController","doc":"","ref":"LightningWeb.API.JobController.html"},{"type":"function","title":"LightningWeb.API.JobController.index/2","doc":"","ref":"LightningWeb.API.JobController.html#index/2"},{"type":"function","title":"LightningWeb.API.JobController.show/2","doc":"","ref":"LightningWeb.API.JobController.html#show/2"},{"type":"module","title":"LightningWeb.API.ProjectController","doc":"","ref":"LightningWeb.API.ProjectController.html"},{"type":"function","title":"LightningWeb.API.ProjectController.index/2","doc":"","ref":"LightningWeb.API.ProjectController.html#index/2"},{"type":"function","title":"LightningWeb.API.ProjectController.show/2","doc":"","ref":"LightningWeb.API.ProjectController.html#show/2"},{"type":"module","title":"LightningWeb.API.ProvisioningController","doc":"","ref":"LightningWeb.API.ProvisioningController.html"},{"type":"function","title":"LightningWeb.API.ProvisioningController.create/2","doc":"","ref":"LightningWeb.API.ProvisioningController.html#create/2"},{"type":"function","title":"LightningWeb.API.ProvisioningController.show/2","doc":"","ref":"LightningWeb.API.ProvisioningController.html#show/2"},{"type":"module","title":"LightningWeb.API.RunController","doc":"","ref":"LightningWeb.API.RunController.html"},{"type":"function","title":"LightningWeb.API.RunController.index/2","doc":"","ref":"LightningWeb.API.RunController.html#index/2"},{"type":"function","title":"LightningWeb.API.RunController.show/2","doc":"","ref":"LightningWeb.API.RunController.html#show/2"},{"type":"module","title":"LightningWeb.AuditLive.Index","doc":"LiveView for listing Audit events","ref":"LightningWeb.AuditLive.Index.html"},{"type":"function","title":"LightningWeb.AuditLive.Index.diff/1","doc":"","ref":"LightningWeb.AuditLive.Index.html#diff/1"},{"type":"function","title":"LightningWeb.AuditLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.AuditLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.AuthProvidersLive.FormComponent","doc":"Form Component for working with a single Job A Job's adaptor field is a combination of the module name and the version. It's formatted as an NPM style string. The form allows the user to select a module by name and then it's version, while the version dropdown itself references adaptor directly. Meaning the adaptor_name dropdown and assigns value is not persisted.","ref":"LightningWeb.AuthProvidersLive.FormComponent.html"},{"type":"module","title":"LightningWeb.AuthProvidersLive.Index","doc":"LiveView for listing and managing Projects","ref":"LightningWeb.AuthProvidersLive.Index.html"},{"type":"module","title":"LightningWeb.ChangesetJSON","doc":"Renders changesets as JSON.","ref":"LightningWeb.ChangesetJSON.html"},{"type":"function","title":"LightningWeb.ChangesetJSON.error/1","doc":"","ref":"LightningWeb.ChangesetJSON.html#error/1"},{"type":"module","title":"LightningWeb.ChangesetView","doc":"","ref":"LightningWeb.ChangesetView.html"},{"type":"function","title":"LightningWeb.ChangesetView.__resource__/0","doc":"The resource name, as an atom, for this view","ref":"LightningWeb.ChangesetView.html#__resource__/0"},{"type":"function","title":"LightningWeb.ChangesetView.render/2","doc":"Renders the given template locally.","ref":"LightningWeb.ChangesetView.html#render/2"},{"type":"function","title":"LightningWeb.ChangesetView.template_not_found/2","doc":"Callback invoked when no template is found. By default it raises but can be customized to render a particular template.","ref":"LightningWeb.ChangesetView.html#template_not_found/2"},{"type":"function","title":"LightningWeb.ChangesetView.translate_errors/1","doc":"Traverses and translates changeset errors. See Ecto.Changeset.traverse_errors/2 and LightningWeb.ErrorHelpers.translate_error/1 for more details.","ref":"LightningWeb.ChangesetView.html#translate_errors/1"},{"type":"module","title":"LightningWeb.Components.Modal","doc":"A modal component that can be used to display a modal on the page. This currently isn't used anywhere but should be used in the future to replace the existing modal implementations.","ref":"LightningWeb.Components.Modal.html"},{"type":"module","title":"LightningWeb.CredentialLive.Edit","doc":"LiveView for editing a single Credential, which inturn uses LightningWeb.CredentialLive.FormComponent for common functionality.","ref":"LightningWeb.CredentialLive.Edit.html"},{"type":"function","title":"LightningWeb.CredentialLive.Edit.handle_info/2","doc":"A generic handler for forwarding updates from PubSub","ref":"LightningWeb.CredentialLive.Edit.html#handle_info/2"},{"type":"module","title":"LightningWeb.CredentialLive.FormComponent","doc":"Form Component for working with a single Credential","ref":"LightningWeb.CredentialLive.FormComponent.html"},{"type":"function","title":"LightningWeb.CredentialLive.FormComponent.credential_transfer/1","doc":"Attributes users ( :list ) (required) form ( :map ) (required)","ref":"LightningWeb.CredentialLive.FormComponent.html#credential_transfer/1"},{"type":"function","title":"LightningWeb.CredentialLive.FormComponent.form_component/1","doc":"Switcher components for different types of credentials. Attributes type ( :string ) (required) form ( :map ) (required) update_body ( :any ) Slots inner_block","ref":"LightningWeb.CredentialLive.FormComponent.html#form_component/1"},{"type":"function","title":"LightningWeb.CredentialLive.FormComponent.project_credentials/1","doc":"Attributes form ( :map ) (required) projects ( :list ) (required) selected ( :map ) (required) phx_target ( :any ) - Defaults to nil .","ref":"LightningWeb.CredentialLive.FormComponent.html#project_credentials/1"},{"type":"module","title":"LightningWeb.CredentialLive.GoogleSheetsComponent","doc":"Form component to setup a Google Sheets component. This component has several moving parts: Subscribes to a PubSub topic specially link to the component id See: LightningWeb.OauthCredentialHelper . Uses the Lightning.Google module to set up an OAuth client for generating urls, exchanging the code and requesting a new access_token . The flow for creating a new token is: Generate an authorization link which contains: The authorization url from the Google client with the applications callback_url A state string that is an encrypted set of data with the components module and id in it Once the user authorizes the client the callback is requested with a code The LightningWeb.OidcController decodes the state returned to it and does a 'broadcast_forward' which is simply a message expected to be received by a LiveView and applied to Phoenix.LiveView.send_update/3 . The component receives the code and requests a token. Any changes to the token (Credential body) are still handled by the parent component and so a update_body function is passed in to send params changes back up to update the form.","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html"},{"type":"function","title":"LightningWeb.CredentialLive.GoogleSheetsComponent.authorize_button/1","doc":"","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html#authorize_button/1"},{"type":"function","title":"LightningWeb.CredentialLive.GoogleSheetsComponent.disabled_authorize_button/1","doc":"","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html#disabled_authorize_button/1"},{"type":"function","title":"LightningWeb.CredentialLive.GoogleSheetsComponent.error_block/1","doc":"","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html#error_block/1"},{"type":"function","title":"LightningWeb.CredentialLive.GoogleSheetsComponent.fieldset/1","doc":"Attributes form ( :map ) (required) update_body ( :any ) (required) Slots inner_block","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html#fieldset/1"},{"type":"function","title":"LightningWeb.CredentialLive.GoogleSheetsComponent.userinfo/1","doc":"","ref":"LightningWeb.CredentialLive.GoogleSheetsComponent.html#userinfo/1"},{"type":"module","title":"LightningWeb.CredentialLive.Index","doc":"LiveView for listing and managing credentials","ref":"LightningWeb.CredentialLive.Index.html"},{"type":"function","title":"LightningWeb.CredentialLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.CredentialLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.CredentialLive.JsonSchemaBodyComponent","doc":"","ref":"LightningWeb.CredentialLive.JsonSchemaBodyComponent.html"},{"type":"function","title":"LightningWeb.CredentialLive.JsonSchemaBodyComponent.fieldset/1","doc":"Attributes form ( :map ) (required) Slots inner_block","ref":"LightningWeb.CredentialLive.JsonSchemaBodyComponent.html#fieldset/1"},{"type":"function","title":"LightningWeb.CredentialLive.JsonSchemaBodyComponent.schema_input/1","doc":"Attributes form ( :map ) (required) schema ( :map ) (required) field ( :any ) (required)","ref":"LightningWeb.CredentialLive.JsonSchemaBodyComponent.html#schema_input/1"},{"type":"module","title":"LightningWeb.CredentialLive.RawBodyComponent","doc":"","ref":"LightningWeb.CredentialLive.RawBodyComponent.html"},{"type":"function","title":"LightningWeb.CredentialLive.RawBodyComponent.fieldset/1","doc":"Attributes form ( :map ) (required) Slots inner_block","ref":"LightningWeb.CredentialLive.RawBodyComponent.html#fieldset/1"},{"type":"module","title":"LightningWeb.CredentialLive.TypePicker","doc":"","ref":"LightningWeb.CredentialLive.TypePicker.html"},{"type":"module","title":"LightningWeb.DataclipLive.Edit","doc":"LiveView for editing a single dataclip.","ref":"LightningWeb.DataclipLive.Edit.html"},{"type":"function","title":"LightningWeb.DataclipLive.Edit.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.DataclipLive.Edit.html#render/1"},{"type":"module","title":"LightningWeb.DataclipLive.FormComponent","doc":"Form Component for working with a single dataclip","ref":"LightningWeb.DataclipLive.FormComponent.html"},{"type":"function","title":"LightningWeb.DataclipLive.FormComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.DataclipLive.FormComponent.html#render/1"},{"type":"module","title":"LightningWeb.DataclipLive.Index","doc":"LiveView for listing and working with a list of Dataclips","ref":"LightningWeb.DataclipLive.Index.html"},{"type":"function","title":"LightningWeb.DataclipLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.DataclipLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.DownloadsController","doc":"","ref":"LightningWeb.DownloadsController.html"},{"type":"function","title":"LightningWeb.DownloadsController.download_project_yaml/2","doc":"","ref":"LightningWeb.DownloadsController.html#download_project_yaml/2"},{"type":"module","title":"LightningWeb.Endpoint","doc":"","ref":"LightningWeb.Endpoint.html"},{"type":"function","title":"LightningWeb.Endpoint.broadcast/3","doc":"Callback implementation for Phoenix.Endpoint.broadcast/3 .","ref":"LightningWeb.Endpoint.html#broadcast/3"},{"type":"function","title":"LightningWeb.Endpoint.broadcast!/3","doc":"Callback implementation for Phoenix.Endpoint.broadcast!/3 .","ref":"LightningWeb.Endpoint.html#broadcast!/3"},{"type":"function","title":"LightningWeb.Endpoint.broadcast_from/4","doc":"Callback implementation for Phoenix.Endpoint.broadcast_from/4 .","ref":"LightningWeb.Endpoint.html#broadcast_from/4"},{"type":"function","title":"LightningWeb.Endpoint.broadcast_from!/4","doc":"Callback implementation for Phoenix.Endpoint.broadcast_from!/4 .","ref":"LightningWeb.Endpoint.html#broadcast_from!/4"},{"type":"function","title":"LightningWeb.Endpoint.call/2","doc":"Callback implementation for Plug.call/2 .","ref":"LightningWeb.Endpoint.html#call/2"},{"type":"function","title":"LightningWeb.Endpoint.child_spec/1","doc":"Returns the child specification to start the endpoint under a supervision tree.","ref":"LightningWeb.Endpoint.html#child_spec/1"},{"type":"function","title":"LightningWeb.Endpoint.config/2","doc":"Returns the endpoint configuration for key Returns default if the key does not exist.","ref":"LightningWeb.Endpoint.html#config/2"},{"type":"function","title":"LightningWeb.Endpoint.config_change/2","doc":"Reloads the configuration given the application environment changes.","ref":"LightningWeb.Endpoint.html#config_change/2"},{"type":"function","title":"LightningWeb.Endpoint.host/0","doc":"Returns the host for the given endpoint.","ref":"LightningWeb.Endpoint.html#host/0"},{"type":"function","title":"LightningWeb.Endpoint.init/1","doc":"Callback implementation for Plug.init/1 .","ref":"LightningWeb.Endpoint.html#init/1"},{"type":"function","title":"LightningWeb.Endpoint.local_broadcast/3","doc":"Callback implementation for Phoenix.Endpoint.local_broadcast/3 .","ref":"LightningWeb.Endpoint.html#local_broadcast/3"},{"type":"function","title":"LightningWeb.Endpoint.local_broadcast_from/4","doc":"Callback implementation for Phoenix.Endpoint.local_broadcast_from/4 .","ref":"LightningWeb.Endpoint.html#local_broadcast_from/4"},{"type":"function","title":"LightningWeb.Endpoint.path/1","doc":"Generates the path information when routing to this endpoint.","ref":"LightningWeb.Endpoint.html#path/1"},{"type":"function","title":"LightningWeb.Endpoint.script_name/0","doc":"Generates the script name.","ref":"LightningWeb.Endpoint.html#script_name/0"},{"type":"function","title":"LightningWeb.Endpoint.start_link/1","doc":"Starts the endpoint supervision tree. All other options are merged into the endpoint configuration.","ref":"LightningWeb.Endpoint.html#start_link/1"},{"type":"function","title":"LightningWeb.Endpoint.static_integrity/1","doc":"Generates a base64-encoded cryptographic hash (sha512) to a static file in priv/static . Meant to be used for Subresource Integrity with CDNs.","ref":"LightningWeb.Endpoint.html#static_integrity/1"},{"type":"function","title":"LightningWeb.Endpoint.static_lookup/1","doc":"Returns a two item tuple with the first item being the static_path and the second item being the static_integrity .","ref":"LightningWeb.Endpoint.html#static_lookup/1"},{"type":"function","title":"LightningWeb.Endpoint.static_path/1","doc":"Generates a route to a static file in priv/static .","ref":"LightningWeb.Endpoint.html#static_path/1"},{"type":"function","title":"LightningWeb.Endpoint.static_url/0","doc":"Generates the static URL without any path information. It uses the configuration under :static_url to generate such. It falls back to :url if :static_url is not set.","ref":"LightningWeb.Endpoint.html#static_url/0"},{"type":"function","title":"LightningWeb.Endpoint.struct_url/0","doc":"Generates the endpoint base URL but as a URI struct. It uses the configuration under :url to generate such. Useful for manipulating the URL data and passing it to URL helpers.","ref":"LightningWeb.Endpoint.html#struct_url/0"},{"type":"function","title":"LightningWeb.Endpoint.subscribe/2","doc":"Callback implementation for Phoenix.Endpoint.subscribe/2 .","ref":"LightningWeb.Endpoint.html#subscribe/2"},{"type":"function","title":"LightningWeb.Endpoint.unsubscribe/1","doc":"Callback implementation for Phoenix.Endpoint.unsubscribe/1 .","ref":"LightningWeb.Endpoint.html#unsubscribe/1"},{"type":"function","title":"LightningWeb.Endpoint.url/0","doc":"Generates the endpoint base URL without any path information. It uses the configuration under :url to generate such.","ref":"LightningWeb.Endpoint.html#url/0"},{"type":"module","title":"LightningWeb.ErrorView","doc":"","ref":"LightningWeb.ErrorView.html"},{"type":"function","title":"LightningWeb.ErrorView.__resource__/0","doc":"The resource name, as an atom, for this view","ref":"LightningWeb.ErrorView.html#__resource__/0"},{"type":"function","title":"LightningWeb.ErrorView.render/2","doc":"Renders the given template locally.","ref":"LightningWeb.ErrorView.html#render/2"},{"type":"function","title":"LightningWeb.ErrorView.template_not_found/2","doc":"Callback invoked when no template is found. By default it raises but can be customized to render a particular template.","ref":"LightningWeb.ErrorView.html#template_not_found/2"},{"type":"module","title":"LightningWeb.FallbackController","doc":"Translates controller action results into valid Plug.Conn responses. See Phoenix.Controller.action_fallback/1 for more details.","ref":"LightningWeb.FallbackController.html"},{"type":"module","title":"LightningWeb.FirstSetupLive.Superuser","doc":"Superuser setup liveview Allows the creation on the first user in the system. It has only one action: :show","ref":"LightningWeb.FirstSetupLive.Superuser.html"},{"type":"function","title":"LightningWeb.FirstSetupLive.Superuser.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.FirstSetupLive.Superuser.html#render/1"},{"type":"module","title":"LightningWeb.FormHelpers","doc":"Conveniences for building forms.","ref":"LightningWeb.FormHelpers.html"},{"type":"module","title":"LightningWeb.Gettext","doc":"A module providing Internationalization with a gettext-based API. By using Gettext , your module gains a set of macros for translations, for example: import LightningWeb.Gettext # Simple translation gettext ( "Here is the string to translate" ) # Plural translation ngettext ( "Here is the string to translate" , "Here are the strings to translate" , 3 ) # Domain-based translation dgettext ( "errors" , "Here is the error message to translate" ) See the Gettext Docs for detailed usage.","ref":"LightningWeb.Gettext.html"},{"type":"macro","title":"LightningWeb.Gettext.dgettext/3","doc":"Callback implementation for Gettext.Backend.dgettext/3 .","ref":"LightningWeb.Gettext.html#dgettext/3"},{"type":"macro","title":"LightningWeb.Gettext.dgettext_noop/2","doc":"Callback implementation for Gettext.Backend.dgettext_noop/2 .","ref":"LightningWeb.Gettext.html#dgettext_noop/2"},{"type":"macro","title":"LightningWeb.Gettext.dngettext/5","doc":"Callback implementation for Gettext.Backend.dngettext/5 .","ref":"LightningWeb.Gettext.html#dngettext/5"},{"type":"macro","title":"LightningWeb.Gettext.dngettext_noop/3","doc":"Callback implementation for Gettext.Backend.dngettext_noop/3 .","ref":"LightningWeb.Gettext.html#dngettext_noop/3"},{"type":"macro","title":"LightningWeb.Gettext.dpgettext/4","doc":"Callback implementation for Gettext.Backend.dpgettext/4 .","ref":"LightningWeb.Gettext.html#dpgettext/4"},{"type":"macro","title":"LightningWeb.Gettext.dpgettext_noop/3","doc":"","ref":"LightningWeb.Gettext.html#dpgettext_noop/3"},{"type":"macro","title":"LightningWeb.Gettext.dpngettext/6","doc":"Callback implementation for Gettext.Backend.dpngettext/6 .","ref":"LightningWeb.Gettext.html#dpngettext/6"},{"type":"macro","title":"LightningWeb.Gettext.dpngettext_noop/4","doc":"","ref":"LightningWeb.Gettext.html#dpngettext_noop/4"},{"type":"macro","title":"LightningWeb.Gettext.gettext/2","doc":"Callback implementation for Gettext.Backend.gettext/2 .","ref":"LightningWeb.Gettext.html#gettext/2"},{"type":"macro","title":"LightningWeb.Gettext.gettext_comment/1","doc":"Callback implementation for Gettext.Backend.gettext_comment/1 .","ref":"LightningWeb.Gettext.html#gettext_comment/1"},{"type":"macro","title":"LightningWeb.Gettext.gettext_noop/1","doc":"Callback implementation for Gettext.Backend.gettext_noop/1 .","ref":"LightningWeb.Gettext.html#gettext_noop/1"},{"type":"function","title":"LightningWeb.Gettext.handle_missing_bindings/2","doc":"Callback implementation for Gettext.Backend.handle_missing_bindings/2 .","ref":"LightningWeb.Gettext.html#handle_missing_bindings/2"},{"type":"function","title":"LightningWeb.Gettext.handle_missing_plural_translation/7","doc":"Callback implementation for Gettext.Backend.handle_missing_plural_translation/7 .","ref":"LightningWeb.Gettext.html#handle_missing_plural_translation/7"},{"type":"function","title":"LightningWeb.Gettext.handle_missing_translation/5","doc":"Callback implementation for Gettext.Backend.handle_missing_translation/5 .","ref":"LightningWeb.Gettext.html#handle_missing_translation/5"},{"type":"function","title":"LightningWeb.Gettext.lgettext/5","doc":"","ref":"LightningWeb.Gettext.html#lgettext/5"},{"type":"function","title":"LightningWeb.Gettext.lngettext/7","doc":"","ref":"LightningWeb.Gettext.html#lngettext/7"},{"type":"macro","title":"LightningWeb.Gettext.ngettext/4","doc":"Callback implementation for Gettext.Backend.ngettext/4 .","ref":"LightningWeb.Gettext.html#ngettext/4"},{"type":"macro","title":"LightningWeb.Gettext.ngettext_noop/2","doc":"Callback implementation for Gettext.Backend.ngettext_noop/2 .","ref":"LightningWeb.Gettext.html#ngettext_noop/2"},{"type":"macro","title":"LightningWeb.Gettext.pgettext/3","doc":"Callback implementation for Gettext.Backend.pgettext/3 .","ref":"LightningWeb.Gettext.html#pgettext/3"},{"type":"macro","title":"LightningWeb.Gettext.pgettext_noop/2","doc":"","ref":"LightningWeb.Gettext.html#pgettext_noop/2"},{"type":"macro","title":"LightningWeb.Gettext.pngettext/5","doc":"Callback implementation for Gettext.Backend.pngettext/5 .","ref":"LightningWeb.Gettext.html#pngettext/5"},{"type":"macro","title":"LightningWeb.Gettext.pngettext_noop/3","doc":"","ref":"LightningWeb.Gettext.html#pngettext_noop/3"},{"type":"module","title":"LightningWeb.HealthCheck","doc":"","ref":"LightningWeb.HealthCheck.html"},{"type":"function","title":"LightningWeb.HealthCheck.call/2","doc":"Callback implementation for Plug.call/2 .","ref":"LightningWeb.HealthCheck.html#call/2"},{"type":"function","title":"LightningWeb.HealthCheck.init/1","doc":"Callback implementation for Plug.init/1 .","ref":"LightningWeb.HealthCheck.html#init/1"},{"type":"module","title":"LightningWeb.Hooks","doc":"LiveView Hooks","ref":"LightningWeb.Hooks.html"},{"type":"function","title":"LightningWeb.Hooks.on_mount/4","doc":"Finds and assigns a project to the socket, if a user doesn't have access they are redirected and shown a 'No Access' screen via a :nav flash message. There is a fallthru function, when there is no project_id in the params - this is for liveviews that may or may not have a project_id depending on usage - like DashboardLive .","ref":"LightningWeb.Hooks.html#on_mount/4"},{"type":"module","title":"LightningWeb.InitAssigns","doc":"Ensures common assigns are applied to all LiveViews attaching this hook.","ref":"LightningWeb.InitAssigns.html"},{"type":"function","title":"LightningWeb.InitAssigns.on_mount/4","doc":"","ref":"LightningWeb.InitAssigns.html#on_mount/4"},{"type":"module","title":"LightningWeb.JobLive.AdaptorPicker","doc":"Component allowing selecting an adaptor and it's version","ref":"LightningWeb.JobLive.AdaptorPicker.html"},{"type":"function","title":"LightningWeb.JobLive.AdaptorPicker.display_name_for_adaptor/1","doc":"Converts standard adaptor names into "label","value" lists and returns non-standard names as merely "value"; both can be passed directly into a select option list.","ref":"LightningWeb.JobLive.AdaptorPicker.html#display_name_for_adaptor/1"},{"type":"function","title":"LightningWeb.JobLive.AdaptorPicker.get_adaptor_version_options/1","doc":"","ref":"LightningWeb.JobLive.AdaptorPicker.html#get_adaptor_version_options/1"},{"type":"function","title":"LightningWeb.JobLive.AdaptorPicker.render/1","doc":"Attributes form ( :map ) (required) on_change ( :any ) - Defaults to nil . disabled ( :boolean ) - Defaults to false .","ref":"LightningWeb.JobLive.AdaptorPicker.html#render/1"},{"type":"module","title":"LightningWeb.JobLive.CredentialPicker","doc":"Component allowing selecting a credential or creating a new one via a modal.","ref":"LightningWeb.JobLive.CredentialPicker.html"},{"type":"function","title":"LightningWeb.JobLive.CredentialPicker.render/1","doc":"Attributes form ( :map ) (required) disabled ( :boolean ) - Defaults to false . credentials ( :list ) (required) on_change ( :any ) - Defaults to nil .","ref":"LightningWeb.JobLive.CredentialPicker.html#render/1"},{"type":"module","title":"LightningWeb.JobLive.CronSetupComponent","doc":"A live component for managing cron setup in a form. The CronSetupComponent provides an interactive form for configuring cron settings. It includes fields for specifying the frequency, minute, hour, weekday, monthday, and cron expression. Usage Include the CronSetupComponent in your live view or template. Pass the necessary assigns to the component, such as form , on_change , and disabled . Handle the cron_expression_change event to capture changes in the form inputs. Use the updated cron_expression in your application logic.","ref":"LightningWeb.JobLive.CronSetupComponent.html"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.build_cron_expression/2","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#build_cron_expression/2"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.frequency_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#frequency_field/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.get_cron_data/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#get_cron_data/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.hour_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#hour_field/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.minute_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#minute_field/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.monthday_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#monthday_field/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.render/1","doc":"Attributes id ( :string ) (required) form ( :map ) (required) on_change ( :any ) (required) disabled ( :boolean ) (required)","ref":"LightningWeb.JobLive.CronSetupComponent.html#render/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.time_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#time_field/1"},{"type":"function","title":"LightningWeb.JobLive.CronSetupComponent.weekday_field/1","doc":"","ref":"LightningWeb.JobLive.CronSetupComponent.html#weekday_field/1"},{"type":"module","title":"LightningWeb.JobLive.JobBuilder","doc":"Job Builder Panel","ref":"LightningWeb.JobLive.JobBuilder.html"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.delete_title/2","doc":"","ref":"LightningWeb.JobLive.JobBuilder.html#delete_title/2"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.follow_run/2","doc":"","ref":"LightningWeb.JobLive.JobBuilder.html#follow_run/2"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.render/1","doc":"Attributes return_to ( :string ) (required) params ( :map ) - Defaults to %{} . can_edit_job ( :boolean ) (required) can_run_job ( :boolean ) (required)","ref":"LightningWeb.JobLive.JobBuilder.html#render/1"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.send_adaptor/2","doc":"","ref":"LightningWeb.JobLive.JobBuilder.html#send_adaptor/2"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.send_credential/2","doc":"","ref":"LightningWeb.JobLive.JobBuilder.html#send_credential/2"},{"type":"function","title":"LightningWeb.JobLive.JobBuilder.update_cron_expression/2","doc":"","ref":"LightningWeb.JobLive.JobBuilder.html#update_cron_expression/2"},{"type":"module","title":"LightningWeb.JobLive.JobBuilderComponents","doc":"","ref":"LightningWeb.JobLive.JobBuilderComponents.html"},{"type":"function","title":"LightningWeb.JobLive.JobBuilderComponents.job_editor_component/1","doc":"Attributes adaptor ( :string ) (required) disabled ( :boolean ) - Defaults to false . source ( :string ) (required) change_event ( :string ) - Defaults to "job_body_changed" . Global attributes are accepted.","ref":"LightningWeb.JobLive.JobBuilderComponents.html#job_editor_component/1"},{"type":"function","title":"LightningWeb.JobLive.JobBuilderComponents.trigger_picker/1","doc":"Attributes form ( :map ) (required) upstream_jobs ( :list ) (required) on_cron_change ( :any ) (required) disabled ( :boolean ) - Defaults to true .","ref":"LightningWeb.JobLive.JobBuilderComponents.html#trigger_picker/1"},{"type":"function","title":"LightningWeb.JobLive.JobBuilderComponents.when_invalid/1","doc":"Attributes changeset ( :map ) (required) field ( :atom ) (required) Slots inner_block (required)","ref":"LightningWeb.JobLive.JobBuilderComponents.html#when_invalid/1"},{"type":"module","title":"LightningWeb.JobLive.ManualRunComponent","doc":"","ref":"LightningWeb.JobLive.ManualRunComponent.html"},{"type":"function","title":"LightningWeb.JobLive.ManualRunComponent.render/1","doc":"Attributes job ( :map ) (required) on_run ( :any ) (required) user ( :map ) (required) selected_dataclip_id ( :string ) (required)","ref":"LightningWeb.JobLive.ManualRunComponent.html#render/1"},{"type":"module","title":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder","doc":"","ref":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder.html"},{"type":"function","title":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder.changeset/2","doc":"","ref":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder.html#changeset/2"},{"type":"module","title":"LightningWeb.LiveHelpers","doc":"General purpose LiveView helper functions","ref":"LightningWeb.LiveHelpers.html"},{"type":"function","title":"LightningWeb.LiveHelpers.display_short_uuid/1","doc":"","ref":"LightningWeb.LiveHelpers.html#display_short_uuid/1"},{"type":"function","title":"LightningWeb.LiveHelpers.fade_in/1","doc":"","ref":"LightningWeb.LiveHelpers.html#fade_in/1"},{"type":"function","title":"LightningWeb.LiveHelpers.fade_out/1","doc":"","ref":"LightningWeb.LiveHelpers.html#fade_out/1"},{"type":"function","title":"LightningWeb.LiveHelpers.live_error_block/1","doc":"","ref":"LightningWeb.LiveHelpers.html#live_error_block/1"},{"type":"function","title":"LightningWeb.LiveHelpers.live_info_block/1","doc":"","ref":"LightningWeb.LiveHelpers.html#live_info_block/1"},{"type":"function","title":"LightningWeb.LiveHelpers.live_nav_block/1","doc":"","ref":"LightningWeb.LiveHelpers.html#live_nav_block/1"},{"type":"module","title":"LightningWeb.ModalPortal","doc":"Component for rendering content inside layout without full DOM patch.","ref":"LightningWeb.ModalPortal.html"},{"type":"function","title":"LightningWeb.ModalPortal.close_modal/0","doc":"","ref":"LightningWeb.ModalPortal.html#close_modal/0"},{"type":"function","title":"LightningWeb.ModalPortal.handle_event/3","doc":"Callback implementation for Phoenix.LiveComponent.handle_event/3 .","ref":"LightningWeb.ModalPortal.html#handle_event/3"},{"type":"function","title":"LightningWeb.ModalPortal.on_hide/2","doc":"","ref":"LightningWeb.ModalPortal.html#on_hide/2"},{"type":"function","title":"LightningWeb.ModalPortal.on_show/2","doc":"","ref":"LightningWeb.ModalPortal.html#on_show/2"},{"type":"function","title":"LightningWeb.ModalPortal.open_modal/2","doc":"","ref":"LightningWeb.ModalPortal.html#open_modal/2"},{"type":"function","title":"LightningWeb.ModalPortal.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.ModalPortal.html#render/1"},{"type":"function","title":"LightningWeb.ModalPortal.update/2","doc":"Callback implementation for Phoenix.LiveComponent.update/2 .","ref":"LightningWeb.ModalPortal.html#update/2"},{"type":"module","title":"LightningWeb.OauthCredentialHelper","doc":"A set of helper functions to encodes state and coordinate OAuth callbacks back to a LiveView component.","ref":"LightningWeb.OauthCredentialHelper.html"},{"type":"function","title":"LightningWeb.OauthCredentialHelper.broadcast/2","doc":"","ref":"LightningWeb.OauthCredentialHelper.html#broadcast/2"},{"type":"function","title":"LightningWeb.OauthCredentialHelper.broadcast_forward/3","doc":"Broadcast a message specifically for forwarding a message to a component. It expects a subscription_id , the module of the component and opts being a keyword list containing an :id key of the specific component. See: Phoenix.LiveView.send_update/3 for more info. A corresponding LiveView (that is subscribed) is expected to have a matching handle_info/2 that looks like this: def handle_info ( { :forward , mod , opts } , socket ) do send_update ( mod , opts ) { :noreply , socket } end","ref":"LightningWeb.OauthCredentialHelper.html#broadcast_forward/3"},{"type":"function","title":"LightningWeb.OauthCredentialHelper.build_state/3","doc":"Encode and encrypt the callback data which will be sent so a provider as the state key in the request. The values are: subscription_id The same ID used to subscribe. The component module The LiveView component that is going to receive update The component id The ID of the component","ref":"LightningWeb.OauthCredentialHelper.html#build_state/3"},{"type":"function","title":"LightningWeb.OauthCredentialHelper.decode_state/1","doc":"","ref":"LightningWeb.OauthCredentialHelper.html#decode_state/1"},{"type":"function","title":"LightningWeb.OauthCredentialHelper.subscribe/1","doc":"Subscribe to the oauth_credential topic. It expects the a unique ID for the topic, usually the LiveView's socket.id .","ref":"LightningWeb.OauthCredentialHelper.html#subscribe/1"},{"type":"module","title":"LightningWeb.OidcController","doc":"","ref":"LightningWeb.OidcController.html"},{"type":"function","title":"LightningWeb.OidcController.new/2","doc":"Once the user has completed the authorization flow from above, they are returned here, and the authorization code is used to log them in.","ref":"LightningWeb.OidcController.html#new/2"},{"type":"function","title":"LightningWeb.OidcController.show/2","doc":"Given a known provider, redirect them to the authorize url on the provider","ref":"LightningWeb.OidcController.html#show/2"},{"type":"module","title":"LightningWeb.PageView","doc":"","ref":"LightningWeb.PageView.html"},{"type":"function","title":"LightningWeb.PageView.__resource__/0","doc":"The resource name, as an atom, for this view","ref":"LightningWeb.PageView.html#__resource__/0"},{"type":"function","title":"LightningWeb.PageView.render/2","doc":"Renders the given template locally.","ref":"LightningWeb.PageView.html#render/2"},{"type":"function","title":"LightningWeb.PageView.template_not_found/2","doc":"Callback invoked when no template is found. By default it raises but can be customized to render a particular template.","ref":"LightningWeb.PageView.html#template_not_found/2"},{"type":"module","title":"LightningWeb.Pagination","doc":"Pagination Components This has been extracted and adapted from scrivener_html . See: https://github.com/mgwidmann/scrivener_html","ref":"LightningWeb.Pagination.html"},{"type":"function","title":"LightningWeb.Pagination.page_link/1","doc":"","ref":"LightningWeb.Pagination.html#page_link/1"},{"type":"function","title":"LightningWeb.Pagination.pagination_bar/1","doc":"","ref":"LightningWeb.Pagination.html#pagination_bar/1"},{"type":"function","title":"LightningWeb.Pagination.raw_pagination_links/2","doc":"Returns the raw data in order to generate the proper HTML for pagination links. Data is returned in a {text, page_number} format where text is intended to be the text of the link and page_number is the page it should go to. Defaults are already supplied and they are as follows: [ distance : 5 , next : :next , previous : :previous , first : true , last : true , ellipsis : :ellipsis ] distance must be a positive non-zero integer or an exception is raised. next and previous should be strings but can be anything you want as long as it is truthy, falsey values will remove them from the output. first and last are only booleans, and they just include/remove their respective link from output. An example of the data returned: iex> Scrivener.HTML . raw_pagination_links ( %{ total_pages : 10 , page_number : 5 } ) [ { "<<" , 4 } , { 1 , 1 } , { 2 , 2 } , { 3 , 3 } , { 4 , 4 } , { 5 , 5 } , { 6 , 6 } , { 7 , 7 } , { 8 , 8 } , { 9 , 9 } , { 10 , 10 } , { ">>" , 6 } ] iex> Scrivener.HTML . raw_pagination_links ( %{ total_pages : 20 , page_number : 10 } , first : [ "←" ] , last : [ "→" ] ) [ { "<<" , 9 } , { [ "←" ] , 1 } , { :ellipsis , { :safe , "…" } } , { 5 , 5 } , { 6 , 6 } , { 7 , 7 } , { 8 , 8 } , { 9 , 9 } , { 10 , 10 } , { 11 , 11 } , { 12 , 12 } , { 13 , 13 } , { 14 , 14 } , { 15 , 15 } , { :ellipsis , { :safe , "…" } } , { [ "→" ] , 20 } , { ">>" , 11 } ] Simply loop and pattern match over each item and transform it to your custom HTML.","ref":"LightningWeb.Pagination.html#raw_pagination_links/2"},{"type":"module","title":"LightningWeb.Plugs.FirstSetup","doc":"Plug to redirect HTTP requests to /first_setup if there are no superusers in the system yet.","ref":"LightningWeb.Plugs.FirstSetup.html"},{"type":"module","title":"LightningWeb.ProfileLive.Edit","doc":"LiveView for user profile page.","ref":"LightningWeb.ProfileLive.Edit.html"},{"type":"function","title":"LightningWeb.ProfileLive.Edit.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.ProfileLive.Edit.html#render/1"},{"type":"module","title":"LightningWeb.ProfileLive.FormComponent","doc":"Form component update profile email and password","ref":"LightningWeb.ProfileLive.FormComponent.html"},{"type":"function","title":"LightningWeb.ProfileLive.FormComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.ProfileLive.FormComponent.html#render/1"},{"type":"module","title":"LightningWeb.ProfileLive.MfaComponent","doc":"Component to enable MFA on a User's account","ref":"LightningWeb.ProfileLive.MfaComponent.html"},{"type":"function","title":"LightningWeb.ProfileLive.MfaComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.ProfileLive.MfaComponent.html#render/1"},{"type":"module","title":"LightningWeb.ProjectLive.FormComponent","doc":"Form Component for working with a single Job A Job's adaptor field is a combination of the module name and the version. It's formatted as an NPM style string. The form allows the user to select a module by name and then it's version, while the version dropdown itself references adaptor directly. Meaning the adaptor_name dropdown and assigns value is not persisted.","ref":"LightningWeb.ProjectLive.FormComponent.html"},{"type":"function","title":"LightningWeb.ProjectLive.FormComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.ProjectLive.FormComponent.html#render/1"},{"type":"module","title":"LightningWeb.ProjectLive.Index","doc":"LiveView for listing and managing Projects","ref":"LightningWeb.ProjectLive.Index.html"},{"type":"function","title":"LightningWeb.ProjectLive.Index.delete_action/1","doc":"","ref":"LightningWeb.ProjectLive.Index.html#delete_action/1"},{"type":"function","title":"LightningWeb.ProjectLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.ProjectLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.ProjectLive.MFARequired","doc":"Liveview for project access denied error messages","ref":"LightningWeb.ProjectLive.MFARequired.html"},{"type":"function","title":"LightningWeb.ProjectLive.MFARequired.on_mount/4","doc":"","ref":"LightningWeb.ProjectLive.MFARequired.html#on_mount/4"},{"type":"function","title":"LightningWeb.ProjectLive.MFARequired.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.ProjectLive.MFARequired.html#render/1"},{"type":"module","title":"LightningWeb.ProjectLive.Settings","doc":"Index Liveview for Runs","ref":"LightningWeb.ProjectLive.Settings.html"},{"type":"function","title":"LightningWeb.ProjectLive.Settings.digest/1","doc":"","ref":"LightningWeb.ProjectLive.Settings.html#digest/1"},{"type":"function","title":"LightningWeb.ProjectLive.Settings.failure_alert/1","doc":"","ref":"LightningWeb.ProjectLive.Settings.html#failure_alert/1"},{"type":"function","title":"LightningWeb.ProjectLive.Settings.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.ProjectLive.Settings.html#render/1"},{"type":"function","title":"LightningWeb.ProjectLive.Settings.role/1","doc":"","ref":"LightningWeb.ProjectLive.Settings.html#role/1"},{"type":"function","title":"LightningWeb.ProjectLive.Settings.user/1","doc":"","ref":"LightningWeb.ProjectLive.Settings.html#user/1"},{"type":"module","title":"LightningWeb.RouteHelpers","doc":"Convenience functions for generating paths.","ref":"LightningWeb.RouteHelpers.html"},{"type":"function","title":"LightningWeb.RouteHelpers.oidc_callback_url/0","doc":"","ref":"LightningWeb.RouteHelpers.html#oidc_callback_url/0"},{"type":"function","title":"LightningWeb.RouteHelpers.show_run_url/2","doc":"","ref":"LightningWeb.RouteHelpers.html#show_run_url/2"},{"type":"module","title":"LightningWeb.Router","doc":"","ref":"LightningWeb.Router.html"},{"type":"function","title":"LightningWeb.Router.api/2","doc":"","ref":"LightningWeb.Router.html#api/2"},{"type":"function","title":"LightningWeb.Router.browser/2","doc":"","ref":"LightningWeb.Router.html#browser/2"},{"type":"function","title":"LightningWeb.Router.call/2","doc":"Callback invoked by Plug on every request.","ref":"LightningWeb.Router.html#call/2"},{"type":"function","title":"LightningWeb.Router.init/1","doc":"Callback required by Plug that initializes the router for serving web requests.","ref":"LightningWeb.Router.html#init/1"},{"type":"function","title":"LightningWeb.Router.storybook_assets/2","doc":"","ref":"LightningWeb.Router.html#storybook_assets/2"},{"type":"function","title":"LightningWeb.Router.storybook_browser/2","doc":"","ref":"LightningWeb.Router.html#storybook_browser/2"},{"type":"module","title":"LightningWeb.RunLive.Index","doc":"Index Liveview for Runs","ref":"LightningWeb.RunLive.Index.html"},{"type":"function","title":"LightningWeb.RunLive.Index.checked/2","doc":"","ref":"LightningWeb.RunLive.Index.html#checked/2"},{"type":"function","title":"LightningWeb.RunLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.RunLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.RunLive.RerunJobComponent","doc":"Rerun job component","ref":"LightningWeb.RunLive.RerunJobComponent.html"},{"type":"function","title":"LightningWeb.RunLive.RerunJobComponent.handle_event/3","doc":"Callback implementation for Phoenix.LiveComponent.handle_event/3 .","ref":"LightningWeb.RunLive.RerunJobComponent.html#handle_event/3"},{"type":"function","title":"LightningWeb.RunLive.RerunJobComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.RunLive.RerunJobComponent.html#render/1"},{"type":"function","title":"LightningWeb.RunLive.RerunJobComponent.update/2","doc":"Callback implementation for Phoenix.LiveComponent.update/2 .","ref":"LightningWeb.RunLive.RerunJobComponent.html#update/2"},{"type":"module","title":"LightningWeb.RunLive.RunViewerLive","doc":"","ref":"LightningWeb.RunLive.RunViewerLive.html"},{"type":"function","title":"LightningWeb.RunLive.RunViewerLive.handle_info/2","doc":"Reload the run when any update messages arrive.","ref":"LightningWeb.RunLive.RunViewerLive.html#handle_info/2"},{"type":"module","title":"LightningWeb.RunLive.Show","doc":"Show page for individual runs.","ref":"LightningWeb.RunLive.Show.html"},{"type":"function","title":"LightningWeb.RunLive.Show.apply_action/3","doc":"","ref":"LightningWeb.RunLive.Show.html#apply_action/3"},{"type":"module","title":"LightningWeb.RunLive.WorkOrderComponent","doc":"Workorder component","ref":"LightningWeb.RunLive.WorkOrderComponent.html"},{"type":"function","title":"LightningWeb.RunLive.WorkOrderComponent.render/1","doc":"Attributes show_details ( :boolean ) - Defaults to false . entry_selected ( :boolean ) - Defaults to false .","ref":"LightningWeb.RunLive.WorkOrderComponent.html#render/1"},{"type":"module","title":"LightningWeb.Telemetry","doc":"Assorted metrics to collect during runtime. See https://hexdocs.pm/phoenix/telemetry.html","ref":"LightningWeb.Telemetry.html"},{"type":"function","title":"LightningWeb.Telemetry.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"LightningWeb.Telemetry.html#child_spec/1"},{"type":"function","title":"LightningWeb.Telemetry.metrics/0","doc":"","ref":"LightningWeb.Telemetry.html#metrics/0"},{"type":"function","title":"LightningWeb.Telemetry.start_link/1","doc":"","ref":"LightningWeb.Telemetry.html#start_link/1"},{"type":"module","title":"LightningWeb.TokensLive.Index","doc":"LiveView for listing and managing tokens","ref":"LightningWeb.TokensLive.Index.html"},{"type":"function","title":"LightningWeb.TokensLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.TokensLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.UserAuth","doc":"The UserAuth controller.","ref":"LightningWeb.UserAuth.html"},{"type":"function","title":"LightningWeb.UserAuth.authenticate_bearer/2","doc":"","ref":"LightningWeb.UserAuth.html#authenticate_bearer/2"},{"type":"function","title":"LightningWeb.UserAuth.fetch_current_user/2","doc":"Authenticates the user by looking into the session and remember me token.","ref":"LightningWeb.UserAuth.html#fetch_current_user/2"},{"type":"function","title":"LightningWeb.UserAuth.log_in_user/2","doc":"Logs the user in by creating a new session token.","ref":"LightningWeb.UserAuth.html#log_in_user/2"},{"type":"function","title":"LightningWeb.UserAuth.log_out_user/1","doc":"Logs the user out. It clears all session data for safety. See renew_session.","ref":"LightningWeb.UserAuth.html#log_out_user/1"},{"type":"function","title":"LightningWeb.UserAuth.mark_totp_pending/1","doc":"","ref":"LightningWeb.UserAuth.html#mark_totp_pending/1"},{"type":"function","title":"LightningWeb.UserAuth.new_session/2","doc":"Assigns the token to a new session. It renews the session ID and clears the whole session to avoid fixation attacks. See the renew_session function to customize this behaviour. It also sets a :live_socket_id key in the session, so LiveView sessions are identified and automatically disconnected on log out. The line can be safely removed if you are not using LiveView.","ref":"LightningWeb.UserAuth.html#new_session/2"},{"type":"function","title":"LightningWeb.UserAuth.redirect_if_user_is_authenticated/2","doc":"Used for routes that require the user to not be authenticated.","ref":"LightningWeb.UserAuth.html#redirect_if_user_is_authenticated/2"},{"type":"function","title":"LightningWeb.UserAuth.redirect_with_return_to/2","doc":"Returns to or redirects to the dashboard and potentially set remember_me token.","ref":"LightningWeb.UserAuth.html#redirect_with_return_to/2"},{"type":"function","title":"LightningWeb.UserAuth.require_authenticated_user/2","doc":"Used for routes that require the user to be authenticated. If you want to enforce the user email is confirmed before they use the application at all, here would be a good place.","ref":"LightningWeb.UserAuth.html#require_authenticated_user/2"},{"type":"function","title":"LightningWeb.UserAuth.totp_pending?/1","doc":"","ref":"LightningWeb.UserAuth.html#totp_pending?/1"},{"type":"function","title":"LightningWeb.UserAuth.totp_validated/1","doc":"","ref":"LightningWeb.UserAuth.html#totp_validated/1"},{"type":"module","title":"LightningWeb.UserConfirmationController","doc":"","ref":"LightningWeb.UserConfirmationController.html"},{"type":"function","title":"LightningWeb.UserConfirmationController.confirm_email/2","doc":"","ref":"LightningWeb.UserConfirmationController.html#confirm_email/2"},{"type":"function","title":"LightningWeb.UserConfirmationController.create/2","doc":"","ref":"LightningWeb.UserConfirmationController.html#create/2"},{"type":"function","title":"LightningWeb.UserConfirmationController.edit/2","doc":"","ref":"LightningWeb.UserConfirmationController.html#edit/2"},{"type":"function","title":"LightningWeb.UserConfirmationController.new/2","doc":"","ref":"LightningWeb.UserConfirmationController.html#new/2"},{"type":"function","title":"LightningWeb.UserConfirmationController.update/2","doc":"","ref":"LightningWeb.UserConfirmationController.html#update/2"},{"type":"module","title":"LightningWeb.UserLive.Edit","doc":"LiveView for editing a single job, which inturn uses LightningWeb.JobLive.BigFormComponent for common functionality.","ref":"LightningWeb.UserLive.Edit.html"},{"type":"function","title":"LightningWeb.UserLive.Edit.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.UserLive.Edit.html#render/1"},{"type":"module","title":"LightningWeb.UserLive.FormComponent","doc":"Form component for creating and editing users","ref":"LightningWeb.UserLive.FormComponent.html"},{"type":"function","title":"LightningWeb.UserLive.FormComponent.render/1","doc":"Callback implementation for Phoenix.LiveComponent.render/1 .","ref":"LightningWeb.UserLive.FormComponent.html#render/1"},{"type":"module","title":"LightningWeb.UserLive.Index","doc":"Index page for listing users","ref":"LightningWeb.UserLive.Index.html"},{"type":"function","title":"LightningWeb.UserLive.Index.delete_action/1","doc":"","ref":"LightningWeb.UserLive.Index.html#delete_action/1"},{"type":"function","title":"LightningWeb.UserLive.Index.render/1","doc":"Callback implementation for Phoenix.LiveView.render/1 .","ref":"LightningWeb.UserLive.Index.html#render/1"},{"type":"module","title":"LightningWeb.UserRegistrationController","doc":"","ref":"LightningWeb.UserRegistrationController.html"},{"type":"function","title":"LightningWeb.UserRegistrationController.create/2","doc":"","ref":"LightningWeb.UserRegistrationController.html#create/2"},{"type":"function","title":"LightningWeb.UserRegistrationController.new/2","doc":"","ref":"LightningWeb.UserRegistrationController.html#new/2"},{"type":"module","title":"LightningWeb.UserResetPasswordController","doc":"","ref":"LightningWeb.UserResetPasswordController.html"},{"type":"function","title":"LightningWeb.UserResetPasswordController.create/2","doc":"","ref":"LightningWeb.UserResetPasswordController.html#create/2"},{"type":"function","title":"LightningWeb.UserResetPasswordController.edit/2","doc":"","ref":"LightningWeb.UserResetPasswordController.html#edit/2"},{"type":"function","title":"LightningWeb.UserResetPasswordController.new/2","doc":"","ref":"LightningWeb.UserResetPasswordController.html#new/2"},{"type":"function","title":"LightningWeb.UserResetPasswordController.update/2","doc":"","ref":"LightningWeb.UserResetPasswordController.html#update/2"},{"type":"module","title":"LightningWeb.UserSessionController","doc":"","ref":"LightningWeb.UserSessionController.html"},{"type":"function","title":"LightningWeb.UserSessionController.auth_handler_url/0","doc":"","ref":"LightningWeb.UserSessionController.html#auth_handler_url/0"},{"type":"function","title":"LightningWeb.UserSessionController.create/2","doc":"","ref":"LightningWeb.UserSessionController.html#create/2"},{"type":"function","title":"LightningWeb.UserSessionController.delete/2","doc":"","ref":"LightningWeb.UserSessionController.html#delete/2"},{"type":"function","title":"LightningWeb.UserSessionController.exchange_token/2","doc":"","ref":"LightningWeb.UserSessionController.html#exchange_token/2"},{"type":"function","title":"LightningWeb.UserSessionController.new/2","doc":"","ref":"LightningWeb.UserSessionController.html#new/2"},{"type":"module","title":"LightningWeb.UserTOTPController","doc":"","ref":"LightningWeb.UserTOTPController.html"},{"type":"function","title":"LightningWeb.UserTOTPController.create/2","doc":"","ref":"LightningWeb.UserTOTPController.html#create/2"},{"type":"function","title":"LightningWeb.UserTOTPController.new/2","doc":"","ref":"LightningWeb.UserTOTPController.html#new/2"},{"type":"module","title":"LightningWeb.WebhooksController","doc":"","ref":"LightningWeb.WebhooksController.html"},{"type":"function","title":"LightningWeb.WebhooksController.create/2","doc":"","ref":"LightningWeb.WebhooksController.html#create/2"},{"type":"module","title":"LightningWeb.WorkflowLive.EditorPane","doc":"","ref":"LightningWeb.WorkflowLive.EditorPane.html"},{"type":"function","title":"LightningWeb.WorkflowLive.EditorPane.render/1","doc":"Attributes id ( :string ) (required) disabled ( :boolean ) - Defaults to false . class ( :string ) - Defaults to "" . on_change ( :any ) (required) adaptor ( :string ) (required) source ( :string ) (required) job_id ( :string ) (required)","ref":"LightningWeb.WorkflowLive.EditorPane.html#render/1"},{"type":"module","title":"LightningWeb.WorkflowLive.JobView","doc":"","ref":"LightningWeb.WorkflowLive.JobView.html"},{"type":"function","title":"LightningWeb.WorkflowLive.JobView.container/1","doc":"Attributes id ( :string ) (required) Slots top column - Accepts attributes: class ( :string ) - Extra CSS classes for the column. bottom","ref":"LightningWeb.WorkflowLive.JobView.html#container/1"},{"type":"function","title":"LightningWeb.WorkflowLive.JobView.input_pane/1","doc":"Attributes job ( :map ) (required) user ( :map ) (required) project ( :map ) (required) on_run ( :any ) (required) - Callback to run a job manually. can_run_job ( :boolean ) - Defaults to true .","ref":"LightningWeb.WorkflowLive.JobView.html#input_pane/1"},{"type":"function","title":"LightningWeb.WorkflowLive.JobView.job_edit_view/1","doc":"Attributes job ( :map ) (required) form ( :map ) (required) - A form built from a job. current_user ( :map ) (required) project ( :map ) (required) close_url ( :any ) (required) socket ( :any ) (required) on_run ( :any ) (required) - Callback to run a job manually. follow_run_id ( :any ) - Defaults to nil . Slots footer","ref":"LightningWeb.WorkflowLive.JobView.html#job_edit_view/1"},{"type":"module","title":"LightningWeb.WorkflowNewLive.WorkflowParams","doc":"Various function for reconciling changes to a workflow params map. The front end editor uses JSON patches to represent changes to the workflow.","ref":"LightningWeb.WorkflowNewLive.WorkflowParams.html"},{"type":"function","title":"LightningWeb.WorkflowNewLive.WorkflowParams.apply_form_params/2","doc":"Produce a new set of params by applying the given form params to the current params.","ref":"LightningWeb.WorkflowNewLive.WorkflowParams.html#apply_form_params/2"},{"type":"function","title":"LightningWeb.WorkflowNewLive.WorkflowParams.apply_patches/2","doc":"Produce a new set of params by applying the given patches to the current parms","ref":"LightningWeb.WorkflowNewLive.WorkflowParams.html#apply_patches/2"},{"type":"function","title":"LightningWeb.WorkflowNewLive.WorkflowParams.to_map/1","doc":"Convert a changeset to a serializable map of workflow params, suitable for sending to the front end editor. It uses Lightning.Helpers.json_safe/1 to ensure that the map is safe to serialize to JSON. This is necessary because the underlying model may contain atom values.","ref":"LightningWeb.WorkflowNewLive.WorkflowParams.html#to_map/1"},{"type":"function","title":"LightningWeb.WorkflowNewLive.WorkflowParams.to_patches/2","doc":"Produce a set of patches that represent the difference between the initial params and the target params. This usually is used to produce a set of patches that represent the changes introduced by a changeset.","ref":"LightningWeb.WorkflowNewLive.WorkflowParams.html#to_patches/2"},{"type":"task","title":"Mix.Tasks.Lightning.GenEncryptionKey","doc":"Helper to generate a unique encryption key for Vault","ref":"Mix.Tasks.Lightning.GenEncryptionKey.html"},{"type":"task","title":"Mix.Tasks.Lightning.InstallRuntime","doc":"Installs the following NodeJS packages: core language-common","ref":"Mix.Tasks.Lightning.InstallRuntime.html"},{"type":"function","title":"Mix.Tasks.Lightning.InstallRuntime.packages/0","doc":"","ref":"Mix.Tasks.Lightning.InstallRuntime.html#packages/0"},{"type":"function","title":"Mix.Tasks.Lightning.InstallRuntime.run/1","doc":"Callback implementation for Mix.Task.run/1 .","ref":"Mix.Tasks.Lightning.InstallRuntime.html#run/1"},{"type":"task","title":"Mix.Tasks.Lightning.InstallSchemas","doc":"Install the credential json schemas Use --exclude language-package1, language-package2 to exclude specific packages","ref":"Mix.Tasks.Lightning.InstallSchemas.html"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.delete/3","doc":"Issues a DELETE request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#delete/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.delete!/3","doc":"Issues a DELETE request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#delete!/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.fetch_schemas/2","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#fetch_schemas/2"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.get/3","doc":"Issues a GET request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#get/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.get!/3","doc":"Issues a GET request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#get!/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.head/3","doc":"Issues a HEAD request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#head/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.head!/3","doc":"Issues a HEAD request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#head!/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.options/3","doc":"Issues an OPTIONS request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#options/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.options!/3","doc":"Issues a OPTIONS request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#options!/3"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.parse_excluded/1","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#parse_excluded/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.patch/4","doc":"Issues a PATCH request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#patch/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.patch!/4","doc":"Issues a PATCH request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#patch!/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.persist_schema/2","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#persist_schema/2"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.post/4","doc":"Issues a POST request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#post/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.post!/4","doc":"Issues a POST request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#post!/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_headers/1","doc":"Callback implementation for HTTPoison.Base.process_headers/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_headers/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_request_body/1","doc":"Callback implementation for HTTPoison.Base.process_request_body/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_request_body/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_request_headers/1","doc":"Callback implementation for HTTPoison.Base.process_request_headers/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_request_headers/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_request_options/1","doc":"Callback implementation for HTTPoison.Base.process_request_options/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_request_options/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_request_params/1","doc":"Callback implementation for HTTPoison.Base.process_request_params/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_request_params/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_request_url/1","doc":"Callback implementation for HTTPoison.Base.process_request_url/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_request_url/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_response/1","doc":"Callback implementation for HTTPoison.Base.process_response/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_response/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_response_body/1","doc":"Callback implementation for HTTPoison.Base.process_response_body/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_response_body/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_response_chunk/1","doc":"Callback implementation for HTTPoison.Base.process_response_chunk/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_response_chunk/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_response_headers/1","doc":"Callback implementation for HTTPoison.Base.process_response_headers/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_response_headers/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_response_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_response_status_code/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_response_status_code/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_status_code/1","doc":"Callback implementation for HTTPoison.Base.process_status_code/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_status_code/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.process_url/1","doc":"Callback implementation for HTTPoison.Base.process_url/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#process_url/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.put/4","doc":"Issues a PUT request to the given url. Returns {:ok, response} if the request is successful, {:error, reason} otherwise. See request/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#put/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.put!/4","doc":"Issues a PUT request to the given url, raising an exception in case of failure. If the request does not fail, the response is returned. See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#put!/4"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.request/1","doc":"Issues an HTTP request using a Request struct. This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request = % HTTPoison.Request { method : :post , url : "https://my.website.com" , body : "{ \\" foo \\" : 3}" , headers : [ { "Accept" , "application/json" } ] } request ( request )","ref":"Mix.Tasks.Lightning.InstallSchemas.html#request/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.request/5","doc":"Issues an HTTP request with the given method to the given url. This function is usually used indirectly by get/3 , post/4 , put/4 , etc Args: method - HTTP method as an atom ( :get , :head , :post , :put , :delete , etc.) url - target url as a binary string or char list body - request body. See more below headers - HTTP headers as an orddict (e.g., [{"Accept", "application/json"}] ) options - Keyword list of options Body: see type HTTPoison.Request Options: see type HTTPoison.Request This function returns {:ok, response} , {:ok, async_response} , or {:ok, maybe_redirect} if the request is successful, {:error, reason} otherwise. Redirect handling If the option :follow_redirect is given, HTTP redirects are automatically follow if the method is set to :get or :head and the response's status_code is 301 , 302 or 307 . If the method is set to :post , then the only status_code that get's automatically followed is 303 . If any other method or status_code is returned, then this function returns a returns a {:ok, %HTTPoison.MaybeRedirect{}} containing the redirect_url for you to re-request with the method set to :get . Examples request ( :post , "https://my.website.com" , "{ \\" foo \\" : 3}" , [ { "Accept" , "application/json" } ] )","ref":"Mix.Tasks.Lightning.InstallSchemas.html#request/5"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.request!/5","doc":"Issues an HTTP request with the given method to the given url, raising an exception in case of failure. request!/5 works exactly like request/5 but it returns just the response in case of a successful request, raising an exception in case the request fails.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#request!/5"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.run/1","doc":"Callback implementation for Mix.Task.run/1 .","ref":"Mix.Tasks.Lightning.InstallSchemas.html#run/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.start/0","doc":"Starts HTTPoison and its dependencies.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#start/0"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.stream_next/1","doc":"Requests the next message to be streamed for a given HTTPoison.AsyncResponse . See request!/5 for more detailed information.","ref":"Mix.Tasks.Lightning.InstallSchemas.html#stream_next/1"},{"type":"function","title":"Mix.Tasks.Lightning.InstallSchemas.write_schema/3","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#write_schema/3"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.body/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:body/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.headers/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:headers/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.method/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:method/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.options/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:options/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.params/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:params/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.request/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:request/0"},{"type":"type","title":"Mix.Tasks.Lightning.InstallSchemas.url/0","doc":"","ref":"Mix.Tasks.Lightning.InstallSchemas.html#t:url/0"},{"type":"module","title":"ObanPruner","doc":"The Oban Pruner removes completed Oban jobs. It leaves everything else for manual inspection.","ref":"ObanPruner.html"},{"type":"function","title":"ObanPruner.perform/1","doc":"Deletes completed Oban jobs, leaving discarded for manual inspection.","ref":"ObanPruner.html#perform/1"},{"type":"module","title":"Storybook.Root","doc":"","ref":"Storybook.Root.html"},{"type":"module","title":"Lightning.Accounts","doc":"The Accounts context.","ref":"Lightning.Accounts.html"},{"type":"function","title":"Lightning.Accounts.apply_user_email/3","doc":"Emulates that the email will change without actually changing it in the database. Examples iex> apply_user_email ( user , "valid password" , %{ email : ... } ) { :ok , % User { } } role : :superuser iex> apply_user_email ( user , "invalid password" , %{ email : ... } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#apply_user_email/3"},{"type":"function","title":"Lightning.Accounts.cancel_scheduled_deletion/1","doc":"","ref":"Lightning.Accounts.html#cancel_scheduled_deletion/1"},{"type":"function","title":"Lightning.Accounts.change_scheduled_deletion/2","doc":"Returns an %Ecto.Changeset{} for changing the user scheduled_deletion. Examples iex> change_scheduled_deletion ( user ) % Ecto.Changeset { data : % User { } }","ref":"Lightning.Accounts.html#change_scheduled_deletion/2"},{"type":"function","title":"Lightning.Accounts.change_superuser_registration/1","doc":"Returns an %Ecto.Changeset{} for tracking superuser changes. Examples iex> change_superuser_registration ( user ) % Ecto.Changeset { data : % User { } }","ref":"Lightning.Accounts.html#change_superuser_registration/1"},{"type":"function","title":"Lightning.Accounts.change_user_details/2","doc":"","ref":"Lightning.Accounts.html#change_user_details/2"},{"type":"function","title":"Lightning.Accounts.change_user_email/2","doc":"Returns an %Ecto.Changeset{} for changing the user email. Examples iex> change_user_email ( user ) % Ecto.Changeset { data : % User { } }","ref":"Lightning.Accounts.html#change_user_email/2"},{"type":"function","title":"Lightning.Accounts.change_user_password/2","doc":"Returns an %Ecto.Changeset{} for changing the user password. Examples iex> change_user_password ( user ) % Ecto.Changeset { data : % User { } }","ref":"Lightning.Accounts.html#change_user_password/2"},{"type":"function","title":"Lightning.Accounts.change_user_registration/1","doc":"Returns an %Ecto.Changeset{} for tracking user changes. Examples iex> change_user_registration ( user ) % Ecto.Changeset { data : % User { } }","ref":"Lightning.Accounts.html#change_user_registration/1"},{"type":"function","title":"Lightning.Accounts.confirm_user/1","doc":"Confirms a user by the given token. If the token matches, the user account is marked as confirmed and the token is deleted.","ref":"Lightning.Accounts.html#confirm_user/1"},{"type":"function","title":"Lightning.Accounts.delete_auth_token/1","doc":"Deletes the signed token with the given context.","ref":"Lightning.Accounts.html#delete_auth_token/1"},{"type":"function","title":"Lightning.Accounts.delete_session_token/1","doc":"Deletes the signed token with the given context.","ref":"Lightning.Accounts.html#delete_session_token/1"},{"type":"function","title":"Lightning.Accounts.delete_token/1","doc":"Deletes a token. Examples iex> delete_token ( token ) { :ok , % UserToken { } } iex> delete_token ( token ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#delete_token/1"},{"type":"function","title":"Lightning.Accounts.delete_user/1","doc":"Deletes a user. Examples iex> delete_user ( user ) { :ok , % User { } } iex> delete_user ( user ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#delete_user/1"},{"type":"function","title":"Lightning.Accounts.delete_user_totp/1","doc":"Deletes the given user's TOTP","ref":"Lightning.Accounts.html#delete_user_totp/1"},{"type":"function","title":"Lightning.Accounts.deliver_update_email_instructions/3","doc":"Delivers the update email instructions to the given user. Examples iex> deliver_update_email_instructions ( user , current_email , & Routes . user_update_email_url ( conn , :edit , &1 ) ) { :ok , %{ to : ... , body : ... } }","ref":"Lightning.Accounts.html#deliver_update_email_instructions/3"},{"type":"function","title":"Lightning.Accounts.deliver_user_confirmation_instructions/2","doc":"Delivers the confirmation email instructions to the given user. Examples iex> deliver_user_confirmation_instructions ( user , & Routes . user_confirmation_url ( conn , :edit , &1 ) ) { :ok , %{ to : ... , body : ... } } iex> deliver_user_confirmation_instructions ( confirmed_user , & Routes . user_confirmation_url ( conn , :edit , &1 ) ) { :error , :already_confirmed }","ref":"Lightning.Accounts.html#deliver_user_confirmation_instructions/2"},{"type":"function","title":"Lightning.Accounts.deliver_user_confirmation_instructions/3","doc":"","ref":"Lightning.Accounts.html#deliver_user_confirmation_instructions/3"},{"type":"function","title":"Lightning.Accounts.deliver_user_reset_password_instructions/2","doc":"Delivers the reset password email to the given user. Examples iex> deliver_user_reset_password_instructions ( user , & Routes . user_reset_password_url ( conn , :edit , &1 ) ) { :ok , %{ to : ... , body : ... } }","ref":"Lightning.Accounts.html#deliver_user_reset_password_instructions/2"},{"type":"function","title":"Lightning.Accounts.exchange_auth_token/1","doc":"Exchanges an auth token for a session token. The auth token is removed from the database if successful.","ref":"Lightning.Accounts.html#exchange_auth_token/1"},{"type":"function","title":"Lightning.Accounts.generate_api_token/1","doc":"Generates an API token for a user.","ref":"Lightning.Accounts.html#generate_api_token/1"},{"type":"function","title":"Lightning.Accounts.generate_auth_token/1","doc":"Generates an auth token.","ref":"Lightning.Accounts.html#generate_auth_token/1"},{"type":"function","title":"Lightning.Accounts.generate_user_session_token/1","doc":"Generates a session token.","ref":"Lightning.Accounts.html#generate_user_session_token/1"},{"type":"function","title":"Lightning.Accounts.get_token!/1","doc":"Gets a single token. Raises Ecto.NoResultsError if the UserToken does not exist. Examples iex> get_token! ( 123 ) % UserToken { } iex> get_token! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Accounts.html#get_token!/1"},{"type":"function","title":"Lightning.Accounts.get_user!/1","doc":"Gets a single user. Raises Ecto.NoResultsError if the User does not exist. Examples iex> get_user! ( 123 ) % User { } iex> get_user! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Accounts.html#get_user!/1"},{"type":"function","title":"Lightning.Accounts.get_user_by_api_token/1","doc":"Gets the user with the given signed token.","ref":"Lightning.Accounts.html#get_user_by_api_token/1"},{"type":"function","title":"Lightning.Accounts.get_user_by_auth_token/1","doc":"Gets the user with the given signed token.","ref":"Lightning.Accounts.html#get_user_by_auth_token/1"},{"type":"function","title":"Lightning.Accounts.get_user_by_email/1","doc":"Gets a user by email. Examples iex> get_user_by_email ( "foo@example.com" ) % User { } iex> get_user_by_email ( "unknown@example.com" ) nil","ref":"Lightning.Accounts.html#get_user_by_email/1"},{"type":"function","title":"Lightning.Accounts.get_user_by_email_and_password/2","doc":"Gets a user by email and password. Examples 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" ) nil","ref":"Lightning.Accounts.html#get_user_by_email_and_password/2"},{"type":"function","title":"Lightning.Accounts.get_user_by_reset_password_token/1","doc":"Gets the user by reset password token. Examples iex> get_user_by_reset_password_token ( "validtoken" ) % User { } iex> get_user_by_reset_password_token ( "invalidtoken" ) nil","ref":"Lightning.Accounts.html#get_user_by_reset_password_token/1"},{"type":"function","title":"Lightning.Accounts.get_user_by_session_token/1","doc":"Gets the user with the given signed token.","ref":"Lightning.Accounts.html#get_user_by_session_token/1"},{"type":"function","title":"Lightning.Accounts.get_user_totp/1","doc":"Gets a single UserTOTP if any exists.","ref":"Lightning.Accounts.html#get_user_totp/1"},{"type":"function","title":"Lightning.Accounts.get_users_to_alert_for_project/1","doc":"Gets all users to alert of workflow failure for a project","ref":"Lightning.Accounts.html#get_users_to_alert_for_project/1"},{"type":"function","title":"Lightning.Accounts.has_activity_in_projects?/1","doc":"","ref":"Lightning.Accounts.html#has_activity_in_projects?/1"},{"type":"function","title":"Lightning.Accounts.has_one_superuser?/0","doc":"Used to determine if there is at least one Superuser in the system. This triggers the setup page on fresh installs.","ref":"Lightning.Accounts.html#has_one_superuser?/0"},{"type":"function","title":"Lightning.Accounts.list_api_tokens/1","doc":"Lists all user tokens","ref":"Lightning.Accounts.html#list_api_tokens/1"},{"type":"function","title":"Lightning.Accounts.list_users/0","doc":"Returns the list of users. Examples iex> list_users ( ) [ % User { } , ... ]","ref":"Lightning.Accounts.html#list_users/0"},{"type":"function","title":"Lightning.Accounts.perform/1","doc":"Perform, when called with %{"type" => "purge_deleted"} will find users that are ready for permanent deletion and purge them.","ref":"Lightning.Accounts.html#perform/1"},{"type":"function","title":"Lightning.Accounts.purge_user/1","doc":"","ref":"Lightning.Accounts.html#purge_user/1"},{"type":"function","title":"Lightning.Accounts.register_superuser/1","doc":"Registers a superuser. Examples iex> register_superuser ( %{ field : value } ) { :ok , % User { } } iex> register_superuser ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#register_superuser/1"},{"type":"function","title":"Lightning.Accounts.register_user/1","doc":"Registers a user. Examples iex> register_user ( %{ field : value } ) { :ok , % User { } } iex> register_user ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#register_user/1"},{"type":"function","title":"Lightning.Accounts.reset_user_password/2","doc":"Resets the user password. 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 { } }","ref":"Lightning.Accounts.html#reset_user_password/2"},{"type":"function","title":"Lightning.Accounts.schedule_user_deletion/2","doc":"Given a user and a confirmation email, this function sets a scheduled deletion date based on the PURGE_DELETED_AFTER_DAYS environment variable. If no ENV is set, this date defaults to NOW but the automatic user purge cronjob will never run. (Note that subsequent logins will be blocked for users pending deletion.)","ref":"Lightning.Accounts.html#schedule_user_deletion/2"},{"type":"function","title":"Lightning.Accounts.update_user_details/2","doc":"","ref":"Lightning.Accounts.html#update_user_details/2"},{"type":"function","title":"Lightning.Accounts.update_user_email/2","doc":"Updates the user email using the given token. If the token matches, the user email is updated and the token is deleted. The confirmed_at date is also updated to the current time.","ref":"Lightning.Accounts.html#update_user_email/2"},{"type":"function","title":"Lightning.Accounts.update_user_password/3","doc":"Updates the user password. Examples iex> update_user_password ( user , "valid password" , %{ password : ... } ) { :ok , % User { } } iex> update_user_password ( user , "invalid password" , %{ password : ... } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Accounts.html#update_user_password/3"},{"type":"function","title":"Lightning.Accounts.upsert_user_totp/2","doc":"Updates or Inserts the user's TOTP","ref":"Lightning.Accounts.html#upsert_user_totp/2"},{"type":"function","title":"Lightning.Accounts.valid_user_totp?/2","doc":"Validates if the given TOTP code is valid.","ref":"Lightning.Accounts.html#valid_user_totp?/2"},{"type":"function","title":"Lightning.Accounts.validate_change_user_email/2","doc":"","ref":"Lightning.Accounts.html#validate_change_user_email/2"},{"type":"module","title":"Lightning.Accounts.User","doc":"The User model.","ref":"Lightning.Accounts.User.html"},{"type":"function","title":"Lightning.Accounts.User.confirm_changeset/1","doc":"Confirms the account by setting confirmed_at .","ref":"Lightning.Accounts.User.html#confirm_changeset/1"},{"type":"function","title":"Lightning.Accounts.User.details_changeset/2","doc":"A user changeset for user details: email first_name last_name role","ref":"Lightning.Accounts.User.html#details_changeset/2"},{"type":"function","title":"Lightning.Accounts.User.email_changeset/2","doc":"A user changeset for changing the email. It requires the email to change otherwise an error is added.","ref":"Lightning.Accounts.User.html#email_changeset/2"},{"type":"function","title":"Lightning.Accounts.User.password_changeset/3","doc":"A user changeset for changing the password. Options :hash_password - Hashes the password so it can be stored securely in the database and ensures the password field is cleared to prevent leaks in the logs. If password hashing is not needed and clearing the password field is not desired (like when using this changeset for validations on a LiveView form), this option can be set to false . Defaults to true .","ref":"Lightning.Accounts.User.html#password_changeset/3"},{"type":"function","title":"Lightning.Accounts.User.scheduled_deletion_changeset/2","doc":"A user changeset for changing the scheduled_deletion property.","ref":"Lightning.Accounts.User.html#scheduled_deletion_changeset/2"},{"type":"function","title":"Lightning.Accounts.User.superuser_registration_changeset/2","doc":"A superuser changeset for registration. It is important to validate the length of both email and password. Otherwise databases may truncate the email without warnings, which could lead to unpredictable or insecure behaviour. Long passwords may also be very expensive to hash for certain algorithms. Options :hash_password - Hashes the password so it can be stored securely in the database and ensures the password field is cleared to prevent leaks in the logs. If password hashing is not needed and clearing the password field is not desired (like when using this changeset for validations on a LiveView form), this option can be set to false . Defaults to true .","ref":"Lightning.Accounts.User.html#superuser_registration_changeset/2"},{"type":"function","title":"Lightning.Accounts.User.user_registration_changeset/2","doc":"A user changeset for registration. It is important to validate the length of both email and password. Otherwise databases may truncate the email without warnings, which could lead to unpredictable or insecure behaviour. Long passwords may also be very expensive to hash for certain algorithms. Options :hash_password - Hashes the password so it can be stored securely in the database and ensures the password field is cleared to prevent leaks in the logs. If password hashing is not needed and clearing the password field is not desired (like when using this changeset for validations on a LiveView form), this option can be set to false . Defaults to true .","ref":"Lightning.Accounts.User.html#user_registration_changeset/2"},{"type":"function","title":"Lightning.Accounts.User.valid_password?/2","doc":"Verifies the password. If there is no user or the user doesn't have a password, we call Bcrypt.no_user_verify/0 to avoid timing attacks.","ref":"Lightning.Accounts.User.html#valid_password?/2"},{"type":"function","title":"Lightning.Accounts.User.validate_current_password/2","doc":"Validates the current password otherwise adds an error to the changeset.","ref":"Lightning.Accounts.User.html#validate_current_password/2"},{"type":"type","title":"Lightning.Accounts.User.t/0","doc":"","ref":"Lightning.Accounts.User.html#t:t/0"},{"type":"module","title":"Lightning.Accounts.User.RolesEnum","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.cast/1","doc":"Callback implementation for Ecto.Type.cast/1 .","ref":"Lightning.Accounts.User.RolesEnum.html#cast/1"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.create_type/0","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#create_type/0"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.drop_type/0","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#drop_type/0"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.dump/1","doc":"Callback implementation for Ecto.Type.dump/1 .","ref":"Lightning.Accounts.User.RolesEnum.html#dump/1"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.embed_as/1","doc":"Callback implementation for Ecto.Type.embed_as/1 .","ref":"Lightning.Accounts.User.RolesEnum.html#embed_as/1"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.equal?/2","doc":"Callback implementation for Ecto.Type.equal?/2 .","ref":"Lightning.Accounts.User.RolesEnum.html#equal?/2"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.load/1","doc":"Callback implementation for Ecto.Type.load/1 .","ref":"Lightning.Accounts.User.RolesEnum.html#load/1"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.schema/0","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#schema/0"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.schemaless_type/0","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#schemaless_type/0"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.type/0","doc":"Callback implementation for Ecto.Type.type/0 .","ref":"Lightning.Accounts.User.RolesEnum.html#type/0"},{"type":"function","title":"Lightning.Accounts.User.RolesEnum.valid_value?/1","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#valid_value?/1"},{"type":"type","title":"Lightning.Accounts.User.RolesEnum.t/0","doc":"","ref":"Lightning.Accounts.User.RolesEnum.html#t:t/0"},{"type":"module","title":"Lightning.Accounts.UserNotifier","doc":"The UserNotifier module.","ref":"Lightning.Accounts.UserNotifier.html"},{"type":"function","title":"Lightning.Accounts.UserNotifier.build_digest_url/3","doc":"","ref":"Lightning.Accounts.UserNotifier.html#build_digest_url/3"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_confirmation_instructions/2","doc":"Deliver instructions to confirm account.","ref":"Lightning.Accounts.UserNotifier.html#deliver_confirmation_instructions/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_confirmation_instructions/3","doc":"Deliver instructions to confirm account.","ref":"Lightning.Accounts.UserNotifier.html#deliver_confirmation_instructions/3"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_project_addition_notification/2","doc":"Deliver email to notify user of his addition of a project.","ref":"Lightning.Accounts.UserNotifier.html#deliver_project_addition_notification/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_project_digest/2","doc":"Deliver a project digest of daily/weekly or monthly activity to a user.","ref":"Lightning.Accounts.UserNotifier.html#deliver_project_digest/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_reset_password_instructions/2","doc":"Deliver instructions to reset a user password.","ref":"Lightning.Accounts.UserNotifier.html#deliver_reset_password_instructions/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_update_email_instructions/2","doc":"Deliver instructions to update a user email.","ref":"Lightning.Accounts.UserNotifier.html#deliver_update_email_instructions/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.deliver_update_email_warning/2","doc":"Deliver warning to update a user email.","ref":"Lightning.Accounts.UserNotifier.html#deliver_update_email_warning/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.notify_project_deletion/2","doc":"","ref":"Lightning.Accounts.UserNotifier.html#notify_project_deletion/2"},{"type":"function","title":"Lightning.Accounts.UserNotifier.send_deletion_notification_email/1","doc":"Deliver an email to notify the user about their account being deleted","ref":"Lightning.Accounts.UserNotifier.html#send_deletion_notification_email/1"},{"type":"module","title":"Lightning.Accounts.UserTOTP","doc":"User Time based OTPs schema","ref":"Lightning.Accounts.UserTOTP.html"},{"type":"function","title":"Lightning.Accounts.UserTOTP.changeset/2","doc":"","ref":"Lightning.Accounts.UserTOTP.html#changeset/2"},{"type":"function","title":"Lightning.Accounts.UserTOTP.valid_totp?/2","doc":"","ref":"Lightning.Accounts.UserTOTP.html#valid_totp?/2"},{"type":"type","title":"Lightning.Accounts.UserTOTP.t/0","doc":"","ref":"Lightning.Accounts.UserTOTP.html#t:t/0"},{"type":"module","title":"Lightning.Accounts.UserToken","doc":"The UserToken model. The reason why we store session tokens in the database, even though Phoenix already provides a session cookie, is because Phoenix' default session cookies are not persisted, they are simply signed and potentially encrypted. This means they are valid indefinitely, unless you change the signing/encryption salt. Therefore, storing them allows individual user sessions to be expired. The token system can also be extended to store additional data, such as the device used for logging in. You could then use this information to display all valid sessions and devices in the UI and allow users to explicitly expire any session they deem invalid.","ref":"Lightning.Accounts.UserToken.html"},{"type":"function","title":"Lightning.Accounts.UserToken.build_email_token/3","doc":"Builds a token and its hash to be delivered to the user's email. The non-hashed token is sent to the user email while the hashed part is stored in the database. The original token cannot be reconstructed, which means anyone with read-only access to the database cannot directly use the token in the application to gain access. Furthermore, if the user changes their email in the system, the tokens sent to the previous email are no longer valid. Users can easily adapt the existing code to provide other types of delivery methods, for example, by phone numbers.","ref":"Lightning.Accounts.UserToken.html#build_email_token/3"},{"type":"function","title":"Lightning.Accounts.UserToken.build_token/2","doc":"Generates a token that will be stored in a signed place, such as session or cookie. As they are signed, those tokens do not need to be hashed.","ref":"Lightning.Accounts.UserToken.html#build_token/2"},{"type":"function","title":"Lightning.Accounts.UserToken.changeset/2","doc":"","ref":"Lightning.Accounts.UserToken.html#changeset/2"},{"type":"function","title":"Lightning.Accounts.UserToken.generate_and_sign/2","doc":"Combines generate_claims/1 and encode_and_sign/2","ref":"Lightning.Accounts.UserToken.html#generate_and_sign/2"},{"type":"function","title":"Lightning.Accounts.UserToken.generate_and_sign!/2","doc":"Same as generate_and_sign/2 but raises if error","ref":"Lightning.Accounts.UserToken.html#generate_and_sign!/2"},{"type":"function","title":"Lightning.Accounts.UserToken.last_used_changeset/1","doc":"Update when the api token was last used by setting last_used_at .","ref":"Lightning.Accounts.UserToken.html#last_used_changeset/1"},{"type":"function","title":"Lightning.Accounts.UserToken.token_and_context_query/2","doc":"Returns the token struct for the given token value and context.","ref":"Lightning.Accounts.UserToken.html#token_and_context_query/2"},{"type":"function","title":"Lightning.Accounts.UserToken.user_and_contexts_query/2","doc":"Gets all tokens for the given user for the given contexts.","ref":"Lightning.Accounts.UserToken.html#user_and_contexts_query/2"},{"type":"function","title":"Lightning.Accounts.UserToken.verify_and_validate/3","doc":"Combines verify/2 and validate/2","ref":"Lightning.Accounts.UserToken.html#verify_and_validate/3"},{"type":"function","title":"Lightning.Accounts.UserToken.verify_and_validate!/3","doc":"Same as verify_and_validate/2 but raises if error","ref":"Lightning.Accounts.UserToken.html#verify_and_validate!/3"},{"type":"function","title":"Lightning.Accounts.UserToken.verify_change_email_token_query/2","doc":"Checks if the token is valid and returns its underlying lookup query. The query returns the user found by the token, if any. This is used to validate requests to change the user email. It is different from verify_email_token_query/2 precisely because verify_email_token_query/2 validates the email has not changed, which is the starting point by this function. The given token is valid if it matches its hashed counterpart in the database and if it has not expired (after @change_email_validity_in_days). The context must always start with "change:".","ref":"Lightning.Accounts.UserToken.html#verify_change_email_token_query/2"},{"type":"function","title":"Lightning.Accounts.UserToken.verify_email_token_query/2","doc":"Checks if the token is valid and returns its underlying lookup query. The query returns the user found by the token, if any. The given token is valid if it matches its hashed counterpart in the database and the user email has not changed. This function also checks if the token is being used within a certain period, depending on the context. The default contexts supported by this function are either "confirm", for account confirmation emails, and "reset_password", for resetting the password. For verifying requests to change the email, see verify_change_email_token_query/2 .","ref":"Lightning.Accounts.UserToken.html#verify_email_token_query/2"},{"type":"function","title":"Lightning.Accounts.UserToken.verify_token_query/2","doc":"Checks if the token is valid and returns its underlying lookup query. The query returns the user found by the token, if any. The token is valid if it matches the value in the database and it has not expired (after @auth_validity_in_seconds or @session_validity_in_days).","ref":"Lightning.Accounts.UserToken.html#verify_token_query/2"},{"type":"module","title":"Lightning.Credentials","doc":"The Credentials context.","ref":"Lightning.Credentials.html"},{"type":"function","title":"Lightning.Credentials.change_credential/2","doc":"Returns an %Ecto.Changeset{} for tracking credential changes. Examples iex> change_credential ( credential ) % Ecto.Changeset { data : % Credential { } }","ref":"Lightning.Credentials.html#change_credential/2"},{"type":"function","title":"Lightning.Credentials.create_credential/1","doc":"Creates a credential. Examples iex> create_credential ( %{ field : value } ) { :ok , % Credential { } } iex> create_credential ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Credentials.html#create_credential/1"},{"type":"function","title":"Lightning.Credentials.delete_credential/1","doc":"Deletes a credential. Examples iex> delete_credential ( credential ) { :ok , % Credential { } } iex> delete_credential ( credential ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Credentials.html#delete_credential/1"},{"type":"function","title":"Lightning.Credentials.get_credential!/1","doc":"Gets a single credential. Raises Ecto.NoResultsError if the Credential does not exist. Examples iex> get_credential! ( 123 ) % Credential { } iex> get_credential! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Credentials.html#get_credential!/1"},{"type":"function","title":"Lightning.Credentials.invalid_projects_for_user/2","doc":"Given a credential and a user, returns a list of invalid projects—i.e., those that the credential is shared with but that the user does not have access to. This is used to generate a validation error when a credential cannot be transferred. Examples 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" ]","ref":"Lightning.Credentials.html#invalid_projects_for_user/2"},{"type":"function","title":"Lightning.Credentials.list_credentials/0","doc":"Returns the list of credentials. Examples iex> list_credentials ( ) [ % Credential { } , ... ]","ref":"Lightning.Credentials.html#list_credentials/0"},{"type":"function","title":"Lightning.Credentials.list_credentials/1","doc":"","ref":"Lightning.Credentials.html#list_credentials/1"},{"type":"function","title":"Lightning.Credentials.list_credentials_for_user/1","doc":"Returns the list of credentials for a given user. Examples iex> list_credentials_for_user ( 123 ) [ % Credential { user_id : 123 } , % Credential { user_id : 123 } , ... ]","ref":"Lightning.Credentials.html#list_credentials_for_user/1"},{"type":"function","title":"Lightning.Credentials.maybe_refresh_token/1","doc":"","ref":"Lightning.Credentials.html#maybe_refresh_token/1"},{"type":"function","title":"Lightning.Credentials.sensitive_values_for/1","doc":"","ref":"Lightning.Credentials.html#sensitive_values_for/1"},{"type":"function","title":"Lightning.Credentials.update_credential/2","doc":"Updates a credential. Examples iex> update_credential ( credential , %{ field : new_value } ) { :ok , % Credential { } } iex> update_credential ( credential , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Credentials.html#update_credential/2"},{"type":"module","title":"Lightning.Credentials.Audit","doc":"Model for storing changes to Credentials","ref":"Lightning.Credentials.Audit.html"},{"type":"function","title":"Lightning.Credentials.Audit.event/4","doc":"","ref":"Lightning.Credentials.Audit.html#event/4"},{"type":"function","title":"Lightning.Credentials.Audit.save/1","doc":"","ref":"Lightning.Credentials.Audit.html#save/1"},{"type":"module","title":"Lightning.Credentials.Credential","doc":"The Credential model.","ref":"Lightning.Credentials.Credential.html"},{"type":"type","title":"Lightning.Credentials.Credential.t/0","doc":"","ref":"Lightning.Credentials.Credential.html#t:t/0"},{"type":"module","title":"Lightning.Credentials.Schema","doc":"Structure that can parse JsonSchemas (using ExJsonSchema ) and validate changesets for a given schema.","ref":"Lightning.Credentials.Schema.html"},{"type":"function","title":"Lightning.Credentials.Schema.new/2","doc":"","ref":"Lightning.Credentials.Schema.html#new/2"},{"type":"function","title":"Lightning.Credentials.Schema.properties/2","doc":"","ref":"Lightning.Credentials.Schema.html#properties/2"},{"type":"function","title":"Lightning.Credentials.Schema.required?/2","doc":"","ref":"Lightning.Credentials.Schema.html#required?/2"},{"type":"function","title":"Lightning.Credentials.Schema.validate/2","doc":"","ref":"Lightning.Credentials.Schema.html#validate/2"},{"type":"type","title":"Lightning.Credentials.Schema.t/0","doc":"","ref":"Lightning.Credentials.Schema.html#t:t/0"},{"type":"module","title":"Lightning.Credentials.SchemaDocument","doc":"Provides facilities to dynamically create and validate a changeset for a given Schema","ref":"Lightning.Credentials.SchemaDocument.html"},{"type":"function","title":"Lightning.Credentials.SchemaDocument.changeset/3","doc":"","ref":"Lightning.Credentials.SchemaDocument.html#changeset/3"},{"type":"module","title":"Lightning.Credentials.SensitiveValues","doc":"Functions to pull out sensitive values inside a credential. These values are used to scrub logs for leaked secrets.","ref":"Lightning.Credentials.SensitiveValues.html"},{"type":"function","title":"Lightning.Credentials.SensitiveValues.flatten_map/1","doc":"Keys that are not considered sensitive","ref":"Lightning.Credentials.SensitiveValues.html#flatten_map/1"},{"type":"function","title":"Lightning.Credentials.SensitiveValues.secret_values/1","doc":"Given a map, find all values allowed (via @safe_keys ) and return them as a list.","ref":"Lightning.Credentials.SensitiveValues.html#secret_values/1"},{"type":"type","title":"Lightning.Credentials.SensitiveValues.pairs/0","doc":"","ref":"Lightning.Credentials.SensitiveValues.html#t:pairs/0"},{"type":"type","title":"Lightning.Credentials.SensitiveValues.raw_pairs/0","doc":"","ref":"Lightning.Credentials.SensitiveValues.html#t:raw_pairs/0"},{"type":"module","title":"Lightning.Invocation","doc":"The Invocation context.","ref":"Lightning.Invocation.html"},{"type":"function","title":"Lightning.Invocation.change_dataclip/2","doc":"Returns an %Ecto.Changeset{} for tracking dataclip changes. Examples iex> change_dataclip ( dataclip ) % Ecto.Changeset { data : % Dataclip { } }","ref":"Lightning.Invocation.html#change_dataclip/2"},{"type":"function","title":"Lightning.Invocation.change_run/2","doc":"Returns an %Ecto.Changeset{} for tracking run changes. Examples iex> change_run ( run ) % Ecto.Changeset { data : % Run { } }","ref":"Lightning.Invocation.html#change_run/2"},{"type":"function","title":"Lightning.Invocation.create_dataclip/1","doc":"Creates a dataclip. Examples iex> create_dataclip ( %{ field : value } ) { :ok , % Dataclip { } } iex> create_dataclip ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#create_dataclip/1"},{"type":"function","title":"Lightning.Invocation.create_log_line/2","doc":"","ref":"Lightning.Invocation.html#create_log_line/2"},{"type":"function","title":"Lightning.Invocation.create_run/1","doc":"Creates a run. Examples iex> create_run ( %{ field : value } ) { :ok , % Run { } } iex> create_run ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#create_run/1"},{"type":"function","title":"Lightning.Invocation.delete_dataclip/1","doc":"Deletes a dataclip. Examples iex> delete_dataclip ( dataclip ) { :ok , % Dataclip { } } iex> delete_dataclip ( dataclip ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#delete_dataclip/1"},{"type":"function","title":"Lightning.Invocation.delete_run/1","doc":"Deletes a run. Examples iex> delete_run ( run ) { :ok , % Run { } } iex> delete_run ( run ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#delete_run/1"},{"type":"function","title":"Lightning.Invocation.filter_run_body_and_logs_where/2","doc":"","ref":"Lightning.Invocation.html#filter_run_body_and_logs_where/2"},{"type":"function","title":"Lightning.Invocation.filter_run_finished_after_where/1","doc":"","ref":"Lightning.Invocation.html#filter_run_finished_after_where/1"},{"type":"function","title":"Lightning.Invocation.filter_run_finished_before_where/1","doc":"","ref":"Lightning.Invocation.html#filter_run_finished_before_where/1"},{"type":"function","title":"Lightning.Invocation.filter_run_status_where/1","doc":"","ref":"Lightning.Invocation.html#filter_run_status_where/1"},{"type":"function","title":"Lightning.Invocation.filter_workflow_where/1","doc":"","ref":"Lightning.Invocation.html#filter_workflow_where/1"},{"type":"function","title":"Lightning.Invocation.filter_workorder_insert_after_where/1","doc":"","ref":"Lightning.Invocation.html#filter_workorder_insert_after_where/1"},{"type":"function","title":"Lightning.Invocation.filter_workorder_insert_before_where/1","doc":"","ref":"Lightning.Invocation.html#filter_workorder_insert_before_where/1"},{"type":"function","title":"Lightning.Invocation.get_dataclip/1","doc":"Gets a single dataclip given one of: a Dataclip uuid a Run model Returns nil if the Dataclip does not exist. Examples iex> get_dataclip ( "27b73932-16c7-4a72-86a3-85d805ccff98" ) % Dataclip { } iex> get_dataclip ( "27b73932-16c7-4a72-86a3-85d805ccff98" ) nil iex> get_dataclip ( % Run { id : "a uuid" } ) % Dataclip { }","ref":"Lightning.Invocation.html#get_dataclip/1"},{"type":"function","title":"Lightning.Invocation.get_dataclip!/1","doc":"Gets a single dataclip. Raises Ecto.NoResultsError if the Dataclip does not exist. Examples iex> get_dataclip! ( 123 ) % Dataclip { } iex> get_dataclip! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Invocation.html#get_dataclip!/1"},{"type":"function","title":"Lightning.Invocation.get_dataclip_query/1","doc":"Query for retrieving the dataclip that a runs starting dataclip.","ref":"Lightning.Invocation.html#get_dataclip_query/1"},{"type":"function","title":"Lightning.Invocation.get_result_dataclip_query/1","doc":"Query for retrieving the dataclip that was the result of a successful run.","ref":"Lightning.Invocation.html#get_result_dataclip_query/1"},{"type":"function","title":"Lightning.Invocation.get_run!/1","doc":"Gets a single run. Raises Ecto.NoResultsError if the Run does not exist. Examples iex> get_run! ( 123 ) % Run { } iex> get_run! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Invocation.html#get_run!/1"},{"type":"function","title":"Lightning.Invocation.get_run_with_job!/1","doc":"Fetches a run and preloads the job via the run's event.","ref":"Lightning.Invocation.html#get_run_with_job!/1"},{"type":"function","title":"Lightning.Invocation.get_workorders_by_ids/1","doc":"","ref":"Lightning.Invocation.html#get_workorders_by_ids/1"},{"type":"function","title":"Lightning.Invocation.list_dataclips/0","doc":"Returns the list of dataclips. Examples iex> list_dataclips ( ) [ % Dataclip { } , ... ]","ref":"Lightning.Invocation.html#list_dataclips/0"},{"type":"function","title":"Lightning.Invocation.list_dataclips/1","doc":"","ref":"Lightning.Invocation.html#list_dataclips/1"},{"type":"function","title":"Lightning.Invocation.list_dataclips_for_job/1","doc":"","ref":"Lightning.Invocation.html#list_dataclips_for_job/1"},{"type":"function","title":"Lightning.Invocation.list_dataclips_query/1","doc":"","ref":"Lightning.Invocation.html#list_dataclips_query/1"},{"type":"function","title":"Lightning.Invocation.list_runs/0","doc":"Returns the list of runs. Examples iex> list_runs ( ) [ % Run { } , ... ]","ref":"Lightning.Invocation.html#list_runs/0"},{"type":"function","title":"Lightning.Invocation.list_runs_for_project/2","doc":"","ref":"Lightning.Invocation.html#list_runs_for_project/2"},{"type":"function","title":"Lightning.Invocation.list_runs_for_project_query/1","doc":"","ref":"Lightning.Invocation.html#list_runs_for_project_query/1"},{"type":"function","title":"Lightning.Invocation.list_work_orders_for_project_query/2","doc":"","ref":"Lightning.Invocation.html#list_work_orders_for_project_query/2"},{"type":"function","title":"Lightning.Invocation.search_workorders/1","doc":"","ref":"Lightning.Invocation.html#search_workorders/1"},{"type":"function","title":"Lightning.Invocation.search_workorders/3","doc":"","ref":"Lightning.Invocation.html#search_workorders/3"},{"type":"function","title":"Lightning.Invocation.update_dataclip/2","doc":"Updates a dataclip. Examples iex> update_dataclip ( dataclip , %{ field : new_value } ) { :ok , % Dataclip { } } iex> update_dataclip ( dataclip , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#update_dataclip/2"},{"type":"function","title":"Lightning.Invocation.update_run/2","doc":"Updates a run. Examples iex> update_run ( run , %{ field : new_value } ) { :ok , % Run { } } iex> update_run ( run , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Invocation.html#update_run/2"},{"type":"function","title":"Lightning.Invocation.with_attempts/1","doc":"","ref":"Lightning.Invocation.html#with_attempts/1"},{"type":"module","title":"Lightning.Invocation.Dataclip","doc":"Ecto model for Dataclips. Dataclips represent some data that arrived in the system, and records both the data and the source of the data. Types :http_request The data arrived via a webhook. :global Was created manually, and is intended to be used multiple times. When repetitive static data is needed to be maintained, instead of hard-coding into a Job - a more convenient solution is to create a :global Dataclip and access it inside the Job. :run_result The final state of a successful run. :saved_input An arbitrary input, created by a user. (Only configuration will be overwritten.)","ref":"Lightning.Invocation.Dataclip.html"},{"type":"function","title":"Lightning.Invocation.Dataclip.get_types/0","doc":"","ref":"Lightning.Invocation.Dataclip.html#get_types/0"},{"type":"function","title":"Lightning.Invocation.Dataclip.new/1","doc":"","ref":"Lightning.Invocation.Dataclip.html#new/1"},{"type":"function","title":"Lightning.Invocation.Dataclip.validate_by_type/1","doc":"Append validations based on the type of the Dataclip. :run_result must have an associated Run model.","ref":"Lightning.Invocation.Dataclip.html#validate_by_type/1"},{"type":"type","title":"Lightning.Invocation.Dataclip.source_type/0","doc":"","ref":"Lightning.Invocation.Dataclip.html#t:source_type/0"},{"type":"type","title":"Lightning.Invocation.Dataclip.t/0","doc":"","ref":"Lightning.Invocation.Dataclip.html#t:t/0"},{"type":"module","title":"Lightning.Invocation.LogLine","doc":"Ecto model for run logs.","ref":"Lightning.Invocation.LogLine.html"},{"type":"function","title":"Lightning.Invocation.LogLine.validate/1","doc":"","ref":"Lightning.Invocation.LogLine.html#validate/1"},{"type":"type","title":"Lightning.Invocation.LogLine.t/0","doc":"","ref":"Lightning.Invocation.LogLine.html#t:t/0"},{"type":"module","title":"Lightning.Invocation.Query","doc":"Query functions for working with Runs and Dataclips","ref":"Lightning.Invocation.Query.html"},{"type":"function","title":"Lightning.Invocation.Query.last_run_for_job/1","doc":"The last run for a job","ref":"Lightning.Invocation.Query.html#last_run_for_job/1"},{"type":"function","title":"Lightning.Invocation.Query.last_successful_run_for_job/1","doc":"The last run for a job for a particular exit code, used in scheduler","ref":"Lightning.Invocation.Query.html#last_successful_run_for_job/1"},{"type":"function","title":"Lightning.Invocation.Query.runs_for/1","doc":"Runs for a specific user","ref":"Lightning.Invocation.Query.html#runs_for/1"},{"type":"function","title":"Lightning.Invocation.Query.runs_with_code/2","doc":"The last run for a job for a particular exit code, used in scheduler","ref":"Lightning.Invocation.Query.html#runs_with_code/2"},{"type":"module","title":"Lightning.Invocation.Run","doc":"Ecto model for Runs. A run represents the work initiated for a Job with an input dataclip. Once completed (successfully) it will have an output_dataclip associated with it as well.","ref":"Lightning.Invocation.Run.html"},{"type":"function","title":"Lightning.Invocation.Run.new/1","doc":"","ref":"Lightning.Invocation.Run.html#new/1"},{"type":"function","title":"Lightning.Invocation.Run.new_from/1","doc":"Creates a new Run changeset, but copies over certain fields. This is used to create new runs for retrys.","ref":"Lightning.Invocation.Run.html#new_from/1"},{"type":"type","title":"Lightning.Invocation.Run.t/0","doc":"","ref":"Lightning.Invocation.Run.html#t:t/0"},{"type":"module","title":"Lightning.InvocationReason","doc":"Ecto model for InvocationReasons.","ref":"Lightning.InvocationReason.html"},{"type":"function","title":"Lightning.InvocationReason.new/1","doc":"","ref":"Lightning.InvocationReason.html#new/1"},{"type":"function","title":"Lightning.InvocationReason.validate_by_trigger_type/1","doc":"","ref":"Lightning.InvocationReason.html#validate_by_trigger_type/1"},{"type":"type","title":"Lightning.InvocationReason.source_type/0","doc":"","ref":"Lightning.InvocationReason.html#t:source_type/0"},{"type":"type","title":"Lightning.InvocationReason.t/0","doc":"","ref":"Lightning.InvocationReason.html#t:t/0"},{"type":"module","title":"Lightning.InvocationReasons","doc":"The InvocationReasons context.","ref":"Lightning.InvocationReasons.html"},{"type":"function","title":"Lightning.InvocationReasons.build/2","doc":"","ref":"Lightning.InvocationReasons.html#build/2"},{"type":"function","title":"Lightning.InvocationReasons.create_reason/1","doc":"Creates a reason. Examples iex> create_reason ( %{ field : value } ) { :ok , % InvocationReason { } } iex> create_reason ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.InvocationReasons.html#create_reason/1"},{"type":"type","title":"Lightning.InvocationReasons.reason_type/0","doc":"","ref":"Lightning.InvocationReasons.html#t:reason_type/0"},{"type":"module","title":"Lightning.Pipeline","doc":"Service class to coordinate the running of jobs, and their downstream jobs.","ref":"Lightning.Pipeline.html"},{"type":"function","title":"Lightning.Pipeline.assemble_logs_for_run/1","doc":"Return all logs for a run as a string of text, separated by new line breaks","ref":"Lightning.Pipeline.html#assemble_logs_for_run/1"},{"type":"function","title":"Lightning.Pipeline.logs_for_run/1","doc":"Return all logs for a run as a list","ref":"Lightning.Pipeline.html#logs_for_run/1"},{"type":"function","title":"Lightning.Pipeline.process/1","doc":"","ref":"Lightning.Pipeline.html#process/1"},{"type":"module","title":"Lightning.Pipeline.Runner","doc":"Job running entrypoint","ref":"Lightning.Pipeline.Runner.html"},{"type":"function","title":"Lightning.Pipeline.Runner.create_dataclip_from_result/2","doc":"Creates a dataclip linked to the run that just finished. If either the file doesn't exist or there is a JSON decoding error, it logs and returns an error tuple.","ref":"Lightning.Pipeline.Runner.html#create_dataclip_from_result/2"},{"type":"function","title":"Lightning.Pipeline.Runner.find_or_install_adaptor/1","doc":"Make sure an adaptor matching the name is available. If it is available, return it's Engine.Adaptor struct - if not then install it.","ref":"Lightning.Pipeline.Runner.html#find_or_install_adaptor/1"},{"type":"function","title":"Lightning.Pipeline.Runner.scrub_result/1","doc":"Scrubs values from all keys in configuration, will be replaced by extensions to scrubber.ex, which is currently only used for logs.","ref":"Lightning.Pipeline.Runner.html#scrub_result/1"},{"type":"function","title":"Lightning.Pipeline.Runner.start/2","doc":"Execute a Run. Given a valid run: Persist the Dataclip and the Job's body to disk Create a blank output file on disk Build up a %Lightning.Runtime.Runspec{} with the paths, and adaptor module name And start it via Handler.start/2 . The callbacks implemented on Handler ( c:Handler.on_start/1 and c:Handler.on_finish/2 ) update the run when a Run is started and when it's finished, attaching the exit_code and log when they are available.","ref":"Lightning.Pipeline.Runner.html#start/2"},{"type":"module","title":"Lightning.Pipeline.Runner.Handler","doc":"Custom handler callbacks for Lightnings use of Engine to execute runs.","ref":"Lightning.Pipeline.Runner.Handler.html"},{"type":"function","title":"Lightning.Pipeline.Runner.Handler.on_start/1","doc":"The on_start handler updates the run, setting the started_at time and stamping the run with the ID of the credential that was used, if any, to facilitate easier auditing.","ref":"Lightning.Pipeline.Runner.Handler.html#on_start/1"},{"type":"function","title":"Lightning.Pipeline.Runner.Handler.stop/1","doc":"","ref":"Lightning.Pipeline.Runner.Handler.html#stop/1"},{"type":"type","title":"Lightning.Pipeline.Runner.Handler.handler_opts/0","doc":"","ref":"Lightning.Pipeline.Runner.Handler.html#t:handler_opts/0"},{"type":"module","title":"Lightning.Pipeline.StateAssembler","doc":"Facilities for building the state for a Run How state is assembled For the most common jobs, an inbound webhook will store an :http_request type dataclip. The reason that is created is associated with the dataclip. At runtime, the initial state for a Run will be in the shape of: { "data" : < the dataclip > , "configuration" : < the job ' s credential > } Saved inputs Saved custom inputs will only have state.configuration changed, everything else will remain as displayed. Flow Jobs When a Job is triggered by a previous Jobs success or failure these are the rules for constructing that Jobs state: For jobs that trigger on it's upstream jobs failure, the event will have the previous runs input dataclip as its input dataclip. The state will also have the log of the previous run attached on the error key. For Jobs triggered by a previous success, the run will have the previous runs output dataclip as its input dataclip. :run_result dataclips are expected to already have a data key, and are merged into the root.","ref":"Lightning.Pipeline.StateAssembler.html"},{"type":"function","title":"Lightning.Pipeline.StateAssembler.assemble/1","doc":"Assemble state for use in a Run.","ref":"Lightning.Pipeline.StateAssembler.html#assemble/1"},{"type":"module","title":"Lightning.Jobs","doc":"The Jobs context.","ref":"Lightning.Jobs.html"},{"type":"function","title":"Lightning.Jobs.change_job/2","doc":"Returns an %Ecto.Changeset{} for tracking job changes. Examples iex> change_job ( job ) % Ecto.Changeset { data : % Job { } }","ref":"Lightning.Jobs.html#change_job/2"},{"type":"function","title":"Lightning.Jobs.create_job/1","doc":"Creates a job. Examples iex> create_job ( %{ field : value } ) { :ok , % Job { } } iex> create_job ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Jobs.html#create_job/1"},{"type":"function","title":"Lightning.Jobs.delete_job/1","doc":"Deletes a job. Examples iex> delete_job ( job ) { :ok , % Job { } } iex> delete_job ( job ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Jobs.html#delete_job/1"},{"type":"function","title":"Lightning.Jobs.get_downstream_jobs_for/2","doc":"Returns the list of downstream jobs for a given job, optionally matching a specific trigger type. When downstream_jobs_for is called without a trigger that means its between jobs when it called with a trigger that means we are starting from outside the pipeline","ref":"Lightning.Jobs.html#get_downstream_jobs_for/2"},{"type":"function","title":"Lightning.Jobs.get_job/1","doc":"","ref":"Lightning.Jobs.html#get_job/1"},{"type":"function","title":"Lightning.Jobs.get_job!/1","doc":"Gets a single job. Raises Ecto.NoResultsError if the Job does not exist. Examples iex> get_job! ( 123 ) % Job { } iex> get_job! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Jobs.html#get_job!/1"},{"type":"function","title":"Lightning.Jobs.get_upstream_jobs_for/1","doc":"Returns the list of jobs excluding the one given.","ref":"Lightning.Jobs.html#get_upstream_jobs_for/1"},{"type":"function","title":"Lightning.Jobs.jobs_for_project/1","doc":"","ref":"Lightning.Jobs.html#jobs_for_project/1"},{"type":"function","title":"Lightning.Jobs.jobs_for_project_query/1","doc":"","ref":"Lightning.Jobs.html#jobs_for_project_query/1"},{"type":"function","title":"Lightning.Jobs.list_active_cron_jobs/0","doc":"","ref":"Lightning.Jobs.html#list_active_cron_jobs/0"},{"type":"function","title":"Lightning.Jobs.list_jobs/0","doc":"Returns the list of jobs.","ref":"Lightning.Jobs.html#list_jobs/0"},{"type":"function","title":"Lightning.Jobs.list_jobs_for_workflow/1","doc":"","ref":"Lightning.Jobs.html#list_jobs_for_workflow/1"},{"type":"function","title":"Lightning.Jobs.update_job/2","doc":"Updates a job. Examples iex> update_job ( job , %{ field : new_value } ) { :ok , % Job { } } iex> update_job ( job , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Jobs.html#update_job/2"},{"type":"module","title":"Lightning.Jobs.Job","doc":"Ecto model for Jobs. A Job contains the fields for defining a job. body The expression/javascript code name A plain text identifier adaptor An NPM style string that contains both the module name and it's version. E.g. @openfn/language-http@v1.2.3 or @openfn/language-foo@latest . While the version suffix isn't enforced here as it's not strictly necessary in this context, the front end will ensure a version is stated ( @latest being the default).","ref":"Lightning.Jobs.Job.html"},{"type":"function","title":"Lightning.Jobs.Job.new/1","doc":"","ref":"Lightning.Jobs.Job.html#new/1"},{"type":"function","title":"Lightning.Jobs.Job.put_project_credential/2","doc":"","ref":"Lightning.Jobs.Job.html#put_project_credential/2"},{"type":"function","title":"Lightning.Jobs.Job.put_workflow/2","doc":"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 ] ) job = % Job { } |> Ecto.Changeset . change ( ) |> Job . put_workflow ( workflow ) |> Job . changeset ( attrs )","ref":"Lightning.Jobs.Job.html#put_workflow/2"},{"type":"function","title":"Lightning.Jobs.Job.validate/1","doc":"","ref":"Lightning.Jobs.Job.html#validate/1"},{"type":"type","title":"Lightning.Jobs.Job.t/0","doc":"","ref":"Lightning.Jobs.Job.html#t:t/0"},{"type":"module","title":"Lightning.Jobs.Query","doc":"Query module for finding Jobs.","ref":"Lightning.Jobs.Query.html"},{"type":"function","title":"Lightning.Jobs.Query.enabled_cron_jobs_by_edge/0","doc":"Returns active jobs with their cron triggers for use in the cron scheduling service.","ref":"Lightning.Jobs.Query.html#enabled_cron_jobs_by_edge/0"},{"type":"function","title":"Lightning.Jobs.Query.jobs_for/1","doc":"Returns all jobs accessible to a user, via their projects or all jobs in a given project.","ref":"Lightning.Jobs.Query.html#jobs_for/1"},{"type":"module","title":"Lightning.Jobs.Scheduler","doc":"The Scheduler is responsible for finding jobs that are ready to run based on their cron schedule, and then running them.","ref":"Lightning.Jobs.Scheduler.html"},{"type":"function","title":"Lightning.Jobs.Scheduler.enqueue_cronjobs/0","doc":"Find and start any cronjobs that are scheduled to run for a given time (defaults to the current time).","ref":"Lightning.Jobs.Scheduler.html#enqueue_cronjobs/0"},{"type":"function","title":"Lightning.Jobs.Scheduler.enqueue_cronjobs/1","doc":"","ref":"Lightning.Jobs.Scheduler.html#enqueue_cronjobs/1"},{"type":"module","title":"Lightning.Jobs.Trigger","doc":"Ecto model for Triggers. Triggers represent the criteria in which a Job might be invoked. Types Webhook (default) A webhook trigger allows a Job to invoked (via Lightning.Invocation ) when it's endpoint is called.","ref":"Lightning.Jobs.Trigger.html"},{"type":"function","title":"Lightning.Jobs.Trigger.new/1","doc":"","ref":"Lightning.Jobs.Trigger.html#new/1"},{"type":"function","title":"Lightning.Jobs.Trigger.validate/1","doc":"","ref":"Lightning.Jobs.Trigger.html#validate/1"},{"type":"type","title":"Lightning.Jobs.Trigger.t/0","doc":"","ref":"Lightning.Jobs.Trigger.html#t:t/0"},{"type":"type","title":"Lightning.Jobs.Trigger.trigger_type/0","doc":"","ref":"Lightning.Jobs.Trigger.html#t:trigger_type/0"},{"type":"module","title":"Lightning.Projects","doc":"The Projects context.","ref":"Lightning.Projects.html"},{"type":"function","title":"Lightning.Projects.cancel_scheduled_deletion/1","doc":"","ref":"Lightning.Projects.html#cancel_scheduled_deletion/1"},{"type":"function","title":"Lightning.Projects.change_project/2","doc":"Returns an %Ecto.Changeset{} for tracking project changes. Examples iex> change_project ( project ) % Ecto.Changeset { data : % Project { } }","ref":"Lightning.Projects.html#change_project/2"},{"type":"function","title":"Lightning.Projects.create_project/1","doc":"Creates a project. Examples iex> create_project ( %{ field : value } ) { :ok , % Project { } } iex> create_project ( %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Projects.html#create_project/1"},{"type":"function","title":"Lightning.Projects.delete_project/1","doc":"Deletes a project and its related data, including workflows, work orders, runs, jobs, attempts, triggers, project users, project credentials, and dataclips Examples iex> delete_project ( project ) { :ok , % Project { } } iex> delete_project ( project ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Projects.html#delete_project/1"},{"type":"function","title":"Lightning.Projects.export_project/2","doc":"Exports a project as yaml. Examples iex> export_project ( :yaml , project_id ) { :ok , string }","ref":"Lightning.Projects.html#export_project/2"},{"type":"function","title":"Lightning.Projects.get_project/1","doc":"","ref":"Lightning.Projects.html#get_project/1"},{"type":"function","title":"Lightning.Projects.get_project!/1","doc":"Gets a single project. Raises Ecto.NoResultsError if the Project does not exist. Examples iex> get_project! ( 123 ) % Project { } iex> get_project! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Projects.html#get_project!/1"},{"type":"function","title":"Lightning.Projects.get_project_credential/2","doc":"","ref":"Lightning.Projects.html#get_project_credential/2"},{"type":"function","title":"Lightning.Projects.get_project_user/1","doc":"","ref":"Lightning.Projects.html#get_project_user/1"},{"type":"function","title":"Lightning.Projects.get_project_user/2","doc":"","ref":"Lightning.Projects.html#get_project_user/2"},{"type":"function","title":"Lightning.Projects.get_project_user!/1","doc":"Gets a single project_user. Raises Ecto.NoResultsError if the ProjectUser does not exist. Examples iex> get_project_user! ( 123 ) % ProjectUser { } iex> get_project_user! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Projects.html#get_project_user!/1"},{"type":"function","title":"Lightning.Projects.get_project_user_role/2","doc":"Returns the role of a user in a project. Possible roles are :admin, :viewer, :editor, and :owner Examples iex> get_project_user_role ( user , project ) :admin iex> get_project_user_role ( user , project ) :viewer iex> get_project_user_role ( user , project ) :editor iex> get_project_user_role ( user , project ) :owner","ref":"Lightning.Projects.html#get_project_user_role/2"},{"type":"function","title":"Lightning.Projects.get_project_with_users!/1","doc":"Gets a single project with it's members via project_users . Raises Ecto.NoResultsError if the Project does not exist. Examples iex> get_project! ( 123 ) % Project { } iex> get_project! ( 456 ) ** (Ecto.NoResultsError)","ref":"Lightning.Projects.html#get_project_with_users!/1"},{"type":"function","title":"Lightning.Projects.get_projects_for_user/1","doc":"","ref":"Lightning.Projects.html#get_projects_for_user/1"},{"type":"function","title":"Lightning.Projects.is_member_of?/2","doc":"","ref":"Lightning.Projects.html#is_member_of?/2"},{"type":"function","title":"Lightning.Projects.list_project_credentials/1","doc":"","ref":"Lightning.Projects.html#list_project_credentials/1"},{"type":"function","title":"Lightning.Projects.list_projects/0","doc":"Returns the list of projects. Examples iex> list_projects ( ) [ % Project { } , ... ]","ref":"Lightning.Projects.html#list_projects/0"},{"type":"function","title":"Lightning.Projects.perform/1","doc":"Perform, when called with %{"type" => "purge_deleted"} will find projects that are ready for permanent deletion and purge them.","ref":"Lightning.Projects.html#perform/1"},{"type":"function","title":"Lightning.Projects.project_attempt_run_query/1","doc":"","ref":"Lightning.Projects.html#project_attempt_run_query/1"},{"type":"function","title":"Lightning.Projects.project_attempts_query/1","doc":"","ref":"Lightning.Projects.html#project_attempts_query/1"},{"type":"function","title":"Lightning.Projects.project_credentials_query/1","doc":"","ref":"Lightning.Projects.html#project_credentials_query/1"},{"type":"function","title":"Lightning.Projects.project_dataclip_invocation_reason/1","doc":"","ref":"Lightning.Projects.html#project_dataclip_invocation_reason/1"},{"type":"function","title":"Lightning.Projects.project_dataclips_query/1","doc":"","ref":"Lightning.Projects.html#project_dataclips_query/1"},{"type":"function","title":"Lightning.Projects.project_jobs_query/1","doc":"","ref":"Lightning.Projects.html#project_jobs_query/1"},{"type":"function","title":"Lightning.Projects.project_run_invocation_reasons/1","doc":"","ref":"Lightning.Projects.html#project_run_invocation_reasons/1"},{"type":"function","title":"Lightning.Projects.project_runs_query/1","doc":"","ref":"Lightning.Projects.html#project_runs_query/1"},{"type":"function","title":"Lightning.Projects.project_trigger_invocation_reason/1","doc":"","ref":"Lightning.Projects.html#project_trigger_invocation_reason/1"},{"type":"function","title":"Lightning.Projects.project_triggers_query/1","doc":"","ref":"Lightning.Projects.html#project_triggers_query/1"},{"type":"function","title":"Lightning.Projects.project_user_role_query/2","doc":"","ref":"Lightning.Projects.html#project_user_role_query/2"},{"type":"function","title":"Lightning.Projects.project_users_query/1","doc":"","ref":"Lightning.Projects.html#project_users_query/1"},{"type":"function","title":"Lightning.Projects.project_workflows_query/1","doc":"","ref":"Lightning.Projects.html#project_workflows_query/1"},{"type":"function","title":"Lightning.Projects.project_workorders_query/1","doc":"","ref":"Lightning.Projects.html#project_workorders_query/1"},{"type":"function","title":"Lightning.Projects.projects_for_user_query/1","doc":"","ref":"Lightning.Projects.html#projects_for_user_query/1"},{"type":"function","title":"Lightning.Projects.schedule_project_deletion/1","doc":"Given a project, this function sets a scheduled deletion date based on the PURGE_DELETED_AFTER_DAYS environment variable. If no ENV is set, this date defaults to NOW but the automatic project purge cronjob will never run. (Note that subsequent logins will be blocked for projects pending deletion.)","ref":"Lightning.Projects.html#schedule_project_deletion/1"},{"type":"function","title":"Lightning.Projects.select_first_project_for_user/1","doc":"","ref":"Lightning.Projects.html#select_first_project_for_user/1"},{"type":"function","title":"Lightning.Projects.update_project/2","doc":"Updates a project. Examples iex> update_project ( project , %{ field : new_value } ) { :ok , % Project { } } iex> update_project ( project , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Projects.html#update_project/2"},{"type":"function","title":"Lightning.Projects.update_project_user/2","doc":"Updates a project user. Examples iex> update_project_user ( project_user , %{ field : new_value } ) { :ok , % ProjectUser { } } iex> update_project_user ( projectUser , %{ field : bad_value } ) { :error , % Ecto.Changeset { } }","ref":"Lightning.Projects.html#update_project_user/2"},{"type":"function","title":"Lightning.Projects.url_safe_project_name/1","doc":"","ref":"Lightning.Projects.html#url_safe_project_name/1"},{"type":"function","title":"Lightning.Projects.validate_for_deletion/2","doc":"Returns an %Ecto.Changeset{} for changing the project scheduled_deletion. Examples iex> validate_for_deletion ( project ) % Ecto.Changeset { data : % Project { } }","ref":"Lightning.Projects.html#validate_for_deletion/2"},{"type":"module","title":"Lightning.Projects.Project","doc":"Project model","ref":"Lightning.Projects.Project.html"},{"type":"function","title":"Lightning.Projects.Project.deletion_changeset/2","doc":"Changeset to validate a project deletion request, the user must enter the projects name to confirm.","ref":"Lightning.Projects.Project.html#deletion_changeset/2"},{"type":"function","title":"Lightning.Projects.Project.validate/1","doc":"","ref":"Lightning.Projects.Project.html#validate/1"},{"type":"type","title":"Lightning.Projects.Project.t/0","doc":"","ref":"Lightning.Projects.Project.html#t:t/0"},{"type":"module","title":"Lightning.Projects.ProjectCredential","doc":"Join table to assign credentials to a project","ref":"Lightning.Projects.ProjectCredential.html"},{"type":"type","title":"Lightning.Projects.ProjectCredential.t/0","doc":"","ref":"Lightning.Projects.ProjectCredential.html#t:t/0"},{"type":"module","title":"Lightning.Projects.ProjectUser","doc":"Join table to assign users to a project","ref":"Lightning.Projects.ProjectUser.html"},{"type":"type","title":"Lightning.Projects.ProjectUser.t/0","doc":"","ref":"Lightning.Projects.ProjectUser.html#t:t/0"},{"type":"module","title":"Lightning.Projects.ProjectUser.DigestEnum","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.cast/1","doc":"Callback implementation for Ecto.Type.cast/1 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#cast/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.create_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#create_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.drop_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#drop_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.dump/1","doc":"Callback implementation for Ecto.Type.dump/1 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#dump/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.embed_as/1","doc":"Callback implementation for Ecto.Type.embed_as/1 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#embed_as/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.equal?/2","doc":"Callback implementation for Ecto.Type.equal?/2 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#equal?/2"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.load/1","doc":"Callback implementation for Ecto.Type.load/1 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#load/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.schema/0","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#schema/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.schemaless_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#schemaless_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.type/0","doc":"Callback implementation for Ecto.Type.type/0 .","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.DigestEnum.valid_value?/1","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#valid_value?/1"},{"type":"type","title":"Lightning.Projects.ProjectUser.DigestEnum.t/0","doc":"","ref":"Lightning.Projects.ProjectUser.DigestEnum.html#t:t/0"},{"type":"module","title":"Lightning.Projects.ProjectUser.RolesEnum","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.cast/1","doc":"Callback implementation for Ecto.Type.cast/1 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#cast/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.create_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#create_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.drop_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#drop_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.dump/1","doc":"Callback implementation for Ecto.Type.dump/1 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#dump/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.embed_as/1","doc":"Callback implementation for Ecto.Type.embed_as/1 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#embed_as/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.equal?/2","doc":"Callback implementation for Ecto.Type.equal?/2 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#equal?/2"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.load/1","doc":"Callback implementation for Ecto.Type.load/1 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#load/1"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.schema/0","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#schema/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.schemaless_type/0","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#schemaless_type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.type/0","doc":"Callback implementation for Ecto.Type.type/0 .","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#type/0"},{"type":"function","title":"Lightning.Projects.ProjectUser.RolesEnum.valid_value?/1","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#valid_value?/1"},{"type":"type","title":"Lightning.Projects.ProjectUser.RolesEnum.t/0","doc":"","ref":"Lightning.Projects.ProjectUser.RolesEnum.html#t:t/0"},{"type":"module","title":"Lightning.Projects.Provisioner","doc":"Provides functions for importing projects. This module is used by the provisioning HTTP API. When providing a project to import, all records must have an id field. It's up to the caller to ensure that the id is unique and generated ahead of time in the case of new records.","ref":"Lightning.Projects.Provisioner.html"},{"type":"function","title":"Lightning.Projects.Provisioner.import_document/3","doc":"Import a project.","ref":"Lightning.Projects.Provisioner.html#import_document/3"},{"type":"function","title":"Lightning.Projects.Provisioner.load_project/1","doc":"Load a project by ID, including all workflows and their associated jobs, triggers and edges. Returns nil if the project does not exist.","ref":"Lightning.Projects.Provisioner.html#load_project/1"},{"type":"function","title":"Lightning.Projects.Provisioner.parse_document/2","doc":"","ref":"Lightning.Projects.Provisioner.html#parse_document/2"},{"type":"function","title":"Lightning.Projects.Provisioner.validate_extraneous_params/1","doc":"Validate that there are no extraneous parameters in the changeset. For all params in the changeset, ensure that the param is in the list of known fields in the schema.","ref":"Lightning.Projects.Provisioner.html#validate_extraneous_params/1"},{"type":"module","title":"Lightning.Runtime.ChildProcess","doc":"Provides an interface between a RunSpec and the shell. Internally it calls node , and more specifically the OpenFn core CLI.","ref":"Lightning.Runtime.ChildProcess.html"},{"type":"function","title":"Lightning.Runtime.ChildProcess.build_command/1","doc":"Builds up a string for shell execution based on the RunSpec","ref":"Lightning.Runtime.ChildProcess.html#build_command/1"},{"type":"function","title":"Lightning.Runtime.ChildProcess.build_env/2","doc":"","ref":"Lightning.Runtime.ChildProcess.html#build_env/2"},{"type":"function","title":"Lightning.Runtime.ChildProcess.run/2","doc":"","ref":"Lightning.Runtime.ChildProcess.html#run/2"},{"type":"behaviour","title":"Lightning.Runtime.Handler","doc":"A strategy for executing things via ChildProcess. This module handles the dirty bits, setting up processes and coordinating results (and logs) as they arrive. Since it is a macro, see Lightning.Pipeline.Runner.Handler for a usage example.","ref":"Lightning.Runtime.Handler.html"},{"type":"function","title":"Lightning.Runtime.Handler.env/2","doc":"","ref":"Lightning.Runtime.Handler.html#env/2"},{"type":"callback","title":"Lightning.Runtime.Handler.env/2","doc":"","ref":"Lightning.Runtime.Handler.html#c:env/2"},{"type":"callback","title":"Lightning.Runtime.Handler.log_callback/3","doc":"","ref":"Lightning.Runtime.Handler.html#c:log_callback/3"},{"type":"function","title":"Lightning.Runtime.Handler.on_finish/2","doc":"","ref":"Lightning.Runtime.Handler.html#on_finish/2"},{"type":"callback","title":"Lightning.Runtime.Handler.on_finish/2","doc":"","ref":"Lightning.Runtime.Handler.html#c:on_finish/2"},{"type":"function","title":"Lightning.Runtime.Handler.on_log_emit/2","doc":"","ref":"Lightning.Runtime.Handler.html#on_log_emit/2"},{"type":"callback","title":"Lightning.Runtime.Handler.on_log_emit/2","doc":"","ref":"Lightning.Runtime.Handler.html#c:on_log_emit/2"},{"type":"function","title":"Lightning.Runtime.Handler.on_start/1","doc":"","ref":"Lightning.Runtime.Handler.html#on_start/1"},{"type":"callback","title":"Lightning.Runtime.Handler.on_start/1","doc":"Called with context, if any - when the Run has been started.","ref":"Lightning.Runtime.Handler.html#c:on_start/1"},{"type":"callback","title":"Lightning.Runtime.Handler.start/2","doc":"The entrypoint for executing a run.","ref":"Lightning.Runtime.Handler.html#c:start/2"},{"type":"type","title":"Lightning.Runtime.Handler.t/0","doc":"","ref":"Lightning.Runtime.Handler.html#t:t/0"},{"type":"module","title":"Lightning.Runtime.LogAgent","doc":"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" } )","ref":"Lightning.Runtime.LogAgent.html"},{"type":"function","title":"Lightning.Runtime.LogAgent.buffer/1","doc":"","ref":"Lightning.Runtime.LogAgent.html#buffer/1"},{"type":"function","title":"Lightning.Runtime.LogAgent.child_spec/1","doc":"Returns a specification to start this module under a supervisor. See Supervisor .","ref":"Lightning.Runtime.LogAgent.html#child_spec/1"},{"type":"function","title":"Lightning.Runtime.LogAgent.process_chunk/2","doc":"","ref":"Lightning.Runtime.LogAgent.html#process_chunk/2"},{"type":"function","title":"Lightning.Runtime.LogAgent.start_link/1","doc":"","ref":"Lightning.Runtime.LogAgent.html#start_link/1"},{"type":"type","title":"Lightning.Runtime.LogAgent.logline/0","doc":"","ref":"Lightning.Runtime.LogAgent.html#t:logline/0"},{"type":"module","title":"Lightning.Runtime.LogAgent.StringBuffer","doc":"Internal datastructure to hold and process new bytes for a list of characters. By checking the if the buffer is a complete grapheme, emitting the buffer once valid and returning nil otherwise. In the case of emojis and other language character sets, a character (in UTF-8) can be between 1-4 bytes - when streaming logs for example it's quite easy to receive less than the whole character which can result in crashes or corrupt text.","ref":"Lightning.Runtime.LogAgent.StringBuffer.html"},{"type":"function","title":"Lightning.Runtime.LogAgent.StringBuffer.buffer/1","doc":"","ref":"Lightning.Runtime.LogAgent.StringBuffer.html#buffer/1"},{"type":"function","title":"Lightning.Runtime.LogAgent.StringBuffer.new/0","doc":"","ref":"Lightning.Runtime.LogAgent.StringBuffer.html#new/0"},{"type":"function","title":"Lightning.Runtime.LogAgent.StringBuffer.process_chunk/2","doc":"","ref":"Lightning.Runtime.LogAgent.StringBuffer.html#process_chunk/2"},{"type":"function","title":"Lightning.Runtime.LogAgent.StringBuffer.reduce_chunk/2","doc":"","ref":"Lightning.Runtime.LogAgent.StringBuffer.html#reduce_chunk/2"},{"type":"type","title":"Lightning.Runtime.LogAgent.StringBuffer.t/0","doc":"","ref":"Lightning.Runtime.LogAgent.StringBuffer.html#t:t/0"},{"type":"module","title":"Lightning.Runtime.Result","doc":"Data structure used to represent the result of a Run executed by Lightning.Runtime.ChildProcess .","ref":"Lightning.Runtime.Result.html"},{"type":"function","title":"Lightning.Runtime.Result.new/1","doc":"","ref":"Lightning.Runtime.Result.html#new/1"},{"type":"type","title":"Lightning.Runtime.Result.t/0","doc":"","ref":"Lightning.Runtime.Result.html#t:t/0"},{"type":"module","title":"Lightning.Runtime.RunSpec","doc":"A struct containing all the parameters required to execute a Job.","ref":"Lightning.Runtime.RunSpec.html"},{"type":"function","title":"Lightning.Runtime.RunSpec.new/1","doc":"","ref":"Lightning.Runtime.RunSpec.html#new/1"},{"type":"type","title":"Lightning.Runtime.RunSpec.t/0","doc":"","ref":"Lightning.Runtime.RunSpec.html#t:t/0"},{"type":"exception","title":"Lightning.MetadataService.Error","doc":"","ref":"Lightning.MetadataService.Error.html"},{"type":"function","title":"Lightning.MetadataService.Error.message/1","doc":"Callback implementation for Exception.message/1 .","ref":"Lightning.MetadataService.Error.html#message/1"},{"type":"function","title":"Lightning.MetadataService.Error.new/1","doc":"","ref":"Lightning.MetadataService.Error.html#new/1"},{"type":"type","title":"Lightning.MetadataService.Error.t/0","doc":"","ref":"Lightning.MetadataService.Error.html#t:t/0"},{"type":"extras","title":"Lightning","doc":"OpenFn/Lightning is a fully open source, workflow automation platform that's used to automate critical business processes and integrate information systems. From last-mile services to national-level reporting, it boosts efficiency & effectiveness while enabling secure, stable, scalable interoperability at all levels. Read more about Lightning on OpenFn/Docs . Lightning is the latest "v2" of OpenFn, the Digital Public Good for workflow automation . Use Lightning to visually build, execute and manage workflows. The latest version of the OpenFn technology - first launched in 2014, now tried and tested by NGOs in over 40 countries Fully open source (no premium features or community edition, you get the same product whether using SaaS or self-hosted) Recognised as a Digital Public Good by the DPGA and a Global Good for Health by Digital Square","ref":"readme.html"},{"type":"extras","title":"Lightning - Contents","doc":"Demo Sign up for the BETA Features Getting started Run Lightning via Docker Deploy Lightning on Docker or Kubernetes Run Lightning on your local machine (contributors) Troubleshooting Contribute Project Configuration Quickstart Generate the documentation Security and standards Server specs for self-hosting Questions or feedback?","ref":"readme.html#contents"},{"type":"extras","title":"Lightning - Demo","doc":"Watch a quick demo here: https://www.youtube.com/watch?v=BNaxlHAWb5I Explore our demo app* with username: demo@openfn.org , password: welcome123 , or read through the features section to view screenshots of the app. *Note that the demo app refreshes daily, so do not configure workflows you want to save.","ref":"readme.html#demo"},{"type":"extras","title":"Lightning - Register for a Beta account","doc":"Register for a Beta account at app.openfn.org and go through the quick-start guide to get familiar with the app.","ref":"readme.html#register-for-a-beta-account"},{"type":"extras","title":"Lightning - Features","doc":"Build Plan and build workflows using Lightning's visual interface to quickly define when, where and what you want your automation to do. Use our CLI to quickly build, edit and deploy projects from the comfort of your own code editor. Monitor Monitor all workflow activity in one place. Filter and search runs to identify issues that need addressing and follow how a specific request has been processed Configure alerts to be notified on run failures Receive a project digest for a daily/weekly/monthly summary of your project activity Manage Manage users and access by project Roles and permissions Authorization is a central part of Lightning. As such, users are given different roles which determine what level of access they have for resources in the application. For more details about roles and permissions in Lightning, please refer to our documentation . Roadmap View our public roadmap here .","ref":"readme.html#features"},{"type":"extras","title":"Lightning - Getting Started","doc":"If you only want to RUN Lightning on your own server, we recommend using Docker. If you want to DEPLOY Lightning, we recommend Docker builds and Kubernetes. If you want to CONTRIBUTE to the project, we recommend running Lightning on your local machine .","ref":"readme.html#getting-started"},{"type":"extras","title":"Lightning - Run via Docker","doc":"Install the latest version of Docker Clone this repo using git Copy the .env.example file to .env Run docker compose run --rm web mix ecto.migrate By default the application will be running at localhost:4000 . You can then rebuild and run with docker compose build and docker compose up . See "Problems with Docker" for additional troubleshooting help. Note that you can also create your own docker-compose.yml file, configuring a postgres database and using a pre-built image from Dockerhub.","ref":"readme.html#run-via-docker"},{"type":"extras","title":"Lightning - Deploy on external infrastructure","doc":"See Deployment for more detailed information.","ref":"readme.html#deploy-on-external-infrastructure"},{"type":"extras","title":"Lightning - Run Lightning locally","doc":"Clone the repo and optionally set ENVs git clone git@github.com:OpenFn/Lightning.git # or from YOUR fork! cd Lightning cp .env.example .env # and adjust as necessary! Take note of database names and ports in particular—they've got to match across your Postgres setup and your ENVs. You can run lightning without any ENVs assuming a vanilla postgres setup (see below), but you may want to make adjustments. Database Setup If you're already using Postgres locally, create a new database called lightning_dev , for example. If you'd rather use Docker to set up a Postgres DB, create a new volume and image: docker volume create lightning-postgres-data docker create \\ --name lightning-postgres \\ --mount source=lightning-postgres-data,target=/var/lib/postgresql/data \\ --publish 5432:5432 \\ -e POSTGRES_PASSWORD=postgres \\ postgres:15.3-alpine docker start lightning-postgres Elixir & Ecto Setup We use asdf to configure our local environments. Included in the repo is a .tool-versions file that is read by asdf in order to dynamically make the specified versions of Elixir and Erlang available. You'll need asdf plugins for Erlang , NodeJs Elixir and k6 . asdf install # Install language versions mix local.hex mix deps.get mix local.rebar --force mix ecto.create # Create a development database in Postgres mix ecto.migrate [[ $(uname -m) == 'arm64' ]] && mix compile.rambo # Force compile rambo if on M1 mix lightning.install_runtime mix lightning.install_schemas npm install --prefix assets Run the app Lightning is a web app. To run it in interactive Elixir mode, start the development server by running with your environment variables by running: iex -S mix phx.server or if you have set up custom environment variables, run: env $(cat .env | grep -v "#" | xargs ) iex -S mix phx.server Once the server has started, head to localhost:4000 in your browser. Run the tests Before the first time running the tests, you need a test database setup. MIX_ENV=test mix ecto.create And then after that run the tests using: MIX_ENV=test mix test We also have test.watch installed which can be used to rerun the tests on file changes.","ref":"readme.html#run-lightning-locally"},{"type":"extras","title":"Lightning - Benchmarking","doc":"We are using k6 to benchmark Lightning. Under benchmarking folder you can find a script for benchmarking Webhook Workflows. See Benchmarking for more detailed information.","ref":"readme.html#benchmarking"},{"type":"extras","title":"Lightning - Troubleshooting","doc":"Trouble with environment variables For troubleshooting custom environment variable configuration it's important to know how an Elixir app loads and modifies configuration. The order is as follows: Stuff in config.exs is loaded. That is then modified (think: overwritten ) by stuff your ENV-specific config: dev.exs , prod.exs or test.exs . That is then modified by runtime.exs which is where you are allowed to use System.env() Finally init/2 (if present in a child application) gets called (which takes the config which has been set in steps 1-3) when that child application is started during the parent app startup defined in application.ex . Problems with Postgres If you're having connecting issues with Postgres, check the database section of your .env to ensure the DB url is correctly set for your environment — note that composing a DB url out of other, earlier declared variables, does not work while using xargs . Problems with Debian If you're getting this error on debian == > earmark_parser Compiling 1 file ( . yrl ) / usr / lib / erlang / lib / parsetools - 2.3 . 1 / include / yeccpre . hrl : no such file or directory could not compile dependency :earmark_parser , "mix compile" failed . You can recompile this dependency with "mix deps.compile earmark_parser" , update it with "mix deps.update earmark_parser" or clean it with "mix deps.clean earmark_parser" You need to install erlang development environment sudo apt install erlang-dev refer to this issue Problems with Docker Versions The build may not work on old versions of Docker and Docker compose. It has been tested against: Docker version 20.10 . 17 , build 100 c701 Docker Compose version v2 . 6.0 Problems with rambo When running mix compile.rambo on Apple Silicon (an Apple M1/M2, macarm , aarch64-apple-darwin ) and encountering the following error: ** (RuntimeError) Rambo does not ship with binaries for your environment. aarch64 - apple - darwin22 . 3.0 detected Install the Rust compiler so a binary can be prepared for you . lib / mix / tasks / compile . rambo . ex : 89 : Mix.Tasks.Compile.Rambo . compile! / 0 lib / mix / tasks / compile . rambo . ex : 51 : Mix.Tasks.Compile.Rambo . run / 1 ( mix 1.14 . 2 ) lib / mix / task . ex : 421 : anonymous fn / 3 in Mix.Task . run_task / 4 ( mix 1.14 . 2 ) lib / mix / cli . ex : 84 : Mix.CLI . run_task / 2 You can resolve this error by installing the Rust compiler using Homebrew. Run the following command in your terminal: brew install rust If you have already compiled Rambo explicitly via mix compile.rambo , and you are still seeing the following error: sh : / path_to_directory / Lightning / _build / dev / lib / rambo / priv / rambo : No such file or directory sh : line 0 : exec : / path_to_directory / Lightning / _build / dev / lib / rambo / priv / rambo : cannot execute : No such file or directory You can try renaming deps/rambo/priv/rambo-mac to deps/rambo/priv/rambo . If neither of the approaches above work, please raise an issue. Starting from scratch If you're actively working with docker, you start experiencing issues, and you would like to start from scratch you can clean up everything and start over like this: # To remove any ignored files and reset your .env to it's example git clean -fdx && cp .env.example .env # You can skip the line below if you want to keep your database docker compose down --rmi all --volumes docker compose build --no-cache web && \\ docker compose create --force-recreate docker compose run --rm web mix ecto.migrate docker compose up","ref":"readme.html#troubleshooting"},{"type":"extras","title":"Lightning - Project Configuration Quickstart","doc":"For help getting started with your OpenFn/Lightning Project and Workflows configuration, check out the Lightning Quickstart Guidance on OpenFn/Docs.","ref":"readme.html#project-configuration-quickstart"},{"type":"extras","title":"Lightning - Contribute to this project","doc":"First, thanks for being here! You're contributing to a digital public good that will always be free and open source and aimed at serving innovative NGOs, governments, and social impact organizations the world over! You rock. ❤️ FYI, Lightning is built in Elixir , harnessing the Phoenix Framework . Currently, the only unbundled dependency is a PostgreSQL database. If you'd like to contribute to this projects, follow the steps below: Assign yourself to an issue Read through the existing issues , assign yourself to the issue you have chosen. Leave a comment on the issue to let us know you'll be working on it, and if you have any questions of clarifications that would help you get started ask them there - we will get back to you as soon as possible. If there isn't already an issue for the feature you would like to contribute, please start a discussion in our community forum . Open a pull request Clone the Lightning repository, then fork it . Run through setting up your environment and make your changes. Make sure you have written your tests and updated /CHANGELOG.md (in the 'Unreleased' section, add a short description of the changes you are making, along with a link to your issue). Open a draft pull request by clicking "Contribute > Open Pull Request" from your forked repository. Fill out the pull request template (this will be added automatically for you), then make sure to self-review your code and go through the 'Review checklist'. Don't worry about the QA checkbox, our product manager Amber will tick that once she has reviewed your PR. You can leave any notes for the reviewer in a comment. Once you're ready to submit a pull request, you can mark your draft PR as 'Ready for review' and assign @stuartc or @taylordowns2000.","ref":"readme.html#contribute-to-this-project"},{"type":"extras","title":"Lightning - Generating Documentation","doc":"You can generate the HTML and EPUB documentation locally using: mix docs and opening doc/index.html in your browser.","ref":"readme.html#generating-documentation"},{"type":"extras","title":"Lightning - Security and Standards","doc":"We use a host of common Elixir static analysis tools to help us avoid common pitfalls and make sure we keep everything clean and consistent. In addition to our test suite, you can run the following commands: mix format --check-formatted Code formatting checker, run again without the --check-formatted flag to have your code automatically changed. mix dialyzer Static analysis for type mismatches and other common warnings. See dialyxir . mix credo Static analysis for consistency, and coding standards. See Credo . mix sobelow Check for commonly known security exploits. See Sobelow . MIX_ENV=test mix coveralls Test coverage reporter. This command also runs the test suite, and can be used in place of mix test when checking everything before pushing your code. See excoveralls . For convenience there is a verify mix task that runs all of the above and defaults the MIX_ENV to test . For more guidance on security best practices for workflow automation implementations, check out OpenFn Docs: docs.openfn.org/documentation/getting-started/security","ref":"readme.html#security-and-standards"},{"type":"extras","title":"Lightning - Server Specs for Self-Hosting","doc":"For recommend server specifications for self-hosting of Lightning, check out this Community topic: community.openfn.org/t/specs-for-self-hosting-lightning/292","ref":"readme.html#server-specs-for-self-hosting"},{"type":"extras","title":"Lightning - Support","doc":"If you have any questions, feedback, or issues, please: Post on the OpenFn Community at community.openfn.org Open an issue directly on this Github Repo: github.com/OpenFn/Lightning/issues","ref":"readme.html#support"},{"type":"extras","title":"Deployment","doc":"","ref":"deployment.html"},{"type":"extras","title":"Deployment - Encryption","doc":"Lightning enforces encryption at rest for Credentials, for which an encryption key must be provided when running in production. The key is expected to be a randomized set of bytes, 32 long; and Base64 encoded when setting the environment variable. There is a mix task that can generate keys in the correct shape for use as an environment variable: mix lightning.gen_encryption_key 0bJ9w+hn4ebQrsCaWXuA9JY49fP9kbHmywGd5K7k+/s= Copy your key (NOT THIS ONE) and set it as PRIMARY_ENCRYPTION_KEY in your environment.","ref":"deployment.html#encryption"},{"type":"extras","title":"Deployment - Environment Variables","doc":"Note that for secure deployments, it's recommended to use a combination of secrets and configMaps to generate secure environment variables. ADAPTORS_PATH - where you store your locally installed adaptors DISABLE_DB_SSL - in production the use of an SSL conntection to Postgres is required by default, setting this to "true" allows unencrypted connections to the database. This is strongly discouraged in real production environment. K8S_HEADLESS_SERVICE - this environment variable is automatically set if you're running on GKE and it is used to establish an Erlang node cluster. Note that if you're not using Kubernetes, the "gossip" strategy is used for establish clusters. LISTEN_ADDRESS " - the address the web server should bind to, defaults to 127.0.0.1 to block access from other machines. LOG_LEVEL - how noisy you want the logs to be (e.g. debug , info ) MAX_RUN_DURATION - the maximum time (in milliseconds) that jobs are allowed to run (keep this below your termination_grace_period if using kubernetes) MIX_ENV - your mix env, likely prod for deployment NODE_ENV - node env, likely production for deployment ORIGINS - the allowed origins for web traffic to the backend PORT - the port your Phoenix app runs on PRIMARY_ENCRYPTION_KEY - a base64 encoded 32 character long string. See Encryption . SCHEMAS_PATH - path to the credential schemas that provide forms for different adaptors SECRET_KEY_BASE - a secret key used as a base to generate secrets for encrypting and signing data. SENTRY_DSN - if using Sentry for error monitoring, your DSN URL_HOST - the host, used for writing urls (e.g., demo.openfn.org ) URL_PORT - the port, usually 443 for production URL_SCHEME - the scheme for writing urls, (e.g., https ) Google Using your Google Cloud account, provision a new OAuth 2.0 Client with the 'Web application' type. Set the callback url to: https://<ENDPOINT DOMAIN>/authenticate/callback . Replacing ENDPOINT DOMAIN with the host name of your instance. Once the client has been created, get/download the OAuth client JSON and set the following environment variables: GOOGLE_CLIENT_ID - Which is client_id from the client details. GOOGLE_CLIENT_SECRET - client_secret from the client details.","ref":"deployment.html#environment-variables"},{"type":"extras","title":"Benchmarking","doc":"Execute the following steps to run a benchmark on Lightning: Make sure you have k6 installed locally. If you're using asdf you can run asdf install in the project root. Spin up your Lightning local instance Run the demo setup script: mix run --no-start priv/repo/demo.exs The webhookURL is already set to default to the webhook created in the demo data In another terminal (do not stop the Lightning server) run the benchmarking/script.js file using the following command k6 run benchmarking/script.js If the script exits succesfully, this means the app met the defined performance thresholds. To collect the benchmarking data in a CSV file, run the previous command with the --out filename option. k6 run --out csv=test_results.csv benchmarking/script.js See results output for other available output formats.","ref":"benchmarking.html"},{"type":"extras","title":"Provisioning","doc":"Lightning offers the ability to configure projects via the HTTP API. By providing a JSON document with the desired configuration, the project can be configured to your liking.","ref":"provisioning.html"},{"type":"extras","title":"Provisioning - Using the API","doc":"The API is available at /api/provision , and expects an application/json Content-Type. Authentication The API requires a valid auth token to be provided in the Authorization header. Example Request curl -X POST \\ -d @project.json \\ -H "Authorization: Bearer $TOKEN" \\ -H "Content-Type: application/json" \\ $ENDPOINT/api/provision","ref":"provisioning.html#using-the-api"},{"type":"extras","title":"Provisioning - Document Structure","doc":"The provisioning document is a JSON document with the project at the root. All entities must have an id field, which is a UUIDv4 string. In the case of new entities, this must be generated by the client. The API is idempotent, and the distinction between creating and updating is determined by the presence of the id field. { "id": "<<project-id>>", "name": "<<project-name>>", "workflows": [ { "id": "<<workflow-id>>", "name": "<<workflow-name>>", "jobs": [ { "id": "<<job-id>>", "name": "<<job-name>>", "body": "<<job-body>>", "adaptor": "<<adaptor-name>>", "enabled": true } // ... more jobs ], "triggers": [ { "id": "<<trigger-id>>", "name": "<<trigger-name>>", "type": "webhook" } // ... more triggers ], "edges": [ { "id": "<<edge-id>>", "source_trigger_id": "<<trigger-id>>", "target_job_id": "<<job-id>>" } // ... more edges ] } // ... more workflows ] }","ref":"provisioning.html#document-structure"},{"type":"extras","title":"Provisioning - API Behaviour","doc":"The API expects all existing entities to be provided in the provisioning document. If the document provided is out of date (e.g. a new job was added on the server), a new reference document should be fetched and the changes applied to it. Deleting Entities Entities can be deleted by setting the disabled key to true . Example: { "id": "<<project-id>>", "workflows": [ { "id": "<<workflow-id>>", "jobs": [ { "id": "<<job-id>>", "delete": true // <== delete this job } ] } ] }","ref":"provisioning.html#api-behaviour"},{"type":"extras","title":"Provisioning - Relationship with Projects as Code","doc":"The Projects as Code spec is a superset of the provisioning API. Projects as Code allows for the user to specify a key for each entity, which makes it easier to manage the project in the future. For example: name: my-project workflows: workflow-one: jobs: job-one: body: | console.log("Hello World"); adaptor: '@openfn/language-common' enabled: true triggers: trigger-one: type: webhook edges: - source_trigger: trigger-one target_job: job-one The above YAML document illustrates the use of keys being used to identify entities. Allowing the user to provision the same project to multiple environments. The API is unaware of 'keys', and expects IDs to be provided by the client. In order to convert the above YAML document to a provisioning document, the CLI uses a local state file (if available) to map the keys to UUIDs. Using the example above a state file might look like this: { "id": "f6ba9a8c-b687-473a-908e-e250686f1eed", "workflows": { "workflow-one": { "id": "f206aa85-4fce-492e-94eb-ffd32c75d178", "jobs": {}, "triggers": {} } } } The state file shows that the project and workflow already exist, but the job, trigger and edge do not. In order to create these new entities, IDs will be applied them. On a successful application of the provisioning document, the state file will be updated to reflect the new IDs and entities. { "id": "f6ba9a8c-b687-473a-908e-e250686f1eed", "workflows": { "workflow-one": { "id": "f206aa85-4fce-492e-94eb-ffd32c75d178", "jobs": { "job-one": { "id": "18ed71de-caf8-4822-aefc-5b19351f4016" } }, "triggers": { "trigger-one": { "id": "e0b9f357-9cf9-4206-9924-4d5674aad830" } }, "edges": [ { "id": "c239d994-6662-4637-90f8-0293c924b461", "source_trigger_id": "e0b9f357-9cf9-4206-9924-4d5674aad830", "target_job_id": "18ed71de-caf8-4822-aefc-5b19351f4016" } ] } } }","ref":"provisioning.html#relationship-with-projects-as-code"},{"type":"extras","title":"Changelog","doc":"All notable changes to this project will be documented in this file. The format is based on Keep a Changelog , and this project adheres to Semantic Versioning .","ref":"changelog.html"},{"type":"extras","title":"Changelog - [Unreleased]","doc":"Added Changed Fixed","ref":"changelog.html#unreleased"},{"type":"extras","title":"Changelog - [v0.7.2] - 2023-08-10","doc":"Added Changed Fixed NodeJs security patch 1009","ref":"changelog.html#v0-7-2-2023-08-10"},{"type":"extras","title":"Changelog - [v0.7.1] - 2023-08-04","doc":"Added Changed Fixed Fixed flickery icons on new workflow job creation.","ref":"changelog.html#v0-7-1-2023-08-04"},{"type":"extras","title":"Changelog - [v0.7.0] - 2023-08-04","doc":"Added Project owners can require MFA for their users 892 Changed Moved to Elixir 1.15 and Erlang 26.0.2 to sort our an annoying ElixirLS issue that was slowing down our engineers. Update Debian base to use bookworm (Debian 12) for our Docker images Change new credential modal to take up less space on the screen #931 Placeholder nodes are now purely handled client-side Fixed Fix issue creating a new credential from the Job editor where the new credential was not being set on the job. #951 Fix issue where checking a credential type radio button shows as unchecked on first click. #976 Return the pre-filled workflow names #971 Fix version reporting and external reset_demo() call via Application.spec() #1010 Fixed issue where entering a placeholder name through the form would result an in unsaveable workflow #1001 Ensure the DownloadController checks for authentication and authorisation.","ref":"changelog.html#v0-7-0-2023-08-04"},{"type":"extras","title":"Changelog - [v0.7.0-pre5] - 2023-07-28","doc":"Added Changed Unless otherwise specified, only show workorders with activity in last 14 days #968 Fixed","ref":"changelog.html#v0-7-0-pre5-2023-07-28"},{"type":"extras","title":"Changelog - [v0.7.0-pre4] - 2023-07-27","doc":"Added Changed Don't add cast fragments if the search_term is nil #968 Fixed","ref":"changelog.html#v0-7-0-pre4-2023-07-27"},{"type":"extras","title":"Changelog - [v0.7.0-pre3] - 2023-07-26","doc":"Added Changed Fixed Fixed an issue with newly created edges that prevented downstream jobs 977","ref":"changelog.html#v0-7-0-pre3-2023-07-26"},{"type":"extras","title":"Changelog - [v0.7.0-pre2] - 2023-07-26","doc":"Note that this is a pre-release with a couple of known bugs that are tracked in the Nodes and Edges epic . Added Added ability for a user to enable MFA on their account; using 2FA apps like Authy, Google Authenticator etc #890 Write/run sql script to convert triggers #875 Export projects as .yaml via UI #249 Changed In v0.7.0 we change the underlying workflow building and execution infrastructure to align with a standard "nodes and edges" design for directed acyclic graphs (DAGs). Make sure to run the migrations! 793 Fixed Propagate url pushState/changes to Workflow Diagram selection #944 Fix issue when deleting nodes from the workflow editor #830 Fix issue when clicking a trigger on a new/unsaved workflow #954","ref":"changelog.html#v0-7-0-pre2-2023-07-26"},{"type":"extras","title":"Changelog - [0.6.7] - 2023-07-13","doc":"Added Add feature to bulk rerun work orders from a specific step in their workflow; e.g., "rerun these 50 work orders, starting each at step 4." #906 Changed Fixed Oban exception: "value too long" when log lines are longer than 255 chars #929","ref":"changelog.html#0-6-7-2023-07-13"},{"type":"extras","title":"Changelog - [0.6.6] - 2023-06-30","doc":"Added Add public API token to the demo site setup script Check and renew OAuth credentials when running a job #646 Fixed Remove google sheets from adaptors list until supporting oauth flow #792 Remove duplicate google sheets adaptor display on credential type picklist #663 Fix demo setup script for calling from outside the app on Kubernetes deployments #917","ref":"changelog.html#0-6-6-2023-06-30"},{"type":"extras","title":"Changelog - [0.6.5] - 2023-06-22","doc":"Added Ability to rerun workorders from start by selecting one of more of them from the History page and clicking the "Rerun" button. #659 Fixed Example runs for demo incorrect #856","ref":"changelog.html#0-6-5-2023-06-22"},{"type":"extras","title":"Changelog - [0.6.3] - 2023-06-15","doc":"Fixed Prevent saving null log lines to the database, fix issue with run display #866","ref":"changelog.html#0-6-3-2023-06-15"},{"type":"extras","title":"Changelog - [0.6.2] - 2023-06-09","doc":"Fixed Fixed viewer permissions for delete workflow Fixed bug with workflow cards #859","ref":"changelog.html#0-6-2-2023-06-09"},{"type":"extras","title":"Changelog - [0.6.1] - 2023-06-08","doc":"Fixed Fixed bug with run logs #864 Correctly stagger demo runs to maintain order #856 Remove Timex use from SetupUtils in favor of DateTime to fix issue when calling it in escript.","ref":"changelog.html#0-6-1-2023-06-08"},{"type":"extras","title":"Changelog - [0.6.0]- 2023-04-12","doc":"Added Create sample runs when generating sample workflow #821 Added a provisioning api for creating and updating projects and their workflows See: PROVISIONING.md #641 Add ability for a superuser to schedule deletion, cancel deletion, and delete projects #757 Add ability for a project owner to schedule deletion, cancel deletion, and delete projects #746 Changed Ability to store run log lines as rows in a separate table #514 Fixed Incorrect project digest queries #768 ] Fix issue when purging deleted users #747 Generate a random name for Workflows when creating one via the UI. #828 Handle error when deleting a job with runs. #814","ref":"changelog.html#0-6-0-2023-04-12"},{"type":"extras","title":"Changelog - [0.5.2]","doc":"Added Add workflow_edges table in preparation for new workflow editor implementation #794 Stamped credential_id on run directly for easier auditing of the history interface. Admins can now see which credential was used to run a run. #800 Better errors when using magic functions: "no magic yet" and "check credential" #812 Changed The delete-project function now delete all associated activities #759 Fixed","ref":"changelog.html#0-5-2"},{"type":"extras","title":"Changelog - [0.5.1] - 2023-04-12","doc":"Added Added ability to create and revoke personal API tokens #147 Add last-used at to API tokens #722 Improved "save" for job builder; users can now press Ctrl + S or ⌘ + S to save new or updated jobs job panel will not close. (Click elsewhere in the canvas or click the "Close" button to close.) #568 Add filtered search params to the history page URL #660 Changed The secret scrubber now ignores booleans 690 Fixed The secret scrubber now properly handles integer secrets from credentials 690 Updated describe-package dependency, fixing sparkles in adaptor-docs 657 Clicks on the workflow canvas were not lining up with the nodes users clicked on; they are now 733 Job panel behaves better when collapsed 774","ref":"changelog.html#0-5-1-2023-04-12"},{"type":"extras","title":"Changelog - [0.5.0] - 2023-04-03","doc":"Added Magic functions that fetch real metadata from connected systems via credentials and suggest completions in the job builder (e.g., pressing control-space when setting the orgUnit attribute for a DHIS2 create operation will pull the actual list of orgUnits with human readable labels and fill in their orgUnit codes upon enter.) 670 A "metadata explorer" to browse actual system metadata for connected instances. 658 Resizable job builder panel for the main canvas/workflow view. 681 Changed Display timezone for cron schedule—it is always UTC. #716 Instance administrators can now configure the interval between when a project owner or user requests deletion and when these records are purged from the database. It defaults to 7, but by providing a PURGE_DELETED_AFTER_DAYS environment variable the grace period can be altered. Note that setting this variable to 0 will make automatic purging never occur but will still make "deleted" projects and users unavailable. This has been requested by certain organizations that must retain audit logs in a Lightning instance. 758 Fixed Locked CLI version to @openfn/cli@0.0.35 . #761","ref":"changelog.html#0-5-0-2023-04-03"},{"type":"extras","title":"Changelog - [0.4.8] - 2023-03-29","doc":"Added Added a test harness for monitoring critical parts of the app using Telemetry #654 Changed Set log level to info for runs. Most of the debug logging is useful for the CLI, but not for Lightning. In the future the log level will be configurable at instance > project > job level by the superuser and any project admin . Renamed license file so that automagic github icon is less confusing Fixed Broken links in failure alert email #732 Registration Submission on app.openfn.org shows internal server error in browser #686 Run the correct runtime install mix task in Dockerfile-dev #541 Users not disabled when scheduled for deletion #719","ref":"changelog.html#0-4-8-2023-03-29"},{"type":"extras","title":"Changelog - [0.4.6] - 2023-03-23","doc":"Added Implement roles and permissions across entire app #645 Fix webhook URL ( https://<<HOST_URL>>/i/cae544ab-03dc-4ccc-a09c-fb4edb255d7a ) for the OpenHIE demo workflow 448 Phoenix Storybook for improved component development Load test for webhook endpoint performance #645 Notify user via email when they're added to a project #306 Added notify user via email when their account is created #307 Changed Improved errors when decoding encryption keys for use with Cloak. #684 Allow users to run ANY job with a custom input. #629 Fixed Ensure JSON schema form inputs are in the same order as they are written in the schema #685","ref":"changelog.html#0-4-6-2023-03-23"},{"type":"extras","title":"Changelog - [0.4.4] - 2023-03-10","doc":"Added Users can receive a digest email reporting on a specified project. #638 #585 Changed Fixed","ref":"changelog.html#0-4-4-2023-03-10"},{"type":"extras","title":"Changelog - [0.4.3] - 2023-03-06","doc":"Added Tooltips on Job Builder panel #650 Changed Upgraded to Phoenix 1.7 (3945856) Fixed Issue with FailureAlerter configuration missing in prod mode.","ref":"changelog.html#0-4-3-2023-03-06"},{"type":"extras","title":"Changelog - [0.4.2] - 2023-02-24","doc":"Added A user can change their own email #247 Added a SCHEMAS_PATH environment variable to override the default folder location for credential schemas #604 Added the ability to configure Google Sheets credentials #536 Function to import a project #574 Changed Users cannot register if they have not selected the terms and conditions #531 Fixed Jobs panel slow for first open after restart #567","ref":"changelog.html#0-4-2-2023-02-24"},{"type":"extras","title":"Changelog - [0.4.0] - 2023-02-08","doc":"Added Added a Delete job button in Inspector Filter workflow runs by text/value in run logs or input body Drop "configuration" key from Run output dataclips after completion Ability to 'rerun' a run from the Run list Attempts and Runs update themselves in the Runs list Configure a project and workflow for a new registering user Run a job with a custom input Added plausible analytics Allow user to click on Webhook Trigger Node to copy webhook URL on workflow diagram Allow any user to delete a credential that they own Create any credential through a form except for OAuth Refit all diagram nodes on browser and container resize Enable distributed Erlang, allowing any number of redundant Lightning nodes to communicate with each other. Users can set up realtime alerts for a project Changed Better code-assist and intelliense in the Job Editor Updated @openfn/workflow-diagram to 0.4.0 Make plus button part of job nodes in Workflow Diagram Updated @openfn/adaptor-docs to 0.0.5 Updated @openfn/describe-package to 0.0.10 Create an follow a manual Run from the Job Inspector View all workflows in a project on the workflows index page Move @openfn/workflow-diagram into the application, the NPM module is now deprecated. Remove workflow name from first node Move the used parts of @openfn/engine into the application. [BREAKING CHANGE] Ported mix openfn.install.runtime into application, use mix lightning.install_runtime . [BREAKING CHANGE] Introduced @openfn/cli as the new runtime for Jobs Rename a workflow through the page heading Hide the dataclips tab for beta Make adaptor default to common@latest Remove jobs list page Better error handling in the docs panel Disable credential ownership transfer in dev and prod environments Add project settings page Change Workorder filters to apply to the aggregate state of the workorder and not the run directly Enable jobs by default Set log level to info Add Beta checkbox to register page User roles and permissions Fixed Don't consider disabled jobs when calculating subsequent runs Fixed overflow on Job Editor Tooltips Fixed auto-scroll when adding a new snippet in the Job Editor Fixed common operation typings in Job Editor","ref":"changelog.html#0-4-0-2023-02-08"},{"type":"extras","title":"Changelog - [0.3.1] - 2022-11-22","doc":"Fixed Fixed bug that attempted to execute HTML scripts in dataclips Fixed bug that prevented workorders from displaying in the order of their last run, descending. Remove alerts after set timeout or close","ref":"changelog.html#0-3-1-2022-11-22"},{"type":"extras","title":"Changelog - [0.3.0] - 2022-11-21","doc":"Added Add seed data for demo site Create adaptor credentials through a form Configure cron expressions through a form View runs grouped by workorders and attempts Run an existing Job with any dataclip uuid from the Job form Changed Redirect users to projects list page when they click on Admin Settings menu Move job, project, input and output Dataclips to Run table Reverse the relationship between Jobs and Triggers. Triggers now can exist on their own; setting the stage for branching and merging workflows Updated Elixir and frontend dependencies [BREAKING CHANGE] Pipeline now uses WorkOrders, previous data is not compatible. Runs, Dataclips and Attempts now all correctly use usec resolution timestamps. Upgraded LiveView to 0.18.0 Upgraded Elixir to 1.14.1 and OTP 25 Workflow Job editor now behaves like a panel Split JobLive.InspectorFormComponent into different plug-able subcomponents Ensure new jobs with cron triggers receive a default frequency Webhooks are now referenced by the trigger id instead of job id. Filter runs by status Filter runs by workflow Filter runs by date View a job run from the runs history View latest matching inputs to run a job with","ref":"changelog.html#0-3-0-2022-11-21"},{"type":"extras","title":"Changelog - [0.2.0] - 2022-09-12","doc":"Changed [BREAKING CHANGE] Add Workflow model, Jobs now belong to a Workflow This is a breaking change to the schema. Use Node.js 18, soon to be in LTS. Visualize success/fail triggers in workflow diagram. Move WorkflowDiagram related actions from DashboardLive into WorkflowLive Move WorkflowDiagram component into liveview, so that we can subscribe to channels (i.e. updating of the diagram when someone changes something). Integrate @openfn/workflow-diagram@0.0.8 and use the new Store interface for updating it. Remove component_mounted event from WorkflowDiagram hook, using a MutationObserver and a Base64 encoded JSON payload. Fixed an issue where the compiler component would try and load a 'nothing adaptor', added a condition to check an adaptor is actually selected. Removed previous Workflow CTE queries, replaced by the introduction of the Workflow model, see ( https://github.com/OpenFn/Lightning/blob/53da6883483e7d8d078783f348da327d1dd72d20/lib/lightning/workflows.ex#L111-L119 ).","ref":"changelog.html#0-2-0-2022-09-12"},{"type":"extras","title":"Changelog - [0.1.13] - 2022-08-29","doc":"Added Allow administrators to configure OIDC providers for authentication (note that this is just for authenticating, not yet for creating new accounts via OIDC) Add Monaco editor to the step/job panel Allow users to delete their own accounts. Schedule their user and credentials data for deletion when they do. Allow superusers to delete a user account. Schedule the user's credentials and user data for deletion when they do. If a user is scheduled for deletion, disable their account and prevent them from logging in. The 'User profile' and 'Credentials' page now have a sidebar menu Changed Project users now have one of the following roles: viewer, editor, admin, owner Users only have the following roles: user, superuser","ref":"changelog.html#0-1-13-2022-08-29"},{"type":"extras","title":"Changelog - [0.1.12] - 2022-08-15","doc":"Added Transfer credential ownership to another user. Create credentials via a form interface* Show "projects with access" in credentials list view. Show job in runs list and run view. Added roles and permissions to workflows and history page #645 *The form is defined by a JSON schema provided by an adaptor, in most cases: e.g., language-dhis2 provides a single schema which defines the required attributes for state.configuration , while language-common provides multiple credential schemas like "oauth" or "basic auth" which define attributes for state.configuration and which might be used by lots of different jobs.) Fixed User menu (top right) appears on top of all other components. User profile screen integrated with the rest of the liveview app.","ref":"changelog.html#0-1-12-2022-08-15"},{"type":"extras","title":"Changelog - [0.1.11] - 2022-08-05","doc":"Fixed Fixed logging in Runner when :debug log level used; note that this caused crashes in Oban","ref":"changelog.html#0-1-11-2022-08-05"},{"type":"extras","title":"Changelog - [0.1.10] - 2022-08-05","doc":"Added Credential auditing Build/version information display for easier debugging Fixed Fixed a bug that enqueued cron-triggered jobs even when they were disabled","ref":"changelog.html#0-1-10-2022-08-05"},{"type":"extras","title":"Changelog - [0.1.9] - 2022-07-27","doc":"Added Navigate to user profile or credentials page and log out through the user icon dropdown Create and edit dataclips Add a production tag to credentials View a dropdown of operations and their description for the language-common v2.0.0-rc2 adaptor (this pattern to be rolled out across adaptors) Changed Navigate between projects through a project picker on the navbar Fixed Run Lightning with docker Security Sensitive credential values are scrubbed from run logs All credentials are encrypted at REST","ref":"changelog.html#0-1-9-2022-07-27"},{"type":"extras","title":"Changelog - [0.1.7] - 2022-06-24","doc":"Added Run a job with a cron trigger Queue jobs via Oban/Postgres Edit jobs via the workflow canvas","ref":"changelog.html#0-1-7-2022-06-24"},{"type":"extras","title":"Changelog - [0.1.6] - 2022-06-07","doc":"Added Register, log in and log out of an account Allow superusers and admin users to create projects Allow admin users to create or disable a user’s account Allow superusers for local deployments to create users and give them access to project spaces Create and edit a job with a webhook, flow/fail or cron trigger Create and edit credentials for a job Copy a job's webhook URL View all workflows in a project visually Deploy lightning locally with Docker Enable a job to automatically process incoming requests Run a job with a webhook or flow/fail trigger View job runs along with their logs, exit code, start and end time View data clips that have initiated job runs (http requests for webhooks, run results) Changed - Removed -","ref":"changelog.html#0-1-6-2022-06-07"}]
\ No newline at end of file
diff --git a/dist/sidebar_items-B421EB7A.js b/dist/sidebar_items-4C678A97.js
similarity index 94%
rename from dist/sidebar_items-B421EB7A.js
rename to dist/sidebar_items-4C678A97.js
index c065fe6ef6..339eb6aef3 100644
--- a/dist/sidebar_items-B421EB7A.js
+++ b/dist/sidebar_items-4C678A97.js
@@ -1 +1 @@
-sidebarNodes={"modules":[{"id":"Lightning","group":"","title":"Lightning","sections":[]},{"id":"Lightning.AdaptorRegistry","group":"","title":"Lightning.AdaptorRegistry","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"all/1","title":"all(server \\\\ __MODULE__)","anchor":"all/1"},{"id":"child_spec/1","title":"child_spec(init_arg)","anchor":"child_spec/1"},{"id":"fetch/0","title":"fetch()","anchor":"fetch/0"},{"id":"latest_for/2","title":"latest_for(server \\\\ __MODULE__, module_name)","anchor":"latest_for/2"},{"id":"resolve_adaptor/1","title":"resolve_adaptor(adaptor)","anchor":"resolve_adaptor/1"},{"id":"resolve_package_name/1","title":"resolve_package_name(package_name)","anchor":"resolve_package_name/1"},{"id":"resolve_package_name!/1","title":"resolve_package_name!(package_name)","anchor":"resolve_package_name!/1"},{"id":"start_link/1","title":"start_link(opts \\\\ [use_cache: true])","anchor":"start_link/1"},{"id":"versions_for/2","title":"versions_for(server \\\\ __MODULE__, module_name)","anchor":"versions_for/2"}],"key":"functions"}]},{"id":"Lightning.AdaptorRegistry.Npm","group":"","title":"Lightning.AdaptorRegistry.Npm","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"body/0","title":"body()","anchor":"t:body/0"},{"id":"headers/0","title":"headers()","anchor":"t:headers/0"},{"id":"method/0","title":"method()","anchor":"t:method/0"},{"id":"options/0","title":"options()","anchor":"t:options/0"},{"id":"params/0","title":"params()","anchor":"t:params/0"},{"id":"request/0","title":"request()","anchor":"t:request/0"},{"id":"url/0","title":"url()","anchor":"t:url/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"delete/3","title":"delete(url, headers \\\\ [], options \\\\ [])","anchor":"delete/3"},{"id":"delete!/3","title":"delete!(url, headers \\\\ [], options \\\\ [])","anchor":"delete!/3"},{"id":"get/3","title":"get(url, headers \\\\ [], options \\\\ [])","anchor":"get/3"},{"id":"get!/3","title":"get!(url, headers \\\\ [], options \\\\ [])","anchor":"get!/3"},{"id":"head/3","title":"head(url, headers \\\\ [], options \\\\ [])","anchor":"head/3"},{"id":"head!/3","title":"head!(url, headers \\\\ [], options \\\\ [])","anchor":"head!/3"},{"id":"options/3","title":"options(url, headers \\\\ [], options \\\\ [])","anchor":"options/3"},{"id":"options!/3","title":"options!(url, headers \\\\ [], options \\\\ [])","anchor":"options!/3"},{"id":"package_detail/1","title":"package_detail(package_name)","anchor":"package_detail/1"},{"id":"patch/4","title":"patch(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch/4"},{"id":"patch!/4","title":"patch!(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch!/4"},{"id":"post/4","title":"post(url, body, headers \\\\ [], options \\\\ [])","anchor":"post/4"},{"id":"post!/4","title":"post!(url, body, headers \\\\ [], options \\\\ [])","anchor":"post!/4"},{"id":"process_headers/1","title":"process_headers(headers)","anchor":"process_headers/1"},{"id":"process_request_body/1","title":"process_request_body(body)","anchor":"process_request_body/1"},{"id":"process_request_headers/1","title":"process_request_headers(headers)","anchor":"process_request_headers/1"},{"id":"process_request_options/1","title":"process_request_options(options)","anchor":"process_request_options/1"},{"id":"process_request_params/1","title":"process_request_params(params)","anchor":"process_request_params/1"},{"id":"process_response/1","title":"process_response(response)","anchor":"process_response/1"},{"id":"process_response_chunk/1","title":"process_response_chunk(chunk)","anchor":"process_response_chunk/1"},{"id":"process_response_headers/1","title":"process_response_headers(headers)","anchor":"process_response_headers/1"},{"id":"process_response_status_code/1","title":"process_response_status_code(status_code)","anchor":"process_response_status_code/1"},{"id":"process_status_code/1","title":"process_status_code(status_code)","anchor":"process_status_code/1"},{"id":"process_url/1","title":"process_url(url)","anchor":"process_url/1"},{"id":"put/4","title":"put(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put/4"},{"id":"put!/4","title":"put!(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put!/4"},{"id":"request/1","title":"request(request)","anchor":"request/1"},{"id":"request/5","title":"request(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request/5"},{"id":"request!/5","title":"request!(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request!/5"},{"id":"start/0","title":"start()","anchor":"start/0"},{"id":"stream_next/1","title":"stream_next(resp)","anchor":"stream_next/1"},{"id":"user_packages/1","title":"user_packages(user)","anchor":"user_packages/1"}],"key":"functions"}]},{"id":"Lightning.AdaptorService","group":"","title":"Lightning.AdaptorService","sections":[{"id":"Configuration","anchor":"module-configuration"},{"id":"Installing Adaptors","anchor":"module-installing-adaptors"},{"id":"Looking up adaptors","anchor":"module-looking-up-adaptors"}],"nodeGroups":[{"name":"Types","nodes":[{"id":"package_spec/0","title":"package_spec()","anchor":"t:package_spec/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"build_aliased_name/1","title":"build_aliased_name(arg)","anchor":"build_aliased_name/1"},{"id":"child_spec/1","title":"child_spec(arg)","anchor":"child_spec/1"},{"id":"find_adaptor/2","title":"find_adaptor(agent, package)","anchor":"find_adaptor/2"},{"id":"get_adaptors/1","title":"get_adaptors(agent)","anchor":"get_adaptors/1"},{"id":"install/2","title":"install(agent, package)","anchor":"install/2"},{"id":"install!/2","title":"install!(agent, package_spec)","anchor":"install!/2"},{"id":"installed?/2","title":"installed?(agent, package_spec)","anchor":"installed?/2"},{"id":"resolve_package_name/1","title":"resolve_package_name(package_name)","anchor":"resolve_package_name/1"},{"id":"start_link/1","title":"start_link(opts)","anchor":"start_link/1"}],"key":"functions"}]},{"id":"Lightning.Attempt","group":"","title":"Lightning.Attempt","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"}],"key":"functions"}]},{"id":"Lightning.AttemptRun","group":"","title":"Lightning.AttemptRun","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"},{"id":"new/2","title":"new(attempt, run)","anchor":"new/2"}],"key":"functions"}]},{"id":"Lightning.AttemptService","group":"","title":"Lightning.AttemptService","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"append/2","title":"append(attempt, run)","anchor":"append/2"},{"id":"build_attempt/2","title":"build_attempt(work_order, reason)","anchor":"build_attempt/2"},{"id":"calculate_runs/3","title":"calculate_runs(workflow, existing_runs, starting_run)","anchor":"calculate_runs/3"},{"id":"create_attempt/3","title":"create_attempt(work_order, job, reason)","anchor":"create_attempt/3"},{"id":"get_for_rerun/2","title":"get_for_rerun(attempt_id, run_id)","anchor":"get_for_rerun/2"},{"id":"get_last_attempt_for/1","title":"get_last_attempt_for(run)","anchor":"get_last_attempt_for/1"},{"id":"get_workflow_for/1","title":"get_workflow_for(attempt)","anchor":"get_workflow_for/1"},{"id":"list_for_rerun_from_job/2","title":"list_for_rerun_from_job(order_ids, job_id)","anchor":"list_for_rerun_from_job/2"},{"id":"list_for_rerun_from_start/1","title":"list_for_rerun_from_start(order_ids)","anchor":"list_for_rerun_from_start/1"},{"id":"retry/3","title":"retry(attempt, run, reason)","anchor":"retry/3"},{"id":"retry_many/2","title":"retry_many(attempt_runs, reasons)","anchor":"retry_many/2"}],"key":"functions"}]},{"id":"Lightning.Auditing","group":"","title":"Lightning.Auditing","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"list_all/1","title":"list_all(params \\\\ %{})","anchor":"list_all/1"}],"key":"functions"}]},{"id":"Lightning.Auditing.Model","group":"","title":"Lightning.Auditing.Model","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"event/5","title":"event(schema, event, row_id, actor_id, metadata \\\\ %{})","anchor":"event/5"},{"id":"save/2","title":"save(changes, repo)","anchor":"save/2"}],"key":"functions"}]},{"id":"Lightning.AuthProviders","group":"","title":"Lightning.AuthProviders","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_handler/2","title":"build_handler(name, opts)","anchor":"build_handler/2"},{"id":"create/1","title":"create(attrs)","anchor":"create/1"},{"id":"create_handler/1","title":"create_handler(config)","anchor":"create_handler/1"},{"id":"delete!/1","title":"delete!(model)","anchor":"delete!/1"},{"id":"get_authorize_url/1","title":"get_authorize_url(name)","anchor":"get_authorize_url/1"},{"id":"get_existing/0","title":"get_existing()","anchor":"get_existing/0"},{"id":"get_existing/1","title":"get_existing(name)","anchor":"get_existing/1"},{"id":"get_handler/1","title":"get_handler(name)","anchor":"get_handler/1"},{"id":"get_handlers/0","title":"get_handlers()","anchor":"get_handlers/0"},{"id":"new/0","title":"new()","anchor":"new/0"},{"id":"remove_handler/1","title":"remove_handler(name)","anchor":"remove_handler/1"},{"id":"update/2","title":"update(model, attrs)","anchor":"update/2"}],"key":"functions"}]},{"id":"Lightning.AuthProviders.AuthConfig","group":"","title":"Lightning.AuthProviders.AuthConfig","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"}]},{"id":"Lightning.AuthProviders.CacheWarmer","group":"","title":"Lightning.AuthProviders.CacheWarmer","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"child_spec/1","title":"child_spec(init_arg)","anchor":"child_spec/1"},{"id":"execute/1","title":"execute(state)","anchor":"execute/1"},{"id":"interval/0","title":"interval()","anchor":"interval/0"}],"key":"functions"}]},{"id":"Lightning.AuthProviders.Google","group":"","title":"Lightning.AuthProviders.Google","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"authorize_url/2","title":"authorize_url(client, state)","anchor":"authorize_url/2"},{"id":"build_client/1","title":"build_client(opts \\\\ [])","anchor":"build_client/1"},{"id":"get_config/0","title":"get_config()","anchor":"get_config/0"},{"id":"get_token/2","title":"get_token(client, params)","anchor":"get_token/2"},{"id":"get_userinfo/2","title":"get_userinfo(client, token)","anchor":"get_userinfo/2"},{"id":"get_wellknown/0","title":"get_wellknown()","anchor":"get_wellknown/0"},{"id":"get_wellknown!/0","title":"get_wellknown!()","anchor":"get_wellknown!/0"},{"id":"refresh_token/2","title":"refresh_token(client, token)","anchor":"refresh_token/2"}],"key":"functions"}]},{"id":"Lightning.AuthProviders.Handler","group":"","title":"Lightning.AuthProviders.Handler","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"opts/0","title":"opts()","anchor":"t:opts/0"},{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"authorize_url/1","title":"authorize_url(handler)","anchor":"authorize_url/1"},{"id":"from_model/1","title":"from_model(model)","anchor":"from_model/1"},{"id":"get_token/2","title":"get_token(handler, code)","anchor":"get_token/2"},{"id":"get_userinfo/2","title":"get_userinfo(handler, token)","anchor":"get_userinfo/2"},{"id":"new/2","title":"new(name, opts)","anchor":"new/2"}],"key":"functions"}]},{"id":"Lightning.AuthProviders.Store","group":"","title":"Lightning.AuthProviders.Store","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"finder/0","title":"finder()","anchor":"t:finder/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"get_handler/2","title":"get_handler(name, finder \\\\ &default/1)","anchor":"get_handler/2"},{"id":"get_handlers/0","title":"get_handlers()","anchor":"get_handlers/0"},{"id":"put_handler/2","title":"put_handler(name, handler)","anchor":"put_handler/2"},{"id":"remove_handler/1","title":"remove_handler(name)","anchor":"remove_handler/1"}],"key":"functions"}]},{"id":"Lightning.AuthProviders.WellKnown","group":"","title":"Lightning.AuthProviders.WellKnown","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"body/0","title":"body()","anchor":"t:body/0"},{"id":"headers/0","title":"headers()","anchor":"t:headers/0"},{"id":"method/0","title":"method()","anchor":"t:method/0"},{"id":"options/0","title":"options()","anchor":"t:options/0"},{"id":"params/0","title":"params()","anchor":"t:params/0"},{"id":"request/0","title":"request()","anchor":"t:request/0"},{"id":"t/0","title":"t()","anchor":"t:t/0"},{"id":"url/0","title":"url()","anchor":"t:url/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"delete/3","title":"delete(url, headers \\\\ [], options \\\\ [])","anchor":"delete/3"},{"id":"delete!/3","title":"delete!(url, headers \\\\ [], options \\\\ [])","anchor":"delete!/3"},{"id":"fetch/1","title":"fetch(discovery_url)","anchor":"fetch/1"},{"id":"fetch!/1","title":"fetch!(discovery_url)","anchor":"fetch!/1"},{"id":"get/3","title":"get(url, headers \\\\ [], options \\\\ [])","anchor":"get/3"},{"id":"get!/3","title":"get!(url, headers \\\\ [], options \\\\ [])","anchor":"get!/3"},{"id":"head/3","title":"head(url, headers \\\\ [], options \\\\ [])","anchor":"head/3"},{"id":"head!/3","title":"head!(url, headers \\\\ [], options \\\\ [])","anchor":"head!/3"},{"id":"new/1","title":"new(json_body)","anchor":"new/1"},{"id":"options/3","title":"options(url, headers \\\\ [], options \\\\ [])","anchor":"options/3"},{"id":"options!/3","title":"options!(url, headers \\\\ [], options \\\\ [])","anchor":"options!/3"},{"id":"patch/4","title":"patch(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch/4"},{"id":"patch!/4","title":"patch!(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch!/4"},{"id":"post/4","title":"post(url, body, headers \\\\ [], options \\\\ [])","anchor":"post/4"},{"id":"post!/4","title":"post!(url, body, headers \\\\ [], options \\\\ [])","anchor":"post!/4"},{"id":"process_headers/1","title":"process_headers(headers)","anchor":"process_headers/1"},{"id":"process_request_body/1","title":"process_request_body(body)","anchor":"process_request_body/1"},{"id":"process_request_headers/1","title":"process_request_headers(headers)","anchor":"process_request_headers/1"},{"id":"process_request_options/1","title":"process_request_options(options)","anchor":"process_request_options/1"},{"id":"process_request_params/1","title":"process_request_params(params)","anchor":"process_request_params/1"},{"id":"process_request_url/1","title":"process_request_url(url)","anchor":"process_request_url/1"},{"id":"process_response/1","title":"process_response(response)","anchor":"process_response/1"},{"id":"process_response_body/1","title":"process_response_body(body)","anchor":"process_response_body/1"},{"id":"process_response_chunk/1","title":"process_response_chunk(chunk)","anchor":"process_response_chunk/1"},{"id":"process_response_headers/1","title":"process_response_headers(headers)","anchor":"process_response_headers/1"},{"id":"process_response_status_code/1","title":"process_response_status_code(status_code)","anchor":"process_response_status_code/1"},{"id":"process_status_code/1","title":"process_status_code(status_code)","anchor":"process_status_code/1"},{"id":"process_url/1","title":"process_url(url)","anchor":"process_url/1"},{"id":"put/4","title":"put(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put/4"},{"id":"put!/4","title":"put!(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put!/4"},{"id":"request/1","title":"request(request)","anchor":"request/1"},{"id":"request/5","title":"request(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request/5"},{"id":"request!/5","title":"request!(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request!/5"},{"id":"start/0","title":"start()","anchor":"start/0"},{"id":"stream_next/1","title":"stream_next(resp)","anchor":"stream_next/1"}],"key":"functions"}]},{"id":"Lightning.CLI","group":"","title":"Lightning.CLI","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"execute/1","title":"execute(command)","anchor":"execute/1"},{"id":"metadata/2","title":"metadata(state, adaptor_path)","anchor":"metadata/2"}],"key":"functions"}]},{"id":"Lightning.CLI.Result","group":"","title":"Lightning.CLI.Result","sections":[{"id":"Logs","anchor":"module-logs"}],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"get_messages/1","title":"get_messages(result)","anchor":"get_messages/1"},{"id":"new/1","title":"new(data)","anchor":"new/1"},{"id":"parse/2","title":"parse(result, extra \\\\ [])","anchor":"parse/2"}],"key":"functions"}]},{"id":"Lightning.Demo","group":"","title":"Lightning.Demo","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"reset_demo/0","title":"reset_demo()","anchor":"reset_demo/0"}],"key":"functions"}]},{"id":"Lightning.ExportUtils","group":"","title":"Lightning.ExportUtils","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_yaml_tree/2","title":"build_yaml_tree(workflows, project)","anchor":"build_yaml_tree/2"},{"id":"generate_new_yaml/1","title":"generate_new_yaml(project_id)","anchor":"generate_new_yaml/1"}],"key":"functions"}]},{"id":"Lightning.FailureNotifierView","group":"","title":"Lightning.FailureNotifierView","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"__resource__/0","title":"__resource__()","anchor":"__resource__/0"},{"id":"failure_alert.html/1","title":"failure_alert.html(assigns)","anchor":"failure_alert.html/1"},{"id":"render/2","title":"render(template, assigns \\\\ %{})","anchor":"render/2"},{"id":"template_not_found/2","title":"template_not_found(template, assigns)","anchor":"template_not_found/2"}],"key":"functions"}]},{"id":"Lightning.Helpers","group":"","title":"Lightning.Helpers","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"coerce_json_field/2","title":"coerce_json_field(attrs, field)","anchor":"coerce_json_field/2"},{"id":"indefinite_article/1","title":"indefinite_article(noun)","anchor":"indefinite_article/1"},{"id":"json_safe/1","title":"json_safe(data)","anchor":"json_safe/1"},{"id":"ms_to_human/1","title":"ms_to_human(milliseconds)","anchor":"ms_to_human/1"}],"key":"functions"}]},{"id":"Lightning.MetadataService","group":"","title":"Lightning.MetadataService","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"fetch/2","title":"fetch(adaptor, credential)","anchor":"fetch/2"}],"key":"functions"}]},{"id":"Lightning.Name","group":"","title":"Lightning.Name","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"generate/1","title":"generate(max_id \\\\ 9999)","anchor":"generate/1"}],"key":"functions"}]},{"id":"Lightning.ObanManager","group":"","title":"Lightning.ObanManager","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"handle_event/4","title":"handle_event(list, measure, meta, pid)","anchor":"handle_event/4"}],"key":"functions"}]},{"id":"Lightning.Policies.Permissions","group":"","title":"Lightning.Policies.Permissions","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"can/4","title":"can(policy, action, user, params \\\\ [])","anchor":"can/4"},{"id":"can?/4","title":"can?(policy, action, user, params \\\\ [])","anchor":"can?/4"}],"key":"functions"}]},{"id":"Lightning.Policies.ProjectUsers","group":"","title":"Lightning.Policies.ProjectUsers","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"actions/0","title":"actions()","anchor":"t:actions/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"authorize/3","title":"authorize(action, user, project)","anchor":"authorize/3"}],"key":"functions"}]},{"id":"Lightning.Policies.Provisioning","group":"","title":"Lightning.Policies.Provisioning","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"actions/0","title":"actions()","anchor":"t:actions/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"authorize/3","title":"authorize(arg1, user, project)","anchor":"authorize/3"}],"key":"functions"}]},{"id":"Lightning.Policies.Users","group":"","title":"Lightning.Policies.Users","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"actions/0","title":"actions()","anchor":"t:actions/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"authorize/3","title":"authorize(action, authenticated_user, account_user)","anchor":"authorize/3"}],"key":"functions"}]},{"id":"Lightning.Release","group":"","title":"Lightning.Release","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create_db/0","title":"create_db()","anchor":"create_db/0"},{"id":"load_app/0","title":"load_app()","anchor":"load_app/0"},{"id":"migrate/0","title":"migrate()","anchor":"migrate/0"},{"id":"rollback/2","title":"rollback(repo, version)","anchor":"rollback/2"}],"key":"functions"}]},{"id":"Lightning.Repo","group":"","title":"Lightning.Repo","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"aggregate/3","title":"aggregate(queryable, aggregate, opts \\\\ [])","anchor":"aggregate/3"},{"id":"aggregate/4","title":"aggregate(queryable, aggregate, field, opts)","anchor":"aggregate/4"},{"id":"all/2","title":"all(queryable, opts \\\\ [])","anchor":"all/2"},{"id":"checked_out?/0","title":"checked_out?()","anchor":"checked_out?/0"},{"id":"checkout/2","title":"checkout(fun, opts \\\\ [])","anchor":"checkout/2"},{"id":"child_spec/1","title":"child_spec(opts)","anchor":"child_spec/1"},{"id":"config/0","title":"config()","anchor":"config/0"},{"id":"default_options/1","title":"default_options(operation)","anchor":"default_options/1"},{"id":"delete/2","title":"delete(struct, opts \\\\ [])","anchor":"delete/2"},{"id":"delete!/2","title":"delete!(struct, opts \\\\ [])","anchor":"delete!/2"},{"id":"delete_all/2","title":"delete_all(queryable, opts \\\\ [])","anchor":"delete_all/2"},{"id":"disconnect_all/2","title":"disconnect_all(interval, opts \\\\ [])","anchor":"disconnect_all/2"},{"id":"exists?/2","title":"exists?(queryable, opts \\\\ [])","anchor":"exists?/2"},{"id":"explain/3","title":"explain(operation, queryable, opts \\\\ [])","anchor":"explain/3"},{"id":"get/3","title":"get(queryable, id, opts \\\\ [])","anchor":"get/3"},{"id":"get!/3","title":"get!(queryable, id, opts \\\\ [])","anchor":"get!/3"},{"id":"get_by/3","title":"get_by(queryable, clauses, opts \\\\ [])","anchor":"get_by/3"},{"id":"get_by!/3","title":"get_by!(queryable, clauses, opts \\\\ [])","anchor":"get_by!/3"},{"id":"get_dynamic_repo/0","title":"get_dynamic_repo()","anchor":"get_dynamic_repo/0"},{"id":"in_transaction?/0","title":"in_transaction?()","anchor":"in_transaction?/0"},{"id":"insert/2","title":"insert(struct, opts \\\\ [])","anchor":"insert/2"},{"id":"insert!/2","title":"insert!(struct, opts \\\\ [])","anchor":"insert!/2"},{"id":"insert_all/3","title":"insert_all(schema_or_source, entries, opts \\\\ [])","anchor":"insert_all/3"},{"id":"insert_or_update/2","title":"insert_or_update(changeset, opts \\\\ [])","anchor":"insert_or_update/2"},{"id":"insert_or_update!/2","title":"insert_or_update!(changeset, opts \\\\ [])","anchor":"insert_or_update!/2"},{"id":"load/2","title":"load(schema_or_types, data)","anchor":"load/2"},{"id":"one/2","title":"one(queryable, opts \\\\ [])","anchor":"one/2"},{"id":"one!/2","title":"one!(queryable, opts \\\\ [])","anchor":"one!/2"},{"id":"paginate/2","title":"paginate(pageable, options \\\\ [])","anchor":"paginate/2"},{"id":"preload/3","title":"preload(struct_or_structs_or_nil, preloads, opts \\\\ [])","anchor":"preload/3"},{"id":"prepare_query/3","title":"prepare_query(operation, query, opts)","anchor":"prepare_query/3"},{"id":"put_dynamic_repo/1","title":"put_dynamic_repo(dynamic)","anchor":"put_dynamic_repo/1"},{"id":"query/3","title":"query(sql, params \\\\ [], opts \\\\ [])","anchor":"query/3"},{"id":"query!/3","title":"query!(sql, params \\\\ [], opts \\\\ [])","anchor":"query!/3"},{"id":"query_many/3","title":"query_many(sql, params \\\\ [], opts \\\\ [])","anchor":"query_many/3"},{"id":"query_many!/3","title":"query_many!(sql, params \\\\ [], opts \\\\ [])","anchor":"query_many!/3"},{"id":"reload/2","title":"reload(queryable, opts \\\\ [])","anchor":"reload/2"},{"id":"reload!/2","title":"reload!(queryable, opts \\\\ [])","anchor":"reload!/2"},{"id":"rollback/1","title":"rollback(value)","anchor":"rollback/1"},{"id":"scrivener_defaults/0","title":"scrivener_defaults()","anchor":"scrivener_defaults/0"},{"id":"start_link/1","title":"start_link(opts \\\\ [])","anchor":"start_link/1"},{"id":"stop/1","title":"stop(timeout \\\\ 5000)","anchor":"stop/1"},{"id":"stream/2","title":"stream(queryable, opts \\\\ [])","anchor":"stream/2"},{"id":"to_sql/2","title":"to_sql(operation, queryable)","anchor":"to_sql/2"},{"id":"transaction/2","title":"transaction(fun_or_multi, opts \\\\ [])","anchor":"transaction/2"},{"id":"update/2","title":"update(struct, opts \\\\ [])","anchor":"update/2"},{"id":"update!/2","title":"update!(struct, opts \\\\ [])","anchor":"update!/2"},{"id":"update_all/3","title":"update_all(queryable, updates, opts \\\\ [])","anchor":"update_all/3"}],"key":"functions"}]},{"id":"Lightning.RunSearchForm","group":"","title":"Lightning.RunSearchForm","sections":[]},{"id":"Lightning.SafetyString","group":"","title":"Lightning.SafetyString","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"decode/1","title":"decode(data)","anchor":"decode/1"},{"id":"encode/1","title":"encode(data)","anchor":"encode/1"}],"key":"functions"}]},{"id":"Lightning.Scrubber","group":"","title":"Lightning.Scrubber","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"child_spec/1","title":"child_spec(arg)","anchor":"child_spec/1"},{"id":"encode_samples/1","title":"encode_samples(samples)","anchor":"encode_samples/1"},{"id":"samples/1","title":"samples(agent)","anchor":"samples/1"},{"id":"scrub/2","title":"scrub(agent, lines)","anchor":"scrub/2"},{"id":"start_link/1","title":"start_link(opts)","anchor":"start_link/1"}],"key":"functions"}]},{"id":"Lightning.SetupUtils","group":"","title":"Lightning.SetupUtils","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"add_and_update_runs/3","title":"add_and_update_runs(multi, run_params, output_dataclip_id)","anchor":"add_and_update_runs/3"},{"id":"create_dhis2_project/1","title":"create_dhis2_project(project_users)","anchor":"create_dhis2_project/1"},{"id":"create_openhie_project/1","title":"create_openhie_project(project_users)","anchor":"create_openhie_project/1"},{"id":"create_starter_project/2","title":"create_starter_project(name, project_users)","anchor":"create_starter_project/2"},{"id":"setup_demo/1","title":"setup_demo(opts \\\\ [create_super: false])","anchor":"setup_demo/1"},{"id":"tear_down/1","title":"tear_down(opts \\\\ [destroy_super: false])","anchor":"tear_down/1"}],"key":"functions"}]},{"id":"Lightning.TaskWorker","group":"","title":"Lightning.TaskWorker","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"child_spec/1","title":"child_spec(init_arg)","anchor":"child_spec/1"},{"id":"get_status/1","title":"get_status(worker)","anchor":"get_status/1"},{"id":"start_link/1","title":"start_link(opts \\\\ [name: nil])","anchor":"start_link/1"},{"id":"start_task/2","title":"start_task(worker, fun)","anchor":"start_task/2"}],"key":"functions"}]},{"id":"Lightning.Validators","group":"","title":"Lightning.Validators","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"validate_exclusive/3","title":"validate_exclusive(changeset, fields, message)","anchor":"validate_exclusive/3"},{"id":"validate_one_required/3","title":"validate_one_required(changeset, fields, message)","anchor":"validate_one_required/3"}],"key":"functions"}]},{"id":"Lightning.Vault","group":"","title":"Lightning.Vault","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"child_spec/1","title":"child_spec(init_arg)","anchor":"child_spec/1"},{"id":"start_link/1","title":"start_link(config \\\\ [])","anchor":"start_link/1"}],"key":"functions"}]},{"id":"Lightning.WorkOrder","group":"","title":"Lightning.WorkOrder","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/0","title":"new()","anchor":"new/0"}],"key":"functions"}]},{"id":"Lightning.WorkOrderService","group":"","title":"Lightning.WorkOrderService","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"attempt_updated/1","title":"attempt_updated(run)","anchor":"attempt_updated/1"},{"id":"build/2","title":"build(workflow, reason)","anchor":"build/2"},{"id":"create_manual_workorder/3","title":"create_manual_workorder(job, dataclip, user)","anchor":"create_manual_workorder/3"},{"id":"create_webhook_workorder/2","title":"create_webhook_workorder(edge, dataclip_body)","anchor":"create_webhook_workorder/2"},{"id":"create_work_order/1","title":"create_work_order(attrs \\\\ %{})","anchor":"create_work_order/1"},{"id":"multi_for/3","title":"multi_for(type, edge, dataclip_body)","anchor":"multi_for/3"},{"id":"multi_for_manual/3","title":"multi_for_manual(job, dataclip, user)","anchor":"multi_for_manual/3"},{"id":"retry_attempt_run/2","title":"retry_attempt_run(attempt_run, user)","anchor":"retry_attempt_run/2"},{"id":"retry_attempt_runs/2","title":"retry_attempt_runs(attempt_runs, user)","anchor":"retry_attempt_runs/2"},{"id":"subscribe/1","title":"subscribe(project_id)","anchor":"subscribe/1"}],"key":"functions"}]},{"id":"Lightning.Workflows","group":"","title":"Lightning.Workflows","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_trigger/1","title":"build_trigger(attrs)","anchor":"build_trigger/1"},{"id":"change_workflow/2","title":"change_workflow(workflow, attrs \\\\ %{})","anchor":"change_workflow/2"},{"id":"create_edge/1","title":"create_edge(attrs)","anchor":"create_edge/1"},{"id":"create_workflow/1","title":"create_workflow(attrs \\\\ %{})","anchor":"create_workflow/1"},{"id":"delete_workflow/1","title":"delete_workflow(workflow)","anchor":"delete_workflow/1"},{"id":"get_edge_by_webhook/1","title":"get_edge_by_webhook(path)","anchor":"get_edge_by_webhook/1"},{"id":"get_edges_for_cron_execution/1","title":"get_edges_for_cron_execution(datetime)","anchor":"get_edges_for_cron_execution/1"},{"id":"get_workflow/1","title":"get_workflow(id)","anchor":"get_workflow/1"},{"id":"get_workflow!/1","title":"get_workflow!(id)","anchor":"get_workflow!/1"},{"id":"get_workflows_for/1","title":"get_workflows_for(project)","anchor":"get_workflows_for/1"},{"id":"get_workflows_for_query/1","title":"get_workflows_for_query(project)","anchor":"get_workflows_for_query/1"},{"id":"list_workflows/0","title":"list_workflows()","anchor":"list_workflows/0"},{"id":"mark_for_deletion/2","title":"mark_for_deletion(workflow, attrs \\\\ %{})","anchor":"mark_for_deletion/2"},{"id":"to_project_space/1","title":"to_project_space(workflows)","anchor":"to_project_space/1"},{"id":"update_trigger/2","title":"update_trigger(trigger, attrs)","anchor":"update_trigger/2"},{"id":"update_workflow/2","title":"update_workflow(workflow, attrs)","anchor":"update_workflow/2"}],"key":"functions"}]},{"id":"Lightning.Workflows.Edge","group":"","title":"Lightning.Workflows.Edge","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"edge_condition/0","title":"edge_condition()","anchor":"t:edge_condition/0"},{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"changeset/2","title":"changeset(edge, attrs)","anchor":"changeset/2"},{"id":"new/1","title":"new(attrs)","anchor":"new/1"},{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Workflows.Graph","group":"","title":"Lightning.Workflows.Graph","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"},{"id":"vertex/0","title":"vertex()","anchor":"t:vertex/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(workflow)","anchor":"new/1"},{"id":"remove/2","title":"remove(graph, job_id)","anchor":"remove/2"},{"id":"vertices/1","title":"vertices(graph)","anchor":"vertices/1"}],"key":"functions"}]},{"id":"Lightning.Workflows.Workflow","group":"","title":"Lightning.Workflows.Workflow","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"request_deletion_changeset/2","title":"request_deletion_changeset(workflow, attrs)","anchor":"request_deletion_changeset/2"},{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Workorders.SearchParams","group":"","title":"Lightning.Workorders.SearchParams","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(params)","anchor":"new/1"},{"id":"to_uri_params/1","title":"to_uri_params(search_params)","anchor":"to_uri_params/1"}],"key":"functions"}]},{"id":"LightningWeb","group":"","title":"LightningWeb","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"__using__/1","title":"__using__(which)","anchor":"__using__/1"},{"id":"channel/0","title":"channel()","anchor":"channel/0"},{"id":"component/0","title":"component()","anchor":"component/0"},{"id":"controller/0","title":"controller()","anchor":"controller/0"},{"id":"html/0","title":"html()","anchor":"html/0"},{"id":"live_component/0","title":"live_component()","anchor":"live_component/0"},{"id":"live_view/1","title":"live_view(opts \\\\ [])","anchor":"live_view/1"},{"id":"router/0","title":"router()","anchor":"router/0"},{"id":"static_paths/0","title":"static_paths()","anchor":"static_paths/0"},{"id":"verified_routes/0","title":"verified_routes()","anchor":"verified_routes/0"},{"id":"view/0","title":"view()","anchor":"view/0"}],"key":"functions"}]},{"id":"LightningWeb.API.Helpers","group":"","title":"LightningWeb.API.Helpers","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"pagination_link/3","title":"pagination_link(conn, page, atom)","anchor":"pagination_link/3"},{"id":"pagination_links/2","title":"pagination_links(conn, page)","anchor":"pagination_links/2"},{"id":"url_for/2","title":"url_for(conn, params \\\\ %{})","anchor":"url_for/2"}],"key":"functions"}]},{"id":"LightningWeb.API.JobController","group":"","title":"LightningWeb.API.JobController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"index/2","title":"index(conn, params)","anchor":"index/2"},{"id":"show/2","title":"show(conn, map)","anchor":"show/2"}],"key":"functions"}]},{"id":"LightningWeb.API.ProjectController","group":"","title":"LightningWeb.API.ProjectController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"index/2","title":"index(conn, params)","anchor":"index/2"},{"id":"show/2","title":"show(conn, map)","anchor":"show/2"}],"key":"functions"}]},{"id":"LightningWeb.API.ProvisioningController","group":"","title":"LightningWeb.API.ProvisioningController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create/2","title":"create(conn, params)","anchor":"create/2"},{"id":"show/2","title":"show(conn, params)","anchor":"show/2"}],"key":"functions"}]},{"id":"LightningWeb.API.RunController","group":"","title":"LightningWeb.API.RunController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"index/2","title":"index(conn, params)","anchor":"index/2"},{"id":"show/2","title":"show(conn, map)","anchor":"show/2"}],"key":"functions"}]},{"id":"LightningWeb.AuditLive.Index","group":"","title":"LightningWeb.AuditLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"diff/1","title":"diff(assigns)","anchor":"diff/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.AuthProvidersLive.FormComponent","group":"","title":"LightningWeb.AuthProvidersLive.FormComponent","sections":[]},{"id":"LightningWeb.AuthProvidersLive.Index","group":"","title":"LightningWeb.AuthProvidersLive.Index","sections":[]},{"id":"LightningWeb.ChangesetJSON","group":"","title":"LightningWeb.ChangesetJSON","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"error/1","title":"error(map)","anchor":"error/1"}],"key":"functions"}]},{"id":"LightningWeb.ChangesetView","group":"","title":"LightningWeb.ChangesetView","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"__resource__/0","title":"__resource__()","anchor":"__resource__/0"},{"id":"render/2","title":"render(template, assigns \\\\ %{})","anchor":"render/2"},{"id":"template_not_found/2","title":"template_not_found(template, assigns)","anchor":"template_not_found/2"},{"id":"translate_errors/1","title":"translate_errors(changeset)","anchor":"translate_errors/1"}],"key":"functions"}]},{"id":"LightningWeb.Components.Modal","group":"","title":"LightningWeb.Components.Modal","sections":[]},{"id":"LightningWeb.CredentialLive.Edit","group":"","title":"LightningWeb.CredentialLive.Edit","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"handle_info/2","title":"handle_info(arg, socket)","anchor":"handle_info/2"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.FormComponent","group":"","title":"LightningWeb.CredentialLive.FormComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"credential_transfer/1","title":"credential_transfer(assigns)","anchor":"credential_transfer/1"},{"id":"form_component/1","title":"form_component(assigns)","anchor":"form_component/1"},{"id":"project_credentials/1","title":"project_credentials(assigns)","anchor":"project_credentials/1"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.GoogleSheetsComponent","group":"","title":"LightningWeb.CredentialLive.GoogleSheetsComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"authorize_button/1","title":"authorize_button(assigns)","anchor":"authorize_button/1"},{"id":"disabled_authorize_button/1","title":"disabled_authorize_button(assigns)","anchor":"disabled_authorize_button/1"},{"id":"error_block/1","title":"error_block(assigns)","anchor":"error_block/1"},{"id":"fieldset/1","title":"fieldset(assigns)","anchor":"fieldset/1"},{"id":"userinfo/1","title":"userinfo(assigns)","anchor":"userinfo/1"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.Index","group":"","title":"LightningWeb.CredentialLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.JsonSchemaBodyComponent","group":"","title":"LightningWeb.CredentialLive.JsonSchemaBodyComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"fieldset/1","title":"fieldset(assigns)","anchor":"fieldset/1"},{"id":"schema_input/1","title":"schema_input(assigns)","anchor":"schema_input/1"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.RawBodyComponent","group":"","title":"LightningWeb.CredentialLive.RawBodyComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"fieldset/1","title":"fieldset(assigns)","anchor":"fieldset/1"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.TypePicker","group":"","title":"LightningWeb.CredentialLive.TypePicker","sections":[]},{"id":"LightningWeb.DataclipLive.Edit","group":"","title":"LightningWeb.DataclipLive.Edit","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.DataclipLive.FormComponent","group":"","title":"LightningWeb.DataclipLive.FormComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.DataclipLive.Index","group":"","title":"LightningWeb.DataclipLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.DownloadsController","group":"","title":"LightningWeb.DownloadsController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"download_project_yaml/2","title":"download_project_yaml(conn, map)","anchor":"download_project_yaml/2"}],"key":"functions"}]},{"id":"LightningWeb.Endpoint","group":"","title":"LightningWeb.Endpoint","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"broadcast/3","title":"broadcast(topic, event, msg)","anchor":"broadcast/3"},{"id":"broadcast!/3","title":"broadcast!(topic, event, msg)","anchor":"broadcast!/3"},{"id":"broadcast_from/4","title":"broadcast_from(from, topic, event, msg)","anchor":"broadcast_from/4"},{"id":"broadcast_from!/4","title":"broadcast_from!(from, topic, event, msg)","anchor":"broadcast_from!/4"},{"id":"call/2","title":"call(conn, opts)","anchor":"call/2"},{"id":"child_spec/1","title":"child_spec(opts)","anchor":"child_spec/1"},{"id":"config/2","title":"config(key, default \\\\ nil)","anchor":"config/2"},{"id":"config_change/2","title":"config_change(changed, removed)","anchor":"config_change/2"},{"id":"host/0","title":"host()","anchor":"host/0"},{"id":"init/1","title":"init(opts)","anchor":"init/1"},{"id":"local_broadcast/3","title":"local_broadcast(topic, event, msg)","anchor":"local_broadcast/3"},{"id":"local_broadcast_from/4","title":"local_broadcast_from(from, topic, event, msg)","anchor":"local_broadcast_from/4"},{"id":"path/1","title":"path(path)","anchor":"path/1"},{"id":"script_name/0","title":"script_name()","anchor":"script_name/0"},{"id":"start_link/1","title":"start_link(opts \\\\ [])","anchor":"start_link/1"},{"id":"static_integrity/1","title":"static_integrity(path)","anchor":"static_integrity/1"},{"id":"static_lookup/1","title":"static_lookup(path)","anchor":"static_lookup/1"},{"id":"static_path/1","title":"static_path(path)","anchor":"static_path/1"},{"id":"static_url/0","title":"static_url()","anchor":"static_url/0"},{"id":"struct_url/0","title":"struct_url()","anchor":"struct_url/0"},{"id":"subscribe/2","title":"subscribe(topic, opts \\\\ [])","anchor":"subscribe/2"},{"id":"unsubscribe/1","title":"unsubscribe(topic)","anchor":"unsubscribe/1"},{"id":"url/0","title":"url()","anchor":"url/0"}],"key":"functions"}]},{"id":"LightningWeb.ErrorView","group":"","title":"LightningWeb.ErrorView","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"__resource__/0","title":"__resource__()","anchor":"__resource__/0"},{"id":"render/2","title":"render(template, assigns \\\\ %{})","anchor":"render/2"},{"id":"template_not_found/2","title":"template_not_found(template, assigns)","anchor":"template_not_found/2"}],"key":"functions"}]},{"id":"LightningWeb.FallbackController","group":"","title":"LightningWeb.FallbackController","sections":[]},{"id":"LightningWeb.FirstSetupLive.Superuser","group":"","title":"LightningWeb.FirstSetupLive.Superuser","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.FormHelpers","group":"","title":"LightningWeb.FormHelpers","sections":[]},{"id":"LightningWeb.Gettext","group":"","title":"LightningWeb.Gettext","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"dgettext/3","title":"dgettext(domain, msgid, bindings \\\\ Macro.escape(%{}))","anchor":"dgettext/3"},{"id":"dgettext_noop/2","title":"dgettext_noop(domain, msgid)","anchor":"dgettext_noop/2"},{"id":"dngettext/5","title":"dngettext(domain, msgid, msgid_plural, n, bindings \\\\ Macro.escape(%{}))","anchor":"dngettext/5"},{"id":"dngettext_noop/3","title":"dngettext_noop(domain, msgid, msgid_plural)","anchor":"dngettext_noop/3"},{"id":"dpgettext/4","title":"dpgettext(domain, msgctxt, msgid, bindings \\\\ Macro.escape(%{}))","anchor":"dpgettext/4"},{"id":"dpgettext_noop/3","title":"dpgettext_noop(domain, msgctxt, msgid)","anchor":"dpgettext_noop/3"},{"id":"dpngettext/6","title":"dpngettext(domain, msgctxt, msgid, msgid_plural, n, bindings \\\\ Macro.escape(%{}))","anchor":"dpngettext/6"},{"id":"dpngettext_noop/4","title":"dpngettext_noop(domain, msgctxt, msgid, msgid_plural)","anchor":"dpngettext_noop/4"},{"id":"gettext/2","title":"gettext(msgid, bindings \\\\ Macro.escape(%{}))","anchor":"gettext/2"},{"id":"gettext_comment/1","title":"gettext_comment(comment)","anchor":"gettext_comment/1"},{"id":"gettext_noop/1","title":"gettext_noop(msgid)","anchor":"gettext_noop/1"},{"id":"handle_missing_bindings/2","title":"handle_missing_bindings(exception, incomplete)","anchor":"handle_missing_bindings/2"},{"id":"handle_missing_plural_translation/7","title":"handle_missing_plural_translation(locale, domain, msgctxt, msgid, msgid_plural, n, bindings)","anchor":"handle_missing_plural_translation/7"},{"id":"handle_missing_translation/5","title":"handle_missing_translation(locale, domain, msgctxt, msgid, bindings)","anchor":"handle_missing_translation/5"},{"id":"lgettext/5","title":"lgettext(locale, domain, msgctxt \\\\ nil, msgid, bindings)","anchor":"lgettext/5"},{"id":"lngettext/7","title":"lngettext(locale, domain, msgctxt \\\\ nil, msgid, msgid_plural, n, bindings)","anchor":"lngettext/7"},{"id":"ngettext/4","title":"ngettext(msgid, msgid_plural, n, bindings \\\\ Macro.escape(%{}))","anchor":"ngettext/4"},{"id":"ngettext_noop/2","title":"ngettext_noop(msgid, msgid_plural)","anchor":"ngettext_noop/2"},{"id":"pgettext/3","title":"pgettext(msgctxt, msgid, bindings \\\\ Macro.escape(%{}))","anchor":"pgettext/3"},{"id":"pgettext_noop/2","title":"pgettext_noop(msgid, context)","anchor":"pgettext_noop/2"},{"id":"pngettext/5","title":"pngettext(msgctxt, msgid, msgid_plural, n, bindings \\\\ Macro.escape(%{}))","anchor":"pngettext/5"},{"id":"pngettext_noop/3","title":"pngettext_noop(msgctxt, msgid, msgid_plural)","anchor":"pngettext_noop/3"}],"key":"functions"}]},{"id":"LightningWeb.HealthCheck","group":"","title":"LightningWeb.HealthCheck","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"call/2","title":"call(conn, opts)","anchor":"call/2"},{"id":"init/1","title":"init(opts)","anchor":"init/1"}],"key":"functions"}]},{"id":"LightningWeb.Hooks","group":"","title":"LightningWeb.Hooks","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"on_mount/4","title":"on_mount(atom, arg2, session, socket)","anchor":"on_mount/4"}],"key":"functions"}]},{"id":"LightningWeb.InitAssigns","group":"","title":"LightningWeb.InitAssigns","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"on_mount/4","title":"on_mount(atom, params, session, socket)","anchor":"on_mount/4"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.AdaptorPicker","group":"","title":"LightningWeb.JobLive.AdaptorPicker","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"display_name_for_adaptor/1","title":"display_name_for_adaptor(name)","anchor":"display_name_for_adaptor/1"},{"id":"get_adaptor_version_options/1","title":"get_adaptor_version_options(adaptor)","anchor":"get_adaptor_version_options/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.CredentialPicker","group":"","title":"LightningWeb.JobLive.CredentialPicker","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.CronSetupComponent","group":"","title":"LightningWeb.JobLive.CronSetupComponent","sections":[{"id":"Usage","anchor":"module-usage"}],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_cron_expression/2","title":"build_cron_expression(prev, next)","anchor":"build_cron_expression/2"},{"id":"frequency_field/1","title":"frequency_field(assigns)","anchor":"frequency_field/1"},{"id":"get_cron_data/1","title":"get_cron_data(cron_expression)","anchor":"get_cron_data/1"},{"id":"hour_field/1","title":"hour_field(assigns)","anchor":"hour_field/1"},{"id":"minute_field/1","title":"minute_field(assigns)","anchor":"minute_field/1"},{"id":"monthday_field/1","title":"monthday_field(assigns)","anchor":"monthday_field/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"},{"id":"time_field/1","title":"time_field(assigns)","anchor":"time_field/1"},{"id":"weekday_field/1","title":"weekday_field(assigns)","anchor":"weekday_field/1"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.JobBuilder","group":"","title":"LightningWeb.JobLive.JobBuilder","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"delete_title/2","title":"delete_title(is_deletable, can_delete_job)","anchor":"delete_title/2"},{"id":"follow_run/2","title":"follow_run(job_id, attempt_run)","anchor":"follow_run/2"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"},{"id":"send_adaptor/2","title":"send_adaptor(job_id, adaptor)","anchor":"send_adaptor/2"},{"id":"send_credential/2","title":"send_credential(job_id, credential)","anchor":"send_credential/2"},{"id":"update_cron_expression/2","title":"update_cron_expression(job_id, cron_expression)","anchor":"update_cron_expression/2"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.JobBuilderComponents","group":"","title":"LightningWeb.JobLive.JobBuilderComponents","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"job_editor_component/1","title":"job_editor_component(assigns)","anchor":"job_editor_component/1"},{"id":"trigger_picker/1","title":"trigger_picker(assigns)","anchor":"trigger_picker/1"},{"id":"when_invalid/1","title":"when_invalid(assigns)","anchor":"when_invalid/1"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.ManualRunComponent","group":"","title":"LightningWeb.JobLive.ManualRunComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder","group":"","title":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"changeset/2","title":"changeset(map, attrs)","anchor":"changeset/2"}],"key":"functions"}]},{"id":"LightningWeb.LiveHelpers","group":"","title":"LightningWeb.LiveHelpers","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"display_short_uuid/1","title":"display_short_uuid(uuid_string)","anchor":"display_short_uuid/1"},{"id":"fade_in/1","title":"fade_in(opts \\\\ [])","anchor":"fade_in/1"},{"id":"fade_out/1","title":"fade_out(opts \\\\ [])","anchor":"fade_out/1"},{"id":"live_error_block/1","title":"live_error_block(assigns)","anchor":"live_error_block/1"},{"id":"live_info_block/1","title":"live_info_block(assigns)","anchor":"live_info_block/1"},{"id":"live_nav_block/1","title":"live_nav_block(assigns)","anchor":"live_nav_block/1"}],"key":"functions"}]},{"id":"LightningWeb.ModalPortal","group":"","title":"LightningWeb.ModalPortal","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"close_modal/0","title":"close_modal()","anchor":"close_modal/0"},{"id":"handle_event/3","title":"handle_event(binary, _, socket)","anchor":"handle_event/3"},{"id":"on_hide/2","title":"on_hide(close_modal_target \\\\ nil, id \\\\ \"modal\")","anchor":"on_hide/2"},{"id":"on_show/2","title":"on_show(js \\\\ %JS{}, id)","anchor":"on_show/2"},{"id":"open_modal/2","title":"open_modal(module, attrs)","anchor":"open_modal/2"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"},{"id":"update/2","title":"update(assigns, socket)","anchor":"update/2"}],"key":"functions"}]},{"id":"LightningWeb.OauthCredentialHelper","group":"","title":"LightningWeb.OauthCredentialHelper","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"broadcast/2","title":"broadcast(subscription_id, msg)","anchor":"broadcast/2"},{"id":"broadcast_forward/3","title":"broadcast_forward(subscription_id, mod, opts)","anchor":"broadcast_forward/3"},{"id":"build_state/3","title":"build_state(subscription_id, mod, component_id)","anchor":"build_state/3"},{"id":"decode_state/1","title":"decode_state(state)","anchor":"decode_state/1"},{"id":"subscribe/1","title":"subscribe(subscription_id)","anchor":"subscribe/1"}],"key":"functions"}]},{"id":"LightningWeb.OidcController","group":"","title":"LightningWeb.OidcController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"new/2","title":"new(conn, map)","anchor":"new/2"},{"id":"show/2","title":"show(conn, map)","anchor":"show/2"}],"key":"functions"}]},{"id":"LightningWeb.PageView","group":"","title":"LightningWeb.PageView","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"__resource__/0","title":"__resource__()","anchor":"__resource__/0"},{"id":"render/2","title":"render(template, assigns \\\\ %{})","anchor":"render/2"},{"id":"template_not_found/2","title":"template_not_found(template, assigns)","anchor":"template_not_found/2"}],"key":"functions"}]},{"id":"LightningWeb.Pagination","group":"","title":"LightningWeb.Pagination","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"page_link/1","title":"page_link(assigns)","anchor":"page_link/1"},{"id":"pagination_bar/1","title":"pagination_bar(assigns)","anchor":"pagination_bar/1"},{"id":"raw_pagination_links/2","title":"raw_pagination_links(paginator, options \\\\ [])","anchor":"raw_pagination_links/2"}],"key":"functions"}]},{"id":"LightningWeb.Plugs.FirstSetup","group":"","title":"LightningWeb.Plugs.FirstSetup","sections":[]},{"id":"LightningWeb.ProfileLive.Edit","group":"","title":"LightningWeb.ProfileLive.Edit","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProfileLive.FormComponent","group":"","title":"LightningWeb.ProfileLive.FormComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProfileLive.MfaComponent","group":"","title":"LightningWeb.ProfileLive.MfaComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProjectLive.FormComponent","group":"","title":"LightningWeb.ProjectLive.FormComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProjectLive.Index","group":"","title":"LightningWeb.ProjectLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"delete_action/1","title":"delete_action(assigns)","anchor":"delete_action/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProjectLive.MFARequired","group":"","title":"LightningWeb.ProjectLive.MFARequired","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"on_mount/4","title":"on_mount(atom, params, session, socket)","anchor":"on_mount/4"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProjectLive.Settings","group":"","title":"LightningWeb.ProjectLive.Settings","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"digest/1","title":"digest(assigns)","anchor":"digest/1"},{"id":"failure_alert/1","title":"failure_alert(assigns)","anchor":"failure_alert/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"},{"id":"role/1","title":"role(assigns)","anchor":"role/1"},{"id":"user/1","title":"user(assigns)","anchor":"user/1"}],"key":"functions"}]},{"id":"LightningWeb.RouteHelpers","group":"","title":"LightningWeb.RouteHelpers","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"oidc_callback_url/0","title":"oidc_callback_url()","anchor":"oidc_callback_url/0"},{"id":"show_run_url/2","title":"show_run_url(project_id, run_id)","anchor":"show_run_url/2"}],"key":"functions"}]},{"id":"LightningWeb.Router","group":"","title":"LightningWeb.Router","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"api/2","title":"api(conn, _)","anchor":"api/2"},{"id":"browser/2","title":"browser(conn, _)","anchor":"browser/2"},{"id":"call/2","title":"call(conn, opts)","anchor":"call/2"},{"id":"init/1","title":"init(opts)","anchor":"init/1"},{"id":"storybook_assets/2","title":"storybook_assets(conn, _)","anchor":"storybook_assets/2"},{"id":"storybook_browser/2","title":"storybook_browser(conn, _)","anchor":"storybook_browser/2"}],"key":"functions"}]},{"id":"LightningWeb.RunLive.Index","group":"","title":"LightningWeb.RunLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"checked/2","title":"checked(changeset, id)","anchor":"checked/2"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.RunLive.RerunJobComponent","group":"","title":"LightningWeb.RunLive.RerunJobComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"handle_event/3","title":"handle_event(binary, map, socket)","anchor":"handle_event/3"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"},{"id":"update/2","title":"update(assigns, socket)","anchor":"update/2"}],"key":"functions"}]},{"id":"LightningWeb.RunLive.RunViewerLive","group":"","title":"LightningWeb.RunLive.RunViewerLive","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"handle_info/2","title":"handle_info(broadcast, socket)","anchor":"handle_info/2"}],"key":"functions"}]},{"id":"LightningWeb.RunLive.Show","group":"","title":"LightningWeb.RunLive.Show","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"apply_action/3","title":"apply_action(socket, atom, map)","anchor":"apply_action/3"}],"key":"functions"}]},{"id":"LightningWeb.RunLive.WorkOrderComponent","group":"","title":"LightningWeb.RunLive.WorkOrderComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.Telemetry","group":"","title":"LightningWeb.Telemetry","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"child_spec/1","title":"child_spec(init_arg)","anchor":"child_spec/1"},{"id":"metrics/0","title":"metrics()","anchor":"metrics/0"},{"id":"start_link/1","title":"start_link(arg)","anchor":"start_link/1"}],"key":"functions"}]},{"id":"LightningWeb.TokensLive.Index","group":"","title":"LightningWeb.TokensLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.UserAuth","group":"","title":"LightningWeb.UserAuth","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"authenticate_bearer/2","title":"authenticate_bearer(conn, opts)","anchor":"authenticate_bearer/2"},{"id":"fetch_current_user/2","title":"fetch_current_user(conn, opts)","anchor":"fetch_current_user/2"},{"id":"log_in_user/2","title":"log_in_user(conn, user)","anchor":"log_in_user/2"},{"id":"log_out_user/1","title":"log_out_user(conn)","anchor":"log_out_user/1"},{"id":"mark_totp_pending/1","title":"mark_totp_pending(conn)","anchor":"mark_totp_pending/1"},{"id":"new_session/2","title":"new_session(conn, token)","anchor":"new_session/2"},{"id":"redirect_if_user_is_authenticated/2","title":"redirect_if_user_is_authenticated(conn, opts)","anchor":"redirect_if_user_is_authenticated/2"},{"id":"redirect_with_return_to/2","title":"redirect_with_return_to(conn, params \\\\ %{})","anchor":"redirect_with_return_to/2"},{"id":"require_authenticated_user/2","title":"require_authenticated_user(conn, opts)","anchor":"require_authenticated_user/2"},{"id":"totp_pending?/1","title":"totp_pending?(conn)","anchor":"totp_pending?/1"},{"id":"totp_validated/1","title":"totp_validated(conn)","anchor":"totp_validated/1"}],"key":"functions"}]},{"id":"LightningWeb.UserConfirmationController","group":"","title":"LightningWeb.UserConfirmationController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"confirm_email/2","title":"confirm_email(conn, map)","anchor":"confirm_email/2"},{"id":"create/2","title":"create(conn, map)","anchor":"create/2"},{"id":"edit/2","title":"edit(conn, map)","anchor":"edit/2"},{"id":"new/2","title":"new(conn, params)","anchor":"new/2"},{"id":"update/2","title":"update(conn, map)","anchor":"update/2"}],"key":"functions"}]},{"id":"LightningWeb.UserLive.Edit","group":"","title":"LightningWeb.UserLive.Edit","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.UserLive.FormComponent","group":"","title":"LightningWeb.UserLive.FormComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.UserLive.Index","group":"","title":"LightningWeb.UserLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"delete_action/1","title":"delete_action(assigns)","anchor":"delete_action/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.UserRegistrationController","group":"","title":"LightningWeb.UserRegistrationController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create/2","title":"create(conn, map)","anchor":"create/2"},{"id":"new/2","title":"new(conn, params)","anchor":"new/2"}],"key":"functions"}]},{"id":"LightningWeb.UserResetPasswordController","group":"","title":"LightningWeb.UserResetPasswordController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create/2","title":"create(conn, map)","anchor":"create/2"},{"id":"edit/2","title":"edit(conn, params)","anchor":"edit/2"},{"id":"new/2","title":"new(conn, params)","anchor":"new/2"},{"id":"update/2","title":"update(conn, map)","anchor":"update/2"}],"key":"functions"}]},{"id":"LightningWeb.UserSessionController","group":"","title":"LightningWeb.UserSessionController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"auth_handler_url/0","title":"auth_handler_url()","anchor":"auth_handler_url/0"},{"id":"create/2","title":"create(conn, map)","anchor":"create/2"},{"id":"delete/2","title":"delete(conn, params)","anchor":"delete/2"},{"id":"exchange_token/2","title":"exchange_token(conn, map)","anchor":"exchange_token/2"},{"id":"new/2","title":"new(conn, params)","anchor":"new/2"}],"key":"functions"}]},{"id":"LightningWeb.UserTOTPController","group":"","title":"LightningWeb.UserTOTPController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create/2","title":"create(conn, map)","anchor":"create/2"},{"id":"new/2","title":"new(conn, params)","anchor":"new/2"}],"key":"functions"}]},{"id":"LightningWeb.WebhooksController","group":"","title":"LightningWeb.WebhooksController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create/2","title":"create(conn, map)","anchor":"create/2"}],"key":"functions"}]},{"id":"LightningWeb.WorkflowLive.EditorPane","group":"","title":"LightningWeb.WorkflowLive.EditorPane","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.WorkflowLive.JobView","group":"","title":"LightningWeb.WorkflowLive.JobView","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"container/1","title":"container(assigns)","anchor":"container/1"},{"id":"input_pane/1","title":"input_pane(assigns)","anchor":"input_pane/1"},{"id":"job_edit_view/1","title":"job_edit_view(assigns)","anchor":"job_edit_view/1"}],"key":"functions"}]},{"id":"LightningWeb.WorkflowNewLive.WorkflowParams","group":"","title":"LightningWeb.WorkflowNewLive.WorkflowParams","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"apply_form_params/2","title":"apply_form_params(current_params, form_params)","anchor":"apply_form_params/2"},{"id":"apply_patches/2","title":"apply_patches(current_params, patches)","anchor":"apply_patches/2"},{"id":"to_map/1","title":"to_map(changeset)","anchor":"to_map/1"},{"id":"to_patches/2","title":"to_patches(initial_params, target_params)","anchor":"to_patches/2"}],"key":"functions"}]},{"id":"ObanPruner","group":"","title":"ObanPruner","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"perform/1","title":"perform(job)","anchor":"perform/1"}],"key":"functions"}]},{"id":"Storybook.Root","group":"","title":"Storybook.Root","sections":[]},{"id":"Lightning.Accounts","group":"Accounts","title":"Lightning.Accounts","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"apply_user_email/3","title":"apply_user_email(user, password, attrs)","anchor":"apply_user_email/3"},{"id":"cancel_scheduled_deletion/1","title":"cancel_scheduled_deletion(user_id)","anchor":"cancel_scheduled_deletion/1"},{"id":"change_scheduled_deletion/2","title":"change_scheduled_deletion(user, attrs \\\\ %{})","anchor":"change_scheduled_deletion/2"},{"id":"change_superuser_registration/1","title":"change_superuser_registration(attrs \\\\ %{})","anchor":"change_superuser_registration/1"},{"id":"change_user_details/2","title":"change_user_details(user, attrs \\\\ %{})","anchor":"change_user_details/2"},{"id":"change_user_email/2","title":"change_user_email(user, attrs \\\\ %{})","anchor":"change_user_email/2"},{"id":"change_user_password/2","title":"change_user_password(user, attrs \\\\ %{})","anchor":"change_user_password/2"},{"id":"change_user_registration/1","title":"change_user_registration(attrs \\\\ %{})","anchor":"change_user_registration/1"},{"id":"confirm_user/1","title":"confirm_user(token)","anchor":"confirm_user/1"},{"id":"delete_auth_token/1","title":"delete_auth_token(token)","anchor":"delete_auth_token/1"},{"id":"delete_session_token/1","title":"delete_session_token(token)","anchor":"delete_session_token/1"},{"id":"delete_token/1","title":"delete_token(token)","anchor":"delete_token/1"},{"id":"delete_user/1","title":"delete_user(user)","anchor":"delete_user/1"},{"id":"delete_user_totp/1","title":"delete_user_totp(totp)","anchor":"delete_user_totp/1"},{"id":"deliver_update_email_instructions/3","title":"deliver_update_email_instructions(user, current_email, update_email_url_fun)","anchor":"deliver_update_email_instructions/3"},{"id":"deliver_user_confirmation_instructions/2","title":"deliver_user_confirmation_instructions(user, confirmation_url_fun)","anchor":"deliver_user_confirmation_instructions/2"},{"id":"deliver_user_confirmation_instructions/3","title":"deliver_user_confirmation_instructions(registerer, user, confirmation_url_fun)","anchor":"deliver_user_confirmation_instructions/3"},{"id":"deliver_user_reset_password_instructions/2","title":"deliver_user_reset_password_instructions(user, reset_password_url_fun)","anchor":"deliver_user_reset_password_instructions/2"},{"id":"exchange_auth_token/1","title":"exchange_auth_token(auth_token)","anchor":"exchange_auth_token/1"},{"id":"generate_api_token/1","title":"generate_api_token(user)","anchor":"generate_api_token/1"},{"id":"generate_auth_token/1","title":"generate_auth_token(user)","anchor":"generate_auth_token/1"},{"id":"generate_user_session_token/1","title":"generate_user_session_token(user)","anchor":"generate_user_session_token/1"},{"id":"get_token!/1","title":"get_token!(id)","anchor":"get_token!/1"},{"id":"get_user!/1","title":"get_user!(id)","anchor":"get_user!/1"},{"id":"get_user_by_api_token/1","title":"get_user_by_api_token(token)","anchor":"get_user_by_api_token/1"},{"id":"get_user_by_auth_token/1","title":"get_user_by_auth_token(token)","anchor":"get_user_by_auth_token/1"},{"id":"get_user_by_email/1","title":"get_user_by_email(email)","anchor":"get_user_by_email/1"},{"id":"get_user_by_email_and_password/2","title":"get_user_by_email_and_password(email, password)","anchor":"get_user_by_email_and_password/2"},{"id":"get_user_by_reset_password_token/1","title":"get_user_by_reset_password_token(token)","anchor":"get_user_by_reset_password_token/1"},{"id":"get_user_by_session_token/1","title":"get_user_by_session_token(token)","anchor":"get_user_by_session_token/1"},{"id":"get_user_totp/1","title":"get_user_totp(user)","anchor":"get_user_totp/1"},{"id":"get_users_to_alert_for_project/1","title":"get_users_to_alert_for_project(map)","anchor":"get_users_to_alert_for_project/1"},{"id":"has_activity_in_projects?/1","title":"has_activity_in_projects?(user)","anchor":"has_activity_in_projects?/1"},{"id":"has_one_superuser?/0","title":"has_one_superuser?()","anchor":"has_one_superuser?/0"},{"id":"list_api_tokens/1","title":"list_api_tokens(user)","anchor":"list_api_tokens/1"},{"id":"list_users/0","title":"list_users()","anchor":"list_users/0"},{"id":"perform/1","title":"perform(job)","anchor":"perform/1"},{"id":"purge_user/1","title":"purge_user(id)","anchor":"purge_user/1"},{"id":"register_superuser/1","title":"register_superuser(attrs)","anchor":"register_superuser/1"},{"id":"register_user/1","title":"register_user(attrs)","anchor":"register_user/1"},{"id":"reset_user_password/2","title":"reset_user_password(user, attrs)","anchor":"reset_user_password/2"},{"id":"schedule_user_deletion/2","title":"schedule_user_deletion(user, email)","anchor":"schedule_user_deletion/2"},{"id":"update_user_details/2","title":"update_user_details(user, attrs \\\\ %{})","anchor":"update_user_details/2"},{"id":"update_user_email/2","title":"update_user_email(user, token)","anchor":"update_user_email/2"},{"id":"update_user_password/3","title":"update_user_password(user, password, attrs)","anchor":"update_user_password/3"},{"id":"upsert_user_totp/2","title":"upsert_user_totp(totp, attrs)","anchor":"upsert_user_totp/2"},{"id":"valid_user_totp?/2","title":"valid_user_totp?(user, code)","anchor":"valid_user_totp?/2"},{"id":"validate_change_user_email/2","title":"validate_change_user_email(user, params)","anchor":"validate_change_user_email/2"}],"key":"functions"}]},{"id":"Lightning.Accounts.User","group":"Accounts","title":"Lightning.Accounts.User","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"confirm_changeset/1","title":"confirm_changeset(user)","anchor":"confirm_changeset/1"},{"id":"details_changeset/2","title":"details_changeset(user, attrs)","anchor":"details_changeset/2"},{"id":"email_changeset/2","title":"email_changeset(user, attrs)","anchor":"email_changeset/2"},{"id":"password_changeset/3","title":"password_changeset(user, attrs, opts \\\\ [])","anchor":"password_changeset/3"},{"id":"scheduled_deletion_changeset/2","title":"scheduled_deletion_changeset(user, attrs)","anchor":"scheduled_deletion_changeset/2"},{"id":"superuser_registration_changeset/2","title":"superuser_registration_changeset(attrs, opts \\\\ [])","anchor":"superuser_registration_changeset/2"},{"id":"user_registration_changeset/2","title":"user_registration_changeset(attrs, opts \\\\ [])","anchor":"user_registration_changeset/2"},{"id":"valid_password?/2","title":"valid_password?(arg1, password)","anchor":"valid_password?/2"},{"id":"validate_current_password/2","title":"validate_current_password(changeset, password)","anchor":"validate_current_password/2"}],"key":"functions"}]},{"id":"Lightning.Accounts.User.RolesEnum","group":"Accounts","title":"Lightning.Accounts.User.RolesEnum","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"cast/1","title":"cast(arg1)","anchor":"cast/1"},{"id":"create_type/0","title":"create_type()","anchor":"create_type/0"},{"id":"drop_type/0","title":"drop_type()","anchor":"drop_type/0"},{"id":"dump/1","title":"dump(term)","anchor":"dump/1"},{"id":"embed_as/1","title":"embed_as(_)","anchor":"embed_as/1"},{"id":"equal?/2","title":"equal?(term1, term2)","anchor":"equal?/2"},{"id":"load/1","title":"load(arg1)","anchor":"load/1"},{"id":"schema/0","title":"schema()","anchor":"schema/0"},{"id":"schemaless_type/0","title":"schemaless_type()","anchor":"schemaless_type/0"},{"id":"type/0","title":"type()","anchor":"type/0"},{"id":"valid_value?/1","title":"valid_value?(value)","anchor":"valid_value?/1"}],"key":"functions"}]},{"id":"Lightning.Accounts.UserNotifier","group":"Accounts","title":"Lightning.Accounts.UserNotifier","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_digest_url/3","title":"build_digest_url(workflow, start_date, end_date)","anchor":"build_digest_url/3"},{"id":"deliver_confirmation_instructions/2","title":"deliver_confirmation_instructions(user, url)","anchor":"deliver_confirmation_instructions/2"},{"id":"deliver_confirmation_instructions/3","title":"deliver_confirmation_instructions(enroller, user, url)","anchor":"deliver_confirmation_instructions/3"},{"id":"deliver_project_addition_notification/2","title":"deliver_project_addition_notification(user, project)","anchor":"deliver_project_addition_notification/2"},{"id":"deliver_project_digest/2","title":"deliver_project_digest(digest_data, params)","anchor":"deliver_project_digest/2"},{"id":"deliver_reset_password_instructions/2","title":"deliver_reset_password_instructions(user, url)","anchor":"deliver_reset_password_instructions/2"},{"id":"deliver_update_email_instructions/2","title":"deliver_update_email_instructions(email, url)","anchor":"deliver_update_email_instructions/2"},{"id":"deliver_update_email_warning/2","title":"deliver_update_email_warning(email, new_email)","anchor":"deliver_update_email_warning/2"},{"id":"notify_project_deletion/2","title":"notify_project_deletion(user, project)","anchor":"notify_project_deletion/2"},{"id":"send_deletion_notification_email/1","title":"send_deletion_notification_email(user)","anchor":"send_deletion_notification_email/1"}],"key":"functions"}]},{"id":"Lightning.Accounts.UserTOTP","group":"Accounts","title":"Lightning.Accounts.UserTOTP","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"changeset/2","title":"changeset(totp, attrs)","anchor":"changeset/2"},{"id":"valid_totp?/2","title":"valid_totp?(totp, code)","anchor":"valid_totp?/2"}],"key":"functions"}]},{"id":"Lightning.Accounts.UserToken","group":"Accounts","title":"Lightning.Accounts.UserToken","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_email_token/3","title":"build_email_token(user, context, sent_to)","anchor":"build_email_token/3"},{"id":"build_token/2","title":"build_token(user, context)","anchor":"build_token/2"},{"id":"changeset/2","title":"changeset(user_token, attrs)","anchor":"changeset/2"},{"id":"generate_and_sign/2","title":"generate_and_sign(extra_claims \\\\ %{}, key \\\\ __default_signer__())","anchor":"generate_and_sign/2"},{"id":"generate_and_sign!/2","title":"generate_and_sign!(extra_claims \\\\ %{}, key \\\\ __default_signer__())","anchor":"generate_and_sign!/2"},{"id":"last_used_changeset/1","title":"last_used_changeset(user)","anchor":"last_used_changeset/1"},{"id":"token_and_context_query/2","title":"token_and_context_query(token, context)","anchor":"token_and_context_query/2"},{"id":"user_and_contexts_query/2","title":"user_and_contexts_query(user, contexts)","anchor":"user_and_contexts_query/2"},{"id":"verify_and_validate/3","title":"verify_and_validate(bearer_token, key \\\\ __default_signer__(), context \\\\ %{})","anchor":"verify_and_validate/3"},{"id":"verify_and_validate!/3","title":"verify_and_validate!(bearer_token, key \\\\ __default_signer__(), context \\\\ %{})","anchor":"verify_and_validate!/3"},{"id":"verify_change_email_token_query/2","title":"verify_change_email_token_query(token, context)","anchor":"verify_change_email_token_query/2"},{"id":"verify_email_token_query/2","title":"verify_email_token_query(token, context)","anchor":"verify_email_token_query/2"},{"id":"verify_token_query/2","title":"verify_token_query(token, context)","anchor":"verify_token_query/2"}],"key":"functions"}]},{"id":"Lightning.Credentials","group":"Credentials","title":"Lightning.Credentials","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"change_credential/2","title":"change_credential(credential, attrs \\\\ %{})","anchor":"change_credential/2"},{"id":"create_credential/1","title":"create_credential(attrs \\\\ %{})","anchor":"create_credential/1"},{"id":"delete_credential/1","title":"delete_credential(credential)","anchor":"delete_credential/1"},{"id":"get_credential!/1","title":"get_credential!(id)","anchor":"get_credential!/1"},{"id":"invalid_projects_for_user/2","title":"invalid_projects_for_user(credential_id, user_id)","anchor":"invalid_projects_for_user/2"},{"id":"list_credentials/0","title":"list_credentials()","anchor":"list_credentials/0"},{"id":"list_credentials/1","title":"list_credentials(project)","anchor":"list_credentials/1"},{"id":"list_credentials_for_user/1","title":"list_credentials_for_user(user_id)","anchor":"list_credentials_for_user/1"},{"id":"maybe_refresh_token/1","title":"maybe_refresh_token(credential)","anchor":"maybe_refresh_token/1"},{"id":"sensitive_values_for/1","title":"sensitive_values_for(id)","anchor":"sensitive_values_for/1"},{"id":"update_credential/2","title":"update_credential(credential, attrs)","anchor":"update_credential/2"}],"key":"functions"}]},{"id":"Lightning.Credentials.Audit","group":"Credentials","title":"Lightning.Credentials.Audit","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"event/4","title":"event(event, row_id, actor_id, metadata \\\\ %{})","anchor":"event/4"},{"id":"save/1","title":"save(changes)","anchor":"save/1"}],"key":"functions"}]},{"id":"Lightning.Credentials.Credential","group":"Credentials","title":"Lightning.Credentials.Credential","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"}]},{"id":"Lightning.Credentials.Schema","group":"Credentials","title":"Lightning.Credentials.Schema","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/2","title":"new(body, name \\\\ nil)","anchor":"new/2"},{"id":"properties/2","title":"properties(schema, field)","anchor":"properties/2"},{"id":"required?/2","title":"required?(schema, field)","anchor":"required?/2"},{"id":"validate/2","title":"validate(changeset, schema)","anchor":"validate/2"}],"key":"functions"}]},{"id":"Lightning.Credentials.SchemaDocument","group":"Credentials","title":"Lightning.Credentials.SchemaDocument","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"changeset/3","title":"changeset(document, attrs, list)","anchor":"changeset/3"}],"key":"functions"}]},{"id":"Lightning.Credentials.SensitiveValues","group":"Credentials","title":"Lightning.Credentials.SensitiveValues","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"pairs/0","title":"pairs()","anchor":"t:pairs/0"},{"id":"raw_pairs/0","title":"raw_pairs()","anchor":"t:raw_pairs/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"flatten_map/1","title":"flatten_map(item)","anchor":"flatten_map/1"},{"id":"secret_values/1","title":"secret_values(map)","anchor":"secret_values/1"}],"key":"functions"}]},{"id":"Lightning.Invocation","group":"Invocations","title":"Lightning.Invocation","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"change_dataclip/2","title":"change_dataclip(dataclip, attrs \\\\ %{})","anchor":"change_dataclip/2"},{"id":"change_run/2","title":"change_run(run, attrs \\\\ %{})","anchor":"change_run/2"},{"id":"create_dataclip/1","title":"create_dataclip(attrs \\\\ %{})","anchor":"create_dataclip/1"},{"id":"create_log_line/2","title":"create_log_line(run, body)","anchor":"create_log_line/2"},{"id":"create_run/1","title":"create_run(attrs \\\\ %{})","anchor":"create_run/1"},{"id":"delete_dataclip/1","title":"delete_dataclip(dataclip)","anchor":"delete_dataclip/1"},{"id":"delete_run/1","title":"delete_run(run)","anchor":"delete_run/1"},{"id":"filter_run_body_and_logs_where/2","title":"filter_run_body_and_logs_where(search_term, search_fields)","anchor":"filter_run_body_and_logs_where/2"},{"id":"filter_run_finished_after_where/1","title":"filter_run_finished_after_where(date_after)","anchor":"filter_run_finished_after_where/1"},{"id":"filter_run_finished_before_where/1","title":"filter_run_finished_before_where(date_before)","anchor":"filter_run_finished_before_where/1"},{"id":"filter_run_status_where/1","title":"filter_run_status_where(statuses)","anchor":"filter_run_status_where/1"},{"id":"filter_workflow_where/1","title":"filter_workflow_where(workflow_id)","anchor":"filter_workflow_where/1"},{"id":"filter_workorder_insert_after_where/1","title":"filter_workorder_insert_after_where(date_after)","anchor":"filter_workorder_insert_after_where/1"},{"id":"filter_workorder_insert_before_where/1","title":"filter_workorder_insert_before_where(date_before)","anchor":"filter_workorder_insert_before_where/1"},{"id":"get_dataclip/1","title":"get_dataclip(run)","anchor":"get_dataclip/1"},{"id":"get_dataclip!/1","title":"get_dataclip!(id)","anchor":"get_dataclip!/1"},{"id":"get_dataclip_query/1","title":"get_dataclip_query(run)","anchor":"get_dataclip_query/1"},{"id":"get_result_dataclip_query/1","title":"get_result_dataclip_query(run)","anchor":"get_result_dataclip_query/1"},{"id":"get_run!/1","title":"get_run!(id)","anchor":"get_run!/1"},{"id":"get_run_with_job!/1","title":"get_run_with_job!(id)","anchor":"get_run_with_job!/1"},{"id":"get_workorders_by_ids/1","title":"get_workorders_by_ids(ids)","anchor":"get_workorders_by_ids/1"},{"id":"list_dataclips/0","title":"list_dataclips()","anchor":"list_dataclips/0"},{"id":"list_dataclips/1","title":"list_dataclips(project)","anchor":"list_dataclips/1"},{"id":"list_dataclips_for_job/1","title":"list_dataclips_for_job(job)","anchor":"list_dataclips_for_job/1"},{"id":"list_dataclips_query/1","title":"list_dataclips_query(project)","anchor":"list_dataclips_query/1"},{"id":"list_runs/0","title":"list_runs()","anchor":"list_runs/0"},{"id":"list_runs_for_project/2","title":"list_runs_for_project(project, params \\\\ %{})","anchor":"list_runs_for_project/2"},{"id":"list_runs_for_project_query/1","title":"list_runs_for_project_query(project)","anchor":"list_runs_for_project_query/1"},{"id":"list_work_orders_for_project_query/2","title":"list_work_orders_for_project_query(project, search_params)","anchor":"list_work_orders_for_project_query/2"},{"id":"search_workorders/1","title":"search_workorders(project)","anchor":"search_workorders/1"},{"id":"search_workorders/3","title":"search_workorders(project, filter, params \\\\ %{})","anchor":"search_workorders/3"},{"id":"update_dataclip/2","title":"update_dataclip(dataclip, attrs)","anchor":"update_dataclip/2"},{"id":"update_run/2","title":"update_run(run, attrs)","anchor":"update_run/2"},{"id":"with_attempts/1","title":"with_attempts(query)","anchor":"with_attempts/1"}],"key":"functions"}]},{"id":"Lightning.Invocation.Dataclip","group":"Invocations","title":"Lightning.Invocation.Dataclip","sections":[{"id":"Types","anchor":"module-types"}],"nodeGroups":[{"name":"Types","nodes":[{"id":"source_type/0","title":"source_type()","anchor":"t:source_type/0"},{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"get_types/0","title":"get_types()","anchor":"get_types/0"},{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"},{"id":"validate_by_type/1","title":"validate_by_type(changeset)","anchor":"validate_by_type/1"}],"key":"functions"}]},{"id":"Lightning.Invocation.LogLine","group":"Invocations","title":"Lightning.Invocation.LogLine","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Invocation.Query","group":"Invocations","title":"Lightning.Invocation.Query","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"last_run_for_job/1","title":"last_run_for_job(job)","anchor":"last_run_for_job/1"},{"id":"last_successful_run_for_job/1","title":"last_successful_run_for_job(job)","anchor":"last_successful_run_for_job/1"},{"id":"runs_for/1","title":"runs_for(user)","anchor":"runs_for/1"},{"id":"runs_with_code/2","title":"runs_with_code(query, exit_code)","anchor":"runs_with_code/2"}],"key":"functions"}]},{"id":"Lightning.Invocation.Run","group":"Invocations","title":"Lightning.Invocation.Run","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"},{"id":"new_from/1","title":"new_from(run)","anchor":"new_from/1"}],"key":"functions"}]},{"id":"Lightning.InvocationReason","group":"Invocations","title":"Lightning.InvocationReason","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"source_type/0","title":"source_type()","anchor":"t:source_type/0"},{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"},{"id":"validate_by_trigger_type/1","title":"validate_by_trigger_type(changeset)","anchor":"validate_by_trigger_type/1"}],"key":"functions"}]},{"id":"Lightning.InvocationReasons","group":"Invocations","title":"Lightning.InvocationReasons","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"reason_type/0","title":"reason_type()","anchor":"t:reason_type/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"build/2","title":"build(type, arg2)","anchor":"build/2"},{"id":"create_reason/1","title":"create_reason(attrs \\\\ %{})","anchor":"create_reason/1"}],"key":"functions"}]},{"id":"Lightning.Pipeline","group":"Pipeline","title":"Lightning.Pipeline","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"assemble_logs_for_run/1","title":"assemble_logs_for_run(run)","anchor":"assemble_logs_for_run/1"},{"id":"logs_for_run/1","title":"logs_for_run(run)","anchor":"logs_for_run/1"},{"id":"process/1","title":"process(attempt_run)","anchor":"process/1"}],"key":"functions"}]},{"id":"Lightning.Pipeline.Runner","group":"Pipeline","title":"Lightning.Pipeline.Runner","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create_dataclip_from_result/2","title":"create_dataclip_from_result(result, run)","anchor":"create_dataclip_from_result/2"},{"id":"find_or_install_adaptor/1","title":"find_or_install_adaptor(adaptor)","anchor":"find_or_install_adaptor/1"},{"id":"scrub_result/1","title":"scrub_result(body)","anchor":"scrub_result/1"},{"id":"start/2","title":"start(run, opts \\\\ [])","anchor":"start/2"}],"key":"functions"}]},{"id":"Lightning.Pipeline.Runner.Handler","group":"Pipeline","title":"Lightning.Pipeline.Runner.Handler","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"handler_opts/0","title":"handler_opts()","anchor":"t:handler_opts/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"on_start/1","title":"on_start(context)","anchor":"on_start/1"},{"id":"stop/1","title":"stop(state)","anchor":"stop/1"}],"key":"functions"}]},{"id":"Lightning.Pipeline.StateAssembler","group":"Pipeline","title":"Lightning.Pipeline.StateAssembler","sections":[{"id":"How state is assembled","anchor":"module-how-state-is-assembled"},{"id":"Saved inputs","anchor":"module-saved-inputs"}],"nodeGroups":[{"name":"Functions","nodes":[{"id":"assemble/1","title":"assemble(run)","anchor":"assemble/1"}],"key":"functions"}]},{"id":"Lightning.Jobs","group":"Jobs","title":"Lightning.Jobs","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"change_job/2","title":"change_job(job, attrs \\\\ %{})","anchor":"change_job/2"},{"id":"create_job/1","title":"create_job(attrs \\\\ %{})","anchor":"create_job/1"},{"id":"delete_job/1","title":"delete_job(job)","anchor":"delete_job/1"},{"id":"get_downstream_jobs_for/2","title":"get_downstream_jobs_for(job, edge_condition \\\\ nil)","anchor":"get_downstream_jobs_for/2"},{"id":"get_job/1","title":"get_job(id)","anchor":"get_job/1"},{"id":"get_job!/1","title":"get_job!(id)","anchor":"get_job!/1"},{"id":"get_upstream_jobs_for/1","title":"get_upstream_jobs_for(map)","anchor":"get_upstream_jobs_for/1"},{"id":"jobs_for_project/1","title":"jobs_for_project(project)","anchor":"jobs_for_project/1"},{"id":"jobs_for_project_query/1","title":"jobs_for_project_query(project)","anchor":"jobs_for_project_query/1"},{"id":"list_active_cron_jobs/0","title":"list_active_cron_jobs()","anchor":"list_active_cron_jobs/0"},{"id":"list_jobs/0","title":"list_jobs()","anchor":"list_jobs/0"},{"id":"list_jobs_for_workflow/1","title":"list_jobs_for_workflow(workflow)","anchor":"list_jobs_for_workflow/1"},{"id":"update_job/2","title":"update_job(job, attrs)","anchor":"update_job/2"}],"key":"functions"}]},{"id":"Lightning.Jobs.Job","group":"Jobs","title":"Lightning.Jobs.Job","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"},{"id":"put_project_credential/2","title":"put_project_credential(job, project_credential)","anchor":"put_project_credential/2"},{"id":"put_workflow/2","title":"put_workflow(changeset, workflow)","anchor":"put_workflow/2"},{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Jobs.Query","group":"Jobs","title":"Lightning.Jobs.Query","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"enabled_cron_jobs_by_edge/0","title":"enabled_cron_jobs_by_edge()","anchor":"enabled_cron_jobs_by_edge/0"},{"id":"jobs_for/1","title":"jobs_for(user)","anchor":"jobs_for/1"}],"key":"functions"}]},{"id":"Lightning.Jobs.Scheduler","group":"Jobs","title":"Lightning.Jobs.Scheduler","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"enqueue_cronjobs/0","title":"enqueue_cronjobs()","anchor":"enqueue_cronjobs/0"},{"id":"enqueue_cronjobs/1","title":"enqueue_cronjobs(date_time)","anchor":"enqueue_cronjobs/1"}],"key":"functions"}]},{"id":"Lightning.Jobs.Trigger","group":"Jobs","title":"Lightning.Jobs.Trigger","sections":[{"id":"Types","anchor":"module-types"}],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"},{"id":"trigger_type/0","title":"trigger_type()","anchor":"t:trigger_type/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs)","anchor":"new/1"},{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Projects","group":"Projects","title":"Lightning.Projects","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"cancel_scheduled_deletion/1","title":"cancel_scheduled_deletion(project_id)","anchor":"cancel_scheduled_deletion/1"},{"id":"change_project/2","title":"change_project(project, attrs \\\\ %{})","anchor":"change_project/2"},{"id":"create_project/1","title":"create_project(attrs \\\\ %{})","anchor":"create_project/1"},{"id":"delete_project/1","title":"delete_project(project)","anchor":"delete_project/1"},{"id":"export_project/2","title":"export_project(atom, project_id)","anchor":"export_project/2"},{"id":"get_project/1","title":"get_project(id)","anchor":"get_project/1"},{"id":"get_project!/1","title":"get_project!(id)","anchor":"get_project!/1"},{"id":"get_project_credential/2","title":"get_project_credential(project_id, credential_id)","anchor":"get_project_credential/2"},{"id":"get_project_user/1","title":"get_project_user(id)","anchor":"get_project_user/1"},{"id":"get_project_user/2","title":"get_project_user(project, user)","anchor":"get_project_user/2"},{"id":"get_project_user!/1","title":"get_project_user!(id)","anchor":"get_project_user!/1"},{"id":"get_project_user_role/2","title":"get_project_user_role(user, project)","anchor":"get_project_user_role/2"},{"id":"get_project_with_users!/1","title":"get_project_with_users!(id)","anchor":"get_project_with_users!/1"},{"id":"get_projects_for_user/1","title":"get_projects_for_user(user)","anchor":"get_projects_for_user/1"},{"id":"is_member_of?/2","title":"is_member_of?(project, user)","anchor":"is_member_of?/2"},{"id":"list_project_credentials/1","title":"list_project_credentials(project)","anchor":"list_project_credentials/1"},{"id":"list_projects/0","title":"list_projects()","anchor":"list_projects/0"},{"id":"perform/1","title":"perform(job)","anchor":"perform/1"},{"id":"project_attempt_run_query/1","title":"project_attempt_run_query(project)","anchor":"project_attempt_run_query/1"},{"id":"project_attempts_query/1","title":"project_attempts_query(project)","anchor":"project_attempts_query/1"},{"id":"project_credentials_query/1","title":"project_credentials_query(project)","anchor":"project_credentials_query/1"},{"id":"project_dataclip_invocation_reason/1","title":"project_dataclip_invocation_reason(project)","anchor":"project_dataclip_invocation_reason/1"},{"id":"project_dataclips_query/1","title":"project_dataclips_query(project)","anchor":"project_dataclips_query/1"},{"id":"project_jobs_query/1","title":"project_jobs_query(project)","anchor":"project_jobs_query/1"},{"id":"project_run_invocation_reasons/1","title":"project_run_invocation_reasons(project)","anchor":"project_run_invocation_reasons/1"},{"id":"project_runs_query/1","title":"project_runs_query(project)","anchor":"project_runs_query/1"},{"id":"project_trigger_invocation_reason/1","title":"project_trigger_invocation_reason(project)","anchor":"project_trigger_invocation_reason/1"},{"id":"project_triggers_query/1","title":"project_triggers_query(project)","anchor":"project_triggers_query/1"},{"id":"project_user_role_query/2","title":"project_user_role_query(user, project)","anchor":"project_user_role_query/2"},{"id":"project_users_query/1","title":"project_users_query(project)","anchor":"project_users_query/1"},{"id":"project_workflows_query/1","title":"project_workflows_query(project)","anchor":"project_workflows_query/1"},{"id":"project_workorders_query/1","title":"project_workorders_query(project)","anchor":"project_workorders_query/1"},{"id":"projects_for_user_query/1","title":"projects_for_user_query(user)","anchor":"projects_for_user_query/1"},{"id":"schedule_project_deletion/1","title":"schedule_project_deletion(project)","anchor":"schedule_project_deletion/1"},{"id":"select_first_project_for_user/1","title":"select_first_project_for_user(user)","anchor":"select_first_project_for_user/1"},{"id":"update_project/2","title":"update_project(project, attrs)","anchor":"update_project/2"},{"id":"update_project_user/2","title":"update_project_user(project_user, attrs)","anchor":"update_project_user/2"},{"id":"url_safe_project_name/1","title":"url_safe_project_name(name)","anchor":"url_safe_project_name/1"},{"id":"validate_for_deletion/2","title":"validate_for_deletion(project, attrs)","anchor":"validate_for_deletion/2"}],"key":"functions"}]},{"id":"Lightning.Projects.Project","group":"Projects","title":"Lightning.Projects.Project","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"deletion_changeset/2","title":"deletion_changeset(project, attrs)","anchor":"deletion_changeset/2"},{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Projects.ProjectCredential","group":"Projects","title":"Lightning.Projects.ProjectCredential","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"}]},{"id":"Lightning.Projects.ProjectUser","group":"Projects","title":"Lightning.Projects.ProjectUser","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"}]},{"id":"Lightning.Projects.ProjectUser.DigestEnum","group":"Projects","title":"Lightning.Projects.ProjectUser.DigestEnum","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"cast/1","title":"cast(arg1)","anchor":"cast/1"},{"id":"create_type/0","title":"create_type()","anchor":"create_type/0"},{"id":"drop_type/0","title":"drop_type()","anchor":"drop_type/0"},{"id":"dump/1","title":"dump(term)","anchor":"dump/1"},{"id":"embed_as/1","title":"embed_as(_)","anchor":"embed_as/1"},{"id":"equal?/2","title":"equal?(term1, term2)","anchor":"equal?/2"},{"id":"load/1","title":"load(arg1)","anchor":"load/1"},{"id":"schema/0","title":"schema()","anchor":"schema/0"},{"id":"schemaless_type/0","title":"schemaless_type()","anchor":"schemaless_type/0"},{"id":"type/0","title":"type()","anchor":"type/0"},{"id":"valid_value?/1","title":"valid_value?(value)","anchor":"valid_value?/1"}],"key":"functions"}]},{"id":"Lightning.Projects.ProjectUser.RolesEnum","group":"Projects","title":"Lightning.Projects.ProjectUser.RolesEnum","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"cast/1","title":"cast(arg1)","anchor":"cast/1"},{"id":"create_type/0","title":"create_type()","anchor":"create_type/0"},{"id":"drop_type/0","title":"drop_type()","anchor":"drop_type/0"},{"id":"dump/1","title":"dump(term)","anchor":"dump/1"},{"id":"embed_as/1","title":"embed_as(_)","anchor":"embed_as/1"},{"id":"equal?/2","title":"equal?(term1, term2)","anchor":"equal?/2"},{"id":"load/1","title":"load(arg1)","anchor":"load/1"},{"id":"schema/0","title":"schema()","anchor":"schema/0"},{"id":"schemaless_type/0","title":"schemaless_type()","anchor":"schemaless_type/0"},{"id":"type/0","title":"type()","anchor":"type/0"},{"id":"valid_value?/1","title":"valid_value?(value)","anchor":"valid_value?/1"}],"key":"functions"}]},{"id":"Lightning.Projects.Provisioner","group":"Projects","title":"Lightning.Projects.Provisioner","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"import_document/3","title":"import_document(project, user, data)","anchor":"import_document/3"},{"id":"load_project/1","title":"load_project(id)","anchor":"load_project/1"},{"id":"parse_document/2","title":"parse_document(project, data)","anchor":"parse_document/2"},{"id":"validate_extraneous_params/1","title":"validate_extraneous_params(changeset)","anchor":"validate_extraneous_params/1"}],"key":"functions"}]},{"id":"Lightning.Runtime.ChildProcess","group":"Runtime","title":"Lightning.Runtime.ChildProcess","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_command/1","title":"build_command(runspec)","anchor":"build_command/1"},{"id":"build_env/2","title":"build_env(arg1, env)","anchor":"build_env/2"},{"id":"run/2","title":"run(runspec, opts \\\\ [])","anchor":"run/2"}],"key":"functions"}]},{"id":"Lightning.Runtime.Handler","group":"Runtime","title":"Lightning.Runtime.Handler","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Callbacks","nodes":[{"id":"env/2","title":"env(run_spec, opts)","anchor":"c:env/2"},{"id":"log_callback/3","title":"log_callback(agent, context, args)","anchor":"c:log_callback/3"},{"id":"on_finish/2","title":"on_finish(result, context)","anchor":"c:on_finish/2"},{"id":"on_log_emit/2","title":"on_log_emit(chunk, context)","anchor":"c:on_log_emit/2"},{"id":"on_start/1","title":"on_start(context)","anchor":"c:on_start/1"},{"id":"start/2","title":"start(any, opts)","anchor":"c:start/2"}],"key":"callbacks"},{"name":"Functions","nodes":[{"id":"env/2","title":"env(run_spec, opts)","anchor":"env/2"},{"id":"on_finish/2","title":"on_finish(result, context)","anchor":"on_finish/2"},{"id":"on_log_emit/2","title":"on_log_emit(chunk, context)","anchor":"on_log_emit/2"},{"id":"on_start/1","title":"on_start(context)","anchor":"on_start/1"}],"key":"functions"}]},{"id":"Lightning.Runtime.LogAgent","group":"Runtime","title":"Lightning.Runtime.LogAgent","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"logline/0","title":"logline()","anchor":"t:logline/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"buffer/1","title":"buffer(agent)","anchor":"buffer/1"},{"id":"child_spec/1","title":"child_spec(arg)","anchor":"child_spec/1"},{"id":"process_chunk/2","title":"process_chunk(agent, arg)","anchor":"process_chunk/2"},{"id":"start_link/1","title":"start_link(_ \\\\ [])","anchor":"start_link/1"}],"key":"functions"}]},{"id":"Lightning.Runtime.LogAgent.StringBuffer","group":"Runtime","title":"Lightning.Runtime.LogAgent.StringBuffer","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"buffer/1","title":"buffer(arg)","anchor":"buffer/1"},{"id":"new/0","title":"new()","anchor":"new/0"},{"id":"process_chunk/2","title":"process_chunk(data, arg)","anchor":"process_chunk/2"},{"id":"reduce_chunk/2","title":"reduce_chunk(data, arg)","anchor":"reduce_chunk/2"}],"key":"functions"}]},{"id":"Lightning.Runtime.Result","group":"Runtime","title":"Lightning.Runtime.Result","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(fields \\\\ [])","anchor":"new/1"}],"key":"functions"}]},{"id":"Lightning.Runtime.RunSpec","group":"Runtime","title":"Lightning.Runtime.RunSpec","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(fields \\\\ [])","anchor":"new/1"}],"key":"functions"}]},{"id":"Lightning.MetadataService.Error","group":"Exceptions","title":"Lightning.MetadataService.Error","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"message/1","title":"message(map)","anchor":"message/1"},{"id":"new/1","title":"new(type)","anchor":"new/1"}],"key":"functions"}]}],"extras":[{"id":"api-reference","group":"","title":"API Reference","headers":[{"id":"Modules","anchor":"modules"},{"id":"Mix Tasks","anchor":"mix-tasks"}]},{"id":"readme","group":"","title":"Lightning","headers":[{"id":"Contents","anchor":"contents"},{"id":"Demo","anchor":"demo"},{"id":"Register for a Beta account","anchor":"register-for-a-beta-account"},{"id":"Features","anchor":"features"},{"id":"Getting Started","anchor":"getting-started"},{"id":"Run via Docker","anchor":"run-via-docker"},{"id":"Deploy on external infrastructure","anchor":"deploy-on-external-infrastructure"},{"id":"Run Lightning locally","anchor":"run-lightning-locally"},{"id":"Benchmarking","anchor":"benchmarking"},{"id":"Troubleshooting","anchor":"troubleshooting"},{"id":"Project Configuration Quickstart","anchor":"project-configuration-quickstart"},{"id":"Contribute to this project","anchor":"contribute-to-this-project"},{"id":"Generating Documentation","anchor":"generating-documentation"},{"id":"Security and Standards","anchor":"security-and-standards"},{"id":"Server Specs for Self-Hosting","anchor":"server-specs-for-self-hosting"},{"id":"Support","anchor":"support"}]},{"id":"deployment","group":"","title":"Deployment","headers":[{"id":"Encryption","anchor":"encryption"},{"id":"Environment Variables","anchor":"environment-variables"}]},{"id":"benchmarking","group":"","title":"Benchmarking","headers":[]},{"id":"provisioning","group":"","title":"Provisioning","headers":[{"id":"Using the API","anchor":"using-the-api"},{"id":"Document Structure","anchor":"document-structure"},{"id":"API Behaviour","anchor":"api-behaviour"},{"id":"Relationship with Projects as Code","anchor":"relationship-with-projects-as-code"}]},{"id":"changelog","group":"","title":"Changelog","headers":[{"id":"[Unreleased]","anchor":"unreleased"},{"id":"[v0.7.1] - 2023-08-04","anchor":"v0-7-1-2023-08-04"},{"id":"[v0.7.0] - 2023-08-04","anchor":"v0-7-0-2023-08-04"},{"id":"[v0.7.0-pre5] - 2023-07-28","anchor":"v0-7-0-pre5-2023-07-28"},{"id":"[v0.7.0-pre4] - 2023-07-27","anchor":"v0-7-0-pre4-2023-07-27"},{"id":"[v0.7.0-pre3] - 2023-07-26","anchor":"v0-7-0-pre3-2023-07-26"},{"id":"[v0.7.0-pre2] - 2023-07-26","anchor":"v0-7-0-pre2-2023-07-26"},{"id":"[0.6.7] - 2023-07-13","anchor":"0-6-7-2023-07-13"},{"id":"[0.6.6] - 2023-06-30","anchor":"0-6-6-2023-06-30"},{"id":"[0.6.5] - 2023-06-22","anchor":"0-6-5-2023-06-22"},{"id":"[0.6.3] - 2023-06-15","anchor":"0-6-3-2023-06-15"},{"id":"[0.6.2] - 2023-06-09","anchor":"0-6-2-2023-06-09"},{"id":"[0.6.1] - 2023-06-08","anchor":"0-6-1-2023-06-08"},{"id":"[0.6.0]- 2023-04-12","anchor":"0-6-0-2023-04-12"},{"id":"[0.5.2]","anchor":"0-5-2"},{"id":"[0.5.1] - 2023-04-12","anchor":"0-5-1-2023-04-12"},{"id":"[0.5.0] - 2023-04-03","anchor":"0-5-0-2023-04-03"},{"id":"[0.4.8] - 2023-03-29","anchor":"0-4-8-2023-03-29"},{"id":"[0.4.6] - 2023-03-23","anchor":"0-4-6-2023-03-23"},{"id":"[0.4.4] - 2023-03-10","anchor":"0-4-4-2023-03-10"},{"id":"[0.4.3] - 2023-03-06","anchor":"0-4-3-2023-03-06"},{"id":"[0.4.2] - 2023-02-24","anchor":"0-4-2-2023-02-24"},{"id":"[0.4.0] - 2023-02-08","anchor":"0-4-0-2023-02-08"},{"id":"[0.3.1] - 2022-11-22","anchor":"0-3-1-2022-11-22"},{"id":"[0.3.0] - 2022-11-21","anchor":"0-3-0-2022-11-21"},{"id":"[0.2.0] - 2022-09-12","anchor":"0-2-0-2022-09-12"},{"id":"[0.1.13] - 2022-08-29","anchor":"0-1-13-2022-08-29"},{"id":"[0.1.12] - 2022-08-15","anchor":"0-1-12-2022-08-15"},{"id":"[0.1.11] - 2022-08-05","anchor":"0-1-11-2022-08-05"},{"id":"[0.1.10] - 2022-08-05","anchor":"0-1-10-2022-08-05"},{"id":"[0.1.9] - 2022-07-27","anchor":"0-1-9-2022-07-27"},{"id":"[0.1.7] - 2022-06-24","anchor":"0-1-7-2022-06-24"},{"id":"[0.1.6] - 2022-06-07","anchor":"0-1-6-2022-06-07"}]}],"tasks":[{"id":"Mix.Tasks.Lightning.GenEncryptionKey","group":"","title":"mix lightning.gen_encryption_key","sections":[]},{"id":"Mix.Tasks.Lightning.InstallRuntime","group":"","title":"mix lightning.install_runtime","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"packages/0","title":"packages()","anchor":"packages/0"},{"id":"run/1","title":"run(_)","anchor":"run/1"}],"key":"functions"}]},{"id":"Mix.Tasks.Lightning.InstallSchemas","group":"","title":"mix lightning.install_schemas","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"body/0","title":"body()","anchor":"t:body/0"},{"id":"headers/0","title":"headers()","anchor":"t:headers/0"},{"id":"method/0","title":"method()","anchor":"t:method/0"},{"id":"options/0","title":"options()","anchor":"t:options/0"},{"id":"params/0","title":"params()","anchor":"t:params/0"},{"id":"request/0","title":"request()","anchor":"t:request/0"},{"id":"url/0","title":"url()","anchor":"t:url/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"delete/3","title":"delete(url, headers \\\\ [], options \\\\ [])","anchor":"delete/3"},{"id":"delete!/3","title":"delete!(url, headers \\\\ [], options \\\\ [])","anchor":"delete!/3"},{"id":"fetch_schemas/2","title":"fetch_schemas(excluded \\\\ [], fun)","anchor":"fetch_schemas/2"},{"id":"get/3","title":"get(url, headers \\\\ [], options \\\\ [])","anchor":"get/3"},{"id":"get!/3","title":"get!(url, headers \\\\ [], options \\\\ [])","anchor":"get!/3"},{"id":"head/3","title":"head(url, headers \\\\ [], options \\\\ [])","anchor":"head/3"},{"id":"head!/3","title":"head!(url, headers \\\\ [], options \\\\ [])","anchor":"head!/3"},{"id":"options/3","title":"options(url, headers \\\\ [], options \\\\ [])","anchor":"options/3"},{"id":"options!/3","title":"options!(url, headers \\\\ [], options \\\\ [])","anchor":"options!/3"},{"id":"parse_excluded/1","title":"parse_excluded(args)","anchor":"parse_excluded/1"},{"id":"patch/4","title":"patch(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch/4"},{"id":"patch!/4","title":"patch!(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch!/4"},{"id":"persist_schema/2","title":"persist_schema(dir, package_name)","anchor":"persist_schema/2"},{"id":"post/4","title":"post(url, body, headers \\\\ [], options \\\\ [])","anchor":"post/4"},{"id":"post!/4","title":"post!(url, body, headers \\\\ [], options \\\\ [])","anchor":"post!/4"},{"id":"process_headers/1","title":"process_headers(headers)","anchor":"process_headers/1"},{"id":"process_request_body/1","title":"process_request_body(body)","anchor":"process_request_body/1"},{"id":"process_request_headers/1","title":"process_request_headers(headers)","anchor":"process_request_headers/1"},{"id":"process_request_options/1","title":"process_request_options(options)","anchor":"process_request_options/1"},{"id":"process_request_params/1","title":"process_request_params(params)","anchor":"process_request_params/1"},{"id":"process_request_url/1","title":"process_request_url(url)","anchor":"process_request_url/1"},{"id":"process_response/1","title":"process_response(response)","anchor":"process_response/1"},{"id":"process_response_body/1","title":"process_response_body(body)","anchor":"process_response_body/1"},{"id":"process_response_chunk/1","title":"process_response_chunk(chunk)","anchor":"process_response_chunk/1"},{"id":"process_response_headers/1","title":"process_response_headers(headers)","anchor":"process_response_headers/1"},{"id":"process_response_status_code/1","title":"process_response_status_code(status_code)","anchor":"process_response_status_code/1"},{"id":"process_status_code/1","title":"process_status_code(status_code)","anchor":"process_status_code/1"},{"id":"process_url/1","title":"process_url(url)","anchor":"process_url/1"},{"id":"put/4","title":"put(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put/4"},{"id":"put!/4","title":"put!(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put!/4"},{"id":"request/1","title":"request(request)","anchor":"request/1"},{"id":"request/5","title":"request(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request/5"},{"id":"request!/5","title":"request!(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request!/5"},{"id":"run/1","title":"run(args)","anchor":"run/1"},{"id":"start/0","title":"start()","anchor":"start/0"},{"id":"stream_next/1","title":"stream_next(resp)","anchor":"stream_next/1"},{"id":"write_schema/3","title":"write_schema(dir, package_name, data)","anchor":"write_schema/3"}],"key":"functions"}]}]}
\ No newline at end of file
+sidebarNodes={"modules":[{"id":"Lightning","group":"","title":"Lightning","sections":[]},{"id":"Lightning.AdaptorRegistry","group":"","title":"Lightning.AdaptorRegistry","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"all/1","title":"all(server \\\\ __MODULE__)","anchor":"all/1"},{"id":"child_spec/1","title":"child_spec(init_arg)","anchor":"child_spec/1"},{"id":"fetch/0","title":"fetch()","anchor":"fetch/0"},{"id":"latest_for/2","title":"latest_for(server \\\\ __MODULE__, module_name)","anchor":"latest_for/2"},{"id":"resolve_adaptor/1","title":"resolve_adaptor(adaptor)","anchor":"resolve_adaptor/1"},{"id":"resolve_package_name/1","title":"resolve_package_name(package_name)","anchor":"resolve_package_name/1"},{"id":"resolve_package_name!/1","title":"resolve_package_name!(package_name)","anchor":"resolve_package_name!/1"},{"id":"start_link/1","title":"start_link(opts \\\\ [use_cache: true])","anchor":"start_link/1"},{"id":"versions_for/2","title":"versions_for(server \\\\ __MODULE__, module_name)","anchor":"versions_for/2"}],"key":"functions"}]},{"id":"Lightning.AdaptorRegistry.Npm","group":"","title":"Lightning.AdaptorRegistry.Npm","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"body/0","title":"body()","anchor":"t:body/0"},{"id":"headers/0","title":"headers()","anchor":"t:headers/0"},{"id":"method/0","title":"method()","anchor":"t:method/0"},{"id":"options/0","title":"options()","anchor":"t:options/0"},{"id":"params/0","title":"params()","anchor":"t:params/0"},{"id":"request/0","title":"request()","anchor":"t:request/0"},{"id":"url/0","title":"url()","anchor":"t:url/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"delete/3","title":"delete(url, headers \\\\ [], options \\\\ [])","anchor":"delete/3"},{"id":"delete!/3","title":"delete!(url, headers \\\\ [], options \\\\ [])","anchor":"delete!/3"},{"id":"get/3","title":"get(url, headers \\\\ [], options \\\\ [])","anchor":"get/3"},{"id":"get!/3","title":"get!(url, headers \\\\ [], options \\\\ [])","anchor":"get!/3"},{"id":"head/3","title":"head(url, headers \\\\ [], options \\\\ [])","anchor":"head/3"},{"id":"head!/3","title":"head!(url, headers \\\\ [], options \\\\ [])","anchor":"head!/3"},{"id":"options/3","title":"options(url, headers \\\\ [], options \\\\ [])","anchor":"options/3"},{"id":"options!/3","title":"options!(url, headers \\\\ [], options \\\\ [])","anchor":"options!/3"},{"id":"package_detail/1","title":"package_detail(package_name)","anchor":"package_detail/1"},{"id":"patch/4","title":"patch(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch/4"},{"id":"patch!/4","title":"patch!(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch!/4"},{"id":"post/4","title":"post(url, body, headers \\\\ [], options \\\\ [])","anchor":"post/4"},{"id":"post!/4","title":"post!(url, body, headers \\\\ [], options \\\\ [])","anchor":"post!/4"},{"id":"process_headers/1","title":"process_headers(headers)","anchor":"process_headers/1"},{"id":"process_request_body/1","title":"process_request_body(body)","anchor":"process_request_body/1"},{"id":"process_request_headers/1","title":"process_request_headers(headers)","anchor":"process_request_headers/1"},{"id":"process_request_options/1","title":"process_request_options(options)","anchor":"process_request_options/1"},{"id":"process_request_params/1","title":"process_request_params(params)","anchor":"process_request_params/1"},{"id":"process_response/1","title":"process_response(response)","anchor":"process_response/1"},{"id":"process_response_chunk/1","title":"process_response_chunk(chunk)","anchor":"process_response_chunk/1"},{"id":"process_response_headers/1","title":"process_response_headers(headers)","anchor":"process_response_headers/1"},{"id":"process_response_status_code/1","title":"process_response_status_code(status_code)","anchor":"process_response_status_code/1"},{"id":"process_status_code/1","title":"process_status_code(status_code)","anchor":"process_status_code/1"},{"id":"process_url/1","title":"process_url(url)","anchor":"process_url/1"},{"id":"put/4","title":"put(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put/4"},{"id":"put!/4","title":"put!(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put!/4"},{"id":"request/1","title":"request(request)","anchor":"request/1"},{"id":"request/5","title":"request(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request/5"},{"id":"request!/5","title":"request!(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request!/5"},{"id":"start/0","title":"start()","anchor":"start/0"},{"id":"stream_next/1","title":"stream_next(resp)","anchor":"stream_next/1"},{"id":"user_packages/1","title":"user_packages(user)","anchor":"user_packages/1"}],"key":"functions"}]},{"id":"Lightning.AdaptorService","group":"","title":"Lightning.AdaptorService","sections":[{"id":"Configuration","anchor":"module-configuration"},{"id":"Installing Adaptors","anchor":"module-installing-adaptors"},{"id":"Looking up adaptors","anchor":"module-looking-up-adaptors"}],"nodeGroups":[{"name":"Types","nodes":[{"id":"package_spec/0","title":"package_spec()","anchor":"t:package_spec/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"build_aliased_name/1","title":"build_aliased_name(arg)","anchor":"build_aliased_name/1"},{"id":"child_spec/1","title":"child_spec(arg)","anchor":"child_spec/1"},{"id":"find_adaptor/2","title":"find_adaptor(agent, package)","anchor":"find_adaptor/2"},{"id":"get_adaptors/1","title":"get_adaptors(agent)","anchor":"get_adaptors/1"},{"id":"install/2","title":"install(agent, package)","anchor":"install/2"},{"id":"install!/2","title":"install!(agent, package_spec)","anchor":"install!/2"},{"id":"installed?/2","title":"installed?(agent, package_spec)","anchor":"installed?/2"},{"id":"resolve_package_name/1","title":"resolve_package_name(package_name)","anchor":"resolve_package_name/1"},{"id":"start_link/1","title":"start_link(opts)","anchor":"start_link/1"}],"key":"functions"}]},{"id":"Lightning.Attempt","group":"","title":"Lightning.Attempt","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"}],"key":"functions"}]},{"id":"Lightning.AttemptRun","group":"","title":"Lightning.AttemptRun","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"},{"id":"new/2","title":"new(attempt, run)","anchor":"new/2"}],"key":"functions"}]},{"id":"Lightning.AttemptService","group":"","title":"Lightning.AttemptService","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"append/2","title":"append(attempt, run)","anchor":"append/2"},{"id":"build_attempt/2","title":"build_attempt(work_order, reason)","anchor":"build_attempt/2"},{"id":"calculate_runs/3","title":"calculate_runs(workflow, existing_runs, starting_run)","anchor":"calculate_runs/3"},{"id":"create_attempt/3","title":"create_attempt(work_order, job, reason)","anchor":"create_attempt/3"},{"id":"get_for_rerun/2","title":"get_for_rerun(attempt_id, run_id)","anchor":"get_for_rerun/2"},{"id":"get_last_attempt_for/1","title":"get_last_attempt_for(run)","anchor":"get_last_attempt_for/1"},{"id":"get_workflow_for/1","title":"get_workflow_for(attempt)","anchor":"get_workflow_for/1"},{"id":"list_for_rerun_from_job/2","title":"list_for_rerun_from_job(order_ids, job_id)","anchor":"list_for_rerun_from_job/2"},{"id":"list_for_rerun_from_start/1","title":"list_for_rerun_from_start(order_ids)","anchor":"list_for_rerun_from_start/1"},{"id":"retry/3","title":"retry(attempt, run, reason)","anchor":"retry/3"},{"id":"retry_many/2","title":"retry_many(attempt_runs, reasons)","anchor":"retry_many/2"}],"key":"functions"}]},{"id":"Lightning.Auditing","group":"","title":"Lightning.Auditing","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"list_all/1","title":"list_all(params \\\\ %{})","anchor":"list_all/1"}],"key":"functions"}]},{"id":"Lightning.Auditing.Model","group":"","title":"Lightning.Auditing.Model","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"event/5","title":"event(schema, event, row_id, actor_id, metadata \\\\ %{})","anchor":"event/5"},{"id":"save/2","title":"save(changes, repo)","anchor":"save/2"}],"key":"functions"}]},{"id":"Lightning.AuthProviders","group":"","title":"Lightning.AuthProviders","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_handler/2","title":"build_handler(name, opts)","anchor":"build_handler/2"},{"id":"create/1","title":"create(attrs)","anchor":"create/1"},{"id":"create_handler/1","title":"create_handler(config)","anchor":"create_handler/1"},{"id":"delete!/1","title":"delete!(model)","anchor":"delete!/1"},{"id":"get_authorize_url/1","title":"get_authorize_url(name)","anchor":"get_authorize_url/1"},{"id":"get_existing/0","title":"get_existing()","anchor":"get_existing/0"},{"id":"get_existing/1","title":"get_existing(name)","anchor":"get_existing/1"},{"id":"get_handler/1","title":"get_handler(name)","anchor":"get_handler/1"},{"id":"get_handlers/0","title":"get_handlers()","anchor":"get_handlers/0"},{"id":"new/0","title":"new()","anchor":"new/0"},{"id":"remove_handler/1","title":"remove_handler(name)","anchor":"remove_handler/1"},{"id":"update/2","title":"update(model, attrs)","anchor":"update/2"}],"key":"functions"}]},{"id":"Lightning.AuthProviders.AuthConfig","group":"","title":"Lightning.AuthProviders.AuthConfig","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"}]},{"id":"Lightning.AuthProviders.CacheWarmer","group":"","title":"Lightning.AuthProviders.CacheWarmer","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"child_spec/1","title":"child_spec(init_arg)","anchor":"child_spec/1"},{"id":"execute/1","title":"execute(state)","anchor":"execute/1"},{"id":"interval/0","title":"interval()","anchor":"interval/0"}],"key":"functions"}]},{"id":"Lightning.AuthProviders.Google","group":"","title":"Lightning.AuthProviders.Google","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"authorize_url/2","title":"authorize_url(client, state)","anchor":"authorize_url/2"},{"id":"build_client/1","title":"build_client(opts \\\\ [])","anchor":"build_client/1"},{"id":"get_config/0","title":"get_config()","anchor":"get_config/0"},{"id":"get_token/2","title":"get_token(client, params)","anchor":"get_token/2"},{"id":"get_userinfo/2","title":"get_userinfo(client, token)","anchor":"get_userinfo/2"},{"id":"get_wellknown/0","title":"get_wellknown()","anchor":"get_wellknown/0"},{"id":"get_wellknown!/0","title":"get_wellknown!()","anchor":"get_wellknown!/0"},{"id":"refresh_token/2","title":"refresh_token(client, token)","anchor":"refresh_token/2"}],"key":"functions"}]},{"id":"Lightning.AuthProviders.Handler","group":"","title":"Lightning.AuthProviders.Handler","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"opts/0","title":"opts()","anchor":"t:opts/0"},{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"authorize_url/1","title":"authorize_url(handler)","anchor":"authorize_url/1"},{"id":"from_model/1","title":"from_model(model)","anchor":"from_model/1"},{"id":"get_token/2","title":"get_token(handler, code)","anchor":"get_token/2"},{"id":"get_userinfo/2","title":"get_userinfo(handler, token)","anchor":"get_userinfo/2"},{"id":"new/2","title":"new(name, opts)","anchor":"new/2"}],"key":"functions"}]},{"id":"Lightning.AuthProviders.Store","group":"","title":"Lightning.AuthProviders.Store","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"finder/0","title":"finder()","anchor":"t:finder/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"get_handler/2","title":"get_handler(name, finder \\\\ &default/1)","anchor":"get_handler/2"},{"id":"get_handlers/0","title":"get_handlers()","anchor":"get_handlers/0"},{"id":"put_handler/2","title":"put_handler(name, handler)","anchor":"put_handler/2"},{"id":"remove_handler/1","title":"remove_handler(name)","anchor":"remove_handler/1"}],"key":"functions"}]},{"id":"Lightning.AuthProviders.WellKnown","group":"","title":"Lightning.AuthProviders.WellKnown","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"body/0","title":"body()","anchor":"t:body/0"},{"id":"headers/0","title":"headers()","anchor":"t:headers/0"},{"id":"method/0","title":"method()","anchor":"t:method/0"},{"id":"options/0","title":"options()","anchor":"t:options/0"},{"id":"params/0","title":"params()","anchor":"t:params/0"},{"id":"request/0","title":"request()","anchor":"t:request/0"},{"id":"t/0","title":"t()","anchor":"t:t/0"},{"id":"url/0","title":"url()","anchor":"t:url/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"delete/3","title":"delete(url, headers \\\\ [], options \\\\ [])","anchor":"delete/3"},{"id":"delete!/3","title":"delete!(url, headers \\\\ [], options \\\\ [])","anchor":"delete!/3"},{"id":"fetch/1","title":"fetch(discovery_url)","anchor":"fetch/1"},{"id":"fetch!/1","title":"fetch!(discovery_url)","anchor":"fetch!/1"},{"id":"get/3","title":"get(url, headers \\\\ [], options \\\\ [])","anchor":"get/3"},{"id":"get!/3","title":"get!(url, headers \\\\ [], options \\\\ [])","anchor":"get!/3"},{"id":"head/3","title":"head(url, headers \\\\ [], options \\\\ [])","anchor":"head/3"},{"id":"head!/3","title":"head!(url, headers \\\\ [], options \\\\ [])","anchor":"head!/3"},{"id":"new/1","title":"new(json_body)","anchor":"new/1"},{"id":"options/3","title":"options(url, headers \\\\ [], options \\\\ [])","anchor":"options/3"},{"id":"options!/3","title":"options!(url, headers \\\\ [], options \\\\ [])","anchor":"options!/3"},{"id":"patch/4","title":"patch(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch/4"},{"id":"patch!/4","title":"patch!(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch!/4"},{"id":"post/4","title":"post(url, body, headers \\\\ [], options \\\\ [])","anchor":"post/4"},{"id":"post!/4","title":"post!(url, body, headers \\\\ [], options \\\\ [])","anchor":"post!/4"},{"id":"process_headers/1","title":"process_headers(headers)","anchor":"process_headers/1"},{"id":"process_request_body/1","title":"process_request_body(body)","anchor":"process_request_body/1"},{"id":"process_request_headers/1","title":"process_request_headers(headers)","anchor":"process_request_headers/1"},{"id":"process_request_options/1","title":"process_request_options(options)","anchor":"process_request_options/1"},{"id":"process_request_params/1","title":"process_request_params(params)","anchor":"process_request_params/1"},{"id":"process_request_url/1","title":"process_request_url(url)","anchor":"process_request_url/1"},{"id":"process_response/1","title":"process_response(response)","anchor":"process_response/1"},{"id":"process_response_body/1","title":"process_response_body(body)","anchor":"process_response_body/1"},{"id":"process_response_chunk/1","title":"process_response_chunk(chunk)","anchor":"process_response_chunk/1"},{"id":"process_response_headers/1","title":"process_response_headers(headers)","anchor":"process_response_headers/1"},{"id":"process_response_status_code/1","title":"process_response_status_code(status_code)","anchor":"process_response_status_code/1"},{"id":"process_status_code/1","title":"process_status_code(status_code)","anchor":"process_status_code/1"},{"id":"process_url/1","title":"process_url(url)","anchor":"process_url/1"},{"id":"put/4","title":"put(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put/4"},{"id":"put!/4","title":"put!(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put!/4"},{"id":"request/1","title":"request(request)","anchor":"request/1"},{"id":"request/5","title":"request(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request/5"},{"id":"request!/5","title":"request!(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request!/5"},{"id":"start/0","title":"start()","anchor":"start/0"},{"id":"stream_next/1","title":"stream_next(resp)","anchor":"stream_next/1"}],"key":"functions"}]},{"id":"Lightning.CLI","group":"","title":"Lightning.CLI","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"execute/1","title":"execute(command)","anchor":"execute/1"},{"id":"metadata/2","title":"metadata(state, adaptor_path)","anchor":"metadata/2"}],"key":"functions"}]},{"id":"Lightning.CLI.Result","group":"","title":"Lightning.CLI.Result","sections":[{"id":"Logs","anchor":"module-logs"}],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"get_messages/1","title":"get_messages(result)","anchor":"get_messages/1"},{"id":"new/1","title":"new(data)","anchor":"new/1"},{"id":"parse/2","title":"parse(result, extra \\\\ [])","anchor":"parse/2"}],"key":"functions"}]},{"id":"Lightning.Demo","group":"","title":"Lightning.Demo","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"reset_demo/0","title":"reset_demo()","anchor":"reset_demo/0"}],"key":"functions"}]},{"id":"Lightning.ExportUtils","group":"","title":"Lightning.ExportUtils","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_yaml_tree/2","title":"build_yaml_tree(workflows, project)","anchor":"build_yaml_tree/2"},{"id":"generate_new_yaml/1","title":"generate_new_yaml(project_id)","anchor":"generate_new_yaml/1"}],"key":"functions"}]},{"id":"Lightning.FailureNotifierView","group":"","title":"Lightning.FailureNotifierView","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"__resource__/0","title":"__resource__()","anchor":"__resource__/0"},{"id":"failure_alert.html/1","title":"failure_alert.html(assigns)","anchor":"failure_alert.html/1"},{"id":"render/2","title":"render(template, assigns \\\\ %{})","anchor":"render/2"},{"id":"template_not_found/2","title":"template_not_found(template, assigns)","anchor":"template_not_found/2"}],"key":"functions"}]},{"id":"Lightning.Helpers","group":"","title":"Lightning.Helpers","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"coerce_json_field/2","title":"coerce_json_field(attrs, field)","anchor":"coerce_json_field/2"},{"id":"indefinite_article/1","title":"indefinite_article(noun)","anchor":"indefinite_article/1"},{"id":"json_safe/1","title":"json_safe(data)","anchor":"json_safe/1"},{"id":"ms_to_human/1","title":"ms_to_human(milliseconds)","anchor":"ms_to_human/1"}],"key":"functions"}]},{"id":"Lightning.MetadataService","group":"","title":"Lightning.MetadataService","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"fetch/2","title":"fetch(adaptor, credential)","anchor":"fetch/2"}],"key":"functions"}]},{"id":"Lightning.Name","group":"","title":"Lightning.Name","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"generate/1","title":"generate(max_id \\\\ 9999)","anchor":"generate/1"}],"key":"functions"}]},{"id":"Lightning.ObanManager","group":"","title":"Lightning.ObanManager","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"handle_event/4","title":"handle_event(list, measure, meta, pid)","anchor":"handle_event/4"}],"key":"functions"}]},{"id":"Lightning.Policies.Permissions","group":"","title":"Lightning.Policies.Permissions","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"can/4","title":"can(policy, action, user, params \\\\ [])","anchor":"can/4"},{"id":"can?/4","title":"can?(policy, action, user, params \\\\ [])","anchor":"can?/4"}],"key":"functions"}]},{"id":"Lightning.Policies.ProjectUsers","group":"","title":"Lightning.Policies.ProjectUsers","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"actions/0","title":"actions()","anchor":"t:actions/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"authorize/3","title":"authorize(action, user, project)","anchor":"authorize/3"}],"key":"functions"}]},{"id":"Lightning.Policies.Provisioning","group":"","title":"Lightning.Policies.Provisioning","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"actions/0","title":"actions()","anchor":"t:actions/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"authorize/3","title":"authorize(arg1, user, project)","anchor":"authorize/3"}],"key":"functions"}]},{"id":"Lightning.Policies.Users","group":"","title":"Lightning.Policies.Users","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"actions/0","title":"actions()","anchor":"t:actions/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"authorize/3","title":"authorize(action, authenticated_user, account_user)","anchor":"authorize/3"}],"key":"functions"}]},{"id":"Lightning.Release","group":"","title":"Lightning.Release","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create_db/0","title":"create_db()","anchor":"create_db/0"},{"id":"load_app/0","title":"load_app()","anchor":"load_app/0"},{"id":"migrate/0","title":"migrate()","anchor":"migrate/0"},{"id":"rollback/2","title":"rollback(repo, version)","anchor":"rollback/2"}],"key":"functions"}]},{"id":"Lightning.Repo","group":"","title":"Lightning.Repo","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"aggregate/3","title":"aggregate(queryable, aggregate, opts \\\\ [])","anchor":"aggregate/3"},{"id":"aggregate/4","title":"aggregate(queryable, aggregate, field, opts)","anchor":"aggregate/4"},{"id":"all/2","title":"all(queryable, opts \\\\ [])","anchor":"all/2"},{"id":"checked_out?/0","title":"checked_out?()","anchor":"checked_out?/0"},{"id":"checkout/2","title":"checkout(fun, opts \\\\ [])","anchor":"checkout/2"},{"id":"child_spec/1","title":"child_spec(opts)","anchor":"child_spec/1"},{"id":"config/0","title":"config()","anchor":"config/0"},{"id":"default_options/1","title":"default_options(operation)","anchor":"default_options/1"},{"id":"delete/2","title":"delete(struct, opts \\\\ [])","anchor":"delete/2"},{"id":"delete!/2","title":"delete!(struct, opts \\\\ [])","anchor":"delete!/2"},{"id":"delete_all/2","title":"delete_all(queryable, opts \\\\ [])","anchor":"delete_all/2"},{"id":"disconnect_all/2","title":"disconnect_all(interval, opts \\\\ [])","anchor":"disconnect_all/2"},{"id":"exists?/2","title":"exists?(queryable, opts \\\\ [])","anchor":"exists?/2"},{"id":"explain/3","title":"explain(operation, queryable, opts \\\\ [])","anchor":"explain/3"},{"id":"get/3","title":"get(queryable, id, opts \\\\ [])","anchor":"get/3"},{"id":"get!/3","title":"get!(queryable, id, opts \\\\ [])","anchor":"get!/3"},{"id":"get_by/3","title":"get_by(queryable, clauses, opts \\\\ [])","anchor":"get_by/3"},{"id":"get_by!/3","title":"get_by!(queryable, clauses, opts \\\\ [])","anchor":"get_by!/3"},{"id":"get_dynamic_repo/0","title":"get_dynamic_repo()","anchor":"get_dynamic_repo/0"},{"id":"in_transaction?/0","title":"in_transaction?()","anchor":"in_transaction?/0"},{"id":"insert/2","title":"insert(struct, opts \\\\ [])","anchor":"insert/2"},{"id":"insert!/2","title":"insert!(struct, opts \\\\ [])","anchor":"insert!/2"},{"id":"insert_all/3","title":"insert_all(schema_or_source, entries, opts \\\\ [])","anchor":"insert_all/3"},{"id":"insert_or_update/2","title":"insert_or_update(changeset, opts \\\\ [])","anchor":"insert_or_update/2"},{"id":"insert_or_update!/2","title":"insert_or_update!(changeset, opts \\\\ [])","anchor":"insert_or_update!/2"},{"id":"load/2","title":"load(schema_or_types, data)","anchor":"load/2"},{"id":"one/2","title":"one(queryable, opts \\\\ [])","anchor":"one/2"},{"id":"one!/2","title":"one!(queryable, opts \\\\ [])","anchor":"one!/2"},{"id":"paginate/2","title":"paginate(pageable, options \\\\ [])","anchor":"paginate/2"},{"id":"preload/3","title":"preload(struct_or_structs_or_nil, preloads, opts \\\\ [])","anchor":"preload/3"},{"id":"prepare_query/3","title":"prepare_query(operation, query, opts)","anchor":"prepare_query/3"},{"id":"put_dynamic_repo/1","title":"put_dynamic_repo(dynamic)","anchor":"put_dynamic_repo/1"},{"id":"query/3","title":"query(sql, params \\\\ [], opts \\\\ [])","anchor":"query/3"},{"id":"query!/3","title":"query!(sql, params \\\\ [], opts \\\\ [])","anchor":"query!/3"},{"id":"query_many/3","title":"query_many(sql, params \\\\ [], opts \\\\ [])","anchor":"query_many/3"},{"id":"query_many!/3","title":"query_many!(sql, params \\\\ [], opts \\\\ [])","anchor":"query_many!/3"},{"id":"reload/2","title":"reload(queryable, opts \\\\ [])","anchor":"reload/2"},{"id":"reload!/2","title":"reload!(queryable, opts \\\\ [])","anchor":"reload!/2"},{"id":"rollback/1","title":"rollback(value)","anchor":"rollback/1"},{"id":"scrivener_defaults/0","title":"scrivener_defaults()","anchor":"scrivener_defaults/0"},{"id":"start_link/1","title":"start_link(opts \\\\ [])","anchor":"start_link/1"},{"id":"stop/1","title":"stop(timeout \\\\ 5000)","anchor":"stop/1"},{"id":"stream/2","title":"stream(queryable, opts \\\\ [])","anchor":"stream/2"},{"id":"to_sql/2","title":"to_sql(operation, queryable)","anchor":"to_sql/2"},{"id":"transaction/2","title":"transaction(fun_or_multi, opts \\\\ [])","anchor":"transaction/2"},{"id":"update/2","title":"update(struct, opts \\\\ [])","anchor":"update/2"},{"id":"update!/2","title":"update!(struct, opts \\\\ [])","anchor":"update!/2"},{"id":"update_all/3","title":"update_all(queryable, updates, opts \\\\ [])","anchor":"update_all/3"}],"key":"functions"}]},{"id":"Lightning.RunSearchForm","group":"","title":"Lightning.RunSearchForm","sections":[]},{"id":"Lightning.SafetyString","group":"","title":"Lightning.SafetyString","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"decode/1","title":"decode(data)","anchor":"decode/1"},{"id":"encode/1","title":"encode(data)","anchor":"encode/1"}],"key":"functions"}]},{"id":"Lightning.Scrubber","group":"","title":"Lightning.Scrubber","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"child_spec/1","title":"child_spec(arg)","anchor":"child_spec/1"},{"id":"encode_samples/1","title":"encode_samples(samples)","anchor":"encode_samples/1"},{"id":"samples/1","title":"samples(agent)","anchor":"samples/1"},{"id":"scrub/2","title":"scrub(agent, lines)","anchor":"scrub/2"},{"id":"start_link/1","title":"start_link(opts)","anchor":"start_link/1"}],"key":"functions"}]},{"id":"Lightning.SetupUtils","group":"","title":"Lightning.SetupUtils","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"add_and_update_runs/3","title":"add_and_update_runs(multi, run_params, output_dataclip_id)","anchor":"add_and_update_runs/3"},{"id":"create_dhis2_project/1","title":"create_dhis2_project(project_users)","anchor":"create_dhis2_project/1"},{"id":"create_openhie_project/1","title":"create_openhie_project(project_users)","anchor":"create_openhie_project/1"},{"id":"create_starter_project/2","title":"create_starter_project(name, project_users)","anchor":"create_starter_project/2"},{"id":"setup_demo/1","title":"setup_demo(opts \\\\ [create_super: false])","anchor":"setup_demo/1"},{"id":"tear_down/1","title":"tear_down(opts \\\\ [destroy_super: false])","anchor":"tear_down/1"}],"key":"functions"}]},{"id":"Lightning.TaskWorker","group":"","title":"Lightning.TaskWorker","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"child_spec/1","title":"child_spec(init_arg)","anchor":"child_spec/1"},{"id":"get_status/1","title":"get_status(worker)","anchor":"get_status/1"},{"id":"start_link/1","title":"start_link(opts \\\\ [name: nil])","anchor":"start_link/1"},{"id":"start_task/2","title":"start_task(worker, fun)","anchor":"start_task/2"}],"key":"functions"}]},{"id":"Lightning.Validators","group":"","title":"Lightning.Validators","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"validate_exclusive/3","title":"validate_exclusive(changeset, fields, message)","anchor":"validate_exclusive/3"},{"id":"validate_one_required/3","title":"validate_one_required(changeset, fields, message)","anchor":"validate_one_required/3"}],"key":"functions"}]},{"id":"Lightning.Vault","group":"","title":"Lightning.Vault","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"child_spec/1","title":"child_spec(init_arg)","anchor":"child_spec/1"},{"id":"start_link/1","title":"start_link(config \\\\ [])","anchor":"start_link/1"}],"key":"functions"}]},{"id":"Lightning.WorkOrder","group":"","title":"Lightning.WorkOrder","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/0","title":"new()","anchor":"new/0"}],"key":"functions"}]},{"id":"Lightning.WorkOrderService","group":"","title":"Lightning.WorkOrderService","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"attempt_updated/1","title":"attempt_updated(run)","anchor":"attempt_updated/1"},{"id":"build/2","title":"build(workflow, reason)","anchor":"build/2"},{"id":"create_manual_workorder/3","title":"create_manual_workorder(job, dataclip, user)","anchor":"create_manual_workorder/3"},{"id":"create_webhook_workorder/2","title":"create_webhook_workorder(edge, dataclip_body)","anchor":"create_webhook_workorder/2"},{"id":"create_work_order/1","title":"create_work_order(attrs \\\\ %{})","anchor":"create_work_order/1"},{"id":"multi_for/3","title":"multi_for(type, edge, dataclip_body)","anchor":"multi_for/3"},{"id":"multi_for_manual/3","title":"multi_for_manual(job, dataclip, user)","anchor":"multi_for_manual/3"},{"id":"retry_attempt_run/2","title":"retry_attempt_run(attempt_run, user)","anchor":"retry_attempt_run/2"},{"id":"retry_attempt_runs/2","title":"retry_attempt_runs(attempt_runs, user)","anchor":"retry_attempt_runs/2"},{"id":"subscribe/1","title":"subscribe(project_id)","anchor":"subscribe/1"}],"key":"functions"}]},{"id":"Lightning.Workflows","group":"","title":"Lightning.Workflows","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_trigger/1","title":"build_trigger(attrs)","anchor":"build_trigger/1"},{"id":"change_workflow/2","title":"change_workflow(workflow, attrs \\\\ %{})","anchor":"change_workflow/2"},{"id":"create_edge/1","title":"create_edge(attrs)","anchor":"create_edge/1"},{"id":"create_workflow/1","title":"create_workflow(attrs \\\\ %{})","anchor":"create_workflow/1"},{"id":"delete_workflow/1","title":"delete_workflow(workflow)","anchor":"delete_workflow/1"},{"id":"get_edge_by_webhook/1","title":"get_edge_by_webhook(path)","anchor":"get_edge_by_webhook/1"},{"id":"get_edges_for_cron_execution/1","title":"get_edges_for_cron_execution(datetime)","anchor":"get_edges_for_cron_execution/1"},{"id":"get_workflow/1","title":"get_workflow(id)","anchor":"get_workflow/1"},{"id":"get_workflow!/1","title":"get_workflow!(id)","anchor":"get_workflow!/1"},{"id":"get_workflows_for/1","title":"get_workflows_for(project)","anchor":"get_workflows_for/1"},{"id":"get_workflows_for_query/1","title":"get_workflows_for_query(project)","anchor":"get_workflows_for_query/1"},{"id":"list_workflows/0","title":"list_workflows()","anchor":"list_workflows/0"},{"id":"mark_for_deletion/2","title":"mark_for_deletion(workflow, attrs \\\\ %{})","anchor":"mark_for_deletion/2"},{"id":"to_project_space/1","title":"to_project_space(workflows)","anchor":"to_project_space/1"},{"id":"update_trigger/2","title":"update_trigger(trigger, attrs)","anchor":"update_trigger/2"},{"id":"update_workflow/2","title":"update_workflow(workflow, attrs)","anchor":"update_workflow/2"}],"key":"functions"}]},{"id":"Lightning.Workflows.Edge","group":"","title":"Lightning.Workflows.Edge","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"edge_condition/0","title":"edge_condition()","anchor":"t:edge_condition/0"},{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"changeset/2","title":"changeset(edge, attrs)","anchor":"changeset/2"},{"id":"new/1","title":"new(attrs)","anchor":"new/1"},{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Workflows.Graph","group":"","title":"Lightning.Workflows.Graph","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"},{"id":"vertex/0","title":"vertex()","anchor":"t:vertex/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(workflow)","anchor":"new/1"},{"id":"remove/2","title":"remove(graph, job_id)","anchor":"remove/2"},{"id":"vertices/1","title":"vertices(graph)","anchor":"vertices/1"}],"key":"functions"}]},{"id":"Lightning.Workflows.Workflow","group":"","title":"Lightning.Workflows.Workflow","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"request_deletion_changeset/2","title":"request_deletion_changeset(workflow, attrs)","anchor":"request_deletion_changeset/2"},{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Workorders.SearchParams","group":"","title":"Lightning.Workorders.SearchParams","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(params)","anchor":"new/1"},{"id":"to_uri_params/1","title":"to_uri_params(search_params)","anchor":"to_uri_params/1"}],"key":"functions"}]},{"id":"LightningWeb","group":"","title":"LightningWeb","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"__using__/1","title":"__using__(which)","anchor":"__using__/1"},{"id":"channel/0","title":"channel()","anchor":"channel/0"},{"id":"component/0","title":"component()","anchor":"component/0"},{"id":"controller/0","title":"controller()","anchor":"controller/0"},{"id":"html/0","title":"html()","anchor":"html/0"},{"id":"live_component/0","title":"live_component()","anchor":"live_component/0"},{"id":"live_view/1","title":"live_view(opts \\\\ [])","anchor":"live_view/1"},{"id":"router/0","title":"router()","anchor":"router/0"},{"id":"static_paths/0","title":"static_paths()","anchor":"static_paths/0"},{"id":"verified_routes/0","title":"verified_routes()","anchor":"verified_routes/0"},{"id":"view/0","title":"view()","anchor":"view/0"}],"key":"functions"}]},{"id":"LightningWeb.API.Helpers","group":"","title":"LightningWeb.API.Helpers","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"pagination_link/3","title":"pagination_link(conn, page, atom)","anchor":"pagination_link/3"},{"id":"pagination_links/2","title":"pagination_links(conn, page)","anchor":"pagination_links/2"},{"id":"url_for/2","title":"url_for(conn, params \\\\ %{})","anchor":"url_for/2"}],"key":"functions"}]},{"id":"LightningWeb.API.JobController","group":"","title":"LightningWeb.API.JobController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"index/2","title":"index(conn, params)","anchor":"index/2"},{"id":"show/2","title":"show(conn, map)","anchor":"show/2"}],"key":"functions"}]},{"id":"LightningWeb.API.ProjectController","group":"","title":"LightningWeb.API.ProjectController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"index/2","title":"index(conn, params)","anchor":"index/2"},{"id":"show/2","title":"show(conn, map)","anchor":"show/2"}],"key":"functions"}]},{"id":"LightningWeb.API.ProvisioningController","group":"","title":"LightningWeb.API.ProvisioningController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create/2","title":"create(conn, params)","anchor":"create/2"},{"id":"show/2","title":"show(conn, params)","anchor":"show/2"}],"key":"functions"}]},{"id":"LightningWeb.API.RunController","group":"","title":"LightningWeb.API.RunController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"index/2","title":"index(conn, params)","anchor":"index/2"},{"id":"show/2","title":"show(conn, map)","anchor":"show/2"}],"key":"functions"}]},{"id":"LightningWeb.AuditLive.Index","group":"","title":"LightningWeb.AuditLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"diff/1","title":"diff(assigns)","anchor":"diff/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.AuthProvidersLive.FormComponent","group":"","title":"LightningWeb.AuthProvidersLive.FormComponent","sections":[]},{"id":"LightningWeb.AuthProvidersLive.Index","group":"","title":"LightningWeb.AuthProvidersLive.Index","sections":[]},{"id":"LightningWeb.ChangesetJSON","group":"","title":"LightningWeb.ChangesetJSON","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"error/1","title":"error(map)","anchor":"error/1"}],"key":"functions"}]},{"id":"LightningWeb.ChangesetView","group":"","title":"LightningWeb.ChangesetView","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"__resource__/0","title":"__resource__()","anchor":"__resource__/0"},{"id":"render/2","title":"render(template, assigns \\\\ %{})","anchor":"render/2"},{"id":"template_not_found/2","title":"template_not_found(template, assigns)","anchor":"template_not_found/2"},{"id":"translate_errors/1","title":"translate_errors(changeset)","anchor":"translate_errors/1"}],"key":"functions"}]},{"id":"LightningWeb.Components.Modal","group":"","title":"LightningWeb.Components.Modal","sections":[]},{"id":"LightningWeb.CredentialLive.Edit","group":"","title":"LightningWeb.CredentialLive.Edit","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"handle_info/2","title":"handle_info(arg, socket)","anchor":"handle_info/2"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.FormComponent","group":"","title":"LightningWeb.CredentialLive.FormComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"credential_transfer/1","title":"credential_transfer(assigns)","anchor":"credential_transfer/1"},{"id":"form_component/1","title":"form_component(assigns)","anchor":"form_component/1"},{"id":"project_credentials/1","title":"project_credentials(assigns)","anchor":"project_credentials/1"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.GoogleSheetsComponent","group":"","title":"LightningWeb.CredentialLive.GoogleSheetsComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"authorize_button/1","title":"authorize_button(assigns)","anchor":"authorize_button/1"},{"id":"disabled_authorize_button/1","title":"disabled_authorize_button(assigns)","anchor":"disabled_authorize_button/1"},{"id":"error_block/1","title":"error_block(assigns)","anchor":"error_block/1"},{"id":"fieldset/1","title":"fieldset(assigns)","anchor":"fieldset/1"},{"id":"userinfo/1","title":"userinfo(assigns)","anchor":"userinfo/1"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.Index","group":"","title":"LightningWeb.CredentialLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.JsonSchemaBodyComponent","group":"","title":"LightningWeb.CredentialLive.JsonSchemaBodyComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"fieldset/1","title":"fieldset(assigns)","anchor":"fieldset/1"},{"id":"schema_input/1","title":"schema_input(assigns)","anchor":"schema_input/1"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.RawBodyComponent","group":"","title":"LightningWeb.CredentialLive.RawBodyComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"fieldset/1","title":"fieldset(assigns)","anchor":"fieldset/1"}],"key":"functions"}]},{"id":"LightningWeb.CredentialLive.TypePicker","group":"","title":"LightningWeb.CredentialLive.TypePicker","sections":[]},{"id":"LightningWeb.DataclipLive.Edit","group":"","title":"LightningWeb.DataclipLive.Edit","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.DataclipLive.FormComponent","group":"","title":"LightningWeb.DataclipLive.FormComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.DataclipLive.Index","group":"","title":"LightningWeb.DataclipLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.DownloadsController","group":"","title":"LightningWeb.DownloadsController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"download_project_yaml/2","title":"download_project_yaml(conn, map)","anchor":"download_project_yaml/2"}],"key":"functions"}]},{"id":"LightningWeb.Endpoint","group":"","title":"LightningWeb.Endpoint","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"broadcast/3","title":"broadcast(topic, event, msg)","anchor":"broadcast/3"},{"id":"broadcast!/3","title":"broadcast!(topic, event, msg)","anchor":"broadcast!/3"},{"id":"broadcast_from/4","title":"broadcast_from(from, topic, event, msg)","anchor":"broadcast_from/4"},{"id":"broadcast_from!/4","title":"broadcast_from!(from, topic, event, msg)","anchor":"broadcast_from!/4"},{"id":"call/2","title":"call(conn, opts)","anchor":"call/2"},{"id":"child_spec/1","title":"child_spec(opts)","anchor":"child_spec/1"},{"id":"config/2","title":"config(key, default \\\\ nil)","anchor":"config/2"},{"id":"config_change/2","title":"config_change(changed, removed)","anchor":"config_change/2"},{"id":"host/0","title":"host()","anchor":"host/0"},{"id":"init/1","title":"init(opts)","anchor":"init/1"},{"id":"local_broadcast/3","title":"local_broadcast(topic, event, msg)","anchor":"local_broadcast/3"},{"id":"local_broadcast_from/4","title":"local_broadcast_from(from, topic, event, msg)","anchor":"local_broadcast_from/4"},{"id":"path/1","title":"path(path)","anchor":"path/1"},{"id":"script_name/0","title":"script_name()","anchor":"script_name/0"},{"id":"start_link/1","title":"start_link(opts \\\\ [])","anchor":"start_link/1"},{"id":"static_integrity/1","title":"static_integrity(path)","anchor":"static_integrity/1"},{"id":"static_lookup/1","title":"static_lookup(path)","anchor":"static_lookup/1"},{"id":"static_path/1","title":"static_path(path)","anchor":"static_path/1"},{"id":"static_url/0","title":"static_url()","anchor":"static_url/0"},{"id":"struct_url/0","title":"struct_url()","anchor":"struct_url/0"},{"id":"subscribe/2","title":"subscribe(topic, opts \\\\ [])","anchor":"subscribe/2"},{"id":"unsubscribe/1","title":"unsubscribe(topic)","anchor":"unsubscribe/1"},{"id":"url/0","title":"url()","anchor":"url/0"}],"key":"functions"}]},{"id":"LightningWeb.ErrorView","group":"","title":"LightningWeb.ErrorView","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"__resource__/0","title":"__resource__()","anchor":"__resource__/0"},{"id":"render/2","title":"render(template, assigns \\\\ %{})","anchor":"render/2"},{"id":"template_not_found/2","title":"template_not_found(template, assigns)","anchor":"template_not_found/2"}],"key":"functions"}]},{"id":"LightningWeb.FallbackController","group":"","title":"LightningWeb.FallbackController","sections":[]},{"id":"LightningWeb.FirstSetupLive.Superuser","group":"","title":"LightningWeb.FirstSetupLive.Superuser","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.FormHelpers","group":"","title":"LightningWeb.FormHelpers","sections":[]},{"id":"LightningWeb.Gettext","group":"","title":"LightningWeb.Gettext","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"dgettext/3","title":"dgettext(domain, msgid, bindings \\\\ Macro.escape(%{}))","anchor":"dgettext/3"},{"id":"dgettext_noop/2","title":"dgettext_noop(domain, msgid)","anchor":"dgettext_noop/2"},{"id":"dngettext/5","title":"dngettext(domain, msgid, msgid_plural, n, bindings \\\\ Macro.escape(%{}))","anchor":"dngettext/5"},{"id":"dngettext_noop/3","title":"dngettext_noop(domain, msgid, msgid_plural)","anchor":"dngettext_noop/3"},{"id":"dpgettext/4","title":"dpgettext(domain, msgctxt, msgid, bindings \\\\ Macro.escape(%{}))","anchor":"dpgettext/4"},{"id":"dpgettext_noop/3","title":"dpgettext_noop(domain, msgctxt, msgid)","anchor":"dpgettext_noop/3"},{"id":"dpngettext/6","title":"dpngettext(domain, msgctxt, msgid, msgid_plural, n, bindings \\\\ Macro.escape(%{}))","anchor":"dpngettext/6"},{"id":"dpngettext_noop/4","title":"dpngettext_noop(domain, msgctxt, msgid, msgid_plural)","anchor":"dpngettext_noop/4"},{"id":"gettext/2","title":"gettext(msgid, bindings \\\\ Macro.escape(%{}))","anchor":"gettext/2"},{"id":"gettext_comment/1","title":"gettext_comment(comment)","anchor":"gettext_comment/1"},{"id":"gettext_noop/1","title":"gettext_noop(msgid)","anchor":"gettext_noop/1"},{"id":"handle_missing_bindings/2","title":"handle_missing_bindings(exception, incomplete)","anchor":"handle_missing_bindings/2"},{"id":"handle_missing_plural_translation/7","title":"handle_missing_plural_translation(locale, domain, msgctxt, msgid, msgid_plural, n, bindings)","anchor":"handle_missing_plural_translation/7"},{"id":"handle_missing_translation/5","title":"handle_missing_translation(locale, domain, msgctxt, msgid, bindings)","anchor":"handle_missing_translation/5"},{"id":"lgettext/5","title":"lgettext(locale, domain, msgctxt \\\\ nil, msgid, bindings)","anchor":"lgettext/5"},{"id":"lngettext/7","title":"lngettext(locale, domain, msgctxt \\\\ nil, msgid, msgid_plural, n, bindings)","anchor":"lngettext/7"},{"id":"ngettext/4","title":"ngettext(msgid, msgid_plural, n, bindings \\\\ Macro.escape(%{}))","anchor":"ngettext/4"},{"id":"ngettext_noop/2","title":"ngettext_noop(msgid, msgid_plural)","anchor":"ngettext_noop/2"},{"id":"pgettext/3","title":"pgettext(msgctxt, msgid, bindings \\\\ Macro.escape(%{}))","anchor":"pgettext/3"},{"id":"pgettext_noop/2","title":"pgettext_noop(msgid, context)","anchor":"pgettext_noop/2"},{"id":"pngettext/5","title":"pngettext(msgctxt, msgid, msgid_plural, n, bindings \\\\ Macro.escape(%{}))","anchor":"pngettext/5"},{"id":"pngettext_noop/3","title":"pngettext_noop(msgctxt, msgid, msgid_plural)","anchor":"pngettext_noop/3"}],"key":"functions"}]},{"id":"LightningWeb.HealthCheck","group":"","title":"LightningWeb.HealthCheck","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"call/2","title":"call(conn, opts)","anchor":"call/2"},{"id":"init/1","title":"init(opts)","anchor":"init/1"}],"key":"functions"}]},{"id":"LightningWeb.Hooks","group":"","title":"LightningWeb.Hooks","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"on_mount/4","title":"on_mount(atom, arg2, session, socket)","anchor":"on_mount/4"}],"key":"functions"}]},{"id":"LightningWeb.InitAssigns","group":"","title":"LightningWeb.InitAssigns","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"on_mount/4","title":"on_mount(atom, params, session, socket)","anchor":"on_mount/4"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.AdaptorPicker","group":"","title":"LightningWeb.JobLive.AdaptorPicker","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"display_name_for_adaptor/1","title":"display_name_for_adaptor(name)","anchor":"display_name_for_adaptor/1"},{"id":"get_adaptor_version_options/1","title":"get_adaptor_version_options(adaptor)","anchor":"get_adaptor_version_options/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.CredentialPicker","group":"","title":"LightningWeb.JobLive.CredentialPicker","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.CronSetupComponent","group":"","title":"LightningWeb.JobLive.CronSetupComponent","sections":[{"id":"Usage","anchor":"module-usage"}],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_cron_expression/2","title":"build_cron_expression(prev, next)","anchor":"build_cron_expression/2"},{"id":"frequency_field/1","title":"frequency_field(assigns)","anchor":"frequency_field/1"},{"id":"get_cron_data/1","title":"get_cron_data(cron_expression)","anchor":"get_cron_data/1"},{"id":"hour_field/1","title":"hour_field(assigns)","anchor":"hour_field/1"},{"id":"minute_field/1","title":"minute_field(assigns)","anchor":"minute_field/1"},{"id":"monthday_field/1","title":"monthday_field(assigns)","anchor":"monthday_field/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"},{"id":"time_field/1","title":"time_field(assigns)","anchor":"time_field/1"},{"id":"weekday_field/1","title":"weekday_field(assigns)","anchor":"weekday_field/1"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.JobBuilder","group":"","title":"LightningWeb.JobLive.JobBuilder","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"delete_title/2","title":"delete_title(is_deletable, can_delete_job)","anchor":"delete_title/2"},{"id":"follow_run/2","title":"follow_run(job_id, attempt_run)","anchor":"follow_run/2"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"},{"id":"send_adaptor/2","title":"send_adaptor(job_id, adaptor)","anchor":"send_adaptor/2"},{"id":"send_credential/2","title":"send_credential(job_id, credential)","anchor":"send_credential/2"},{"id":"update_cron_expression/2","title":"update_cron_expression(job_id, cron_expression)","anchor":"update_cron_expression/2"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.JobBuilderComponents","group":"","title":"LightningWeb.JobLive.JobBuilderComponents","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"job_editor_component/1","title":"job_editor_component(assigns)","anchor":"job_editor_component/1"},{"id":"trigger_picker/1","title":"trigger_picker(assigns)","anchor":"trigger_picker/1"},{"id":"when_invalid/1","title":"when_invalid(assigns)","anchor":"when_invalid/1"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.ManualRunComponent","group":"","title":"LightningWeb.JobLive.ManualRunComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder","group":"","title":"LightningWeb.JobLive.ManualRunComponent.ManualWorkorder","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"changeset/2","title":"changeset(map, attrs)","anchor":"changeset/2"}],"key":"functions"}]},{"id":"LightningWeb.LiveHelpers","group":"","title":"LightningWeb.LiveHelpers","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"display_short_uuid/1","title":"display_short_uuid(uuid_string)","anchor":"display_short_uuid/1"},{"id":"fade_in/1","title":"fade_in(opts \\\\ [])","anchor":"fade_in/1"},{"id":"fade_out/1","title":"fade_out(opts \\\\ [])","anchor":"fade_out/1"},{"id":"live_error_block/1","title":"live_error_block(assigns)","anchor":"live_error_block/1"},{"id":"live_info_block/1","title":"live_info_block(assigns)","anchor":"live_info_block/1"},{"id":"live_nav_block/1","title":"live_nav_block(assigns)","anchor":"live_nav_block/1"}],"key":"functions"}]},{"id":"LightningWeb.ModalPortal","group":"","title":"LightningWeb.ModalPortal","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"close_modal/0","title":"close_modal()","anchor":"close_modal/0"},{"id":"handle_event/3","title":"handle_event(binary, _, socket)","anchor":"handle_event/3"},{"id":"on_hide/2","title":"on_hide(close_modal_target \\\\ nil, id \\\\ \"modal\")","anchor":"on_hide/2"},{"id":"on_show/2","title":"on_show(js \\\\ %JS{}, id)","anchor":"on_show/2"},{"id":"open_modal/2","title":"open_modal(module, attrs)","anchor":"open_modal/2"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"},{"id":"update/2","title":"update(assigns, socket)","anchor":"update/2"}],"key":"functions"}]},{"id":"LightningWeb.OauthCredentialHelper","group":"","title":"LightningWeb.OauthCredentialHelper","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"broadcast/2","title":"broadcast(subscription_id, msg)","anchor":"broadcast/2"},{"id":"broadcast_forward/3","title":"broadcast_forward(subscription_id, mod, opts)","anchor":"broadcast_forward/3"},{"id":"build_state/3","title":"build_state(subscription_id, mod, component_id)","anchor":"build_state/3"},{"id":"decode_state/1","title":"decode_state(state)","anchor":"decode_state/1"},{"id":"subscribe/1","title":"subscribe(subscription_id)","anchor":"subscribe/1"}],"key":"functions"}]},{"id":"LightningWeb.OidcController","group":"","title":"LightningWeb.OidcController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"new/2","title":"new(conn, map)","anchor":"new/2"},{"id":"show/2","title":"show(conn, map)","anchor":"show/2"}],"key":"functions"}]},{"id":"LightningWeb.PageView","group":"","title":"LightningWeb.PageView","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"__resource__/0","title":"__resource__()","anchor":"__resource__/0"},{"id":"render/2","title":"render(template, assigns \\\\ %{})","anchor":"render/2"},{"id":"template_not_found/2","title":"template_not_found(template, assigns)","anchor":"template_not_found/2"}],"key":"functions"}]},{"id":"LightningWeb.Pagination","group":"","title":"LightningWeb.Pagination","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"page_link/1","title":"page_link(assigns)","anchor":"page_link/1"},{"id":"pagination_bar/1","title":"pagination_bar(assigns)","anchor":"pagination_bar/1"},{"id":"raw_pagination_links/2","title":"raw_pagination_links(paginator, options \\\\ [])","anchor":"raw_pagination_links/2"}],"key":"functions"}]},{"id":"LightningWeb.Plugs.FirstSetup","group":"","title":"LightningWeb.Plugs.FirstSetup","sections":[]},{"id":"LightningWeb.ProfileLive.Edit","group":"","title":"LightningWeb.ProfileLive.Edit","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProfileLive.FormComponent","group":"","title":"LightningWeb.ProfileLive.FormComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProfileLive.MfaComponent","group":"","title":"LightningWeb.ProfileLive.MfaComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProjectLive.FormComponent","group":"","title":"LightningWeb.ProjectLive.FormComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProjectLive.Index","group":"","title":"LightningWeb.ProjectLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"delete_action/1","title":"delete_action(assigns)","anchor":"delete_action/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProjectLive.MFARequired","group":"","title":"LightningWeb.ProjectLive.MFARequired","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"on_mount/4","title":"on_mount(atom, params, session, socket)","anchor":"on_mount/4"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.ProjectLive.Settings","group":"","title":"LightningWeb.ProjectLive.Settings","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"digest/1","title":"digest(assigns)","anchor":"digest/1"},{"id":"failure_alert/1","title":"failure_alert(assigns)","anchor":"failure_alert/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"},{"id":"role/1","title":"role(assigns)","anchor":"role/1"},{"id":"user/1","title":"user(assigns)","anchor":"user/1"}],"key":"functions"}]},{"id":"LightningWeb.RouteHelpers","group":"","title":"LightningWeb.RouteHelpers","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"oidc_callback_url/0","title":"oidc_callback_url()","anchor":"oidc_callback_url/0"},{"id":"show_run_url/2","title":"show_run_url(project_id, run_id)","anchor":"show_run_url/2"}],"key":"functions"}]},{"id":"LightningWeb.Router","group":"","title":"LightningWeb.Router","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"api/2","title":"api(conn, _)","anchor":"api/2"},{"id":"browser/2","title":"browser(conn, _)","anchor":"browser/2"},{"id":"call/2","title":"call(conn, opts)","anchor":"call/2"},{"id":"init/1","title":"init(opts)","anchor":"init/1"},{"id":"storybook_assets/2","title":"storybook_assets(conn, _)","anchor":"storybook_assets/2"},{"id":"storybook_browser/2","title":"storybook_browser(conn, _)","anchor":"storybook_browser/2"}],"key":"functions"}]},{"id":"LightningWeb.RunLive.Index","group":"","title":"LightningWeb.RunLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"checked/2","title":"checked(changeset, id)","anchor":"checked/2"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.RunLive.RerunJobComponent","group":"","title":"LightningWeb.RunLive.RerunJobComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"handle_event/3","title":"handle_event(binary, map, socket)","anchor":"handle_event/3"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"},{"id":"update/2","title":"update(assigns, socket)","anchor":"update/2"}],"key":"functions"}]},{"id":"LightningWeb.RunLive.RunViewerLive","group":"","title":"LightningWeb.RunLive.RunViewerLive","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"handle_info/2","title":"handle_info(broadcast, socket)","anchor":"handle_info/2"}],"key":"functions"}]},{"id":"LightningWeb.RunLive.Show","group":"","title":"LightningWeb.RunLive.Show","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"apply_action/3","title":"apply_action(socket, atom, map)","anchor":"apply_action/3"}],"key":"functions"}]},{"id":"LightningWeb.RunLive.WorkOrderComponent","group":"","title":"LightningWeb.RunLive.WorkOrderComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.Telemetry","group":"","title":"LightningWeb.Telemetry","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"child_spec/1","title":"child_spec(init_arg)","anchor":"child_spec/1"},{"id":"metrics/0","title":"metrics()","anchor":"metrics/0"},{"id":"start_link/1","title":"start_link(arg)","anchor":"start_link/1"}],"key":"functions"}]},{"id":"LightningWeb.TokensLive.Index","group":"","title":"LightningWeb.TokensLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.UserAuth","group":"","title":"LightningWeb.UserAuth","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"authenticate_bearer/2","title":"authenticate_bearer(conn, opts)","anchor":"authenticate_bearer/2"},{"id":"fetch_current_user/2","title":"fetch_current_user(conn, opts)","anchor":"fetch_current_user/2"},{"id":"log_in_user/2","title":"log_in_user(conn, user)","anchor":"log_in_user/2"},{"id":"log_out_user/1","title":"log_out_user(conn)","anchor":"log_out_user/1"},{"id":"mark_totp_pending/1","title":"mark_totp_pending(conn)","anchor":"mark_totp_pending/1"},{"id":"new_session/2","title":"new_session(conn, token)","anchor":"new_session/2"},{"id":"redirect_if_user_is_authenticated/2","title":"redirect_if_user_is_authenticated(conn, opts)","anchor":"redirect_if_user_is_authenticated/2"},{"id":"redirect_with_return_to/2","title":"redirect_with_return_to(conn, params \\\\ %{})","anchor":"redirect_with_return_to/2"},{"id":"require_authenticated_user/2","title":"require_authenticated_user(conn, opts)","anchor":"require_authenticated_user/2"},{"id":"totp_pending?/1","title":"totp_pending?(conn)","anchor":"totp_pending?/1"},{"id":"totp_validated/1","title":"totp_validated(conn)","anchor":"totp_validated/1"}],"key":"functions"}]},{"id":"LightningWeb.UserConfirmationController","group":"","title":"LightningWeb.UserConfirmationController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"confirm_email/2","title":"confirm_email(conn, map)","anchor":"confirm_email/2"},{"id":"create/2","title":"create(conn, map)","anchor":"create/2"},{"id":"edit/2","title":"edit(conn, map)","anchor":"edit/2"},{"id":"new/2","title":"new(conn, params)","anchor":"new/2"},{"id":"update/2","title":"update(conn, map)","anchor":"update/2"}],"key":"functions"}]},{"id":"LightningWeb.UserLive.Edit","group":"","title":"LightningWeb.UserLive.Edit","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.UserLive.FormComponent","group":"","title":"LightningWeb.UserLive.FormComponent","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.UserLive.Index","group":"","title":"LightningWeb.UserLive.Index","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"delete_action/1","title":"delete_action(assigns)","anchor":"delete_action/1"},{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.UserRegistrationController","group":"","title":"LightningWeb.UserRegistrationController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create/2","title":"create(conn, map)","anchor":"create/2"},{"id":"new/2","title":"new(conn, params)","anchor":"new/2"}],"key":"functions"}]},{"id":"LightningWeb.UserResetPasswordController","group":"","title":"LightningWeb.UserResetPasswordController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create/2","title":"create(conn, map)","anchor":"create/2"},{"id":"edit/2","title":"edit(conn, params)","anchor":"edit/2"},{"id":"new/2","title":"new(conn, params)","anchor":"new/2"},{"id":"update/2","title":"update(conn, map)","anchor":"update/2"}],"key":"functions"}]},{"id":"LightningWeb.UserSessionController","group":"","title":"LightningWeb.UserSessionController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"auth_handler_url/0","title":"auth_handler_url()","anchor":"auth_handler_url/0"},{"id":"create/2","title":"create(conn, map)","anchor":"create/2"},{"id":"delete/2","title":"delete(conn, params)","anchor":"delete/2"},{"id":"exchange_token/2","title":"exchange_token(conn, map)","anchor":"exchange_token/2"},{"id":"new/2","title":"new(conn, params)","anchor":"new/2"}],"key":"functions"}]},{"id":"LightningWeb.UserTOTPController","group":"","title":"LightningWeb.UserTOTPController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create/2","title":"create(conn, map)","anchor":"create/2"},{"id":"new/2","title":"new(conn, params)","anchor":"new/2"}],"key":"functions"}]},{"id":"LightningWeb.WebhooksController","group":"","title":"LightningWeb.WebhooksController","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create/2","title":"create(conn, map)","anchor":"create/2"}],"key":"functions"}]},{"id":"LightningWeb.WorkflowLive.EditorPane","group":"","title":"LightningWeb.WorkflowLive.EditorPane","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"render/1","title":"render(assigns)","anchor":"render/1"}],"key":"functions"}]},{"id":"LightningWeb.WorkflowLive.JobView","group":"","title":"LightningWeb.WorkflowLive.JobView","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"container/1","title":"container(assigns)","anchor":"container/1"},{"id":"input_pane/1","title":"input_pane(assigns)","anchor":"input_pane/1"},{"id":"job_edit_view/1","title":"job_edit_view(assigns)","anchor":"job_edit_view/1"}],"key":"functions"}]},{"id":"LightningWeb.WorkflowNewLive.WorkflowParams","group":"","title":"LightningWeb.WorkflowNewLive.WorkflowParams","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"apply_form_params/2","title":"apply_form_params(current_params, form_params)","anchor":"apply_form_params/2"},{"id":"apply_patches/2","title":"apply_patches(current_params, patches)","anchor":"apply_patches/2"},{"id":"to_map/1","title":"to_map(changeset)","anchor":"to_map/1"},{"id":"to_patches/2","title":"to_patches(initial_params, target_params)","anchor":"to_patches/2"}],"key":"functions"}]},{"id":"ObanPruner","group":"","title":"ObanPruner","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"perform/1","title":"perform(job)","anchor":"perform/1"}],"key":"functions"}]},{"id":"Storybook.Root","group":"","title":"Storybook.Root","sections":[]},{"id":"Lightning.Accounts","group":"Accounts","title":"Lightning.Accounts","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"apply_user_email/3","title":"apply_user_email(user, password, attrs)","anchor":"apply_user_email/3"},{"id":"cancel_scheduled_deletion/1","title":"cancel_scheduled_deletion(user_id)","anchor":"cancel_scheduled_deletion/1"},{"id":"change_scheduled_deletion/2","title":"change_scheduled_deletion(user, attrs \\\\ %{})","anchor":"change_scheduled_deletion/2"},{"id":"change_superuser_registration/1","title":"change_superuser_registration(attrs \\\\ %{})","anchor":"change_superuser_registration/1"},{"id":"change_user_details/2","title":"change_user_details(user, attrs \\\\ %{})","anchor":"change_user_details/2"},{"id":"change_user_email/2","title":"change_user_email(user, attrs \\\\ %{})","anchor":"change_user_email/2"},{"id":"change_user_password/2","title":"change_user_password(user, attrs \\\\ %{})","anchor":"change_user_password/2"},{"id":"change_user_registration/1","title":"change_user_registration(attrs \\\\ %{})","anchor":"change_user_registration/1"},{"id":"confirm_user/1","title":"confirm_user(token)","anchor":"confirm_user/1"},{"id":"delete_auth_token/1","title":"delete_auth_token(token)","anchor":"delete_auth_token/1"},{"id":"delete_session_token/1","title":"delete_session_token(token)","anchor":"delete_session_token/1"},{"id":"delete_token/1","title":"delete_token(token)","anchor":"delete_token/1"},{"id":"delete_user/1","title":"delete_user(user)","anchor":"delete_user/1"},{"id":"delete_user_totp/1","title":"delete_user_totp(totp)","anchor":"delete_user_totp/1"},{"id":"deliver_update_email_instructions/3","title":"deliver_update_email_instructions(user, current_email, update_email_url_fun)","anchor":"deliver_update_email_instructions/3"},{"id":"deliver_user_confirmation_instructions/2","title":"deliver_user_confirmation_instructions(user, confirmation_url_fun)","anchor":"deliver_user_confirmation_instructions/2"},{"id":"deliver_user_confirmation_instructions/3","title":"deliver_user_confirmation_instructions(registerer, user, confirmation_url_fun)","anchor":"deliver_user_confirmation_instructions/3"},{"id":"deliver_user_reset_password_instructions/2","title":"deliver_user_reset_password_instructions(user, reset_password_url_fun)","anchor":"deliver_user_reset_password_instructions/2"},{"id":"exchange_auth_token/1","title":"exchange_auth_token(auth_token)","anchor":"exchange_auth_token/1"},{"id":"generate_api_token/1","title":"generate_api_token(user)","anchor":"generate_api_token/1"},{"id":"generate_auth_token/1","title":"generate_auth_token(user)","anchor":"generate_auth_token/1"},{"id":"generate_user_session_token/1","title":"generate_user_session_token(user)","anchor":"generate_user_session_token/1"},{"id":"get_token!/1","title":"get_token!(id)","anchor":"get_token!/1"},{"id":"get_user!/1","title":"get_user!(id)","anchor":"get_user!/1"},{"id":"get_user_by_api_token/1","title":"get_user_by_api_token(token)","anchor":"get_user_by_api_token/1"},{"id":"get_user_by_auth_token/1","title":"get_user_by_auth_token(token)","anchor":"get_user_by_auth_token/1"},{"id":"get_user_by_email/1","title":"get_user_by_email(email)","anchor":"get_user_by_email/1"},{"id":"get_user_by_email_and_password/2","title":"get_user_by_email_and_password(email, password)","anchor":"get_user_by_email_and_password/2"},{"id":"get_user_by_reset_password_token/1","title":"get_user_by_reset_password_token(token)","anchor":"get_user_by_reset_password_token/1"},{"id":"get_user_by_session_token/1","title":"get_user_by_session_token(token)","anchor":"get_user_by_session_token/1"},{"id":"get_user_totp/1","title":"get_user_totp(user)","anchor":"get_user_totp/1"},{"id":"get_users_to_alert_for_project/1","title":"get_users_to_alert_for_project(map)","anchor":"get_users_to_alert_for_project/1"},{"id":"has_activity_in_projects?/1","title":"has_activity_in_projects?(user)","anchor":"has_activity_in_projects?/1"},{"id":"has_one_superuser?/0","title":"has_one_superuser?()","anchor":"has_one_superuser?/0"},{"id":"list_api_tokens/1","title":"list_api_tokens(user)","anchor":"list_api_tokens/1"},{"id":"list_users/0","title":"list_users()","anchor":"list_users/0"},{"id":"perform/1","title":"perform(job)","anchor":"perform/1"},{"id":"purge_user/1","title":"purge_user(id)","anchor":"purge_user/1"},{"id":"register_superuser/1","title":"register_superuser(attrs)","anchor":"register_superuser/1"},{"id":"register_user/1","title":"register_user(attrs)","anchor":"register_user/1"},{"id":"reset_user_password/2","title":"reset_user_password(user, attrs)","anchor":"reset_user_password/2"},{"id":"schedule_user_deletion/2","title":"schedule_user_deletion(user, email)","anchor":"schedule_user_deletion/2"},{"id":"update_user_details/2","title":"update_user_details(user, attrs \\\\ %{})","anchor":"update_user_details/2"},{"id":"update_user_email/2","title":"update_user_email(user, token)","anchor":"update_user_email/2"},{"id":"update_user_password/3","title":"update_user_password(user, password, attrs)","anchor":"update_user_password/3"},{"id":"upsert_user_totp/2","title":"upsert_user_totp(totp, attrs)","anchor":"upsert_user_totp/2"},{"id":"valid_user_totp?/2","title":"valid_user_totp?(user, code)","anchor":"valid_user_totp?/2"},{"id":"validate_change_user_email/2","title":"validate_change_user_email(user, params)","anchor":"validate_change_user_email/2"}],"key":"functions"}]},{"id":"Lightning.Accounts.User","group":"Accounts","title":"Lightning.Accounts.User","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"confirm_changeset/1","title":"confirm_changeset(user)","anchor":"confirm_changeset/1"},{"id":"details_changeset/2","title":"details_changeset(user, attrs)","anchor":"details_changeset/2"},{"id":"email_changeset/2","title":"email_changeset(user, attrs)","anchor":"email_changeset/2"},{"id":"password_changeset/3","title":"password_changeset(user, attrs, opts \\\\ [])","anchor":"password_changeset/3"},{"id":"scheduled_deletion_changeset/2","title":"scheduled_deletion_changeset(user, attrs)","anchor":"scheduled_deletion_changeset/2"},{"id":"superuser_registration_changeset/2","title":"superuser_registration_changeset(attrs, opts \\\\ [])","anchor":"superuser_registration_changeset/2"},{"id":"user_registration_changeset/2","title":"user_registration_changeset(attrs, opts \\\\ [])","anchor":"user_registration_changeset/2"},{"id":"valid_password?/2","title":"valid_password?(arg1, password)","anchor":"valid_password?/2"},{"id":"validate_current_password/2","title":"validate_current_password(changeset, password)","anchor":"validate_current_password/2"}],"key":"functions"}]},{"id":"Lightning.Accounts.User.RolesEnum","group":"Accounts","title":"Lightning.Accounts.User.RolesEnum","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"cast/1","title":"cast(arg1)","anchor":"cast/1"},{"id":"create_type/0","title":"create_type()","anchor":"create_type/0"},{"id":"drop_type/0","title":"drop_type()","anchor":"drop_type/0"},{"id":"dump/1","title":"dump(term)","anchor":"dump/1"},{"id":"embed_as/1","title":"embed_as(_)","anchor":"embed_as/1"},{"id":"equal?/2","title":"equal?(term1, term2)","anchor":"equal?/2"},{"id":"load/1","title":"load(arg1)","anchor":"load/1"},{"id":"schema/0","title":"schema()","anchor":"schema/0"},{"id":"schemaless_type/0","title":"schemaless_type()","anchor":"schemaless_type/0"},{"id":"type/0","title":"type()","anchor":"type/0"},{"id":"valid_value?/1","title":"valid_value?(value)","anchor":"valid_value?/1"}],"key":"functions"}]},{"id":"Lightning.Accounts.UserNotifier","group":"Accounts","title":"Lightning.Accounts.UserNotifier","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_digest_url/3","title":"build_digest_url(workflow, start_date, end_date)","anchor":"build_digest_url/3"},{"id":"deliver_confirmation_instructions/2","title":"deliver_confirmation_instructions(user, url)","anchor":"deliver_confirmation_instructions/2"},{"id":"deliver_confirmation_instructions/3","title":"deliver_confirmation_instructions(enroller, user, url)","anchor":"deliver_confirmation_instructions/3"},{"id":"deliver_project_addition_notification/2","title":"deliver_project_addition_notification(user, project)","anchor":"deliver_project_addition_notification/2"},{"id":"deliver_project_digest/2","title":"deliver_project_digest(digest_data, params)","anchor":"deliver_project_digest/2"},{"id":"deliver_reset_password_instructions/2","title":"deliver_reset_password_instructions(user, url)","anchor":"deliver_reset_password_instructions/2"},{"id":"deliver_update_email_instructions/2","title":"deliver_update_email_instructions(email, url)","anchor":"deliver_update_email_instructions/2"},{"id":"deliver_update_email_warning/2","title":"deliver_update_email_warning(email, new_email)","anchor":"deliver_update_email_warning/2"},{"id":"notify_project_deletion/2","title":"notify_project_deletion(user, project)","anchor":"notify_project_deletion/2"},{"id":"send_deletion_notification_email/1","title":"send_deletion_notification_email(user)","anchor":"send_deletion_notification_email/1"}],"key":"functions"}]},{"id":"Lightning.Accounts.UserTOTP","group":"Accounts","title":"Lightning.Accounts.UserTOTP","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"changeset/2","title":"changeset(totp, attrs)","anchor":"changeset/2"},{"id":"valid_totp?/2","title":"valid_totp?(totp, code)","anchor":"valid_totp?/2"}],"key":"functions"}]},{"id":"Lightning.Accounts.UserToken","group":"Accounts","title":"Lightning.Accounts.UserToken","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_email_token/3","title":"build_email_token(user, context, sent_to)","anchor":"build_email_token/3"},{"id":"build_token/2","title":"build_token(user, context)","anchor":"build_token/2"},{"id":"changeset/2","title":"changeset(user_token, attrs)","anchor":"changeset/2"},{"id":"generate_and_sign/2","title":"generate_and_sign(extra_claims \\\\ %{}, key \\\\ __default_signer__())","anchor":"generate_and_sign/2"},{"id":"generate_and_sign!/2","title":"generate_and_sign!(extra_claims \\\\ %{}, key \\\\ __default_signer__())","anchor":"generate_and_sign!/2"},{"id":"last_used_changeset/1","title":"last_used_changeset(user)","anchor":"last_used_changeset/1"},{"id":"token_and_context_query/2","title":"token_and_context_query(token, context)","anchor":"token_and_context_query/2"},{"id":"user_and_contexts_query/2","title":"user_and_contexts_query(user, contexts)","anchor":"user_and_contexts_query/2"},{"id":"verify_and_validate/3","title":"verify_and_validate(bearer_token, key \\\\ __default_signer__(), context \\\\ %{})","anchor":"verify_and_validate/3"},{"id":"verify_and_validate!/3","title":"verify_and_validate!(bearer_token, key \\\\ __default_signer__(), context \\\\ %{})","anchor":"verify_and_validate!/3"},{"id":"verify_change_email_token_query/2","title":"verify_change_email_token_query(token, context)","anchor":"verify_change_email_token_query/2"},{"id":"verify_email_token_query/2","title":"verify_email_token_query(token, context)","anchor":"verify_email_token_query/2"},{"id":"verify_token_query/2","title":"verify_token_query(token, context)","anchor":"verify_token_query/2"}],"key":"functions"}]},{"id":"Lightning.Credentials","group":"Credentials","title":"Lightning.Credentials","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"change_credential/2","title":"change_credential(credential, attrs \\\\ %{})","anchor":"change_credential/2"},{"id":"create_credential/1","title":"create_credential(attrs \\\\ %{})","anchor":"create_credential/1"},{"id":"delete_credential/1","title":"delete_credential(credential)","anchor":"delete_credential/1"},{"id":"get_credential!/1","title":"get_credential!(id)","anchor":"get_credential!/1"},{"id":"invalid_projects_for_user/2","title":"invalid_projects_for_user(credential_id, user_id)","anchor":"invalid_projects_for_user/2"},{"id":"list_credentials/0","title":"list_credentials()","anchor":"list_credentials/0"},{"id":"list_credentials/1","title":"list_credentials(project)","anchor":"list_credentials/1"},{"id":"list_credentials_for_user/1","title":"list_credentials_for_user(user_id)","anchor":"list_credentials_for_user/1"},{"id":"maybe_refresh_token/1","title":"maybe_refresh_token(credential)","anchor":"maybe_refresh_token/1"},{"id":"sensitive_values_for/1","title":"sensitive_values_for(id)","anchor":"sensitive_values_for/1"},{"id":"update_credential/2","title":"update_credential(credential, attrs)","anchor":"update_credential/2"}],"key":"functions"}]},{"id":"Lightning.Credentials.Audit","group":"Credentials","title":"Lightning.Credentials.Audit","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"event/4","title":"event(event, row_id, actor_id, metadata \\\\ %{})","anchor":"event/4"},{"id":"save/1","title":"save(changes)","anchor":"save/1"}],"key":"functions"}]},{"id":"Lightning.Credentials.Credential","group":"Credentials","title":"Lightning.Credentials.Credential","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"}]},{"id":"Lightning.Credentials.Schema","group":"Credentials","title":"Lightning.Credentials.Schema","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/2","title":"new(body, name \\\\ nil)","anchor":"new/2"},{"id":"properties/2","title":"properties(schema, field)","anchor":"properties/2"},{"id":"required?/2","title":"required?(schema, field)","anchor":"required?/2"},{"id":"validate/2","title":"validate(changeset, schema)","anchor":"validate/2"}],"key":"functions"}]},{"id":"Lightning.Credentials.SchemaDocument","group":"Credentials","title":"Lightning.Credentials.SchemaDocument","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"changeset/3","title":"changeset(document, attrs, list)","anchor":"changeset/3"}],"key":"functions"}]},{"id":"Lightning.Credentials.SensitiveValues","group":"Credentials","title":"Lightning.Credentials.SensitiveValues","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"pairs/0","title":"pairs()","anchor":"t:pairs/0"},{"id":"raw_pairs/0","title":"raw_pairs()","anchor":"t:raw_pairs/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"flatten_map/1","title":"flatten_map(item)","anchor":"flatten_map/1"},{"id":"secret_values/1","title":"secret_values(map)","anchor":"secret_values/1"}],"key":"functions"}]},{"id":"Lightning.Invocation","group":"Invocations","title":"Lightning.Invocation","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"change_dataclip/2","title":"change_dataclip(dataclip, attrs \\\\ %{})","anchor":"change_dataclip/2"},{"id":"change_run/2","title":"change_run(run, attrs \\\\ %{})","anchor":"change_run/2"},{"id":"create_dataclip/1","title":"create_dataclip(attrs \\\\ %{})","anchor":"create_dataclip/1"},{"id":"create_log_line/2","title":"create_log_line(run, body)","anchor":"create_log_line/2"},{"id":"create_run/1","title":"create_run(attrs \\\\ %{})","anchor":"create_run/1"},{"id":"delete_dataclip/1","title":"delete_dataclip(dataclip)","anchor":"delete_dataclip/1"},{"id":"delete_run/1","title":"delete_run(run)","anchor":"delete_run/1"},{"id":"filter_run_body_and_logs_where/2","title":"filter_run_body_and_logs_where(search_term, search_fields)","anchor":"filter_run_body_and_logs_where/2"},{"id":"filter_run_finished_after_where/1","title":"filter_run_finished_after_where(date_after)","anchor":"filter_run_finished_after_where/1"},{"id":"filter_run_finished_before_where/1","title":"filter_run_finished_before_where(date_before)","anchor":"filter_run_finished_before_where/1"},{"id":"filter_run_status_where/1","title":"filter_run_status_where(statuses)","anchor":"filter_run_status_where/1"},{"id":"filter_workflow_where/1","title":"filter_workflow_where(workflow_id)","anchor":"filter_workflow_where/1"},{"id":"filter_workorder_insert_after_where/1","title":"filter_workorder_insert_after_where(date_after)","anchor":"filter_workorder_insert_after_where/1"},{"id":"filter_workorder_insert_before_where/1","title":"filter_workorder_insert_before_where(date_before)","anchor":"filter_workorder_insert_before_where/1"},{"id":"get_dataclip/1","title":"get_dataclip(run)","anchor":"get_dataclip/1"},{"id":"get_dataclip!/1","title":"get_dataclip!(id)","anchor":"get_dataclip!/1"},{"id":"get_dataclip_query/1","title":"get_dataclip_query(run)","anchor":"get_dataclip_query/1"},{"id":"get_result_dataclip_query/1","title":"get_result_dataclip_query(run)","anchor":"get_result_dataclip_query/1"},{"id":"get_run!/1","title":"get_run!(id)","anchor":"get_run!/1"},{"id":"get_run_with_job!/1","title":"get_run_with_job!(id)","anchor":"get_run_with_job!/1"},{"id":"get_workorders_by_ids/1","title":"get_workorders_by_ids(ids)","anchor":"get_workorders_by_ids/1"},{"id":"list_dataclips/0","title":"list_dataclips()","anchor":"list_dataclips/0"},{"id":"list_dataclips/1","title":"list_dataclips(project)","anchor":"list_dataclips/1"},{"id":"list_dataclips_for_job/1","title":"list_dataclips_for_job(job)","anchor":"list_dataclips_for_job/1"},{"id":"list_dataclips_query/1","title":"list_dataclips_query(project)","anchor":"list_dataclips_query/1"},{"id":"list_runs/0","title":"list_runs()","anchor":"list_runs/0"},{"id":"list_runs_for_project/2","title":"list_runs_for_project(project, params \\\\ %{})","anchor":"list_runs_for_project/2"},{"id":"list_runs_for_project_query/1","title":"list_runs_for_project_query(project)","anchor":"list_runs_for_project_query/1"},{"id":"list_work_orders_for_project_query/2","title":"list_work_orders_for_project_query(project, search_params)","anchor":"list_work_orders_for_project_query/2"},{"id":"search_workorders/1","title":"search_workorders(project)","anchor":"search_workorders/1"},{"id":"search_workorders/3","title":"search_workorders(project, filter, params \\\\ %{})","anchor":"search_workorders/3"},{"id":"update_dataclip/2","title":"update_dataclip(dataclip, attrs)","anchor":"update_dataclip/2"},{"id":"update_run/2","title":"update_run(run, attrs)","anchor":"update_run/2"},{"id":"with_attempts/1","title":"with_attempts(query)","anchor":"with_attempts/1"}],"key":"functions"}]},{"id":"Lightning.Invocation.Dataclip","group":"Invocations","title":"Lightning.Invocation.Dataclip","sections":[{"id":"Types","anchor":"module-types"}],"nodeGroups":[{"name":"Types","nodes":[{"id":"source_type/0","title":"source_type()","anchor":"t:source_type/0"},{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"get_types/0","title":"get_types()","anchor":"get_types/0"},{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"},{"id":"validate_by_type/1","title":"validate_by_type(changeset)","anchor":"validate_by_type/1"}],"key":"functions"}]},{"id":"Lightning.Invocation.LogLine","group":"Invocations","title":"Lightning.Invocation.LogLine","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Invocation.Query","group":"Invocations","title":"Lightning.Invocation.Query","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"last_run_for_job/1","title":"last_run_for_job(job)","anchor":"last_run_for_job/1"},{"id":"last_successful_run_for_job/1","title":"last_successful_run_for_job(job)","anchor":"last_successful_run_for_job/1"},{"id":"runs_for/1","title":"runs_for(user)","anchor":"runs_for/1"},{"id":"runs_with_code/2","title":"runs_with_code(query, exit_code)","anchor":"runs_with_code/2"}],"key":"functions"}]},{"id":"Lightning.Invocation.Run","group":"Invocations","title":"Lightning.Invocation.Run","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"},{"id":"new_from/1","title":"new_from(run)","anchor":"new_from/1"}],"key":"functions"}]},{"id":"Lightning.InvocationReason","group":"Invocations","title":"Lightning.InvocationReason","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"source_type/0","title":"source_type()","anchor":"t:source_type/0"},{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"},{"id":"validate_by_trigger_type/1","title":"validate_by_trigger_type(changeset)","anchor":"validate_by_trigger_type/1"}],"key":"functions"}]},{"id":"Lightning.InvocationReasons","group":"Invocations","title":"Lightning.InvocationReasons","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"reason_type/0","title":"reason_type()","anchor":"t:reason_type/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"build/2","title":"build(type, arg2)","anchor":"build/2"},{"id":"create_reason/1","title":"create_reason(attrs \\\\ %{})","anchor":"create_reason/1"}],"key":"functions"}]},{"id":"Lightning.Pipeline","group":"Pipeline","title":"Lightning.Pipeline","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"assemble_logs_for_run/1","title":"assemble_logs_for_run(run)","anchor":"assemble_logs_for_run/1"},{"id":"logs_for_run/1","title":"logs_for_run(run)","anchor":"logs_for_run/1"},{"id":"process/1","title":"process(attempt_run)","anchor":"process/1"}],"key":"functions"}]},{"id":"Lightning.Pipeline.Runner","group":"Pipeline","title":"Lightning.Pipeline.Runner","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"create_dataclip_from_result/2","title":"create_dataclip_from_result(result, run)","anchor":"create_dataclip_from_result/2"},{"id":"find_or_install_adaptor/1","title":"find_or_install_adaptor(adaptor)","anchor":"find_or_install_adaptor/1"},{"id":"scrub_result/1","title":"scrub_result(body)","anchor":"scrub_result/1"},{"id":"start/2","title":"start(run, opts \\\\ [])","anchor":"start/2"}],"key":"functions"}]},{"id":"Lightning.Pipeline.Runner.Handler","group":"Pipeline","title":"Lightning.Pipeline.Runner.Handler","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"handler_opts/0","title":"handler_opts()","anchor":"t:handler_opts/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"on_start/1","title":"on_start(context)","anchor":"on_start/1"},{"id":"stop/1","title":"stop(state)","anchor":"stop/1"}],"key":"functions"}]},{"id":"Lightning.Pipeline.StateAssembler","group":"Pipeline","title":"Lightning.Pipeline.StateAssembler","sections":[{"id":"How state is assembled","anchor":"module-how-state-is-assembled"},{"id":"Saved inputs","anchor":"module-saved-inputs"}],"nodeGroups":[{"name":"Functions","nodes":[{"id":"assemble/1","title":"assemble(run)","anchor":"assemble/1"}],"key":"functions"}]},{"id":"Lightning.Jobs","group":"Jobs","title":"Lightning.Jobs","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"change_job/2","title":"change_job(job, attrs \\\\ %{})","anchor":"change_job/2"},{"id":"create_job/1","title":"create_job(attrs \\\\ %{})","anchor":"create_job/1"},{"id":"delete_job/1","title":"delete_job(job)","anchor":"delete_job/1"},{"id":"get_downstream_jobs_for/2","title":"get_downstream_jobs_for(job, edge_condition \\\\ nil)","anchor":"get_downstream_jobs_for/2"},{"id":"get_job/1","title":"get_job(id)","anchor":"get_job/1"},{"id":"get_job!/1","title":"get_job!(id)","anchor":"get_job!/1"},{"id":"get_upstream_jobs_for/1","title":"get_upstream_jobs_for(map)","anchor":"get_upstream_jobs_for/1"},{"id":"jobs_for_project/1","title":"jobs_for_project(project)","anchor":"jobs_for_project/1"},{"id":"jobs_for_project_query/1","title":"jobs_for_project_query(project)","anchor":"jobs_for_project_query/1"},{"id":"list_active_cron_jobs/0","title":"list_active_cron_jobs()","anchor":"list_active_cron_jobs/0"},{"id":"list_jobs/0","title":"list_jobs()","anchor":"list_jobs/0"},{"id":"list_jobs_for_workflow/1","title":"list_jobs_for_workflow(workflow)","anchor":"list_jobs_for_workflow/1"},{"id":"update_job/2","title":"update_job(job, attrs)","anchor":"update_job/2"}],"key":"functions"}]},{"id":"Lightning.Jobs.Job","group":"Jobs","title":"Lightning.Jobs.Job","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs \\\\ %{})","anchor":"new/1"},{"id":"put_project_credential/2","title":"put_project_credential(job, project_credential)","anchor":"put_project_credential/2"},{"id":"put_workflow/2","title":"put_workflow(changeset, workflow)","anchor":"put_workflow/2"},{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Jobs.Query","group":"Jobs","title":"Lightning.Jobs.Query","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"enabled_cron_jobs_by_edge/0","title":"enabled_cron_jobs_by_edge()","anchor":"enabled_cron_jobs_by_edge/0"},{"id":"jobs_for/1","title":"jobs_for(user)","anchor":"jobs_for/1"}],"key":"functions"}]},{"id":"Lightning.Jobs.Scheduler","group":"Jobs","title":"Lightning.Jobs.Scheduler","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"enqueue_cronjobs/0","title":"enqueue_cronjobs()","anchor":"enqueue_cronjobs/0"},{"id":"enqueue_cronjobs/1","title":"enqueue_cronjobs(date_time)","anchor":"enqueue_cronjobs/1"}],"key":"functions"}]},{"id":"Lightning.Jobs.Trigger","group":"Jobs","title":"Lightning.Jobs.Trigger","sections":[{"id":"Types","anchor":"module-types"}],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"},{"id":"trigger_type/0","title":"trigger_type()","anchor":"t:trigger_type/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(attrs)","anchor":"new/1"},{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Projects","group":"Projects","title":"Lightning.Projects","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"cancel_scheduled_deletion/1","title":"cancel_scheduled_deletion(project_id)","anchor":"cancel_scheduled_deletion/1"},{"id":"change_project/2","title":"change_project(project, attrs \\\\ %{})","anchor":"change_project/2"},{"id":"create_project/1","title":"create_project(attrs \\\\ %{})","anchor":"create_project/1"},{"id":"delete_project/1","title":"delete_project(project)","anchor":"delete_project/1"},{"id":"export_project/2","title":"export_project(atom, project_id)","anchor":"export_project/2"},{"id":"get_project/1","title":"get_project(id)","anchor":"get_project/1"},{"id":"get_project!/1","title":"get_project!(id)","anchor":"get_project!/1"},{"id":"get_project_credential/2","title":"get_project_credential(project_id, credential_id)","anchor":"get_project_credential/2"},{"id":"get_project_user/1","title":"get_project_user(id)","anchor":"get_project_user/1"},{"id":"get_project_user/2","title":"get_project_user(project, user)","anchor":"get_project_user/2"},{"id":"get_project_user!/1","title":"get_project_user!(id)","anchor":"get_project_user!/1"},{"id":"get_project_user_role/2","title":"get_project_user_role(user, project)","anchor":"get_project_user_role/2"},{"id":"get_project_with_users!/1","title":"get_project_with_users!(id)","anchor":"get_project_with_users!/1"},{"id":"get_projects_for_user/1","title":"get_projects_for_user(user)","anchor":"get_projects_for_user/1"},{"id":"is_member_of?/2","title":"is_member_of?(project, user)","anchor":"is_member_of?/2"},{"id":"list_project_credentials/1","title":"list_project_credentials(project)","anchor":"list_project_credentials/1"},{"id":"list_projects/0","title":"list_projects()","anchor":"list_projects/0"},{"id":"perform/1","title":"perform(job)","anchor":"perform/1"},{"id":"project_attempt_run_query/1","title":"project_attempt_run_query(project)","anchor":"project_attempt_run_query/1"},{"id":"project_attempts_query/1","title":"project_attempts_query(project)","anchor":"project_attempts_query/1"},{"id":"project_credentials_query/1","title":"project_credentials_query(project)","anchor":"project_credentials_query/1"},{"id":"project_dataclip_invocation_reason/1","title":"project_dataclip_invocation_reason(project)","anchor":"project_dataclip_invocation_reason/1"},{"id":"project_dataclips_query/1","title":"project_dataclips_query(project)","anchor":"project_dataclips_query/1"},{"id":"project_jobs_query/1","title":"project_jobs_query(project)","anchor":"project_jobs_query/1"},{"id":"project_run_invocation_reasons/1","title":"project_run_invocation_reasons(project)","anchor":"project_run_invocation_reasons/1"},{"id":"project_runs_query/1","title":"project_runs_query(project)","anchor":"project_runs_query/1"},{"id":"project_trigger_invocation_reason/1","title":"project_trigger_invocation_reason(project)","anchor":"project_trigger_invocation_reason/1"},{"id":"project_triggers_query/1","title":"project_triggers_query(project)","anchor":"project_triggers_query/1"},{"id":"project_user_role_query/2","title":"project_user_role_query(user, project)","anchor":"project_user_role_query/2"},{"id":"project_users_query/1","title":"project_users_query(project)","anchor":"project_users_query/1"},{"id":"project_workflows_query/1","title":"project_workflows_query(project)","anchor":"project_workflows_query/1"},{"id":"project_workorders_query/1","title":"project_workorders_query(project)","anchor":"project_workorders_query/1"},{"id":"projects_for_user_query/1","title":"projects_for_user_query(user)","anchor":"projects_for_user_query/1"},{"id":"schedule_project_deletion/1","title":"schedule_project_deletion(project)","anchor":"schedule_project_deletion/1"},{"id":"select_first_project_for_user/1","title":"select_first_project_for_user(user)","anchor":"select_first_project_for_user/1"},{"id":"update_project/2","title":"update_project(project, attrs)","anchor":"update_project/2"},{"id":"update_project_user/2","title":"update_project_user(project_user, attrs)","anchor":"update_project_user/2"},{"id":"url_safe_project_name/1","title":"url_safe_project_name(name)","anchor":"url_safe_project_name/1"},{"id":"validate_for_deletion/2","title":"validate_for_deletion(project, attrs)","anchor":"validate_for_deletion/2"}],"key":"functions"}]},{"id":"Lightning.Projects.Project","group":"Projects","title":"Lightning.Projects.Project","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"deletion_changeset/2","title":"deletion_changeset(project, attrs)","anchor":"deletion_changeset/2"},{"id":"validate/1","title":"validate(changeset)","anchor":"validate/1"}],"key":"functions"}]},{"id":"Lightning.Projects.ProjectCredential","group":"Projects","title":"Lightning.Projects.ProjectCredential","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"}]},{"id":"Lightning.Projects.ProjectUser","group":"Projects","title":"Lightning.Projects.ProjectUser","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"}]},{"id":"Lightning.Projects.ProjectUser.DigestEnum","group":"Projects","title":"Lightning.Projects.ProjectUser.DigestEnum","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"cast/1","title":"cast(arg1)","anchor":"cast/1"},{"id":"create_type/0","title":"create_type()","anchor":"create_type/0"},{"id":"drop_type/0","title":"drop_type()","anchor":"drop_type/0"},{"id":"dump/1","title":"dump(term)","anchor":"dump/1"},{"id":"embed_as/1","title":"embed_as(_)","anchor":"embed_as/1"},{"id":"equal?/2","title":"equal?(term1, term2)","anchor":"equal?/2"},{"id":"load/1","title":"load(arg1)","anchor":"load/1"},{"id":"schema/0","title":"schema()","anchor":"schema/0"},{"id":"schemaless_type/0","title":"schemaless_type()","anchor":"schemaless_type/0"},{"id":"type/0","title":"type()","anchor":"type/0"},{"id":"valid_value?/1","title":"valid_value?(value)","anchor":"valid_value?/1"}],"key":"functions"}]},{"id":"Lightning.Projects.ProjectUser.RolesEnum","group":"Projects","title":"Lightning.Projects.ProjectUser.RolesEnum","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"cast/1","title":"cast(arg1)","anchor":"cast/1"},{"id":"create_type/0","title":"create_type()","anchor":"create_type/0"},{"id":"drop_type/0","title":"drop_type()","anchor":"drop_type/0"},{"id":"dump/1","title":"dump(term)","anchor":"dump/1"},{"id":"embed_as/1","title":"embed_as(_)","anchor":"embed_as/1"},{"id":"equal?/2","title":"equal?(term1, term2)","anchor":"equal?/2"},{"id":"load/1","title":"load(arg1)","anchor":"load/1"},{"id":"schema/0","title":"schema()","anchor":"schema/0"},{"id":"schemaless_type/0","title":"schemaless_type()","anchor":"schemaless_type/0"},{"id":"type/0","title":"type()","anchor":"type/0"},{"id":"valid_value?/1","title":"valid_value?(value)","anchor":"valid_value?/1"}],"key":"functions"}]},{"id":"Lightning.Projects.Provisioner","group":"Projects","title":"Lightning.Projects.Provisioner","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"import_document/3","title":"import_document(project, user, data)","anchor":"import_document/3"},{"id":"load_project/1","title":"load_project(id)","anchor":"load_project/1"},{"id":"parse_document/2","title":"parse_document(project, data)","anchor":"parse_document/2"},{"id":"validate_extraneous_params/1","title":"validate_extraneous_params(changeset)","anchor":"validate_extraneous_params/1"}],"key":"functions"}]},{"id":"Lightning.Runtime.ChildProcess","group":"Runtime","title":"Lightning.Runtime.ChildProcess","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"build_command/1","title":"build_command(runspec)","anchor":"build_command/1"},{"id":"build_env/2","title":"build_env(arg1, env)","anchor":"build_env/2"},{"id":"run/2","title":"run(runspec, opts \\\\ [])","anchor":"run/2"}],"key":"functions"}]},{"id":"Lightning.Runtime.Handler","group":"Runtime","title":"Lightning.Runtime.Handler","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Callbacks","nodes":[{"id":"env/2","title":"env(run_spec, opts)","anchor":"c:env/2"},{"id":"log_callback/3","title":"log_callback(agent, context, args)","anchor":"c:log_callback/3"},{"id":"on_finish/2","title":"on_finish(result, context)","anchor":"c:on_finish/2"},{"id":"on_log_emit/2","title":"on_log_emit(chunk, context)","anchor":"c:on_log_emit/2"},{"id":"on_start/1","title":"on_start(context)","anchor":"c:on_start/1"},{"id":"start/2","title":"start(any, opts)","anchor":"c:start/2"}],"key":"callbacks"},{"name":"Functions","nodes":[{"id":"env/2","title":"env(run_spec, opts)","anchor":"env/2"},{"id":"on_finish/2","title":"on_finish(result, context)","anchor":"on_finish/2"},{"id":"on_log_emit/2","title":"on_log_emit(chunk, context)","anchor":"on_log_emit/2"},{"id":"on_start/1","title":"on_start(context)","anchor":"on_start/1"}],"key":"functions"}]},{"id":"Lightning.Runtime.LogAgent","group":"Runtime","title":"Lightning.Runtime.LogAgent","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"logline/0","title":"logline()","anchor":"t:logline/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"buffer/1","title":"buffer(agent)","anchor":"buffer/1"},{"id":"child_spec/1","title":"child_spec(arg)","anchor":"child_spec/1"},{"id":"process_chunk/2","title":"process_chunk(agent, arg)","anchor":"process_chunk/2"},{"id":"start_link/1","title":"start_link(_ \\\\ [])","anchor":"start_link/1"}],"key":"functions"}]},{"id":"Lightning.Runtime.LogAgent.StringBuffer","group":"Runtime","title":"Lightning.Runtime.LogAgent.StringBuffer","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"buffer/1","title":"buffer(arg)","anchor":"buffer/1"},{"id":"new/0","title":"new()","anchor":"new/0"},{"id":"process_chunk/2","title":"process_chunk(data, arg)","anchor":"process_chunk/2"},{"id":"reduce_chunk/2","title":"reduce_chunk(data, arg)","anchor":"reduce_chunk/2"}],"key":"functions"}]},{"id":"Lightning.Runtime.Result","group":"Runtime","title":"Lightning.Runtime.Result","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(fields \\\\ [])","anchor":"new/1"}],"key":"functions"}]},{"id":"Lightning.Runtime.RunSpec","group":"Runtime","title":"Lightning.Runtime.RunSpec","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"new/1","title":"new(fields \\\\ [])","anchor":"new/1"}],"key":"functions"}]},{"id":"Lightning.MetadataService.Error","group":"Exceptions","title":"Lightning.MetadataService.Error","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"t/0","title":"t()","anchor":"t:t/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"message/1","title":"message(map)","anchor":"message/1"},{"id":"new/1","title":"new(type)","anchor":"new/1"}],"key":"functions"}]}],"extras":[{"id":"api-reference","group":"","title":"API Reference","headers":[{"id":"Modules","anchor":"modules"},{"id":"Mix Tasks","anchor":"mix-tasks"}]},{"id":"readme","group":"","title":"Lightning","headers":[{"id":"Contents","anchor":"contents"},{"id":"Demo","anchor":"demo"},{"id":"Register for a Beta account","anchor":"register-for-a-beta-account"},{"id":"Features","anchor":"features"},{"id":"Getting Started","anchor":"getting-started"},{"id":"Run via Docker","anchor":"run-via-docker"},{"id":"Deploy on external infrastructure","anchor":"deploy-on-external-infrastructure"},{"id":"Run Lightning locally","anchor":"run-lightning-locally"},{"id":"Benchmarking","anchor":"benchmarking"},{"id":"Troubleshooting","anchor":"troubleshooting"},{"id":"Project Configuration Quickstart","anchor":"project-configuration-quickstart"},{"id":"Contribute to this project","anchor":"contribute-to-this-project"},{"id":"Generating Documentation","anchor":"generating-documentation"},{"id":"Security and Standards","anchor":"security-and-standards"},{"id":"Server Specs for Self-Hosting","anchor":"server-specs-for-self-hosting"},{"id":"Support","anchor":"support"}]},{"id":"deployment","group":"","title":"Deployment","headers":[{"id":"Encryption","anchor":"encryption"},{"id":"Environment Variables","anchor":"environment-variables"}]},{"id":"benchmarking","group":"","title":"Benchmarking","headers":[]},{"id":"provisioning","group":"","title":"Provisioning","headers":[{"id":"Using the API","anchor":"using-the-api"},{"id":"Document Structure","anchor":"document-structure"},{"id":"API Behaviour","anchor":"api-behaviour"},{"id":"Relationship with Projects as Code","anchor":"relationship-with-projects-as-code"}]},{"id":"changelog","group":"","title":"Changelog","headers":[{"id":"[Unreleased]","anchor":"unreleased"},{"id":"[v0.7.2] - 2023-08-10","anchor":"v0-7-2-2023-08-10"},{"id":"[v0.7.1] - 2023-08-04","anchor":"v0-7-1-2023-08-04"},{"id":"[v0.7.0] - 2023-08-04","anchor":"v0-7-0-2023-08-04"},{"id":"[v0.7.0-pre5] - 2023-07-28","anchor":"v0-7-0-pre5-2023-07-28"},{"id":"[v0.7.0-pre4] - 2023-07-27","anchor":"v0-7-0-pre4-2023-07-27"},{"id":"[v0.7.0-pre3] - 2023-07-26","anchor":"v0-7-0-pre3-2023-07-26"},{"id":"[v0.7.0-pre2] - 2023-07-26","anchor":"v0-7-0-pre2-2023-07-26"},{"id":"[0.6.7] - 2023-07-13","anchor":"0-6-7-2023-07-13"},{"id":"[0.6.6] - 2023-06-30","anchor":"0-6-6-2023-06-30"},{"id":"[0.6.5] - 2023-06-22","anchor":"0-6-5-2023-06-22"},{"id":"[0.6.3] - 2023-06-15","anchor":"0-6-3-2023-06-15"},{"id":"[0.6.2] - 2023-06-09","anchor":"0-6-2-2023-06-09"},{"id":"[0.6.1] - 2023-06-08","anchor":"0-6-1-2023-06-08"},{"id":"[0.6.0]- 2023-04-12","anchor":"0-6-0-2023-04-12"},{"id":"[0.5.2]","anchor":"0-5-2"},{"id":"[0.5.1] - 2023-04-12","anchor":"0-5-1-2023-04-12"},{"id":"[0.5.0] - 2023-04-03","anchor":"0-5-0-2023-04-03"},{"id":"[0.4.8] - 2023-03-29","anchor":"0-4-8-2023-03-29"},{"id":"[0.4.6] - 2023-03-23","anchor":"0-4-6-2023-03-23"},{"id":"[0.4.4] - 2023-03-10","anchor":"0-4-4-2023-03-10"},{"id":"[0.4.3] - 2023-03-06","anchor":"0-4-3-2023-03-06"},{"id":"[0.4.2] - 2023-02-24","anchor":"0-4-2-2023-02-24"},{"id":"[0.4.0] - 2023-02-08","anchor":"0-4-0-2023-02-08"},{"id":"[0.3.1] - 2022-11-22","anchor":"0-3-1-2022-11-22"},{"id":"[0.3.0] - 2022-11-21","anchor":"0-3-0-2022-11-21"},{"id":"[0.2.0] - 2022-09-12","anchor":"0-2-0-2022-09-12"},{"id":"[0.1.13] - 2022-08-29","anchor":"0-1-13-2022-08-29"},{"id":"[0.1.12] - 2022-08-15","anchor":"0-1-12-2022-08-15"},{"id":"[0.1.11] - 2022-08-05","anchor":"0-1-11-2022-08-05"},{"id":"[0.1.10] - 2022-08-05","anchor":"0-1-10-2022-08-05"},{"id":"[0.1.9] - 2022-07-27","anchor":"0-1-9-2022-07-27"},{"id":"[0.1.7] - 2022-06-24","anchor":"0-1-7-2022-06-24"},{"id":"[0.1.6] - 2022-06-07","anchor":"0-1-6-2022-06-07"}]}],"tasks":[{"id":"Mix.Tasks.Lightning.GenEncryptionKey","group":"","title":"mix lightning.gen_encryption_key","sections":[]},{"id":"Mix.Tasks.Lightning.InstallRuntime","group":"","title":"mix lightning.install_runtime","sections":[],"nodeGroups":[{"name":"Functions","nodes":[{"id":"packages/0","title":"packages()","anchor":"packages/0"},{"id":"run/1","title":"run(_)","anchor":"run/1"}],"key":"functions"}]},{"id":"Mix.Tasks.Lightning.InstallSchemas","group":"","title":"mix lightning.install_schemas","sections":[],"nodeGroups":[{"name":"Types","nodes":[{"id":"body/0","title":"body()","anchor":"t:body/0"},{"id":"headers/0","title":"headers()","anchor":"t:headers/0"},{"id":"method/0","title":"method()","anchor":"t:method/0"},{"id":"options/0","title":"options()","anchor":"t:options/0"},{"id":"params/0","title":"params()","anchor":"t:params/0"},{"id":"request/0","title":"request()","anchor":"t:request/0"},{"id":"url/0","title":"url()","anchor":"t:url/0"}],"key":"types"},{"name":"Functions","nodes":[{"id":"delete/3","title":"delete(url, headers \\\\ [], options \\\\ [])","anchor":"delete/3"},{"id":"delete!/3","title":"delete!(url, headers \\\\ [], options \\\\ [])","anchor":"delete!/3"},{"id":"fetch_schemas/2","title":"fetch_schemas(excluded \\\\ [], fun)","anchor":"fetch_schemas/2"},{"id":"get/3","title":"get(url, headers \\\\ [], options \\\\ [])","anchor":"get/3"},{"id":"get!/3","title":"get!(url, headers \\\\ [], options \\\\ [])","anchor":"get!/3"},{"id":"head/3","title":"head(url, headers \\\\ [], options \\\\ [])","anchor":"head/3"},{"id":"head!/3","title":"head!(url, headers \\\\ [], options \\\\ [])","anchor":"head!/3"},{"id":"options/3","title":"options(url, headers \\\\ [], options \\\\ [])","anchor":"options/3"},{"id":"options!/3","title":"options!(url, headers \\\\ [], options \\\\ [])","anchor":"options!/3"},{"id":"parse_excluded/1","title":"parse_excluded(args)","anchor":"parse_excluded/1"},{"id":"patch/4","title":"patch(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch/4"},{"id":"patch!/4","title":"patch!(url, body, headers \\\\ [], options \\\\ [])","anchor":"patch!/4"},{"id":"persist_schema/2","title":"persist_schema(dir, package_name)","anchor":"persist_schema/2"},{"id":"post/4","title":"post(url, body, headers \\\\ [], options \\\\ [])","anchor":"post/4"},{"id":"post!/4","title":"post!(url, body, headers \\\\ [], options \\\\ [])","anchor":"post!/4"},{"id":"process_headers/1","title":"process_headers(headers)","anchor":"process_headers/1"},{"id":"process_request_body/1","title":"process_request_body(body)","anchor":"process_request_body/1"},{"id":"process_request_headers/1","title":"process_request_headers(headers)","anchor":"process_request_headers/1"},{"id":"process_request_options/1","title":"process_request_options(options)","anchor":"process_request_options/1"},{"id":"process_request_params/1","title":"process_request_params(params)","anchor":"process_request_params/1"},{"id":"process_request_url/1","title":"process_request_url(url)","anchor":"process_request_url/1"},{"id":"process_response/1","title":"process_response(response)","anchor":"process_response/1"},{"id":"process_response_body/1","title":"process_response_body(body)","anchor":"process_response_body/1"},{"id":"process_response_chunk/1","title":"process_response_chunk(chunk)","anchor":"process_response_chunk/1"},{"id":"process_response_headers/1","title":"process_response_headers(headers)","anchor":"process_response_headers/1"},{"id":"process_response_status_code/1","title":"process_response_status_code(status_code)","anchor":"process_response_status_code/1"},{"id":"process_status_code/1","title":"process_status_code(status_code)","anchor":"process_status_code/1"},{"id":"process_url/1","title":"process_url(url)","anchor":"process_url/1"},{"id":"put/4","title":"put(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put/4"},{"id":"put!/4","title":"put!(url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"put!/4"},{"id":"request/1","title":"request(request)","anchor":"request/1"},{"id":"request/5","title":"request(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request/5"},{"id":"request!/5","title":"request!(method, url, body \\\\ \"\", headers \\\\ [], options \\\\ [])","anchor":"request!/5"},{"id":"run/1","title":"run(args)","anchor":"run/1"},{"id":"start/0","title":"start()","anchor":"start/0"},{"id":"stream_next/1","title":"stream_next(resp)","anchor":"stream_next/1"},{"id":"write_schema/3","title":"write_schema(dir, package_name, data)","anchor":"write_schema/3"}],"key":"functions"}]}]}
\ No newline at end of file
diff --git a/index.html b/index.html
index 21d683e82d..5ed3ddaf7e 100644
--- a/index.html
+++ b/index.html
@@ -2,7 +2,7 @@
- Lightning v0.7.1 — Documentation
+ Lightning v0.7.2 — Documentation
diff --git a/provisioning.html b/provisioning.html
index 7b13877bbe..98018c22fb 100644
--- a/provisioning.html
+++ b/provisioning.html
@@ -5,15 +5,15 @@
-
+
- Provisioning — Lightning v0.7.1
+ Provisioning — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
diff --git a/readme.html b/readme.html
index b61daf33ca..635caa28d5 100644
--- a/readme.html
+++ b/readme.html
@@ -5,15 +5,15 @@
-
+
- Lightning — Lightning v0.7.1
+ Lightning — Lightning v0.7.2
-
+
@@ -72,7 +72,7 @@
Lightning
- v0.7.1
+ v0.7.2
@@ -335,7 +335,7 @@
Problems with Debian
If you're getting this error on debian
==> earmark_parser
-Compiling 1 file (.yrl)
+Compiling 1 file (.yrl)
/usr/lib/erlang/lib/parsetools-2.3.1/include/yeccpre.hrl: no such file or directory
could not compile dependency :earmark_parser, "mix compile" failed. You can recompile this dependency with "mix deps.compile earmark_parser", update it with "mix deps.update earmark_parser" or clean it with "mix deps.clean earmark_parser"
You need to install erlang development environment sudo apt install erlang-dev
refer to this issue
@@ -361,8 +361,8 @@ Versions
The build may not work on old versions of Docker and Docker
lib/mix/tasks/compile.rambo.ex:89: Mix.Tasks.Compile.Rambo.compile!/0
lib/mix/tasks/compile.rambo.ex:51: Mix.Tasks.Compile.Rambo.run/1
- (mix 1.14.2) lib/mix/task.ex:421: anonymous fn/3 in Mix.Task.run_task/4
- (mix 1.14.2) lib/mix/cli.ex:84: Mix.CLI.run_task/2
You can resolve this error by installing the Rust compiler using Homebrew. Run
+
(mix 1.14.2) lib/mix/task.ex:421: anonymous fn/3 in Mix.Task.run_task/4
+ (mix 1.14.2) lib/mix/cli.ex:84: Mix.CLI.run_task/2
You can resolve this error by installing the Rust compiler using Homebrew. Run
the following command in your terminal: brew install rust
If you have already compiled Rambo explicitly via mix compile.rambo
, and you
are still seeing the following error:
sh: /path_to_directory/Lightning/_build/dev/lib/rambo/priv/rambo: No such file or directory
sh: line 0: exec: /path_to_directory/Lightning/_build/dev/lib/rambo/priv/rambo: cannot execute: No such file or directory
You can try renaming deps/rambo/priv/rambo-mac
to deps/rambo/priv/rambo
.
If neither of the approaches above work, please raise an issue.
If you're actively working with docker, you start experiencing issues, and you diff --git a/search.html b/search.html index 227bfd899b..0979d2671e 100644 --- a/search.html +++ b/search.html @@ -5,15 +5,15 @@ - + -