From afcc5fffb61e42c261edbcc7bd27160324b93ae7 Mon Sep 17 00:00:00 2001
From: mayel First,
AbsintheClient.Helpers
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/AbsintheClient.html b/AbsintheClient.html
index 06bfc21f5fa..d7f35d2fe84 100644
--- a/AbsintheClient.html
+++ b/AbsintheClient.html
@@ -5,10 +5,10 @@
-
+
-
AbsintheClient behaviour
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
@@ -140,29 +140,29 @@
Example
use AbsintheClient
, passing your schema
and
-notifying Absinthe to operate in internal
mode:defmodule MyAppWeb.UserController do
+notifying Absinthe to operate in
internal
mode:
defmodule MyAppWeb.UserController do
use MyAppWeb, :controller
- use AbsintheClient, schema: MyAppWeb.Schema, action: [mode: :internal]
+ use AbsintheClient, schema: MyAppWeb.Schema, action: [mode: :internal]
# ... actions
-end
For each action you want Absinthe to process, provide a GraphQL document using +end
For each action you want Absinthe to process, provide a GraphQL document using
the @graphql
module attribute (before the action):
@graphql """
query ($filter: UserFilter) {
users(filter: $filter, limit: 10)
}
"""
-def index(conn_or_socket, %{data: data}) do
+def index(conn_or_socket, %{data: data}) do
render conn_or_socket, "index.html", data
-end
The params for the action will be intercepted by the +end
The params for the action will be intercepted by the
AbsintheClient.Action
plug, and used as variables for
the GraphQL document you've specified.
For instance, given a definition for a :user_filter
input object
-type like this:
input_object :user_filter do
+type like this:input_object :user_filter do
field :name_matches, :string
field :age_above, :integer
field :age_below, :integer
-end
And a query that looks like this (assuming you have the normal
-Plug.Parsers
configuration for param parsing):
?filter[name_matches]=joe&filter[age_above]=42
Then Absinthe will receive variable definitions of:
%{"filter" => %{"name_matches" => "joe", "age_above" => 42}}
(For how the string "42"
was converted into 42
, see cast_param/3
).
The params on the conn_or_socket
will then be replaced by the result of the
+
end
And a query that looks like this (assuming you have the normal
+Plug.Parsers
configuration for param parsing):
?filter[name_matches]=joe&filter[age_above]=42
Then Absinthe will receive variable definitions of:
%{"filter" => %{"name_matches" => "joe", "age_above" => 42}}
(For how the string "42"
was converted into 42
, see cast_param/3
).
The params on the conn_or_socket
will then be replaced by the result of the
execution by Absinthe. The action function can then match against
that result to respond correctly to the user:
It's up to you to handle the three possible results:
:data
but no :errors
, everything went perfectly.:errors
but no :data
, a validation error occurred and the document could not be
executed.:data
and :errors
, partial data is available but some fields reported errors
@@ -195,9 +195,9 @@ The template can then use users
as needed:
<ul>
- <%= for user <- @users do %>
- <li><%= link user.full_name, to: user_path(@conn_or_socket, :show, user) %></li>
- <% end %>
+ <%= for user <- @users do %>
+ <li><%= link user.full_name, to: user_path(@conn_or_socket, :show, user) %></li>
+ <% end %>
</ul>
This is useful for Phoenix.HTML
helper functions that expect
structs with specific fields (especially form_for
).
One way to think of this change is that, for objects, no selection set is equivalent to a "splat" operator (except, of course, even diff --git a/ActivityPub.Actor.html b/ActivityPub.Actor.html index 12c64cf276e..c5e12ea5776 100644 --- a/ActivityPub.Actor.html +++ b/ActivityPub.Actor.html @@ -5,10 +5,10 @@ - + -
Perform a DELETE request.
See request/1
or request/2
for options definition.
delete("/users")
-delete("/users", query: [scope: "admin"])
-delete(client, "/users")
-delete(client, "/users", query: [scope: "admin"])
-delete(client, "/users", body: %{name: "Jon"})
+Perform a DELETE request.
See request/1
or request/2
for options definition.
delete("/users")
+delete("/users", query: [scope: "admin"])
+delete(client, "/users")
+delete(client, "/users", query: [scope: "admin"])
+delete(client, "/users", body: %{name: "Jon"})
Perform a DELETE request.
See request!/1
or request!/2
for options definition.
delete!("/users")
-delete!("/users", query: [scope: "admin"])
-delete!(client, "/users")
-delete!(client, "/users", query: [scope: "admin"])
-delete!(client, "/users", body: %{name: "Jon"})
+Perform a DELETE request.
See request!/1
or request!/2
for options definition.
delete!("/users")
+delete!("/users", query: [scope: "admin"])
+delete!(client, "/users")
+delete!(client, "/users", query: [scope: "admin"])
+delete!(client, "/users", body: %{name: "Jon"})
Perform a GET request.
See request/1
or request/2
for options definition.
get("/users")
-get("/users", query: [scope: "admin"])
-get(client, "/users")
-get(client, "/users", query: [scope: "admin"])
-get(client, "/users", body: %{name: "Jon"})
+Perform a GET request.
See request/1
or request/2
for options definition.
get("/users")
+get("/users", query: [scope: "admin"])
+get(client, "/users")
+get(client, "/users", query: [scope: "admin"])
+get(client, "/users", body: %{name: "Jon"})
Perform a GET request.
See request!/1
or request!/2
for options definition.
get!("/users")
-get!("/users", query: [scope: "admin"])
-get!(client, "/users")
-get!(client, "/users", query: [scope: "admin"])
-get!(client, "/users", body: %{name: "Jon"})
+Perform a GET request.
See request!/1
or request!/2
for options definition.
get!("/users")
+get!("/users", query: [scope: "admin"])
+get!(client, "/users")
+get!(client, "/users", query: [scope: "admin"])
+get!(client, "/users", body: %{name: "Jon"})
Perform a HEAD request.
See request/1
or request/2
for options definition.
head("/users")
-head("/users", query: [scope: "admin"])
-head(client, "/users")
-head(client, "/users", query: [scope: "admin"])
-head(client, "/users", body: %{name: "Jon"})
+Perform a HEAD request.
See request/1
or request/2
for options definition.
head("/users")
+head("/users", query: [scope: "admin"])
+head(client, "/users")
+head(client, "/users", query: [scope: "admin"])
+head(client, "/users", body: %{name: "Jon"})
Perform a HEAD request.
See request!/1
or request!/2
for options definition.
head!("/users")
-head!("/users", query: [scope: "admin"])
-head!(client, "/users")
-head!(client, "/users", query: [scope: "admin"])
-head!(client, "/users", body: %{name: "Jon"})
+Perform a HEAD request.
See request!/1
or request!/2
for options definition.
head!("/users")
+head!("/users", query: [scope: "admin"])
+head!(client, "/users")
+head!(client, "/users", query: [scope: "admin"])
+head!(client, "/users", body: %{name: "Jon"})
Perform a OPTIONS request.
See request/1
or request/2
for options definition.
options("/users")
-options("/users", query: [scope: "admin"])
-options(client, "/users")
-options(client, "/users", query: [scope: "admin"])
-options(client, "/users", body: %{name: "Jon"})
+Perform a OPTIONS request.
See request/1
or request/2
for options definition.
options("/users")
+options("/users", query: [scope: "admin"])
+options(client, "/users")
+options(client, "/users", query: [scope: "admin"])
+options(client, "/users", body: %{name: "Jon"})
Perform a OPTIONS request.
See request!/1
or request!/2
for options definition.
options!("/users")
-options!("/users", query: [scope: "admin"])
-options!(client, "/users")
-options!(client, "/users", query: [scope: "admin"])
-options!(client, "/users", body: %{name: "Jon"})
+Perform a OPTIONS request.
See request!/1
or request!/2
for options definition.
options!("/users")
+options!("/users", query: [scope: "admin"])
+options!(client, "/users")
+options!(client, "/users", query: [scope: "admin"])
+options!(client, "/users", body: %{name: "Jon"})
Perform a PATCH request.
See request/1
or request/2
for options definition.
patch("/users", %{name: "Jon"})
-patch("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch(client, "/users", %{name: "Jon"})
-patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PATCH request.
See request/1
or request/2
for options definition.
patch("/users", %{name: "Jon"})
+patch("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch(client, "/users", %{name: "Jon"})
+patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a PATCH request.
See request!/1
or request!/2
for options definition.
patch!("/users", %{name: "Jon"})
-patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch!(client, "/users", %{name: "Jon"})
-patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PATCH request.
See request!/1
or request!/2
for options definition.
patch!("/users", %{name: "Jon"})
+patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch!(client, "/users", %{name: "Jon"})
+patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a POST request.
See request/1
or request/2
for options definition.
post("/users", %{name: "Jon"})
-post("/users", %{name: "Jon"}, query: [scope: "admin"])
-post(client, "/users", %{name: "Jon"})
-post(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a POST request.
See request/1
or request/2
for options definition.
post("/users", %{name: "Jon"})
+post("/users", %{name: "Jon"}, query: [scope: "admin"])
+post(client, "/users", %{name: "Jon"})
+post(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a POST request.
See request!/1
or request!/2
for options definition.
post!("/users", %{name: "Jon"})
-post!("/users", %{name: "Jon"}, query: [scope: "admin"])
-post!(client, "/users", %{name: "Jon"})
-post!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a POST request.
See request!/1
or request!/2
for options definition.
post!("/users", %{name: "Jon"})
+post!("/users", %{name: "Jon"}, query: [scope: "admin"])
+post!(client, "/users", %{name: "Jon"})
+post!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a PUT request.
See request/1
or request/2
for options definition.
put("/users", %{name: "Jon"})
-put("/users", %{name: "Jon"}, query: [scope: "admin"])
-put(client, "/users", %{name: "Jon"})
-put(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PUT request.
See request/1
or request/2
for options definition.
put("/users", %{name: "Jon"})
+put("/users", %{name: "Jon"}, query: [scope: "admin"])
+put(client, "/users", %{name: "Jon"})
+put(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a PUT request.
See request!/1
or request!/2
for options definition.
put!("/users", %{name: "Jon"})
-put!("/users", %{name: "Jon"}, query: [scope: "admin"])
-put!(client, "/users", %{name: "Jon"})
-put!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PUT request.
See request!/1
or request!/2
for options definition.
put!("/users", %{name: "Jon"})
+put!("/users", %{name: "Jon"}, query: [scope: "admin"])
+put!(client, "/users", %{name: "Jon"})
+put!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
ExampleApi.request(method: :get, url: "/users/path")
+ExampleApi.request(method: :get, url: "/users/path")
# use shortcut methods
-ExampleApi.get("/users/1")
-ExampleApi.post(client, "/users", %{name: "Jon"})
+ExampleApi.get("/users/1")
+ExampleApi.post(client, "/users", %{name: "Jon"})
Perform a TRACE request.
See request/1
or request/2
for options definition.
trace("/users")
-trace("/users", query: [scope: "admin"])
-trace(client, "/users")
-trace(client, "/users", query: [scope: "admin"])
-trace(client, "/users", body: %{name: "Jon"})
+Perform a TRACE request.
See request/1
or request/2
for options definition.
trace("/users")
+trace("/users", query: [scope: "admin"])
+trace(client, "/users")
+trace(client, "/users", query: [scope: "admin"])
+trace(client, "/users", body: %{name: "Jon"})
Perform a TRACE request.
See request!/1
or request!/2
for options definition.
trace!("/users")
-trace!("/users", query: [scope: "admin"])
-trace!(client, "/users")
-trace!(client, "/users", query: [scope: "admin"])
-trace!(client, "/users", body: %{name: "Jon"})
+Perform a TRACE request.
See request!/1
or request!/2
for options definition.
trace!("/users")
+trace!("/users", query: [scope: "admin"])
+trace!(client, "/users")
+trace!(client, "/users", query: [scope: "admin"])
+trace!(client, "/users", body: %{name: "Jon"})
iex> document_for(:user, 2)
+iex> document_for(:user, 2)
```
name
age
-posts {
+posts {
title
subtitle
-}
-comments {
+}
+comments {
body
-}
+}
```
diff --git a/Bonfire.API.GraphQL.ResolveField.html b/Bonfire.API.GraphQL.ResolveField.html
index c94b086fef7..ffb54da2c20 100644
--- a/Bonfire.API.GraphQL.ResolveField.html
+++ b/Bonfire.API.GraphQL.ResolveField.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.ResolveField — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.ResolveField — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.ResolveField
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.ResolveFields.html b/Bonfire.API.GraphQL.ResolveFields.html
index 205cf8325b4..ae30f2e4f23 100644
--- a/Bonfire.API.GraphQL.ResolveFields.html
+++ b/Bonfire.API.GraphQL.ResolveFields.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.ResolveFields — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.ResolveFields — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.ResolveFields
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.ResolvePage.html b/Bonfire.API.GraphQL.ResolvePage.html
index dfed29ce188..62bcf25a5fe 100644
--- a/Bonfire.API.GraphQL.ResolvePage.html
+++ b/Bonfire.API.GraphQL.ResolvePage.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.ResolvePage — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.ResolvePage — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.ResolvePage
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.ResolvePages.html b/Bonfire.API.GraphQL.ResolvePages.html
index d9a6277cf46..0a3f32dda05 100644
--- a/Bonfire.API.GraphQL.ResolvePages.html
+++ b/Bonfire.API.GraphQL.ResolvePages.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.ResolvePages — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.ResolvePages — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.ResolvePages
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.ResolveRootPage.html b/Bonfire.API.GraphQL.ResolveRootPage.html
index 4958e02ae3e..817ca3c2168 100644
--- a/Bonfire.API.GraphQL.ResolveRootPage.html
+++ b/Bonfire.API.GraphQL.ResolveRootPage.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.ResolveRootPage — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.ResolveRootPage — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.ResolveRootPage
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.RestAdapter.EndpointConfig.html b/Bonfire.API.GraphQL.RestAdapter.EndpointConfig.html
index f0c4fe8dc7b..9b6da9ea597 100644
--- a/Bonfire.API.GraphQL.RestAdapter.EndpointConfig.html
+++ b/Bonfire.API.GraphQL.RestAdapter.EndpointConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.RestAdapter.EndpointConfig — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.RestAdapter.EndpointConfig — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.RestAdapter.EndpointConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.RestAdapter.html b/Bonfire.API.GraphQL.RestAdapter.html
index 1a469e56d1a..adf90e648e1 100644
--- a/Bonfire.API.GraphQL.RestAdapter.html
+++ b/Bonfire.API.GraphQL.RestAdapter.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.RestAdapter — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.RestAdapter — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.RestAdapter
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.Router.html b/Bonfire.API.GraphQL.Router.html
index 490cb56d243..4a57655cf76 100644
--- a/Bonfire.API.GraphQL.Router.html
+++ b/Bonfire.API.GraphQL.Router.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.Router — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.Router — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.Router
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.SchemaPipelines.html b/Bonfire.API.GraphQL.SchemaPipelines.html
index 3219ad1c861..6e345aed672 100644
--- a/Bonfire.API.GraphQL.SchemaPipelines.html
+++ b/Bonfire.API.GraphQL.SchemaPipelines.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.SchemaPipelines — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.SchemaPipelines — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.SchemaPipelines
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.SchemaUtils.html b/Bonfire.API.GraphQL.SchemaUtils.html
index 72ca87356d9..43cf9116c5c 100644
--- a/Bonfire.API.GraphQL.SchemaUtils.html
+++ b/Bonfire.API.GraphQL.SchemaUtils.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.SchemaUtils — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.SchemaUtils — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.SchemaUtils
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.Test.GraphQLAssertions.html b/Bonfire.API.GraphQL.Test.GraphQLAssertions.html
index 877d23fa64e..dba7b77d1d0 100644
--- a/Bonfire.API.GraphQL.Test.GraphQLAssertions.html
+++ b/Bonfire.API.GraphQL.Test.GraphQLAssertions.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.Test.GraphQLAssertions — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.Test.GraphQLAssertions — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.Test.GraphQLAssertions
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.UserSocket.html b/Bonfire.API.GraphQL.UserSocket.html
index 5abb293b26b..690b44c1837 100644
--- a/Bonfire.API.GraphQL.UserSocket.html
+++ b/Bonfire.API.GraphQL.UserSocket.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.UserSocket — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL.UserSocket — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.UserSocket
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.API.GraphQL.html b/Bonfire.API.GraphQL.html
index 892e3c46fd3..c77383eb7ef 100644
--- a/Bonfire.API.GraphQL.html
+++ b/Bonfire.API.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.API.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Classify.Categories.html b/Bonfire.Classify.Categories.html
index ffaed18c6da..c2efa7de837 100644
--- a/Bonfire.Classify.Categories.html
+++ b/Bonfire.Classify.Categories.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.Categories — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Classify.Categories — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.Categories
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Classify.Category.Queries.html b/Bonfire.Classify.Category.Queries.html
index b1ed9fc0f4e..96998553578 100644
--- a/Bonfire.Classify.Category.Queries.html
+++ b/Bonfire.Classify.Category.Queries.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.Category.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Classify.Category.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.Category.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Classify.Category.html b/Bonfire.Classify.Category.html
index 8258fa64463..24640fb777d 100644
--- a/Bonfire.Classify.Category.html
+++ b/Bonfire.Classify.Category.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.Category — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Classify.Category — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.Category
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Classify.LiveHandler.html b/Bonfire.Classify.LiveHandler.html
index f09b233d0f2..a991f2284fb 100644
--- a/Bonfire.Classify.LiveHandler.html
+++ b/Bonfire.Classify.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Classify.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Classify.RuntimeConfig.html b/Bonfire.Classify.RuntimeConfig.html
index e720d5afea9..b99cc6dba49 100644
--- a/Bonfire.Classify.RuntimeConfig.html
+++ b/Bonfire.Classify.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Classify.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Classify.Simulate.html b/Bonfire.Classify.Simulate.html
index 6aeb045fce8..81ae844880d 100644
--- a/Bonfire.Classify.Simulate.html
+++ b/Bonfire.Classify.Simulate.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Classify.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.Simulate
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Classify.Tree.html b/Bonfire.Classify.Tree.html
index 0ccd2d26aab..12d2131f63b 100644
--- a/Bonfire.Classify.Tree.html
+++ b/Bonfire.Classify.Tree.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.Tree — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Classify.Tree — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.Tree
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Classify.html b/Bonfire.Classify.html
index 4eddbb834a1..cd29dd747ff 100644
--- a/Bonfire.Classify.html
+++ b/Bonfire.Classify.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Classify — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.Acts.AttachMedia.html b/Bonfire.Files.Acts.AttachMedia.html
index c94e2153df2..8b50a90e3f6 100644
--- a/Bonfire.Files.Acts.AttachMedia.html
+++ b/Bonfire.Files.Acts.AttachMedia.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Acts.AttachMedia — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.Acts.AttachMedia — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Acts.AttachMedia
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.Acts.URLPreviews.html b/Bonfire.Files.Acts.URLPreviews.html
index 3851cfd743e..c941256308f 100644
--- a/Bonfire.Files.Acts.URLPreviews.html
+++ b/Bonfire.Files.Acts.URLPreviews.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Acts.URLPreviews — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.Acts.URLPreviews — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Acts.URLPreviews
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.BannerUploader.html b/Bonfire.Files.BannerUploader.html
index 5c901a1a99b..8c3d5a0c426 100644
--- a/Bonfire.Files.BannerUploader.html
+++ b/Bonfire.Files.BannerUploader.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.BannerUploader — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.BannerUploader — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.BannerUploader
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.Blurred.html b/Bonfire.Files.Blurred.html
index 36d930c26b0..00cb20e39f4 100644
--- a/Bonfire.Files.Blurred.html
+++ b/Bonfire.Files.Blurred.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Blurred — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.Blurred — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Blurred
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.CapsuleIntegration.Attacher.html b/Bonfire.Files.CapsuleIntegration.Attacher.html
index 66641138edf..b855dc9b24a 100644
--- a/Bonfire.Files.CapsuleIntegration.Attacher.html
+++ b/Bonfire.Files.CapsuleIntegration.Attacher.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.CapsuleIntegration.Attacher — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.CapsuleIntegration.Attacher — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.CapsuleIntegration.Attacher
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.DOI.html b/Bonfire.Files.DOI.html
index eed71039da8..740383e9c4d 100644
--- a/Bonfire.Files.DOI.html
+++ b/Bonfire.Files.DOI.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.DOI — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.DOI — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.DOI
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.Definition.html b/Bonfire.Files.Definition.html
index 8b922d56a5c..ae4c55eb9aa 100644
--- a/Bonfire.Files.Definition.html
+++ b/Bonfire.Files.Definition.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Definition — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.Definition — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Definition behaviour
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.DocumentUploader.html b/Bonfire.Files.DocumentUploader.html
index 6b3e876f61a..e0c38deead7 100644
--- a/Bonfire.Files.DocumentUploader.html
+++ b/Bonfire.Files.DocumentUploader.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.DocumentUploader — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.DocumentUploader — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.DocumentUploader
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.EmojiUploader.html b/Bonfire.Files.EmojiUploader.html
index 6a8e543313e..56396b52143 100644
--- a/Bonfire.Files.EmojiUploader.html
+++ b/Bonfire.Files.EmojiUploader.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.EmojiUploader — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.EmojiUploader — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.EmojiUploader
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.FaviconStore.html b/Bonfire.Files.FaviconStore.html
index 201f39c8522..925ba03bc09 100644
--- a/Bonfire.Files.FaviconStore.html
+++ b/Bonfire.Files.FaviconStore.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.FaviconStore — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.FaviconStore — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.FaviconStore
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.FileDenied.html b/Bonfire.Files.FileDenied.html
index be37dda2091..c0c453d4306 100644
--- a/Bonfire.Files.FileDenied.html
+++ b/Bonfire.Files.FileDenied.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.FileDenied — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.FileDenied — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.FileDenied
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.IconUploader.html b/Bonfire.Files.IconUploader.html
index d435dca7550..9261625fc4a 100644
--- a/Bonfire.Files.IconUploader.html
+++ b/Bonfire.Files.IconUploader.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.IconUploader — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.IconUploader — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.IconUploader
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.Image.Edit.html b/Bonfire.Files.Image.Edit.html
index 405b7bb016f..3a6510754f0 100644
--- a/Bonfire.Files.Image.Edit.html
+++ b/Bonfire.Files.Image.Edit.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Image.Edit — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.Image.Edit — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Image.Edit
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.ImageUploader.html b/Bonfire.Files.ImageUploader.html
index ae63cedee3e..7a9d92fffc6 100644
--- a/Bonfire.Files.ImageUploader.html
+++ b/Bonfire.Files.ImageUploader.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.ImageUploader — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.ImageUploader — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.ImageUploader
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.LiveHandler.html b/Bonfire.Files.LiveHandler.html
index 9c3a5c6286d..dd864bfebd1 100644
--- a/Bonfire.Files.LiveHandler.html
+++ b/Bonfire.Files.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.Media.Queries.html b/Bonfire.Files.Media.Queries.html
index 2f3cf496227..02ce2fcfbea 100644
--- a/Bonfire.Files.Media.Queries.html
+++ b/Bonfire.Files.Media.Queries.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Media.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.Media.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Media.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.Media.html b/Bonfire.Files.Media.html
index 0c03e3536c3..9da76d3462d 100644
--- a/Bonfire.Files.Media.html
+++ b/Bonfire.Files.Media.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Media — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.Media — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Media
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.Prepare.html b/Bonfire.Files.Prepare.html
index 931c9488466..aaf8a94dd99 100644
--- a/Bonfire.Files.Prepare.html
+++ b/Bonfire.Files.Prepare.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Prepare — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.Prepare — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Prepare
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Files.ResponsiveImage.html b/Bonfire.Files.ResponsiveImage.html
index 1ef80f2c57b..23917673303 100644
--- a/Bonfire.Files.ResponsiveImage.html
+++ b/Bonfire.Files.ResponsiveImage.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.ResponsiveImage — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Files.ResponsiveImage — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.ResponsiveImage
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
@@ -137,12 +137,12 @@
~H(<img src={compile_src("input.jpg", 300)} />)
or
-~H(<img srcset={compile_srcset("input.jpg", [300, 600, 900])} src={...} sizes="50vw" />)
+~H(<img srcset={compile_srcset("input.jpg", [300, 600, 900])} src={...} sizes="50vw" />)
or for paths only known at runtime:
~H(<img src={src(my_image, 300)} />)
or
-~H(<img srcset={srcset(my_image, [300, 600, 900])} src={...} sizes="50vw" />)
+~H(<img srcset={srcset(my_image, [300, 600, 900])} src={...} sizes="50vw" />)
diff --git a/Bonfire.Files.Routes.html b/Bonfire.Files.Routes.html
index e13e983a68b..455919a1473 100644
--- a/Bonfire.Files.Routes.html
+++ b/Bonfire.Files.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Definition
is an extension of Waffle.Definition
,
however the allowed_media_types/0
and max_file_size/0
callback are added,
with which you need to define what media types are accepted for these types of uploads.
-(You can also return :all
to accept all media types).To use the uploader:
iex> {:ok, media} = Bonfire.Files.upload(MyUploader, creator_or_context, %{path: "./150.png"})
+(You can also return :all
to accept all media types).To use the uploader:
iex> {:ok, media} = Bonfire.Files.upload(MyUploader, creator_or_context, %{path: "./150.png"})
iex> media.media_type
"image/png"
-iex> Bonfire.Files.remote_url(MyUploader, media)
+iex> Bonfire.Files.remote_url(MyUploader, media)
"/uploads/my/01F3AY6JV30G06BY4DR9BTW5EH"
diff --git a/Bonfire.Geolocate.Geocode.html b/Bonfire.Geolocate.Geocode.html
index 6a504b3616a..62fb77fea47 100644
--- a/Bonfire.Geolocate.Geocode.html
+++ b/Bonfire.Geolocate.Geocode.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Geocode — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate.Geocode — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Geocode
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Geolocate.Geolocation.html b/Bonfire.Geolocate.Geolocation.html
index 3358625d565..6290ed0f62b 100644
--- a/Bonfire.Geolocate.Geolocation.html
+++ b/Bonfire.Geolocate.Geolocation.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Geolocation — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate.Geolocation — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Geolocation
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Geolocate.Geolocations.html b/Bonfire.Geolocate.Geolocations.html
index aab80a1491f..0c7ec802ac2 100644
--- a/Bonfire.Geolocate.Geolocations.html
+++ b/Bonfire.Geolocate.Geolocations.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Geolocations — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate.Geolocations — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Geolocations
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Geolocate.GraphQL.Hydration.html b/Bonfire.Geolocate.GraphQL.Hydration.html
index e6f7879496a..dfe58284a0e 100644
--- a/Bonfire.Geolocate.GraphQL.Hydration.html
+++ b/Bonfire.Geolocate.GraphQL.Hydration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.GraphQL.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate.GraphQL.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.GraphQL.Hydration
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Geolocate.LiveHandler.html b/Bonfire.Geolocate.LiveHandler.html
index c2271acd977..de6293d5281 100644
--- a/Bonfire.Geolocate.LiveHandler.html
+++ b/Bonfire.Geolocate.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Geolocate.Places.html b/Bonfire.Geolocate.Places.html
index e860cd13f05..2d7a940412f 100644
--- a/Bonfire.Geolocate.Places.html
+++ b/Bonfire.Geolocate.Places.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Places — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate.Places — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Places
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Geolocate.Queries.html b/Bonfire.Geolocate.Queries.html
index 73e0e603039..3da240488c6 100644
--- a/Bonfire.Geolocate.Queries.html
+++ b/Bonfire.Geolocate.Queries.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Geolocate.RuntimeConfig.html b/Bonfire.Geolocate.RuntimeConfig.html
index 97e137bedcc..9c3c24b2263 100644
--- a/Bonfire.Geolocate.RuntimeConfig.html
+++ b/Bonfire.Geolocate.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Geolocate.Simulate.html b/Bonfire.Geolocate.Simulate.html
index ffb896e319b..e121649d773 100644
--- a/Bonfire.Geolocate.Simulate.html
+++ b/Bonfire.Geolocate.Simulate.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Simulate
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Geolocate.Web.Routes.html b/Bonfire.Geolocate.Web.Routes.html
index f6f6776cadb..563a628ba85 100644
--- a/Bonfire.Geolocate.Web.Routes.html
+++ b/Bonfire.Geolocate.Web.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Web.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Geolocate.html b/Bonfire.Geolocate.html
index d39f7367329..6900cf463c8 100644
--- a/Bonfire.Geolocate.html
+++ b/Bonfire.Geolocate.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Geolocate — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Localise.html b/Bonfire.Localise.html
index 194cc494ca3..7557bcc96c4 100644
--- a/Bonfire.Localise.html
+++ b/Bonfire.Localise.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Localise — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Localise — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Localise
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.OpenScience.APIs.html b/Bonfire.OpenScience.APIs.html
index 0906548ab81..a8fe19d1356 100644
--- a/Bonfire.OpenScience.APIs.html
+++ b/Bonfire.OpenScience.APIs.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.OpenScience.APIs — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.OpenScience.APIs — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.OpenScience.APIs
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.OpenScience.Fake.html b/Bonfire.OpenScience.Fake.html
index 971d0ec71d9..30b161dedeb 100644
--- a/Bonfire.OpenScience.Fake.html
+++ b/Bonfire.OpenScience.Fake.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.OpenScience.Fake — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.OpenScience.Fake — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.OpenScience.Fake
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.OpenScience.Integration.html b/Bonfire.OpenScience.Integration.html
index 121f6aecbc2..852328a2274 100644
--- a/Bonfire.OpenScience.Integration.html
+++ b/Bonfire.OpenScience.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.OpenScience.Integration — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.OpenScience.Integration — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.OpenScience.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.OpenScience.RuntimeConfig.html b/Bonfire.OpenScience.RuntimeConfig.html
index 11e54e2c68d..e6b95c894b1 100644
--- a/Bonfire.OpenScience.RuntimeConfig.html
+++ b/Bonfire.OpenScience.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.OpenScience.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.OpenScience.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.OpenScience.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.OpenScience.Web.Routes.html b/Bonfire.OpenScience.Web.Routes.html
index 9b78f398c18..9e70d68bd00 100644
--- a/Bonfire.OpenScience.Web.Routes.html
+++ b/Bonfire.OpenScience.Web.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.OpenScience.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.OpenScience.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.OpenScience.Web.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Quantify.Hydration.html b/Bonfire.Quantify.Hydration.html
index 4a2fd10b0b4..5cab488f36f 100644
--- a/Bonfire.Quantify.Hydration.html
+++ b/Bonfire.Quantify.Hydration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Quantify.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Hydration
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Quantify.Measure.html b/Bonfire.Quantify.Measure.html
index 203584fff0a..fd30e3ca5c3 100644
--- a/Bonfire.Quantify.Measure.html
+++ b/Bonfire.Quantify.Measure.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Measure — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Quantify.Measure — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Measure
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Quantify.Measures.Queries.html b/Bonfire.Quantify.Measures.Queries.html
index 11d0b6e54d8..45cf3ae2bf8 100644
--- a/Bonfire.Quantify.Measures.Queries.html
+++ b/Bonfire.Quantify.Measures.Queries.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Measures.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Quantify.Measures.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Measures.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Quantify.Measures.html b/Bonfire.Quantify.Measures.html
index b100aa8a165..433c9d35039 100644
--- a/Bonfire.Quantify.Measures.html
+++ b/Bonfire.Quantify.Measures.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Measures — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Quantify.Measures — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Measures
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Quantify.Simulate.html b/Bonfire.Quantify.Simulate.html
index 4794fd2d5dd..25fb69fa02b 100644
--- a/Bonfire.Quantify.Simulate.html
+++ b/Bonfire.Quantify.Simulate.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Quantify.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Simulate
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Quantify.Unit.html b/Bonfire.Quantify.Unit.html
index a814631b00c..2058094cc49 100644
--- a/Bonfire.Quantify.Unit.html
+++ b/Bonfire.Quantify.Unit.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Unit — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Quantify.Unit — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Unit
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Quantify.Units.Queries.html b/Bonfire.Quantify.Units.Queries.html
index 4a95a6de21e..b8a544d5e19 100644
--- a/Bonfire.Quantify.Units.Queries.html
+++ b/Bonfire.Quantify.Units.Queries.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Units.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Quantify.Units.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Units.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Quantify.Units.html b/Bonfire.Quantify.Units.html
index d221d75a54c..38276f626aa 100644
--- a/Bonfire.Quantify.Units.html
+++ b/Bonfire.Quantify.Units.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Units — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Quantify.Units — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Units
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Quantify.html b/Bonfire.Quantify.html
index f4b6d7bb6d2..a8636f324df 100644
--- a/Bonfire.Quantify.html
+++ b/Bonfire.Quantify.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Quantify — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.RuntimeConfig.html b/Bonfire.RuntimeConfig.html
index f41c52d6af9..1c0c2401247 100644
--- a/Bonfire.RuntimeConfig.html
+++ b/Bonfire.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Seeder.html b/Bonfire.Seeder.html
index 4b3187cfd20..bc018716f15 100644
--- a/Bonfire.Seeder.html
+++ b/Bonfire.Seeder.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Seeder — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Seeder — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Seeder
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Telemetry.Metrics.html b/Bonfire.Telemetry.Metrics.html
index 27396293376..6fb77675b96 100644
--- a/Bonfire.Telemetry.Metrics.html
+++ b/Bonfire.Telemetry.Metrics.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Telemetry.Metrics — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Telemetry.Metrics — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Telemetry.Metrics
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Telemetry.Storage.html b/Bonfire.Telemetry.Storage.html
index 4f2680253f4..463e69893da 100644
--- a/Bonfire.Telemetry.Storage.html
+++ b/Bonfire.Telemetry.Storage.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Telemetry.Storage — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Telemetry.Storage — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Telemetry.Storage
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Telemetry.SystemMonitor.html b/Bonfire.Telemetry.SystemMonitor.html
index 6fff2f39de7..44dd323a46b 100644
--- a/Bonfire.Telemetry.SystemMonitor.html
+++ b/Bonfire.Telemetry.SystemMonitor.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Telemetry.SystemMonitor — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Telemetry.SystemMonitor — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Telemetry.SystemMonitor
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Telemetry.html b/Bonfire.Telemetry.html
index ea661c8b69e..b96285f5ab1 100644
--- a/Bonfire.Telemetry.html
+++ b/Bonfire.Telemetry.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Telemetry — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Telemetry — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Telemetry
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Testing.InsecurePW.html b/Bonfire.Testing.InsecurePW.html
index bd5dccb8d63..c608b0bb063 100644
--- a/Bonfire.Testing.InsecurePW.html
+++ b/Bonfire.Testing.InsecurePW.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Testing.InsecurePW — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Testing.InsecurePW — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Testing.InsecurePW
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Testing.html b/Bonfire.Testing.html
index 3ad8021d2ec..3725e1ab606 100644
--- a/Bonfire.Testing.html
+++ b/Bonfire.Testing.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Testing — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Testing — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Testing
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Coordination.FeedLive.GraphQL.html b/Bonfire.UI.Coordination.FeedLive.GraphQL.html
index 62f2c57cc8f..fc6db7ccc4d 100644
--- a/Bonfire.UI.Coordination.FeedLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.FeedLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.FeedLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Coordination.FeedLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.FeedLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Coordination.Integration.html b/Bonfire.UI.Coordination.Integration.html
index b0f2e2e0acf..b406c77af85 100644
--- a/Bonfire.UI.Coordination.Integration.html
+++ b/Bonfire.UI.Coordination.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.Integration — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Coordination.Integration — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Coordination.ProcessLive.GraphQL.html b/Bonfire.UI.Coordination.ProcessLive.GraphQL.html
index 8d8f8e9682e..7df7cceb508 100644
--- a/Bonfire.UI.Coordination.ProcessLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.ProcessLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.ProcessLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Coordination.ProcessLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.ProcessLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Coordination.ProcessesLive.GraphQL.html b/Bonfire.UI.Coordination.ProcessesLive.GraphQL.html
index b65873b9757..c50b43ac8bc 100644
--- a/Bonfire.UI.Coordination.ProcessesLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.ProcessesLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.ProcessesLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Coordination.ProcessesLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.ProcessesLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Coordination.Routes.html b/Bonfire.UI.Coordination.Routes.html
index fdfda92e0d2..abd6c8adae3 100644
--- a/Bonfire.UI.Coordination.Routes.html
+++ b/Bonfire.UI.Coordination.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.Routes — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Coordination.Routes — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Coordination.TaskLive.GraphQL.html b/Bonfire.UI.Coordination.TaskLive.GraphQL.html
index 094ab9b567a..bc92e54ef0b 100644
--- a/Bonfire.UI.Coordination.TaskLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.TaskLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.TaskLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Coordination.TaskLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.TaskLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Coordination.TasksLive.GraphQL.html b/Bonfire.UI.Coordination.TasksLive.GraphQL.html
index 922f66aa40d..0c7ebe1d90b 100644
--- a/Bonfire.UI.Coordination.TasksLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.TasksLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.TasksLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Coordination.TasksLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.TasksLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Coordination.TodoLive.GraphQL.html b/Bonfire.UI.Coordination.TodoLive.GraphQL.html
index e80625e6b2a..ff735e6e1f8 100644
--- a/Bonfire.UI.Coordination.TodoLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.TodoLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.TodoLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Coordination.TodoLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.TodoLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Groups.LiveHandler.html b/Bonfire.UI.Groups.LiveHandler.html
index 42c37fcfbd9..c39d4988a8c 100644
--- a/Bonfire.UI.Groups.LiveHandler.html
+++ b/Bonfire.UI.Groups.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Groups.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Groups.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Groups.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Groups.Routes.html b/Bonfire.UI.Groups.Routes.html
index 001dd22c6f1..e3ca5a38f3c 100644
--- a/Bonfire.UI.Groups.Routes.html
+++ b/Bonfire.UI.Groups.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Groups.Routes — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Groups.Routes — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Groups.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Groups.RuntimeConfig.html b/Bonfire.UI.Groups.RuntimeConfig.html
index 287bd54f927..717cff912bc 100644
--- a/Bonfire.UI.Groups.RuntimeConfig.html
+++ b/Bonfire.UI.Groups.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Groups.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Groups.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Groups.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Kanban.BoardLive.GraphQL.html b/Bonfire.UI.Kanban.BoardLive.GraphQL.html
index a5faa209e27..c707caa3ff2 100644
--- a/Bonfire.UI.Kanban.BoardLive.GraphQL.html
+++ b/Bonfire.UI.Kanban.BoardLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Kanban.BoardLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Kanban.BoardLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Kanban.BoardLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Kanban.HomeLive.GraphQL.html b/Bonfire.UI.Kanban.HomeLive.GraphQL.html
index e8714bc4e4b..386e45eee81 100644
--- a/Bonfire.UI.Kanban.HomeLive.GraphQL.html
+++ b/Bonfire.UI.Kanban.HomeLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Kanban.HomeLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Kanban.HomeLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Kanban.HomeLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Kanban.Integration.html b/Bonfire.UI.Kanban.Integration.html
index 3e0d6be8677..d9286ff5a03 100644
--- a/Bonfire.UI.Kanban.Integration.html
+++ b/Bonfire.UI.Kanban.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Kanban.Integration — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Kanban.Integration — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Kanban.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Kanban.Routes.html b/Bonfire.UI.Kanban.Routes.html
index d68c3bc2139..e91cbf33bf5 100644
--- a/Bonfire.UI.Kanban.Routes.html
+++ b/Bonfire.UI.Kanban.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Kanban.Routes — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Kanban.Routes — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Kanban.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Reflow.Integration.html b/Bonfire.UI.Reflow.Integration.html
index 1f72efebcd3..2c2fbc5cd58 100644
--- a/Bonfire.UI.Reflow.Integration.html
+++ b/Bonfire.UI.Reflow.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.Integration — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Reflow.Integration — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Reflow.InventoryLive.GraphQL.html b/Bonfire.UI.Reflow.InventoryLive.GraphQL.html
index 6bc27fbff64..00cc1750df3 100644
--- a/Bonfire.UI.Reflow.InventoryLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.InventoryLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.InventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Reflow.InventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.InventoryLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Reflow.MaterialsLive.GraphQL.html b/Bonfire.UI.Reflow.MaterialsLive.GraphQL.html
index 59cdbb30b60..44a8eb13d2a 100644
--- a/Bonfire.UI.Reflow.MaterialsLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.MaterialsLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.MaterialsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Reflow.MaterialsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.MaterialsLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Reflow.ProcessLive.GraphQL.html b/Bonfire.UI.Reflow.ProcessLive.GraphQL.html
index b01999dfcac..fd6bb6dc481 100644
--- a/Bonfire.UI.Reflow.ProcessLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.ProcessLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.ProcessLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Reflow.ProcessLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.ProcessLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Reflow.ProcessesLive.GraphQL.html b/Bonfire.UI.Reflow.ProcessesLive.GraphQL.html
index f7bb8cfaa28..34e773e14b7 100644
--- a/Bonfire.UI.Reflow.ProcessesLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.ProcessesLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.ProcessesLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Reflow.ProcessesLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.ProcessesLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL.html b/Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL.html
index 66c0b597f2d..28edcc4c96e 100644
--- a/Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Reflow.ResourceLive.GraphQL.html b/Bonfire.UI.Reflow.ResourceLive.GraphQL.html
index d46cc198a3a..1a10559e32f 100644
--- a/Bonfire.UI.Reflow.ResourceLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.ResourceLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.ResourceLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Reflow.ResourceLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.ResourceLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Reflow.Routes.html b/Bonfire.UI.Reflow.Routes.html
index 810d7da17e7..795464cd644 100644
--- a/Bonfire.UI.Reflow.Routes.html
+++ b/Bonfire.UI.Reflow.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.Routes — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Reflow.Routes — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Topics.LiveHandler.html b/Bonfire.UI.Topics.LiveHandler.html
index 0945c5a13ac..1f616f8be7e 100644
--- a/Bonfire.UI.Topics.LiveHandler.html
+++ b/Bonfire.UI.Topics.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Topics.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Topics.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Topics.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Topics.Routes.html b/Bonfire.UI.Topics.Routes.html
index d89a2315e79..1be017bd4ef 100644
--- a/Bonfire.UI.Topics.Routes.html
+++ b/Bonfire.UI.Topics.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Topics.Routes — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Topics.Routes — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Topics.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Topics.RuntimeConfig.html b/Bonfire.UI.Topics.RuntimeConfig.html
index bf25519d519..8cca03c0f4d 100644
--- a/Bonfire.UI.Topics.RuntimeConfig.html
+++ b/Bonfire.UI.Topics.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Topics.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Topics.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Topics.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.Topics.html b/Bonfire.UI.Topics.html
index 5ebe345127e..14eca8e463d 100644
--- a/Bonfire.UI.Topics.html
+++ b/Bonfire.UI.Topics.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Topics — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.Topics — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Topics
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL.html b/Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL.html
index 30cd1430dde..07f1a492591 100644
--- a/Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL.html
+++ b/Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler.html b/Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler.html
index 213dca393a6..5ed48fc8e8f 100644
--- a/Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler.html
+++ b/Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.ValueFlows.CreateResourceSpecForm.html b/Bonfire.UI.ValueFlows.CreateResourceSpecForm.html
index 73273ef3864..c33322f5037 100644
--- a/Bonfire.UI.ValueFlows.CreateResourceSpecForm.html
+++ b/Bonfire.UI.ValueFlows.CreateResourceSpecForm.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.CreateResourceSpecForm — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.ValueFlows.CreateResourceSpecForm — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.CreateResourceSpecForm
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.ValueFlows.CreateUnitForm.html b/Bonfire.UI.ValueFlows.CreateUnitForm.html
index fda4470a8c0..40dcf3899c4 100644
--- a/Bonfire.UI.ValueFlows.CreateUnitForm.html
+++ b/Bonfire.UI.ValueFlows.CreateUnitForm.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.CreateUnitForm — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.ValueFlows.CreateUnitForm — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.CreateUnitForm
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.ValueFlows.CreateValueCalculationForm.html b/Bonfire.UI.ValueFlows.CreateValueCalculationForm.html
index 74dcec858ed..8a6be20344d 100644
--- a/Bonfire.UI.ValueFlows.CreateValueCalculationForm.html
+++ b/Bonfire.UI.ValueFlows.CreateValueCalculationForm.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.CreateValueCalculationForm — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.ValueFlows.CreateValueCalculationForm — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.CreateValueCalculationForm
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.ValueFlows.Integration.html b/Bonfire.UI.ValueFlows.Integration.html
index d76fa8a6ee5..a88224231d8 100644
--- a/Bonfire.UI.ValueFlows.Integration.html
+++ b/Bonfire.UI.ValueFlows.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.Integration — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.ValueFlows.Integration — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL.html b/Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL.html
index 7e64a5c164d..ea461aee323 100644
--- a/Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL.html
+++ b/Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.ValueFlows.RuntimeConfig.html b/Bonfire.UI.ValueFlows.RuntimeConfig.html
index 6f9dbdc3d46..90e5ef8c6ce 100644
--- a/Bonfire.UI.ValueFlows.RuntimeConfig.html
+++ b/Bonfire.UI.ValueFlows.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.ValueFlows.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.UI.ValueFlows.SettingsLive.GraphQL.html b/Bonfire.UI.ValueFlows.SettingsLive.GraphQL.html
index bf9d636ebb5..7787c89ba25 100644
--- a/Bonfire.UI.ValueFlows.SettingsLive.GraphQL.html
+++ b/Bonfire.UI.ValueFlows.SettingsLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.SettingsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.UI.ValueFlows.SettingsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.SettingsLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Upcycle.Integration.html b/Bonfire.Upcycle.Integration.html
index c4f7c0f70fe..98e53866d94 100644
--- a/Bonfire.Upcycle.Integration.html
+++ b/Bonfire.Upcycle.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.Integration — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Upcycle.Integration — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Upcycle.IntentLive.GraphQL.html b/Bonfire.Upcycle.IntentLive.GraphQL.html
index 9af2c869866..af7f5896f06 100644
--- a/Bonfire.Upcycle.IntentLive.GraphQL.html
+++ b/Bonfire.Upcycle.IntentLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.IntentLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Upcycle.IntentLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.IntentLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Upcycle.MapLive.GraphQL.html b/Bonfire.Upcycle.MapLive.GraphQL.html
index 36371d893e3..90ce294613b 100644
--- a/Bonfire.Upcycle.MapLive.GraphQL.html
+++ b/Bonfire.Upcycle.MapLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.MapLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Upcycle.MapLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.MapLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Upcycle.ResourceLive.GraphQL.html b/Bonfire.Upcycle.ResourceLive.GraphQL.html
index 2c18ed80ad2..3e4e3a62903 100644
--- a/Bonfire.Upcycle.ResourceLive.GraphQL.html
+++ b/Bonfire.Upcycle.ResourceLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.ResourceLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Upcycle.ResourceLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.ResourceLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Upcycle.Web.HomeLive.GraphQL.html b/Bonfire.Upcycle.Web.HomeLive.GraphQL.html
index d7ebd9eb8cc..f78b4c419ff 100644
--- a/Bonfire.Upcycle.Web.HomeLive.GraphQL.html
+++ b/Bonfire.Upcycle.Web.HomeLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.Web.HomeLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Upcycle.Web.HomeLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.Web.HomeLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Upcycle.Web.InventoryLive.GraphQL.html b/Bonfire.Upcycle.Web.InventoryLive.GraphQL.html
index ad59fdfd393..a9c6a5927b0 100644
--- a/Bonfire.Upcycle.Web.InventoryLive.GraphQL.html
+++ b/Bonfire.Upcycle.Web.InventoryLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.Web.InventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Upcycle.Web.InventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.Web.InventoryLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Upcycle.Web.Routes.html b/Bonfire.Upcycle.Web.Routes.html
index 4468fd6fe1c..45028aa6c6c 100644
--- a/Bonfire.Upcycle.Web.Routes.html
+++ b/Bonfire.Upcycle.Web.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Upcycle.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.Web.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Upcycle.Web.TransfersLive.GraphQL.html b/Bonfire.Upcycle.Web.TransfersLive.GraphQL.html
index 45295953b76..a531585cc7e 100644
--- a/Bonfire.Upcycle.Web.TransfersLive.GraphQL.html
+++ b/Bonfire.Upcycle.Web.TransfersLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.Web.TransfersLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Upcycle.Web.TransfersLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.Web.TransfersLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Web.Endpoint.html b/Bonfire.Web.Endpoint.html
index 5b2e0ea0f4f..c2d06c0ae48 100644
--- a/Bonfire.Web.Endpoint.html
+++ b/Bonfire.Web.Endpoint.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.Endpoint — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Web.Endpoint — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.Endpoint
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Web.FakeRemoteEndpoint.html b/Bonfire.Web.FakeRemoteEndpoint.html
index c5c73c84959..7141958c96b 100644
--- a/Bonfire.Web.FakeRemoteEndpoint.html
+++ b/Bonfire.Web.FakeRemoteEndpoint.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.FakeRemoteEndpoint — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Web.FakeRemoteEndpoint — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.FakeRemoteEndpoint
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Web.Router.Reverse.html b/Bonfire.Web.Router.Reverse.html
index b2e1093486a..67f98cba7c3 100644
--- a/Bonfire.Web.Router.Reverse.html
+++ b/Bonfire.Web.Router.Reverse.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.Router.Reverse — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Web.Router.Reverse — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.Router.Reverse
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Web.Router.html b/Bonfire.Web.Router.html
index 69344136293..9bc3f783bb2 100644
--- a/Bonfire.Web.Router.html
+++ b/Bonfire.Web.Router.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.Router — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Web.Router — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.Router
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Web.Routes.html b/Bonfire.Web.Routes.html
index d738f8d921b..c425182a5dc 100644
--- a/Bonfire.Web.Routes.html
+++ b/Bonfire.Web.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Bonfire.Web.ViewInventoryLive.GraphQL.html b/Bonfire.Web.ViewInventoryLive.GraphQL.html
index b673fb2f091..debd69d3021 100644
--- a/Bonfire.Web.ViewInventoryLive.GraphQL.html
+++ b/Bonfire.Web.ViewInventoryLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.ViewInventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire.Web.ViewInventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.ViewInventoryLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/Iconify.MaterialSymbols.CalendarMonth.html b/Iconify.MaterialSymbols.CalendarMonth.html
index 0a5ffcf8077..68784ed804b 100644
--- a/Iconify.MaterialSymbols.CalendarMonth.html
+++ b/Iconify.MaterialSymbols.CalendarMonth.html
@@ -5,10 +5,10 @@
-
+
- Iconify.MaterialSymbols.CalendarMonth — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Iconify.MaterialSymbols.CalendarMonth — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Iconify.MaterialSymbols.CalendarMonth
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Agent.Agents.html b/ValueFlows.Agent.Agents.html
index ffcaed646b0..b6e8a148737 100644
--- a/ValueFlows.Agent.Agents.html
+++ b/ValueFlows.Agent.Agents.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Agent.Agents — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Agent.Agents — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Agent.Agents
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Agent.Organizations.html b/ValueFlows.Agent.Organizations.html
index 2cb76e79490..b1502dc856f 100644
--- a/ValueFlows.Agent.Organizations.html
+++ b/ValueFlows.Agent.Organizations.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Agent.Organizations — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Agent.Organizations — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Agent.Organizations
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Agent.People.html b/ValueFlows.Agent.People.html
index 6de0c6ba7b2..c5ebda1729d 100644
--- a/ValueFlows.Agent.People.html
+++ b/ValueFlows.Agent.People.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Agent.People — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Agent.People — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Agent.People
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Agreement.html b/ValueFlows.Agreement.html
index 1018fea3692..ef8174e09e1 100644
--- a/ValueFlows.Agreement.html
+++ b/ValueFlows.Agreement.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Agreement — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Agreement — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Agreement
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.AllMigrations.html b/ValueFlows.AllMigrations.html
index af99e92986f..7ea8e7ba556 100644
--- a/ValueFlows.AllMigrations.html
+++ b/ValueFlows.AllMigrations.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.AllMigrations — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.AllMigrations — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.AllMigrations
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Claim.Claims.html b/ValueFlows.Claim.Claims.html
index 874ede8c02d..75a782f1bbe 100644
--- a/ValueFlows.Claim.Claims.html
+++ b/ValueFlows.Claim.Claims.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Claim.Claims — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Claim.Claims — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Claim.Claims
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Claim.GraphQL.html b/ValueFlows.Claim.GraphQL.html
index 0f725baee3a..96c29fc1cd5 100644
--- a/ValueFlows.Claim.GraphQL.html
+++ b/ValueFlows.Claim.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Claim.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Claim.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Claim.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Claim.Queries.html b/ValueFlows.Claim.Queries.html
index 08a4c22a2a8..f0eb57215be 100644
--- a/ValueFlows.Claim.Queries.html
+++ b/ValueFlows.Claim.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Claim.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Claim.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Claim.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Claim.html b/ValueFlows.Claim.html
index 1f30d8e143a..d3d8333225a 100644
--- a/ValueFlows.Claim.html
+++ b/ValueFlows.Claim.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Claim — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Claim — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Claim
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicEvent.EconomicEvents.html b/ValueFlows.EconomicEvent.EconomicEvents.html
index 7b5dce050eb..0ac9857e038 100644
--- a/ValueFlows.EconomicEvent.EconomicEvents.html
+++ b/ValueFlows.EconomicEvent.EconomicEvents.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.EconomicEvents — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicEvent.EconomicEvents — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.EconomicEvents
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicEvent.EventSideEffects.html b/ValueFlows.EconomicEvent.EventSideEffects.html
index ccb48c47e4e..ace85864e18 100644
--- a/ValueFlows.EconomicEvent.EventSideEffects.html
+++ b/ValueFlows.EconomicEvent.EventSideEffects.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.EventSideEffects — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicEvent.EventSideEffects — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.EventSideEffects
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicEvent.GraphQL.html b/ValueFlows.EconomicEvent.GraphQL.html
index 99c34b410b1..18302ab2c93 100644
--- a/ValueFlows.EconomicEvent.GraphQL.html
+++ b/ValueFlows.EconomicEvent.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicEvent.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicEvent.LiveHandler.html b/ValueFlows.EconomicEvent.LiveHandler.html
index 1f300e820e5..b80dac763a7 100644
--- a/ValueFlows.EconomicEvent.LiveHandler.html
+++ b/ValueFlows.EconomicEvent.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicEvent.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicEvent.Queries.html b/ValueFlows.EconomicEvent.Queries.html
index 0ab3aefb937..1f6811e338a 100644
--- a/ValueFlows.EconomicEvent.Queries.html
+++ b/ValueFlows.EconomicEvent.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicEvent.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicEvent.Trace.html b/ValueFlows.EconomicEvent.Trace.html
index 396fa367f3b..d50fec5d338 100644
--- a/ValueFlows.EconomicEvent.Trace.html
+++ b/ValueFlows.EconomicEvent.Trace.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.Trace — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicEvent.Trace — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.Trace
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicEvent.Track.html b/ValueFlows.EconomicEvent.Track.html
index fda4e3f566e..844d703b0ab 100644
--- a/ValueFlows.EconomicEvent.Track.html
+++ b/ValueFlows.EconomicEvent.Track.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.Track — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicEvent.Track — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.Track
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicEvent.html b/ValueFlows.EconomicEvent.html
index 48e46c59d74..184b6616f0c 100644
--- a/ValueFlows.EconomicEvent.html
+++ b/ValueFlows.EconomicEvent.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicEvent — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicResource.EconomicResources.html b/ValueFlows.EconomicResource.EconomicResources.html
index 24eb47d61f4..fec15646b8c 100644
--- a/ValueFlows.EconomicResource.EconomicResources.html
+++ b/ValueFlows.EconomicResource.EconomicResources.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicResource.EconomicResources — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicResource.EconomicResources — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicResource.EconomicResources
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicResource.LiveHandler.html b/ValueFlows.EconomicResource.LiveHandler.html
index 9dc6e9cb820..58f81d149c7 100644
--- a/ValueFlows.EconomicResource.LiveHandler.html
+++ b/ValueFlows.EconomicResource.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicResource.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicResource.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicResource.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicResource.Queries.html b/ValueFlows.EconomicResource.Queries.html
index 0299b3c844e..272d0abfc85 100644
--- a/ValueFlows.EconomicResource.Queries.html
+++ b/ValueFlows.EconomicResource.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicResource.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicResource.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicResource.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.EconomicResource.html b/ValueFlows.EconomicResource.html
index ec465388ea8..5d7c888b26f 100644
--- a/ValueFlows.EconomicResource.html
+++ b/ValueFlows.EconomicResource.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicResource — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.EconomicResource — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicResource
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.Action.Actions.html b/ValueFlows.Knowledge.Action.Actions.html
index b12dc1f7c01..0af1396ca79 100644
--- a/ValueFlows.Knowledge.Action.Actions.html
+++ b/ValueFlows.Knowledge.Action.Actions.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.Action.Actions — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.Action.Actions — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.Action.Actions
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.Action.html b/ValueFlows.Knowledge.Action.html
index 73b6725f215..0b263d1a194 100644
--- a/ValueFlows.Knowledge.Action.html
+++ b/ValueFlows.Knowledge.Action.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.Action — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.Action — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.Action
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.ProcessSpecification.GraphQL.html b/ValueFlows.Knowledge.ProcessSpecification.GraphQL.html
index 3fa84a169e2..69f32e38b8c 100644
--- a/ValueFlows.Knowledge.ProcessSpecification.GraphQL.html
+++ b/ValueFlows.Knowledge.ProcessSpecification.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ProcessSpecification.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.ProcessSpecification.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ProcessSpecification.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications.html b/ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications.html
index 7c7b6af2200..c66f37290b3 100644
--- a/ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications.html
+++ b/ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.ProcessSpecification.Queries.html b/ValueFlows.Knowledge.ProcessSpecification.Queries.html
index 377d604eb05..51afc27f763 100644
--- a/ValueFlows.Knowledge.ProcessSpecification.Queries.html
+++ b/ValueFlows.Knowledge.ProcessSpecification.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ProcessSpecification.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.ProcessSpecification.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ProcessSpecification.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.ProcessSpecification.html b/ValueFlows.Knowledge.ProcessSpecification.html
index cd344ed2a72..d0fff463b51 100644
--- a/ValueFlows.Knowledge.ProcessSpecification.html
+++ b/ValueFlows.Knowledge.ProcessSpecification.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ProcessSpecification — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.ProcessSpecification — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ProcessSpecification
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.ResourceSpecification.GraphQL.html b/ValueFlows.Knowledge.ResourceSpecification.GraphQL.html
index 472a8a2a31d..c6b19eb34e1 100644
--- a/ValueFlows.Knowledge.ResourceSpecification.GraphQL.html
+++ b/ValueFlows.Knowledge.ResourceSpecification.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ResourceSpecification.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.ResourceSpecification.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ResourceSpecification.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.ResourceSpecification.LiveHandler.html b/ValueFlows.Knowledge.ResourceSpecification.LiveHandler.html
index 79ed3b919f0..ca51155b905 100644
--- a/ValueFlows.Knowledge.ResourceSpecification.LiveHandler.html
+++ b/ValueFlows.Knowledge.ResourceSpecification.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ResourceSpecification.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.ResourceSpecification.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ResourceSpecification.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.ResourceSpecification.Queries.html b/ValueFlows.Knowledge.ResourceSpecification.Queries.html
index aa3d7c992a3..f54870dd28d 100644
--- a/ValueFlows.Knowledge.ResourceSpecification.Queries.html
+++ b/ValueFlows.Knowledge.ResourceSpecification.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ResourceSpecification.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.ResourceSpecification.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ResourceSpecification.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications.html b/ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications.html
index 3d2ed5cd85b..3dbb1b480bb 100644
--- a/ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications.html
+++ b/ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Knowledge.ResourceSpecification.html b/ValueFlows.Knowledge.ResourceSpecification.html
index 1984689f6c0..ec88efdbee6 100644
--- a/ValueFlows.Knowledge.ResourceSpecification.html
+++ b/ValueFlows.Knowledge.ResourceSpecification.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ResourceSpecification — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Knowledge.ResourceSpecification — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ResourceSpecification
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.Classifications.html b/ValueFlows.Observe.Classifications.html
index 34a5d6395c7..64a6fc6ee42 100644
--- a/ValueFlows.Observe.Classifications.html
+++ b/ValueFlows.Observe.Classifications.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Classifications — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.Classifications — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Classifications
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.Hydration.html b/ValueFlows.Observe.Hydration.html
index 48045156c00..3646dc19f4d 100644
--- a/ValueFlows.Observe.Hydration.html
+++ b/ValueFlows.Observe.Hydration.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Hydration
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.Integration.html b/ValueFlows.Observe.Integration.html
index a1cfebb4ad3..141d66af841 100644
--- a/ValueFlows.Observe.Integration.html
+++ b/ValueFlows.Observe.Integration.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Integration — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.Integration — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.ObservablePhenomenons.html b/ValueFlows.Observe.ObservablePhenomenons.html
index 6313fb8eda5..55f4e0020e3 100644
--- a/ValueFlows.Observe.ObservablePhenomenons.html
+++ b/ValueFlows.Observe.ObservablePhenomenons.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.ObservablePhenomenons — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.ObservablePhenomenons — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.ObservablePhenomenons
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.ObservablePhenomenonsGraphQL.html b/ValueFlows.Observe.ObservablePhenomenonsGraphQL.html
index ff27793cba3..04cd18dba75 100644
--- a/ValueFlows.Observe.ObservablePhenomenonsGraphQL.html
+++ b/ValueFlows.Observe.ObservablePhenomenonsGraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.ObservablePhenomenonsGraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.ObservablePhenomenonsGraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.ObservablePhenomenonsGraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.ObservableProperties.html b/ValueFlows.Observe.ObservableProperties.html
index f5c05fb20c2..6abff04b339 100644
--- a/ValueFlows.Observe.ObservableProperties.html
+++ b/ValueFlows.Observe.ObservableProperties.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.ObservableProperties — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.ObservableProperties — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.ObservableProperties
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.ObservablePropertiesGraphQL.html b/ValueFlows.Observe.ObservablePropertiesGraphQL.html
index 260a083c1f9..53310151569 100644
--- a/ValueFlows.Observe.ObservablePropertiesGraphQL.html
+++ b/ValueFlows.Observe.ObservablePropertiesGraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.ObservablePropertiesGraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.ObservablePropertiesGraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.ObservablePropertiesGraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.Observation.Queries.html b/ValueFlows.Observe.Observation.Queries.html
index f40334dc4f2..a5f7fa8fe02 100644
--- a/ValueFlows.Observe.Observation.Queries.html
+++ b/ValueFlows.Observe.Observation.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Observation.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.Observation.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Observation.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.Observation.html b/ValueFlows.Observe.Observation.html
index 93a8b6976da..17cd60d226e 100644
--- a/ValueFlows.Observe.Observation.html
+++ b/ValueFlows.Observe.Observation.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Observation — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.Observation — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Observation
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.Observations.ObservationsResolvers.html b/ValueFlows.Observe.Observations.ObservationsResolvers.html
index e45c48c7e64..03542f68cc1 100644
--- a/ValueFlows.Observe.Observations.ObservationsResolvers.html
+++ b/ValueFlows.Observe.Observations.ObservationsResolvers.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Observations.ObservationsResolvers — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.Observations.ObservationsResolvers — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Observations.ObservationsResolvers
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.Observations.html b/ValueFlows.Observe.Observations.html
index c6425ee094e..8aa6b5b18bd 100644
--- a/ValueFlows.Observe.Observations.html
+++ b/ValueFlows.Observe.Observations.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Observations — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.Observations — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Observations
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.Seeds.html b/ValueFlows.Observe.Seeds.html
index d672d639512..12054d40f0d 100644
--- a/ValueFlows.Observe.Seeds.html
+++ b/ValueFlows.Observe.Seeds.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Seeds — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.Seeds — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Seeds
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Observe.Simulate.html b/ValueFlows.Observe.Simulate.html
index f4ae3447608..1f88106dd32 100644
--- a/ValueFlows.Observe.Simulate.html
+++ b/ValueFlows.Observe.Simulate.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Observe.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Simulate
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Commitment.Commitments.html b/ValueFlows.Planning.Commitment.Commitments.html
index bf9bac697bd..fc2244c392b 100644
--- a/ValueFlows.Planning.Commitment.Commitments.html
+++ b/ValueFlows.Planning.Commitment.Commitments.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Commitment.Commitments — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Commitment.Commitments — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Commitment.Commitments
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Commitment.GraphQL.html b/ValueFlows.Planning.Commitment.GraphQL.html
index 8b431464c7c..6a1822d20a2 100644
--- a/ValueFlows.Planning.Commitment.GraphQL.html
+++ b/ValueFlows.Planning.Commitment.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Commitment.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Commitment.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Commitment.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Commitment.Queries.html b/ValueFlows.Planning.Commitment.Queries.html
index 35105557113..de1a21f5e11 100644
--- a/ValueFlows.Planning.Commitment.Queries.html
+++ b/ValueFlows.Planning.Commitment.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Commitment.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Commitment.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Commitment.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Commitment.html b/ValueFlows.Planning.Commitment.html
index 5047530b3a1..6761225767c 100644
--- a/ValueFlows.Planning.Commitment.html
+++ b/ValueFlows.Planning.Commitment.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Commitment — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Commitment — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Commitment
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Intent.GraphQL.html b/ValueFlows.Planning.Intent.GraphQL.html
index 75aebf77246..005868653f4 100644
--- a/ValueFlows.Planning.Intent.GraphQL.html
+++ b/ValueFlows.Planning.Intent.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Intent.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Intent.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Intent.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Intent.Intents.html b/ValueFlows.Planning.Intent.Intents.html
index a03ad5c9aa9..d7fd3c5cea0 100644
--- a/ValueFlows.Planning.Intent.Intents.html
+++ b/ValueFlows.Planning.Intent.Intents.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Intent.Intents — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Intent.Intents — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Intent.Intents
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Intent.LiveHandler.html b/ValueFlows.Planning.Intent.LiveHandler.html
index 5daf85c3d18..6d3b0e3a1f1 100644
--- a/ValueFlows.Planning.Intent.LiveHandler.html
+++ b/ValueFlows.Planning.Intent.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Intent.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Intent.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Intent.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Intent.Queries.html b/ValueFlows.Planning.Intent.Queries.html
index 7736f778498..d293d671b6e 100644
--- a/ValueFlows.Planning.Intent.Queries.html
+++ b/ValueFlows.Planning.Intent.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Intent.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Intent.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Intent.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Intent.html b/ValueFlows.Planning.Intent.html
index 78173288e77..feb626de297 100644
--- a/ValueFlows.Planning.Intent.html
+++ b/ValueFlows.Planning.Intent.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Intent — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Intent — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Intent
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Satisfaction.GraphQL.html b/ValueFlows.Planning.Satisfaction.GraphQL.html
index d9b0954c3ae..dcdbd8b19c8 100644
--- a/ValueFlows.Planning.Satisfaction.GraphQL.html
+++ b/ValueFlows.Planning.Satisfaction.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Satisfaction.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Satisfaction.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Satisfaction.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Satisfaction.Queries.html b/ValueFlows.Planning.Satisfaction.Queries.html
index 9964461d409..4b3bec8510a 100644
--- a/ValueFlows.Planning.Satisfaction.Queries.html
+++ b/ValueFlows.Planning.Satisfaction.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Satisfaction.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Satisfaction.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Satisfaction.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Satisfaction.Satisfactions.html b/ValueFlows.Planning.Satisfaction.Satisfactions.html
index 1b3be0b7030..4f05b4ad29a 100644
--- a/ValueFlows.Planning.Satisfaction.Satisfactions.html
+++ b/ValueFlows.Planning.Satisfaction.Satisfactions.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Satisfaction.Satisfactions — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Satisfaction.Satisfactions — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Satisfaction.Satisfactions
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Planning.Satisfaction.html b/ValueFlows.Planning.Satisfaction.html
index 6a885235621..01dfd5fc0c2 100644
--- a/ValueFlows.Planning.Satisfaction.html
+++ b/ValueFlows.Planning.Satisfaction.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Satisfaction — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Planning.Satisfaction — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Satisfaction
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Process.LiveHandler.html b/ValueFlows.Process.LiveHandler.html
index 03955cdfae9..5592e71c541 100644
--- a/ValueFlows.Process.LiveHandler.html
+++ b/ValueFlows.Process.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Process.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Process.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Process.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Process.Processes.html b/ValueFlows.Process.Processes.html
index dc62277c9ce..ccd082bb271 100644
--- a/ValueFlows.Process.Processes.html
+++ b/ValueFlows.Process.Processes.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Process.Processes — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Process.Processes — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Process.Processes
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Process.Queries.html b/ValueFlows.Process.Queries.html
index 3be4ea1e694..82e31734894 100644
--- a/ValueFlows.Process.Queries.html
+++ b/ValueFlows.Process.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Process.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Process.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Process.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Process.html b/ValueFlows.Process.html
index 0038ed9e8c2..4ff4dc77d88 100644
--- a/ValueFlows.Process.html
+++ b/ValueFlows.Process.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Process — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Process — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Process
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Proposal.GraphQL.html b/ValueFlows.Proposal.GraphQL.html
index be288ce3974..c9e96c0dfa5 100644
--- a/ValueFlows.Proposal.GraphQL.html
+++ b/ValueFlows.Proposal.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Proposal.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Proposal.Proposals.html b/ValueFlows.Proposal.Proposals.html
index 7828b58c562..3640053f0e1 100644
--- a/ValueFlows.Proposal.Proposals.html
+++ b/ValueFlows.Proposal.Proposals.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.Proposals — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Proposal.Proposals — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.Proposals
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Proposal.ProposedIntent.html b/ValueFlows.Proposal.ProposedIntent.html
index 8ae8f871504..1d419b0b48f 100644
--- a/ValueFlows.Proposal.ProposedIntent.html
+++ b/ValueFlows.Proposal.ProposedIntent.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedIntent — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Proposal.ProposedIntent — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedIntent
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Proposal.ProposedIntentQueries.html b/ValueFlows.Proposal.ProposedIntentQueries.html
index 4ee5336242a..50840750a99 100644
--- a/ValueFlows.Proposal.ProposedIntentQueries.html
+++ b/ValueFlows.Proposal.ProposedIntentQueries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedIntentQueries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Proposal.ProposedIntentQueries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedIntentQueries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Proposal.ProposedIntents.html b/ValueFlows.Proposal.ProposedIntents.html
index eb5bdf678af..ee710497661 100644
--- a/ValueFlows.Proposal.ProposedIntents.html
+++ b/ValueFlows.Proposal.ProposedIntents.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedIntents — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Proposal.ProposedIntents — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedIntents
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Proposal.ProposedTo.html b/ValueFlows.Proposal.ProposedTo.html
index cae6070d8d7..e992101ef47 100644
--- a/ValueFlows.Proposal.ProposedTo.html
+++ b/ValueFlows.Proposal.ProposedTo.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedTo — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Proposal.ProposedTo — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedTo
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Proposal.ProposedToQueries.html b/ValueFlows.Proposal.ProposedToQueries.html
index f47f2e25278..b8097a3363f 100644
--- a/ValueFlows.Proposal.ProposedToQueries.html
+++ b/ValueFlows.Proposal.ProposedToQueries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedToQueries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Proposal.ProposedToQueries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedToQueries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Proposal.ProposedTos.html b/ValueFlows.Proposal.ProposedTos.html
index 53cb3866833..4932643f598 100644
--- a/ValueFlows.Proposal.ProposedTos.html
+++ b/ValueFlows.Proposal.ProposedTos.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedTos — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Proposal.ProposedTos — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedTos
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Proposal.Queries.html b/ValueFlows.Proposal.Queries.html
index 4c0c9a2a85a..0f9667c310f 100644
--- a/ValueFlows.Proposal.Queries.html
+++ b/ValueFlows.Proposal.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Proposal.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Proposal.html b/ValueFlows.Proposal.html
index 81a619b8967..579871add72 100644
--- a/ValueFlows.Proposal.html
+++ b/ValueFlows.Proposal.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Proposal — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Util.Federation.html b/ValueFlows.Util.Federation.html
index 82cc03b3815..a58d66dcc4d 100644
--- a/ValueFlows.Util.Federation.html
+++ b/ValueFlows.Util.Federation.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Util.Federation — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Util.Federation — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Util.Federation
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.Util.html b/ValueFlows.Util.html
index 1ac4b05baac..8347e000249 100644
--- a/ValueFlows.Util.html
+++ b/ValueFlows.Util.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Util — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.Util — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Util
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.ValueCalculation.GraphQL.html b/ValueFlows.ValueCalculation.GraphQL.html
index 00519b937af..63043b12ddc 100644
--- a/ValueFlows.ValueCalculation.GraphQL.html
+++ b/ValueFlows.ValueCalculation.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.ValueCalculation.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.ValueCalculation.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.ValueCalculation.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.ValueCalculation.Queries.html b/ValueFlows.ValueCalculation.Queries.html
index 2feed95a47f..9e222666922 100644
--- a/ValueFlows.ValueCalculation.Queries.html
+++ b/ValueFlows.ValueCalculation.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.ValueCalculation.Queries — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.ValueCalculation.Queries — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.ValueCalculation.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.ValueCalculation.ValueCalculations.html b/ValueFlows.ValueCalculation.ValueCalculations.html
index 5987b784eaa..a4ccc009690 100644
--- a/ValueFlows.ValueCalculation.ValueCalculations.html
+++ b/ValueFlows.ValueCalculation.ValueCalculations.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.ValueCalculation.ValueCalculations — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.ValueCalculation.ValueCalculations — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.ValueCalculation.ValueCalculations
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.ValueCalculation.html b/ValueFlows.ValueCalculation.html
index e5c4d5a2320..5a02f2716cf 100644
--- a/ValueFlows.ValueCalculation.html
+++ b/ValueFlows.ValueCalculation.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.ValueCalculation — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows.ValueCalculation — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.ValueCalculation
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/ValueFlows.html b/ValueFlows.html
index 620b1c4feea..dfd379319aa 100644
--- a/ValueFlows.html
+++ b/ValueFlows.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows — bonfire_umbrella v0.9.10-cooperation-beta.39
+ ValueFlows — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows
- (bonfire_umbrella v0.9.10-cooperation-beta.39)
+ (bonfire_umbrella v0.9.10-cooperation-beta.40)
diff --git a/api-reference.html b/api-reference.html
index 7ef55042476..216699a9392 100644
--- a/api-reference.html
+++ b/api-reference.html
@@ -5,10 +5,10 @@
-
+
- API Reference — bonfire_umbrella v0.9.10-cooperation-beta.39
+ API Reference — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
- API Reference bonfire_umbrella v0.9.10-cooperation-beta.39
+ API Reference bonfire_umbrella v0.9.10-cooperation-beta.40
diff --git a/architecture.html b/architecture.html
index 9b09957bc2e..17b54b40b78 100644
--- a/architecture.html
+++ b/architecture.html
@@ -5,10 +5,10 @@
-
+
- Bonfire Architecture — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire Architecture — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -160,9 +160,9 @@
Code Structure
-The code is broadly composed namespaces such as these, many of which are packaged as "extensions" which live in separate git repositories, which are included in the app by way of mix dependencies:
Bonfire.*
- Core application logic (very little code).Bonfire.*.*
- Bonfire extensions (eg Bonfire.Posts
) containing mostly context modules, APIs, and routesBonfire.Data.*
- Extensions containing database schemas and migrations Bonfire.UI.*
- UI component extensionsBonfire.*.*.LiveHandler
- Backend logic to handle events in the frontendBonfire.Editor.*
(pluggable text editors, eg. CKEditor for WYSIWYG markdown input)Bonfire.GraphQL.*
- Optional GraphQL APIBonfire.Federate.*
- Optional Federation hooksActivityPub
- ActivityPub S2S models, logic and various helper modules ActivityPub.Web
- ActivityPub S2S REST endpoints, activity ingestion and push federation facilities ValueFlows.*
- economic extensions implementing the ValueFlows vocabulary
Contexts are were we put any core logic. A context often is circumscribed to providing logic for a particular object type (e. g. Bonfire.Posts
implements Bonfire.Data.Social.Post
).
All Bonfire objects use an ULID as their primary key. We use the Needle
library (with extra logic in Bonfire.Common.Needles
) to reference any object by its primary key without knowing what type it is beforehand. This is very useful as it allows for example following or liking many different types of objects (as opposed to say only a user or a post) and this approach allows us to store the context of the like/follow by only storing its primary key (see Bonfire.Data.Social.Follow
) for an example.
Context modules usually have one/2
, many/2
, and many_paginated/1
functions for fetching objects, which in turn call a query/2
function. These take a keyword list as filters (and an optional opts
argument) allowing objects to be fetched by arbitrary criteria.
Examples:
Users.one(username: "bob") # Fetching by username
-Posts.many_paginated(by: "01E9TQP93S8XFSV2ZATX1FQ528") # List a page of posts by its author
-EconomicResources.many(deleted: true) # List any deleted resources
Context modules also have functions for creating, updating and deleting objects, as well as hooks for federating or indexing in the search engine.
Here is an incomplete sample of some of current extensions and modules:
Bonfire.Me.Accounts
(for managing and querying local user accounts)Bonfire.Me.Users
(for managing and querying both local and remote user identities and profiles)Bonfire.Boundaries
(for managing and querying circles, ACLs, permissions...)Bonfire.Social.FeedActivities
, Bonfire.Social.Feeds
and Bonfire.Social.Activities
(for managing and querying activities and feeds)Bonfire.Posts
and Bonfire.Social.PostContents
(for managing and querying posts)Bonfire.Social.Threads
(for managing and querying threads and comments)Bonfire.Social.Flags
(for managing and querying flags)Bonfire.Social.Graph.Follows
(for managing and querying follows)Bonfire.Classify
(for managing and querying categories, topics, and the like)Bonfire.Tag
(for managing and querying tags and mentions)Bonfire.Geolocate
(for managing and querying locations and geographical coordinates)Bonfire.Quantify
(for managing and querying units and measures)
Additional extensions, libraries, and modules
Bonfire.Common
and Bonfire.Common.Utils
(stuff that gets used everywhere)Bonfire.Application
(OTP application)Bonfire.Me.Characters
(a shared abstraction over users, organisations, categories, and other objects that need to have feeds and behave as an actor in ActivityPub land)Bonfire.Federate.ActivityPub
and ActivityPub
(ActivityPub integration)Bonfire.Search
(local search indexing and search API, powered by Meili)Bonfire.Mailer
, Bonfire.Me.Mails
, and Bamboo
(for rendering and sending emails)Bonfire.Files
, Waffle
, TreeMagic
and TwinkleStar
(for managing uploaded content)Bonfire.GraphQL
(GraphQL API abstractions)Queery
and Bonfire.Repo.Query
(Helpers for making queries on the database)Bonfire.Repo
(Ecto repository)Exto
(to extend DB schemas in config, especially useful for adding associations)AbsintheClient
(for querying the API from within the server)
+
The code is broadly composed namespaces such as these, many of which are packaged as "extensions" which live in separate git repositories, which are included in the app by way of mix dependencies:
Bonfire.*
- Core application logic (very little code).Bonfire.*.*
- Bonfire extensions (eg Bonfire.Posts
) containing mostly context modules, APIs, and routesBonfire.Data.*
- Extensions containing database schemas and migrations Bonfire.UI.*
- UI component extensionsBonfire.*.*.LiveHandler
- Backend logic to handle events in the frontendBonfire.Editor.*
(pluggable text editors, eg. CKEditor for WYSIWYG markdown input)Bonfire.GraphQL.*
- Optional GraphQL APIBonfire.Federate.*
- Optional Federation hooksActivityPub
- ActivityPub S2S models, logic and various helper modules ActivityPub.Web
- ActivityPub S2S REST endpoints, activity ingestion and push federation facilities ValueFlows.*
- economic extensions implementing the ValueFlows vocabulary
Contexts are were we put any core logic. A context often is circumscribed to providing logic for a particular object type (e. g. Bonfire.Posts
implements Bonfire.Data.Social.Post
).
All Bonfire objects use an ULID as their primary key. We use the Needle
library (with extra logic in Bonfire.Common.Needles
) to reference any object by its primary key without knowing what type it is beforehand. This is very useful as it allows for example following or liking many different types of objects (as opposed to say only a user or a post) and this approach allows us to store the context of the like/follow by only storing its primary key (see Bonfire.Data.Social.Follow
) for an example.
Context modules usually have one/2
, many/2
, and many_paginated/1
functions for fetching objects, which in turn call a query/2
function. These take a keyword list as filters (and an optional opts
argument) allowing objects to be fetched by arbitrary criteria.
Examples:
Users.one(username: "bob") # Fetching by username
+Posts.many_paginated(by: "01E9TQP93S8XFSV2ZATX1FQ528") # List a page of posts by its author
+EconomicResources.many(deleted: true) # List any deleted resources
Context modules also have functions for creating, updating and deleting objects, as well as hooks for federating or indexing in the search engine.
Here is an incomplete sample of some of current extensions and modules:
Bonfire.Me.Accounts
(for managing and querying local user accounts)Bonfire.Me.Users
(for managing and querying both local and remote user identities and profiles)Bonfire.Boundaries
(for managing and querying circles, ACLs, permissions...)Bonfire.Social.FeedActivities
, Bonfire.Social.Feeds
and Bonfire.Social.Activities
(for managing and querying activities and feeds)Bonfire.Posts
and Bonfire.Social.PostContents
(for managing and querying posts)Bonfire.Social.Threads
(for managing and querying threads and comments)Bonfire.Social.Flags
(for managing and querying flags)Bonfire.Social.Graph.Follows
(for managing and querying follows)Bonfire.Classify
(for managing and querying categories, topics, and the like)Bonfire.Tag
(for managing and querying tags and mentions)Bonfire.Geolocate
(for managing and querying locations and geographical coordinates)Bonfire.Quantify
(for managing and querying units and measures)
Additional extensions, libraries, and modules
Bonfire.Common
and Bonfire.Common.Utils
(stuff that gets used everywhere)Bonfire.Application
(OTP application)Bonfire.Me.Characters
(a shared abstraction over users, organisations, categories, and other objects that need to have feeds and behave as an actor in ActivityPub land)Bonfire.Federate.ActivityPub
and ActivityPub
(ActivityPub integration)Bonfire.Search
(local search indexing and search API, powered by Meili)Bonfire.Mailer
, Bonfire.Me.Mails
, and Bamboo
(for rendering and sending emails)Bonfire.Files
, Waffle
, TreeMagic
and TwinkleStar
(for managing uploaded content)Bonfire.GraphQL
(GraphQL API abstractions)Queery
and Bonfire.Repo.Query
(Helpers for making queries on the database)Bonfire.Repo
(Ecto repository)Exto
(to extend DB schemas in config, especially useful for adding associations)AbsintheClient
(for querying the API from within the server)
diff --git a/bonfire-flavoured-elixir.html b/bonfire-flavoured-elixir.html
index c2eedf95e33..05a93ad10fc 100644
--- a/bonfire-flavoured-elixir.html
+++ b/bonfire-flavoured-elixir.html
@@ -5,10 +5,10 @@
-
+
- Bonfire-flavoured Elixir — bonfire_umbrella v0.9.10-cooperation-beta.39
+ Bonfire-flavoured Elixir — bonfire_umbrella v0.9.10-cooperation-beta.40
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -137,33 +137,33 @@
Arrows
The Elixir |> ("pipe") operator is one of the things that seems to get people excited about elixir. Probably in part because you then don't have to keep coming up with function names. Unfortunately it's kind of limiting.
-The moment you need to pipe a parameter into a position that isn't the first one, it breaks down and you have to drop out of the pipeline format or write a secondary function to handle it.
Not any more! By simply inserting ...
where you would like the value to be inserted, Arrows
will override where it is placed. This allows you to keep on piping while accommodating that function with the annoying argument order. Arrows
was inspired by an existing library. Here is part of the test suite in lieu of examples:
defmodule ArrowsTest do
+The moment you need to pipe a parameter into a position that isn't the first one, it breaks down and you have to drop out of the pipeline format or write a secondary function to handle it.Not any more! By simply inserting ...
where you would like the value to be inserted, Arrows
will override where it is placed. This allows you to keep on piping while accommodating that function with the annoying argument order. Arrows
was inspired by an existing library. Here is part of the test suite in lieu of examples:
defmodule ArrowsTest do
use ExUnit.Case
use Arrows
- def double(x), do: x * 2
- def double_fst(x, _), do: x * 2
- def double_snd(_, x), do: x * 2
- def add_snd_thd(_, x, y), do: x + y
-
- test "|>" do
- assert 4 == (2 |> double)
- assert 4 == (2 |> double())
- assert 4 == (2 |> double(...))
- assert 8 == (2 |> double(double(...)))
- assert 4 == (2 |> double_fst(1))
- assert 4 == (2 |> double_fst(..., 1))
- assert 8 == (2 |> double_fst(double(...), 1))
- assert 4 == (2 |> double_snd(1, ...))
- assert 8 == (2 |> double_snd(1, double(...)))
- assert 3 == (2 |> add_snd_thd(1, ..., 1))
- assert 4 == (2 |> add_snd_thd(1, ..., ...))
- assert 6 == (2 |> add_snd_thd(1, ..., double(...)))
- for x <- [:yes, 2, nil, false] do
- assert {:ok, x} == (x |> {:ok, ...})
- end
- end
-end
A few little extra features you might notice here:
- You can move the parameter into a subexpression, as in
2 |> double_fst(double(...), 1)
where double will be called before the parameter is passed to double_fst
. - You can use
...
multiple times, substituting it in multiple places. - The right hand side need not even be a function call, you can use any expression with
...
.
+
def double(x), do: x * 2
+ def double_fst(x, _), do: x * 2
+ def double_snd(_, x), do: x * 2
+ def add_snd_thd(_, x, y), do: x + y
+
+ test "|>" do
+ assert 4 == (2 |> double)
+ assert 4 == (2 |> double())
+ assert 4 == (2 |> double(...))
+ assert 8 == (2 |> double(double(...)))
+ assert 4 == (2 |> double_fst(1))
+ assert 4 == (2 |> double_fst(..., 1))
+ assert 8 == (2 |> double_fst(double(...), 1))
+ assert 4 == (2 |> double_snd(1, ...))
+ assert 8 == (2 |> double_snd(1, double(...)))
+ assert 3 == (2 |> add_snd_thd(1, ..., 1))
+ assert 4 == (2 |> add_snd_thd(1, ..., ...))
+ assert 6 == (2 |> add_snd_thd(1, ..., double(...)))
+ for x <- [:yes, 2, nil, false] do
+ assert {:ok, x} == (x |> {:ok, ...})
+ end
+ end
+end
A few little extra features you might notice here:
- You can move the parameter into a subexpression, as in
2 |> double_fst(double(...), 1)
where double will be called before the parameter is passed to double_fst
. - You can use
...
multiple times, substituting it in multiple places. - The right hand side need not even be a function call, you can use any expression with
...
.
@@ -177,14 +177,14 @@
Untangle
provides replacements for the macros in Elixir's Logger
module and the IO.inspect
function to output code location information. The first argument will be inspect
ed and the second (where provided) will be used as a label:
iex(1)> import Untangle
Untangle
-iex(2)> debug(:no, "the answer is") # log at debug
-11:19:09.915 [debug] [iex:2] the answer is: :no
+iex(2)> debug(:no, "the answer is") # log at debug
+11:19:09.915 [debug] [iex:2] the answer is: :no
:no
-iex(3)> dump(%{a: :map}, "it") # inspect something on stdout
-[iex:3] it: %{a: :map}
-%{a: :map}
When used in a code file, the location information becomes slightly more useful, e.g.:
[lib/test_untangle.ex:15@Test.Untangle.example/2] Here's an empty list: []
You may also notice from the iex output that it returns its first argument. This makes it ideal for
-inserting into a pipeline for debugging purposes:
do_something()
-|> debug("output of do_something/0")
When you are done debugging something, the location of the debug statement is already in the output so you know where to remove it or comment it out! Bliss!
You will find the codebase uses this a lot, though the debugs are frequently commented out. Just uncomment the ones that would help you with a particular debugging task and you're off.
+
iex(3)> dump(%{a: :map}, "it") # inspect something on stdout
+[iex:3] it: %{a: :map}
+%{a: :map}
When used in a code file, the location information becomes slightly more useful, e.g.:
[lib/test_untangle.ex:15@Test.Untangle.example/2] Here's an empty list: []
You may also notice from the iex output that it returns its first argument. This makes it ideal for +inserting into a pipeline for debugging purposes:
do_something()
+|> debug("output of do_something/0")
When you are done debugging something, the location of the debug statement is already in the output so you know where to remove it or comment it out! Bliss!
You will find the codebase uses this a lot, though the debugs are frequently commented out. Just uncomment the ones that would help you with a particular debugging task and you're off.
LfrT&{+(;)o61MaNqc*>2E{ilNi((Y5%Uqqd1MN)O3bf9Z|aesdv
z=@=TSPl)akrGXuHIq`@{v!ePN#H7L6;iOS~$8?gE#517{XSKl-^dqxi(AfzJJYn-~
z5-IC_1_LpgZA{@E444ahb?O3~|DADn4UP|+`EbRzFw8?!x-;jYt&WfH(^YfZMbU`G
zYYIn05G_*#YGEP5CHcDoYfMi(_;T@kR)xn+U>x*OQ-OoNSR*TtLP>R?mn*RL;b%IG
zW{_B#!lX5D>lmhL4+dHH(=plqRhg@=$Y(#fHX@ORSRK_S9q{@wt+?y&>C59S+nW{k
zTxi8+(iT>;YvGz(O` Z=Uy>p|nv_9ICtC?+
zaz14wH5hcda3?hmqjV_D13YaBA>2ABQeX$9HMQ|7QOvX#!BY>r)Iimu4!uCb%B~}oEFcTJf=Hv)q6#jCasuzqLMf)3*a^ 9%0OYD3m
zJ&|~Av6LKbX_S3xm(8*DpA)?J-CM*}a|t5=HVXGdJbVayqJ()Ogi?f!zc79L5ietV
zLo@}I_yCH5%)-RIpU~$i|3hz}$$x0}wDHNY^X10$0YtM6Y1A}DjBtb@ax*5Ksv~G_
z17F}*u~1#*xX>2LPL}X)_D?B@0I4%TN3|SPb!#KvHFcD*
zHs#z^>WA4&*o**dpU2J6MF%D
VDW^N|i6*(>< K=P_isQmD+x8ubdxT$AL7wH3BW$zAxipylqA_+LQjJherRLS%%_&41qkoA
z5rPV8a(ZuK#Voam<%2^1erF0wj(&%V{p1JP_ld3%P#M$$(e6vF%QMW0=waH`dX+dg
zMJszaL@yycX^{J|zi>VMMhZ*u_ONvG)~b0d3CH8(A_U;JI*UJ+@E`y-Ka8bTT%@Ir
z)W{Z6xStJy?$oztfPO(734b9|_k+j;T7ez^HHov@zgRfgNKPBP
zBQ5TP)dKJsU4&A_Byp-HNRIJ{E@2)LdL^vGt?@c;g7)JY_JGWt!LbQVU2Fve27mU0
zE(O%m!+x1WZ(ES0F1yrs2sa-$N!3oZ;gb8dax(8;CV%|}P+kTBF}OWy8INAP`d2z1
zm%KMgO*@QTChxq5U*$haqvJU*)-#%tj_=+3tN=m+=%xn87s8gPtr{Lrjy(y6c@b2X
zJMls24~eZiJ*6Qz*E&-%8}0HEwS5Cgvm&A)Q+Elv-pSH`8(#xG-!-b^!{<>68E?lD
ztDYkINtZo`c;XWhf_)sZ82NkKZ#_&ie-Wh!1^Tr5h#JH?|KXeGM)AlD@yRTyT